diff --git a/.github/workflows/classroom.yml b/.github/workflows/classroom.yml deleted file mode 100644 index 4b450bf..0000000 --- a/.github/workflows/classroom.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Autograding Tests -'on': -- push -- repository_dispatch -permissions: - checks: write - actions: read - contents: read -jobs: - run-autograding-tests: - runs-on: ubuntu-latest - if: github.actor != 'github-classroom[bot]' - steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Test - id: test - uses: classroom-resources/autograding-command-grader@v1 - with: - test-name: Test - setup-command: '' - command: "./test.sh" - timeout: 10 - - name: Autograding Reporter - uses: classroom-resources/autograding-grading-reporter@v1 - env: - TEST_RESULTS: "${{steps.test.outputs.result}}" - with: - runners: test diff --git a/README.md b/README.md index 917650d..d702a5f 100644 --- a/README.md +++ b/README.md @@ -1,72 +1,57 @@ -[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/ikU1ofUk) -# Final Assignment +# Deep Reinforcement Learning Assignment 2 -In this assignment, you will implement various RL algorithms that learn your environments of choice. For exact description, refer to the assignment description on Brightspace. +This repository contains an improved Advantage Actor-Critic (A2C) implementation for two Gymnasium MuJoCo continuous-control environments: -## Installation +- `InvertedPendulum-v5` +- `Pusher-v5` + +The main entry point is `src/main.py`. -Before running the code, make sure you properly install the dependencies. We recommend using `uv` for fast, reliable dependency management. +## Installation -**Using uv (recommended):** +Create a fresh virtual environment and install the requirements: ```bash -uv sync +pip install -r requirements.txt ``` +## Recommended commands -**Using pip (alternative):** +Train and test InvertedPendulum: ```bash -python -m pip install -r requirements.txt +python src/main.py --env InvertedPendulum-v5 --mode train_and_test ``` -The code has been tested with Python 3.13. - -## Running the code - -The main entry point of your program should be `main.py`. - -**Using uv:** +Train and test Pusher: ```bash -uv run src/main.py +python src/main.py --env Pusher-v5 --mode train_and_test ``` -**Using uv with an activated virtual environment:** +Run analysis against a random baseline after training: ```bash -source .venv/bin/activate -python src/main.py +python src/main.py --env Pusher-v5 --mode analysis ``` -In order to allow us for easy grading, we implemented a simple test that checks whether your `requirements.txt` (or `pyproject.toml` if using uv) is complete and that your code runs without errors. You can run this test by executing the following command: +Generate plots/statistics from saved CSV files: ```bash -source test.sh +python graph_plotting.py ``` -## Tips and Resources - -Here are a couple of hints and resources that might help you with in this assignment: - -1. To help you out with technical writing, check out these papers for inspiration. Reading real scientific papers can help you out with using correct nomenclature and ensuring a clear structure. In particular, you can draw inspiration as to how complex concepts and formulas are introduced - and explained. - - a. Technical Report on implementing RL algorithms in CartPole environment - https://arxiv.org/pdf/2006.04938.pdf - - b. Paper summarising usage of RL in Chess - https://page.mi.fu-berlin.de/block/concibe2008.pdf - - c. How to properly evaluate RL agents, covers reliable metrics and statistical testing, good reference for your report - https://agarwl.github.io/rliable/ +## What was improved -2. If you have duplicate code in multiple places, it’s probably a bad sign. Maybe you should try it to group that functionality in a seperate function? -3. The agent should be able to learn using different types of algorithms. Maybe there is a way to make these algorithms easily swappable? -4. Type hinting is not required, but it can help your partner understand your code - https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html -5. Git workshop by Cover - https://studysupport.svcover.nl/?a=1 -6. YouTube Git tutorial - https://www.youtube.com/watch?v=RGOj5yH7evk -7. OOP in Python - https://www.youtube.com/watch?v=JeznW_7DlB0 -8. How to document Python? - https://www.datacamp.com/tutorial/docstrings-python4 -9. uv: fast Python package and project manager, a modern alternative to pip/venv - https://docs.astral.sh/uv/ -10. Hydra: a framework for elegantly configuring complex applications, useful for managing experiment hyperparameters - https://hydra.cc/docs/intro/ +The A2C implementation contains several stability improvements that matter for MuJoCo control: -## Questions and help +- tanh-squashed Gaussian actions instead of unbounded actions followed by clipping; +- observation normalization with saved/restored running statistics; +- n-step updates instead of one update only at the end of each episode; +- Generalized Advantage Estimation (GAE) for lower-variance advantage estimates; +- advantage normalization; +- entropy regularization; +- Huber critic loss; +- gradient clipping; +- environment-specific hyperparameters. -If you are struggling with one part of the assignment, you're probably not alone. That's why we want to create a small FAQ throughout the next couple of weeks. In case of a question, raise an issue in the original, template repository: [https://github.com/Deep-Reinforcement-Learning-RUG/catch-assignment](https://github.com/Deep-Reinforcement-Learning-RUG/catch-assignment). We will answer your questions there, so that there are no duplicate questions. +Pusher-v5 is substantially harder than InvertedPendulum-v5 and therefore uses more episodes, a lower learning rate, and lower initial policy standard deviation. diff --git a/analysis/.gitkeep b/analysis/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/data/.gitkeep b/data/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/data/a2c_invertedpendulum_returns.csv b/data/a2c_invertedpendulum_returns.csv new file mode 100644 index 0000000..3590f5e --- /dev/null +++ b/data/a2c_invertedpendulum_returns.csv @@ -0,0 +1,1501 @@ +episode,run0,run1,run2,run3,run4 +1,7.0,3.0,6.0,3.0,3.0 +2,3.0,8.0,6.0,2.0,3.0 +3,6.0,2.0,5.0,3.0,4.0 +4,13.0,3.0,7.0,7.0,3.0 +5,6.0,2.0,5.0,9.0,9.0 +6,7.0,2.0,10.0,13.0,3.0 +7,3.0,5.0,4.0,8.0,3.0 +8,2.0,6.0,4.0,5.0,15.0 +9,2.0,13.0,2.0,2.0,14.0 +10,4.0,4.0,16.0,4.0,10.0 +11,3.0,4.0,10.0,12.0,7.0 +12,2.0,2.0,25.0,4.0,3.0 +13,8.0,5.0,6.0,4.0,2.0 +14,9.0,3.0,4.0,14.0,8.0 +15,8.0,7.0,9.0,3.0,13.0 +16,29.0,8.0,3.0,18.0,18.0 +17,30.0,5.0,12.0,28.0,13.0 +18,9.0,2.0,14.0,17.0,20.0 +19,9.0,4.0,11.0,10.0,7.0 +20,28.0,4.0,22.0,3.0,29.0 +21,5.0,4.0,4.0,19.0,29.0 +22,10.0,5.0,8.0,3.0,5.0 +23,4.0,5.0,14.0,9.0,2.0 +24,6.0,7.0,21.0,3.0,6.0 +25,2.0,11.0,11.0,3.0,3.0 +26,24.0,3.0,4.0,10.0,40.0 +27,23.0,9.0,2.0,13.0,6.0 +28,26.0,3.0,8.0,6.0,9.0 +29,27.0,4.0,7.0,33.0,14.0 +30,23.0,9.0,5.0,22.0,10.0 +31,7.0,3.0,11.0,3.0,9.0 +32,37.0,3.0,13.0,11.0,9.0 +33,11.0,5.0,32.0,6.0,33.0 +34,5.0,5.0,19.0,39.0,19.0 +35,28.0,6.0,19.0,2.0,45.0 +36,15.0,5.0,19.0,2.0,27.0 +37,26.0,4.0,5.0,20.0,38.0 +38,19.0,3.0,5.0,12.0,44.0 +39,26.0,7.0,11.0,21.0,20.0 +40,29.0,5.0,8.0,39.0,7.0 +41,35.0,19.0,9.0,31.0,43.0 +42,19.0,7.0,7.0,15.0,26.0 +43,48.0,27.0,55.0,32.0,9.0 +44,28.0,5.0,15.0,46.0,52.0 +45,22.0,6.0,28.0,12.0,27.0 +46,37.0,4.0,28.0,27.0,53.0 +47,19.0,10.0,49.0,29.0,26.0 +48,28.0,25.0,13.0,15.0,26.0 +49,43.0,24.0,43.0,34.0,41.0 +50,30.0,28.0,25.0,21.0,33.0 +51,13.0,21.0,35.0,31.0,52.0 +52,17.0,7.0,43.0,32.0,31.0 +53,64.0,22.0,14.0,15.0,59.0 +54,78.0,40.0,25.0,45.0,39.0 +55,27.0,3.0,23.0,37.0,53.0 +56,15.0,23.0,23.0,35.0,36.0 +57,52.0,21.0,38.0,39.0,46.0 +58,33.0,59.0,9.0,29.0,56.0 +59,21.0,36.0,17.0,30.0,97.0 +60,28.0,42.0,21.0,37.0,135.0 +61,22.0,20.0,43.0,36.0,114.0 +62,49.0,45.0,29.0,34.0,91.0 +63,60.0,36.0,37.0,20.0,53.0 +64,102.0,27.0,74.0,21.0,56.0 +65,86.0,33.0,39.0,24.0,16.0 +66,123.0,28.0,18.0,29.0,89.0 +67,197.0,40.0,39.0,26.0,80.0 +68,102.0,43.0,43.0,27.0,69.0 +69,76.0,44.0,47.0,38.0,64.0 +70,62.0,66.0,22.0,36.0,69.0 +71,112.0,49.0,40.0,39.0,68.0 +72,63.0,58.0,71.0,37.0,63.0 +73,50.0,65.0,54.0,50.0,69.0 +74,12.0,59.0,73.0,49.0,68.0 +75,90.0,96.0,54.0,48.0,72.0 +76,62.0,97.0,73.0,4.0,76.0 +77,91.0,54.0,51.0,19.0,74.0 +78,17.0,46.0,13.0,24.0,88.0 +79,46.0,44.0,54.0,3.0,74.0 +80,83.0,24.0,72.0,25.0,85.0 +81,66.0,61.0,66.0,46.0,71.0 +82,55.0,50.0,102.0,46.0,68.0 +83,101.0,18.0,60.0,54.0,71.0 +84,78.0,48.0,54.0,51.0,74.0 +85,63.0,27.0,44.0,56.0,172.0 +86,68.0,37.0,15.0,43.0,80.0 +87,71.0,29.0,54.0,42.0,29.0 +88,54.0,29.0,73.0,39.0,191.0 +89,61.0,26.0,71.0,52.0,231.0 +90,80.0,31.0,84.0,46.0,223.0 +91,86.0,28.0,53.0,48.0,81.0 +92,64.0,2.0,57.0,50.0,128.0 +93,91.0,39.0,58.0,52.0,215.0 +94,52.0,36.0,49.0,54.0,167.0 +95,77.0,23.0,96.0,46.0,29.0 +96,63.0,64.0,68.0,53.0,171.0 +97,78.0,23.0,50.0,58.0,156.0 +98,56.0,31.0,60.0,51.0,68.0 +99,64.0,29.0,55.0,57.0,83.0 +100,46.0,29.0,64.0,11.0,126.0 +101,70.0,32.0,31.0,54.0,82.0 +102,80.0,40.0,51.0,53.0,115.0 +103,65.0,54.0,55.0,81.0,119.0 +104,65.0,2.0,52.0,63.0,106.0 +105,44.0,45.0,73.0,56.0,91.0 +106,53.0,39.0,63.0,60.0,21.0 +107,65.0,53.0,59.0,45.0,81.0 +108,26.0,40.0,66.0,55.0,89.0 +109,40.0,19.0,50.0,67.0,61.0 +110,59.0,33.0,60.0,68.0,73.0 +111,38.0,57.0,58.0,57.0,214.0 +112,74.0,48.0,68.0,214.0,103.0 +113,46.0,47.0,4.0,91.0,96.0 +114,17.0,60.0,52.0,97.0,83.0 +115,47.0,6.0,31.0,35.0,110.0 +116,57.0,54.0,63.0,68.0,160.0 +117,50.0,46.0,51.0,75.0,139.0 +118,14.0,17.0,16.0,43.0,182.0 +119,80.0,15.0,31.0,12.0,79.0 +120,51.0,4.0,43.0,61.0,140.0 +121,68.0,61.0,51.0,141.0,120.0 +122,76.0,54.0,38.0,45.0,125.0 +123,53.0,65.0,47.0,35.0,129.0 +124,29.0,21.0,65.0,53.0,31.0 +125,49.0,68.0,63.0,71.0,102.0 +126,58.0,61.0,61.0,66.0,87.0 +127,58.0,46.0,32.0,52.0,164.0 +128,50.0,52.0,45.0,56.0,110.0 +129,76.0,21.0,55.0,65.0,163.0 +130,57.0,52.0,53.0,59.0,134.0 +131,55.0,59.0,54.0,50.0,381.0 +132,43.0,12.0,78.0,52.0,5.0 +133,65.0,59.0,81.0,62.0,62.0 +134,48.0,78.0,73.0,53.0,33.0 +135,63.0,37.0,30.0,53.0,55.0 +136,40.0,67.0,44.0,34.0,42.0 +137,48.0,60.0,41.0,59.0,22.0 +138,44.0,55.0,21.0,56.0,15.0 +139,26.0,66.0,46.0,85.0,53.0 +140,12.0,73.0,36.0,57.0,41.0 +141,15.0,91.0,22.0,57.0,3.0 +142,50.0,62.0,40.0,34.0,109.0 +143,45.0,102.0,48.0,75.0,48.0 +144,51.0,56.0,10.0,59.0,36.0 +145,37.0,71.0,3.0,66.0,35.0 +146,56.0,67.0,21.0,36.0,12.0 +147,13.0,57.0,45.0,56.0,24.0 +148,31.0,72.0,49.0,66.0,11.0 +149,23.0,68.0,48.0,56.0,22.0 +150,57.0,26.0,69.0,61.0,48.0 +151,44.0,58.0,51.0,56.0,4.0 +152,53.0,64.0,58.0,42.0,46.0 +153,22.0,48.0,62.0,7.0,30.0 +154,4.0,70.0,102.0,61.0,73.0 +155,17.0,56.0,43.0,51.0,15.0 +156,32.0,54.0,76.0,9.0,53.0 +157,64.0,72.0,28.0,67.0,23.0 +158,13.0,68.0,116.0,137.0,13.0 +159,44.0,74.0,22.0,91.0,48.0 +160,85.0,59.0,99.0,23.0,44.0 +161,60.0,68.0,70.0,38.0,97.0 +162,101.0,70.0,57.0,15.0,153.0 +163,55.0,59.0,19.0,13.0,166.0 +164,22.0,67.0,124.0,21.0,138.0 +165,14.0,102.0,6.0,147.0,134.0 +166,90.0,68.0,58.0,93.0,151.0 +167,58.0,55.0,91.0,40.0,269.0 +168,31.0,96.0,11.0,130.0,89.0 +169,21.0,61.0,11.0,13.0,155.0 +170,50.0,44.0,71.0,13.0,83.0 +171,50.0,52.0,138.0,170.0,10.0 +172,89.0,5.0,49.0,55.0,201.0 +173,57.0,84.0,71.0,80.0,148.0 +174,80.0,22.0,108.0,49.0,76.0 +175,26.0,15.0,66.0,18.0,16.0 +176,37.0,51.0,122.0,115.0,27.0 +177,71.0,36.0,5.0,47.0,27.0 +178,87.0,97.0,118.0,16.0,73.0 +179,51.0,53.0,98.0,7.0,204.0 +180,51.0,72.0,59.0,35.0,64.0 +181,61.0,109.0,25.0,14.0,129.0 +182,74.0,14.0,45.0,5.0,89.0 +183,74.0,38.0,106.0,148.0,120.0 +184,48.0,60.0,25.0,133.0,113.0 +185,69.0,64.0,48.0,77.0,124.0 +186,51.0,56.0,73.0,64.0,57.0 +187,21.0,28.0,13.0,113.0,124.0 +188,5.0,39.0,4.0,106.0,79.0 +189,49.0,57.0,254.0,81.0,78.0 +190,66.0,80.0,40.0,4.0,63.0 +191,97.0,62.0,57.0,205.0,2.0 +192,72.0,70.0,55.0,24.0,68.0 +193,71.0,92.0,53.0,53.0,78.0 +194,88.0,63.0,63.0,26.0,59.0 +195,52.0,86.0,45.0,120.0,109.0 +196,95.0,93.0,70.0,13.0,164.0 +197,38.0,53.0,96.0,50.0,161.0 +198,79.0,151.0,51.0,72.0,107.0 +199,223.0,92.0,12.0,54.0,3.0 +200,97.0,61.0,63.0,71.0,123.0 +201,13.0,89.0,32.0,78.0,10.0 +202,61.0,50.0,47.0,121.0,150.0 +203,16.0,54.0,12.0,50.0,86.0 +204,116.0,28.0,10.0,96.0,432.0 +205,50.0,72.0,17.0,9.0,56.0 +206,72.0,42.0,3.0,150.0,44.0 +207,48.0,75.0,44.0,232.0,26.0 +208,69.0,43.0,25.0,68.0,40.0 +209,75.0,7.0,51.0,76.0,19.0 +210,43.0,60.0,23.0,59.0,3.0 +211,187.0,12.0,37.0,16.0,9.0 +212,53.0,76.0,30.0,124.0,40.0 +213,38.0,111.0,7.0,108.0,131.0 +214,87.0,61.0,6.0,65.0,2.0 +215,14.0,62.0,51.0,14.0,69.0 +216,84.0,83.0,45.0,8.0,6.0 +217,56.0,16.0,10.0,9.0,21.0 +218,31.0,16.0,17.0,28.0,101.0 +219,83.0,50.0,69.0,63.0,123.0 +220,8.0,81.0,64.0,55.0,210.0 +221,40.0,68.0,59.0,76.0,194.0 +222,15.0,51.0,51.0,21.0,182.0 +223,32.0,35.0,48.0,85.0,134.0 +224,35.0,114.0,157.0,127.0,44.0 +225,77.0,42.0,17.0,49.0,49.0 +226,81.0,84.0,101.0,51.0,73.0 +227,5.0,53.0,67.0,58.0,16.0 +228,8.0,61.0,55.0,56.0,43.0 +229,64.0,4.0,8.0,52.0,50.0 +230,60.0,21.0,218.0,69.0,49.0 +231,87.0,131.0,16.0,41.0,41.0 +232,90.0,20.0,29.0,79.0,47.0 +233,60.0,43.0,25.0,101.0,45.0 +234,65.0,57.0,60.0,183.0,39.0 +235,64.0,270.0,8.0,135.0,40.0 +236,74.0,69.0,29.0,104.0,2.0 +237,72.0,42.0,66.0,36.0,39.0 +238,48.0,71.0,37.0,109.0,47.0 +239,58.0,6.0,24.0,23.0,42.0 +240,52.0,23.0,57.0,15.0,2.0 +241,5.0,63.0,39.0,77.0,46.0 +242,75.0,73.0,33.0,21.0,12.0 +243,68.0,70.0,159.0,20.0,13.0 +244,89.0,77.0,37.0,23.0,43.0 +245,25.0,63.0,64.0,70.0,2.0 +246,31.0,79.0,87.0,35.0,61.0 +247,38.0,56.0,44.0,59.0,57.0 +248,53.0,54.0,103.0,3.0,15.0 +249,15.0,60.0,25.0,58.0,113.0 +250,41.0,52.0,168.0,69.0,116.0 +251,151.0,6.0,91.0,126.0,58.0 +252,92.0,35.0,68.0,66.0,81.0 +253,63.0,117.0,26.0,116.0,81.0 +254,50.0,29.0,59.0,25.0,2.0 +255,17.0,74.0,12.0,37.0,111.0 +256,13.0,71.0,52.0,107.0,220.0 +257,20.0,6.0,37.0,145.0,209.0 +258,260.0,60.0,55.0,5.0,176.0 +259,27.0,75.0,51.0,65.0,99.0 +260,44.0,14.0,72.0,17.0,97.0 +261,68.0,9.0,55.0,131.0,229.0 +262,72.0,48.0,171.0,153.0,208.0 +263,25.0,66.0,84.0,112.0,151.0 +264,42.0,57.0,146.0,102.0,116.0 +265,179.0,25.0,106.0,143.0,43.0 +266,30.0,2.0,65.0,33.0,32.0 +267,63.0,38.0,79.0,134.0,96.0 +268,61.0,47.0,8.0,235.0,16.0 +269,39.0,281.0,67.0,93.0,62.0 +270,11.0,60.0,159.0,99.0,74.0 +271,13.0,41.0,132.0,154.0,50.0 +272,89.0,65.0,117.0,203.0,69.0 +273,5.0,178.0,102.0,55.0,172.0 +274,133.0,100.0,45.0,106.0,133.0 +275,48.0,177.0,9.0,35.0,25.0 +276,15.0,154.0,59.0,28.0,44.0 +277,131.0,140.0,148.0,37.0,236.0 +278,56.0,204.0,64.0,29.0,220.0 +279,70.0,201.0,83.0,14.0,139.0 +280,83.0,5.0,58.0,56.0,69.0 +281,5.0,78.0,100.0,44.0,68.0 +282,56.0,76.0,54.0,25.0,337.0 +283,50.0,81.0,10.0,15.0,141.0 +284,10.0,115.0,119.0,45.0,67.0 +285,66.0,49.0,2.0,174.0,100.0 +286,204.0,37.0,173.0,63.0,52.0 +287,89.0,71.0,12.0,105.0,10.0 +288,194.0,243.0,64.0,159.0,717.0 +289,51.0,64.0,64.0,141.0,46.0 +290,30.0,18.0,12.0,16.0,187.0 +291,46.0,7.0,74.0,58.0,49.0 +292,36.0,46.0,61.0,161.0,4.0 +293,78.0,41.0,49.0,100.0,46.0 +294,27.0,27.0,133.0,130.0,41.0 +295,31.0,44.0,74.0,121.0,45.0 +296,92.0,67.0,57.0,75.0,5.0 +297,34.0,24.0,178.0,170.0,49.0 +298,49.0,157.0,154.0,150.0,41.0 +299,75.0,231.0,13.0,106.0,11.0 +300,123.0,194.0,107.0,50.0,60.0 +301,72.0,77.0,53.0,64.0,54.0 +302,140.0,253.0,56.0,120.0,3.0 +303,103.0,55.0,57.0,143.0,68.0 +304,140.0,98.0,16.0,31.0,159.0 +305,73.0,102.0,2.0,43.0,235.0 +306,113.0,151.0,23.0,88.0,11.0 +307,73.0,31.0,43.0,16.0,96.0 +308,87.0,187.0,39.0,47.0,89.0 +309,122.0,142.0,37.0,57.0,86.0 +310,143.0,81.0,55.0,188.0,3.0 +311,7.0,52.0,23.0,30.0,64.0 +312,73.0,65.0,10.0,105.0,282.0 +313,88.0,179.0,44.0,64.0,122.0 +314,56.0,36.0,41.0,4.0,112.0 +315,166.0,183.0,43.0,65.0,90.0 +316,45.0,272.0,48.0,107.0,643.0 +317,5.0,139.0,28.0,22.0,43.0 +318,75.0,115.0,70.0,8.0,3.0 +319,44.0,59.0,22.0,106.0,8.0 +320,19.0,88.0,143.0,121.0,2.0 +321,51.0,105.0,4.0,54.0,4.0 +322,48.0,62.0,16.0,49.0,9.0 +323,70.0,205.0,65.0,55.0,50.0 +324,83.0,48.0,70.0,171.0,48.0 +325,183.0,54.0,76.0,26.0,8.0 +326,85.0,58.0,198.0,77.0,48.0 +327,55.0,49.0,144.0,46.0,50.0 +328,2.0,42.0,204.0,37.0,46.0 +329,66.0,55.0,28.0,102.0,4.0 +330,132.0,53.0,268.0,54.0,59.0 +331,8.0,4.0,190.0,92.0,17.0 +332,197.0,52.0,133.0,56.0,58.0 +333,67.0,66.0,73.0,36.0,54.0 +334,70.0,59.0,55.0,33.0,93.0 +335,60.0,51.0,70.0,41.0,58.0 +336,82.0,6.0,91.0,49.0,69.0 +337,252.0,49.0,145.0,157.0,208.0 +338,163.0,7.0,46.0,21.0,71.0 +339,98.0,16.0,63.0,105.0,73.0 +340,63.0,57.0,13.0,68.0,280.0 +341,36.0,117.0,164.0,359.0,24.0 +342,114.0,183.0,53.0,180.0,112.0 +343,11.0,25.0,81.0,6.0,264.0 +344,115.0,72.0,93.0,11.0,375.0 +345,30.0,163.0,183.0,68.0,86.0 +346,51.0,42.0,28.0,71.0,94.0 +347,46.0,52.0,134.0,200.0,82.0 +348,33.0,32.0,78.0,74.0,86.0 +349,55.0,56.0,55.0,232.0,69.0 +350,8.0,15.0,66.0,3.0,73.0 +351,3.0,21.0,60.0,42.0,35.0 +352,37.0,30.0,51.0,10.0,52.0 +353,11.0,79.0,128.0,62.0,24.0 +354,4.0,45.0,94.0,81.0,48.0 +355,11.0,190.0,113.0,24.0,291.0 +356,49.0,70.0,69.0,83.0,368.0 +357,58.0,79.0,257.0,72.0,402.0 +358,93.0,60.0,103.0,117.0,89.0 +359,46.0,97.0,238.0,92.0,10.0 +360,238.0,57.0,85.0,39.0,138.0 +361,128.0,77.0,74.0,23.0,16.0 +362,255.0,57.0,114.0,121.0,93.0 +363,33.0,68.0,218.0,52.0,155.0 +364,110.0,58.0,16.0,392.0,83.0 +365,230.0,15.0,186.0,12.0,152.0 +366,249.0,22.0,5.0,16.0,74.0 +367,57.0,89.0,110.0,54.0,49.0 +368,135.0,67.0,105.0,2.0,128.0 +369,3.0,137.0,6.0,10.0,130.0 +370,143.0,80.0,31.0,145.0,31.0 +371,60.0,268.0,138.0,93.0,38.0 +372,93.0,62.0,77.0,81.0,71.0 +373,87.0,140.0,237.0,212.0,26.0 +374,98.0,7.0,43.0,66.0,47.0 +375,72.0,66.0,77.0,69.0,110.0 +376,21.0,61.0,64.0,93.0,193.0 +377,229.0,101.0,41.0,98.0,51.0 +378,163.0,40.0,134.0,65.0,211.0 +379,115.0,76.0,124.0,249.0,338.0 +380,18.0,4.0,96.0,22.0,62.0 +381,9.0,41.0,153.0,112.0,34.0 +382,140.0,38.0,169.0,49.0,23.0 +383,43.0,58.0,96.0,76.0,68.0 +384,19.0,10.0,50.0,65.0,63.0 +385,98.0,49.0,101.0,55.0,116.0 +386,93.0,27.0,56.0,33.0,128.0 +387,141.0,44.0,74.0,7.0,242.0 +388,62.0,33.0,127.0,41.0,143.0 +389,10.0,49.0,132.0,19.0,72.0 +390,137.0,132.0,82.0,47.0,343.0 +391,50.0,188.0,52.0,40.0,90.0 +392,130.0,166.0,48.0,40.0,109.0 +393,402.0,169.0,82.0,23.0,67.0 +394,138.0,63.0,90.0,37.0,53.0 +395,118.0,196.0,2.0,40.0,62.0 +396,139.0,102.0,32.0,46.0,60.0 +397,56.0,386.0,46.0,64.0,6.0 +398,132.0,202.0,67.0,44.0,56.0 +399,15.0,171.0,89.0,55.0,84.0 +400,50.0,256.0,92.0,45.0,134.0 +401,6.0,340.0,39.0,65.0,48.0 +402,41.0,264.0,56.0,56.0,40.0 +403,46.0,75.0,48.0,61.0,52.0 +404,61.0,64.0,68.0,3.0,120.0 +405,9.0,16.0,24.0,72.0,41.0 +406,46.0,11.0,10.0,280.0,131.0 +407,42.0,53.0,143.0,261.0,81.0 +408,4.0,14.0,111.0,283.0,63.0 +409,3.0,8.0,137.0,143.0,196.0 +410,17.0,129.0,77.0,53.0,48.0 +411,4.0,217.0,94.0,7.0,283.0 +412,50.0,54.0,158.0,143.0,203.0 +413,42.0,183.0,72.0,380.0,251.0 +414,41.0,81.0,77.0,199.0,85.0 +415,60.0,144.0,57.0,119.0,78.0 +416,54.0,52.0,229.0,74.0,49.0 +417,45.0,78.0,128.0,109.0,51.0 +418,53.0,6.0,184.0,4.0,51.0 +419,24.0,136.0,146.0,31.0,16.0 +420,65.0,206.0,56.0,111.0,9.0 +421,63.0,215.0,56.0,44.0,4.0 +422,194.0,193.0,4.0,168.0,115.0 +423,298.0,182.0,7.0,201.0,123.0 +424,354.0,167.0,8.0,11.0,137.0 +425,117.0,109.0,54.0,4.0,89.0 +426,93.0,47.0,51.0,15.0,23.0 +427,191.0,63.0,44.0,51.0,104.0 +428,81.0,50.0,100.0,48.0,126.0 +429,84.0,65.0,152.0,99.0,298.0 +430,52.0,93.0,167.0,118.0,9.0 +431,88.0,49.0,75.0,160.0,101.0 +432,260.0,69.0,178.0,124.0,320.0 +433,69.0,5.0,169.0,76.0,29.0 +434,396.0,149.0,169.0,318.0,26.0 +435,100.0,166.0,111.0,32.0,13.0 +436,101.0,20.0,50.0,210.0,147.0 +437,471.0,55.0,117.0,95.0,265.0 +438,151.0,54.0,129.0,104.0,12.0 +439,199.0,168.0,157.0,104.0,68.0 +440,43.0,20.0,175.0,267.0,68.0 +441,60.0,49.0,117.0,43.0,59.0 +442,7.0,15.0,155.0,100.0,34.0 +443,118.0,48.0,61.0,230.0,4.0 +444,199.0,162.0,87.0,56.0,62.0 +445,73.0,298.0,65.0,54.0,5.0 +446,5.0,54.0,26.0,18.0,52.0 +447,20.0,72.0,203.0,47.0,55.0 +448,58.0,6.0,143.0,43.0,174.0 +449,5.0,244.0,131.0,15.0,46.0 +450,4.0,86.0,101.0,23.0,59.0 +451,10.0,192.0,33.0,13.0,113.0 +452,50.0,119.0,105.0,57.0,138.0 +453,16.0,231.0,54.0,121.0,87.0 +454,50.0,15.0,148.0,24.0,57.0 +455,65.0,44.0,204.0,323.0,75.0 +456,107.0,302.0,117.0,32.0,57.0 +457,216.0,16.0,90.0,63.0,226.0 +458,348.0,8.0,118.0,103.0,439.0 +459,44.0,167.0,62.0,214.0,206.0 +460,3.0,108.0,4.0,40.0,55.0 +461,63.0,110.0,68.0,5.0,77.0 +462,46.0,19.0,82.0,70.0,136.0 +463,57.0,63.0,36.0,50.0,167.0 +464,52.0,31.0,20.0,183.0,104.0 +465,48.0,93.0,132.0,231.0,81.0 +466,64.0,55.0,53.0,44.0,128.0 +467,62.0,56.0,46.0,20.0,50.0 +468,62.0,51.0,103.0,165.0,99.0 +469,45.0,51.0,42.0,168.0,211.0 +470,84.0,66.0,12.0,19.0,129.0 +471,421.0,2.0,46.0,33.0,52.0 +472,73.0,17.0,33.0,48.0,86.0 +473,26.0,2.0,70.0,56.0,56.0 +474,53.0,9.0,77.0,74.0,42.0 +475,248.0,56.0,66.0,20.0,54.0 +476,181.0,65.0,37.0,83.0,134.0 +477,70.0,8.0,105.0,281.0,48.0 +478,230.0,59.0,203.0,128.0,151.0 +479,24.0,3.0,64.0,289.0,89.0 +480,21.0,10.0,3.0,63.0,43.0 +481,72.0,80.0,216.0,195.0,44.0 +482,315.0,452.0,321.0,34.0,3.0 +483,217.0,324.0,236.0,261.0,775.0 +484,51.0,98.0,38.0,10.0,148.0 +485,43.0,7.0,185.0,192.0,92.0 +486,42.0,56.0,69.0,169.0,165.0 +487,45.0,5.0,233.0,100.0,273.0 +488,34.0,48.0,26.0,84.0,204.0 +489,40.0,57.0,78.0,71.0,62.0 +490,41.0,25.0,173.0,55.0,97.0 +491,41.0,55.0,140.0,52.0,124.0 +492,10.0,44.0,64.0,23.0,53.0 +493,42.0,58.0,51.0,32.0,64.0 +494,45.0,57.0,86.0,61.0,65.0 +495,3.0,232.0,139.0,71.0,71.0 +496,5.0,56.0,79.0,36.0,8.0 +497,52.0,61.0,17.0,58.0,48.0 +498,5.0,4.0,39.0,39.0,31.0 +499,39.0,53.0,102.0,4.0,148.0 +500,48.0,16.0,126.0,3.0,30.0 +501,54.0,53.0,75.0,14.0,30.0 +502,65.0,2.0,330.0,3.0,74.0 +503,56.0,617.0,38.0,114.0,100.0 +504,54.0,52.0,51.0,209.0,272.0 +505,60.0,133.0,50.0,93.0,94.0 +506,829.0,73.0,11.0,56.0,156.0 +507,44.0,674.0,7.0,112.0,100.0 +508,3.0,80.0,160.0,78.0,19.0 +509,47.0,61.0,6.0,232.0,53.0 +510,11.0,417.0,156.0,79.0,189.0 +511,3.0,445.0,235.0,58.0,11.0 +512,52.0,291.0,71.0,64.0,49.0 +513,50.0,44.0,94.0,63.0,374.0 +514,3.0,58.0,297.0,408.0,71.0 +515,66.0,82.0,58.0,170.0,329.0 +516,35.0,22.0,170.0,66.0,68.0 +517,58.0,110.0,100.0,21.0,169.0 +518,53.0,170.0,106.0,59.0,10.0 +519,255.0,44.0,172.0,166.0,52.0 +520,104.0,253.0,190.0,459.0,35.0 +521,97.0,60.0,91.0,111.0,255.0 +522,48.0,75.0,48.0,27.0,90.0 +523,144.0,84.0,158.0,170.0,179.0 +524,168.0,52.0,128.0,35.0,15.0 +525,24.0,50.0,108.0,38.0,10.0 +526,61.0,240.0,273.0,52.0,76.0 +527,287.0,52.0,97.0,47.0,12.0 +528,152.0,235.0,120.0,2.0,136.0 +529,7.0,104.0,5.0,37.0,33.0 +530,86.0,25.0,132.0,19.0,185.0 +531,77.0,61.0,106.0,8.0,260.0 +532,19.0,324.0,274.0,232.0,61.0 +533,103.0,296.0,53.0,150.0,56.0 +534,51.0,71.0,170.0,176.0,245.0 +535,89.0,118.0,205.0,21.0,155.0 +536,82.0,169.0,3.0,40.0,85.0 +537,153.0,87.0,78.0,167.0,53.0 +538,286.0,259.0,150.0,149.0,107.0 +539,163.0,204.0,69.0,63.0,181.0 +540,94.0,46.0,184.0,47.0,138.0 +541,3.0,122.0,278.0,46.0,193.0 +542,81.0,105.0,15.0,3.0,94.0 +543,47.0,61.0,44.0,63.0,151.0 +544,78.0,147.0,7.0,60.0,149.0 +545,50.0,166.0,57.0,62.0,216.0 +546,64.0,52.0,8.0,58.0,60.0 +547,50.0,76.0,50.0,73.0,11.0 +548,49.0,5.0,16.0,64.0,249.0 +549,2.0,131.0,58.0,66.0,49.0 +550,58.0,71.0,74.0,44.0,64.0 +551,4.0,14.0,21.0,59.0,37.0 +552,5.0,29.0,121.0,49.0,60.0 +553,45.0,149.0,7.0,224.0,179.0 +554,54.0,14.0,38.0,403.0,148.0 +555,45.0,228.0,42.0,5.0,85.0 +556,3.0,250.0,143.0,234.0,313.0 +557,49.0,52.0,171.0,67.0,54.0 +558,45.0,54.0,195.0,81.0,40.0 +559,62.0,228.0,88.0,513.0,51.0 +560,59.0,102.0,242.0,122.0,4.0 +561,60.0,35.0,74.0,49.0,3.0 +562,53.0,137.0,245.0,5.0,52.0 +563,56.0,367.0,510.0,48.0,56.0 +564,671.0,50.0,13.0,208.0,45.0 +565,166.0,62.0,113.0,76.0,56.0 +566,158.0,166.0,182.0,11.0,72.0 +567,97.0,11.0,17.0,220.0,293.0 +568,195.0,436.0,71.0,48.0,395.0 +569,51.0,93.0,403.0,39.0,398.0 +570,62.0,88.0,96.0,383.0,22.0 +571,170.0,196.0,29.0,36.0,160.0 +572,34.0,87.0,12.0,59.0,35.0 +573,28.0,87.0,246.0,10.0,51.0 +574,146.0,49.0,79.0,3.0,172.0 +575,214.0,26.0,105.0,65.0,65.0 +576,214.0,117.0,73.0,429.0,128.0 +577,185.0,48.0,59.0,95.0,58.0 +578,47.0,95.0,3.0,65.0,91.0 +579,2.0,94.0,125.0,67.0,72.0 +580,54.0,74.0,100.0,105.0,5.0 +581,369.0,26.0,92.0,108.0,110.0 +582,119.0,55.0,61.0,98.0,137.0 +583,58.0,191.0,61.0,144.0,3.0 +584,68.0,54.0,54.0,52.0,78.0 +585,192.0,10.0,53.0,9.0,42.0 +586,141.0,80.0,150.0,125.0,15.0 +587,14.0,32.0,234.0,36.0,178.0 +588,282.0,198.0,268.0,129.0,67.0 +589,288.0,104.0,25.0,99.0,484.0 +590,143.0,167.0,218.0,109.0,61.0 +591,10.0,57.0,248.0,14.0,210.0 +592,104.0,63.0,12.0,42.0,191.0 +593,28.0,296.0,14.0,68.0,77.0 +594,198.0,90.0,10.0,86.0,161.0 +595,38.0,404.0,44.0,96.0,150.0 +596,51.0,43.0,171.0,15.0,67.0 +597,42.0,48.0,51.0,77.0,31.0 +598,93.0,55.0,43.0,142.0,253.0 +599,145.0,79.0,25.0,94.0,80.0 +600,71.0,67.0,44.0,340.0,63.0 +601,12.0,75.0,8.0,19.0,105.0 +602,9.0,105.0,41.0,16.0,60.0 +603,10.0,271.0,39.0,261.0,89.0 +604,29.0,80.0,9.0,268.0,58.0 +605,50.0,108.0,64.0,106.0,188.0 +606,53.0,107.0,308.0,43.0,215.0 +607,185.0,67.0,187.0,80.0,61.0 +608,249.0,128.0,109.0,65.0,86.0 +609,647.0,219.0,132.0,179.0,229.0 +610,48.0,145.0,167.0,383.0,273.0 +611,56.0,121.0,46.0,196.0,237.0 +612,13.0,6.0,40.0,13.0,157.0 +613,8.0,77.0,9.0,110.0,24.0 +614,57.0,135.0,54.0,104.0,48.0 +615,4.0,69.0,41.0,88.0,72.0 +616,62.0,11.0,56.0,152.0,5.0 +617,69.0,28.0,45.0,51.0,138.0 +618,22.0,17.0,49.0,37.0,68.0 +619,42.0,40.0,6.0,31.0,104.0 +620,9.0,24.0,52.0,364.0,7.0 +621,108.0,46.0,57.0,54.0,52.0 +622,80.0,49.0,65.0,173.0,72.0 +623,267.0,5.0,78.0,116.0,108.0 +624,33.0,53.0,740.0,272.0,167.0 +625,241.0,9.0,218.0,15.0,150.0 +626,183.0,359.0,61.0,102.0,122.0 +627,16.0,72.0,338.0,19.0,104.0 +628,606.0,143.0,115.0,104.0,256.0 +629,75.0,292.0,80.0,441.0,169.0 +630,149.0,402.0,218.0,61.0,39.0 +631,81.0,10.0,413.0,216.0,208.0 +632,70.0,351.0,72.0,112.0,138.0 +633,64.0,30.0,67.0,72.0,56.0 +634,84.0,188.0,395.0,100.0,132.0 +635,5.0,576.0,212.0,65.0,30.0 +636,50.0,76.0,46.0,166.0,61.0 +637,4.0,33.0,201.0,155.0,62.0 +638,70.0,150.0,82.0,70.0,143.0 +639,60.0,11.0,27.0,94.0,127.0 +640,61.0,83.0,9.0,115.0,10.0 +641,32.0,16.0,109.0,19.0,146.0 +642,50.0,29.0,8.0,16.0,265.0 +643,148.0,224.0,370.0,80.0,37.0 +644,65.0,192.0,70.0,27.0,64.0 +645,50.0,46.0,189.0,122.0,64.0 +646,47.0,6.0,63.0,43.0,50.0 +647,63.0,161.0,52.0,113.0,4.0 +648,69.0,82.0,50.0,127.0,55.0 +649,127.0,71.0,51.0,69.0,7.0 +650,144.0,152.0,4.0,252.0,448.0 +651,212.0,102.0,46.0,152.0,51.0 +652,276.0,134.0,566.0,280.0,52.0 +653,67.0,40.0,60.0,125.0,46.0 +654,150.0,93.0,56.0,61.0,50.0 +655,111.0,260.0,457.0,135.0,51.0 +656,41.0,59.0,94.0,237.0,48.0 +657,537.0,72.0,86.0,336.0,55.0 +658,163.0,102.0,41.0,106.0,11.0 +659,135.0,73.0,23.0,68.0,424.0 +660,42.0,100.0,197.0,88.0,253.0 +661,7.0,62.0,20.0,74.0,215.0 +662,93.0,146.0,16.0,78.0,60.0 +663,64.0,11.0,24.0,12.0,191.0 +664,184.0,32.0,21.0,111.0,194.0 +665,230.0,72.0,49.0,49.0,44.0 +666,44.0,306.0,9.0,15.0,69.0 +667,67.0,113.0,61.0,170.0,59.0 +668,367.0,199.0,28.0,35.0,19.0 +669,71.0,78.0,64.0,121.0,102.0 +670,12.0,325.0,50.0,121.0,164.0 +671,58.0,242.0,281.0,213.0,264.0 +672,57.0,101.0,250.0,156.0,61.0 +673,209.0,142.0,288.0,174.0,264.0 +674,12.0,536.0,61.0,218.0,143.0 +675,107.0,225.0,46.0,51.0,136.0 +676,301.0,61.0,95.0,232.0,92.0 +677,3.0,62.0,6.0,270.0,67.0 +678,64.0,35.0,162.0,83.0,180.0 +679,220.0,121.0,42.0,163.0,297.0 +680,277.0,66.0,12.0,153.0,73.0 +681,184.0,20.0,68.0,93.0,231.0 +682,57.0,56.0,231.0,22.0,109.0 +683,142.0,73.0,152.0,61.0,183.0 +684,126.0,99.0,36.0,35.0,174.0 +685,5.0,73.0,60.0,52.0,48.0 +686,175.0,64.0,153.0,40.0,22.0 +687,101.0,28.0,237.0,8.0,121.0 +688,64.0,64.0,134.0,55.0,160.0 +689,74.0,180.0,253.0,53.0,48.0 +690,59.0,58.0,106.0,50.0,217.0 +691,100.0,105.0,226.0,53.0,50.0 +692,595.0,112.0,48.0,68.0,1000.0 +693,56.0,55.0,3.0,64.0,95.0 +694,64.0,57.0,45.0,212.0,90.0 +695,52.0,220.0,5.0,109.0,79.0 +696,64.0,239.0,53.0,412.0,77.0 +697,3.0,655.0,49.0,380.0,104.0 +698,135.0,102.0,4.0,13.0,97.0 +699,129.0,177.0,63.0,215.0,62.0 +700,62.0,281.0,777.0,422.0,88.0 +701,105.0,100.0,59.0,116.0,50.0 +702,31.0,131.0,237.0,37.0,39.0 +703,164.0,25.0,82.0,72.0,9.0 +704,204.0,65.0,190.0,48.0,28.0 +705,77.0,178.0,108.0,65.0,61.0 +706,89.0,45.0,141.0,11.0,66.0 +707,68.0,53.0,54.0,46.0,166.0 +708,445.0,47.0,64.0,229.0,100.0 +709,83.0,5.0,185.0,96.0,277.0 +710,384.0,8.0,92.0,55.0,90.0 +711,110.0,44.0,61.0,15.0,205.0 +712,6.0,8.0,49.0,67.0,94.0 +713,5.0,58.0,206.0,145.0,19.0 +714,53.0,33.0,78.0,115.0,8.0 +715,3.0,45.0,83.0,59.0,336.0 +716,5.0,145.0,25.0,14.0,133.0 +717,48.0,172.0,93.0,149.0,6.0 +718,23.0,245.0,10.0,224.0,327.0 +719,4.0,139.0,77.0,98.0,169.0 +720,75.0,4.0,192.0,16.0,114.0 +721,110.0,118.0,240.0,69.0,125.0 +722,116.0,62.0,86.0,83.0,9.0 +723,124.0,84.0,206.0,65.0,138.0 +724,90.0,129.0,38.0,74.0,318.0 +725,27.0,136.0,91.0,150.0,118.0 +726,64.0,47.0,29.0,158.0,245.0 +727,179.0,166.0,4.0,58.0,381.0 +728,563.0,14.0,44.0,109.0,78.0 +729,85.0,18.0,200.0,70.0,11.0 +730,48.0,58.0,179.0,59.0,52.0 +731,71.0,56.0,83.0,420.0,201.0 +732,362.0,73.0,63.0,59.0,213.0 +733,62.0,216.0,64.0,7.0,108.0 +734,151.0,264.0,113.0,29.0,214.0 +735,59.0,159.0,164.0,574.0,241.0 +736,169.0,88.0,166.0,332.0,31.0 +737,66.0,621.0,193.0,83.0,302.0 +738,104.0,117.0,7.0,69.0,226.0 +739,178.0,262.0,342.0,200.0,64.0 +740,45.0,85.0,68.0,202.0,62.0 +741,4.0,4.0,78.0,10.0,35.0 +742,79.0,116.0,113.0,24.0,213.0 +743,15.0,177.0,168.0,50.0,247.0 +744,15.0,58.0,69.0,3.0,125.0 +745,71.0,67.0,7.0,48.0,4.0 +746,123.0,87.0,180.0,32.0,11.0 +747,309.0,238.0,143.0,52.0,157.0 +748,102.0,108.0,191.0,53.0,146.0 +749,80.0,91.0,41.0,40.0,178.0 +750,437.0,54.0,58.0,5.0,47.0 +751,151.0,40.0,321.0,51.0,49.0 +752,194.0,80.0,65.0,50.0,272.0 +753,299.0,74.0,156.0,49.0,93.0 +754,344.0,274.0,7.0,10.0,281.0 +755,31.0,14.0,53.0,98.0,220.0 +756,57.0,32.0,44.0,38.0,122.0 +757,51.0,64.0,5.0,722.0,47.0 +758,177.0,118.0,51.0,217.0,242.0 +759,214.0,146.0,13.0,73.0,72.0 +760,129.0,396.0,44.0,96.0,64.0 +761,131.0,151.0,47.0,44.0,38.0 +762,92.0,224.0,54.0,98.0,184.0 +763,78.0,447.0,59.0,53.0,4.0 +764,25.0,57.0,391.0,50.0,134.0 +765,18.0,139.0,74.0,63.0,9.0 +766,120.0,76.0,49.0,11.0,92.0 +767,157.0,279.0,45.0,24.0,110.0 +768,62.0,4.0,4.0,4.0,11.0 +769,64.0,37.0,3.0,57.0,234.0 +770,3.0,58.0,61.0,7.0,387.0 +771,48.0,138.0,55.0,23.0,95.0 +772,8.0,197.0,52.0,86.0,649.0 +773,25.0,5.0,62.0,91.0,165.0 +774,9.0,43.0,38.0,27.0,81.0 +775,9.0,60.0,813.0,331.0,97.0 +776,2.0,75.0,92.0,78.0,575.0 +777,185.0,75.0,77.0,45.0,324.0 +778,145.0,46.0,42.0,123.0,555.0 +779,62.0,49.0,106.0,348.0,67.0 +780,267.0,20.0,59.0,4.0,61.0 +781,285.0,76.0,173.0,58.0,182.0 +782,35.0,12.0,84.0,129.0,115.0 +783,59.0,264.0,83.0,89.0,131.0 +784,98.0,506.0,48.0,34.0,390.0 +785,60.0,70.0,47.0,162.0,51.0 +786,13.0,5.0,73.0,135.0,115.0 +787,201.0,127.0,296.0,31.0,151.0 +788,161.0,125.0,64.0,138.0,48.0 +789,229.0,69.0,392.0,401.0,32.0 +790,32.0,72.0,168.0,44.0,194.0 +791,312.0,387.0,49.0,12.0,70.0 +792,256.0,282.0,191.0,15.0,62.0 +793,370.0,44.0,134.0,7.0,72.0 +794,82.0,162.0,28.0,48.0,573.0 +795,78.0,248.0,369.0,37.0,173.0 +796,111.0,199.0,223.0,98.0,227.0 +797,314.0,71.0,229.0,4.0,15.0 +798,226.0,667.0,5.0,12.0,243.0 +799,43.0,79.0,4.0,100.0,70.0 +800,42.0,11.0,4.0,75.0,310.0 +801,11.0,91.0,747.0,70.0,198.0 +802,33.0,71.0,68.0,379.0,117.0 +803,14.0,167.0,59.0,522.0,154.0 +804,4.0,224.0,32.0,48.0,76.0 +805,19.0,87.0,179.0,69.0,10.0 +806,44.0,91.0,138.0,103.0,276.0 +807,6.0,35.0,69.0,591.0,207.0 +808,134.0,106.0,130.0,11.0,103.0 +809,60.0,83.0,231.0,5.0,138.0 +810,53.0,49.0,93.0,43.0,134.0 +811,73.0,269.0,137.0,6.0,55.0 +812,83.0,103.0,94.0,43.0,10.0 +813,379.0,92.0,132.0,5.0,75.0 +814,74.0,50.0,128.0,82.0,127.0 +815,717.0,24.0,79.0,17.0,120.0 +816,19.0,398.0,64.0,3.0,35.0 +817,83.0,329.0,179.0,48.0,176.0 +818,45.0,52.0,118.0,31.0,74.0 +819,17.0,14.0,93.0,224.0,47.0 +820,27.0,215.0,161.0,146.0,119.0 +821,60.0,139.0,66.0,46.0,207.0 +822,6.0,201.0,100.0,46.0,136.0 +823,53.0,27.0,58.0,178.0,10.0 +824,61.0,233.0,70.0,206.0,170.0 +825,261.0,54.0,60.0,46.0,95.0 +826,105.0,48.0,127.0,140.0,182.0 +827,172.0,90.0,68.0,295.0,59.0 +828,129.0,259.0,251.0,51.0,54.0 +829,249.0,138.0,88.0,61.0,89.0 +830,390.0,7.0,118.0,69.0,60.0 +831,42.0,51.0,136.0,137.0,4.0 +832,138.0,132.0,50.0,63.0,5.0 +833,439.0,183.0,37.0,208.0,108.0 +834,364.0,525.0,178.0,93.0,5.0 +835,86.0,56.0,52.0,81.0,172.0 +836,62.0,345.0,212.0,206.0,49.0 +837,72.0,155.0,662.0,198.0,866.0 +838,57.0,213.0,181.0,10.0,317.0 +839,9.0,37.0,180.0,168.0,54.0 +840,63.0,96.0,120.0,10.0,56.0 +841,59.0,72.0,42.0,848.0,170.0 +842,156.0,79.0,79.0,4.0,2.0 +843,21.0,357.0,5.0,190.0,49.0 +844,7.0,141.0,186.0,104.0,29.0 +845,83.0,53.0,55.0,59.0,7.0 +846,196.0,4.0,65.0,52.0,43.0 +847,87.0,76.0,71.0,83.0,61.0 +848,244.0,64.0,57.0,4.0,57.0 +849,50.0,47.0,514.0,40.0,2.0 +850,82.0,48.0,60.0,8.0,57.0 +851,302.0,10.0,133.0,231.0,12.0 +852,37.0,49.0,350.0,79.0,3.0 +853,292.0,42.0,58.0,64.0,831.0 +854,42.0,48.0,159.0,48.0,106.0 +855,59.0,2.0,37.0,66.0,91.0 +856,95.0,42.0,125.0,52.0,71.0 +857,201.0,44.0,140.0,67.0,72.0 +858,74.0,48.0,52.0,57.0,596.0 +859,7.0,46.0,61.0,67.0,40.0 +860,96.0,53.0,21.0,55.0,72.0 +861,70.0,3.0,46.0,232.0,68.0 +862,431.0,50.0,61.0,711.0,57.0 +863,109.0,48.0,3.0,51.0,208.0 +864,234.0,58.0,50.0,58.0,50.0 +865,136.0,71.0,34.0,18.0,943.0 +866,56.0,6.0,496.0,132.0,613.0 +867,640.0,716.0,330.0,178.0,32.0 +868,37.0,458.0,58.0,252.0,131.0 +869,186.0,81.0,95.0,526.0,282.0 +870,42.0,60.0,62.0,56.0,296.0 +871,15.0,210.0,13.0,16.0,99.0 +872,41.0,45.0,78.0,45.0,229.0 +873,29.0,545.0,95.0,46.0,31.0 +874,39.0,93.0,652.0,49.0,214.0 +875,47.0,63.0,51.0,49.0,16.0 +876,76.0,474.0,3.0,5.0,59.0 +877,96.0,67.0,185.0,52.0,8.0 +878,31.0,70.0,87.0,56.0,523.0 +879,59.0,55.0,68.0,55.0,246.0 +880,3.0,51.0,4.0,55.0,68.0 +881,32.0,54.0,93.0,748.0,57.0 +882,50.0,53.0,136.0,454.0,63.0 +883,217.0,61.0,159.0,59.0,565.0 +884,71.0,2.0,8.0,30.0,78.0 +885,56.0,8.0,318.0,51.0,191.0 +886,11.0,4.0,75.0,16.0,50.0 +887,50.0,69.0,136.0,83.0,29.0 +888,4.0,409.0,54.0,39.0,79.0 +889,30.0,188.0,138.0,43.0,62.0 +890,47.0,47.0,210.0,78.0,52.0 +891,48.0,381.0,483.0,4.0,39.0 +892,51.0,82.0,43.0,49.0,53.0 +893,55.0,181.0,185.0,4.0,4.0 +894,6.0,3.0,36.0,235.0,56.0 +895,62.0,299.0,250.0,76.0,59.0 +896,71.0,100.0,139.0,7.0,57.0 +897,111.0,25.0,341.0,166.0,99.0 +898,76.0,111.0,72.0,61.0,61.0 +899,59.0,445.0,82.0,61.0,78.0 +900,684.0,24.0,50.0,74.0,125.0 +901,88.0,38.0,101.0,4.0,1000.0 +902,197.0,145.0,4.0,52.0,1000.0 +903,43.0,337.0,60.0,6.0,182.0 +904,53.0,138.0,69.0,3.0,67.0 +905,135.0,7.0,8.0,48.0,1000.0 +906,56.0,32.0,118.0,58.0,242.0 +907,50.0,117.0,139.0,83.0,355.0 +908,69.0,112.0,619.0,238.0,85.0 +909,53.0,70.0,269.0,258.0,118.0 +910,8.0,61.0,46.0,29.0,221.0 +911,627.0,55.0,411.0,61.0,114.0 +912,15.0,77.0,23.0,47.0,479.0 +913,1000.0,59.0,56.0,476.0,5.0 +914,453.0,101.0,52.0,6.0,195.0 +915,325.0,505.0,53.0,77.0,111.0 +916,76.0,388.0,74.0,40.0,249.0 +917,152.0,165.0,34.0,871.0,14.0 +918,76.0,48.0,69.0,146.0,79.0 +919,11.0,48.0,12.0,134.0,367.0 +920,71.0,81.0,61.0,268.0,96.0 +921,209.0,45.0,338.0,219.0,392.0 +922,16.0,285.0,40.0,69.0,58.0 +923,73.0,55.0,36.0,175.0,821.0 +924,152.0,71.0,100.0,513.0,177.0 +925,57.0,355.0,347.0,89.0,48.0 +926,32.0,98.0,5.0,162.0,202.0 +927,88.0,69.0,67.0,118.0,1000.0 +928,71.0,129.0,71.0,86.0,1000.0 +929,37.0,298.0,143.0,45.0,1000.0 +930,15.0,48.0,92.0,259.0,1000.0 +931,105.0,244.0,66.0,22.0,1000.0 +932,34.0,53.0,55.0,95.0,982.0 +933,175.0,63.0,45.0,279.0,428.0 +934,99.0,182.0,15.0,178.0,399.0 +935,103.0,146.0,12.0,3.0,80.0 +936,51.0,70.0,54.0,64.0,63.0 +937,16.0,61.0,84.0,2.0,71.0 +938,63.0,49.0,53.0,154.0,59.0 +939,64.0,75.0,5.0,5.0,78.0 +940,58.0,355.0,70.0,59.0,63.0 +941,76.0,322.0,730.0,3.0,59.0 +942,239.0,48.0,166.0,54.0,63.0 +943,736.0,736.0,70.0,49.0,69.0 +944,97.0,448.0,49.0,46.0,81.0 +945,392.0,35.0,56.0,85.0,1000.0 +946,54.0,23.0,7.0,52.0,458.0 +947,273.0,25.0,13.0,46.0,1000.0 +948,102.0,306.0,62.0,3.0,1000.0 +949,145.0,159.0,59.0,53.0,1000.0 +950,38.0,222.0,7.0,79.0,1000.0 +951,260.0,67.0,103.0,743.0,1000.0 +952,200.0,126.0,261.0,637.0,1000.0 +953,141.0,88.0,55.0,126.0,1000.0 +954,328.0,50.0,211.0,35.0,1000.0 +955,266.0,26.0,241.0,116.0,1000.0 +956,169.0,124.0,204.0,37.0,1000.0 +957,92.0,55.0,91.0,78.0,1000.0 +958,34.0,31.0,153.0,340.0,1000.0 +959,22.0,89.0,363.0,197.0,1000.0 +960,31.0,71.0,23.0,37.0,1000.0 +961,76.0,37.0,101.0,269.0,1000.0 +962,7.0,96.0,303.0,98.0,1000.0 +963,29.0,22.0,87.0,329.0,1000.0 +964,33.0,45.0,285.0,34.0,1000.0 +965,101.0,55.0,20.0,64.0,1000.0 +966,69.0,59.0,67.0,41.0,1000.0 +967,62.0,57.0,76.0,53.0,1000.0 +968,6.0,47.0,54.0,203.0,1000.0 +969,349.0,85.0,65.0,67.0,1000.0 +970,19.0,64.0,302.0,100.0,1000.0 +971,164.0,204.0,70.0,4.0,1000.0 +972,109.0,690.0,190.0,70.0,1000.0 +973,39.0,163.0,145.0,75.0,1000.0 +974,66.0,405.0,66.0,306.0,1000.0 +975,44.0,475.0,74.0,42.0,1000.0 +976,54.0,82.0,64.0,99.0,1000.0 +977,58.0,237.0,64.0,26.0,1000.0 +978,6.0,101.0,1000.0,196.0,1000.0 +979,66.0,85.0,50.0,99.0,1000.0 +980,98.0,184.0,209.0,67.0,1000.0 +981,72.0,10.0,11.0,145.0,1000.0 +982,59.0,42.0,198.0,48.0,1000.0 +983,500.0,148.0,18.0,6.0,1000.0 +984,61.0,66.0,27.0,100.0,1000.0 +985,47.0,37.0,15.0,49.0,1000.0 +986,368.0,128.0,12.0,62.0,1000.0 +987,68.0,55.0,38.0,69.0,1000.0 +988,26.0,105.0,10.0,100.0,1000.0 +989,13.0,35.0,593.0,61.0,1000.0 +990,76.0,54.0,90.0,75.0,1000.0 +991,965.0,260.0,104.0,406.0,1000.0 +992,111.0,64.0,37.0,563.0,1000.0 +993,60.0,107.0,196.0,12.0,1000.0 +994,147.0,19.0,17.0,304.0,1000.0 +995,65.0,107.0,6.0,325.0,1000.0 +996,78.0,3.0,55.0,54.0,1000.0 +997,37.0,581.0,572.0,28.0,1000.0 +998,170.0,85.0,20.0,147.0,1000.0 +999,372.0,22.0,439.0,167.0,1000.0 +1000,81.0,66.0,89.0,12.0,1000.0 +1001,136.0,102.0,68.0,74.0,1000.0 +1002,48.0,86.0,305.0,34.0,1000.0 +1003,141.0,56.0,78.0,104.0,1000.0 +1004,47.0,230.0,131.0,342.0,1000.0 +1005,44.0,70.0,68.0,10.0,1000.0 +1006,388.0,171.0,69.0,115.0,1000.0 +1007,217.0,539.0,40.0,63.0,1000.0 +1008,146.0,508.0,79.0,380.0,1000.0 +1009,45.0,52.0,202.0,399.0,1000.0 +1010,319.0,48.0,21.0,161.0,1000.0 +1011,176.0,48.0,39.0,83.0,1000.0 +1012,52.0,281.0,3.0,143.0,1000.0 +1013,9.0,54.0,81.0,172.0,1000.0 +1014,53.0,378.0,10.0,63.0,1000.0 +1015,5.0,61.0,383.0,41.0,1000.0 +1016,57.0,10.0,70.0,43.0,1000.0 +1017,67.0,82.0,79.0,120.0,1000.0 +1018,37.0,320.0,30.0,133.0,1000.0 +1019,72.0,83.0,74.0,39.0,1000.0 +1020,190.0,156.0,236.0,65.0,1000.0 +1021,37.0,45.0,44.0,81.0,61.0 +1022,249.0,1000.0,176.0,232.0,63.0 +1023,121.0,64.0,30.0,65.0,61.0 +1024,8.0,103.0,71.0,73.0,55.0 +1025,23.0,31.0,259.0,599.0,77.0 +1026,261.0,59.0,51.0,79.0,68.0 +1027,793.0,54.0,272.0,198.0,77.0 +1028,52.0,75.0,440.0,107.0,1000.0 +1029,125.0,59.0,67.0,34.0,1000.0 +1030,57.0,65.0,75.0,232.0,1000.0 +1031,22.0,9.0,36.0,82.0,1000.0 +1032,19.0,441.0,122.0,199.0,1000.0 +1033,78.0,69.0,167.0,106.0,1000.0 +1034,84.0,242.0,11.0,16.0,1000.0 +1035,139.0,696.0,67.0,64.0,1000.0 +1036,106.0,23.0,313.0,134.0,1000.0 +1037,35.0,240.0,98.0,86.0,1000.0 +1038,53.0,76.0,4.0,83.0,1000.0 +1039,43.0,66.0,8.0,224.0,1000.0 +1040,585.0,6.0,353.0,121.0,1000.0 +1041,275.0,273.0,418.0,81.0,1000.0 +1042,12.0,394.0,606.0,274.0,1000.0 +1043,217.0,95.0,177.0,11.0,1000.0 +1044,111.0,196.0,177.0,327.0,1000.0 +1045,64.0,455.0,5.0,240.0,1000.0 +1046,130.0,313.0,4.0,49.0,1000.0 +1047,61.0,71.0,30.0,125.0,1000.0 +1048,110.0,4.0,67.0,71.0,1000.0 +1049,78.0,302.0,5.0,220.0,1000.0 +1050,25.0,293.0,58.0,219.0,1000.0 +1051,196.0,148.0,42.0,397.0,1000.0 +1052,64.0,65.0,34.0,37.0,1000.0 +1053,9.0,48.0,118.0,34.0,1000.0 +1054,40.0,328.0,145.0,221.0,1000.0 +1055,117.0,121.0,71.0,43.0,1000.0 +1056,24.0,457.0,88.0,198.0,1000.0 +1057,258.0,70.0,85.0,67.0,1000.0 +1058,362.0,27.0,137.0,65.0,1000.0 +1059,35.0,52.0,208.0,31.0,1000.0 +1060,47.0,97.0,204.0,209.0,1000.0 +1061,150.0,104.0,395.0,96.0,1000.0 +1062,147.0,59.0,86.0,6.0,1000.0 +1063,13.0,4.0,303.0,39.0,1000.0 +1064,78.0,75.0,63.0,39.0,1000.0 +1065,17.0,122.0,7.0,105.0,1000.0 +1066,71.0,72.0,107.0,116.0,1000.0 +1067,64.0,388.0,5.0,269.0,1000.0 +1068,125.0,9.0,67.0,489.0,1000.0 +1069,7.0,117.0,61.0,390.0,1000.0 +1070,53.0,58.0,65.0,16.0,66.0 +1071,113.0,1000.0,3.0,519.0,84.0 +1072,84.0,1000.0,11.0,213.0,1000.0 +1073,71.0,27.0,199.0,126.0,1000.0 +1074,579.0,47.0,125.0,325.0,69.0 +1075,805.0,44.0,175.0,409.0,66.0 +1076,194.0,191.0,58.0,73.0,79.0 +1077,192.0,327.0,59.0,263.0,64.0 +1078,30.0,8.0,166.0,20.0,1000.0 +1079,459.0,311.0,462.0,64.0,1000.0 +1080,178.0,30.0,297.0,33.0,1000.0 +1081,3.0,4.0,28.0,66.0,1000.0 +1082,72.0,165.0,498.0,40.0,1000.0 +1083,138.0,38.0,288.0,92.0,1000.0 +1084,3.0,49.0,340.0,713.0,1000.0 +1085,160.0,95.0,62.0,713.0,1000.0 +1086,45.0,70.0,61.0,167.0,1000.0 +1087,20.0,44.0,26.0,77.0,1000.0 +1088,35.0,105.0,91.0,84.0,1000.0 +1089,25.0,97.0,74.0,213.0,1000.0 +1090,12.0,40.0,181.0,8.0,1000.0 +1091,57.0,76.0,574.0,9.0,1000.0 +1092,35.0,848.0,152.0,29.0,1000.0 +1093,24.0,33.0,92.0,19.0,1000.0 +1094,202.0,639.0,108.0,100.0,1000.0 +1095,73.0,1000.0,103.0,12.0,1000.0 +1096,14.0,1000.0,151.0,24.0,61.0 +1097,19.0,1000.0,290.0,27.0,63.0 +1098,199.0,1000.0,90.0,23.0,62.0 +1099,40.0,1000.0,183.0,70.0,63.0 +1100,34.0,1000.0,112.0,5.0,67.0 +1101,58.0,1000.0,89.0,62.0,64.0 +1102,116.0,988.0,46.0,214.0,68.0 +1103,5.0,61.0,254.0,117.0,86.0 +1104,91.0,913.0,104.0,81.0,1000.0 +1105,82.0,145.0,5.0,7.0,1000.0 +1106,243.0,67.0,11.0,359.0,1000.0 +1107,721.0,101.0,2.0,291.0,1000.0 +1108,244.0,67.0,289.0,345.0,1000.0 +1109,130.0,348.0,116.0,204.0,1000.0 +1110,240.0,1000.0,297.0,174.0,1000.0 +1111,218.0,838.0,82.0,107.0,1000.0 +1112,70.0,1000.0,176.0,53.0,1000.0 +1113,65.0,1000.0,281.0,221.0,1000.0 +1114,454.0,1000.0,743.0,67.0,1000.0 +1115,51.0,66.0,130.0,41.0,1000.0 +1116,36.0,77.0,745.0,100.0,1000.0 +1117,192.0,57.0,82.0,124.0,94.0 +1118,18.0,61.0,487.0,68.0,1000.0 +1119,94.0,63.0,112.0,68.0,1000.0 +1120,134.0,55.0,3.0,68.0,1000.0 +1121,4.0,61.0,64.0,43.0,515.0 +1122,222.0,65.0,367.0,446.0,58.0 +1123,65.0,74.0,127.0,83.0,55.0 +1124,202.0,1000.0,124.0,590.0,57.0 +1125,147.0,1000.0,257.0,202.0,59.0 +1126,232.0,1000.0,73.0,307.0,61.0 +1127,14.0,1000.0,66.0,52.0,61.0 +1128,97.0,446.0,53.0,350.0,63.0 +1129,75.0,447.0,32.0,36.0,75.0 +1130,335.0,51.0,50.0,82.0,70.0 +1131,14.0,66.0,77.0,9.0,65.0 +1132,130.0,173.0,387.0,73.0,1000.0 +1133,108.0,67.0,452.0,9.0,1000.0 +1134,11.0,4.0,89.0,4.0,1000.0 +1135,16.0,1000.0,81.0,120.0,529.0 +1136,231.0,1000.0,68.0,5.0,56.0 +1137,59.0,1000.0,572.0,941.0,57.0 +1138,5.0,1000.0,37.0,262.0,56.0 +1139,1000.0,971.0,83.0,81.0,57.0 +1140,70.0,210.0,10.0,73.0,58.0 +1141,340.0,182.0,54.0,72.0,55.0 +1142,46.0,824.0,10.0,93.0,56.0 +1143,141.0,62.0,6.0,421.0,58.0 +1144,60.0,205.0,60.0,178.0,60.0 +1145,59.0,81.0,4.0,22.0,60.0 +1146,72.0,77.0,3.0,10.0,61.0 +1147,35.0,1000.0,69.0,11.0,67.0 +1148,11.0,1000.0,1000.0,209.0,73.0 +1149,451.0,1000.0,416.0,207.0,1000.0 +1150,560.0,1000.0,330.0,164.0,1000.0 +1151,62.0,1000.0,840.0,329.0,1000.0 +1152,66.0,988.0,3.0,71.0,1000.0 +1153,69.0,497.0,145.0,53.0,1000.0 +1154,52.0,1000.0,294.0,141.0,1000.0 +1155,5.0,1000.0,687.0,737.0,1000.0 +1156,64.0,1000.0,126.0,319.0,1000.0 +1157,64.0,1000.0,57.0,385.0,1000.0 +1158,8.0,1000.0,241.0,675.0,1000.0 +1159,54.0,1000.0,41.0,769.0,1000.0 +1160,397.0,1000.0,61.0,810.0,1000.0 +1161,192.0,1000.0,42.0,606.0,65.0 +1162,783.0,1000.0,237.0,13.0,66.0 +1163,342.0,1000.0,1000.0,110.0,62.0 +1164,8.0,78.0,1000.0,621.0,63.0 +1165,850.0,75.0,1000.0,100.0,61.0 +1166,331.0,58.0,1000.0,82.0,63.0 +1167,43.0,67.0,1000.0,71.0,64.0 +1168,43.0,72.0,1000.0,66.0,73.0 +1169,30.0,69.0,227.0,749.0,93.0 +1170,364.0,1000.0,1000.0,11.0,1000.0 +1171,615.0,1000.0,1000.0,210.0,1000.0 +1172,402.0,1000.0,1000.0,158.0,1000.0 +1173,25.0,213.0,1000.0,324.0,1000.0 +1174,57.0,247.0,277.0,80.0,1000.0 +1175,692.0,1000.0,76.0,115.0,1000.0 +1176,121.0,1000.0,1000.0,182.0,1000.0 +1177,1000.0,1000.0,1000.0,959.0,1000.0 +1178,163.0,1000.0,1000.0,374.0,1000.0 +1179,218.0,1000.0,906.0,72.0,1000.0 +1180,460.0,1000.0,1000.0,68.0,1000.0 +1181,281.0,1000.0,1000.0,73.0,1000.0 +1182,680.0,1000.0,1000.0,53.0,1000.0 +1183,923.0,1000.0,1000.0,63.0,1000.0 +1184,216.0,1000.0,1000.0,71.0,1000.0 +1185,1000.0,1000.0,1000.0,1000.0,64.0 +1186,1000.0,1000.0,1000.0,1000.0,62.0 +1187,345.0,1000.0,1000.0,1000.0,59.0 +1188,50.0,1000.0,1000.0,1000.0,61.0 +1189,532.0,1000.0,1000.0,1000.0,59.0 +1190,9.0,1000.0,1000.0,1000.0,60.0 +1191,1000.0,1000.0,1000.0,1000.0,61.0 +1192,428.0,1000.0,1000.0,1000.0,64.0 +1193,124.0,1000.0,1000.0,1000.0,77.0 +1194,1000.0,1000.0,1000.0,1000.0,683.0 +1195,1000.0,1000.0,1000.0,1000.0,82.0 +1196,1000.0,1000.0,1000.0,1000.0,74.0 +1197,1000.0,1000.0,1000.0,1000.0,80.0 +1198,1000.0,1000.0,1000.0,1000.0,70.0 +1199,543.0,1000.0,1000.0,1000.0,73.0 +1200,1000.0,1000.0,1000.0,1000.0,68.0 +1201,1000.0,1000.0,1000.0,1000.0,69.0 +1202,1000.0,1000.0,1000.0,1000.0,77.0 +1203,1000.0,1000.0,1000.0,1000.0,92.0 +1204,1000.0,1000.0,1000.0,1000.0,112.0 +1205,1000.0,1000.0,1000.0,1000.0,1000.0 +1206,1000.0,1000.0,1000.0,568.0,1000.0 +1207,1000.0,1000.0,1000.0,1000.0,1000.0 +1208,1000.0,1000.0,1000.0,1000.0,1000.0 +1209,1000.0,1000.0,1000.0,1000.0,1000.0 +1210,1000.0,1000.0,1000.0,1000.0,1000.0 +1211,1000.0,1000.0,1000.0,1000.0,1000.0 +1212,1000.0,1000.0,1000.0,1000.0,67.0 +1213,1000.0,1000.0,1000.0,1000.0,65.0 +1214,1000.0,1000.0,1000.0,1000.0,65.0 +1215,1000.0,1000.0,1000.0,1000.0,71.0 +1216,1000.0,1000.0,1000.0,1000.0,76.0 +1217,1000.0,1000.0,1000.0,1000.0,71.0 +1218,1000.0,1000.0,1000.0,1000.0,79.0 +1219,1000.0,1000.0,1000.0,1000.0,1000.0 +1220,1000.0,1000.0,1000.0,1000.0,1000.0 +1221,1000.0,1000.0,1000.0,1000.0,1000.0 +1222,1000.0,1000.0,1000.0,1000.0,1000.0 +1223,1000.0,1000.0,1000.0,1000.0,1000.0 +1224,1000.0,1000.0,1000.0,1000.0,1000.0 +1225,1000.0,1000.0,1000.0,1000.0,1000.0 +1226,1000.0,1000.0,1000.0,1000.0,1000.0 +1227,1000.0,1000.0,1000.0,1000.0,1000.0 +1228,1000.0,1000.0,1000.0,1000.0,1000.0 +1229,1000.0,1000.0,1000.0,1000.0,1000.0 +1230,1000.0,1000.0,1000.0,1000.0,1000.0 +1231,1000.0,1000.0,1000.0,1000.0,1000.0 +1232,1000.0,1000.0,1000.0,1000.0,820.0 +1233,1000.0,1000.0,1000.0,1000.0,58.0 +1234,1000.0,1000.0,1000.0,1000.0,59.0 +1235,1000.0,1000.0,1000.0,1000.0,57.0 +1236,1000.0,1000.0,1000.0,1000.0,58.0 +1237,1000.0,1000.0,1000.0,1000.0,59.0 +1238,1000.0,1000.0,1000.0,1000.0,59.0 +1239,1000.0,1000.0,1000.0,1000.0,60.0 +1240,1000.0,1000.0,1000.0,1000.0,62.0 +1241,1000.0,1000.0,1000.0,1000.0,65.0 +1242,1000.0,1000.0,1000.0,1000.0,69.0 +1243,1000.0,1000.0,1000.0,1000.0,73.0 +1244,1000.0,1000.0,1000.0,1000.0,94.0 +1245,1000.0,1000.0,1000.0,1000.0,1000.0 +1246,1000.0,1000.0,1000.0,1000.0,1000.0 +1247,1000.0,1000.0,1000.0,1000.0,1000.0 +1248,1000.0,1000.0,1000.0,1000.0,1000.0 +1249,1000.0,1000.0,1000.0,1000.0,1000.0 +1250,1000.0,1000.0,1000.0,1000.0,1000.0 +1251,1000.0,1000.0,1000.0,1000.0,1000.0 +1252,1000.0,1000.0,1000.0,1000.0,1000.0 +1253,1000.0,1000.0,1000.0,1000.0,1000.0 +1254,1000.0,3.0,1000.0,1000.0,1000.0 +1255,1000.0,1000.0,1000.0,1000.0,1000.0 +1256,1000.0,1000.0,1000.0,1000.0,1000.0 +1257,1000.0,1000.0,1000.0,1000.0,69.0 +1258,1000.0,1000.0,1000.0,1000.0,67.0 +1259,1000.0,1000.0,1000.0,1000.0,60.0 +1260,1000.0,1000.0,1000.0,1000.0,63.0 +1261,1000.0,1000.0,1000.0,1000.0,2.0 +1262,1000.0,1000.0,1000.0,1000.0,63.0 +1263,1000.0,1000.0,1000.0,1000.0,63.0 +1264,1000.0,1000.0,1000.0,1000.0,65.0 +1265,1000.0,1000.0,1000.0,1000.0,68.0 +1266,1000.0,1000.0,1000.0,1000.0,75.0 +1267,1000.0,1000.0,1000.0,1000.0,91.0 +1268,1000.0,1000.0,1000.0,1000.0,1000.0 +1269,1000.0,1000.0,1000.0,1000.0,1000.0 +1270,1000.0,1000.0,1000.0,1000.0,1000.0 +1271,1000.0,1000.0,1000.0,1000.0,1000.0 +1272,1000.0,1000.0,1000.0,1000.0,1000.0 +1273,1000.0,1000.0,1000.0,1000.0,1000.0 +1274,1000.0,1000.0,1000.0,1000.0,1000.0 +1275,1000.0,1000.0,81.0,1000.0,1000.0 +1276,1000.0,1000.0,92.0,1000.0,1000.0 +1277,1000.0,1000.0,87.0,1000.0,65.0 +1278,1000.0,1000.0,1000.0,1000.0,64.0 +1279,1000.0,62.0,1000.0,1000.0,64.0 +1280,1000.0,64.0,1000.0,1000.0,67.0 +1281,1000.0,71.0,1000.0,1000.0,67.0 +1282,1000.0,64.0,1000.0,1000.0,65.0 +1283,1000.0,1000.0,1000.0,1000.0,71.0 +1284,1000.0,1000.0,1000.0,1000.0,75.0 +1285,1000.0,1000.0,1000.0,1000.0,80.0 +1286,1000.0,1000.0,1000.0,1000.0,1000.0 +1287,1000.0,1000.0,100.0,1000.0,1000.0 +1288,1000.0,1000.0,91.0,1000.0,1000.0 +1289,1000.0,1000.0,1000.0,1000.0,1000.0 +1290,1000.0,1000.0,1000.0,1000.0,1000.0 +1291,1000.0,1000.0,1000.0,1000.0,1000.0 +1292,1000.0,1000.0,1000.0,1000.0,1000.0 +1293,1000.0,1000.0,1000.0,1000.0,1000.0 +1294,1000.0,1000.0,1000.0,1000.0,79.0 +1295,1000.0,1000.0,1000.0,1000.0,69.0 +1296,1000.0,1000.0,1000.0,1000.0,73.0 +1297,1000.0,1000.0,1000.0,1000.0,91.0 +1298,1000.0,1000.0,1000.0,1000.0,1000.0 +1299,1000.0,1000.0,1000.0,1000.0,1000.0 +1300,1000.0,1000.0,1000.0,1000.0,1000.0 +1301,1000.0,1000.0,1000.0,1000.0,1000.0 +1302,1000.0,1000.0,1000.0,1000.0,1000.0 +1303,1000.0,1000.0,1000.0,1000.0,1000.0 +1304,1000.0,1000.0,1000.0,1000.0,1000.0 +1305,1000.0,1000.0,1000.0,1000.0,1000.0 +1306,1000.0,1000.0,1000.0,1000.0,1000.0 +1307,1000.0,1000.0,1000.0,1000.0,1000.0 +1308,1000.0,1000.0,1000.0,1000.0,1000.0 +1309,1000.0,1000.0,1000.0,1000.0,1000.0 +1310,1000.0,1000.0,1000.0,1000.0,1000.0 +1311,1000.0,1000.0,1000.0,1000.0,67.0 +1312,1000.0,1000.0,1000.0,1000.0,67.0 +1313,1000.0,1000.0,1000.0,1000.0,71.0 +1314,1000.0,1000.0,1000.0,1000.0,75.0 +1315,1000.0,1000.0,1000.0,1000.0,94.0 +1316,1000.0,1000.0,1000.0,1000.0,1000.0 +1317,1000.0,1000.0,1000.0,1000.0,1000.0 +1318,1000.0,1000.0,1000.0,1000.0,1000.0 +1319,1000.0,1000.0,1000.0,1000.0,1000.0 +1320,1000.0,1000.0,1000.0,1000.0,1000.0 +1321,1000.0,1000.0,1000.0,1000.0,1000.0 +1322,1000.0,1000.0,1000.0,1000.0,1000.0 +1323,1000.0,1000.0,1000.0,1000.0,1000.0 +1324,1000.0,1000.0,1000.0,1000.0,1000.0 +1325,1000.0,1000.0,1000.0,1000.0,1000.0 +1326,1000.0,1000.0,1000.0,1000.0,1000.0 +1327,1000.0,1000.0,1000.0,1000.0,1000.0 +1328,1000.0,1000.0,1000.0,1000.0,1000.0 +1329,1000.0,1000.0,1000.0,1000.0,1000.0 +1330,1000.0,1000.0,1000.0,1000.0,1000.0 +1331,1000.0,1000.0,1000.0,1000.0,1000.0 +1332,1000.0,1000.0,1000.0,1000.0,1000.0 +1333,1000.0,1000.0,1000.0,1000.0,1000.0 +1334,1000.0,1000.0,1000.0,1000.0,1000.0 +1335,1000.0,1000.0,464.0,1000.0,1000.0 +1336,1000.0,1000.0,60.0,1000.0,1000.0 +1337,1000.0,1000.0,56.0,1000.0,1000.0 +1338,1000.0,3.0,57.0,1000.0,1000.0 +1339,1000.0,1000.0,59.0,1000.0,1000.0 +1340,1000.0,1000.0,61.0,1000.0,1000.0 +1341,1000.0,1000.0,61.0,1000.0,91.0 +1342,1000.0,67.0,65.0,1000.0,74.0 +1343,1000.0,63.0,77.0,1000.0,84.0 +1344,1000.0,66.0,83.0,1000.0,64.0 +1345,1000.0,1000.0,81.0,1000.0,68.0 +1346,1000.0,1000.0,1000.0,1000.0,67.0 +1347,1000.0,1000.0,82.0,1000.0,77.0 +1348,1000.0,1000.0,1000.0,1000.0,85.0 +1349,1000.0,1000.0,79.0,1000.0,1000.0 +1350,1000.0,1000.0,76.0,1000.0,1000.0 +1351,1000.0,1000.0,75.0,1000.0,1000.0 +1352,1000.0,1000.0,76.0,1000.0,1000.0 +1353,1000.0,1000.0,72.0,1000.0,1000.0 +1354,1000.0,1000.0,84.0,1000.0,1000.0 +1355,1000.0,1000.0,85.0,1000.0,1000.0 +1356,1000.0,1000.0,1000.0,1000.0,1000.0 +1357,1000.0,2.0,1000.0,1000.0,1000.0 +1358,1000.0,1000.0,1000.0,1000.0,72.0 +1359,1000.0,1000.0,1000.0,1000.0,73.0 +1360,1000.0,2.0,1000.0,1000.0,72.0 +1361,2.0,1000.0,1000.0,1000.0,74.0 +1362,2.0,2.0,1000.0,1000.0,76.0 +1363,2.0,3.0,1000.0,1000.0,73.0 +1364,2.0,3.0,1000.0,1000.0,75.0 +1365,2.0,2.0,1000.0,1000.0,74.0 +1366,1000.0,2.0,1000.0,1000.0,80.0 +1367,1000.0,55.0,1000.0,1000.0,1000.0 +1368,2.0,2.0,1000.0,1000.0,1000.0 +1369,1000.0,57.0,1000.0,1000.0,1000.0 +1370,1000.0,2.0,1000.0,1000.0,1000.0 +1371,1000.0,2.0,1000.0,1000.0,1000.0 +1372,1000.0,61.0,1000.0,1000.0,89.0 +1373,1000.0,2.0,77.0,1000.0,1000.0 +1374,1000.0,62.0,69.0,1000.0,1000.0 +1375,1000.0,2.0,66.0,1000.0,1000.0 +1376,1000.0,1000.0,66.0,1000.0,1000.0 +1377,1000.0,1000.0,66.0,1000.0,374.0 +1378,1000.0,1000.0,64.0,1000.0,72.0 +1379,1000.0,1000.0,66.0,1000.0,78.0 +1380,1000.0,1000.0,76.0,1000.0,72.0 +1381,1000.0,1000.0,89.0,1000.0,76.0 +1382,1000.0,2.0,70.0,1000.0,2.0 +1383,1000.0,2.0,75.0,1000.0,81.0 +1384,1000.0,2.0,780.0,1000.0,81.0 +1385,1000.0,2.0,81.0,1000.0,108.0 +1386,1000.0,2.0,73.0,1000.0,1000.0 +1387,1000.0,2.0,71.0,1000.0,1000.0 +1388,1000.0,2.0,70.0,1000.0,1000.0 +1389,1000.0,2.0,72.0,1000.0,2.0 +1390,1000.0,1000.0,81.0,1000.0,1000.0 +1391,1000.0,1000.0,96.0,1000.0,1000.0 +1392,1000.0,1000.0,1000.0,1000.0,1000.0 +1393,1000.0,1000.0,1000.0,1000.0,1000.0 +1394,1000.0,1000.0,107.0,1000.0,1000.0 +1395,1000.0,2.0,382.0,1000.0,1000.0 +1396,1000.0,2.0,72.0,1000.0,1000.0 +1397,1000.0,2.0,70.0,1000.0,1000.0 +1398,1000.0,1000.0,73.0,1000.0,1000.0 +1399,1000.0,2.0,72.0,1000.0,1000.0 +1400,1000.0,1000.0,73.0,1000.0,1000.0 +1401,1000.0,1000.0,73.0,1000.0,1000.0 +1402,1000.0,1000.0,93.0,1000.0,974.0 +1403,1000.0,1000.0,81.0,1000.0,77.0 +1404,1000.0,1000.0,1000.0,1000.0,81.0 +1405,1000.0,1000.0,1000.0,1000.0,1000.0 +1406,1000.0,1000.0,1000.0,1000.0,1000.0 +1407,1000.0,2.0,75.0,1000.0,1000.0 +1408,1000.0,1000.0,1000.0,1000.0,1000.0 +1409,616.0,1000.0,81.0,1000.0,1000.0 +1410,155.0,1000.0,81.0,1000.0,1000.0 +1411,29.0,1000.0,73.0,1000.0,585.0 +1412,63.0,1000.0,80.0,1000.0,70.0 +1413,1000.0,1000.0,74.0,1000.0,68.0 +1414,1000.0,2.0,77.0,1000.0,70.0 +1415,1000.0,2.0,81.0,1000.0,70.0 +1416,1000.0,2.0,80.0,1000.0,73.0 +1417,1000.0,2.0,79.0,1000.0,76.0 +1418,1000.0,2.0,1000.0,1000.0,80.0 +1419,999.0,1000.0,1000.0,1000.0,86.0 +1420,83.0,1000.0,1000.0,1000.0,90.0 +1421,88.0,1000.0,1000.0,1000.0,97.0 +1422,63.0,1000.0,1000.0,1000.0,707.0 +1423,240.0,1000.0,1000.0,1000.0,97.0 +1424,1000.0,1000.0,1000.0,1000.0,2.0 +1425,1000.0,2.0,1000.0,1000.0,96.0 +1426,1000.0,1000.0,1000.0,1000.0,91.0 +1427,1000.0,1000.0,1000.0,1000.0,91.0 +1428,1000.0,2.0,1000.0,1000.0,105.0 +1429,1000.0,3.0,1000.0,1000.0,102.0 +1430,1000.0,2.0,1000.0,1000.0,83.0 +1431,1000.0,2.0,1000.0,2.0,75.0 +1432,1000.0,2.0,1000.0,2.0,74.0 +1433,1000.0,2.0,1000.0,2.0,73.0 +1434,1000.0,74.0,1000.0,2.0,71.0 +1435,1000.0,3.0,1000.0,2.0,74.0 +1436,1000.0,2.0,1000.0,2.0,86.0 +1437,1000.0,59.0,1000.0,2.0,1000.0 +1438,1000.0,2.0,1000.0,2.0,1000.0 +1439,1000.0,57.0,1000.0,2.0,896.0 +1440,1000.0,53.0,1000.0,2.0,72.0 +1441,1000.0,2.0,1000.0,2.0,68.0 +1442,1000.0,54.0,1000.0,2.0,72.0 +1443,1000.0,55.0,1000.0,2.0,67.0 +1444,1000.0,58.0,92.0,2.0,2.0 +1445,1000.0,55.0,1000.0,2.0,2.0 +1446,1000.0,57.0,1000.0,2.0,77.0 +1447,1000.0,62.0,82.0,2.0,2.0 +1448,1000.0,69.0,87.0,2.0,74.0 +1449,1000.0,1000.0,86.0,2.0,73.0 +1450,1000.0,1000.0,88.0,3.0,83.0 +1451,1000.0,1000.0,86.0,3.0,81.0 +1452,1000.0,1000.0,82.0,2.0,80.0 +1453,1000.0,1000.0,1000.0,1000.0,85.0 +1454,1000.0,1000.0,1000.0,1000.0,90.0 +1455,1000.0,4.0,1000.0,1000.0,1000.0 +1456,1000.0,3.0,1000.0,1000.0,1000.0 +1457,1000.0,2.0,1000.0,1000.0,80.0 +1458,1000.0,1000.0,1000.0,1000.0,82.0 +1459,1000.0,1000.0,1000.0,1000.0,85.0 +1460,1000.0,1000.0,1000.0,1000.0,1000.0 +1461,1000.0,5.0,1000.0,1000.0,1000.0 +1462,1000.0,47.0,1000.0,1000.0,1000.0 +1463,1000.0,4.0,1000.0,1000.0,1000.0 +1464,1000.0,5.0,1000.0,1000.0,1000.0 +1465,1000.0,5.0,72.0,1000.0,1000.0 +1466,1000.0,47.0,70.0,1000.0,79.0 +1467,1000.0,46.0,65.0,1000.0,76.0 +1468,1000.0,47.0,68.0,2.0,85.0 +1469,1000.0,49.0,75.0,2.0,85.0 +1470,1000.0,48.0,80.0,2.0,88.0 +1471,1000.0,47.0,1000.0,2.0,1000.0 +1472,1000.0,49.0,92.0,1000.0,1000.0 +1473,1000.0,51.0,84.0,1000.0,1000.0 +1474,1000.0,53.0,1000.0,1000.0,1000.0 +1475,1000.0,54.0,1000.0,1000.0,1000.0 +1476,1000.0,56.0,1000.0,1000.0,1000.0 +1477,1000.0,59.0,1000.0,1000.0,1000.0 +1478,1000.0,61.0,1000.0,1000.0,1000.0 +1479,1000.0,67.0,1000.0,1000.0,1000.0 +1480,1000.0,88.0,1000.0,1000.0,1000.0 +1481,1000.0,124.0,1000.0,1000.0,1000.0 +1482,1000.0,2.0,1000.0,1000.0,1000.0 +1483,1000.0,542.0,67.0,1000.0,1000.0 +1484,1000.0,85.0,80.0,1000.0,69.0 +1485,1000.0,77.0,1000.0,1000.0,67.0 +1486,1000.0,67.0,2.0,1000.0,71.0 +1487,1000.0,67.0,1000.0,1000.0,70.0 +1488,1000.0,63.0,1000.0,1000.0,76.0 +1489,1000.0,62.0,1000.0,2.0,73.0 +1490,1000.0,65.0,1000.0,1000.0,84.0 +1491,1000.0,66.0,1000.0,1000.0,89.0 +1492,1000.0,69.0,83.0,1000.0,1000.0 +1493,1000.0,70.0,77.0,1000.0,1000.0 +1494,1000.0,69.0,1000.0,1000.0,1000.0 +1495,1000.0,69.0,1000.0,1000.0,955.0 +1496,1000.0,74.0,1000.0,1000.0,2.0 +1497,1000.0,83.0,96.0,1000.0,2.0 +1498,1000.0,116.0,1000.0,1000.0,2.0 +1499,1000.0,2.0,1000.0,55.0,2.0 +1500,1000.0,1000.0,1000.0,54.0,2.0 diff --git a/data/a2c_invertedpendulum_run0.pth b/data/a2c_invertedpendulum_run0.pth new file mode 100644 index 0000000..72701e7 Binary files /dev/null and b/data/a2c_invertedpendulum_run0.pth differ diff --git a/data/a2c_invertedpendulum_run1.pth b/data/a2c_invertedpendulum_run1.pth new file mode 100644 index 0000000..85f171e Binary files /dev/null and b/data/a2c_invertedpendulum_run1.pth differ diff --git a/data/a2c_invertedpendulum_run2.pth b/data/a2c_invertedpendulum_run2.pth new file mode 100644 index 0000000..a5fc19b Binary files /dev/null and b/data/a2c_invertedpendulum_run2.pth differ diff --git a/data/a2c_invertedpendulum_run3.pth b/data/a2c_invertedpendulum_run3.pth new file mode 100644 index 0000000..891955f Binary files /dev/null and b/data/a2c_invertedpendulum_run3.pth differ diff --git a/data/a2c_invertedpendulum_run4.pth b/data/a2c_invertedpendulum_run4.pth new file mode 100644 index 0000000..8f05c18 Binary files /dev/null and b/data/a2c_invertedpendulum_run4.pth differ diff --git a/data/a2c_invertedpendulum_test_returns.csv b/data/a2c_invertedpendulum_test_returns.csv new file mode 100644 index 0000000..cf31097 --- /dev/null +++ b/data/a2c_invertedpendulum_test_returns.csv @@ -0,0 +1,101 @@ +episode,run0,run1,run2,run3,run4 +1,1000.0,1000.0,1000.0,1000.0,1000.0 +2,1000.0,1000.0,1000.0,1000.0,1000.0 +3,1000.0,1000.0,1000.0,1000.0,1000.0 +4,1000.0,1000.0,1000.0,1000.0,1000.0 +5,1000.0,1000.0,1000.0,1000.0,1000.0 +6,1000.0,1000.0,1000.0,1000.0,1000.0 +7,1000.0,1000.0,1000.0,1000.0,1000.0 +8,1000.0,1000.0,1000.0,1000.0,1000.0 +9,1000.0,1000.0,1000.0,1000.0,1000.0 +10,1000.0,1000.0,1000.0,1000.0,1000.0 +11,1000.0,1000.0,1000.0,1000.0,1000.0 +12,1000.0,1000.0,1000.0,1000.0,1000.0 +13,1000.0,1000.0,1000.0,1000.0,1000.0 +14,1000.0,1000.0,1000.0,1000.0,1000.0 +15,1000.0,1000.0,1000.0,1000.0,1000.0 +16,1000.0,1000.0,1000.0,1000.0,1000.0 +17,1000.0,1000.0,1000.0,1000.0,1000.0 +18,1000.0,1000.0,1000.0,1000.0,1000.0 +19,1000.0,1000.0,1000.0,1000.0,1000.0 +20,1000.0,1000.0,1000.0,1000.0,1000.0 +21,1000.0,1000.0,1000.0,1000.0,1000.0 +22,1000.0,1000.0,1000.0,1000.0,1000.0 +23,1000.0,1000.0,1000.0,1000.0,1000.0 +24,1000.0,1000.0,1000.0,1000.0,1000.0 +25,1000.0,1000.0,1000.0,1000.0,1000.0 +26,1000.0,1000.0,1000.0,1000.0,1000.0 +27,1000.0,1000.0,1000.0,1000.0,1000.0 +28,1000.0,1000.0,1000.0,1000.0,1000.0 +29,1000.0,1000.0,1000.0,1000.0,1000.0 +30,1000.0,1000.0,1000.0,1000.0,1000.0 +31,1000.0,1000.0,1000.0,1000.0,1000.0 +32,1000.0,1000.0,1000.0,1000.0,1000.0 +33,1000.0,1000.0,1000.0,1000.0,1000.0 +34,1000.0,1000.0,1000.0,1000.0,1000.0 +35,1000.0,1000.0,1000.0,1000.0,1000.0 +36,1000.0,1000.0,1000.0,1000.0,1000.0 +37,1000.0,1000.0,1000.0,1000.0,1000.0 +38,1000.0,1000.0,1000.0,1000.0,1000.0 +39,1000.0,1000.0,1000.0,1000.0,1000.0 +40,1000.0,1000.0,1000.0,1000.0,1000.0 +41,1000.0,1000.0,1000.0,1000.0,1000.0 +42,1000.0,1000.0,1000.0,1000.0,1000.0 +43,1000.0,1000.0,1000.0,1000.0,1000.0 +44,1000.0,1000.0,1000.0,1000.0,1000.0 +45,1000.0,1000.0,1000.0,1000.0,1000.0 +46,1000.0,1000.0,1000.0,1000.0,1000.0 +47,1000.0,1000.0,1000.0,1000.0,1000.0 +48,1000.0,1000.0,1000.0,1000.0,1000.0 +49,1000.0,1000.0,1000.0,1000.0,1000.0 +50,1000.0,1000.0,1000.0,1000.0,1000.0 +51,1000.0,1000.0,1000.0,1000.0,1000.0 +52,1000.0,1000.0,1000.0,1000.0,1000.0 +53,1000.0,1000.0,1000.0,1000.0,1000.0 +54,1000.0,1000.0,1000.0,1000.0,1000.0 +55,1000.0,1000.0,1000.0,1000.0,1000.0 +56,1000.0,1000.0,1000.0,1000.0,1000.0 +57,1000.0,1000.0,1000.0,1000.0,1000.0 +58,1000.0,1000.0,1000.0,1000.0,1000.0 +59,1000.0,1000.0,1000.0,1000.0,1000.0 +60,1000.0,1000.0,1000.0,1000.0,1000.0 +61,1000.0,1000.0,1000.0,1000.0,1000.0 +62,1000.0,1000.0,1000.0,1000.0,1000.0 +63,1000.0,1000.0,1000.0,1000.0,1000.0 +64,1000.0,1000.0,1000.0,1000.0,1000.0 +65,1000.0,1000.0,1000.0,1000.0,1000.0 +66,1000.0,1000.0,1000.0,1000.0,1000.0 +67,1000.0,1000.0,1000.0,1000.0,1000.0 +68,1000.0,1000.0,1000.0,1000.0,1000.0 +69,1000.0,1000.0,1000.0,1000.0,1000.0 +70,1000.0,1000.0,1000.0,1000.0,1000.0 +71,1000.0,1000.0,1000.0,1000.0,1000.0 +72,1000.0,1000.0,1000.0,1000.0,1000.0 +73,1000.0,1000.0,1000.0,1000.0,1000.0 +74,1000.0,1000.0,1000.0,1000.0,1000.0 +75,1000.0,1000.0,1000.0,1000.0,1000.0 +76,1000.0,1000.0,1000.0,1000.0,1000.0 +77,1000.0,1000.0,1000.0,1000.0,1000.0 +78,1000.0,1000.0,1000.0,1000.0,1000.0 +79,1000.0,1000.0,1000.0,1000.0,1000.0 +80,1000.0,1000.0,1000.0,1000.0,1000.0 +81,1000.0,1000.0,1000.0,1000.0,1000.0 +82,1000.0,1000.0,1000.0,1000.0,1000.0 +83,1000.0,1000.0,1000.0,1000.0,1000.0 +84,1000.0,1000.0,1000.0,1000.0,1000.0 +85,1000.0,1000.0,1000.0,1000.0,1000.0 +86,1000.0,1000.0,1000.0,1000.0,1000.0 +87,1000.0,1000.0,1000.0,1000.0,1000.0 +88,1000.0,1000.0,1000.0,1000.0,1000.0 +89,1000.0,1000.0,1000.0,1000.0,1000.0 +90,1000.0,1000.0,1000.0,1000.0,1000.0 +91,1000.0,1000.0,1000.0,1000.0,1000.0 +92,1000.0,1000.0,1000.0,1000.0,1000.0 +93,1000.0,1000.0,1000.0,1000.0,1000.0 +94,1000.0,1000.0,1000.0,1000.0,1000.0 +95,1000.0,1000.0,1000.0,1000.0,1000.0 +96,1000.0,1000.0,1000.0,1000.0,1000.0 +97,1000.0,1000.0,1000.0,1000.0,1000.0 +98,1000.0,1000.0,1000.0,1000.0,1000.0 +99,1000.0,1000.0,1000.0,1000.0,1000.0 +100,1000.0,1000.0,1000.0,1000.0,1000.0 diff --git a/data/a2c_invertedpendulum_train_plot.png b/data/a2c_invertedpendulum_train_plot.png new file mode 100644 index 0000000..9020136 Binary files /dev/null and b/data/a2c_invertedpendulum_train_plot.png differ diff --git a/data/a2c_pusher_returns.csv b/data/a2c_pusher_returns.csv new file mode 100644 index 0000000..e05e802 --- /dev/null +++ b/data/a2c_pusher_returns.csv @@ -0,0 +1,10001 @@ +episode,run0,run1,run2,run3,run4 +1,-92.41461275822039,-78.35688049998852,-83.0329099610519,-93.08930669896189,-85.94237008278802 +2,-95.31468734076947,-94.96446539687908,-76.17726346112563,-85.05307867169296,-85.96746984912969 +3,-81.58886959559803,-92.96375049140275,-87.93688348051865,-89.95058452712081,-88.23940449042757 +4,-84.12843072082872,-88.61453719718588,-79.17721277808262,-98.09017526959954,-85.59260956895764 +5,-82.54924415945831,-90.89508171258827,-94.78062471981737,-75.03247873730109,-91.52758733917494 +6,-91.22133354004217,-87.03454044115762,-82.93497225168717,-79.9222840589014,-89.42168072403234 +7,-83.77623606497828,-76.86300725504766,-78.02796770471723,-90.93710648950204,-81.77518901211437 +8,-88.43189576494102,-83.94678182857271,-74.15532288960358,-90.61794081394518,-87.57143379324535 +9,-89.67227938698366,-70.33964622353146,-89.49773356480094,-88.71719929704624,-79.53587091734848 +10,-95.05530353350649,-89.3844440756998,-93.62843688319296,-93.72572014935594,-75.60005936017123 +11,-87.45571938895154,-84.84589797031889,-88.88344558531045,-81.80919915448212,-85.43106325889077 +12,-86.03040941397306,-71.16716784649748,-84.915753436775,-88.92641309319669,-93.16937925648621 +13,-81.5529497544269,-85.63534163702396,-81.57195117182714,-94.36763922047564,-79.96883198054195 +14,-92.83230665465818,-87.06729949000007,-88.44188407971862,-75.0036558780739,-76.08317916370824 +15,-95.43235841110831,-84.40558001781844,-89.4017677804112,-83.52316975389701,-89.63516914707473 +16,-85.09907768959997,-77.31403048113705,-80.30912407000717,-79.46574664768252,-77.47357158114595 +17,-81.13715987480025,-99.3716826108869,-86.1797536464091,-92.0861152004997,-83.89919091996704 +18,-86.2863541570819,-75.03720190301782,-88.61700321783297,-87.52589416662195,-74.7131736123425 +19,-96.574105900401,-91.90329134271684,-89.04737640736957,-90.0678492712455,-86.43657148373201 +20,-78.36788412705026,-87.97712367642943,-86.22510928596604,-86.33092956284496,-84.94439394005775 +21,-79.32813967077051,-91.4467919385818,-89.73730243094631,-86.6002829704429,-86.75103227554033 +22,-79.85452258455356,-78.3668694067176,-86.76049144415386,-71.45486420747632,-90.66487066049002 +23,-89.9617075244287,-85.56740209325261,-84.9222713321011,-97.79495657342707,-80.63110503004206 +24,-87.52465447553634,-78.1032799144308,-86.78348001851388,-90.64999639603259,-83.70365572497991 +25,-93.20986957072199,-76.65623102605242,-100.0345299853783,-89.57334144038427,-84.88711996253821 +26,-88.72875924239503,-80.97048352578403,-89.87247169237807,-88.03278743750612,-87.67511451384851 +27,-80.73730371574965,-82.01900055472518,-93.76597714867019,-77.93846073056164,-99.08592367147658 +28,-75.12537758777452,-95.84834340452741,-88.47552032142468,-93.65462169742995,-91.4718109561283 +29,-89.07348482708416,-81.82943295640851,-86.76423317965728,-79.08069955649279,-88.82280120577825 +30,-82.56658888228284,-92.5740342225926,-72.03967141180794,-80.39959237899897,-87.70680907490849 +31,-89.91105703864767,-88.3235514919159,-84.16555949436776,-83.95315639590684,-87.65509558824071 +32,-77.61486846616134,-88.01184531205261,-91.77682796174267,-86.17009611438182,-91.3105528758065 +33,-91.72870729626175,-86.27341017109397,-90.80894972243763,-84.60600528116403,-88.03356458100389 +34,-89.4849714738111,-77.35959604964873,-80.08396605759152,-90.36093897377418,-86.39533912139403 +35,-74.31860131021257,-82.20004485397794,-90.1754390430664,-81.28002325847277,-82.5370782654125 +36,-81.92138833031306,-80.69874493348972,-82.34160129137928,-84.90248683561592,-81.58546205181071 +37,-85.86296421524425,-82.14209709046845,-78.5800003158285,-80.61882476613937,-85.11342284480554 +38,-80.77522295181278,-84.79611581235952,-77.91514697527131,-93.53372559833427,-90.74863440860071 +39,-88.9396737873111,-82.27796931247431,-88.55907590228904,-101.3621021575329,-86.24631849793545 +40,-87.55599670215155,-87.00866305275466,-83.98909373775973,-86.74622431596461,-93.84471926810747 +41,-92.90954168548961,-76.97966798383321,-92.71380348678679,-93.7098760551309,-85.76645900470977 +42,-92.88242997092887,-86.99660579887087,-74.52433335747013,-103.13470045235903,-75.70957540280054 +43,-76.43902111923336,-87.91848083719441,-83.24664317061536,-71.16011419680953,-76.762000031354 +44,-86.11406193188051,-84.26701228601999,-77.616918092072,-82.6528372734771,-72.78297878902421 +45,-88.71656622884049,-82.79131497071245,-87.99192819490074,-92.96192283229412,-95.17765435749995 +46,-83.03364785094026,-82.1657575749065,-85.03942287781078,-86.90444320493913,-86.68573877534097 +47,-86.79932878668863,-89.38441461588047,-80.6024235349701,-98.10372734822342,-82.58680945956701 +48,-92.83733982264204,-91.15877521966173,-102.85848917313244,-93.68362633855521,-91.85906446485718 +49,-83.49380856533264,-91.71398873597414,-87.53460266343892,-96.85015641681754,-84.30237364221492 +50,-85.08755112615744,-98.47092126488823,-90.32317147998924,-82.69981972108644,-96.99904071624732 +51,-85.14600802978303,-88.6205299894209,-83.9965475047569,-94.12685225394739,-93.89377186763413 +52,-85.543385001325,-92.9095953869549,-85.88963056853858,-97.32253542704412,-74.76347583040885 +53,-88.37462302324444,-98.6869232522702,-88.44419092470329,-66.28110461749252,-90.21899828070582 +54,-86.90894637312375,-85.72590176086818,-78.42780353933966,-84.12183411677213,-96.26518528974104 +55,-88.12536349737628,-90.77459867046255,-85.44181184379597,-81.54528928565652,-74.6185121946084 +56,-95.29371905285625,-87.24085972563344,-96.83612585274557,-95.54296743740325,-78.62759042241359 +57,-93.82379105029004,-69.03023367906185,-91.98153897009593,-87.16911025385804,-93.2479118056497 +58,-86.85429941971356,-86.98578409566714,-76.42693483349852,-89.21724977366553,-93.4423731143465 +59,-90.82860037965125,-97.99101013761539,-86.57627391442719,-83.80324241282592,-82.32050892668065 +60,-91.09836280534283,-88.11516573022969,-84.6773481975568,-93.6931045682179,-86.84745338201056 +61,-88.22524503074003,-88.06837331060571,-96.38599228894103,-87.29532168150635,-74.44569979358802 +62,-82.73101157610066,-92.89852776444734,-87.59980416031271,-78.90319850619662,-85.56060623426056 +63,-89.2592921724365,-96.40980711244198,-83.91775087850638,-82.8526580017158,-83.09523916793559 +64,-89.8851162673834,-87.86893105644747,-89.35049055325032,-86.39778413994254,-86.43322038007152 +65,-90.79345647812895,-81.38926851154378,-74.8530194333839,-84.15697246733542,-87.94831505482486 +66,-83.49532384817309,-83.0987875067373,-94.88794922948493,-83.73813379238587,-79.44257013789789 +67,-93.61516843597471,-82.93437084083176,-85.98362650030678,-94.95811580695236,-76.92282694899896 +68,-88.12038121351141,-87.26233511914869,-77.14902348699555,-93.2797279809953,-90.41025752002328 +69,-90.01613117159434,-89.03288461895337,-83.22694851962585,-80.44423256031689,-83.295295565372 +70,-92.41636155220867,-79.82720731431138,-93.62143725421251,-77.47003429143224,-86.1623276520787 +71,-94.5579495294644,-80.98740439983689,-87.65758002471253,-101.72780273050257,-81.54962277403557 +72,-96.2079535293942,-80.49925106983196,-79.40296798045453,-100.16780608650332,-94.51577336202524 +73,-81.37881579679247,-83.63049431135113,-75.86535224953538,-89.25215623567806,-85.23907188748962 +74,-86.78368491394141,-90.16807474134424,-83.51318505719257,-79.55545630192853,-78.4820727438174 +75,-84.10027523383836,-81.06122909540004,-86.0243350349211,-96.29341985868592,-74.70079685596443 +76,-86.10177932995917,-84.07455129694388,-71.40333059808339,-90.92809448458904,-80.53227180516241 +77,-88.43652258964845,-88.19686774556565,-97.02017695604451,-80.93555048291711,-83.51634554855312 +78,-87.98500967057807,-83.2113928602453,-86.95025567271078,-92.36507726816629,-88.21211929016557 +79,-91.55515321649945,-82.01622638930786,-92.09425207895913,-84.07600815059898,-75.64787981600776 +80,-80.30474426772231,-89.5071253913174,-78.71381269765688,-87.17049225778487,-88.2993167532906 +81,-90.80341938101365,-75.92133331267114,-84.67957048092737,-91.54902375948214,-91.20824986377556 +82,-93.80753660591014,-79.80489383060909,-88.96300279407819,-83.68756145230603,-85.72324813948127 +83,-97.31547401374283,-88.93843436571174,-89.68037390265481,-85.78344269417144,-95.38758848389487 +84,-87.58305696592623,-78.21413922202787,-84.89579180376144,-79.27554084773729,-90.54763593780872 +85,-84.60546732574277,-93.13421237379443,-91.47044100901752,-88.61863495103283,-83.49479492375215 +86,-92.80984860543973,-84.49212204289721,-79.40398337073026,-91.82101029243552,-85.72187113608284 +87,-78.65601552511714,-100.95891830738447,-93.10376710073658,-94.3271629881827,-93.63817816628358 +88,-88.49323806904708,-68.7263816407019,-93.91227888648781,-85.58095981128724,-87.70809455382778 +89,-90.41921293024805,-83.78166605311556,-76.5552306178963,-94.11149760984559,-81.95978588555289 +90,-85.02102156620445,-82.25758179531306,-88.26114011750988,-79.09069949367469,-90.54002216266247 +91,-90.21920142566294,-94.80575627711704,-88.28977000765659,-93.96380420969253,-85.77567786461834 +92,-86.4664627743523,-97.70530513689131,-88.84570310372341,-91.95918734398329,-93.67213239166182 +93,-76.0735999635511,-86.87945114333112,-79.33106337753485,-89.53099765939712,-84.94555007451275 +94,-99.20196576914924,-73.11850894091054,-86.22121395599423,-87.18267520670018,-70.93883260307018 +95,-92.63700778909252,-76.53087847202745,-92.86825278928116,-86.39498737405931,-76.36153982157136 +96,-71.39862222219453,-99.09134570492098,-105.36329977411292,-86.65962285868254,-82.40503784594821 +97,-86.43584077247314,-93.35256241374672,-77.56594858952512,-79.61407020550084,-90.57444527404769 +98,-87.29689077974278,-86.82448405946306,-88.87678487962816,-86.07311406815847,-81.1377307834486 +99,-78.95834803656116,-95.52579650821845,-77.55784975469506,-86.96184228235049,-72.29499993483394 +100,-85.1019950578906,-83.01065133545828,-94.2765267428806,-91.4852808803493,-86.99046460150073 +101,-92.49711415758756,-93.95707465331861,-91.15453957657724,-79.46289046591875,-80.38987767851127 +102,-82.67523387073554,-92.06708469085974,-85.139449209936,-94.7573006368243,-77.12059446139848 +103,-90.14567811686581,-87.62377371029034,-82.04016110387727,-90.95940526088805,-79.51293128107646 +104,-90.48992051722286,-76.8525396355757,-82.54043571646321,-71.8668030480247,-69.38129174865418 +105,-85.74629815019169,-78.11350744543887,-81.51870617208203,-78.27800716190478,-93.87634270934605 +106,-99.8942927105637,-84.65322521304957,-77.57955633237286,-97.07084342473787,-92.83639223026098 +107,-88.44095560822167,-89.87273409380576,-80.2902583757149,-88.56851254325329,-100.44022460092522 +108,-84.54224059598519,-66.41002491732003,-90.96728594480011,-75.9888305554049,-97.41481281170618 +109,-93.10436025953871,-86.84004558575114,-94.34886834267395,-81.95354078960379,-84.53668127589573 +110,-95.16543590892114,-71.04966140153421,-91.21346411300473,-97.76907189413397,-88.49895761597912 +111,-96.9591943788418,-84.05323544445413,-95.42563913178292,-81.18188768366204,-97.90014078277002 +112,-96.26718066284897,-84.04869939194452,-90.47980072534632,-95.40076395350245,-76.63294171587489 +113,-98.09382667248379,-84.7216115452537,-91.5765486261955,-86.24324643214294,-72.15933320991172 +114,-100.31283542571377,-82.49796084288216,-87.6044801848191,-93.70564278791257,-88.71309629445797 +115,-99.52283852259082,-84.7904671785364,-92.96276468490153,-94.33622420408598,-75.9782409136055 +116,-91.13460238723162,-84.01407793263846,-88.07671801036705,-84.86406455449567,-88.77051614043609 +117,-92.44233100958456,-83.78528128396776,-97.09835712666873,-76.38822699463987,-82.02655304067166 +118,-84.16383504181508,-75.90736791658746,-81.90174671433267,-86.61625656034705,-69.52000253140018 +119,-80.7931903654729,-80.66330690711673,-82.83168876161226,-83.70547951032893,-87.5260719206563 +120,-90.81151473247532,-74.68305828142036,-70.89125344824232,-93.46210391121254,-81.42471248528086 +121,-97.5782854372157,-89.4551990000816,-76.51629740000166,-92.05530673034228,-98.3690566299883 +122,-89.45840711903412,-89.85312638865022,-87.74065523515871,-90.95781109530283,-84.30880862349979 +123,-93.76539872580673,-73.56822819874527,-87.13804534091955,-81.0662414710431,-83.91109206879642 +124,-80.66062942121783,-90.3677729823382,-84.27407578608374,-77.21273164557549,-85.78878521185713 +125,-83.12395905617666,-80.9148853439392,-83.83231423020716,-92.25018191671369,-88.28829207787747 +126,-103.2416083843377,-82.74907691654896,-92.76081466495543,-90.26940421093155,-84.4078525860096 +127,-98.90858837108911,-73.31261069313507,-96.14175471490998,-75.83400724107238,-92.93468231829772 +128,-78.95167580473097,-81.00401804246926,-94.21828514157438,-90.58861624658444,-93.1553782910576 +129,-101.61781378583784,-81.37010585514133,-81.93729257912581,-87.50944257819462,-99.4544463458249 +130,-91.21793108544682,-76.69151052927282,-92.68756612486288,-83.80876084888936,-93.97506265976291 +131,-104.01358821775669,-85.58320100590754,-89.32208736011137,-88.37397315375439,-96.50239840336447 +132,-93.91242943196976,-91.54127729096567,-84.77403970019289,-92.37987914063659,-80.32743504452294 +133,-92.45341263378126,-81.66832441922766,-78.13296017761479,-86.2792564593528,-95.70745061343746 +134,-92.95964783546718,-73.6039628585432,-88.03659752924939,-93.0083917056551,-79.80016329527515 +135,-90.87707533129728,-79.11437778530961,-92.4875819799601,-87.00647880255417,-82.53254170434089 +136,-91.66034095776996,-94.85151118852744,-90.53984207689838,-76.51175162304027,-89.19376964179975 +137,-87.99298656224829,-88.29355118198858,-99.12149306881282,-88.37355665869754,-91.08882445753699 +138,-84.11949351009727,-91.96902775225658,-83.05806927514367,-82.73593940629698,-77.67821497482252 +139,-93.06760192681736,-76.16885381317084,-83.87147277670445,-84.28595760064056,-90.37825114868055 +140,-93.96026127659847,-85.3090113568939,-73.09108136787955,-90.33028829012785,-84.63534547454094 +141,-91.61582063557142,-80.41656881938337,-82.34519727954395,-91.3941808970465,-71.65945347084893 +142,-84.99081614484291,-91.0120822603878,-76.6058240001407,-79.0439076333654,-87.94360442449083 +143,-93.87097621591268,-76.91122457947755,-78.18145496549947,-89.96242325846455,-98.8247992302101 +144,-89.38912368450201,-79.99069528870642,-77.26682540272112,-89.64936967304958,-86.24120492702674 +145,-90.53831660582502,-74.71173439848585,-73.78314566575807,-101.45357260520497,-80.55073535574417 +146,-93.76126707407238,-76.00931034547192,-98.14211869877867,-97.88709708497677,-102.18116565706897 +147,-97.09787308484043,-87.89256012081006,-80.67943976923131,-96.64501152158394,-74.39013356505815 +148,-91.41538563950873,-89.90898933029742,-76.69864290233747,-74.5881919368127,-69.29140933400522 +149,-95.03776559446281,-76.69161558335406,-90.43770273625861,-76.16988426502124,-75.48215437026639 +150,-87.76770581079771,-85.59882343464551,-77.44418178690289,-84.85230643532752,-75.9795486381297 +151,-99.95645226688069,-91.1200975818675,-87.93286244270992,-92.86553792150731,-90.65788370213716 +152,-83.5601979196571,-81.76384244777137,-85.6177603850413,-95.32632899019474,-87.4466674232723 +153,-83.41232827354813,-80.28206547244564,-90.09936618968726,-72.69821773682187,-97.29263896382686 +154,-96.47479101204925,-86.04791212174807,-90.5687398846574,-86.31900360302205,-93.45773101098484 +155,-88.05053300037179,-99.89681846373648,-94.33878058205485,-90.17057916245112,-73.97666037160771 +156,-87.48653348810943,-81.52089458579213,-86.85447359392286,-85.32701294159031,-103.2019352030565 +157,-98.09006253133441,-67.24412254149402,-84.48470427656493,-90.2991829178208,-79.90727041487943 +158,-99.02752563964243,-82.29560194233356,-80.07472063036063,-77.02454492331984,-78.64987803102694 +159,-99.50882052386035,-76.75650388576793,-85.41674962371843,-86.2606384769358,-96.94554486815346 +160,-85.14603438429357,-81.31964324647831,-89.66137130665409,-92.27240919360422,-87.16761291964804 +161,-88.43826973481157,-91.6975837208394,-78.5498940294698,-76.15811315203275,-99.99988747317782 +162,-99.89042357030974,-78.14380677695786,-76.66811925373449,-83.91361317239378,-80.57320649956065 +163,-91.40156944134458,-83.24230116698257,-85.91450969862561,-87.58449297008937,-92.96895687259938 +164,-89.06026544851767,-79.11453629621117,-83.85529277875388,-82.16410898988988,-97.09690290881056 +165,-95.95535952728397,-74.80833302568485,-94.31703800253378,-89.12461462139407,-80.70859365427644 +166,-91.91753239545233,-79.43483193714395,-76.20324794956106,-84.83491048762541,-67.89754831941204 +167,-84.577417868776,-79.68468751420701,-79.37170336245008,-80.96255090973824,-84.99788032176248 +168,-87.84867382046473,-79.60726171744655,-89.85582477399053,-82.67202642622372,-97.36796215756137 +169,-93.8301024002977,-77.21366091983582,-78.9355934193959,-89.15909174484892,-96.01563480050082 +170,-84.07497311987568,-85.71822312632789,-78.45094061989482,-94.41970570080692,-91.80700668003615 +171,-80.28571085933548,-84.56362980505072,-82.99860518785592,-86.65556818203095,-92.81347021126949 +172,-89.82205809817906,-78.45269792096722,-79.69227323711993,-95.0810357064969,-93.78975121428317 +173,-92.9893926129407,-84.57769195909398,-90.63263361699556,-86.67484428628504,-103.42997095808218 +174,-86.88236452877204,-89.98345022264355,-87.16232699267543,-72.26716293686718,-92.51713926904594 +175,-97.82737339153633,-85.63273330744695,-83.72668567808441,-80.88327149941838,-89.62934241938237 +176,-90.30211271672336,-82.99045675482246,-89.72306003446755,-81.58248838286302,-82.91217719746341 +177,-96.26958781921829,-78.00812140688431,-92.59978192964003,-77.44431112568118,-72.06627437551013 +178,-101.41723160623164,-96.14483954521575,-83.39368150723955,-99.50972802397116,-92.27189039296758 +179,-84.53877360536046,-81.42298564864544,-84.76232921550772,-97.11671381182512,-97.0346988586317 +180,-92.67619143103654,-92.90627547577166,-83.87891022357427,-78.3730340523516,-91.87068242633123 +181,-86.2547992743178,-89.45825594721701,-84.81803292579704,-96.19389097846992,-72.98444695067278 +182,-90.20848656825817,-100.49343646567098,-85.95778127632647,-95.36890428675662,-95.73223380150975 +183,-84.86117811564459,-84.57432486228456,-82.85085988607418,-97.59366839234121,-89.5219634373766 +184,-98.00410339368648,-84.78744668502752,-87.74015099221089,-84.71491597541254,-74.62194070668971 +185,-91.89156737675414,-74.93330013769345,-83.57708536602955,-79.83620411950456,-88.79228979714033 +186,-86.38742690998639,-80.33320435908159,-83.358904243395,-86.3692732536677,-94.3052667545338 +187,-94.22300565939258,-89.33404351415928,-99.88246412607418,-86.33051135792839,-83.96709431669044 +188,-78.96650459545687,-95.98004563142179,-96.24037000036583,-85.37266238167497,-91.62652622484019 +189,-95.85154214750708,-91.9087502029221,-96.27419435934806,-94.21068993356188,-93.31686118816796 +190,-91.47904852058534,-88.27514335962914,-85.73491503185694,-92.95775777894497,-88.99114898921329 +191,-89.8344010476995,-83.01841308125933,-90.43565535259276,-86.86255255379936,-84.01213705653616 +192,-97.71888696980466,-90.6311841935575,-81.98029159099028,-86.51756376637199,-78.1867760075293 +193,-90.14767785901202,-83.08711534303986,-80.05926822516528,-94.79312173725313,-86.08483840162263 +194,-97.66493749715256,-85.21188502930458,-83.61479208619474,-80.34664787271176,-86.48089142105715 +195,-83.64728023204133,-94.61380501511604,-94.14548590581805,-92.7611572064841,-84.07024639953903 +196,-84.01762357222813,-96.04625075660111,-87.6657256994674,-87.33739232275738,-79.79712140506186 +197,-88.20269112058726,-81.17572201465272,-86.90081703089918,-89.54364710172658,-91.9748016906429 +198,-92.20874340154373,-86.07768610431872,-81.14935802851312,-85.01266563521072,-81.54056135181933 +199,-84.48260746945738,-101.71743249033878,-92.50990390747553,-83.9180318365507,-95.6530310317011 +200,-92.34296945421173,-93.97040567336282,-82.1855092120069,-90.34831893693834,-93.23529483623436 +201,-93.59695200900951,-90.19537745081077,-78.47084529621777,-87.2325610160655,-92.07225486935704 +202,-85.79086567327286,-84.7822560156889,-80.31692836884626,-88.68158089581792,-78.10340916322488 +203,-96.74336417254408,-81.82194537135949,-84.87449708145955,-82.8881146459983,-93.38967772225604 +204,-94.18346374390468,-84.13255722971239,-76.42154514249371,-80.51147064966507,-82.04824588134771 +205,-85.71936937169663,-80.36935847878648,-89.96310018509449,-85.881955679246,-90.89785015510998 +206,-89.22588458364059,-93.0159793600124,-89.53819322771918,-88.93652708020952,-86.22238485250361 +207,-100.31567915726227,-89.58181319427865,-83.60793845898762,-88.5488827102926,-73.63079146771916 +208,-93.15156925712536,-88.5322588671438,-82.55022076986519,-82.07771403029358,-85.84120086879155 +209,-86.36186769109398,-91.89026163196907,-80.38821142974388,-94.9685484738512,-89.52483979051634 +210,-82.67047841379407,-96.21115482096876,-73.26077374172402,-93.81609942112058,-98.79897813774356 +211,-94.31797694626592,-91.09772520709961,-93.56434426237801,-90.52395918777027,-76.74362808989794 +212,-88.69929709655568,-89.88809970030381,-84.17386793600183,-91.34693185981511,-77.97885535127418 +213,-89.51075575622242,-86.69334368005002,-89.96846588091678,-95.4193749598918,-92.1166876158703 +214,-92.57390967907128,-89.73523478221352,-93.33243369573182,-79.94387104780395,-79.4491799268023 +215,-85.79564142159484,-83.7113830539674,-86.82453038444419,-85.44932438328517,-85.8203539504676 +216,-89.75844043610083,-98.979580652402,-85.4976303734269,-79.54252049842033,-85.54820002228084 +217,-86.33104884668265,-79.02215319835621,-87.78144242078226,-86.58455577153069,-94.1962259842451 +218,-93.69251500278601,-100.24963082815933,-84.87448067942933,-87.21972004666476,-99.74048766183485 +219,-84.60354197509272,-80.23341715405033,-92.79488488900061,-83.99831723023999,-89.55374791787429 +220,-81.36902725122081,-83.9019219963935,-78.68637778131338,-80.91487861075626,-90.8822341640716 +221,-83.84472450129671,-87.00471493553694,-81.49245080452921,-88.61255334444232,-77.90433447493744 +222,-93.10398862092079,-79.58251606388589,-79.80745975899539,-79.05461665019793,-93.07223590478121 +223,-86.52698725795703,-89.34773692270777,-83.28414148630935,-95.46195904451898,-93.55713440421962 +224,-91.22903749757486,-81.30378579046712,-80.85842073132955,-71.56772125787573,-92.02673171985802 +225,-83.3772740669152,-83.99720560102351,-94.10874015676202,-84.91196393878265,-92.78452031232321 +226,-84.34183339084457,-86.90203000015428,-90.62937707085511,-92.57126165286336,-95.7769600845792 +227,-83.66971034772044,-92.45288939511923,-77.7120010133731,-85.41091873615491,-83.91467402269811 +228,-85.90583776381824,-87.54533683143879,-90.61905505577667,-73.55237192602418,-90.47604620474193 +229,-88.5063664905639,-87.1647474938911,-95.24477849641009,-97.33479139684988,-79.88823322304744 +230,-86.5333123029309,-89.3180978660389,-76.6743024828974,-79.0466759047804,-92.78701680859575 +231,-94.39973638810598,-81.59596151601612,-86.72450190460923,-98.14903774355064,-89.32653907118717 +232,-99.15270551258673,-89.38284388716947,-89.02076690270688,-75.67085394380601,-87.8638972869451 +233,-92.59999363781037,-83.56218902418732,-83.66445059293486,-79.46193767097901,-98.21209016403745 +234,-104.52241067292718,-84.50868358491249,-94.97167809937812,-92.20575119956534,-89.83933608230292 +235,-86.73823866549914,-86.40590907257298,-85.63597964159598,-88.89277548277943,-91.54698548164367 +236,-82.5343183946476,-75.75321585277472,-82.95451346637262,-86.32127888938874,-92.65341221566584 +237,-92.78320337238776,-89.16616782114122,-87.61580068247285,-91.16929370032975,-86.74394571782081 +238,-99.44605530914885,-89.58134583327202,-93.07682498989874,-79.14687477670189,-87.30292677783233 +239,-101.74956596957966,-76.41995770448399,-96.05807515592532,-83.905516856301,-94.2227402099984 +240,-97.28839995162394,-82.54124387252082,-91.65506413935111,-82.86436898336261,-99.49212204384862 +241,-90.66754748364757,-72.31125374062374,-87.60627058199633,-73.88983974829503,-90.45335125337772 +242,-96.60157496105789,-99.12789189233783,-91.90988494438318,-78.51256355096848,-105.297267290767 +243,-95.2457534581239,-88.40809251715126,-90.3292106061607,-70.49177044977468,-86.86968532347115 +244,-100.11502461438957,-88.64303685357093,-98.67312793471359,-79.169500883728,-86.36427680141743 +245,-94.4011152559282,-98.7427629253745,-93.27565946222067,-88.58568048557385,-85.17538414961832 +246,-102.04191214907836,-90.0366586260155,-107.03848677582758,-75.38607736834015,-89.54321310632395 +247,-101.84421964196747,-87.44993408830982,-92.96847185451752,-82.69999249564489,-90.35590479585942 +248,-93.15558588824331,-89.11224964973397,-99.23103435965095,-78.46493876126297,-91.11804826518728 +249,-98.71389465296855,-79.23950699613127,-94.8150355948675,-78.73191943771911,-85.69312186446656 +250,-98.84424508569579,-85.77101048551955,-96.33695927606345,-84.94821869184317,-84.67978093497324 +251,-80.80402250464427,-88.41349071214843,-92.28951427820105,-83.22851229557598,-82.64456753626732 +252,-92.18188639487958,-95.90664806259231,-101.93955367695588,-85.0661404977784,-88.7136678221311 +253,-88.74008526071883,-96.70347244132127,-98.84144951311292,-90.27025114301205,-77.64873193397555 +254,-102.64470841133299,-81.75115765464916,-87.02979485349204,-76.38662916683134,-87.83090881279414 +255,-93.23913718513991,-84.82099602035504,-95.08825847980238,-86.42651525426136,-96.77554231965902 +256,-100.48949850364605,-81.10796103853777,-90.05987507855424,-86.39518322494872,-93.01589571655794 +257,-82.95212100036989,-85.73592430423905,-99.45211337487478,-85.63343366049362,-93.10056831896713 +258,-98.91016249302596,-90.80601039842583,-100.60870985882347,-84.8944990958788,-86.82784433699487 +259,-84.30341393288263,-82.40827361603583,-96.35065765827831,-84.26589013663107,-93.28760166889467 +260,-75.46661914390147,-94.96520175832335,-94.64851667766334,-85.42772927943305,-97.02563206948692 +261,-95.29930130808988,-91.362166000193,-90.75366581131249,-84.93597193502964,-89.73141710093805 +262,-94.5812737856669,-84.90717434617817,-91.4948544434005,-95.87460273931329,-99.68863130913168 +263,-98.71340925153157,-94.824479277309,-87.1150853577836,-96.21699098443806,-98.02570868613418 +264,-92.80278609297314,-88.0899942362105,-98.24153176024844,-89.6799314333291,-90.04048577807364 +265,-87.34041115519284,-102.99776301653141,-91.3008065690874,-94.0218106423071,-92.40246687350943 +266,-91.66915258870279,-86.939197086761,-97.05925667191303,-87.49999290017038,-87.70108462499147 +267,-92.90386141985441,-79.28503286226481,-97.12322877904288,-89.94754213630792,-83.65326928683848 +268,-94.97300809083863,-98.21869241375138,-95.29440809880943,-91.07743061565198,-88.42470994327145 +269,-96.66235679657463,-98.67290863922632,-80.1488330528645,-87.41811773810277,-88.14702083189519 +270,-87.11700829400318,-96.7428111750595,-85.65507324554129,-85.83117226439522,-85.9509891926837 +271,-97.21017297640878,-107.55226870185253,-94.27781564776359,-93.60570577053356,-82.5399313060315 +272,-87.00207584388603,-106.04956533008992,-88.23661602456153,-89.16376339398866,-93.46586085511248 +273,-95.43848056711053,-100.50700937602198,-88.48153189945154,-96.41821067426083,-81.76842921933951 +274,-82.67071349642417,-101.37957771684263,-88.88495245921632,-89.25061857760498,-81.74700941689933 +275,-84.17141873825766,-109.69056163060898,-93.08639078191112,-94.19588550151013,-92.35318894428607 +276,-87.15763529956742,-101.04076916210123,-88.44613026701902,-88.81978197398924,-88.17981600029951 +277,-89.35699053984409,-95.46671911744411,-85.6868807792067,-90.64280796884898,-87.73973276549815 +278,-89.96554833788595,-104.76776450918229,-84.35020695758564,-96.4369848011135,-92.9155964142933 +279,-81.3409084557187,-96.9932028374032,-93.07706531310143,-93.84130523491042,-90.98775720374708 +280,-73.63490493889027,-94.29817994805343,-89.56364496454961,-88.52281728329876,-97.29737350396913 +281,-77.87882065293651,-95.07361626489008,-89.03333664863,-97.07586892244652,-94.35835152851693 +282,-79.68088494825943,-92.19332240873553,-97.36918634581481,-88.84411773585467,-94.91917547948768 +283,-83.42302644366113,-96.92887413557058,-92.68780656374446,-96.392564893475,-91.85688028095673 +284,-96.0937147451955,-99.60264303926209,-101.43607426775581,-92.194571267664,-94.84051180158451 +285,-85.60148195810234,-88.3152933642506,-84.0453585224847,-89.22562344453105,-102.38346424389344 +286,-84.19858344369777,-95.1843982095264,-89.61540678246486,-94.30456028993868,-95.40124907857302 +287,-72.20179373526558,-83.68451941173166,-83.86097999107128,-92.98960259921854,-101.85878496535234 +288,-92.80036969038571,-93.87416389271237,-91.9758774717884,-87.54392245855409,-97.80009099704297 +289,-93.68512255434462,-92.73504102572335,-83.75646608485273,-90.11925797493895,-98.81490628674517 +290,-84.95642346488997,-93.3163529957744,-83.21884286948885,-88.82515477036446,-103.78712924801161 +291,-97.38315944815673,-75.68463544812407,-86.49350967870124,-95.96676914213162,-104.3336147897935 +292,-78.87519636255666,-73.23355476822418,-88.3754174451061,-88.73974114022214,-99.04292881469131 +293,-84.11675920235312,-80.45687113150017,-97.0151382811615,-90.57599873774309,-92.20525571351266 +294,-83.67099597353806,-78.8773860009406,-80.42565163678265,-86.5589245656725,-106.01550414545967 +295,-80.9798266838913,-82.20248755372002,-93.31286088732989,-88.03016458782209,-96.4554875688027 +296,-97.82431611890232,-76.43323102994447,-92.15411198429982,-88.01327779506617,-102.48300710857164 +297,-81.3437087712109,-75.84876344743712,-93.82058954774925,-102.17486953424158,-101.57878477054184 +298,-81.69490727823974,-89.1585862937296,-84.07325769333289,-102.5134524385501,-92.0380033920193 +299,-77.10022164784392,-75.9268321658682,-97.72836844275398,-91.06402741402957,-92.73501289602098 +300,-77.9862072906235,-88.63230105001604,-88.09472289003195,-97.75678922946287,-101.03051337124178 +301,-88.92775466659828,-77.23440298449606,-87.87137362058128,-88.55098976113942,-96.84613782768999 +302,-85.11211429417315,-79.89071878063086,-98.01317645310083,-92.65599366892677,-86.81573297681102 +303,-92.30355242284998,-87.16036861831334,-84.14318716508474,-86.16510566127808,-89.09511667578775 +304,-87.74499559573196,-78.52054366560496,-83.80515027960335,-79.99756956691323,-88.59467844440606 +305,-92.55742590792418,-81.379218900509,-89.47074099451079,-92.8967360289798,-87.60229728272023 +306,-91.62514824096749,-89.53445842881283,-88.84923456118463,-93.52970145476371,-76.24388017402127 +307,-89.8521474313431,-77.2695227750229,-86.88315224776588,-80.61096446104892,-75.88515292293704 +308,-86.63995837078541,-82.05085802564723,-90.26749247505734,-93.38468796724202,-78.44094476733375 +309,-103.65996966263528,-87.98473742316543,-89.03294647837723,-88.6775932418539,-73.63494995059307 +310,-94.68911301639645,-72.11166299509117,-80.35584165289829,-98.06872592872499,-79.83788535351688 +311,-91.32981458121385,-77.85365930440511,-93.53053164095668,-99.68573339513767,-81.90563390390899 +312,-103.54727736363311,-75.09261878407722,-92.14695422001931,-91.01044264959383,-81.33212427865195 +313,-95.11988115737572,-81.33701066057928,-100.5096781290204,-74.8844214831615,-77.90604148402987 +314,-97.40769947176528,-81.57618559278544,-85.27657854994935,-78.87955298788093,-87.48081181468733 +315,-98.20861085503331,-90.84231565573778,-85.2377570512713,-83.73875736496068,-88.28124280811778 +316,-102.29069965996526,-85.26725384917647,-93.98042240495735,-88.01130836732344,-82.77008676646311 +317,-89.9174547766305,-78.88641651357749,-93.33220923892976,-82.64464070670036,-81.17239470168093 +318,-97.76408425827904,-79.31967737794655,-89.4645174827537,-82.15375733484206,-72.93613762931783 +319,-81.69209549371323,-81.94656576353574,-92.30770723771498,-68.72992273999024,-84.28412095687284 +320,-91.47925734898955,-78.6339100175229,-88.58530367670149,-76.21384299683038,-78.87045154232072 +321,-99.30644326138618,-90.19617971141102,-76.92026425438601,-73.00832389135982,-86.62231331901526 +322,-87.42004539464814,-84.58771574719867,-84.53569890601587,-77.46676743319652,-88.11350507835853 +323,-101.138383590963,-88.77725928530907,-79.1103526903343,-76.7417526543769,-74.40381041271861 +324,-75.59561288608563,-88.3333920219577,-88.3777057792607,-81.16676610369518,-82.55738941442465 +325,-98.20440251998714,-90.39202544891067,-88.59147120585784,-76.4627117591049,-86.90653959149304 +326,-95.5624068300296,-101.00481200255328,-80.0344822239398,-82.94304810209223,-92.63208017631378 +327,-88.51978229944048,-87.13688037883051,-86.97635898338643,-75.04966652944069,-75.20489914142573 +328,-88.96538780379524,-96.97653338784812,-84.78735765604839,-81.24537607595752,-76.36529689355471 +329,-98.44956699614684,-100.63762600394368,-97.35838107539242,-79.5030610849367,-72.30081827601502 +330,-99.99266722682854,-94.48207846803271,-84.60912138431253,-85.47006409716587,-96.5526165083565 +331,-114.15729270467331,-106.92903017241437,-76.72149523959703,-89.7186340935573,-85.745676187714 +332,-90.71637714077413,-109.5559593341455,-80.13688696865765,-92.393197144688,-82.8833731152981 +333,-93.59634224680296,-94.87129666330216,-82.78047956172152,-95.1105895845717,-93.43620877123767 +334,-108.23100865339693,-108.4213956986276,-79.55129229937026,-81.37068814289732,-91.73341392557253 +335,-110.89857832429152,-107.89948617239065,-79.95702912613824,-85.10705425450739,-97.22008950756049 +336,-104.38954154668933,-115.0321845973328,-87.14898034098714,-91.16211197485588,-103.1511686592348 +337,-113.65807018660334,-116.30267742762476,-85.82935943293984,-82.81368240368158,-103.77147315034793 +338,-121.65024347933982,-114.38668397922667,-92.26693569414354,-78.14792349255227,-96.55184347324533 +339,-127.36943860392947,-111.92456243766324,-87.78266012016249,-88.73956213936214,-95.98336313727305 +340,-106.73226906355623,-121.83280777944486,-105.35911465936043,-83.00242300145176,-93.30304498411714 +341,-122.16098481536864,-118.2397407402631,-96.5828232977708,-86.55245517441908,-108.21830827378206 +342,-125.13546584334587,-119.20337301670712,-91.89295782098448,-93.68970744351408,-93.2824154480224 +343,-115.31358900105374,-114.14480477165255,-107.79240559683842,-89.1569572605555,-94.34778452568315 +344,-112.21476925563604,-116.47106659816585,-106.82029408913914,-84.71033832888656,-95.17530442259654 +345,-118.49226169926969,-121.3511092254799,-115.52570263714014,-96.61203671914602,-100.90626894279737 +346,-113.01594142971086,-115.09137244577533,-102.07555429583734,-94.92854864090948,-96.35447502908009 +347,-119.58572036876734,-124.6371827891982,-104.70650676935995,-105.81968772155584,-101.65259360426413 +348,-121.08602044802237,-118.71549411202002,-108.73647441422418,-104.74868761336772,-107.46388023667528 +349,-100.1726540977808,-112.98726377207076,-105.56565416158064,-103.94253511547386,-106.88101612053948 +350,-125.6126559959656,-101.55458859136017,-106.98582157487643,-105.94847896947064,-101.65616009991929 +351,-110.98211845066868,-104.9034469717461,-99.50613243676449,-107.03883761579574,-94.87235372202576 +352,-106.90521622894455,-109.7823181122363,-108.90491804077271,-105.88008948693329,-93.93630969792987 +353,-100.95871307594338,-102.03056759314349,-109.4980990984321,-107.87986606322919,-92.43822043410597 +354,-108.42418878073629,-106.0793430422737,-100.58763629455869,-105.07011925465281,-109.53683090662803 +355,-105.7898974004459,-114.05229372879464,-108.31366658828807,-105.77366604176991,-104.39648567064049 +356,-93.73283608888217,-108.84365686544156,-110.11571669020519,-98.40383724853557,-108.69354876080817 +357,-100.18223028857474,-109.12474828601276,-110.78174152276631,-102.12315560295231,-114.62782465477814 +358,-100.41220516922108,-103.13355677359266,-106.56280281940936,-106.68468911676106,-111.09556151618835 +359,-103.37995273456426,-95.02359278175041,-108.94607996115901,-94.98881204295036,-103.89352587155854 +360,-105.28721891585845,-97.53924134938993,-108.83616728142731,-93.76619786736553,-105.75354516516802 +361,-99.44938943916742,-95.28831603094878,-107.97516545498331,-95.99512625761422,-114.62487099775343 +362,-103.41794632150521,-99.20987739547111,-103.63847407370423,-93.84359953075727,-107.18288868867015 +363,-99.16466161281994,-92.68120647855136,-84.75523870011689,-109.67576850109491,-115.59378381889198 +364,-92.04322232197622,-99.96442543780475,-97.046076670973,-90.85090295132989,-113.45248567595031 +365,-104.39242732375425,-94.4332663502196,-96.96117048797866,-99.0253106306726,-104.95028339932745 +366,-96.16085410576345,-86.34971216385523,-95.04524652653619,-95.86670018282037,-112.50172408255611 +367,-104.84336596201656,-94.80640015971204,-87.53744540821617,-92.64335092433181,-108.38765738462696 +368,-89.18257706851651,-86.68731162778602,-94.65601240892319,-85.25417796145847,-106.18695215729306 +369,-83.75037786302154,-93.74274745838446,-90.91171614036564,-81.65053556576281,-101.37544763867203 +370,-88.16546758336833,-84.3688134490155,-102.70835051454478,-78.6032539048244,-94.66635104210206 +371,-91.7210643367202,-84.68694926615694,-97.22176826675152,-78.12086786233766,-107.25963898653295 +372,-78.19214354656337,-89.11465207813407,-101.7789350583078,-81.19088857707648,-102.53609001117465 +373,-78.52490896764145,-95.03763633198501,-106.98520260739353,-78.91788299737327,-81.89033094941338 +374,-77.40834703031314,-91.07622361435664,-96.43930665953864,-71.46234001572525,-95.29495551781021 +375,-89.89844268841314,-99.23518264196777,-95.42430934581735,-79.81994321912049,-97.09677844293589 +376,-78.00593362813318,-87.05072784664114,-91.21429307084902,-81.12147074139567,-93.91197853175424 +377,-85.70824968330872,-106.71876525396019,-85.07537971630352,-92.36220876142617,-93.78681356085093 +378,-73.1286170610501,-93.87731154633698,-86.59588961855741,-78.20206903170536,-90.33958003971189 +379,-80.6184181471747,-95.20472081193091,-76.85473024193794,-92.37964909046336,-90.72238164623428 +380,-82.75006261408316,-95.0492168170499,-84.74250501178149,-86.96962187521908,-86.39452352012056 +381,-84.5848993939308,-95.44925165207536,-90.94111707766156,-84.82037014518612,-80.20770490850721 +382,-80.39219040544945,-88.44729096818214,-83.01927909699235,-101.51661065098887,-93.56749814414432 +383,-87.60781874472343,-86.87665365890824,-73.68813869142144,-82.94002528278254,-75.19053806546808 +384,-90.09857762087813,-93.05735896274085,-72.9674468004576,-92.71464771834408,-82.04488837213222 +385,-84.02871137567556,-86.68371771702658,-88.96279650591643,-104.51674894265184,-74.82847847001914 +386,-90.03774818028283,-86.97349206964361,-80.30578404194458,-96.69348036103334,-87.7422591021011 +387,-89.18393294750274,-91.42718154098336,-77.24256279688568,-108.57449623855648,-90.20230081636227 +388,-86.19570990210197,-95.50568816644184,-80.68246785685305,-106.10330194139492,-83.94606539512337 +389,-91.90858410055122,-92.66717881794293,-86.01020717015089,-105.79653217760165,-92.66381461831014 +390,-94.89021590731069,-83.66610977550245,-97.98252235396036,-103.35190862507993,-86.53921023180573 +391,-95.81445964825062,-85.20049138005834,-83.51568949895787,-98.70936180674734,-99.95411698978981 +392,-91.57970879945613,-95.61467356473855,-80.82966010287383,-104.12104022243982,-87.85211867301872 +393,-92.59155381973379,-100.64251545403037,-90.6330875625102,-93.76040735654588,-108.41949483667311 +394,-92.0875487418084,-86.15596915726161,-88.13987016492807,-103.65157399691687,-86.62652846102917 +395,-87.70979548392317,-88.08793394815508,-79.72053725170672,-94.60714691248421,-106.97397902757443 +396,-90.34594860807424,-99.30948996483446,-97.0815809196264,-106.45644037557025,-112.3356108928843 +397,-84.4474764432997,-84.62155393803178,-101.76900055009294,-113.11208497901329,-94.19035585425775 +398,-88.53758786227066,-85.26732981259471,-91.22753966437273,-116.46960892090867,-92.66628789661608 +399,-85.4472801853226,-90.5303567056221,-87.85244070256223,-100.48690139435423,-108.20617188681027 +400,-82.54842526593633,-83.7797252006154,-108.31410817947251,-109.73556762082578,-101.1559071546172 +401,-83.61191423878506,-96.17884328969772,-98.09921838306484,-110.75958349234675,-107.01910498576181 +402,-90.13528669003936,-90.76946082312678,-111.97320363713247,-115.72737347410809,-101.96128543423178 +403,-86.49571902808316,-90.90295693964805,-115.52457276997227,-115.44617249666254,-97.58368029015163 +404,-82.3230286379636,-94.44693841571551,-118.14359220828831,-112.93166887972983,-109.52587638500164 +405,-80.89833270162127,-80.11309057592408,-113.80726738682878,-108.85941670752041,-104.79425750765665 +406,-77.13656184270249,-84.11476004881192,-118.18407755095102,-115.16402450584948,-98.0121952633404 +407,-85.80950301071893,-84.10390282578146,-107.32941096226763,-117.27995122696802,-108.72573907904993 +408,-89.31143709340034,-84.45364545658705,-111.29478614886192,-112.5500907041987,-107.23377963012686 +409,-83.12864794124904,-73.60765095609239,-102.64910380446437,-109.67605800256415,-101.3447178051386 +410,-82.85028479000505,-72.84836873222062,-124.68671865436625,-100.51777774421782,-90.12109729559184 +411,-83.47610512876669,-81.73754277777326,-111.28490752560288,-106.09745660652128,-102.89489626329265 +412,-81.76665937376674,-69.87565192220158,-106.70497884038069,-119.2634231535469,-100.65386590978729 +413,-94.79612606487625,-79.5264780903458,-100.15157801869093,-110.04712454073898,-98.7622376655422 +414,-104.17289212969766,-91.60676949493622,-113.4326039666058,-109.30685400685465,-103.26990192735641 +415,-102.41548403716253,-90.79830011687335,-118.42658966708207,-106.51934847933,-107.38187779208143 +416,-98.16207817229807,-86.89994888819017,-105.0921960229171,-102.51973575858803,-95.2620420203108 +417,-113.71160730894701,-93.56744804175734,-114.5555498637552,-106.85248284421785,-101.88965683213827 +418,-106.37511885274158,-82.83069462031783,-113.74714032321617,-107.78659420163387,-96.91353122595844 +419,-110.74251842308342,-80.25053788690239,-113.32481503713582,-103.44890224830503,-113.31940066541321 +420,-111.29240847192153,-90.41319854467045,-107.19886568918363,-99.46962312516584,-98.56100795454638 +421,-101.2044637881177,-90.81430226536531,-108.5836220761985,-95.60746859281352,-100.88387102200348 +422,-112.26583170880183,-98.78794786260802,-109.1793253176253,-104.2720423914527,-111.42935774285955 +423,-97.59952260596516,-79.26173005993199,-92.42435188776405,-108.3226382681848,-112.00643146224787 +424,-114.82236060421938,-69.25600174125394,-95.9095666612039,-99.96174053386632,-113.98578896173247 +425,-95.91187428192165,-74.55528592695292,-98.63656760331575,-112.68021077359246,-105.05415086204162 +426,-115.06912714457344,-87.72202387601864,-97.63499439450344,-98.09473411122701,-107.69857524947089 +427,-106.1653007121701,-80.86144770628552,-90.14945714564952,-99.65727726220607,-94.47970434852056 +428,-110.07615321487566,-93.67340528655275,-103.9687784781902,-108.50852730072776,-98.8755657804491 +429,-110.29030111205059,-77.32262621710682,-102.90182505947307,-104.93885989250508,-97.40950317424301 +430,-116.47181766222435,-97.8997726023087,-112.02159331650505,-101.91489678912527,-105.77418177028491 +431,-113.69417881458752,-78.98768182876589,-112.6804560859823,-118.63102994683517,-113.12904836499058 +432,-110.12588644665863,-83.3362677321105,-112.89509657620212,-107.34261742302859,-117.05561279371648 +433,-111.78163820351736,-80.7107020923928,-117.54002751631805,-104.04417601942158,-105.11188820267756 +434,-121.2396677742669,-86.74871937573965,-109.1852670842807,-106.05302738792281,-108.99182738895573 +435,-121.71772930345759,-73.08218483501989,-117.39675609889242,-104.27810094218009,-119.1915029652659 +436,-127.076589013125,-85.52062526506876,-107.18192187482876,-102.74147587585212,-102.50316532467137 +437,-114.26707515099557,-87.82709574696705,-94.27433710800992,-103.53445763896691,-104.79359320560962 +438,-120.88697738035896,-82.5524660114223,-114.25200765972956,-100.77237480636553,-100.41552924816341 +439,-124.33760768465949,-83.30307866542051,-98.21672317657735,-115.76884988008213,-101.1433157158974 +440,-118.10810794627002,-90.70508055212107,-113.98184204853118,-108.6643356977566,-101.3256820466879 +441,-130.38947731412662,-96.5750271414578,-99.20429198200938,-102.86441224789925,-102.16971823020776 +442,-126.28781902086429,-106.80998162010106,-95.60552115745038,-109.23243965997523,-108.03565618217377 +443,-124.52427496782435,-100.90989390079844,-101.28183611225528,-116.57295705669912,-99.57953603003563 +444,-114.25139167452218,-114.26092998989675,-98.57876043977635,-112.69675893244721,-106.86843894983288 +445,-120.69075818482396,-109.3150778680348,-90.89325182159435,-107.52309100016294,-107.56122145987068 +446,-120.2929076203544,-111.22444929163015,-91.1339285510029,-104.78157482102962,-89.38057958660038 +447,-132.64883144535597,-110.4038498036656,-114.31895771547912,-101.12828913158297,-98.02198952963509 +448,-121.01488210493885,-114.7168822095279,-109.85700394673981,-115.53314109442564,-106.13065674524627 +449,-116.82585281502587,-106.72126060382499,-98.87476609821867,-108.41144595891798,-103.81298590337852 +450,-111.3769558533074,-114.72971698059281,-97.19801331320743,-106.02342998517099,-94.05573571522278 +451,-110.45950628138327,-104.23347952288297,-107.52957158553023,-121.55689621218114,-102.4589781483264 +452,-104.42654894760481,-114.71121210923305,-99.40215085123687,-102.75625114300851,-108.0020756015419 +453,-94.3965442481481,-111.58322233670498,-100.33667520604745,-99.5285736983697,-108.82803886465058 +454,-95.33357370154033,-108.89540606656924,-108.12597804603841,-103.91504165445275,-112.29356048675841 +455,-97.948486337234,-101.13619662552031,-95.46742717389888,-101.56754691104203,-113.84056703004795 +456,-93.48853444580737,-110.67211687449749,-94.55940950541437,-103.66391339942955,-111.62285842139005 +457,-90.01352199560556,-108.34810576019328,-97.10742310394546,-97.5392582943803,-108.31404147638627 +458,-91.17386540328488,-101.15250981729723,-115.72146216248909,-101.49117447692441,-119.16403773254628 +459,-87.20264454316512,-110.59413282766901,-113.78884647009984,-104.8422497248935,-113.66621598926501 +460,-80.2777831503812,-106.08946358533271,-102.91245447709854,-100.00919141438779,-116.66513023886239 +461,-90.19085694000962,-103.83465872720431,-107.0150349698503,-102.1208428231739,-117.53467302954476 +462,-84.14683758684642,-100.98687889343742,-114.4506299401449,-85.19668364201475,-117.94350572100413 +463,-95.6886401741637,-102.29447542872902,-111.80271114309184,-81.75894559087234,-115.60843928428638 +464,-98.56503985045741,-90.50675151355412,-116.73274069825814,-77.9609542017113,-112.2410453628975 +465,-81.13755655275251,-97.67231810666215,-111.52014515339606,-75.8623250591715,-114.8195223168477 +466,-79.25917067032375,-98.23362739291095,-105.76148357582312,-85.29893987754404,-115.63382665181443 +467,-76.94780627475754,-101.29119602669068,-98.84598605999298,-85.83122675618289,-112.71527601427626 +468,-89.71942382369835,-97.28169928584637,-103.65810123499578,-83.33141515840995,-110.131670717657 +469,-83.31083567760457,-93.75628306992212,-112.52650809212221,-74.72628445538025,-101.19466301624739 +470,-86.14344211184603,-93.79794235295238,-99.47902769602798,-82.19413308421065,-112.42118992082511 +471,-93.71194914538087,-87.61365835104385,-92.32468831883232,-84.93164214506378,-104.5596700902654 +472,-76.9451783714627,-89.59633966439489,-98.35903959544854,-92.39331191385551,-110.72650183849643 +473,-86.25033621644606,-88.39538981285371,-80.38324300507968,-81.41699197018812,-114.54468900725168 +474,-78.14888517657207,-90.67035300304764,-84.9691858958158,-89.66683475462712,-112.60926096633129 +475,-92.94565156492028,-98.29771616576815,-89.72639227547171,-85.58935815744015,-99.50352641683169 +476,-92.89185857299339,-99.41217435687831,-90.65497806503974,-90.99076600398901,-115.18272487366117 +477,-99.88092178538923,-95.78929705046536,-83.02982535145978,-92.84132024508227,-113.37074152034089 +478,-91.89664523396013,-108.17417868225637,-81.92452966152626,-92.20915580465123,-117.27726611509135 +479,-90.41953145346186,-94.47779735266842,-79.36962161275143,-91.17584739085483,-114.10161522731244 +480,-96.96565385669628,-99.91564258727114,-99.41893677141499,-90.67361899554805,-110.63458848828353 +481,-101.58954813800553,-98.38187927123728,-95.47834563375979,-92.59871904195268,-124.47705224124552 +482,-97.26902616851511,-101.44003897531549,-90.23052904279608,-99.18109293806582,-115.8645007785343 +483,-92.34584906632028,-96.47857128692607,-75.19185938412159,-108.34335899099133,-110.84698456132851 +484,-90.49789610115623,-98.09306799346972,-109.34689855981749,-111.59561360447653,-114.9084495756527 +485,-98.11837588011551,-102.60995686863707,-86.93923879337358,-107.22619266899672,-119.60111806768552 +486,-90.73762032737697,-105.22516671391294,-104.25165610499482,-102.44031098073259,-106.01614841078202 +487,-85.24418127671845,-105.17650880962414,-89.03905003325491,-116.1771775166286,-117.44274738656104 +488,-87.61614378011805,-96.85845011829227,-99.82605849880603,-108.04219051359705,-109.11919368943116 +489,-82.34603017173717,-91.45530776604689,-89.63870957727778,-106.11314611293538,-114.8200456160729 +490,-82.85541962120047,-102.86676330990812,-94.15130468662214,-117.52885738150451,-114.5305423715724 +491,-102.49265180231231,-100.85919856620248,-82.16289992145697,-109.31375387717833,-112.09607824186784 +492,-94.36378487250468,-104.03577281036529,-86.18206285967251,-113.10226961449682,-104.82148351115238 +493,-89.00310990532975,-103.98827212865757,-92.21739275802389,-108.21620259927133,-108.59882878020555 +494,-87.3668469946332,-93.50557735890305,-88.45516113230626,-110.98427135920863,-114.32445850710077 +495,-95.10644245362754,-99.23002286275825,-90.7846720102481,-114.41964030545404,-98.0616997553936 +496,-80.24763990148168,-107.8204810667578,-92.30225819763822,-103.27443425562582,-107.17949187991414 +497,-87.90349312373621,-103.98352624307961,-81.09551137631387,-115.69845531911636,-108.74154200509517 +498,-89.94345448929204,-86.827091910113,-93.07738015929853,-102.74082742636422,-100.81956305508487 +499,-84.76336053708276,-92.14743827456024,-87.26775093086341,-100.5668897457472,-104.45514364533389 +500,-79.2206027141555,-93.70008006691126,-85.02603513149461,-111.08161665033002,-90.832903504549 +501,-93.04939386784766,-93.5683260136266,-86.41265046330886,-101.65753135179776,-102.63465414645675 +502,-80.28297313376268,-90.23203589777565,-87.09992573717417,-101.16488780522967,-79.5786041105425 +503,-90.75887702774524,-97.7944853888512,-93.84508785391222,-98.60266069494797,-90.52012949615204 +504,-87.33140020282772,-95.39155522596991,-85.89746939760923,-100.64488888054882,-84.50365454367623 +505,-73.05517003920451,-86.98796122889105,-100.20190669490248,-98.32561715635056,-72.94247834131104 +506,-82.19242799359824,-109.82271911383015,-94.65146212503335,-92.67896719186966,-81.96946367663875 +507,-83.59048472183457,-93.50217012197943,-98.37905080760153,-88.87887832309055,-71.41565293833152 +508,-80.71161544076234,-82.92026129345018,-96.3447072864074,-84.33432801410973,-76.89153724285944 +509,-71.5882209446945,-86.01045629641324,-85.92731246075046,-88.44048956877215,-69.53578661084659 +510,-70.0876632148794,-75.56722873738505,-88.96284015900794,-88.9804429164408,-84.93296786307467 +511,-82.13079644483173,-93.54708737012093,-96.12759349897593,-95.24204430134634,-70.10473848431513 +512,-84.2081133570879,-78.97929877929829,-98.64196956733137,-87.05563342318942,-82.98399243382292 +513,-91.10824844358675,-82.62049841085563,-90.71928040508726,-89.11907466591079,-77.60693464498272 +514,-97.81060108274485,-85.05382202084863,-100.26968846637725,-75.20789957005412,-78.76571715064352 +515,-99.27041499926744,-86.90142072989558,-105.15539082220107,-94.65975493924395,-88.38883411509998 +516,-77.82087574911644,-80.2176197690819,-98.63418025038386,-86.64195871747607,-78.52946196843783 +517,-82.00973469851516,-76.68335985802737,-107.85794151761324,-100.64089454482233,-80.0894502866141 +518,-89.67982077150074,-86.13154723802003,-107.16782351184354,-88.57800034888368,-83.99450034477341 +519,-93.78582000905027,-81.68733754803053,-114.8829289999993,-82.32805986022782,-86.72598438022195 +520,-94.14979668958671,-82.48962551194273,-116.21044422507775,-97.02893130000504,-81.12169964491898 +521,-100.5326873317451,-92.28600062939101,-103.54332975878572,-88.51545242452016,-81.01577600624668 +522,-101.1074108963649,-98.50289346287987,-110.26702406799103,-105.81754623524688,-87.51733637894633 +523,-98.39139808228568,-85.94563309477707,-102.02622022778765,-99.73827250937372,-86.08717429864585 +524,-104.31565612930194,-96.01192735969757,-102.2153281885013,-87.63926762021259,-97.14184470050687 +525,-107.74924520465466,-79.19468370215968,-103.68199892669126,-84.88786581419846,-85.57475945617898 +526,-104.34207399755117,-73.37298817701976,-94.95167725272754,-88.27068895200993,-98.04508447557387 +527,-106.98427214835318,-80.59040568558771,-86.58179341410606,-87.21828205687603,-87.24543553974858 +528,-106.28830531645713,-82.73656051155207,-91.31351049972997,-101.58679704758781,-93.75093543657714 +529,-109.41329677574119,-73.1205987793998,-88.8618019182792,-89.80138665388094,-99.61535142807472 +530,-101.80360308960358,-83.68245447138905,-87.2680458599935,-90.81174809845211,-100.26381197352063 +531,-103.23525188325927,-77.04126590148456,-89.46311072751045,-94.86590452449805,-91.20385029090554 +532,-97.18975862874561,-83.15183900591438,-83.8028344280606,-106.7177922928586,-91.94656657962501 +533,-94.08456369719038,-81.70092687940686,-92.15524067424093,-97.3038302188999,-82.73028277810636 +534,-97.08710529515443,-81.56979329708159,-88.68294833535687,-96.91286903330897,-102.88281490130639 +535,-99.89547780915062,-88.19832529947266,-81.97081837956183,-95.0345557445944,-88.93203589518795 +536,-99.49511639893194,-86.40914681768638,-81.47397876045004,-99.06686209318961,-87.95054564823053 +537,-94.320012191071,-80.33133864722943,-82.96646420481204,-95.39127937830033,-87.84683046708082 +538,-98.27908949901395,-103.67455558643145,-94.84448869994304,-80.81454213314328,-89.3405819869013 +539,-102.69390270174853,-90.166245192625,-80.83182807046971,-84.67547632412703,-76.0208664617233 +540,-100.13553988551476,-96.43438930988012,-99.73946424343153,-84.46895046407693,-87.03036797617779 +541,-95.72756767535158,-107.36101534983446,-91.52860167931657,-84.49183229810652,-74.13956649113945 +542,-89.82343237372085,-97.01021363846316,-88.51957570830773,-78.5819501880342,-78.18831071197707 +543,-86.57496282937986,-96.34149033393035,-85.71380243544857,-75.50376856800932,-64.88745174135917 +544,-99.60045493904465,-95.6675920076373,-85.24856219825138,-82.27858875834949,-73.17907307324211 +545,-85.96454555516794,-94.33187080495136,-84.63361083402388,-77.98225320200017,-71.99318131174847 +546,-99.69304429032756,-90.25238725705654,-90.1707241133194,-76.55187614941858,-87.53204871000707 +547,-77.90528058390404,-106.91124240155541,-83.74013826162252,-97.42674577030074,-73.6625140351214 +548,-80.39733921191421,-102.9086816504134,-84.31515469221523,-88.14030743917628,-88.09377608875253 +549,-86.46356081211934,-82.24573372460056,-91.02595395695035,-84.28421433020304,-102.73003845965782 +550,-83.33180182554608,-90.19900119585317,-90.8046747890054,-84.72684094283387,-95.12173380370552 +551,-101.9832344929116,-84.91161292754124,-87.28443205899731,-85.15062822541216,-108.76850070617463 +552,-85.62921784907374,-93.68353948557937,-87.54764574433788,-96.42312698006577,-123.72432827475785 +553,-84.51643460573274,-87.12602026262923,-92.64044033983411,-80.1704155871775,-109.38092272848519 +554,-86.97502718719298,-91.04922106305393,-86.7721425945896,-79.99678418862422,-116.03934635271789 +555,-76.75413951461289,-87.90088353195425,-82.4323740592326,-92.94282624209411,-114.58592860281237 +556,-77.6063809219217,-76.33338191086642,-88.18540811332745,-85.78768718867737,-109.85650272582961 +557,-80.0535047657581,-76.42769294937973,-92.69006405399203,-83.07777749485494,-108.30893623054394 +558,-74.00262428606425,-67.85200873589433,-95.05768796887102,-103.43348593939314,-113.6065044768365 +559,-98.67504857041827,-79.39240049455954,-101.11611224232514,-90.00467385430524,-115.77343543642573 +560,-88.2074715090701,-82.37253154356675,-93.65774949361494,-94.15536900123193,-114.91560661752476 +561,-86.8227162776963,-78.2058994592363,-93.08267690075198,-85.35628975147524,-114.94412003542304 +562,-87.59894082443606,-97.13721157930237,-89.00227671702372,-89.19816327642619,-111.3849998349179 +563,-99.69558548574243,-88.6455252976278,-93.01900828661219,-94.98290375211485,-110.81772445628175 +564,-79.49246269697431,-97.65514181662844,-95.23425779732513,-103.79604349648157,-117.08242726018628 +565,-88.85435051552629,-98.9505847112646,-92.1500290765202,-95.80176658570673,-118.60093203182534 +566,-86.58978315326564,-96.63272398544557,-88.69857388849456,-101.61267611308001,-112.80486738418875 +567,-85.00016764620277,-93.92380335207604,-95.64026273299082,-85.61190576567581,-121.81920707753797 +568,-81.86448818625777,-96.6763428099721,-91.87057166515545,-81.24551269405086,-107.35885293671987 +569,-82.21184495698458,-100.20216055369809,-87.76209552462774,-84.68611229619967,-107.8240764313665 +570,-91.58932417786977,-109.45483803246898,-83.16204817565797,-83.28465124890637,-100.95466462723341 +571,-89.34457408533162,-112.66798587065361,-86.98735958115655,-96.77251292354178,-97.40271621883544 +572,-95.43871962484913,-96.38173565642639,-82.01775295967933,-73.93126960727051,-99.03520636743727 +573,-101.31561264631628,-99.00691707190238,-76.46984339710514,-79.01411056997343,-93.76368071752317 +574,-87.79904325956419,-91.34391144323733,-77.09029217217764,-85.03834185197313,-104.1512944930744 +575,-91.91869883274758,-105.37585104362958,-87.56203611499863,-79.40196593944364,-96.12397205418567 +576,-102.33575160915663,-92.21290718961463,-80.71907618438922,-94.99096160650672,-91.33981931631651 +577,-88.10998435697067,-102.04041558142958,-92.01859749593257,-94.82186565782048,-101.80052860692986 +578,-88.22299515669694,-86.13436435401816,-89.43973025450848,-83.74195619156173,-80.8807483769289 +579,-90.81462800471044,-92.94466191563869,-89.71054718913379,-96.18068608738987,-91.90065845305378 +580,-87.10114532139879,-91.90821638330294,-89.01361291107217,-103.97565796653849,-80.05714534266029 +581,-91.7375824073355,-98.29836933272149,-93.78002664118738,-92.41887788595685,-76.63025282739743 +582,-91.40615085666307,-97.82534825196208,-96.50355642230325,-100.06238354735956,-80.98449136318443 +583,-96.35522713862721,-90.72782219589443,-85.46482555984429,-103.11821367003363,-81.34656017479722 +584,-84.80660823582959,-87.31974351445757,-80.03345687844444,-96.70291869734451,-79.59205920406642 +585,-77.0638105565845,-98.77874546972996,-83.59488089168585,-108.67734789833104,-81.25464091278403 +586,-77.71365778326178,-98.41883039800135,-83.44035806744321,-88.36350913421956,-81.97497226237363 +587,-88.14623117432494,-110.75853873582318,-85.22446955275913,-91.93830597441425,-79.69780996729014 +588,-79.00073694190023,-117.26180624923144,-80.10825819967576,-96.4131534676749,-80.38344515279972 +589,-90.36027338061186,-120.60048793278878,-91.34855824713489,-80.87491830096842,-87.13659914358837 +590,-77.95600730204801,-109.30248577531289,-92.67528353346782,-88.66224930906232,-87.72522411499241 +591,-90.4659208076039,-110.85721868089927,-77.15220232096625,-82.32297233712862,-83.43770871107223 +592,-83.34334391516018,-108.21443934579949,-93.09520772640047,-91.33255796671665,-83.87974132717501 +593,-80.06916794806659,-101.54155375169915,-86.70998813938328,-82.54740540853405,-76.58278816441953 +594,-73.99984665296495,-98.19236899863684,-84.72714760685277,-85.03382344118536,-89.00353680690789 +595,-84.0227456272771,-86.55665282861332,-77.9446723434354,-78.68349234983812,-84.8700355934386 +596,-78.8881343170249,-101.88392392159628,-78.08682619207913,-96.68539621500058,-80.41132220529927 +597,-75.63795702475248,-82.24797396455837,-82.23014293938677,-91.70265074677104,-80.7935456538426 +598,-77.37060572446168,-97.02670200014701,-86.06120136657353,-87.22120548901167,-75.28485800487239 +599,-73.82290170121466,-99.92050232881928,-70.60925795003277,-83.67993680328433,-70.51169737836179 +600,-85.86270378254395,-89.92611559072895,-86.31952608493242,-87.84170595475155,-80.53340365631807 +601,-80.65528868746681,-94.9099901143659,-72.18303527778053,-84.1203870209736,-77.06679575318445 +602,-91.54866015352461,-81.63431326618546,-79.46997737516328,-80.86209980574627,-80.21453023594596 +603,-83.9844604973467,-87.33390546939764,-86.15583099348895,-87.17976272317841,-75.87774723806453 +604,-69.71753761492961,-90.15172809664473,-81.7263180462428,-76.79793141880673,-74.3489248846192 +605,-73.29763632484764,-88.06434090552082,-77.27113444823185,-89.85545979069319,-84.84013316898462 +606,-77.87504771133128,-76.39547706055805,-71.9643764015116,-97.90453613725401,-74.35373420774435 +607,-75.07139213835154,-90.30574758362913,-77.59549781460171,-81.46725067866154,-80.45514056632666 +608,-80.99059688085912,-74.79124557994466,-84.69080537455935,-80.89582586344045,-92.0390613126299 +609,-74.93250367800037,-79.28519793283422,-95.85227347694311,-80.76369749819871,-87.4130444482682 +610,-94.69064152993937,-90.68143839122378,-88.91144157130924,-73.5868232222673,-74.78316681096415 +611,-70.28048960363,-81.53985298894689,-86.25924000435468,-83.39366075881553,-87.81919640347694 +612,-75.52197891923727,-74.04025633349656,-86.73135632793841,-86.94967182984277,-86.80478823385491 +613,-91.97015667047921,-90.25517918355642,-99.9697514386907,-88.54051517866203,-88.87858782558853 +614,-81.58523408527401,-77.57221862050685,-85.2161447036104,-81.2022563801701,-81.66937756554515 +615,-83.32058317764847,-80.28985832772707,-88.64632067853522,-81.93553878942424,-92.11424567088552 +616,-76.50149029113742,-88.23219808060594,-86.47239450753484,-90.21629783003416,-82.6725318563736 +617,-88.42724594044083,-89.15589254692924,-87.15554189524718,-87.27690425333216,-86.42038709684314 +618,-97.97671860335599,-82.75581863720129,-84.65831904122271,-78.07603386311727,-87.77196934089757 +619,-83.26589773228042,-89.29900550616237,-90.44528608365711,-83.66680906924373,-82.33177739050522 +620,-94.50015434386926,-80.79394807079726,-86.07815261885521,-82.42552561061476,-86.42960395155296 +621,-97.58066241883677,-94.7979717802226,-78.0236691819037,-73.63251585967461,-77.28861634525805 +622,-91.86932926309937,-66.66456478817187,-75.32608549649878,-78.77461720513774,-80.05840486920613 +623,-78.91666756243113,-88.70012767517068,-76.71748902755715,-85.76468000289917,-81.28793208905026 +624,-79.99714180440546,-74.7587509723127,-76.96272869169901,-78.22942598701849,-77.3473071316289 +625,-82.75335049195688,-75.84962546932185,-77.58170590521442,-81.42536344123016,-92.24202952788984 +626,-89.29454436196396,-73.58268148446523,-93.48325303652793,-86.6738272746366,-91.02278459613993 +627,-71.53772030800262,-70.43311371514058,-87.30129622178781,-82.24652349803986,-89.29858862043001 +628,-79.55944560328665,-77.41988119251346,-79.44856544431981,-76.20813669453351,-93.46050948359314 +629,-70.79867242763457,-71.99319894579904,-91.0362876286251,-79.58734174388707,-110.45288586292209 +630,-68.82584545827831,-81.22854246971853,-89.59555840158701,-76.4504779038017,-98.86199261717009 +631,-78.09938147588093,-73.99757701107228,-98.4895077604322,-79.10612909652043,-100.01536388705392 +632,-89.60120847625129,-77.5889579860916,-95.34474871368705,-87.95192792361931,-88.44424920155907 +633,-70.8911335423109,-104.88938615539963,-90.2042558603559,-81.5448828292248,-85.63896262670914 +634,-82.28908301864232,-78.58844264426334,-84.21051355426046,-86.77283590695589,-94.7662854469024 +635,-71.3454062692787,-74.67513660580921,-95.62418412466243,-81.50995855328327,-99.91027252993374 +636,-78.71393577573353,-80.63758107776573,-91.24775603135745,-78.20148383388414,-79.63066276875743 +637,-78.50338786795149,-90.175805768146,-78.54010390568898,-78.63731506713343,-85.69921629950048 +638,-78.06155101572088,-74.06753719395392,-67.98120455465376,-83.46803224598382,-76.98221704400767 +639,-86.82336303747303,-81.33035876954662,-74.67198383229551,-78.17235647740856,-77.40903807858854 +640,-72.46954876362021,-76.79911959203784,-75.52509828380856,-87.52359550141857,-80.43555455426588 +641,-71.37868381423411,-77.91772263148624,-89.24498339072633,-72.77149732305642,-77.5635960058066 +642,-68.2343445224711,-85.17631695521304,-80.61378079455123,-72.80683536109555,-83.04495136177145 +643,-75.59715649526056,-93.7692044133538,-75.08413486074222,-73.91720254308557,-84.96432594830503 +644,-88.26089713593397,-80.08361870945357,-69.93412691722193,-80.72359411470191,-76.47191261304106 +645,-88.73733516070075,-83.91059862711226,-69.90088538783571,-79.860873179893,-90.62138011413467 +646,-94.07820499991554,-83.38728513770494,-71.33610978581999,-80.59898905664437,-92.91377238053398 +647,-96.53070922522264,-76.77480287423883,-76.55198755934228,-74.12496725532775,-79.03785157548711 +648,-93.41998827093498,-81.92577603206438,-83.98668722389418,-85.11631856333867,-88.81604128571237 +649,-100.1160566590326,-91.63233740870767,-95.43790010000492,-88.53716216107325,-78.21437437865974 +650,-102.0604289192675,-75.59204439914313,-79.41531926789389,-99.77602737739824,-90.49597326407199 +651,-107.68163956182595,-80.6410115003056,-85.7143159154937,-77.57606834808107,-78.9502084229356 +652,-87.64600856487789,-85.92686153434843,-77.87076405264128,-85.22880928768406,-78.87865676614948 +653,-94.26986223475714,-69.42349090087353,-91.98695571431975,-86.08601753644032,-91.73202236726168 +654,-98.18661460189026,-88.4104596101009,-82.97557380077906,-83.53721072462443,-79.5173766105936 +655,-91.93308636219113,-72.5688933827675,-83.97037901741625,-76.13385456841128,-79.9535187944438 +656,-90.10251629673245,-69.98666855526353,-79.81767736723737,-81.94898430232166,-89.21298344203817 +657,-75.17524971846179,-75.45457678652947,-86.60055426752513,-78.41478787434319,-82.29126761789574 +658,-80.26724573617514,-79.88018882972916,-85.19959599672129,-84.2831996789398,-87.39845919570662 +659,-79.86387731666228,-84.60190432041304,-90.757129742048,-85.21900333918684,-77.25648023345495 +660,-72.62663303876543,-74.29427016698762,-86.6786244867613,-94.33223754379077,-90.61468777329814 +661,-90.98748087861314,-79.94066335600222,-86.12117293240351,-87.88009727738151,-79.90403032968533 +662,-78.09128090124086,-87.19508101393572,-86.11009049945345,-82.32705930439337,-80.24329850451493 +663,-87.8094264664739,-83.41310324898838,-78.99346813725191,-92.27795659628076,-81.19900324502412 +664,-80.78800222496442,-95.13534435716898,-82.22999647942707,-82.75246627645681,-83.53357200395253 +665,-86.14491600847659,-100.25887158306544,-80.78040664498076,-85.39299109402448,-77.82737646578188 +666,-84.93365578979017,-98.33504122997932,-79.80059071822237,-85.2184000223917,-76.12895696155356 +667,-88.44888252769276,-91.10014143160738,-88.91990116244786,-78.90484539373357,-74.10749034758429 +668,-82.24459486187018,-103.91947288891254,-85.94923163052225,-84.2229343507675,-74.07381552915 +669,-88.60116079470322,-100.11868679481323,-77.6907433515687,-80.4518212192687,-71.35397754485307 +670,-90.48082222681931,-101.15353647217987,-83.69099887436346,-90.81145639298492,-79.88774603705316 +671,-82.3832460888176,-100.59833759931522,-69.75979270107368,-94.27985266562646,-80.14353340642822 +672,-75.39099940074162,-94.14440082685515,-78.99766580815796,-89.20261853136361,-75.23113801811884 +673,-74.48447960938364,-97.71785000518368,-74.04557314284844,-88.74808962074252,-75.672144288632 +674,-83.62956708362611,-85.56527672448372,-78.3864425960193,-93.97420423068782,-83.30470642501653 +675,-82.7819142814232,-81.7158333879903,-86.6025713784871,-87.65151103382145,-72.73927125063558 +676,-80.77473943717385,-101.36270077431082,-93.97236810873272,-98.1926650924053,-80.23184052341189 +677,-76.56760155200111,-79.82700552231759,-97.82573162123003,-102.56325141828322,-82.8400109535053 +678,-78.21280318149888,-78.40963768447969,-71.23709083922361,-90.92585267342616,-79.48771349908773 +679,-85.24656802085555,-85.1236625241441,-79.76056102167666,-97.17609235218679,-90.56599313491236 +680,-75.62430617648413,-80.35973217325312,-78.93340547126827,-103.07634595349249,-82.93212669934536 +681,-72.51525999575878,-76.76794307213588,-83.09180404176357,-98.84987557583514,-81.25026137377213 +682,-72.89252411844494,-81.12958667551888,-81.76895774634477,-96.23653785542642,-78.0113956855968 +683,-83.47637342158905,-87.70117529922875,-77.04385956675495,-97.54801634136815,-83.43863222291019 +684,-74.02585639218123,-87.40333246549754,-82.98866517801049,-92.74551951409521,-84.44719570535688 +685,-77.30185454087771,-83.16588620472804,-76.38030052963886,-90.28426029636007,-82.42130823087977 +686,-83.359438153813,-91.68733782123988,-83.92147740627988,-92.71529921788508,-83.58664949120347 +687,-88.91001651341655,-78.6639257713836,-82.23280106780929,-96.3269915360646,-85.84361063121918 +688,-80.82804797047531,-97.42814098922378,-67.32319517159597,-80.89599227776925,-87.56768684045478 +689,-77.06772629448999,-82.00818217970412,-81.1582868893963,-89.76804069840057,-83.76759223791991 +690,-89.12584125789616,-87.18993121839671,-77.81680378095699,-85.33525855270362,-90.47524603892053 +691,-81.0984890305602,-87.67917481658024,-82.1125076968558,-79.59990323274504,-89.81089083368384 +692,-98.15700746515239,-93.99772907282627,-88.56488546596569,-88.17507101189103,-87.40881038960347 +693,-87.48770497460401,-88.19225080742928,-97.77832782234205,-88.62797242201634,-79.23913337635409 +694,-89.91480077232421,-83.99205755249653,-86.038955715413,-82.80857756077833,-80.1545122578211 +695,-90.94031125830445,-95.13845372463709,-93.33590173536813,-81.07140080465851,-83.54253025273499 +696,-82.24756313482227,-92.05442353745647,-83.21966477117807,-86.6567035682094,-79.32965956220826 +697,-89.71626103511704,-77.71094798445613,-94.94441056914803,-72.71786695080768,-85.53735209163705 +698,-95.53081807739069,-85.3411146603394,-76.86909068683636,-78.44394569549011,-89.64586184557575 +699,-89.28810516475133,-81.09247286097556,-79.14042019657629,-84.3315124111061,-77.953145235112 +700,-86.55846237912773,-73.92991953429818,-72.69821407457582,-86.72940492517276,-79.29643459012335 +701,-85.71918107572267,-79.49538564571007,-81.75954850095948,-89.90896959666166,-73.91258776203729 +702,-90.9214494518877,-67.07253618804737,-76.3216946091577,-82.2483702010711,-76.52723227604714 +703,-88.34046999816564,-65.24277547595436,-79.47742948946713,-72.96342456565675,-84.48845005013895 +704,-88.17532674289792,-66.80473371653025,-87.93366443313052,-73.79275582337453,-84.59775965542968 +705,-83.21609854105994,-86.09492734617996,-85.94272434707824,-90.34392115633288,-83.47423723324863 +706,-94.74100593820216,-86.27407727057,-89.84037780378186,-88.38321484646978,-81.65130330158917 +707,-87.38661274945265,-80.75512823609348,-79.10678888164081,-75.86969372391326,-75.87317583188155 +708,-70.96100353560314,-87.3243980331031,-70.98993842840835,-88.27398106193847,-68.10496093977106 +709,-84.52044122521914,-78.38879503441079,-77.530571499297,-90.33295179745917,-81.62761364182843 +710,-77.17349298288173,-78.08174043874105,-83.68347519630255,-82.18663826504445,-80.61129548170364 +711,-82.65222455927291,-79.3026696421432,-70.0181696107906,-90.86009518115081,-84.83457334103228 +712,-84.49522701432494,-76.98215663913811,-75.73432597727368,-77.06739014198686,-77.17380035288436 +713,-77.52997781895611,-81.96990696183224,-69.74069178294339,-73.50903635794144,-70.52048075766082 +714,-68.39290074956601,-80.62803130974234,-74.37434679809608,-91.14481062852434,-73.95210572018861 +715,-82.40119236188563,-80.67259040587031,-78.91835782429871,-76.15208823142427,-72.72601392884656 +716,-80.80147735949085,-86.55803874512127,-77.51571525400425,-82.39457459915766,-85.740434802647 +717,-89.2994201475482,-95.87524806994392,-74.09682770717056,-73.35275548432573,-70.19358968987794 +718,-86.64684287019267,-92.66027875880073,-77.76510658080295,-78.79065740999697,-76.20981157961515 +719,-86.25214871238036,-78.47514384642992,-88.47644303407594,-75.29143047576136,-71.46565073818894 +720,-83.98949179966128,-81.99424978155885,-71.811782186213,-75.88747825061607,-79.97636095905737 +721,-91.12285259452159,-77.52326061018036,-84.6703214535276,-83.72691751016536,-78.9719047843781 +722,-83.6722644251153,-79.95753713084548,-83.45981702487857,-86.93320377335077,-76.22115151578495 +723,-99.30557479714912,-78.96280345090733,-81.44375686828985,-86.63493006899759,-91.83606038914085 +724,-96.0323147575342,-70.0704506551164,-75.2258246252442,-84.81036683140239,-88.584632771755 +725,-87.84351169156598,-85.91235848649207,-82.64620006390254,-91.8960669496776,-87.52884108270325 +726,-84.02157679156042,-77.14563595089699,-80.27959214194485,-84.5794353465678,-85.56475668147868 +727,-92.15948117012171,-87.1676399483672,-71.7917898936636,-79.45848959534568,-79.76013532043393 +728,-92.00162196883298,-87.04978244039985,-80.94119861342895,-79.03607211251793,-65.57499348901199 +729,-92.61044635689709,-75.87261026163803,-68.54968439820401,-82.3296748151817,-69.02740962717799 +730,-88.96201729425776,-77.29033984169516,-83.46642772766695,-81.02269980071661,-83.06963343748889 +731,-83.6708380598683,-80.4923645658979,-73.03658616158995,-90.1238452100853,-85.11371913189626 +732,-84.83326017398673,-72.96810187460191,-72.94535735582652,-82.60451185433402,-79.13311262106751 +733,-73.67898941961758,-81.30878772152788,-64.47873939703423,-85.1091287166722,-77.89290259413147 +734,-80.30817900488506,-70.04975677245677,-67.35165049778898,-81.76383461898547,-78.14238509044652 +735,-90.62997373483388,-83.35567883242429,-76.53651360315578,-80.74498595648116,-84.53311281625189 +736,-94.04577675492443,-73.70469659597603,-72.26884865342878,-75.77169524021195,-94.91361730319912 +737,-91.53517174358343,-90.47043893057365,-73.48686408384195,-81.59760148464989,-83.5927715334795 +738,-81.42167879062463,-86.93240531778106,-69.62560367536543,-76.66658115188135,-79.33469178710108 +739,-72.00775540396624,-86.8993306981616,-68.39114213672376,-76.26808434247395,-83.9062640477879 +740,-79.5524303601941,-81.20384460084888,-71.79077800839738,-78.7911519008,-70.56923658158185 +741,-87.30266992888696,-78.22796451472658,-79.45179174673692,-79.29621359107325,-75.70222892253621 +742,-85.07557733421511,-81.27106905654622,-76.14069297871318,-85.91772212426677,-78.66431144172886 +743,-72.1055850928631,-78.90731253765117,-81.47466883795357,-87.09401085794447,-69.84491245966035 +744,-70.93758551810157,-77.30362281806185,-74.29196441133904,-86.29241204268867,-76.2186424933002 +745,-65.05298332901503,-79.91603982097381,-76.24551756185079,-78.65717252115826,-82.01204503178694 +746,-81.77803166346364,-78.30656657875484,-72.24538417523169,-78.55134200452592,-81.45851085916206 +747,-81.1587990469484,-75.41184326580532,-72.53609909224095,-97.96292903526927,-72.06795970747827 +748,-82.03642443628226,-77.10046670680224,-77.53311724586246,-91.38415511812256,-84.97840885078219 +749,-76.73911164418645,-76.19451536509773,-82.48744349434462,-82.64578819197715,-79.43014384023776 +750,-84.71142670511497,-83.2486575987884,-78.4897290874618,-97.6702756812867,-66.46286114518324 +751,-70.86559643311689,-76.58949540978054,-79.39030294348645,-97.32029169828537,-70.68642629819593 +752,-83.60814135685963,-77.04677667430383,-70.44182882658819,-83.65871496362527,-71.12133863475775 +753,-77.59283953020494,-73.43064122810134,-80.60655472977675,-84.65725263005486,-68.4691771704598 +754,-72.05388196315968,-80.01452496061721,-71.17987173451883,-79.96351242857604,-72.8945970101726 +755,-75.58303875828022,-77.94301629345732,-68.67766984221916,-81.68495933711543,-62.64478687888384 +756,-70.26704208897608,-74.78735944003903,-75.88509866617925,-83.29907667763368,-71.45248554645279 +757,-71.51144921022961,-73.05404813475148,-75.60740005711419,-85.75800629335723,-80.69602183654396 +758,-68.88101353028048,-79.84871155660815,-77.77178114994356,-86.87104433022267,-79.88530437341062 +759,-86.18234421872054,-85.37713477363782,-77.37394824698961,-85.23011771688691,-75.83624461952331 +760,-80.44051460302632,-72.52806142217335,-77.8994050578171,-77.44959757334414,-77.14983551248969 +761,-82.93102571411983,-80.19306628206967,-74.83932819124834,-90.63243786091336,-82.58582047437424 +762,-65.69483448713648,-76.14083116389806,-72.15736603368576,-85.85020574789853,-76.15760011706405 +763,-72.43136179599892,-92.95512010395687,-74.88446455687178,-75.47461623899129,-85.64959965263866 +764,-91.23081383110336,-81.15862263441484,-80.9460899756946,-85.83767270802402,-74.76644553468961 +765,-71.73672967623986,-81.5980050355376,-75.15151854255357,-86.93638872878775,-86.0568418001689 +766,-66.86209141803123,-73.4981632387648,-77.08847521095879,-77.5797745454353,-77.47355678317659 +767,-77.88332911975118,-80.39152255786699,-81.95169668482346,-82.66005188030134,-77.99855461894438 +768,-81.55302496659196,-82.9141841485805,-81.94626882614689,-78.88196993818536,-79.33382847123399 +769,-77.3751604256931,-83.27547328195674,-80.78371588961141,-72.65562679423925,-73.83744449868658 +770,-89.49551249665657,-89.15064784369636,-76.24664800832568,-73.67074171418923,-79.28737606643996 +771,-82.67277436330896,-88.96262399968803,-74.81312001460574,-81.37756733558221,-86.96042122763288 +772,-74.78592274261781,-81.3289843576523,-77.5307133728469,-78.25040825167964,-74.6965053731201 +773,-79.4145562194117,-81.3954577424826,-77.03916708146092,-80.03039858678777,-72.17762618666346 +774,-65.72180189031577,-77.72543306887749,-76.5470779025014,-80.49940338477735,-79.55803838642301 +775,-66.26169488262953,-88.65682125319158,-73.54490661477371,-84.37888010086827,-69.6203074811668 +776,-82.56406221836149,-83.94541260913242,-69.52328968494851,-91.11945430156086,-74.65507307644505 +777,-89.52833933924859,-79.35145275504068,-66.73361948768455,-86.24528705206558,-94.53517720463348 +778,-75.49286177822916,-78.88878410920923,-84.16468878441708,-82.85372581055242,-90.86113967081049 +779,-77.31253988855687,-79.86301005616023,-81.59908727845223,-78.74552089935592,-77.88263121518324 +780,-70.77838429976427,-74.8531427856509,-74.39599298728884,-80.53279223716045,-71.53743182489362 +781,-71.89549467042846,-79.22798069550957,-82.43662562001813,-81.72268116544438,-77.7529139201784 +782,-78.86044767689252,-86.56235838821776,-73.36213083552242,-72.88604250057878,-74.09868411319863 +783,-84.52209133798671,-78.90982218711729,-82.40514198221791,-87.68472196103646,-92.17449005091207 +784,-88.70045504570508,-80.44482919921687,-85.50607842701598,-77.14800279724048,-83.28742507353144 +785,-68.52809592766168,-77.86740667208646,-75.16319486102542,-79.72208682817966,-67.64258282125931 +786,-75.48682610306194,-92.61660457725695,-79.7186827869947,-79.03743950364989,-80.27542020856681 +787,-87.18820552678832,-73.22808301087721,-80.77084265613547,-77.79482122771766,-72.79926557004593 +788,-74.29166864795558,-77.94353990127861,-80.90884840452253,-71.35379488388884,-79.61423186929481 +789,-84.76843041993823,-81.81139086423502,-87.53472352754964,-72.5366939886731,-74.28383671426252 +790,-77.18476211498182,-79.52809035990518,-75.2804339330918,-75.48136528213176,-74.47703263506438 +791,-96.3458302449691,-81.9973274789273,-82.19783136854078,-78.57011009868097,-76.8380751441322 +792,-82.04144782415382,-85.58206500002791,-84.86976553949943,-68.83869765981844,-99.62352612651462 +793,-84.22386995751681,-74.66893974014455,-69.88350018977836,-73.64738243039433,-80.47293672803654 +794,-87.55521426478909,-76.90076264289105,-74.73264496363699,-72.48950821107576,-99.27611674567245 +795,-88.5423895646368,-83.74455984058525,-83.28350247748195,-80.1031152297857,-94.49028015011368 +796,-88.13127583247447,-78.51629823671469,-71.277020552937,-77.03004915591715,-88.04301611410902 +797,-85.99916510151932,-94.35816356966768,-71.56466830545854,-61.492047497690216,-82.46935079471444 +798,-97.03977565006846,-78.10123948574049,-68.02997503886247,-71.53897199623368,-89.44577301122332 +799,-91.57380572014334,-68.53275522382243,-79.34701989429047,-79.67631630048729,-82.9316103389312 +800,-74.80267632163611,-78.71188493372564,-82.06027499069026,-83.41514764340879,-88.84667965344146 +801,-73.78220505798265,-75.71497418408265,-77.25260695774301,-68.40913473049956,-79.23740966996743 +802,-92.63288764935618,-71.60453880323024,-91.03008794069333,-70.2579534906192,-93.68070699454292 +803,-88.13880071655048,-79.067953610844,-74.4545046978141,-74.32944242499353,-72.88753902542395 +804,-89.85442845498001,-74.36803734131988,-92.1094100776438,-81.2048996846879,-93.98727311752154 +805,-74.21573479785128,-81.62452241097242,-83.39226378763887,-73.37910300147551,-75.70520058099203 +806,-70.11851831875444,-76.19592329033398,-84.7191156814113,-71.90550387798041,-83.83579076368846 +807,-84.66815746879591,-87.37445896517218,-87.8384740667438,-84.48540874071246,-77.22163599141052 +808,-87.69428953800212,-83.53076475607037,-76.47721485312485,-81.26240286337209,-76.60545238889294 +809,-81.56883987954826,-80.77397751516726,-76.97099272249345,-92.7206487743177,-71.86569428719113 +810,-79.7688718384146,-88.04667746720749,-84.28990082686079,-86.67364974690727,-77.8626866714066 +811,-81.7154133192434,-94.26400959763059,-81.93373713039973,-86.12508267009206,-67.52394804036976 +812,-80.15383595545633,-90.79115216284143,-85.87851281468015,-76.6898195232644,-68.64030565129856 +813,-90.50119143091284,-91.77987268302275,-89.68846552014104,-88.98575078741959,-85.90358439067705 +814,-84.38492060933758,-86.24394658971947,-95.93606213461487,-85.20803565936326,-71.79622909251938 +815,-84.33199510286815,-85.24408526963828,-82.74271703930683,-81.0251058030903,-72.9530198228874 +816,-75.76673498175766,-76.66843071134267,-88.15840071402532,-86.60227101693211,-85.42063838803014 +817,-74.23785245336181,-90.79227632435976,-94.89874504622077,-95.67821392874495,-84.66056607472314 +818,-84.05810252976265,-73.44930896459057,-85.94555661798267,-88.37105071058042,-101.48358535178903 +819,-74.7591040806721,-74.67291458191536,-89.74166301210946,-106.42871780045651,-89.92802471019142 +820,-82.56942212135985,-78.43787072628223,-88.16109182867602,-101.79160373823467,-87.64224192692686 +821,-88.35555667121594,-88.12327832676476,-78.23918307057792,-78.79111925321556,-69.95995147742019 +822,-76.61953134327423,-76.21222625086715,-79.53367637672125,-85.60496381934664,-84.41346427111175 +823,-79.5343325710353,-70.86038725513043,-74.6027892589004,-81.20427579232961,-88.76411756389537 +824,-72.28324416488405,-72.33861687725138,-76.74693180915702,-70.81772025803978,-86.40093789018734 +825,-78.35871200387056,-71.13396019468247,-77.85837420935508,-84.8862399179771,-82.85595802443824 +826,-77.83358699881374,-81.654462124301,-65.94616688871707,-80.10252419310883,-86.9709776743993 +827,-73.28357574878082,-80.71498804508224,-64.50017038342102,-102.6319391120362,-80.8872986485285 +828,-80.14695658204838,-68.05387224765043,-73.1683965037154,-94.48804429022566,-84.03482676369242 +829,-85.7664553334937,-87.0005003270881,-74.9543093734823,-72.83755099472515,-85.89647402300474 +830,-77.7381791804172,-87.53842180008434,-79.5861916623995,-84.22058455377501,-83.60498739598358 +831,-77.02274040401379,-90.6875364462297,-80.21410253716691,-66.66132092949432,-81.04832834918454 +832,-75.44904002095558,-84.71122817373227,-89.32456592369469,-71.25059000885543,-77.11015736147684 +833,-84.5608446928465,-102.85822700779529,-82.69099564012889,-72.40967933375627,-71.96337026203607 +834,-74.47454809219153,-86.1407781576839,-83.52489519577922,-81.32608638446304,-72.56484182205116 +835,-78.96923133135752,-94.42442740539374,-71.14623461336204,-77.06683017699721,-63.57386102682097 +836,-85.81610209168116,-83.09771593597156,-88.7060757799714,-81.35288375384164,-70.24841517733432 +837,-75.4888792307138,-82.70746391910798,-76.30252678781218,-83.28413290096837,-71.94261942893826 +838,-88.08507817635234,-81.8724810169251,-86.09542083685174,-79.32322889859063,-73.76651312369273 +839,-87.96219932282253,-90.62502927027842,-79.61615697410942,-87.39548808519837,-74.36817693926442 +840,-83.56178292710032,-85.49695950050796,-74.5205402546752,-93.50907427784044,-81.86756020676415 +841,-98.32006132679452,-78.11141707132109,-83.54223340678467,-103.31448760115096,-78.08632227742343 +842,-84.05121043775517,-90.5811960452783,-85.27161499986515,-116.18865129114799,-78.03913859028394 +843,-77.75086038135244,-83.98947553538906,-86.42730116601943,-116.41839858166617,-75.7236019594868 +844,-74.36714659123477,-86.68276149517182,-84.04721870588331,-96.68373889559923,-83.88212071383977 +845,-89.85504722092018,-91.42847508800257,-74.67101616247604,-102.13367520669817,-86.95759883531778 +846,-85.23006538774187,-73.54740213987252,-80.31294579714326,-102.28896230622117,-94.99626790523409 +847,-80.02190514167586,-91.54260907294903,-80.09221885646176,-94.96514386460953,-83.94440910418837 +848,-74.97104075256043,-82.80064200314092,-71.24369583524616,-90.59231164235639,-81.27597249571744 +849,-72.64183345399012,-96.14470372600333,-66.97661064925582,-100.29505504533748,-87.58569438710924 +850,-80.77455295536414,-94.14690905258499,-66.79215494692563,-90.67609382434743,-84.64049032370272 +851,-75.44849170701194,-85.30410268572632,-92.04658208296983,-93.47329109933075,-73.63486372917767 +852,-67.14037169391658,-79.29067804218975,-71.36752342271193,-94.49710195914196,-64.50785643006246 +853,-76.76235014072438,-79.5782967583654,-79.52074575451186,-90.42091551112883,-68.88214372787051 +854,-77.73828683180898,-94.1421146562529,-69.67563891041233,-88.53590850308814,-68.62483129247066 +855,-76.42750015780436,-73.6518837369222,-70.42956918641491,-80.98920982319937,-82.89465125337779 +856,-71.81986523426231,-91.02886371547484,-73.6212764799365,-83.6278934360378,-79.72297122183043 +857,-72.10262288254957,-85.84491895827504,-81.81649318312031,-84.74970080517755,-78.82179322285292 +858,-83.61293915404505,-81.00949810622,-79.63404070805727,-68.43022046779288,-86.00760030533353 +859,-95.69133800468832,-75.84646708735326,-75.0780360003023,-69.48248123721972,-72.87492672561372 +860,-75.04331542566308,-85.34467076451463,-69.89736054791372,-76.98277241353304,-84.75100017240406 +861,-84.53126081011463,-81.36409261801064,-79.58663244871047,-71.99984286299944,-68.04841673357907 +862,-82.73815220302154,-69.77062154716421,-72.33103395474157,-73.72264396246997,-93.2059107134833 +863,-78.45497572862261,-75.94608394692077,-90.92472268674946,-62.63815770004159,-80.165929180378 +864,-85.62872644250074,-78.65662215049686,-90.06152673184727,-73.22607107599642,-89.39177268434206 +865,-74.452878148287,-79.42653222602792,-68.77306176710417,-82.93011896884337,-77.38708142564008 +866,-75.98922824701802,-77.7551210753794,-76.50545950838396,-73.4357868761135,-79.94163371736849 +867,-70.97971341773247,-79.39591789743963,-78.77524841200734,-71.10695634127599,-80.58331573296647 +868,-61.778913847785454,-83.87032181942072,-63.91137576569606,-75.20415112844026,-88.44515897687177 +869,-78.37703074653133,-76.78980438433915,-75.93773921845883,-74.31696232369701,-87.2642530999614 +870,-79.79818375914297,-92.72160586342133,-77.81818059040552,-75.23100772752704,-70.58122624565405 +871,-83.46578800540648,-94.55044009883585,-83.86039544180043,-82.41574132567303,-72.51792957871724 +872,-80.74575801012583,-85.23919982694291,-83.1757545300587,-72.62601399253926,-79.62378406544033 +873,-79.1562186539424,-99.46959741195657,-74.50666354867963,-72.24235661580599,-82.40594218521719 +874,-77.65537206100737,-86.11261671812174,-76.35316322506746,-75.76821847787755,-76.38902357751726 +875,-78.95429278298857,-86.31140548858244,-69.28154963530643,-76.15909925334064,-76.87070846767173 +876,-71.83323999524892,-89.99853114296266,-72.96337132986837,-63.55695889988029,-89.17257748506499 +877,-80.34419653678944,-95.69617346712907,-69.10896564474335,-85.46601597707232,-83.55905185213722 +878,-64.26719757534526,-87.18639625925195,-80.85853871777874,-85.78758842455558,-89.38799414459402 +879,-65.26549037502163,-78.55011931141784,-71.16745049534424,-93.04079973540912,-95.84412594818939 +880,-71.982994423108,-89.09166188012472,-70.71716516567665,-82.9334725716332,-91.58986294408395 +881,-73.28594273306305,-82.19890246749736,-77.36834813209316,-79.91203738867522,-84.53621810357542 +882,-63.633513851774175,-82.6076736272936,-77.15018576819251,-86.6271162417714,-79.5429392912703 +883,-83.12008160544787,-83.42249344413453,-76.57954759068515,-86.03985254335402,-76.89364193172744 +884,-66.5416055035174,-75.07247888392659,-73.09621013120632,-96.11178807970447,-66.40773422149876 +885,-65.40838497037801,-92.92116592434022,-85.79518446211142,-74.27697660981175,-74.2435016123419 +886,-79.13933404907095,-68.64873622784414,-73.63162510090017,-84.89402140566125,-81.21795527968362 +887,-74.9366596545979,-77.72056836426303,-80.54723891186596,-78.60809063459622,-73.42503470081509 +888,-71.67809217893421,-83.30532844502845,-86.47487695816307,-73.53672088701269,-68.56715715370512 +889,-82.87632435691316,-84.47307256651938,-75.01324347194175,-77.53416524838255,-80.58430194228767 +890,-79.14250310834034,-80.37749608898442,-86.7310017140694,-69.47997006362688,-72.17434060863015 +891,-82.63988122550614,-67.98277003446084,-79.6050271286833,-66.91096530005915,-85.6192129207848 +892,-85.3656281652168,-70.13134854563455,-70.3050662920558,-73.13851655854539,-78.00199672359776 +893,-81.54877704331513,-78.17850124968416,-71.02593020888884,-66.08744889337085,-76.94182767928329 +894,-73.38070233921337,-72.69812130551355,-78.69705714648936,-77.08431574852067,-81.69671581659476 +895,-83.43232908406,-75.00208714504282,-77.466767328551,-71.41936362153771,-81.45420624782308 +896,-71.3995850535397,-71.21235221255246,-83.9795537326442,-76.51418847993853,-81.7012982145992 +897,-79.90160045594449,-87.93777308402741,-71.98389143304416,-77.44678468433023,-96.5029651935546 +898,-63.754821195976895,-78.71372735666313,-74.89288354961262,-81.66274242805501,-72.22779058389398 +899,-64.27750603313274,-85.50559791528777,-78.77804478827716,-75.20652375644305,-74.0774287113799 +900,-75.15945756768369,-88.66891309579245,-82.53097641410606,-80.63524672386433,-90.85807981032605 +901,-84.40505872937837,-89.74247138405693,-87.59160956301577,-85.41070000625281,-77.00471878817916 +902,-83.96923801402578,-85.52089617201155,-72.11104792022373,-80.64134084149806,-95.39840800071948 +903,-70.08531681384346,-100.73719916623496,-72.90003624366645,-82.01159023671478,-86.7182837444759 +904,-88.98990120160325,-78.41974484796894,-79.9117997944828,-81.52775182731011,-77.76407223585198 +905,-75.16988786777985,-76.24989458428485,-69.30122994626065,-75.29501737420256,-73.99989992219936 +906,-76.20070745032456,-76.18040862972359,-85.5499624516268,-76.22547733263816,-72.33988221662828 +907,-73.88331876811999,-76.70068666586431,-71.41105927872592,-68.75463387311265,-87.44574429445555 +908,-79.44155615448331,-74.34462105432186,-79.02928253483861,-76.75078760235215,-80.71356067644408 +909,-75.43989654903406,-76.36912913081066,-66.93310702305375,-74.33427152737319,-76.16562659133623 +910,-79.27983417478082,-68.02485838184444,-74.53167545140757,-73.02518402136111,-81.81638076302025 +911,-73.17914093209308,-76.00649007381023,-69.1272114559599,-66.52466493406072,-78.950107626536 +912,-75.3640642123712,-83.89062296140568,-66.93105801795157,-71.18849696090025,-65.85896871956876 +913,-78.88714280776526,-77.5285654973246,-70.29819932743752,-79.02091407954067,-65.8902557753494 +914,-73.75500935059688,-89.14813204918286,-85.1815733728473,-78.38525544148547,-65.92432704845652 +915,-75.1436111617827,-80.35951782085036,-73.52205142904353,-77.94225587080871,-73.94868318640177 +916,-66.80154115522153,-73.40198697901252,-87.57450150548678,-81.75914473442047,-87.27049116134644 +917,-74.49902643610513,-99.22496269893412,-81.55431199606198,-78.99979345415795,-86.61101074777321 +918,-69.9788520054703,-80.25188983247178,-70.09318667414978,-72.7862529997312,-80.74379246985977 +919,-91.46591449519065,-89.96561785453393,-73.25771575692875,-95.95659695970372,-68.22721493167693 +920,-81.39320334939684,-82.04334261794034,-75.9562860220615,-85.63042412894764,-87.52047524000713 +921,-75.28560558998413,-85.11130014060487,-81.23541947493536,-80.24782256911799,-94.5522835658836 +922,-97.50847375691525,-74.27735552315085,-83.40088067953755,-103.27144249699782,-75.62043041367963 +923,-72.39941319518468,-73.38250507745033,-72.98797767127914,-82.85884696286152,-78.08550914138745 +924,-83.44945525586917,-80.84001528128583,-83.44009241623885,-84.55530826591267,-82.58002622224468 +925,-72.54405820178786,-77.698889407157,-72.2955670086976,-97.75535552260948,-76.0345873977242 +926,-61.57749922260102,-71.6109456064546,-70.09475541664135,-113.44694542311818,-65.73914175770257 +927,-74.37845570743968,-80.04723163229274,-80.18388837873734,-88.67910707412317,-72.58460189961498 +928,-66.58018586321303,-63.76494603359449,-67.77991251052465,-103.57589160020093,-68.79902306413126 +929,-78.58049238133506,-78.72931778183722,-75.962485545676,-108.02693757754888,-68.8493268147475 +930,-76.85201701206384,-87.72228331792556,-77.1250918916979,-92.80917557258492,-71.08700162469735 +931,-89.12060133509155,-71.63411810686601,-75.74535608232362,-94.10399023284859,-67.49301710511126 +932,-95.76652816311537,-61.83864981068739,-68.71338312995675,-93.94284877506885,-75.61918670385573 +933,-89.01895844091224,-64.9838168557253,-79.22017858667954,-95.8730840101442,-79.92898401981384 +934,-80.0682874873865,-71.67070419932288,-90.96448922266354,-87.07578827983593,-67.99336791807926 +935,-77.13418046661131,-75.76663232895142,-70.56306289828497,-88.43281858624697,-74.18395924188701 +936,-86.02724601973647,-90.50663427349403,-72.26211484912369,-87.60880137581714,-82.30828750782074 +937,-86.56553145473829,-73.92816742514157,-79.51890156925778,-86.5126273225163,-84.44310362228819 +938,-80.99352300638674,-97.12023031880909,-76.18134264119985,-76.1220154972668,-80.27455948057779 +939,-97.78372590137293,-85.57024795230232,-63.28465064339242,-81.42003284441495,-79.36733309765324 +940,-78.63675719600165,-81.84916280455367,-74.30386801004306,-75.21131150540343,-74.46524787523589 +941,-86.5919685999416,-78.99560778638569,-81.47014723218972,-76.01409777197601,-81.1680061647524 +942,-80.59391169085583,-83.19439315930308,-85.42691659134523,-79.59266051312454,-73.13150779875991 +943,-77.95664619693609,-86.75860063681927,-67.42285283753591,-88.507389690354,-76.40143311654117 +944,-84.55164636793607,-77.65865890621797,-76.55879402004653,-92.20014864491871,-86.28773035106515 +945,-77.1959114512349,-81.11536383814386,-79.35425574908659,-90.51360050326072,-85.52365880954865 +946,-71.93845664327193,-69.21924716200324,-65.32721361855683,-86.06733443108224,-87.08710715219556 +947,-65.8969138990656,-76.7045682925479,-66.67710656213646,-92.91939024851811,-76.6857124146147 +948,-83.74731300187047,-80.80929549802686,-83.96994841787303,-100.64943263975537,-81.22325721654408 +949,-81.3422142138763,-76.78733651206359,-80.712358254209,-94.50225896375338,-83.50981411711423 +950,-63.94806398288831,-79.3159092019465,-83.6724743610778,-89.83344760534382,-74.71418494507311 +951,-68.01658538664714,-70.04277611091784,-75.13531060172859,-89.41887817143055,-76.9683905487967 +952,-87.33728356412966,-78.53137485790786,-80.23070572430936,-83.23439105666358,-76.47193893329303 +953,-79.56210976970901,-94.59304493233047,-76.60469530766579,-84.82002492443635,-71.35331387531214 +954,-90.06790053272428,-86.75082693624131,-71.16410112857498,-98.3628158428977,-80.15258308390813 +955,-84.22342158059303,-80.79375457433858,-78.9427413768073,-93.83725296732437,-67.67713717630515 +956,-78.4046426250779,-78.24259881207061,-73.97111544434895,-85.30553834242698,-77.67116661463888 +957,-83.06904300663352,-75.54752140172833,-70.30158660548966,-88.57783140373603,-90.8526141643797 +958,-89.88900782056261,-76.44173975204563,-81.17919741957961,-90.03119275179179,-72.46439720038006 +959,-84.27076730175142,-83.38787734167607,-82.53372988572798,-86.13393006162576,-77.77528192260903 +960,-82.24799607109964,-70.65694062085228,-79.47950861747805,-88.32538066765744,-70.97988874274665 +961,-73.54979150226247,-66.65068884619147,-72.5464988393496,-88.24380503026853,-73.26200288219181 +962,-89.77251492494361,-71.04467448545356,-81.27387450397269,-85.11848899994949,-77.9453838708622 +963,-92.69309493086615,-69.78847520186964,-75.33616844817585,-76.50966801536528,-83.76673750776638 +964,-81.51762440342326,-85.82288349037216,-82.89707718147335,-92.23721302145405,-81.00511154215742 +965,-73.26074314053044,-72.85516430202023,-72.48605771636213,-78.50503978668087,-67.28689406081489 +966,-86.12761180929641,-67.27781227882211,-75.79557428902108,-87.46048652892397,-82.0557049333527 +967,-80.50178904181492,-78.22080373130109,-78.73118270285372,-74.47180899658493,-77.17077641596669 +968,-80.72399132125906,-75.05823283638749,-82.45543345715,-71.20989450440366,-73.47144469001567 +969,-84.17380699462456,-71.90021126364422,-75.95039185448319,-83.43334964072653,-83.60767376032429 +970,-76.01192608847089,-68.64609641954853,-73.98441743385825,-78.82032579808777,-73.53229076314337 +971,-80.6696360762641,-86.50514875536184,-79.98192247391782,-84.2084644770808,-67.67456884946756 +972,-72.60719267447749,-76.0554408793782,-79.02963750595892,-82.41316906017697,-83.85287076810694 +973,-78.76703547173894,-75.48236111242787,-81.50590247337362,-76.07271061883625,-67.49567302745082 +974,-74.59303164519459,-76.49297544607259,-82.26982530314051,-77.16754788037449,-93.70494247179977 +975,-80.92266761742066,-87.31615370170411,-91.61506513028168,-75.32537328934436,-69.24891821995888 +976,-91.85361627369946,-79.63054098154979,-88.95179908938945,-83.05384683743655,-80.07567762695591 +977,-79.68540887859876,-79.28928968586307,-90.71064874717825,-71.46929268618972,-73.17211738220426 +978,-78.49070331461441,-79.56145996673258,-77.08818495526079,-74.8023532741847,-71.41140321046291 +979,-89.80825588207372,-92.3118719683319,-90.10982964474874,-66.07848480524481,-82.05540139425203 +980,-86.84797626483831,-86.40554894814136,-89.93286361744332,-79.29980826603835,-73.67629381891692 +981,-96.64420819222607,-83.9998726775632,-76.09664446808753,-85.60417157665928,-75.54535383737318 +982,-90.04570894355462,-86.08609136711691,-77.18924508947762,-78.79905515685397,-80.24551298850035 +983,-80.34203246079339,-83.65142349036134,-69.8757828655989,-75.6982153737422,-74.07759443003901 +984,-76.12728010139853,-85.35657030976995,-77.14398560081135,-68.79040439104968,-79.94267752191104 +985,-75.65352251934516,-74.53759579047858,-75.8168374124644,-77.81404009339725,-75.09391139799256 +986,-81.85626579860893,-85.30508712238988,-78.08618205608518,-69.30819996412926,-68.52687038804025 +987,-77.75152648534136,-75.02857276656043,-79.68750627657944,-75.50785086394426,-70.70907083982861 +988,-89.54358380418843,-80.03726294928708,-66.85330070199963,-62.66452760321796,-71.14908252571773 +989,-91.1306912008345,-67.12128551302943,-69.35608128267522,-75.94794187016696,-78.8406249699701 +990,-72.56966521286589,-69.6398707639794,-75.15572260719067,-81.68549577530788,-70.13308202794803 +991,-83.93726581353093,-68.06309637405528,-63.09898091942073,-77.67143611755847,-68.06184935996545 +992,-80.0186301612576,-74.28884080200007,-77.84227129991777,-74.4617209901005,-69.66717595490026 +993,-81.78933075696773,-75.61324789978099,-77.39728565667443,-78.00285902194477,-86.44826113163919 +994,-75.76159175492842,-73.00631093471617,-71.64964317048145,-68.0854871369392,-87.13211076493724 +995,-72.86360701171782,-77.0780938996144,-82.64290598415938,-82.69552743305483,-69.87560962675894 +996,-80.46339016540962,-85.55947532308015,-73.14164238904833,-82.64493298163534,-78.17017782542732 +997,-82.49098607354856,-76.8177211342449,-72.5728650301651,-87.2872016645257,-72.1747594691084 +998,-68.63394250386526,-64.69249964775696,-91.50209596146252,-73.3812387277879,-72.82441299127359 +999,-76.93452145054107,-88.57886824007444,-81.43438474389967,-83.73915607205612,-76.88172127518332 +1000,-74.51474478069248,-73.4182026274634,-75.33118073327603,-80.85927814453414,-79.48608370121242 +1001,-77.22084067904039,-85.69255407916205,-91.52474644829775,-87.04209237637232,-74.71119513337621 +1002,-82.79274315121839,-70.21131498470076,-79.66434537516405,-80.56158628386285,-82.20533292375012 +1003,-76.02400151510494,-71.70036690760169,-78.98511191031378,-88.63195415669851,-75.88441103276901 +1004,-82.10965997038372,-74.37367601624229,-78.89488197050287,-79.54980974169416,-76.52144251772476 +1005,-76.26790468127973,-90.49769483466206,-73.58335676227081,-76.49470066543418,-78.69734795736842 +1006,-71.6434426042573,-70.47224681938941,-67.80976586358815,-74.45906056446944,-84.74580514385572 +1007,-83.53275411248293,-76.69873527654666,-74.24342417436235,-75.71374341638968,-78.88929649568986 +1008,-74.33501355651144,-69.95888273666463,-75.50311071820786,-78.78492181461294,-85.5026336462686 +1009,-70.28090259929333,-67.46123175710521,-96.33629654623766,-68.75224334489559,-75.9209705432419 +1010,-83.39411674619149,-78.31892890125268,-79.51645132298754,-71.4172496899359,-77.58643323176777 +1011,-73.20270722360983,-71.86492004892885,-66.24526929899743,-87.0326462952426,-91.39300371829638 +1012,-66.88027838101131,-66.40207036522966,-70.36958657590223,-71.410806403876,-78.92207597523249 +1013,-86.77304657078352,-80.45619137884792,-79.8690641395324,-76.65964600017297,-90.28874518295673 +1014,-72.41247489042026,-78.64277524093136,-70.80148278752867,-86.36696331078974,-79.44858595354815 +1015,-80.78273265114169,-87.39336551046654,-80.31250808985664,-82.06648882709729,-82.3404805677921 +1016,-69.72447958828211,-79.67839746793264,-72.74270493764901,-68.66008654792431,-95.10056068740049 +1017,-93.5310254028244,-73.08852922608418,-84.35027788512555,-87.6881142069886,-74.86667917086912 +1018,-74.30468937313354,-80.39714862549951,-72.25831623805931,-75.40108258841455,-77.51522603528738 +1019,-81.86055832789543,-77.49061088481658,-76.97030673448205,-82.26229456105203,-74.14731185011999 +1020,-76.99177494803209,-79.72108883131263,-78.1275128001401,-70.75587446842886,-78.89211801778579 +1021,-82.56514272456894,-70.84550367144779,-76.01369475787338,-77.2483476221561,-65.83013822717027 +1022,-80.77140597735823,-82.73551560539752,-81.3427765311434,-71.21506407863114,-72.28849773206512 +1023,-77.04891292998508,-61.37727673719001,-82.09175963514315,-71.29184287430898,-68.97486790479097 +1024,-76.86459747332796,-81.66226595086664,-78.4614459371774,-65.14191936332992,-73.66235903995717 +1025,-66.81296029994516,-79.40369298439853,-79.67642844160339,-71.85520558309125,-71.6183794446551 +1026,-70.18406745417933,-79.4252734367787,-77.79566109116693,-75.75630098366645,-76.94478344426535 +1027,-76.55035111161632,-91.99407971356352,-83.36605109470335,-91.58728045364373,-69.67581087611407 +1028,-80.77519673011469,-70.94711813072384,-79.31259349918702,-78.08959823677039,-76.30143274190762 +1029,-86.34090208452147,-84.02969926094754,-80.388538977785,-74.14115884289343,-83.82232438815198 +1030,-73.25428570005161,-71.38539829305917,-70.12107022294748,-78.74626201590276,-75.17435047782227 +1031,-69.67371529034146,-76.819722913939,-73.26650843655564,-83.1773642617046,-72.87423749158229 +1032,-82.0150968788476,-94.77915416186411,-77.10227191577555,-75.87601106539543,-84.3800933218083 +1033,-77.13638952160443,-78.40100401856638,-79.03089550845439,-73.05233429359888,-71.79412515911923 +1034,-76.88028311440998,-74.99304949098972,-78.51510750649129,-75.96128048678399,-77.42448425680797 +1035,-80.56310586777236,-82.46716208565735,-74.27329038745172,-83.98034558370131,-71.72699919838125 +1036,-74.55364110302762,-82.36126365739521,-76.9929310159073,-77.09048775266767,-81.89037884559296 +1037,-80.19871837868952,-74.3390026474029,-84.43195980510593,-77.80363298824012,-80.30938008859766 +1038,-66.01568734431724,-71.11906093560573,-70.10209314471794,-73.1596276997784,-84.7193764692352 +1039,-73.19157582475253,-83.48072882541383,-86.83228573088863,-83.61551683599114,-82.81729683786119 +1040,-68.60958837767375,-82.00380724470743,-68.3098223721177,-77.88836336938597,-71.94779769061223 +1041,-66.90946547714533,-85.13682512617434,-75.66760406630026,-74.37799417239265,-69.38572356269012 +1042,-66.39340466988604,-71.71657089848627,-92.15518152014148,-69.16844718445118,-66.73796866835669 +1043,-76.03888777093998,-86.59535833352227,-70.56091391275065,-78.13840846933897,-81.96755000714678 +1044,-75.23368172522731,-71.05463681573103,-74.05868817399012,-72.96436846490931,-81.5549501730066 +1045,-71.27013186941323,-76.04113383501983,-86.98994313739658,-82.18177604731848,-76.45413338728507 +1046,-82.47555150333561,-66.04049081539561,-75.48262340981171,-61.03011076461453,-73.90576947521852 +1047,-79.5929013964073,-67.22681224696342,-73.00895049879833,-75.29377349264152,-74.56566074596486 +1048,-86.02416129001514,-76.64473902686518,-73.72438111571586,-77.20847930449771,-74.45541299544234 +1049,-76.4497976024615,-70.46588195399605,-76.97310254125142,-79.62810953077474,-92.57955581755313 +1050,-88.11289550865135,-74.34552357471321,-66.8630907197575,-93.75926216268212,-74.55379666127313 +1051,-74.90725769471116,-71.37872255552135,-73.62493671433201,-81.96430818538289,-78.50575662546812 +1052,-75.31136970311583,-68.13129608438481,-76.5402802296363,-73.62611702845979,-73.67631554308582 +1053,-75.26976501754014,-84.8208518733253,-67.31916078283918,-78.42415432263388,-64.66073740524295 +1054,-67.80333347041693,-69.8727066487723,-72.71763563668104,-94.89358227931164,-78.45781280410701 +1055,-74.94205299757249,-73.09658346067307,-69.0846237781812,-75.41026962259042,-68.49872314126539 +1056,-81.2611354294185,-85.69581589973716,-72.04248580974604,-68.80557587703284,-85.59942741666934 +1057,-68.4094142131545,-72.33326439119949,-68.06944659591292,-89.67168299595077,-72.38891189518071 +1058,-76.54473961595097,-75.3786408448165,-76.88313111962373,-84.39038877474407,-87.75950194395082 +1059,-79.0672507259496,-70.42427116667167,-72.66767045709126,-87.21384547421246,-75.79038999896903 +1060,-82.67663514401367,-76.8008579748544,-73.39794223023691,-92.29805006245348,-95.73887570681048 +1061,-80.2334718185323,-84.11649393700867,-62.4141857630942,-92.56165940599335,-81.65501283645423 +1062,-78.91141191880756,-75.20789957472492,-71.67986314688685,-86.92167354858398,-81.59237270201666 +1063,-89.15601890217548,-77.37153658967623,-72.83535832124376,-71.46053982959273,-79.20070315678083 +1064,-83.72517280944552,-70.61810968684736,-68.53567234478278,-83.55738161358452,-76.24960013263778 +1065,-65.75282370477824,-61.02268080823697,-62.12388398919914,-71.96378100419689,-89.58980024718294 +1066,-75.99627465970917,-71.31882907809984,-63.38832949394388,-69.79059872381363,-70.34688342717891 +1067,-65.83148391407657,-63.8567253427364,-77.96723049028307,-70.43651298746516,-73.45175213283667 +1068,-86.18062866823995,-79.0955162662967,-74.96445001594728,-70.83496027764441,-73.86538496339176 +1069,-83.6049208528692,-73.22891017788679,-68.77854410576916,-72.72010278185641,-80.08073658162024 +1070,-88.56289861391798,-79.87282165011877,-74.47462184172207,-72.15250163289404,-77.77437004259926 +1071,-76.45190195821588,-75.94326517375352,-76.36773072258123,-65.85588980101124,-74.21188594001669 +1072,-81.79593038329324,-70.82815508121887,-86.5085665613605,-84.41437413430127,-82.49905438062164 +1073,-85.24988621638286,-75.80775655349312,-81.50489903879519,-89.37421564292845,-78.17070019035773 +1074,-78.87867447443843,-85.72349173965316,-66.54051046761889,-67.09167506000038,-79.14338587260208 +1075,-74.45418936035405,-74.76394756756734,-84.71905849331085,-71.33364155721792,-85.68725277141858 +1076,-79.03131080158676,-73.38823556489668,-70.35903247193365,-72.85392183644039,-84.0240576385211 +1077,-71.30402949933485,-70.15946752895735,-72.27902903214097,-93.10181320442679,-90.92501513998411 +1078,-70.14330273505104,-75.9413732295105,-76.6662447359298,-92.47183367189365,-92.07681428554899 +1079,-71.36183855403974,-74.78062724362547,-86.40478319483674,-86.34135424315483,-87.62097803204811 +1080,-74.40599582556231,-77.89986468813755,-65.3498388994116,-90.9569406457438,-98.13975303747058 +1081,-80.08005367414087,-84.76002700880021,-79.08198920628216,-89.88886146565885,-100.5960604467704 +1082,-72.91724563973825,-73.08604442680003,-75.05611952741906,-82.3604290506433,-93.43865744163908 +1083,-74.57693254372363,-95.94798261792832,-77.14216714888619,-83.24401644054379,-85.6706706527265 +1084,-63.773808921380365,-80.50134360660905,-81.67769113812913,-85.6086360888599,-75.18591796570658 +1085,-74.22962226224679,-80.38357838636335,-66.24061232805654,-87.60610029239558,-84.78196973762692 +1086,-76.22780037074882,-78.16470120283573,-65.23700896303828,-83.2931490046,-83.54517999205352 +1087,-89.6024620687483,-67.54120142481823,-75.50507569525132,-83.2381278554905,-83.3730146765489 +1088,-70.12184143442444,-92.69004895104179,-69.34454637262961,-68.73043030724325,-79.27168216163369 +1089,-69.95123284660451,-74.77216821385723,-75.84168227772282,-71.71398164215138,-79.74764610443061 +1090,-77.50798680272166,-79.61630848587124,-77.99657931544195,-79.73740503074171,-85.55752935618806 +1091,-85.03819620821858,-80.67215782420936,-74.13807369676978,-69.99458353238356,-66.20482458018054 +1092,-83.76862121533847,-73.51945218528412,-76.13830054863931,-75.13021801339582,-83.97690049068285 +1093,-76.27787010014681,-66.99399921166949,-71.53218684738576,-81.70801422632785,-92.09691861754163 +1094,-65.56234200621661,-75.28358774870608,-74.41888762482732,-73.63918039718848,-84.59003247720263 +1095,-75.0264045635086,-70.71840498693497,-67.7970954327475,-71.15548692032907,-72.1414719939202 +1096,-76.45087966112065,-79.55191093922787,-84.02847781355803,-73.54174454510209,-86.02112969884404 +1097,-82.34672383613128,-81.74084137714486,-67.69816580462891,-80.62052710354318,-73.29164377813855 +1098,-73.71484685205377,-76.6591250887894,-72.34323003915915,-74.00773898437079,-80.74412103681915 +1099,-88.41849494428008,-71.6664162066235,-80.00493686239346,-70.86286663702356,-81.75891297535692 +1100,-85.3873807696305,-75.60581813839411,-86.79734420843573,-70.85256234067053,-71.8352368306505 +1101,-87.60438088477945,-86.72580982717815,-83.06273509081215,-69.95888614780978,-83.8464555879452 +1102,-80.60952832635816,-77.30185019102939,-79.84957005162404,-83.39951229452582,-82.63359702690568 +1103,-75.53022406435137,-82.21270733921837,-87.09582409857569,-76.34251829291564,-69.07587181506057 +1104,-80.62183924890124,-80.61111611466274,-79.95014832095927,-75.27677628923813,-85.66685166679999 +1105,-76.7132607983901,-82.45601947097535,-80.12594784781615,-87.15771565389704,-71.4493225882279 +1106,-80.92528917859494,-80.65076830376974,-89.47787710168276,-81.99737505539296,-74.61818850387625 +1107,-74.8864523375674,-74.54961308136049,-84.24971339884573,-79.09153492702741,-81.35372676656384 +1108,-66.60758624627992,-83.82245408799486,-71.35276464907575,-78.26349822335297,-69.71163341969549 +1109,-80.08197033096788,-82.63046430820097,-72.85590414563775,-75.53213983455117,-77.27025899794397 +1110,-87.34578619568522,-82.58533416056054,-74.84820442807589,-67.31188518935801,-78.07515571963764 +1111,-87.05090047464574,-75.09552770892307,-77.32046309537296,-68.01493603176691,-70.03758401452171 +1112,-80.17043353175592,-81.87953903049149,-81.67091117457912,-79.59374247746887,-80.9692570494145 +1113,-95.16820344076875,-78.6860809341057,-78.80826459842893,-79.57507698363212,-72.3893269818759 +1114,-79.58974738801687,-77.43097625833268,-69.80095844690172,-74.0637724747248,-71.30287051763969 +1115,-91.33511038443226,-69.43853893012962,-71.46373442373525,-71.17612346391898,-79.94046058319465 +1116,-86.18188316305654,-73.18892585788777,-75.04572048023384,-73.5498869632758,-79.44085741041027 +1117,-81.2700691366226,-75.26107133679241,-73.22502962345406,-71.93973860783804,-82.06465834048484 +1118,-73.57716561251313,-75.39196696332074,-73.18427425159945,-74.69827645237673,-82.17557584958836 +1119,-78.65297862679576,-93.30680630176722,-78.80829888040691,-79.29138041278199,-73.68798964658924 +1120,-72.25027011768314,-82.32489197519894,-79.33489643651636,-68.62235101003864,-74.25851543227942 +1121,-84.75509739746684,-78.13384879868086,-75.46096180502468,-79.32892991280553,-81.64752649911362 +1122,-83.06160226226504,-86.79674506500822,-87.24313497322933,-82.63540563505826,-75.54929501712536 +1123,-74.90603397564887,-70.38823996728895,-78.37948446606678,-77.17381638574605,-84.53178356690215 +1124,-84.26718358830877,-75.08655172533713,-70.3769406921902,-74.38835988949964,-71.68204278757948 +1125,-82.29456100804208,-79.00842647356981,-90.92188090425047,-75.36796841416114,-83.33013683060479 +1126,-78.4300029649888,-77.58611347663299,-76.20035074636438,-76.95826085156604,-92.28299040864755 +1127,-85.83186195157398,-73.17548398823874,-73.77116882386676,-70.53991012804299,-82.23712495202273 +1128,-94.2462822612596,-77.54996325235555,-84.77490304398226,-75.23443686111,-72.01582198254523 +1129,-87.60060809516439,-83.05541759973771,-71.83648008162312,-82.18401783085665,-78.48577232656675 +1130,-81.54812788220178,-71.79998802749914,-72.02084969980815,-77.86198910460558,-83.44261860952014 +1131,-95.42029381406878,-74.17349985901232,-73.1732020181148,-81.16567097865133,-80.34264404995369 +1132,-87.74335587566104,-82.34986298778904,-81.59013528840188,-72.83342660883051,-70.96748690776666 +1133,-82.83074732320947,-75.73860864730007,-73.15902302379142,-90.16839136629197,-81.59502482428296 +1134,-76.87170287181839,-80.10125166684324,-82.30072092573644,-73.19128463056954,-81.42737970536852 +1135,-84.251685808545,-71.04395786893807,-74.40962154582353,-81.19635254593312,-83.3173997299762 +1136,-84.9592967411002,-79.47296769296767,-60.139676567945486,-73.67881930541891,-94.31031855123791 +1137,-83.4419091363786,-88.98502197737712,-81.08011677562173,-67.54112221409403,-72.86384007042862 +1138,-77.8462402624221,-81.56613018577262,-68.34155742751523,-73.6370445030136,-74.02874491456345 +1139,-72.50380148663557,-72.80111901391521,-71.03558644026974,-78.40807177995543,-81.68844545091335 +1140,-81.46558043575021,-65.56174330886834,-79.60290651048187,-71.1094689160813,-83.80803913097542 +1141,-73.5564124340883,-77.24084010372964,-80.41463875573649,-76.51808654140413,-88.49274815746085 +1142,-90.18580278393311,-70.32427447864114,-81.59149292270959,-70.54109709794957,-79.16486998961565 +1143,-60.07244801763602,-70.67449372941063,-81.10693605295569,-86.37943060446469,-74.92229916249622 +1144,-79.2379522564096,-66.41393329919121,-85.57854548504798,-80.31108623313004,-69.45534268485767 +1145,-69.67202028691531,-64.77059269386629,-83.12425020499687,-69.01018897926693,-75.30046649038339 +1146,-72.66403658405395,-75.6734896012402,-77.35120420594394,-85.07511671428247,-65.75723191878167 +1147,-73.58150113434341,-72.89878347047215,-78.26712106830273,-70.35371606408624,-70.50221521382471 +1148,-76.69659706913477,-69.2899711859564,-84.84963039861756,-66.25790582010355,-65.00399022372892 +1149,-69.19068581765679,-83.39982588150849,-77.75376076704838,-70.44532779115674,-81.45044234266696 +1150,-74.69351352214076,-81.60465462022381,-86.55192165241706,-75.94678358054497,-69.32408159170055 +1151,-70.62796999590473,-93.31752316093214,-82.53060080744244,-71.85617036615103,-77.20278789798463 +1152,-66.37390504482308,-78.52749078210643,-97.86579818912942,-75.87178978906296,-81.139398386556 +1153,-72.03083230875158,-75.06522864079355,-81.84233138932629,-81.95424851690065,-65.98465764467913 +1154,-74.48983014016719,-74.86861789765524,-76.60327104800584,-81.23459390606732,-74.47253679430098 +1155,-80.1249161291521,-87.52702506814842,-93.00188554529366,-73.06221211846761,-77.16075168799595 +1156,-76.1330482184931,-76.87934559025757,-92.0266268789017,-80.51570488685759,-71.88469072130489 +1157,-74.16341379378339,-74.00298795970693,-76.64481315703509,-69.97596442640199,-79.94397919693078 +1158,-66.82741980481644,-75.60828889869623,-77.76608084359505,-76.13354725681477,-80.12851715490629 +1159,-75.20308872997832,-70.10401023129059,-82.51475360706479,-75.15456709076607,-70.47780631704073 +1160,-65.5977600150714,-76.70639617401153,-83.26975899537486,-88.0301132275978,-72.5471813298768 +1161,-77.0992152861747,-73.6553635281939,-73.69942064349148,-73.13556827392046,-78.45266213136551 +1162,-72.72150330183062,-64.62369566622209,-82.97557958723468,-73.55064490769136,-78.19360270262726 +1163,-86.54741379925328,-72.8045083039614,-76.27996552749534,-85.55128855751705,-73.52033128994833 +1164,-77.82068608767062,-60.27105883733176,-66.86366645693252,-78.97870541133008,-72.03077069163928 +1165,-74.93749313457232,-73.66338408515665,-86.06260658187898,-76.45214590132865,-70.03757284161377 +1166,-72.11395472660926,-65.97112790797381,-90.31563502172064,-68.48338523196938,-77.24431063532107 +1167,-66.86864712757233,-66.98197743512927,-87.13202344977962,-81.59387787905489,-77.3666575464668 +1168,-76.56154910367862,-81.75745021855381,-69.93429613146787,-82.78750809871177,-76.31720989867935 +1169,-64.88197904779479,-63.073107859998316,-91.9632710169322,-73.50791776950761,-77.94879402103214 +1170,-73.49748677640642,-70.51958851437911,-80.16657761008776,-74.29992216572117,-69.18269846763285 +1171,-85.62337934587833,-78.29881247039174,-87.92062469705574,-75.62696326548871,-71.65654850497756 +1172,-70.40431688737839,-80.73308764472586,-83.2154696627341,-82.38486262493515,-77.94763018886442 +1173,-79.19292862093559,-71.16561229939059,-97.69522649857502,-86.28805366511656,-68.28035696322692 +1174,-76.1756946200286,-74.83545486394186,-95.45962772254444,-80.6339569266151,-67.42203710195054 +1175,-80.04009187977165,-65.76041727849167,-88.7834125385528,-70.57106885695708,-77.48378740086602 +1176,-80.49825281571637,-77.6840666172124,-72.47133576900207,-78.48363870359802,-83.51104872805304 +1177,-74.32261649011237,-86.71690357337378,-85.35485037982316,-66.84524288872686,-83.90803682744192 +1178,-83.54728303342996,-75.93774241651964,-86.30198029503474,-81.10436903937246,-81.79677864483284 +1179,-77.52599954975027,-69.68960169703196,-97.52843464106603,-75.09539313816401,-74.83001094057259 +1180,-94.048407748141,-77.48851187152356,-67.52894692460482,-83.72038106139175,-75.14258708954577 +1181,-76.88153821005632,-75.9550234299468,-80.7391659766009,-78.73172427017985,-61.02648009843468 +1182,-78.08288911358197,-80.70343229297963,-78.84206513783003,-72.25835718944687,-80.105243875862 +1183,-75.12307492209239,-72.51569749447914,-80.6159814567803,-67.01813236611225,-70.59511760449264 +1184,-75.48053788815149,-85.4967139798874,-89.85478043948886,-79.75189880246431,-68.65157488847942 +1185,-65.95416089459383,-80.66336183770053,-70.26791238179692,-77.22751952606691,-68.94395842164646 +1186,-67.42184300741155,-83.4720749114338,-82.28654445532304,-86.04920342453597,-75.48539550316148 +1187,-70.36070110037893,-78.58101180751972,-73.1518479991421,-77.68569601516228,-71.46279897829366 +1188,-67.55299957489329,-87.84074090017327,-69.30273971095853,-91.18131869304574,-68.23903711046914 +1189,-79.56565187497259,-84.47534468098566,-76.86433180137925,-83.5889206291512,-63.637518572953596 +1190,-80.89048222797365,-66.85812714209658,-82.36477889345541,-88.51172671004265,-71.03911054212779 +1191,-72.72796752139341,-76.05323031935339,-68.40467334448299,-88.11575011457252,-81.55156645477487 +1192,-84.25171053013891,-65.7981386871399,-63.864686145445354,-82.23347018884765,-92.39017757125083 +1193,-85.6389695063272,-65.72201207261806,-89.47241715385832,-82.33653286799549,-85.18584474939175 +1194,-85.97155309248895,-65.1129545499515,-81.03789803436317,-73.1914537088513,-74.03500007910739 +1195,-78.28986439809901,-79.19399539345443,-78.27272778655593,-83.05436283283619,-69.3123119278951 +1196,-86.92392649360887,-62.70341729198242,-73.67600096534917,-71.05267506747148,-70.29822023316 +1197,-78.8241976110134,-75.75413338404853,-75.17456257877873,-76.40200005704628,-64.50430254042304 +1198,-77.83790928359566,-72.76396880373753,-81.92448771835956,-67.91748026362771,-71.54298945003245 +1199,-98.96892198167527,-63.680003732605506,-68.9052813567869,-75.68718983955743,-73.81275444311196 +1200,-91.41057229351328,-72.90306949634345,-67.93160011739,-79.77286871048554,-67.00582254576392 +1201,-88.15875935164934,-74.54756576518915,-73.88909560341394,-67.02649228698226,-74.83142721553527 +1202,-82.71132240127302,-69.91313200948704,-63.96778663497223,-71.71687985673195,-73.51322687412497 +1203,-72.82112075162628,-81.00906332987228,-75.06941187103436,-70.70259591257368,-73.75005697607631 +1204,-73.75288754108887,-72.12661814655418,-66.82524035772265,-73.25901754541455,-77.23318115063283 +1205,-74.54292853031563,-67.98657191414402,-61.601053428714216,-78.43074369972422,-84.16877185281264 +1206,-83.2630361769475,-84.96591398103908,-71.6541829823356,-79.0085218699597,-83.08518628772377 +1207,-81.37048437426867,-76.90116623622994,-87.49783223603399,-83.49158829603493,-78.94722996750988 +1208,-80.91281767897908,-68.47687782541493,-81.76162336058442,-88.40736283415288,-85.33186285010095 +1209,-74.06077265379352,-67.8545641277361,-87.1256782103778,-88.80715278230741,-82.37921971715367 +1210,-75.00829228232178,-73.25667108357784,-67.70339654913334,-90.53848957531987,-88.23042759534715 +1211,-74.24252618755976,-83.642748091448,-88.3562750779265,-82.31852775967788,-92.094470815533 +1212,-68.9968664128179,-73.94151711168547,-73.58517840390617,-69.09956177956117,-83.06104480949281 +1213,-73.80821967282186,-81.69793116156985,-89.35394998734463,-82.81886138330273,-81.6224714557875 +1214,-75.76561069752836,-70.65046490394174,-68.03900899582528,-73.60905755749049,-78.59262055153017 +1215,-86.97660491661559,-79.89814698921253,-82.02940512313185,-66.61317935245606,-75.4398425141964 +1216,-82.15749920483567,-69.74169972954482,-77.25476407896666,-71.43011842979827,-77.97817516138836 +1217,-83.0070984402182,-74.73322113433261,-82.01237774677234,-73.2358354725746,-70.83186205469069 +1218,-88.2030003095041,-74.88116795937269,-69.26731932145097,-78.31052439447339,-79.08965241652331 +1219,-90.20105102714939,-77.86399970202785,-78.40463424996149,-80.02910890348636,-63.09258192609682 +1220,-68.97118978805102,-72.05984652382784,-83.5617053066088,-84.07004551128176,-72.02163832175293 +1221,-85.74773872723625,-71.96735335908996,-86.51046753120079,-73.34558777121559,-66.28555237931555 +1222,-64.70297243542026,-73.03560167400877,-82.93171682157787,-93.0071759123076,-72.56633728202847 +1223,-79.556966367805,-64.23999393455408,-80.81653329385337,-79.166951234656,-74.17994125167425 +1224,-67.09565032520146,-79.62612622139554,-75.77670388258359,-67.79991406758387,-78.50084126742064 +1225,-76.40672202730049,-81.66902069110695,-74.87296836192057,-71.63453072362046,-78.2740349684749 +1226,-75.64243759237806,-78.17803700851731,-83.79815335220256,-85.48072114260206,-77.39178697065526 +1227,-86.2052521370744,-70.84587172000947,-78.57947185471266,-60.81813851081502,-66.24070939700754 +1228,-68.86159021076715,-71.0047873424743,-74.93674395534354,-76.8583474420178,-86.93858502282454 +1229,-66.50467423245766,-79.6957652920345,-84.84575982152195,-79.75297386629117,-71.48136078208404 +1230,-82.54298526114263,-72.34215174361515,-68.55491306703502,-81.88252178951875,-72.18129644843498 +1231,-68.02248240892968,-68.23377581502017,-78.01763105919568,-72.17772086725246,-85.26335854416936 +1232,-83.90096571869667,-69.34474758887063,-73.76318055568231,-82.55117502845569,-88.82153718362974 +1233,-77.71077835853258,-84.98811444686682,-79.50196770356142,-89.71864192183503,-76.46207902478066 +1234,-74.09431847356798,-77.39816220179503,-79.67864489524212,-82.70219732784712,-75.11303931506195 +1235,-84.85977590810072,-78.9232245147351,-79.32295814553035,-94.18943864951918,-80.14375160267679 +1236,-67.96310708622704,-83.94641279224656,-69.67307698095345,-83.8992063412373,-85.2635911479595 +1237,-82.83571812285562,-87.69975960198056,-77.74478099850622,-81.02266301637397,-73.60210932066497 +1238,-71.91248462240212,-77.64117703374417,-82.85398040643882,-82.06606088362481,-85.25888228646082 +1239,-75.38306716220147,-72.09158420010628,-82.53347128334524,-80.54490441609289,-80.34789621293079 +1240,-80.09949290142166,-80.8277863912341,-88.0781094718929,-87.54501722480728,-78.09522583380509 +1241,-77.5594699421486,-67.87605206365919,-84.97604730504985,-73.64870069308104,-67.55230012898974 +1242,-83.09146877956276,-64.74087142081609,-80.19299686667611,-82.76286242988333,-74.53173955301264 +1243,-79.22819493882811,-69.02116551116382,-83.36091570532979,-73.11599930151407,-79.53112131619261 +1244,-74.72590557472523,-77.06875062984736,-82.2334175530062,-67.18310442170599,-63.67123868107158 +1245,-78.56241458737118,-81.41513481320733,-85.7837462895526,-72.2530299070742,-76.75480227591628 +1246,-73.694958488706,-78.54966627063273,-85.40056366749184,-62.484310976447105,-69.52248118024265 +1247,-78.29204841890291,-69.93018904719888,-90.97477010954849,-81.61436093249613,-72.57868398788906 +1248,-79.84694023666367,-76.71528290848525,-90.55805840749032,-65.43362311060483,-73.79353839486322 +1249,-79.44504324037744,-75.54016107728576,-82.04685916590198,-71.96212983939964,-72.68146792587392 +1250,-77.2744266456921,-90.58884153770978,-90.81829029944593,-66.95638525036728,-84.07924329582038 +1251,-82.95546348743913,-82.67789984953355,-98.11454810482536,-65.97150660585993,-74.71858421014305 +1252,-80.31924107788494,-81.98132569285795,-99.01069887150716,-68.43219114220761,-75.2246964757645 +1253,-73.17804269516202,-71.83717834244342,-109.27592421852684,-62.99692421670124,-83.3569379267875 +1254,-75.37831003402636,-75.87915808965855,-89.9751144362096,-66.42945742994989,-71.00488138147685 +1255,-77.10201255291544,-72.86531760004003,-88.96234313286472,-86.22831404896425,-72.05250473002195 +1256,-65.56754679374589,-74.62539131005282,-96.56616630711284,-75.08035248841098,-86.74893343850289 +1257,-65.73195804765582,-90.58839501433694,-93.90011087948723,-73.76315312640533,-74.86885272113885 +1258,-69.7510091947244,-76.2219050745178,-92.4396768210357,-66.58576750537551,-78.21143270520781 +1259,-64.98346926468962,-68.69283933241347,-94.91613748195871,-82.07433100192975,-72.48973254605194 +1260,-75.30679224254577,-76.64554588885002,-90.89497727953018,-67.42337132501112,-74.1206217742897 +1261,-70.93585805379742,-75.57487292968392,-90.65915354830162,-74.7236424349318,-78.24015343047905 +1262,-65.39863683749182,-81.18331748068177,-91.68045124200552,-86.80445955324113,-80.18571034665942 +1263,-70.0719828811164,-75.13506928570634,-93.3595025167847,-87.48229856807463,-69.95622215029601 +1264,-75.15166200899401,-71.71487673663064,-80.83052134842211,-69.14647623843226,-66.84846634365496 +1265,-85.20005912502198,-66.92358932740001,-76.03840438417163,-77.52070968819508,-70.38794134345774 +1266,-71.3004008098704,-73.12290080947048,-85.04282574899366,-76.87944996606134,-69.43846073002179 +1267,-90.12652372113524,-70.09715190633015,-75.14398686621442,-79.31432875687617,-72.58941578148436 +1268,-87.0587455662916,-76.0670145608347,-67.82113876808593,-70.7497165623565,-88.3690828869993 +1269,-86.03589939762534,-77.1036849743246,-76.95943069122902,-76.67436008283453,-74.46007258701162 +1270,-79.14254005832856,-68.12072347332774,-64.03077269977199,-79.58445384468762,-93.09995146087897 +1271,-88.54397508440935,-65.24310754172218,-77.58355686759487,-67.99951533448395,-70.2668472234185 +1272,-73.53770840672982,-62.74140460928823,-71.08945681015203,-73.59225215873538,-73.04640232015002 +1273,-73.39687689085768,-66.61433327076601,-72.21719866308908,-73.75185927845507,-76.14381484514193 +1274,-71.55619015181553,-73.5877921687726,-71.26895196725225,-73.80248337276275,-78.13074156498735 +1275,-70.96114445487284,-72.49368520022713,-73.50569342421576,-78.06473598020386,-65.4981807178804 +1276,-74.94284797184031,-67.5023838230531,-65.21512969421646,-67.68073443007377,-70.06420524808058 +1277,-63.80817594887467,-68.55247595022523,-62.59601990579884,-76.12922659269363,-76.62642241417123 +1278,-70.6800538584942,-69.80800489871883,-67.69174190060208,-70.32351006099383,-87.27433503304225 +1279,-72.11998143588897,-74.28861725116656,-76.75745903020352,-91.6641851573994,-78.35004467719234 +1280,-72.48086915100505,-77.5171716035088,-75.8997787561048,-87.32469863198077,-70.54774496620847 +1281,-66.86444003589527,-68.42998575157883,-77.8611957924423,-86.84231855364035,-87.84632257183715 +1282,-64.44721007724081,-80.3816779967301,-71.1657721808321,-84.73559748543177,-85.47250961415546 +1283,-80.3877503546297,-72.58882851956211,-86.303398173329,-76.45059415406172,-79.78512116874725 +1284,-72.7176804198285,-90.73498889796603,-74.3565500096889,-75.53394553829266,-84.72796468826091 +1285,-69.94747224317284,-75.88183203148458,-71.34130222704042,-77.55497086752256,-88.38768689622202 +1286,-78.99383189369235,-82.66084536537117,-71.59946701749465,-67.68589164226631,-78.89378788409236 +1287,-62.40950525122366,-75.6265547187194,-82.86846485921384,-73.05137483777787,-77.46159444973415 +1288,-77.20849287490205,-82.89576150979475,-77.45080748576878,-70.20038977559577,-90.92853850278323 +1289,-77.61414001725247,-86.30803914989943,-76.92045760606379,-82.86163480046989,-76.20326868332641 +1290,-64.46413552438975,-77.71431076118095,-67.49698884094455,-71.85168416548198,-76.45086063895582 +1291,-71.66159563321911,-74.36486372568723,-70.85464551787737,-79.2697024755445,-84.34659846233681 +1292,-62.82566703471086,-79.60617107962261,-65.51736597116457,-69.00039598409707,-89.48046572936259 +1293,-70.37416102743173,-81.92208979330627,-71.02749197123715,-72.07505511055055,-77.46134471435411 +1294,-75.20403102744136,-71.8072109661729,-71.53410920718669,-71.82611835842941,-83.69921097311872 +1295,-71.54200141495924,-80.63441651571584,-73.65270778627263,-66.3548233720645,-76.67432368436799 +1296,-60.37534121883305,-84.00824490764195,-70.43759323041238,-77.39617182594388,-76.33417935696654 +1297,-71.34148981789473,-78.9734692825648,-76.82515093727156,-73.31640157160602,-82.29532250542073 +1298,-71.64487517424092,-72.87179897973044,-79.83002159879949,-76.4069691045772,-77.8702783575513 +1299,-66.8776105275201,-93.35388416051018,-67.26214532430556,-76.04805208502117,-74.98152175321562 +1300,-87.71209097214704,-82.00268898214645,-85.76855053701148,-76.05470303936836,-82.44820212983214 +1301,-67.80710947907993,-81.54414364493483,-72.48034525738125,-69.94298817399826,-75.81888040281883 +1302,-67.77596376215713,-75.17797571971872,-83.62269696631073,-76.56421177184372,-77.05481440098598 +1303,-85.75566003703626,-71.99927990665928,-85.95439698790715,-82.61305759000089,-85.55178210360803 +1304,-64.69569851808726,-74.90680883498527,-84.94158609639412,-88.13997220098256,-74.57070000433121 +1305,-72.71609145376952,-73.68006075606625,-85.6073433124767,-68.37719796609264,-74.16362494008173 +1306,-83.45168661324584,-80.62690885899012,-101.35449888970128,-66.52408295320863,-76.4017389400925 +1307,-73.87487658569174,-80.79366842276472,-94.58868544706878,-75.40985969745893,-73.89627149448579 +1308,-75.93702612614527,-78.05465154339738,-94.30300549003665,-73.54793818716172,-75.37623568291394 +1309,-80.2363569710403,-78.45012006520834,-103.97409584070039,-77.4365404688768,-78.51864238015591 +1310,-62.86603293013055,-71.7335390464027,-96.90359386079405,-85.04818905418759,-67.73277531591997 +1311,-78.95063194768248,-82.10960636681887,-97.49910452252846,-83.81082745992214,-81.45426350040741 +1312,-67.53982547850502,-64.03266465330906,-97.90467730922232,-70.62560867941374,-68.48673203085276 +1313,-72.71467512947399,-83.70583718303097,-89.70614967620722,-67.72617662947378,-77.57762781982304 +1314,-63.88938630982064,-81.70271328966855,-93.15184963285242,-83.50447645894911,-99.30486988342795 +1315,-75.3959917655625,-81.07583636396113,-81.63652200901456,-75.32199785854485,-73.23798680862477 +1316,-76.39374291989608,-87.60056507513929,-81.03194423429217,-62.896872108106315,-79.25768406364423 +1317,-72.80099930923485,-77.53876126079285,-73.18068452294634,-74.35797363638366,-83.77394988029747 +1318,-73.16780325785369,-95.60109622079092,-70.97846243451157,-73.4162532405752,-77.72009157009234 +1319,-86.27670688490295,-86.68085033743176,-68.18404504319867,-67.43838059525429,-69.82745668885661 +1320,-72.20283476774364,-81.0017750809938,-66.3741440597475,-69.18650580526985,-77.54909809002827 +1321,-76.05617318169246,-75.52101002923257,-75.99078587129533,-83.10889400589234,-71.33235220470318 +1322,-71.65026276780694,-90.20495336091963,-71.2569993423584,-79.71766956179869,-74.47480154111835 +1323,-64.9704654600414,-78.69769821279618,-84.30842368795166,-70.307724445133,-72.15127533301347 +1324,-76.66347849382451,-74.68821091181782,-93.41162668700488,-77.92712906672601,-75.94743207501453 +1325,-72.66346786072315,-88.43080783824273,-86.97112255903627,-84.8168630829642,-65.73839074934922 +1326,-86.86721714622888,-76.5083937248744,-89.13768467819745,-76.92022625835959,-64.0489296581749 +1327,-77.30947122886576,-72.39982367263885,-86.50366043222867,-76.12407699690002,-89.0342658181041 +1328,-75.99630697932962,-72.49913351323809,-81.7730574250108,-63.53867230884715,-83.50354385616922 +1329,-73.35241890964677,-70.0939659904058,-85.37763103423565,-73.97205127888313,-76.4540504810459 +1330,-76.05754905023866,-63.545492783495654,-84.70211089354338,-75.84994680379737,-79.9036606432643 +1331,-83.74169944718446,-66.0688532004705,-85.89949392166054,-59.38522332592522,-80.14998642617877 +1332,-87.79598213086236,-79.18534394969997,-88.19657801379233,-75.24621983235664,-77.61194511493242 +1333,-79.28305521783346,-65.00685878600589,-87.84992482525527,-79.42648017536311,-65.05586366231849 +1334,-85.07801357270577,-72.9087112067664,-82.6100483906735,-75.20683945459068,-78.9376962631896 +1335,-75.57391381984908,-72.84340251285703,-87.68781158703493,-76.10880124863881,-72.93263734259023 +1336,-77.67879073956577,-65.85321830910794,-89.1320546123573,-67.8128035869038,-76.22020103569835 +1337,-71.33536581255983,-71.44132836061114,-85.46539027048141,-69.48466305246396,-78.05993501250762 +1338,-68.56847320465072,-74.76527558358538,-79.41031717950463,-81.97170714037097,-76.53370679663703 +1339,-77.22071373119748,-76.02622252577383,-91.5378947017568,-82.88047149188198,-72.54864046507912 +1340,-74.11180968513419,-82.50893282245892,-88.38542073786891,-92.35254041202145,-74.37904843168351 +1341,-70.79425695283902,-81.22245721757966,-90.52032902673048,-89.82079518940097,-65.7183116076734 +1342,-85.61431248317125,-74.46784686373005,-86.26952902453814,-80.22992706184428,-78.85078947603867 +1343,-79.05858464042299,-85.01053973724339,-91.82066548819066,-96.12507570348798,-68.57969170180323 +1344,-74.92596042240224,-77.90905520566008,-76.69129521035501,-91.52402638525493,-78.29287869563395 +1345,-76.57721692959524,-87.4377325460877,-83.1443576874952,-82.7650939693142,-68.1541856440054 +1346,-80.54344665090346,-70.79993852133353,-73.40113339193063,-81.78908906322835,-73.4175566517131 +1347,-79.28004018479177,-76.5013089601183,-78.06322347327014,-89.64433015719706,-76.26042529512272 +1348,-77.49305102552172,-80.08116661476424,-86.4741950120748,-85.10498366816482,-81.48527958721664 +1349,-81.62179982870077,-82.61062795972539,-75.67717018166644,-88.41406884799301,-72.48194380240925 +1350,-73.27752120238516,-76.73977504935664,-76.44528547280142,-93.85589611768685,-71.88442329546548 +1351,-75.95422197097238,-69.44695042592653,-66.8379764944213,-79.82656311582939,-67.08055179047453 +1352,-76.28353773945541,-76.02351507211092,-65.00966067764402,-77.74770327204249,-71.5777754371357 +1353,-78.96452809141057,-65.69407600152292,-78.37608359501024,-74.55714929626171,-71.60692149291822 +1354,-78.97874061323866,-65.11580728422715,-75.02799152574455,-82.3686820234682,-75.55027851893564 +1355,-71.86976128890313,-64.96150313767649,-99.53969669718484,-74.01373839991692,-68.09770005270687 +1356,-83.65079191130386,-66.12601082512387,-76.43351070422125,-78.34630558419059,-65.753248242738 +1357,-91.5344335305281,-77.5360337429504,-79.58842833447983,-79.26474435226622,-74.22548504849834 +1358,-81.87658014057145,-78.57531587825336,-86.52925172073714,-82.44900944106455,-67.22627748028266 +1359,-77.51396810844034,-69.80694365782189,-80.83442594926652,-71.22954403893752,-80.03314714590462 +1360,-74.88891702323146,-75.81494054934785,-80.86205717642106,-67.42150695279841,-78.38595649742545 +1361,-87.06034975567071,-76.81321340952817,-78.76029732337028,-82.88521180672608,-81.80328589990626 +1362,-79.51697200574027,-65.02606766835488,-72.8593501737389,-61.522320676967226,-85.46640709139369 +1363,-73.89215592780944,-68.96786438948403,-76.41035514762453,-87.95999363328164,-68.29011298474144 +1364,-74.66648284746438,-70.27447334037014,-75.51363211623251,-70.1849127638231,-72.32791141679135 +1365,-71.3397234590046,-76.93044480529413,-80.59634562638065,-68.57195226946595,-80.37291990877169 +1366,-72.36664618280942,-80.21848036735605,-74.79527419467948,-90.42026863897067,-78.48012751510772 +1367,-73.82724878651406,-72.75042031223222,-75.48674068044755,-75.84979522422717,-87.61453696240217 +1368,-72.17625846794247,-72.91316124686229,-80.24759624209526,-60.639940112565405,-74.57382053201002 +1369,-77.73339141009971,-82.23724366745773,-73.63421458780263,-85.38159856529627,-66.17596423656477 +1370,-70.07201711352154,-65.47569137075321,-68.0812253794783,-60.56635662783287,-78.97211142093978 +1371,-78.63992237407341,-89.45555100358219,-70.19202563974247,-64.92819598915612,-68.14900513235264 +1372,-76.72638179999977,-88.2081019939096,-76.09906676045964,-75.6334865643357,-66.45281727987728 +1373,-65.90518675525738,-72.0486990709618,-74.72061255530858,-72.71399365337084,-81.18877324169448 +1374,-71.79644238233433,-87.83076452992178,-74.26664667745129,-79.92506101181183,-69.5840734859282 +1375,-83.05532656607883,-80.74700693258352,-70.02962518741289,-85.79565999133204,-57.08238502124477 +1376,-76.26122879484696,-81.1650202629062,-74.60376551998766,-86.93464180421807,-69.94971398126036 +1377,-89.10252955663582,-72.72456630315577,-68.76287503060912,-71.05480496060778,-75.21429107325113 +1378,-64.43706638626453,-85.03214874177878,-82.94739399235185,-68.57147574861351,-76.55639306971784 +1379,-78.65918627691167,-82.52719172908753,-87.59080842700308,-79.1195549919015,-69.57558492057503 +1380,-66.14561503425736,-88.55190515736601,-76.41988238333597,-75.35343866149329,-64.71177517953083 +1381,-64.52341277946554,-77.41135063455046,-74.83454832273524,-76.17519827916273,-67.52444604563914 +1382,-65.17361503541105,-79.71622857052384,-73.54903149580588,-74.42222547382077,-71.88134781748441 +1383,-72.44118367800563,-70.03074146954555,-68.72695425700252,-68.43494708262291,-71.53737789872825 +1384,-87.70675382427721,-63.6686245580964,-75.78778334183137,-72.65791559427922,-71.7058378061254 +1385,-83.74683691493867,-81.73691227561396,-72.92757716106249,-77.14080283485539,-71.57162025459073 +1386,-93.99583665734984,-70.37001462602554,-72.66576936204268,-79.91847584918409,-72.24511940166973 +1387,-79.6828609048977,-74.80491276924194,-65.66782997862553,-81.99584423502446,-78.91732617921106 +1388,-90.93964174552995,-78.99253177794883,-71.26056280061553,-71.8759382320579,-76.1533293764033 +1389,-88.87368844792442,-74.37659658080308,-70.43549599138339,-74.09368621601138,-70.80344798849592 +1390,-84.70980133182701,-80.016604687371,-89.24052062528753,-66.06498026906597,-71.71113583122758 +1391,-84.92505774911348,-81.5369330501673,-83.33005936702381,-77.8752609991302,-79.5781595603577 +1392,-74.8004104218298,-71.54358941866883,-88.12209280637175,-67.41496768511215,-82.397445715877 +1393,-86.43414902445627,-79.23585048505005,-81.2330317738028,-69.68138048654161,-61.062133414861044 +1394,-68.08475071051568,-82.72420527855316,-84.64484680438021,-76.44723980495633,-63.42781443603656 +1395,-72.34211523137272,-68.1074985504961,-76.62624400256244,-88.70736526851977,-71.1249244026339 +1396,-82.53497586542304,-97.77507143443097,-80.25230808627248,-69.01808248343902,-77.39047876577337 +1397,-65.67783535232172,-83.00737100026878,-90.87812522472122,-62.563599204388495,-69.58351741055381 +1398,-67.70320126826513,-75.22182572024367,-85.35056941042276,-73.34445872366032,-80.06772012572414 +1399,-72.72373065161997,-73.09989324527031,-62.85594429195318,-82.89198911779809,-72.38637654771689 +1400,-73.97384324293284,-77.1784285441822,-73.0617580529763,-65.92443840596532,-71.05172679630944 +1401,-93.20634065145003,-67.08291486560603,-73.02061107114214,-67.66491064383402,-79.63797220411973 +1402,-75.11696987754695,-77.13621044499934,-73.79601827958942,-64.26392027665939,-79.29223506129216 +1403,-84.68321088625859,-78.48613644132136,-67.99889123356412,-85.61128242271634,-62.80680976027421 +1404,-81.21597493760264,-77.33540509209988,-72.1484858806755,-65.16979421526725,-65.88268970833678 +1405,-57.983757743011665,-67.40263000150058,-69.0749898832756,-69.499238335494,-76.37093591666584 +1406,-73.76033065369624,-75.90039864860942,-66.37037436416023,-78.47469616670669,-66.32299278223338 +1407,-69.26367164144453,-71.8197996675778,-79.00000425010346,-68.02244880904401,-64.83750856583194 +1408,-78.29168454650542,-74.10127519433799,-68.88822306139055,-68.17985261338926,-73.0680405302225 +1409,-73.13623452281863,-63.90519266699957,-70.80534890834073,-83.49288750479111,-76.04364349895297 +1410,-62.68494336004037,-78.2243270048606,-80.49220344789238,-79.14589360187982,-65.0027977607204 +1411,-69.1254852526048,-63.79416190188892,-65.52577722436986,-74.7218152772591,-74.50304004477854 +1412,-73.26617959696587,-68.24004315676947,-81.3611825060559,-76.76079184276158,-73.00250840682793 +1413,-73.27048073243442,-57.37280557382461,-79.44180316474512,-59.646490105979616,-74.007447365233 +1414,-73.56764542314741,-66.67010729115177,-77.88629672074183,-71.56340238272075,-69.55388025210138 +1415,-77.26944121341116,-86.21815711334257,-76.0435343642675,-72.28352015324816,-67.78364530534887 +1416,-70.08984017122016,-78.34799474662252,-75.45302917303945,-78.83263609875173,-83.7650210326248 +1417,-85.06597421428529,-88.14447904405353,-85.01244660305659,-71.8709492080881,-75.79997363468128 +1418,-81.93176578097865,-69.55971264490886,-69.10009656650828,-59.77929454297554,-77.40797148603147 +1419,-69.69264398212604,-76.13206407515366,-73.2711046922832,-80.51980290608705,-77.02905657173419 +1420,-79.01565011074042,-72.239738008626,-73.52369259532807,-89.94766119816614,-95.01293139676136 +1421,-85.27684558415343,-81.70187593966052,-61.86342518219799,-62.01410217631772,-72.5125004838098 +1422,-77.72196415941596,-71.65541947420137,-64.7689026641463,-69.71958838939847,-75.08331293318751 +1423,-72.211367782698,-70.19413497005317,-75.82850348628997,-65.55251582916564,-82.58205846050917 +1424,-67.82060967457535,-73.92273546675133,-66.83037965356272,-72.46555312781256,-72.90696670009581 +1425,-71.14199993952103,-74.98724298209558,-73.4219676797539,-85.93878287490011,-68.85320176903839 +1426,-67.35772967413028,-75.85634619944746,-70.55003844232063,-72.22461566669946,-65.43973252062105 +1427,-69.21852976369955,-65.26168543945006,-69.68777237228235,-76.45985996604718,-86.76134505706719 +1428,-71.65872785452505,-83.5031562972136,-77.06055816246908,-76.19674819087604,-82.77312365327246 +1429,-63.99389600368658,-75.14436251440209,-69.81976524309673,-70.95890974486092,-84.44541771203262 +1430,-82.82722968609103,-78.25012543439857,-76.91017940460708,-62.87201116196029,-75.66118803723178 +1431,-70.47490718083631,-65.04091950355148,-76.8734467293273,-68.3967184227001,-85.19389287366738 +1432,-68.06779133073289,-77.95571609715569,-73.75862799558082,-78.46912679945424,-94.5381945050181 +1433,-81.29532369318964,-73.75498857501105,-73.49966905733993,-75.20097306401033,-87.82193317312023 +1434,-74.9964800103423,-77.7830312564989,-71.13307467364733,-67.14044275793792,-70.0776486257067 +1435,-64.52992115599426,-82.33587236248181,-69.71778009595032,-74.3840679556901,-69.8005091620521 +1436,-75.24233819270073,-70.90836096268576,-68.24999454180947,-89.11910328261357,-72.99862926789339 +1437,-67.07487609146129,-80.20628092861443,-67.63208212279578,-93.2049926207423,-75.3056128149601 +1438,-70.48464964498866,-71.46750835287949,-76.88155018348435,-70.23857176722831,-72.13085998406622 +1439,-62.878433445369566,-74.79745967364953,-78.0354977492441,-73.10390072616865,-69.91196865301917 +1440,-77.69108426212036,-78.80721084336304,-71.28812974050436,-68.83770288639158,-69.6570018750514 +1441,-72.59193591682029,-70.46001237290923,-73.30158772799541,-70.07811583583756,-77.56832364121142 +1442,-78.23329510449494,-81.53684160616314,-70.333535750396,-75.5235014720904,-80.62120145594147 +1443,-69.48211182450666,-80.05224477127494,-78.00357210482512,-88.65998837233421,-77.52353525175052 +1444,-74.31784437497471,-72.88928303893371,-85.80213457479873,-74.58303239032819,-69.92872053680554 +1445,-79.91625464542706,-72.16675597659125,-76.06667477154384,-85.78000051111826,-76.19155884071249 +1446,-76.76987313113312,-87.22630481576556,-79.93299161924423,-68.01391259285137,-73.42783538579957 +1447,-70.62053717307981,-75.70975787206136,-65.0521467257654,-70.69924467305405,-78.89899835662224 +1448,-73.21879045272829,-75.30248775696755,-77.93266934526044,-75.23887099669828,-79.96749082829506 +1449,-81.81649248179261,-70.71829214995468,-68.40211539055622,-80.36659119124657,-75.53672394744419 +1450,-76.82821968337205,-75.79871838158974,-82.90745955116267,-63.28250512069059,-75.88379628569322 +1451,-63.67724180495848,-90.93328741737793,-76.39474789238375,-73.55562960712335,-72.84689434353311 +1452,-82.8995474346838,-80.77571781124584,-63.37342370675788,-70.98974206008559,-76.26755676205987 +1453,-70.01561799928592,-84.95993974826496,-82.49662972010294,-76.44246159609283,-76.43199278566279 +1454,-67.10008218289902,-74.9081110930236,-72.0349044624871,-61.491490277695746,-71.27094445762386 +1455,-63.721223315713566,-65.8758626315174,-69.48201821070359,-74.18309531503557,-81.38418680308395 +1456,-82.70242455140682,-60.2540103520912,-68.04423462000835,-78.24623739281392,-70.00931330445744 +1457,-77.41272969411983,-73.65746737024573,-80.76619282883739,-61.888177624811505,-69.00249113642705 +1458,-80.63310322606425,-71.31196331072799,-76.015637123627,-65.75730485133671,-78.65284521326788 +1459,-84.23413057253539,-64.22903171293078,-75.07843602681876,-76.9661504138432,-62.406239549392275 +1460,-72.3867256486712,-70.12218211472546,-64.98657643557166,-68.21653749555045,-70.73535657501162 +1461,-75.84622639065981,-77.1090609486696,-80.80324586866425,-73.23137031938504,-77.3374462367263 +1462,-69.495940603542,-68.72099859348478,-73.94157025497384,-78.02782074073328,-68.35772304223629 +1463,-68.05769815428549,-83.67562930958549,-66.95577515378254,-78.31589972559527,-70.14396450028228 +1464,-74.52496962467082,-90.73313311609543,-72.13395960917089,-75.77652648736543,-71.246698692876 +1465,-75.12740522911294,-70.86575716200896,-66.69370723995866,-71.67092648841478,-76.57875464504144 +1466,-70.7132588811576,-71.7318210461061,-62.483976455726726,-86.7244396526113,-67.10256739145176 +1467,-69.58755092846772,-67.31299798103318,-79.00981281177683,-85.65540012035399,-76.20135561722563 +1468,-65.82886000491673,-73.47716595346576,-74.97007912582123,-77.15151690007616,-73.64290666677414 +1469,-72.77802788607877,-85.6478197039772,-67.72712386904016,-60.439524440782144,-72.38515412515932 +1470,-76.95147141323379,-70.00388274746454,-66.38976776845983,-65.38963124666586,-72.65275566577877 +1471,-70.44082170561326,-70.60827089810529,-65.30857088955604,-61.217910460303756,-73.91307872016135 +1472,-66.87325404450216,-84.06726271643322,-63.45218390353433,-68.30592510406495,-78.38028044271664 +1473,-60.827971004592705,-74.48659044820397,-67.91705256149076,-84.78725379378882,-77.95793930945932 +1474,-61.65921510432058,-73.27362712631705,-69.27488577614943,-75.97146325207747,-83.0837171236921 +1475,-70.31864821000474,-92.35665832696384,-77.02469142020064,-62.13816877763682,-74.7936169635346 +1476,-64.62063218945998,-81.52210614628483,-79.41033788534227,-66.66700694158439,-75.89466721265893 +1477,-66.62690242578599,-69.55610508686921,-75.56291389609251,-66.77529301745545,-82.58583564865613 +1478,-87.7046314318649,-65.63117518691939,-78.82023740992352,-67.23270525478777,-67.36687603235964 +1479,-85.82592762181638,-63.292778558524596,-77.71840985824268,-74.2661092549103,-77.81262172657246 +1480,-83.33185914078763,-78.1058328944885,-84.02012508431275,-71.67482279750448,-79.88300771103155 +1481,-84.30725681839687,-82.96949446344232,-77.95285068118736,-75.87898569954919,-68.20794278647712 +1482,-64.88092984578921,-83.7889269056969,-80.74071469651624,-72.20319447738623,-77.96041331804 +1483,-76.47604684094777,-72.10461598553049,-93.33143167561558,-68.70671408980417,-72.62210818809193 +1484,-72.84769032161991,-87.16244818572162,-78.54073471761448,-77.43865744503672,-72.19312755468994 +1485,-73.41383888259702,-85.1649951989559,-80.55821858351258,-81.32917784765678,-73.1806954114798 +1486,-75.59908172686629,-81.12804438253156,-66.28809022383763,-75.28187601138667,-61.981910679186235 +1487,-77.6771480349948,-70.80773268953472,-79.20834023043919,-60.895618747539814,-70.81308743114934 +1488,-73.87513132574398,-73.14470702841156,-69.22022083481419,-63.94222061175801,-74.28815701044752 +1489,-67.01798212365944,-66.95496786503614,-72.42752300564086,-78.78329463519702,-75.02232205213677 +1490,-74.95677488758562,-69.65854616658461,-84.58744794986501,-81.57550434144574,-74.80804532620223 +1491,-74.0191007688745,-71.31520289183426,-72.3740174158472,-68.38761364369279,-80.69292599662802 +1492,-78.73149828624354,-65.92425542111756,-76.9074345603402,-70.35776754401212,-82.02335629123868 +1493,-74.306518357955,-79.67832128399836,-77.92731315588833,-76.7725656679841,-73.88510669360701 +1494,-73.3971923228352,-69.75515997746609,-78.80341562181576,-80.87039553753738,-78.72019410321316 +1495,-79.54964789378475,-82.15594968621556,-78.7414494248843,-64.23044657318174,-77.56856848472195 +1496,-76.73232860404825,-89.17958215221405,-71.94632880960947,-78.22329156584118,-69.33507165502553 +1497,-72.74638528998604,-61.1466155914916,-89.1981206027649,-71.85912820034463,-69.35934271593302 +1498,-65.33501999803308,-78.97040626008379,-73.56764030924855,-65.67665286425898,-73.9187413912133 +1499,-61.74670794108384,-78.28240965850523,-75.78189862220826,-68.75177516061704,-80.13063676316379 +1500,-72.54248363705894,-69.48385543354054,-76.0721176458661,-72.6338710109223,-78.50624497948502 +1501,-64.3692206670488,-67.07407437136213,-76.99705345893328,-100.17998820252285,-78.07733952277785 +1502,-63.20418921009399,-66.5186629262085,-77.8008482962134,-76.31318677971468,-67.72958718678493 +1503,-71.62299779576153,-80.92354500877028,-84.12029200584884,-78.1442496494725,-84.9424333631548 +1504,-82.2060040080992,-61.04594522218563,-73.96631186151829,-61.07537366459741,-70.70113460522106 +1505,-84.6901008811598,-78.69027806235255,-78.52972815415397,-72.50751233480874,-76.11303303644867 +1506,-97.35221604670562,-70.4777061040201,-76.69222733877453,-84.06578707070527,-69.44218960274863 +1507,-91.74927346058081,-79.37995353301449,-76.14250294842411,-72.3548992076766,-80.59974572391883 +1508,-76.64153420534392,-81.60181722517606,-75.8567605027159,-72.61092708001028,-63.45084642172111 +1509,-82.69928630032673,-62.345799708893615,-80.79095155522323,-70.67746535815895,-65.68392766937733 +1510,-76.6802272134495,-61.647747714157944,-75.6925467488092,-81.57672791717182,-72.97512864283122 +1511,-94.86166755638828,-74.77987661211962,-80.36618924479137,-67.18707344308217,-65.22440888142539 +1512,-80.56783387593872,-75.22784384397536,-78.54630983312546,-63.25488632850293,-66.16843440262865 +1513,-91.80835036907952,-75.44157104677303,-81.79041467356359,-85.15117246732065,-67.08698312817668 +1514,-90.09286526355794,-81.65045256145906,-82.76149316361379,-77.4973983994483,-71.81262046304168 +1515,-79.52846450132529,-84.23145961685456,-78.06135215154214,-88.49269731305088,-72.67922230314345 +1516,-70.12790235833025,-77.8985440860145,-76.79894585417509,-76.22238387388661,-78.61147888484214 +1517,-75.5297688916323,-86.18883285020917,-73.52254331147282,-61.137003085595204,-80.28607420993454 +1518,-74.44463053565931,-83.57008080948556,-70.75273236868142,-78.3437922294898,-72.51008365969456 +1519,-70.38586992491932,-88.03903721446792,-69.30496060850378,-64.05379817100967,-85.55420985400045 +1520,-66.23520291393461,-85.60124707809877,-86.17474069942844,-65.41239684653165,-80.3237927159319 +1521,-72.46498687937535,-80.25061752335297,-76.95519175430891,-73.46573851930965,-71.60384372978184 +1522,-69.94405079171015,-85.93399809647931,-77.79250060557179,-65.77191969457769,-80.7412024947917 +1523,-75.11161825001673,-85.68468462831677,-74.07698423391926,-83.3578353595133,-79.35869227401369 +1524,-69.65667472537497,-94.3762729242695,-76.85614347420005,-75.82157222491696,-93.5522357763592 +1525,-61.923021692533844,-86.51524401440058,-72.9999587026673,-83.77734940589255,-72.90355508380195 +1526,-73.18069026512285,-83.8690346748377,-76.18034175648373,-73.706074997159,-74.40614950091124 +1527,-72.24274036752165,-81.96485607131939,-62.41396412301429,-83.82463052770632,-71.47771006522873 +1528,-71.46252705729084,-77.12876725793559,-77.19889109598915,-87.30243719970952,-79.37132761575019 +1529,-89.38787439739781,-68.60641388248783,-77.82618101366072,-61.34908726522979,-81.44210749455127 +1530,-83.24590425070541,-71.36828764258829,-64.82878024844878,-62.968613109294296,-65.0201137257624 +1531,-69.65316035867315,-69.92764340153802,-75.05388500511997,-68.61038797600612,-72.2752950577279 +1532,-71.00206963858354,-64.88928221362765,-82.5326397140388,-84.77283127696451,-78.83037611473029 +1533,-74.12384707179818,-77.11115624379069,-77.35225797295155,-73.20889300021275,-65.07777784572458 +1534,-75.14528030919169,-72.56203537645243,-74.5143072220442,-73.63500040689533,-61.595135312202565 +1535,-77.94506002969973,-69.11516105385127,-65.81399095834986,-68.40296333197539,-63.536219688282955 +1536,-76.96861315725641,-71.66471295555907,-83.61823475171086,-83.3281361607146,-60.56964291278442 +1537,-73.66006719046179,-67.88723147750265,-64.40848338970137,-60.25665826785584,-83.96960575766832 +1538,-76.03898381138829,-84.63727759549604,-73.44404484189533,-76.24217517559364,-70.8724218408473 +1539,-75.60523544786777,-69.69826170870485,-70.1475240290129,-63.28345032667231,-68.85608681641145 +1540,-77.11229013434694,-82.43434278186106,-77.32904477376184,-76.40827573081981,-62.38981324604355 +1541,-77.3559412490045,-77.71775101661912,-65.5430916942061,-75.18883788136108,-67.60823651409937 +1542,-74.89168629487631,-69.37389806129471,-79.31036922391613,-86.4055762073808,-66.97577518826712 +1543,-76.40508543131344,-76.23383784529379,-72.65149681484738,-66.68773116196994,-81.68422269227986 +1544,-68.55027157216013,-74.28578990203543,-74.28782804745899,-84.84835575086211,-80.2234451036426 +1545,-71.90798927451726,-78.2322064363144,-80.99434902057351,-70.07555991797568,-73.47799920335528 +1546,-77.05316937103255,-74.77812366969435,-68.49272174119183,-70.76059709419306,-76.40348260956642 +1547,-71.42816984523449,-77.64295278608986,-70.58737211805418,-64.68890633609135,-72.27175284141963 +1548,-76.51330222822745,-70.02788978964078,-73.2064064271808,-69.61845707368101,-79.12193085714303 +1549,-62.546181595150614,-89.40702095272422,-72.63761911646952,-74.98038370230509,-77.29905356146192 +1550,-76.69227961786697,-71.4842190347794,-80.83850540255962,-72.56711346828965,-71.40469983248377 +1551,-66.90633584816636,-71.85768105010735,-73.22755955552309,-84.30296829500551,-77.60470429997197 +1552,-70.05655828702241,-77.59996016158067,-77.43023852196823,-83.60596189483803,-69.4573794403356 +1553,-77.18067414027183,-88.75058730686332,-73.18587462499978,-66.5180307584962,-70.97054186564908 +1554,-62.99520099159902,-78.31785045982718,-77.4009195275456,-81.45559994194682,-73.56181383423416 +1555,-74.29989670285102,-80.74452118912528,-84.81140296677296,-69.39781039480513,-74.06645797106742 +1556,-67.57326869002259,-63.64364853856052,-70.43255532191445,-75.74122636302312,-68.59909427460738 +1557,-66.87627308281064,-76.3460143285049,-80.9386081445085,-61.54847350624674,-72.34710937316721 +1558,-65.44985952631195,-80.35642162305437,-90.27208771798117,-67.18702151819711,-72.7826800810781 +1559,-81.79444276283179,-89.70868714318456,-74.39087869216596,-77.06145567814151,-69.16362839326138 +1560,-75.91935981209495,-75.96518969380172,-78.32880257962815,-65.65272222827348,-75.74872291217957 +1561,-74.41810759604054,-75.72143528069002,-65.21901522710425,-64.14331703021509,-70.82722958813588 +1562,-88.28563027365179,-78.71778003826934,-75.72087204419721,-70.1305895469612,-65.51970206904268 +1563,-81.29439100657228,-70.65593307385282,-73.21249110209111,-71.1450310498426,-64.28548658431274 +1564,-87.56553847977686,-70.6155091056092,-76.68532500620599,-86.60675116572642,-62.57895312489736 +1565,-84.79910000550348,-81.5860073834657,-75.50361682484231,-78.47979874032119,-63.4135089600873 +1566,-70.36228018092264,-76.7499829516323,-76.62845968966573,-74.21514067185119,-73.1758751223356 +1567,-79.2067863625074,-78.93499526864136,-69.4180618735869,-81.99115942129212,-78.65211176992142 +1568,-82.80592392654513,-83.8329009219456,-63.771338693308614,-66.70722605498014,-75.51753471150191 +1569,-82.17726743159558,-81.68129510167604,-74.45189691686646,-69.18118229235274,-75.13391678203394 +1570,-85.41532577926985,-76.33953529816245,-64.43366691041025,-72.09850069581312,-70.24566791817533 +1571,-91.75634915715764,-73.06081912882532,-77.22511048370905,-78.44723517346716,-76.0966017979147 +1572,-69.45968062002686,-87.42906923475101,-71.42401240871936,-69.9853813620328,-70.88160634312155 +1573,-72.55399499570625,-82.69936686696227,-67.71961625603805,-69.22363185185645,-86.24210457444309 +1574,-67.60258994093849,-74.44348940456537,-81.64782743052342,-82.37550804462504,-81.78813022917159 +1575,-82.20680296094316,-79.48586217348054,-71.89425912501494,-76.81265697679147,-76.93889539946169 +1576,-70.23188539601848,-81.62778969670399,-75.22047676995427,-71.64923201991462,-70.97602085550999 +1577,-76.57934406600917,-72.18164204517466,-72.33242077312241,-87.89377735557095,-74.00950444425204 +1578,-81.58839757444049,-77.02059649537738,-61.30881824156094,-65.0687082439449,-73.51340415527139 +1579,-76.84669290266402,-82.07493223353114,-65.06745078049224,-71.50370899080042,-68.38843885844382 +1580,-79.8142631502707,-88.43110613753683,-85.43273692862553,-68.04558346955146,-70.9515349771625 +1581,-80.24220775617914,-84.7938824636514,-71.69077818954722,-69.50118677649427,-69.666913012235 +1582,-85.85034800520857,-76.02985255092894,-72.19044118555583,-68.54320415793013,-71.01769835283366 +1583,-73.42941199896438,-68.30914402714963,-72.23212454967546,-68.20254377215414,-63.66089037582125 +1584,-73.89641010494272,-68.07453865512475,-65.99466834972596,-75.82170492249638,-64.27088949418503 +1585,-77.03533693591581,-71.15774157244336,-74.68673409689875,-72.32348606402654,-76.6928460710784 +1586,-73.60239392837899,-70.07231227040667,-72.89154367736171,-74.26166549287595,-74.72875330349946 +1587,-87.13641886995616,-74.28479746028171,-78.68206681376559,-72.98781138836013,-87.68780647463092 +1588,-81.45268071084249,-71.88230634546974,-72.99297292862686,-82.68429554641452,-81.28926077260085 +1589,-78.57749178149297,-73.54356439790614,-64.56839648690705,-67.65051664730574,-70.77249341655758 +1590,-75.78830456250951,-77.19862217869247,-82.34723403225745,-72.53182386446773,-73.96584927104907 +1591,-78.61349040029792,-64.38054969230897,-69.03785810762247,-65.3061535825314,-78.22395214007076 +1592,-80.78046701066718,-70.94656892104427,-71.09107536414918,-70.51951869249879,-72.04508977176879 +1593,-77.12866985802117,-74.59203211493192,-63.770693485101084,-75.00459816113495,-62.51937741224882 +1594,-76.47848926598525,-77.76490354449405,-70.42147058489793,-88.50145845862485,-78.4205462093289 +1595,-74.73350855989415,-75.04350719506414,-86.40842035960227,-82.0264707415914,-63.32482594695769 +1596,-81.73461538314152,-68.37929487600508,-76.9196195442297,-74.47912650363517,-69.33992676728148 +1597,-76.09824692762531,-68.50359800487425,-76.5799590839147,-72.38462993318286,-74.92991141809716 +1598,-75.44786838101432,-76.49714639266183,-79.51532957435347,-72.84877492205528,-79.58227860552779 +1599,-78.01580143415639,-70.18321449292996,-74.53465898766471,-63.280951901913575,-77.75138474921143 +1600,-76.69817878437809,-75.06910693952177,-75.05272663688987,-72.20012179031856,-78.8431511736952 +1601,-76.75911729999778,-70.58595056911881,-70.3743377640632,-63.89617437538069,-87.57683980064547 +1602,-68.26490110942376,-79.39288733234025,-71.50154335149259,-62.96273552036021,-69.90596310901547 +1603,-70.57148640226609,-80.06019605900464,-78.40363422927943,-69.09477054021127,-60.14572887773714 +1604,-66.76073905701514,-82.6191704554143,-66.7313650493268,-64.99566819360598,-66.84803751200394 +1605,-79.06626765834457,-74.69614069576528,-74.6141378034724,-73.33327339040216,-82.56797990553426 +1606,-77.94404361427978,-74.91967800272016,-76.96435460020477,-65.0728235931685,-79.28546918424514 +1607,-81.11534275008535,-69.48173276896435,-76.58441117120775,-71.14048695561725,-68.99634023422783 +1608,-65.8948298730134,-75.91576790179738,-77.3495381993132,-66.53005736574478,-79.88790591666273 +1609,-75.10987736269871,-90.10025748690201,-71.33247766803254,-70.48770755854545,-80.34888585846976 +1610,-75.53478988385976,-76.72779682108595,-75.39583899642263,-66.85587085310988,-73.28826085268672 +1611,-66.71005405076524,-79.50999749818686,-76.81682273404259,-78.95340563325,-81.24522308955392 +1612,-68.78723937247058,-75.25650962690251,-68.23170204501083,-75.3395381244563,-90.1859222039681 +1613,-73.14970543254522,-83.53773286501915,-79.99992123331316,-75.14255645684764,-70.88924514422482 +1614,-71.752474415656,-72.8615826312895,-64.16001837142063,-75.19644817825473,-76.93193991598947 +1615,-73.29967315197237,-78.19633394395429,-68.84737822037694,-84.92076785888302,-66.44433765939506 +1616,-80.35757878762402,-77.23743236342261,-84.49148884742719,-75.9061810094755,-73.16835099595204 +1617,-65.78439787645297,-78.06152877153058,-77.10913435830706,-76.2121671580323,-67.74031312847596 +1618,-67.40709019166586,-71.78184413936485,-67.36109454421268,-88.91858541759272,-71.04984976909576 +1619,-73.65664050780383,-77.1284715363909,-70.4111961342553,-67.86368324065032,-70.72075935767944 +1620,-68.74468567187505,-64.88080608056906,-61.48106529585348,-76.32435883224142,-72.10144694692983 +1621,-74.52507728728271,-69.16588086221877,-72.7879869091622,-75.16851677136079,-76.21323732428226 +1622,-65.17500411466476,-61.034597937270924,-65.17457938147037,-74.17716880395807,-59.372738418992434 +1623,-82.67208893888792,-64.3075866434627,-76.16634763220661,-77.81721953024191,-76.98251839105308 +1624,-74.00403329925958,-68.0591826544381,-71.75239582901932,-63.95703612052643,-69.7676284159972 +1625,-73.22636477576177,-76.32822007856467,-80.87437370250159,-74.32864277159193,-68.57660913270426 +1626,-70.76817820617879,-68.67162058442824,-71.64783438053652,-70.93567094864527,-65.94492440727711 +1627,-70.12104506889435,-81.2414080250179,-73.19776050102134,-70.36411291926632,-75.3057414720717 +1628,-75.11636781779517,-65.21408032021567,-70.04984071572468,-82.15137639321297,-68.9732636350452 +1629,-72.19774304580893,-83.91017397520311,-70.33799902220416,-80.1748000898772,-69.28253095682534 +1630,-77.68878909614058,-84.59432006507464,-62.457779225693045,-72.71942751373867,-76.3708240106296 +1631,-66.09685296251315,-90.38149890989159,-60.823467103000155,-71.14422481048173,-71.65044432233972 +1632,-69.5395305877993,-81.91213568294802,-68.96891937117334,-73.23087774991657,-76.25125227139608 +1633,-81.83764165556188,-81.9465805732849,-77.07009125976667,-81.8473293829816,-70.90330534634796 +1634,-73.79069959589,-86.30926239427227,-72.85036552366006,-71.6854130657466,-70.81440349277732 +1635,-72.70627357996004,-79.25672916271445,-66.90250066032807,-85.45525608951361,-66.88019582328049 +1636,-74.27703982192094,-80.6461794577786,-71.37541354448192,-81.67933861003578,-63.813490247188724 +1637,-71.84134999853893,-70.41524990956043,-76.84974084539758,-79.69859587149968,-63.79660138285321 +1638,-64.19064685335077,-75.67644529161636,-78.89830081460352,-74.7065450346661,-67.31913830099913 +1639,-74.95585815746064,-71.19097619822392,-74.57372764559551,-67.1795575554791,-64.45798941943539 +1640,-71.87854085303879,-66.59771692001094,-73.15158679339567,-79.79521230736526,-79.19823771616555 +1641,-70.35395487825447,-70.1015655172372,-67.74830112747617,-73.98443779205707,-65.11279901544235 +1642,-74.15852267684554,-68.1180106208349,-64.62877508136219,-83.98878803456833,-74.91160418869923 +1643,-75.30999621574381,-71.57743137149254,-73.23607364475632,-76.0348434431491,-66.75420239113909 +1644,-72.30345464764719,-73.10310764398271,-77.26239229614444,-76.93022537721023,-70.61602672730139 +1645,-70.48775606428144,-70.7710723445326,-73.18756511973825,-82.38935443579537,-79.38529273479061 +1646,-77.55181999201528,-65.93958591918734,-77.10038506840955,-75.78029762072825,-79.99537295725817 +1647,-72.1054612750305,-66.90848139758195,-74.72401616172768,-71.64970827757904,-75.14430211542148 +1648,-72.24278983791581,-78.94926223140519,-73.75378785410547,-69.88731618967532,-69.95711508020234 +1649,-82.8867778529246,-71.97534968170574,-64.48585000029703,-78.04757040680971,-79.2216935436416 +1650,-66.02675896172661,-71.49403302484016,-78.72887653377155,-75.12882924394597,-77.76422704781668 +1651,-71.29388792761812,-84.12570084883563,-65.78277432564673,-70.72098384888669,-63.05344343450391 +1652,-70.99649838369366,-70.069128771865,-71.82599304149399,-63.0096925901472,-79.94898913022237 +1653,-70.98638432935866,-71.08019757881654,-82.56205321976842,-66.32025536818274,-68.2132697121091 +1654,-78.18803334091301,-70.94643660250043,-67.87871732108117,-84.33171970417096,-87.1127808265995 +1655,-77.75645731950736,-63.93090389150493,-66.03122549441888,-70.89646777343344,-78.0507752189847 +1656,-65.24684907592216,-72.85432776501396,-67.07898216149539,-79.82455650466025,-69.53467199829656 +1657,-69.69274988188175,-61.33084206181257,-72.60594412404073,-73.71530686757768,-81.1783794441618 +1658,-72.49248552527227,-69.26747735134427,-69.42529707818461,-79.78213013938338,-72.63974286414452 +1659,-74.23235141993459,-73.46242131670655,-67.95610164071016,-77.09658263394053,-76.58634695598568 +1660,-69.84751043129356,-70.71101010650088,-75.22930913025218,-87.05410744625087,-78.58596480315376 +1661,-73.87473682066339,-73.4353909783896,-68.31711687252368,-75.34321144075074,-78.61453752091091 +1662,-73.4402017231401,-73.87894848607304,-63.01185927167109,-84.72297335309905,-69.17906121080132 +1663,-70.55800703834173,-65.12887846433856,-79.27853220309075,-70.37452385015055,-86.75320925531248 +1664,-75.56780328451632,-75.79223218380145,-71.54771006545893,-80.14556637021889,-72.59897184047695 +1665,-79.55264135935553,-65.28050953812759,-70.09440071423194,-75.74272799516784,-73.46831390622552 +1666,-76.73126322814676,-69.14881335347239,-73.76702649295933,-67.08622898840864,-74.5405157043231 +1667,-68.57929447673256,-72.9371239702127,-72.68224203911835,-72.90388825647096,-70.3679571921139 +1668,-75.07447170365373,-79.98801533905409,-61.7140506550392,-70.09185060743987,-68.80346112091912 +1669,-65.64266480778062,-74.93811824955075,-65.6296633273033,-75.73540717306936,-69.03497125785013 +1670,-73.01378332643893,-86.28276502004825,-75.63747055535595,-79.04188721824674,-82.85900518285504 +1671,-66.13305595747295,-66.59076576740223,-77.0475033639407,-67.56013403677672,-71.10351339677285 +1672,-64.68412701700694,-73.84938497880091,-66.63559074931136,-71.10119092648169,-69.42629692995366 +1673,-69.20456560103727,-68.31361990441135,-64.29928445700929,-70.99690780718872,-62.290811844961965 +1674,-74.46597514822334,-68.24662819360356,-72.10440558468846,-75.3108063476572,-84.39746348627179 +1675,-65.67019432622479,-66.46661060340394,-65.02710706686868,-70.31794362234922,-76.45478163916994 +1676,-78.63123507340332,-71.44135533130951,-85.17386629229932,-80.70059689594255,-73.57817196581404 +1677,-79.9955348707577,-75.24077317987593,-77.06427225783088,-80.18706354219067,-84.12969672993913 +1678,-78.66272409737726,-65.14326327825218,-63.45058546103686,-80.58865829693197,-85.40463162939398 +1679,-69.78254631129718,-75.54448737587273,-72.98742013348559,-81.13987702259895,-94.83933633982592 +1680,-82.84611612843375,-74.16133208493686,-75.10084422315839,-88.15447460567991,-81.83686446639395 +1681,-66.84427617422551,-66.25484983708212,-76.47433427097985,-68.35001592948883,-77.5160560651226 +1682,-73.52843760111858,-82.890315394969,-74.30367192218746,-70.27994635037689,-73.91775583414855 +1683,-73.83327305235827,-82.45943285988783,-85.58151524982249,-69.3642549244247,-83.22403413015364 +1684,-71.63872512778994,-78.0627579119355,-78.21044016949905,-74.81359593074669,-70.96747440163102 +1685,-66.63907583275108,-80.00776662877544,-74.17528521367223,-73.38738813827445,-76.55680624417067 +1686,-73.18147119494516,-83.72471462972076,-76.7464114169625,-73.93415571713699,-63.475334117981426 +1687,-72.2401659433326,-76.14412375425283,-81.48884354458278,-69.69150043530617,-77.42164648564166 +1688,-74.86508501039442,-65.05875442314566,-76.92297280444342,-72.165035674804,-75.76607866752052 +1689,-72.21680394119532,-74.38432399865623,-68.82289321756265,-67.91271543694127,-70.30707589649084 +1690,-80.20690850875775,-72.91655632209735,-66.67898539760795,-77.86680485096367,-77.85863703465338 +1691,-75.98880210608677,-73.71927389929152,-73.41015805467276,-68.29556664087512,-72.01813768649373 +1692,-75.03855176733086,-78.87602363557153,-80.68774424649447,-73.13493364562464,-60.62454218152107 +1693,-69.08183028254493,-70.6161612061869,-75.69375712601216,-86.73726966355228,-65.72759329158092 +1694,-65.09834503725492,-82.30498210558906,-66.66470120134693,-79.51024726678348,-62.12436697133451 +1695,-66.21133307929702,-81.8315135225316,-68.00458196774711,-83.01708975884164,-77.15460230100966 +1696,-68.59297874333284,-75.90599808705227,-72.49376916966166,-68.1972800149484,-63.413844344648524 +1697,-66.81308258859227,-81.7540660158598,-62.87424638052721,-70.9709156701491,-58.67465772672941 +1698,-72.66204297226408,-73.0290704042772,-66.97674078262494,-83.58871488262926,-80.17934513835621 +1699,-68.30814141314715,-79.46965617393931,-76.25738739886417,-70.03419270643505,-71.87842909339265 +1700,-73.6464765702099,-73.36301364862753,-64.8835658593908,-68.8288221032405,-59.58142829067085 +1701,-70.92048314940389,-86.85078363456665,-87.12914151813209,-74.33561820828407,-69.71851763694319 +1702,-64.70507749705226,-80.66821958303382,-80.87551178107306,-79.72360134594665,-71.17267125559397 +1703,-66.81656659525866,-74.13296086304231,-66.4411387948002,-72.33591357585534,-73.11132280176325 +1704,-68.09174755536532,-86.86324552463007,-69.84540246335082,-62.62749718506328,-76.46898215134615 +1705,-81.49416573170359,-75.73285821795477,-81.81257225829405,-67.97325120794005,-71.49470153185129 +1706,-79.32658682431703,-75.9190548388757,-76.5268785559115,-55.808803358578395,-71.90829189038797 +1707,-77.36968134181325,-82.8756953751441,-71.88820395792031,-72.34384452250914,-77.97861420063451 +1708,-81.35767873403096,-75.34961917457632,-83.19758779880284,-66.27135697874941,-63.83986382905993 +1709,-77.40758368612173,-74.22381873701343,-88.32152201539746,-80.7825261281927,-60.00863615199 +1710,-73.35922993801033,-81.44192028152281,-74.4798332871883,-76.6518634922813,-71.88307882285741 +1711,-79.35937555208017,-68.58770999882398,-72.99528623184005,-72.0052031534903,-72.44602286596904 +1712,-81.87447773515537,-72.50028188660077,-78.65394849240859,-69.8968989234972,-71.2970771166623 +1713,-82.79585303211893,-70.73233247717567,-74.29720733050725,-65.68121658668973,-72.86616941925608 +1714,-95.04868652930327,-76.44957310550865,-90.29327749328043,-86.5226961673246,-77.2472078435692 +1715,-80.85652085626741,-75.47479349618851,-77.68765320183329,-69.64284590112892,-66.81764690021244 +1716,-93.51851908912322,-82.60172250660777,-69.1786670227738,-83.03896838979422,-70.69400560891671 +1717,-96.38014664249168,-63.581482577229316,-71.60023568266003,-73.63705588973342,-71.89749582390917 +1718,-83.34666203439944,-66.38571464502505,-64.53029119470555,-86.48724070487755,-72.64797907633702 +1719,-73.91520972390813,-58.28628156532801,-68.5136966304684,-75.6033453597422,-70.88089478216865 +1720,-78.30480748689992,-71.91395564407308,-67.95612579145595,-77.24464174456814,-75.74091588780983 +1721,-76.18491728726802,-75.99610759566828,-72.80780916630017,-72.29651463606758,-61.748340551581485 +1722,-76.28434259650868,-79.92164995233148,-81.85443302902715,-75.24777039188918,-70.37431060527592 +1723,-68.23612116597327,-70.67934377424012,-80.11407471166602,-81.29033737765586,-69.44584431785198 +1724,-70.26461927077963,-77.14859911030825,-77.79920387291386,-71.55963210452774,-69.44772325666271 +1725,-78.34044938842001,-68.9680164575389,-79.84959925794897,-76.3925601797795,-73.73244616602082 +1726,-71.71187016146355,-77.01336312838507,-79.45102307853534,-72.91070069935063,-64.30513117559049 +1727,-88.30509741809936,-64.965997964098,-78.99223387954217,-83.20632759665504,-63.43563924351034 +1728,-83.26960949735414,-61.84391508776354,-72.67449550322772,-71.89860381898363,-75.14591954630002 +1729,-85.88232942335111,-69.55302253201808,-75.801103566209,-67.05820424517579,-61.16385137662099 +1730,-70.98447049881317,-73.87771317936439,-73.27065930779149,-69.48439985206035,-74.99148025319249 +1731,-81.75133942788817,-72.83603064929416,-79.92672504934431,-73.9897436824554,-76.21452849050232 +1732,-70.97374389799795,-55.96711056773513,-75.61169786841404,-69.34152658215716,-65.78469670950857 +1733,-75.17866933190822,-67.28293531642932,-80.86215872329453,-66.94698758328022,-80.86881740956916 +1734,-58.75296305494651,-65.94487405049829,-64.9110351995554,-69.83938746590279,-64.05458641352311 +1735,-71.25597662139579,-66.60674372010224,-70.83004108709754,-70.64475505994652,-69.06088190006079 +1736,-61.94949130159621,-61.946511054667596,-71.91818139494124,-83.9648237914766,-74.23887743977261 +1737,-70.32067773569116,-74.3965272586338,-78.28190684758144,-70.72163003295961,-68.70071116984982 +1738,-68.45505152018193,-68.68272163435776,-66.29797351980994,-63.83379550233045,-73.73980743347256 +1739,-75.9307068438183,-71.01508687986859,-68.88836478801437,-75.38085340353452,-71.14655208398024 +1740,-70.61570779920014,-64.16239630076964,-74.2161963622028,-68.46100626774292,-74.79554448834796 +1741,-62.1232003930291,-64.01469246212022,-70.19807379426318,-82.9452654849699,-66.62613439088085 +1742,-69.3563389586593,-73.3913608022317,-80.07923242490558,-65.90746843594353,-74.52122558771751 +1743,-65.8431674613724,-88.11620834103017,-70.25367600719804,-74.5683543581835,-63.255853188491145 +1744,-79.95138212337746,-80.06852385596348,-71.0453664808806,-66.51668171932889,-68.56066303642444 +1745,-67.49427150244509,-69.66451708275096,-66.76003566543692,-74.2316366109274,-71.50226531217908 +1746,-77.78000157669031,-75.94312032414663,-65.08314168179874,-87.29781575882869,-68.1167279930553 +1747,-70.36539904378132,-77.58738844331802,-71.83573028631226,-76.5488787359938,-70.22503216496756 +1748,-65.68582375463143,-69.23902212239994,-76.20586861833978,-66.23310373083041,-78.90416471515458 +1749,-63.93250356823607,-61.683431876811674,-79.40077930244333,-65.01515039859383,-69.99075684697357 +1750,-81.46089843776794,-77.5595422027763,-74.33010376510678,-67.59551897731737,-78.48537320132615 +1751,-73.31281775464981,-73.12248060653866,-73.73441622931071,-62.970278357554506,-76.68090174515436 +1752,-69.68644926040399,-74.86484838170666,-67.76815856656961,-66.85116477424862,-88.80274192241319 +1753,-78.410068740747,-84.40136490759438,-67.17488939716694,-73.27494733842113,-73.56905834640285 +1754,-75.99204772980482,-79.78392622065363,-68.95681295722868,-71.01446613479578,-71.17018277778949 +1755,-71.07851089603557,-85.58151622241883,-69.39852033465867,-68.60935803255774,-67.72823561294022 +1756,-67.07426835209526,-91.13699027342612,-74.26105208576298,-65.7573330886573,-66.8959559573778 +1757,-64.20638554586179,-84.77121951152797,-72.00243438862718,-71.62981158712832,-70.83160638155061 +1758,-73.89601136981065,-85.18662913603187,-63.09167715281962,-72.87046295628294,-73.68783946415448 +1759,-80.62637443674198,-78.6815658999539,-61.15349996779637,-81.62755992614578,-69.00929126171646 +1760,-73.95335419620997,-76.87139498773801,-66.62755106229797,-77.14336377697902,-76.49898023892509 +1761,-78.23100225089864,-76.72602728345322,-77.30368099501672,-81.1151680405763,-73.53410824311572 +1762,-71.95776099946917,-72.99812052459139,-69.94012881861917,-72.85121048661,-69.20432372887869 +1763,-80.45869110729099,-59.17484268336057,-63.91233000192081,-78.9746654866614,-66.73656685221906 +1764,-65.25801442874655,-78.39315165275063,-80.93320990230458,-73.95768627143326,-76.96702640872284 +1765,-77.19983969390607,-60.453677451021996,-73.65089315600798,-77.45202230015055,-83.18754620229872 +1766,-68.99915717964423,-69.30622730127665,-67.56429610610368,-64.5584864683452,-61.456917122309775 +1767,-71.80456191222595,-72.12312346915094,-68.58789001141693,-70.38427137454792,-67.8446764598658 +1768,-75.42340521473314,-75.87120095353644,-68.43957715906505,-80.7787667155855,-67.54504550517653 +1769,-78.35286885707876,-74.44332579723998,-70.71662679396002,-69.2767515438126,-79.04475423393177 +1770,-82.57029709079153,-76.70753082375596,-72.34719282936182,-68.19514919077596,-77.03787087236678 +1771,-75.22605969387597,-70.13904033696936,-70.98107862045534,-70.33260526545803,-84.98626583334381 +1772,-72.8233927862944,-78.40073598741108,-65.90057981627088,-76.86266717862647,-78.98348153109045 +1773,-72.44337815100073,-89.9907546935165,-62.42057048002206,-75.56377275470919,-72.74528920821686 +1774,-74.20722049485867,-81.35442021395322,-63.25383883492327,-63.9956952434998,-68.75590769110404 +1775,-78.04326743567087,-85.11334784104433,-69.33321481732901,-69.17123919444562,-76.7590545739073 +1776,-72.9393909058477,-65.28657890224932,-75.09061110292835,-58.975427642644085,-70.57775570861989 +1777,-69.04321707209319,-71.05720644910853,-65.96341270776168,-78.44930961821262,-81.04491644787129 +1778,-86.37745896319366,-79.35444894245067,-66.37874667978122,-77.89487827049327,-75.49489380046002 +1779,-74.5634117692623,-81.35263851020355,-67.15343078320242,-66.46125643711392,-81.19010088848353 +1780,-64.0747550826443,-68.37342755673596,-70.9260076002594,-61.47917620519718,-69.82438709948747 +1781,-74.78307745384546,-72.32961194632202,-75.4633859359111,-66.87552182893047,-71.45856691588774 +1782,-80.47751826480491,-68.63655462961863,-75.84300964290432,-63.00005196446247,-73.47599791873112 +1783,-72.36276859897838,-71.324900715689,-72.09099164511154,-86.24617722463805,-80.53124305801951 +1784,-72.19006708762558,-74.77826689211783,-69.23155368140239,-77.02991661040062,-63.41604056743933 +1785,-81.02999301271898,-71.35835063908486,-75.8980918119095,-68.77556889542845,-76.69698859802521 +1786,-85.88597769019965,-65.99211312961361,-78.2824029979283,-79.52076518016601,-75.80175775408279 +1787,-71.18443503397792,-74.43193680391818,-64.71774376023879,-77.17458533755853,-68.37335693032189 +1788,-66.37923334615057,-68.91692966948946,-69.00892198686651,-76.23049574588444,-65.92243893585412 +1789,-63.61073650497573,-82.04740202551187,-74.33215548822857,-79.61410251709046,-84.65001353437484 +1790,-66.0812330124862,-78.61177957238638,-68.90931077358556,-75.66780832641277,-76.6572141588439 +1791,-68.4716399368853,-81.48215683253405,-66.88474559344503,-78.20731908652151,-80.16207933796657 +1792,-79.67291470392236,-77.80669864940018,-70.34399851983513,-90.90047708252833,-74.87707124394636 +1793,-60.42621538649606,-72.31713920082018,-68.15149488796376,-80.40691215883436,-65.8200183640529 +1794,-70.77397103564235,-73.94749981634996,-84.29145333437285,-86.16906934784953,-59.06179383373152 +1795,-64.98574060977319,-91.58707457849107,-74.41937411609584,-83.3609286802294,-72.33398082026773 +1796,-71.88562370596114,-67.02305062513368,-70.55897316333478,-74.76797285524151,-64.5235364476884 +1797,-80.50504786308073,-72.36453773092731,-62.58308848402298,-69.05470916897016,-65.26586017221906 +1798,-67.65695133269135,-68.64883008702688,-67.9588838633428,-70.24255544158125,-65.08917917176393 +1799,-68.7333989291365,-77.43690257552667,-69.13035009687728,-68.94210985089542,-74.5315073339789 +1800,-82.16219151966409,-65.50277182345398,-78.1189984430699,-71.09317811649616,-70.54617068911284 +1801,-63.285080760727496,-64.6225055950226,-70.75952481401295,-60.78354356733332,-68.58145329668443 +1802,-65.02374739295713,-66.44667588402721,-66.41284751479648,-70.57787451915274,-62.630367333510414 +1803,-69.43157180198851,-67.11718398595805,-67.10184537143785,-63.35282895042652,-83.55246589917232 +1804,-66.06245503950848,-74.34443574779786,-72.34075728846767,-76.03505915096686,-69.73937216339209 +1805,-74.63689842206693,-68.10089131599968,-68.34554902150921,-70.75241783993907,-68.29704932993108 +1806,-69.87287667673449,-68.49254381802214,-64.34625512917896,-82.24853251582095,-71.04321129156448 +1807,-81.1116924582961,-71.30110153720206,-82.07089253566963,-73.14811902159452,-62.26180457257326 +1808,-62.2268241265662,-68.04557937722056,-69.72393085999079,-71.43647481127712,-59.3812834092642 +1809,-64.95216151472349,-64.83504673866305,-86.3485500988757,-73.791314915166,-66.37338775408396 +1810,-67.86214274593964,-68.24056289288184,-73.66778164127174,-73.85330089949124,-60.00570716833592 +1811,-66.48728347862692,-64.63022712170698,-70.13705607154579,-69.48999661793046,-65.30088479292873 +1812,-80.08038314615645,-78.54268069612712,-64.35530531710228,-65.13366565869947,-72.14189678565711 +1813,-62.85880985579062,-77.65212338645917,-75.57252153315181,-75.55111666725358,-72.30074865426718 +1814,-68.09116611889048,-78.05423409587257,-70.25225582634364,-64.67493983264542,-80.00064665154699 +1815,-64.3502408504408,-75.15566234019366,-69.99358366443002,-71.05645241395639,-80.21505188322594 +1816,-63.85283959468323,-73.65961774089655,-83.1058608396189,-74.8359648631211,-70.88269771848384 +1817,-67.30583884970511,-77.45646409733834,-71.59550058372919,-73.37639716326065,-74.42207186238936 +1818,-67.90734042803122,-73.18775385328833,-64.16675037682828,-85.83662097901617,-65.55393091184364 +1819,-74.02032453494739,-81.79125808395105,-87.03566227129444,-65.89731731607861,-77.79567793001709 +1820,-66.52442533911972,-79.8842208855523,-82.94443227611323,-67.32624130542813,-70.00595429443004 +1821,-72.87792897209704,-72.38283665828457,-64.15598476026703,-74.85924572924796,-69.41608774305155 +1822,-61.270169842864625,-74.14965189425514,-73.94242944731363,-68.36409096568913,-68.07267458315292 +1823,-64.19092436379034,-70.10207165529297,-66.19993228810023,-77.20767801959988,-77.29044724472978 +1824,-66.4925707922095,-65.79606222100088,-59.63619581646614,-68.18441064476941,-76.93170167255622 +1825,-81.60321958555349,-69.37305588216182,-73.55605117410394,-75.10291038992314,-79.69985810023168 +1826,-69.21978334054295,-72.00516746327934,-67.57700847213803,-78.99890345094116,-69.30355992992627 +1827,-76.731909806392,-69.72497488662421,-76.94817005834703,-77.13445337345254,-85.09153201032315 +1828,-70.97294074884904,-76.07344118807646,-75.56097472375097,-79.38812973535931,-76.11673733172803 +1829,-69.42137566914167,-68.82218676442827,-66.51123198913263,-81.44043380163419,-80.35763302592726 +1830,-70.70549399613907,-75.67623315071,-78.06416901055907,-76.41232385647265,-65.06356641661183 +1831,-77.20909824108867,-78.70445756291743,-60.57526196996413,-88.42441700198609,-83.367520537087 +1832,-78.34055519870064,-74.41531119260989,-56.63318419523514,-72.30611309298357,-95.91911856847 +1833,-82.0630412339306,-73.21720198566547,-61.863448616189025,-74.76437632826628,-82.54530330521676 +1834,-72.66761491733705,-73.67805726601904,-74.43236854180208,-70.75353543103711,-68.36736816267532 +1835,-82.29408058492675,-71.80723557734969,-69.27891974675858,-71.4399277353873,-67.0335196563175 +1836,-73.81491753863033,-78.97723009544426,-69.69097952417023,-66.10884105436435,-82.43158318738239 +1837,-73.3145532936976,-63.805481123489464,-77.79646909968848,-68.56692032210424,-78.8961485707676 +1838,-66.80602216237513,-66.7640876746548,-69.85670101119541,-65.83456423900077,-61.78103875242062 +1839,-77.87530543327027,-63.8315742013234,-65.75515359074755,-63.54224244653508,-64.75233909960821 +1840,-68.98557741399794,-68.29554980783986,-69.3270064483631,-77.25122464455794,-66.4364932241349 +1841,-79.63863839301159,-79.89414577230174,-71.06965307221192,-67.52491131449189,-67.36955928367486 +1842,-74.1447545708461,-81.65166855716647,-78.00729876716943,-72.81151935370556,-66.43463026689386 +1843,-75.40395178330932,-72.46888799327344,-78.61603329473535,-71.55463049866518,-79.43818555436036 +1844,-82.14294021949803,-80.27044867919138,-63.035045403136145,-66.74269965795753,-75.09607076303978 +1845,-76.34250682288501,-65.34460567644771,-67.29767960353138,-70.5902113466061,-67.12471124033185 +1846,-70.05414397438636,-71.61429664897952,-82.76244120483508,-68.65846220923551,-76.3172475704667 +1847,-78.60099992132228,-75.43329342321258,-71.16151535964326,-64.85208656627388,-84.55521482976008 +1848,-73.72066492327647,-72.17234942608272,-64.69685047454826,-59.27424841689824,-75.45940150829328 +1849,-78.78969836394403,-63.89280397289538,-72.12027009730151,-73.44697663478982,-71.30568485814156 +1850,-74.58987751060037,-64.99363327901871,-74.99387591225636,-80.86141541715403,-70.0184889197104 +1851,-82.01764161563234,-83.45953318417753,-77.31056422672337,-77.70870814766798,-73.08707950443484 +1852,-84.31082865428725,-59.98205874755168,-77.02389935104428,-68.40223726915431,-71.42207086133035 +1853,-66.78577170729118,-80.63307847351015,-78.40660624482017,-62.32535831589541,-77.85747165937858 +1854,-76.99929973104523,-71.18030353531927,-73.86653302852099,-61.42219015569424,-77.29217324005012 +1855,-63.31143770333651,-68.11221151140657,-70.58290109722279,-69.66259704958709,-81.65631005637817 +1856,-80.64855357728707,-66.45973022280353,-66.83009885181151,-75.09396107247986,-79.2813303831458 +1857,-78.12123860555423,-75.31045732091835,-79.86464218343163,-82.54013573455084,-83.86392191255086 +1858,-69.7169769474901,-70.01035592173928,-70.45684686640902,-85.63415188200037,-85.26005194745902 +1859,-66.67766466901286,-69.70984456810103,-63.2837977183523,-69.1250173710568,-84.01017074982677 +1860,-69.38835932049885,-65.66693253971991,-79.86247526420465,-87.22117499766638,-79.56725217125171 +1861,-64.12597670377146,-73.36693319737432,-71.83668430432319,-69.84570032992328,-81.44326410155155 +1862,-70.53720203160711,-66.4099887644358,-74.98564674542615,-81.34816557164963,-78.50105117626171 +1863,-77.68235765436054,-77.97641540883014,-71.5079975695663,-69.26808347250423,-75.81186189683157 +1864,-75.34622180660573,-66.10825129771789,-65.94197428230721,-79.23370429605934,-81.28520353092279 +1865,-77.58114700487852,-67.46633922564303,-67.50911696497792,-57.532709688117684,-68.92602198876784 +1866,-70.5585721827718,-73.5664091080737,-70.77758045084155,-67.47502390408896,-73.18840039973243 +1867,-64.39043234063121,-68.98376835387062,-77.40338066984155,-63.49263378424423,-83.74539586598716 +1868,-71.14194292655428,-67.25845353181491,-66.19845211041819,-73.12487761798862,-80.30996765404441 +1869,-70.93034077420926,-74.03462746870042,-68.13632072937233,-75.17416471319177,-65.79095571779497 +1870,-74.37103282592054,-70.77708966341943,-69.39715416453527,-62.86132146061111,-70.7510001182748 +1871,-78.48349418957712,-76.7590563011533,-68.56820493039525,-64.2441335748631,-65.69827441797986 +1872,-85.36211306608638,-80.09738422077399,-69.8399775457195,-70.9399691954599,-71.89558202141018 +1873,-87.18280203156858,-66.14189057547817,-71.39997468896473,-77.14651180388,-69.5587286473039 +1874,-79.14898176465368,-78.28392960671326,-73.20173966326222,-69.54086216817502,-67.44779104660915 +1875,-77.88610224762375,-72.577194627663,-80.37275388021345,-74.6483130216344,-63.84463438678105 +1876,-81.41099435360418,-69.84340030548965,-74.43017195771192,-77.00957473887318,-64.16855209100652 +1877,-91.3999883843162,-64.00397839019338,-69.67090726261317,-71.5394717996041,-69.50248660124946 +1878,-77.43838867800879,-82.2095056990494,-75.00722670203307,-71.5275548855923,-71.55094843813907 +1879,-81.88404216633951,-72.71271924797684,-72.76977650384967,-74.57614500344326,-65.13637453941583 +1880,-88.31474630465725,-70.11750386071044,-73.96788766281865,-82.79031892716345,-71.81570216543011 +1881,-93.91355023806412,-71.36352855436257,-75.38136900534327,-68.71719323029394,-65.02893996383878 +1882,-79.27675520563122,-63.79321457922477,-79.61967758629058,-75.29731094032032,-72.30854239529535 +1883,-77.25174429657757,-68.5212135748182,-74.38060720944868,-71.35462460929355,-70.9737354404775 +1884,-71.09445628474641,-61.21829688706118,-81.74657898704162,-68.92471057871238,-64.66458904251132 +1885,-79.8782358467442,-72.3299046788022,-66.7374224362593,-69.55749267728194,-81.22598211769562 +1886,-75.93241838117282,-64.04752297811231,-68.14188521456448,-72.48405779657273,-77.89692321222833 +1887,-71.58460859411757,-80.90196671935321,-66.94003238070897,-64.5813144123492,-69.55233200125984 +1888,-73.74435093328263,-75.82215450939968,-68.55491650345145,-62.998305133132845,-72.42790616082127 +1889,-69.91197078492584,-70.91938238216467,-75.66582114100699,-75.42963635771738,-78.55964607198017 +1890,-80.15627842422359,-73.48889369936592,-69.53474950183897,-66.07941039305847,-67.69923111005335 +1891,-68.78086855852956,-74.77444780108415,-64.82117552627037,-75.22842722146618,-63.66271273956397 +1892,-68.04791594992746,-58.10162043825539,-67.47814576660312,-77.89789822777676,-59.49963018907821 +1893,-78.4355300159066,-72.14302670860069,-62.892523448010124,-71.10323428822029,-73.2784410794398 +1894,-68.96440054944989,-73.9863397340925,-68.15800981979417,-73.55064899214075,-80.24357270377693 +1895,-71.55198334450958,-58.727482144891056,-67.90470840989734,-66.80987040376846,-74.19694770080363 +1896,-71.98699171624921,-65.49943245592182,-78.2031757308518,-73.37129530729918,-76.6792354389184 +1897,-81.9359571411945,-64.06585881228008,-61.770716303157926,-76.38616800434717,-69.77575008505677 +1898,-77.35039977394291,-73.44859572019425,-69.88824301268515,-63.965008000161866,-75.55426404187095 +1899,-73.64957056091869,-71.38360534127301,-70.78202070242162,-68.89123040573283,-78.21384977075975 +1900,-73.11465457864327,-64.77590155578636,-66.58296406711138,-86.33035083645674,-66.33490639461398 +1901,-80.67393640000037,-80.8619881699685,-72.7119277063137,-65.47893475185653,-78.5645031766234 +1902,-87.28430089421327,-66.68015072071769,-69.08753071643466,-73.82534476575314,-75.11512819127871 +1903,-77.61425382026557,-62.25753540025675,-70.38945760499891,-68.63558263005844,-69.61687515233389 +1904,-79.7702165078196,-76.70570530405958,-75.59906143701907,-72.02488000267377,-75.79400659623401 +1905,-87.8141787542673,-65.78381106197689,-73.28907808605388,-69.31250476582689,-64.95283110146585 +1906,-82.24403405265737,-82.57902938078125,-73.77511327261561,-70.69985177855833,-65.8172326443555 +1907,-88.6247947082698,-65.35306620706572,-62.41491837720872,-83.9289625437637,-72.71038218322418 +1908,-82.31903250574794,-67.06288421482807,-68.6710099423989,-73.09847530727224,-77.91576128206232 +1909,-74.32039398978787,-67.89452115840956,-77.36577429586254,-70.24676803339148,-74.65867829913908 +1910,-63.70096677967215,-69.74973844749526,-66.96904485550903,-87.3557836626862,-69.2276732618304 +1911,-77.87861948028025,-65.62822488486236,-68.29726784539396,-75.07802203764166,-72.98553951495705 +1912,-75.24425845213862,-66.68920383847156,-68.77835484958963,-61.98224322848063,-79.23101071321649 +1913,-70.60166851426416,-68.16830754701033,-67.91110758594132,-65.29454436174922,-72.53659528496466 +1914,-71.91547632274185,-79.48210103141417,-73.47567796326791,-63.32131584998416,-63.40265506683267 +1915,-73.46809629023865,-73.68973090114672,-64.54021651266068,-66.24815787966703,-68.12262499244888 +1916,-67.2248882553452,-74.31237277736268,-78.29208789172179,-72.2923408659226,-71.489431106128 +1917,-83.24260294570138,-72.33809022946338,-67.24518626834572,-72.06890041482602,-81.52115338291911 +1918,-67.49997273466255,-76.96755436011723,-70.22384280352388,-69.49073340458654,-68.51911201089712 +1919,-75.24778436086636,-73.82078222013583,-72.15435893346653,-60.05215327080576,-63.28360838082343 +1920,-72.6125772818024,-74.2091226615649,-73.51188579328402,-80.88228993899608,-64.30222741669962 +1921,-76.59940592046061,-80.61785053598209,-71.32068100478307,-86.60520820634308,-65.56482818216509 +1922,-78.83859234950562,-76.47622957401215,-71.30416340000671,-69.638493441347,-82.15527381869342 +1923,-76.90332813746221,-68.17608686152913,-76.3294734131528,-76.46736408346375,-66.32770217691834 +1924,-72.94881320945187,-75.31071018488939,-79.13319826698219,-77.49439748391536,-73.79843393110175 +1925,-75.69947912294955,-58.692468534482735,-73.2901599913755,-69.86005034373441,-70.22451158667494 +1926,-70.77818905865999,-69.40899181792392,-77.73859901901311,-64.14233326053623,-68.05266120902917 +1927,-79.27864260101438,-72.86476219475446,-69.44903619277561,-77.22949778065387,-75.63573348115541 +1928,-65.45076674493697,-67.39360519528506,-72.48638739018116,-73.05507031295346,-66.51832351811865 +1929,-66.0690543307409,-68.26006183145344,-65.72316311013203,-78.0602536057767,-66.91109765124739 +1930,-63.75287820344567,-70.06494504957045,-70.53288108493149,-77.00248818870553,-68.62469510177391 +1931,-69.11620165410139,-60.75277139356925,-65.10067759956615,-75.19541430770619,-70.08507492716011 +1932,-64.7932004551852,-63.92381092045992,-73.550721020166,-87.32862927051065,-70.41272610495216 +1933,-60.941003101684935,-75.88214913572365,-67.70707433103556,-74.34958640123628,-77.56462884413956 +1934,-66.31754983997146,-76.54821679549534,-74.86900029939419,-84.97221030832648,-80.8605384687349 +1935,-67.36604218463073,-70.94043780115554,-67.51508986415558,-74.89931340227321,-69.01790600034217 +1936,-81.60570960035994,-65.61719396873484,-75.70633187426964,-83.3416849055933,-77.80569908092798 +1937,-69.18142287256221,-78.22734707168992,-72.22882348142615,-79.62807923417759,-72.1730935971105 +1938,-77.02035628026924,-76.55823333888334,-61.26827153049561,-69.48675409730028,-71.33205259508921 +1939,-70.39506687608471,-59.48461121893355,-60.1803553558649,-63.88695101832118,-76.87312495725571 +1940,-67.59246136346947,-71.6598705447615,-72.02234594221053,-73.14361025336285,-82.16984942264935 +1941,-76.64688757295522,-74.4813106702856,-71.37442139124128,-73.60950794772876,-69.66221645125901 +1942,-68.253117388976,-72.67766328986562,-68.55120063777778,-66.99009060320469,-66.96031854590075 +1943,-76.1394558449949,-64.99706408417771,-65.87931191529937,-79.59560075950623,-72.3852845381174 +1944,-70.56615732253678,-75.3333023717762,-70.78847055636369,-65.67803291369799,-65.80971422307103 +1945,-69.46959788703924,-69.91103648834113,-66.83891867917521,-70.358157113539,-75.93361505082089 +1946,-71.70265744260608,-65.40771014021944,-71.39526471131589,-70.38887622772064,-65.80167355586607 +1947,-69.19892558243234,-64.7391827354119,-70.2221889251694,-59.2909155089999,-73.34865483260364 +1948,-76.66465483889881,-77.97990512321577,-78.98819807952839,-72.67767468678437,-63.79551603743934 +1949,-76.5809176365608,-69.51302678071623,-69.78857791712966,-78.7492053062038,-64.68643082164162 +1950,-69.66338619801058,-68.266342150472,-73.0480547388826,-66.7649869655138,-68.92639649352806 +1951,-68.57187438982423,-61.2082378334799,-76.75021559403989,-66.44577919036689,-67.98254946358999 +1952,-73.30045447879776,-71.60138474800229,-70.1400566573346,-76.51075584594493,-68.67320487223374 +1953,-74.26120510522213,-73.17082697907081,-72.51304987973808,-65.24599421963723,-73.71944099255137 +1954,-67.12716944008002,-72.08946492314796,-75.81768726194936,-81.93736436844327,-65.25347081955205 +1955,-71.33215285892955,-71.17466444779033,-73.10508094123985,-67.53560180217572,-63.72975605819644 +1956,-75.47980975703847,-69.04181109363894,-67.17655541457242,-80.65381041829498,-61.14135249313741 +1957,-69.82478153040924,-62.0088762980718,-62.53233554695606,-77.1361425321482,-71.24388067223843 +1958,-58.77536180390803,-66.57291969798715,-65.97918254276273,-72.68853210991595,-63.51277131017189 +1959,-69.11653836568946,-59.017467657206545,-67.37285282634099,-75.81007942699496,-65.7941954798154 +1960,-62.9480776436871,-75.60167996625543,-72.58770089419923,-79.65665102252888,-71.97050996618466 +1961,-69.2888520169467,-66.50148785591996,-76.90103493545074,-72.09918425416998,-63.420903858636144 +1962,-73.91054082567477,-81.57379476719919,-75.91027968187777,-69.07220200873695,-64.9126371551134 +1963,-65.66963152253619,-72.81953154461125,-60.48157106892098,-73.46881871004895,-67.34750820034596 +1964,-75.928348182374,-87.62926300788791,-76.94278152807681,-67.69882443848336,-74.77752481822887 +1965,-71.60808448727038,-73.84103821037031,-63.3758365279682,-65.27336419037364,-64.21966144052236 +1966,-80.67407212829717,-76.12610577584874,-69.92404229068592,-73.82346257629521,-71.06976480966232 +1967,-68.61310613698214,-67.65445268940707,-64.67617529025215,-69.6127931739326,-72.18579074933994 +1968,-72.07573778821845,-71.14736308834392,-64.56123756486592,-76.44427649823729,-67.41302106464646 +1969,-75.2254165189813,-70.7215565280332,-66.55395935765947,-70.00467465271737,-64.14421447298537 +1970,-69.96414953517981,-69.45489012922825,-76.01845420099227,-63.64961460335727,-74.23216557980257 +1971,-77.09072465562436,-74.90856521079242,-67.95586786470504,-75.21208171274627,-64.1591049007444 +1972,-72.58418831899048,-70.79120504198198,-65.14519954435015,-68.28652096173097,-61.133537154717324 +1973,-68.78463488539604,-73.28787382461199,-69.63505833009754,-73.59311720780345,-68.03740546137516 +1974,-71.86738162896475,-80.293964560146,-76.94883440229917,-75.91923187236122,-71.9108538943617 +1975,-69.54430141986082,-64.44637474246426,-62.57354467639681,-72.16007005102966,-63.77401006394855 +1976,-78.97000572241897,-69.74677885458607,-68.33678477440051,-93.34471713304278,-77.58683066233559 +1977,-73.26434218311279,-65.6410170111982,-70.09584457248727,-67.26881394010219,-68.1714494545383 +1978,-69.28521177193839,-70.52345823802287,-69.78448259040684,-70.75784617492586,-68.4709745225111 +1979,-69.25354117257844,-76.97182129505934,-66.11789773895345,-71.65964650634719,-62.3313722941639 +1980,-73.20195244127164,-80.09600936921086,-69.82930480456295,-76.8297368805182,-73.59676506492896 +1981,-75.11869073404209,-63.591130455177066,-77.05446223372589,-74.73689233786375,-66.44535481721022 +1982,-70.900195712252,-71.12762694115952,-77.87890918509191,-81.66704391874211,-68.84829688253006 +1983,-64.79282002480969,-59.97058158278245,-73.63089024279549,-76.3346047395578,-70.66948494166387 +1984,-73.48204500539222,-74.75620713784727,-68.36747901406892,-84.62403015591543,-75.20366301719604 +1985,-64.94574322688881,-80.03705692809466,-70.4289416318597,-75.26442016045152,-73.65827384404193 +1986,-72.55362648958484,-80.27161199260867,-67.66228784934107,-81.7113714072724,-65.75882296276627 +1987,-64.45771159285843,-83.54981279338236,-68.05344552609998,-90.3831305987139,-69.07647756752739 +1988,-72.11816380903731,-78.9642839596237,-63.06665291096336,-88.96248946527994,-72.3498426111176 +1989,-69.74918997237242,-74.81050887618831,-67.43434234290203,-90.37721548237505,-67.02397197757007 +1990,-67.15912761945617,-84.56696923163489,-80.81287274686711,-92.21988914518225,-64.1080830732396 +1991,-76.74887673732636,-72.44857593810367,-77.21504296139057,-79.6940359000974,-65.7198125651273 +1992,-75.50161040662451,-74.46354860262208,-68.38194569493461,-94.73795480221146,-67.84552452929374 +1993,-78.62493709890646,-67.33503834272705,-70.48990535070075,-67.79620629479861,-58.2089003753579 +1994,-75.13642555840553,-67.2749449489408,-68.20175831234502,-80.6624571814419,-63.82330440962627 +1995,-62.340471621388986,-70.1409767737976,-78.249863831481,-75.73219868234568,-77.18896646864138 +1996,-70.66542117422627,-59.83322102387115,-69.77370264187435,-75.5120480148414,-59.5101791994378 +1997,-66.73795132571547,-75.98832611474683,-78.42864049314497,-74.76978760862545,-66.07582125946956 +1998,-68.2303629926341,-72.23734012746,-63.22331513221313,-73.7508957673953,-71.57463126234914 +1999,-78.67745260999557,-58.97817698473878,-66.14172996827786,-75.76548258404773,-75.83542067356461 +2000,-66.87967838043521,-61.07432488299344,-65.23519833621332,-72.27649960806248,-66.00411514065512 +2001,-67.81045863777067,-77.88125505196525,-69.77345361753464,-74.62431588147207,-73.74121313908678 +2002,-64.45273584821295,-63.178262692132236,-71.2731440214209,-77.0002924253575,-70.29790487107947 +2003,-66.60912873266679,-72.18849292457976,-67.37768840480504,-69.32314724744658,-66.35676376878348 +2004,-72.9099479691912,-77.9239615411751,-68.34392588799606,-72.75654847092729,-70.19131886817101 +2005,-79.1453343576901,-60.77547974816709,-69.35282766596023,-68.7429283102047,-71.99866363117694 +2006,-66.11742358838953,-66.00822768923032,-64.28618383899351,-73.51481647617729,-68.68369961648911 +2007,-77.46927351351883,-69.17467592649287,-68.15734340779565,-74.3815129861122,-64.38710871394811 +2008,-72.66660057619345,-74.89176685987715,-70.7129385060956,-81.33200551416284,-72.77647306891156 +2009,-74.48208131712222,-74.6506231923963,-62.41846859745701,-70.42244291893945,-65.71313926104506 +2010,-69.36307706402692,-78.80096785416718,-64.75275494420424,-74.82230476114631,-59.949903164326834 +2011,-66.05552252607572,-65.31079502798369,-85.01533513187127,-86.30126597559284,-68.3126341467629 +2012,-65.89894284975911,-76.48480670670112,-68.08898562350687,-81.01350977879439,-77.02095516533396 +2013,-75.4015018038342,-77.70808914253635,-68.6271666584963,-75.09702170634775,-73.30724072315643 +2014,-70.25368930287271,-65.6083493510109,-78.35689768476989,-67.57525700510035,-67.31999090709598 +2015,-73.77510022018902,-67.06214910997144,-75.40534386507055,-77.7486826425771,-61.637990413986074 +2016,-67.04914327165052,-66.57787009052512,-69.33588285415627,-90.45802903647149,-70.43443266712043 +2017,-66.16063965410461,-80.72335261188461,-80.37977892787747,-77.11827866340099,-72.18791490144659 +2018,-72.10893720035696,-73.40398881286409,-70.27488214430306,-72.56017207009035,-69.45607035158078 +2019,-69.62436517557668,-68.81694627721396,-76.41047650783885,-71.57980263539248,-68.9062145501564 +2020,-66.75823558507436,-73.42315614895541,-76.781300844425,-77.4285435378393,-68.86474011816428 +2021,-65.76212135213532,-64.12457862691554,-73.53049999728842,-79.0034496917576,-71.36636976615246 +2022,-73.08367741664367,-69.64845047432097,-72.95336121590587,-83.31846973453031,-62.94768134064924 +2023,-67.17747925925191,-72.46760124881047,-75.5132572137952,-85.4012016310183,-68.50965083784506 +2024,-72.02736570731308,-80.70771451620976,-64.85074981122304,-86.1034849942136,-68.00261717413504 +2025,-77.05056751155938,-78.4247012611753,-74.61260300512623,-82.81320298563823,-67.80917735584434 +2026,-67.89327648919979,-75.40353911446957,-72.64884112158958,-81.86775935582442,-61.2878485439026 +2027,-73.54477428738156,-68.8736888096112,-87.89834832164718,-70.10687962894158,-72.81079356822248 +2028,-67.0493644988895,-67.68525975793185,-76.92493288778583,-79.67219975821449,-69.12024290736079 +2029,-68.03084868531867,-83.00704652544624,-75.46805793652389,-79.34266961992536,-74.9289912439718 +2030,-66.73031935151482,-66.9133501762045,-70.5714733245771,-68.88416152120878,-72.28833750251822 +2031,-69.87123983804813,-64.47659954406426,-72.22329443559173,-76.90818775504914,-74.72798571825372 +2032,-79.31463618649902,-69.95096990711234,-67.99195947988262,-74.24612417134459,-74.8590755288152 +2033,-68.40740681794937,-66.30049672938623,-67.97637701367432,-67.783420321519,-65.81460298336398 +2034,-67.64215812733468,-64.48532976081009,-69.48161153806535,-88.14087871825697,-75.48472267660492 +2035,-73.71352330047146,-71.75565391711064,-67.46115693215323,-75.99571697301599,-75.26430979984035 +2036,-72.51606501816488,-71.59126435821051,-61.8807483809677,-78.29485187970936,-74.0148877914329 +2037,-64.71269851871918,-74.80059680901445,-69.72546499819462,-81.44892283827697,-69.4556097282852 +2038,-60.704453665314205,-66.91282010795949,-66.65156882257959,-73.26194789755564,-66.97194853762787 +2039,-72.02426686183753,-81.32321966165638,-69.07063034871506,-68.67898438161724,-82.46538425020373 +2040,-67.656855363676,-61.38586268548124,-67.65735689954738,-60.15145332365799,-67.81749443951863 +2041,-69.09988636317397,-64.38904173241367,-63.52242340346657,-64.51875824795272,-67.05729233180892 +2042,-63.271624025456326,-82.3930308841879,-66.82022139877104,-73.34524643991658,-72.362145237912 +2043,-73.63756437022731,-69.0295497902879,-69.28899466167677,-71.9244480523659,-66.58794353858231 +2044,-72.67718050439213,-67.00533852396532,-71.12157884512085,-71.28073803575917,-69.9915783231082 +2045,-77.81180491739167,-70.33395135074008,-81.93177443199217,-63.386649799546085,-71.81011728448559 +2046,-64.32673321303857,-63.800621750460614,-66.31249026753292,-71.54214123171172,-77.50856992511237 +2047,-70.79887724225178,-67.34585461717155,-81.49705139414667,-69.43082997549752,-69.69535028867426 +2048,-71.78179997715978,-65.4505942641686,-70.32400166060631,-70.32315462080417,-64.13184115843015 +2049,-63.47260497531686,-80.9301177890695,-72.72374061288079,-77.28825443002957,-83.00110723502993 +2050,-66.90706013204745,-67.65292971455055,-75.4734827106054,-67.43668451805001,-73.7617200459841 +2051,-60.06659419065116,-65.63898069389572,-81.71201775555605,-61.45302521451706,-68.71755599720544 +2052,-64.41140656245625,-64.4961275571527,-63.464366199423665,-71.52927205756683,-75.9821398853617 +2053,-73.31391966608261,-69.94994178185361,-80.28150471630977,-70.65120917433565,-75.76212434589763 +2054,-67.02374053444979,-74.72908845598052,-87.23778586954398,-79.11981227233551,-76.52183563601307 +2055,-80.08466601874733,-73.99827355802836,-79.23503674288757,-73.50215391684316,-80.53877108812064 +2056,-66.43201554804376,-72.61425457597946,-71.35614937163852,-68.51178616996036,-75.16854082268233 +2057,-68.86753386608213,-66.58182590907245,-86.81496606288599,-79.15470590116064,-79.27838265706366 +2058,-67.30954962823505,-67.85197001894872,-81.23927920951195,-76.64385197090758,-82.7237986756856 +2059,-73.84483936285035,-64.8624263407229,-87.46415384992393,-69.27641262277402,-79.12388981645883 +2060,-72.0275624389174,-76.4156255428276,-77.78809815413777,-77.6788503068586,-62.41054243840524 +2061,-79.12486769120426,-62.922375144698364,-67.26892256922292,-68.62804642959878,-69.47548026509241 +2062,-78.62031415937767,-70.21031641507524,-67.91568070457524,-70.59297226628411,-66.84238441671646 +2063,-80.40331303875878,-69.79691749894464,-75.95586587537723,-74.18185049304827,-76.10028649023972 +2064,-79.59174092249278,-62.85190115303667,-71.33451379477964,-69.61683421297396,-69.30218502910394 +2065,-68.59921950444891,-73.1084171505864,-66.97795678966183,-74.49079435767769,-59.58652921582322 +2066,-68.83191693919241,-58.67619668593007,-62.292819651874595,-60.404991885420465,-66.88374502775606 +2067,-73.88470390720838,-77.13290289517369,-63.73099048089808,-68.63676450844093,-61.471331277505094 +2068,-74.51631767356555,-71.90320424544034,-70.00226570446596,-63.852543775288176,-74.82668742905798 +2069,-72.56404008853377,-68.76646025827763,-70.36201982646082,-73.6996051484078,-69.23106339970364 +2070,-67.97581795716975,-73.81961173979984,-70.21230901694247,-71.24190298742596,-60.88744049861203 +2071,-82.33305127409967,-74.67477143070789,-61.965916351230064,-71.87055262121771,-68.98968903118065 +2072,-71.91484024484822,-78.87198550834624,-70.82013163794716,-72.55566933382923,-58.14005280949248 +2073,-74.72192679682885,-75.56098689773626,-73.51880938232085,-69.20419052142418,-66.07449167530449 +2074,-80.35951382330846,-67.66619191039938,-68.47962142801539,-71.72319896668553,-71.06232455348382 +2075,-67.56595477047931,-74.4444765589347,-65.34835627434882,-75.26392645940462,-70.4799009657283 +2076,-76.1888804809218,-71.22375253375697,-66.74152078982965,-74.7833345164324,-70.89780716339611 +2077,-74.06445814841602,-69.26933341900562,-71.08291096476303,-76.55800630922857,-68.67149691601801 +2078,-80.23444302388006,-70.23625300723683,-75.43637129838304,-69.84292761801657,-69.20571262343667 +2079,-83.80824000413413,-77.75344592401811,-69.75971850347825,-66.55044320679885,-62.97472713243724 +2080,-69.35423683001694,-71.86269586446326,-76.10985036690849,-67.60713488331113,-67.37086645247909 +2081,-78.74284464870392,-69.2021200234129,-74.31191639812249,-70.55394719774239,-74.70183904058902 +2082,-72.4798287850294,-61.69716017002702,-69.87428672315589,-71.99558669465488,-69.38999347723062 +2083,-73.90878049243808,-64.4730059201072,-65.40883075229664,-65.2216640928182,-72.93284839659749 +2084,-70.38702287329737,-72.17977206989806,-68.14645319095071,-61.597152752892804,-64.46481709885448 +2085,-70.85715603165742,-63.066314381850475,-69.51877242352481,-66.56131068654997,-63.9783041357925 +2086,-68.62071387776928,-67.89525728602632,-69.58091653991174,-67.39693680230187,-69.24066725248447 +2087,-65.19472521797675,-69.07360375029057,-70.19242595579651,-65.19344860418352,-72.86450389034962 +2088,-80.17692720898795,-59.961049379246724,-69.90901515470432,-76.25492682996864,-68.42174930493294 +2089,-74.6470348616407,-72.04474046907814,-73.20144465584306,-84.13526204693966,-66.64314897412439 +2090,-78.83457118172531,-67.47012020671062,-73.19933470025175,-73.2716736172469,-62.46936271103063 +2091,-78.29012378698603,-73.54441279224469,-72.54196580732001,-61.8374978572143,-73.44543192456395 +2092,-68.41850176363785,-68.48022297390742,-82.13948209479868,-88.38384081749346,-71.77364859063326 +2093,-62.19390004349151,-57.79099500488585,-80.16106674644612,-78.52932996500168,-71.64600432683284 +2094,-71.34381510183705,-64.53272481589393,-73.76959566441245,-60.07706450367125,-71.18347860998655 +2095,-68.38662703346856,-55.155554228799026,-78.14102315687873,-65.39340952013843,-68.2329359105775 +2096,-74.94740425912121,-67.78765589017598,-65.74255974608239,-70.89966378005083,-71.54029303474614 +2097,-63.43087186972133,-63.938451843151284,-68.60626755937422,-60.28963324369938,-67.35858562061169 +2098,-70.95816271895963,-66.12369018893119,-74.86438973786304,-71.13356555006789,-64.01471409858415 +2099,-61.30438567900062,-60.25662672408068,-72.04972581076538,-68.7780458343504,-67.84668215872588 +2100,-69.39416300187482,-85.67802429860294,-70.29256292604813,-76.69446381035426,-72.3549547922358 +2101,-74.6428964956304,-60.11234196955484,-67.03372289004605,-78.204110205897,-72.01058005339846 +2102,-63.054767462937676,-70.87808642371806,-76.52093937296652,-75.70560659911848,-65.44536911467337 +2103,-70.61395209895306,-80.29884176877658,-76.55115464209061,-67.50547748565465,-59.374753954727105 +2104,-70.04044750196745,-65.85183845602349,-77.81622538062024,-79.77505264732366,-65.96832925740426 +2105,-73.0036764398877,-63.896653711153974,-82.58645136800598,-64.70436831912599,-64.04314289750229 +2106,-70.66866264870818,-79.81355410945005,-63.669305868860555,-70.62013926911364,-72.13457473641905 +2107,-73.67310923642678,-68.82763000031846,-68.07189573233563,-70.74999589554893,-73.30573843299639 +2108,-87.62001184562351,-63.11056950139273,-81.95675318655526,-62.0670298580064,-70.85982462048462 +2109,-77.56583901677152,-65.01140860752463,-76.35348931875859,-61.15368904620288,-61.58561997797672 +2110,-65.58185693751594,-66.87730254195186,-58.56522857775623,-70.90364748634087,-64.29737023435312 +2111,-69.87768564776421,-73.21392482073546,-74.88857744400184,-61.81730039414974,-89.77727090659431 +2112,-80.56031925727252,-73.69872628987846,-78.60108168217755,-73.03915286267907,-75.84245683416674 +2113,-65.05560486940429,-68.84002171889027,-74.6749359915733,-63.27805525173213,-66.87585832672731 +2114,-72.93302628255118,-66.10808498956152,-68.699794961015,-68.06719925605834,-77.01008661072729 +2115,-65.82562064962435,-71.38644709634114,-63.73957391924491,-69.56152940016996,-85.17965900607936 +2116,-65.00452098974314,-71.99058733252474,-73.4605864971416,-74.26757296735728,-69.62491256182896 +2117,-61.559601592280245,-70.66201376213324,-69.17411160720303,-81.2209117292686,-72.10468346957683 +2118,-73.65965310485424,-66.54482648785107,-65.94146246649792,-75.04612130340138,-81.89308233796574 +2119,-70.01779184204958,-71.24330991522669,-70.88514820797559,-69.50819128053666,-77.76988028438389 +2120,-67.55479618294474,-72.79914904451628,-63.092502149811395,-70.5900690413163,-74.65001404929966 +2121,-61.916135806033935,-62.54129051899533,-70.61006877134506,-74.02658811674921,-64.764520796811 +2122,-75.64938818040467,-79.9616539594522,-72.66235654238581,-67.71282133008418,-69.32412818558714 +2123,-74.414289390434,-77.10657300346952,-66.70989621008184,-79.08769495079986,-73.9219253491873 +2124,-76.23913005840303,-65.36229615312989,-65.16050281025554,-67.71047716221611,-68.35816610522721 +2125,-76.0095315914896,-75.96634322972197,-83.86166612699945,-74.46425943596131,-59.94134417842308 +2126,-80.72064346161667,-69.85424844972441,-67.82001023941469,-78.57487848054654,-69.53105499936541 +2127,-72.82178097494796,-72.6229603130688,-70.27026858402076,-70.70737036272453,-62.919720801739345 +2128,-75.49602023340252,-71.95063427106471,-76.16211172515237,-61.537548542533585,-60.47968835865046 +2129,-66.80224550248371,-64.52034755332168,-74.84744695500287,-68.90642408940786,-70.57232585220378 +2130,-73.37748476313396,-71.47384785945123,-74.25731501017295,-59.780217889761154,-75.9895876894294 +2131,-63.02583307321374,-66.71759796605811,-71.74654590095801,-65.58148528022807,-69.1789238275072 +2132,-73.13832133482934,-68.21069389475115,-66.77309054613542,-63.342202667748964,-75.14986554407506 +2133,-66.61151218124013,-79.38087065993516,-76.66355021344937,-72.64508629447391,-68.94762343865575 +2134,-67.2489167163245,-76.14501412693276,-65.69592801286541,-72.59486827223138,-70.74571830050851 +2135,-66.01596134146122,-76.64771822311658,-76.76072819114927,-75.4930945135286,-68.82833016721666 +2136,-71.058971319775,-59.873251895589284,-69.78583362708702,-78.35781171293813,-67.55928783869908 +2137,-71.64167518974139,-76.3815434053204,-66.26532871816585,-75.08416020355399,-72.12736193003273 +2138,-70.50668680535279,-70.57406533916624,-64.96351055145286,-66.82588736566682,-79.27281938870676 +2139,-70.26040666751727,-74.71426012246,-57.15539136506955,-76.14714198671392,-64.8605130097002 +2140,-66.27116978525929,-69.4597838544294,-66.13635698482506,-66.6413103063295,-66.18952562402241 +2141,-69.53453158994765,-77.242902557694,-65.72930010088491,-74.30237590046141,-63.67865516201123 +2142,-71.777387963752,-63.47462746166271,-71.67421572174004,-74.63867855669903,-78.62912602992276 +2143,-71.71270428043087,-65.62745758903846,-71.95664698565403,-74.6737376462878,-67.42128060583995 +2144,-73.30680297321192,-71.76634450720942,-69.00144052328264,-62.87439042232445,-73.51136099647731 +2145,-67.73677328058754,-77.88981404860556,-65.30419586499364,-72.56642725890045,-55.81711840617653 +2146,-77.08045638844,-75.04356241851097,-79.94592838613536,-63.68279336270318,-64.0952059055356 +2147,-68.73158822692682,-72.53553167568474,-62.27697632433718,-65.76249251282579,-63.78138545890281 +2148,-66.87060108318482,-62.69893548671036,-65.56852994448273,-65.2302228076457,-61.98158530109275 +2149,-74.60965340575613,-65.98467994263831,-76.26368956065846,-79.90422185053895,-63.108358531271236 +2150,-70.63926137254103,-65.93638830994371,-72.06356828840032,-65.26736307037206,-60.99251582394221 +2151,-81.86536317126792,-70.41707892532861,-62.53676160625301,-80.03618867274398,-64.91291373265811 +2152,-70.93542895761988,-69.71864582452994,-68.80187645424688,-86.52220572234184,-67.68183802059336 +2153,-68.72522132676826,-64.35443641381673,-78.7728637022314,-76.12804659605195,-72.37356182167133 +2154,-75.87414690915995,-66.31531057655354,-67.42261090487553,-85.1944293684671,-67.41895690267347 +2155,-89.34903009409156,-69.86745265209981,-77.28822678733181,-69.09174157201866,-68.21085557349578 +2156,-81.8939568956424,-68.50265116793406,-71.98307130719643,-77.67942955617967,-59.581731401664335 +2157,-75.59869666001738,-67.34719762671037,-68.02267425993227,-76.2562543414516,-73.08384181176349 +2158,-73.77313758436237,-59.86410776494449,-73.67124378676718,-75.23919275700213,-63.933354462534865 +2159,-72.30897853234468,-65.21125209865554,-66.372056545865,-70.71253151356186,-70.50189912619953 +2160,-69.12059710735195,-73.97374530659582,-77.49448010794552,-66.61985401518285,-72.62008700485734 +2161,-74.65168091303124,-66.83991661068056,-70.44073309628189,-67.42601780010634,-72.83252890328926 +2162,-71.88374240815774,-61.2692117238542,-67.40307285487543,-77.39835516119888,-75.42249561091887 +2163,-72.54459242085127,-72.30264847833301,-68.38846161936765,-82.86446883715752,-71.35188052200787 +2164,-73.71152300587062,-62.23137049325143,-72.9007293717066,-67.77501956414407,-64.59558871586766 +2165,-72.45220646686944,-70.92960560425408,-75.27062110722696,-70.35302447259642,-72.41390981138635 +2166,-77.2525060274404,-72.57144239114716,-64.77419060619673,-74.98162924099469,-69.06649258756211 +2167,-71.32249181748753,-65.11532545665754,-70.58465883975249,-71.65921633349625,-71.15104105970671 +2168,-67.28879944120325,-65.434102522899,-71.61119079527829,-74.60716739930731,-60.307366957736974 +2169,-60.29392705800242,-82.26821350928448,-63.699975904254245,-70.64689978721216,-64.37199748858804 +2170,-67.53556338392248,-69.72841006468566,-64.96109858938752,-60.67051813273163,-59.99659979326773 +2171,-68.84384610367964,-60.61895510375877,-80.64945229882599,-71.0470065052924,-66.8502057706834 +2172,-71.57794079779617,-62.497169721201644,-64.95348716433146,-75.40930366873877,-70.09902966612749 +2173,-68.25483938214332,-72.11925526986143,-76.80377472196082,-70.40371731100443,-73.23936610911488 +2174,-67.19429175292584,-67.39073652916586,-71.50069120380662,-73.80821476158863,-66.25395232692523 +2175,-65.7044353960253,-76.32437370805873,-67.12811816125372,-73.7782277124751,-68.15045607031595 +2176,-72.2911729494942,-65.05845786881878,-70.79726508803392,-71.02619528008194,-63.38029725530023 +2177,-70.46611255001822,-59.03239341067061,-62.717997470659114,-74.28169861254999,-61.74848561440092 +2178,-69.10317961815672,-73.95283471343001,-68.16540018779733,-78.10158630382985,-62.63591368091126 +2179,-68.24558745179827,-79.81345642510577,-65.79204193414202,-78.94703273155683,-73.94575274833902 +2180,-70.84598429571085,-63.876907023496116,-73.14006236514821,-69.39621953557551,-59.19904406256282 +2181,-65.29264882463148,-61.600086988282555,-63.46496635339476,-65.56487643151233,-56.73893865114986 +2182,-76.77282346140798,-85.65033232100377,-66.91133167580513,-68.76555619459607,-60.68030930827623 +2183,-72.64476819263294,-82.37017186429767,-62.542170449537814,-67.23253851365128,-65.67050432444265 +2184,-76.40634657635104,-64.547998312694,-63.521177538909,-75.0723485785281,-64.48148332042295 +2185,-65.24900464374919,-69.59635955461773,-77.749499055731,-61.290987364616086,-70.41267625014471 +2186,-71.81297392301735,-71.23806035473834,-75.3085290177001,-78.52016386787892,-73.31448393619398 +2187,-63.40023918535816,-75.38248105712299,-74.49281595697002,-63.95057138005957,-72.27271006680878 +2188,-69.38960178832095,-70.61698247838893,-82.48251928851349,-67.16656083395232,-63.39841377736722 +2189,-63.81497742205648,-67.169908390895,-73.84510679835584,-67.88703315253022,-68.33824683189981 +2190,-70.41049782806984,-69.78535405018992,-77.04007100037491,-67.48699739728914,-64.92920229080293 +2191,-75.10204418158739,-75.94005572202765,-75.64388629662358,-73.42819237494822,-61.51152387681543 +2192,-63.5699568744212,-62.2040126030281,-66.54724373687601,-73.0437290737877,-67.06331573598348 +2193,-67.25624218189277,-81.99945776166439,-69.24980013672591,-75.0568180054769,-64.26046194586236 +2194,-62.41542238173943,-75.38949309861808,-71.76971662519104,-69.59234169182588,-69.1466393540804 +2195,-69.92567758948192,-73.5632981284132,-68.88578333458737,-69.49405878418837,-68.96490660516784 +2196,-62.43448719203014,-77.56765521952602,-66.56593714152072,-64.46451285992354,-63.335902739553084 +2197,-65.57948132232804,-70.87802537339121,-65.14611357346024,-63.93505686960512,-75.10377003289607 +2198,-64.48964093145015,-68.07380898866985,-62.550785602281465,-73.71645081690475,-74.07851340540401 +2199,-60.85918594798507,-67.30509872870279,-66.38179793254432,-69.46730733119928,-69.31484954304085 +2200,-59.64939846126032,-66.5352425376195,-70.34300129180718,-70.73619704827561,-72.52371579399164 +2201,-66.62385246155833,-69.52913042640174,-68.15607057976067,-73.1455403070089,-66.4221349050204 +2202,-62.914128888351144,-62.72566612890656,-58.91442857672996,-69.64400099663187,-73.61302312593882 +2203,-66.58643938602016,-65.84404189374597,-72.46200623395914,-74.47193008097722,-61.39459525121864 +2204,-66.50702748923085,-73.57087365795154,-69.79486105565474,-63.8378025417519,-68.94133216988276 +2205,-67.87215662382741,-66.98672224792517,-70.96455500423177,-69.5575849635498,-63.5266954327777 +2206,-68.98036278543466,-71.07218759151746,-63.78169996548048,-67.5269887821333,-67.79782989697586 +2207,-73.8416655279888,-75.77316233810426,-76.33332420691582,-83.91926499496032,-69.29505754993053 +2208,-67.29843521432618,-75.21268551333627,-72.55445778060854,-87.57073078248176,-78.36322568492132 +2209,-61.93430340962296,-72.66832344615287,-69.82852359653275,-76.47647350945374,-68.28090208840122 +2210,-60.79653435569292,-63.777589045864566,-69.13846031669983,-87.58672750960409,-67.12125204148649 +2211,-72.49102560863028,-70.72821975115849,-61.54333640750415,-82.04513543768054,-61.69409277012831 +2212,-72.87245188898774,-67.36926636044316,-67.96499291804544,-75.32770661828341,-76.06957148923533 +2213,-68.71495568492858,-75.75536670945417,-67.82412139782208,-62.079985360290024,-66.37420973384117 +2214,-75.62688069306681,-61.48697162409976,-69.82724584198655,-73.4295082536955,-68.59863142450546 +2215,-77.79865530009116,-73.459972029693,-70.22146330446816,-68.09856734477583,-75.94311351047078 +2216,-78.68461558644066,-69.9729957888136,-74.11461301901329,-76.800103074718,-60.797353089133885 +2217,-78.00520777314476,-62.10360568697928,-71.2194641202422,-72.15038184901127,-66.11575081619071 +2218,-65.3162939671865,-61.319304128685005,-70.45734541775983,-69.10267229963597,-67.74318010316284 +2219,-75.9392016730744,-65.66724938129202,-67.20225423999213,-62.682957402762625,-67.11921761415569 +2220,-65.80695963702019,-68.66753481734108,-74.5007221475655,-65.95269362331973,-66.11127644991748 +2221,-71.24977133445555,-73.85225179276344,-69.60454849802103,-72.16599144878793,-64.21010541966153 +2222,-73.18527966035381,-65.06223619521253,-81.03053651500902,-72.24929640133166,-62.17610566105266 +2223,-73.90775081132858,-71.4043241002396,-83.29341393099402,-69.37796625760892,-67.24750217858711 +2224,-62.61215435081063,-69.73106436597456,-62.66591112842448,-66.85090100245215,-66.16625624832857 +2225,-74.13224618106476,-75.64914054078756,-75.9775580417913,-82.08275236108334,-60.4179069181798 +2226,-60.211839898960925,-81.25530733430554,-93.3783464614432,-67.74080473039106,-64.01025003264859 +2227,-64.55651418034954,-71.50197681680919,-69.05309957417998,-75.59743090192548,-77.45120901960178 +2228,-65.63754706626057,-67.82733730971468,-85.2949423527048,-92.8135280877447,-62.30504200338795 +2229,-70.0439136042255,-72.894472897285,-73.9234955016742,-65.19905738109793,-66.68984146980571 +2230,-65.1835316646636,-62.25615233187077,-66.11164096603908,-72.40173353208128,-70.92414712889916 +2231,-65.9220565576465,-67.34391945530703,-75.32277759632585,-77.01463552300694,-74.42493665197148 +2232,-64.6375643609469,-66.61656367205705,-68.78689011863003,-76.7475091487315,-62.18115452595573 +2233,-77.26881653659082,-77.27685634999561,-71.9516540180346,-69.05947936368287,-66.59362496046899 +2234,-72.49960837914057,-75.9312155323426,-62.16625651856503,-65.88981472182424,-70.87340482136233 +2235,-64.86277133302083,-66.2451167431224,-71.15778163623038,-69.46081995845427,-75.14923582831703 +2236,-77.08155454147699,-66.30631375752985,-73.36136670380219,-72.54377031269846,-61.877213358286795 +2237,-85.585083690853,-71.47378173898052,-70.81421939742478,-60.67284669317463,-66.81007868200473 +2238,-78.44604629091481,-70.15164855901975,-77.4774767958071,-67.92029096248235,-63.78852430347426 +2239,-65.2931183175336,-72.16061358439107,-89.7979904139033,-73.57234919684583,-74.10879753945895 +2240,-66.85305233261298,-75.64642074346393,-79.59918669291423,-69.11731489402204,-69.57098204849345 +2241,-65.7359898981396,-64.54091657918825,-78.0005791653177,-68.30722185390066,-60.23657586881921 +2242,-65.54167673549851,-72.68266949762746,-85.94928347871203,-65.12953071704823,-63.56930703470137 +2243,-67.7330937602478,-64.18379016732385,-73.06009915988007,-69.46471134150953,-69.65131204680397 +2244,-75.22698897811921,-67.2216431674831,-61.5134970785532,-62.680145989131816,-71.71088062975376 +2245,-82.08792467838212,-75.49112523914717,-68.16135978609523,-66.91985264904774,-64.23591622154999 +2246,-75.80869534195801,-77.70901445046917,-69.27006816101017,-67.32082853508751,-62.85521657183057 +2247,-71.8876748530541,-78.47508738247302,-72.58665549522507,-66.09950960679667,-71.83056362201614 +2248,-66.94433919506169,-72.4658844340347,-65.85241191901592,-69.69377135503869,-65.76488142690218 +2249,-73.98988632031939,-69.54442385944024,-71.2965311064441,-69.43837326527928,-68.63459966983677 +2250,-73.33455156517412,-69.72183124637131,-64.82920487014293,-74.02834657520384,-69.62066177489554 +2251,-65.17111155818657,-69.29001141106944,-58.550502057892636,-71.81381939992684,-73.75381252785905 +2252,-66.63308496486472,-74.96043200143485,-68.7990094278376,-66.37538588365312,-69.32750488447914 +2253,-61.10139044903709,-76.43606385697451,-65.55073851275588,-70.30182153298807,-65.32371083035099 +2254,-62.493154559964815,-67.56548334957138,-66.93184896035037,-64.62763989429683,-72.7074303653583 +2255,-65.18589350550782,-65.89263046815262,-75.3928821886473,-69.62299826351158,-74.40604959070393 +2256,-73.4623657210518,-69.95407822820499,-74.69213029666417,-83.443986174088,-69.11265978272208 +2257,-78.61089600414569,-67.49998959093418,-70.47264397687789,-62.73061974298949,-68.74475603896349 +2258,-71.63413399660288,-72.09864116081292,-70.04499004462193,-65.67340992850849,-63.39577215774205 +2259,-67.49465824950806,-61.164784591871104,-72.2734380330932,-68.10455771456994,-72.19080065653773 +2260,-68.25329704403218,-71.13405884215199,-69.03844828259808,-74.29738400362758,-66.94433964354398 +2261,-69.13141731071592,-66.82216051703577,-76.62600025933824,-86.59949782724983,-70.83567298960389 +2262,-63.867595282783014,-77.58083192096242,-83.34922609166095,-82.93218436235576,-70.6191752549721 +2263,-68.53506358634121,-78.11126627064834,-76.19654407753569,-73.99145404835119,-67.90844888242617 +2264,-69.08572211424159,-62.269560501837425,-71.65135650642573,-66.58858985170438,-72.11854254331723 +2265,-62.26964725151512,-74.41437221637324,-72.66904461118965,-69.48829375698111,-67.18815105663805 +2266,-71.18306365759452,-68.07051170755432,-69.67887305681103,-67.55689508296109,-65.27236833487412 +2267,-66.10810473377717,-66.74514681747698,-75.98124460841633,-74.17901692298977,-60.55707507785667 +2268,-71.06872051635887,-66.79544449333679,-79.63620437014922,-80.40508573821148,-64.12599673402165 +2269,-65.20119561732213,-67.88472169486428,-79.63377904758711,-75.58279767942207,-61.98367195455672 +2270,-66.87883801236156,-61.92292390663819,-83.18680015179275,-73.65371090643713,-58.78262312995209 +2271,-66.26830478303921,-75.59229395154526,-73.78898406707818,-66.12926057885974,-63.23316374791697 +2272,-62.82509175638804,-63.01382611769768,-78.09749275024166,-75.56865764978757,-72.72117272076558 +2273,-67.10739908715851,-68.48817971695088,-77.88495496605817,-72.46557699420653,-65.47155143334247 +2274,-73.74075449914744,-60.33537514334485,-75.26852874801594,-74.97732753987715,-70.8809279313185 +2275,-65.20023837884507,-66.37728367396838,-83.94755957364104,-63.791201319188076,-68.33269726706352 +2276,-62.90344032110893,-66.87289653379477,-72.58538502789554,-60.82182828063024,-65.48593601296658 +2277,-64.81756585342656,-71.08999804400189,-71.29384764647443,-73.53929553045224,-61.191840005465394 +2278,-69.02611353374778,-65.06029601707071,-69.4448614819161,-78.91099867407848,-67.07336652508066 +2279,-73.85473958537254,-75.95395109744626,-71.2834452014411,-75.19896393570704,-71.18792662684439 +2280,-74.22016189947512,-63.30586363388126,-74.59704722447319,-64.99673297292526,-70.58785788317378 +2281,-75.16218443799252,-65.97339363255263,-78.24717230076317,-73.2547717655191,-68.46570847233919 +2282,-72.62227697260613,-60.57353877173308,-70.93523597780907,-66.82153063306059,-64.31258753886597 +2283,-71.6452711219085,-77.51807062538877,-71.61175136255693,-78.62786442675377,-62.47642337818995 +2284,-79.21908171051214,-56.705899227368114,-76.13762159128038,-68.61311397279644,-67.91366462723082 +2285,-67.58828951823257,-59.75881139126554,-66.51856672185392,-78.57215450960916,-72.19341411272765 +2286,-76.68756776775169,-56.49850020421823,-72.36626188496491,-64.29268475761545,-65.98229463987964 +2287,-64.75799124509025,-59.08901675165358,-68.65695640145404,-73.0471990960649,-59.84132509971382 +2288,-70.85687953273087,-70.16886055516267,-69.24548097801166,-73.99494306470102,-65.67096976145392 +2289,-67.43862090603682,-68.1160523142379,-71.20826880397229,-78.08937598714992,-63.944603825828466 +2290,-62.37654310076832,-68.44282222009421,-63.08046097458062,-68.15047875720744,-58.3350312256711 +2291,-64.39708440937493,-70.93993495073335,-73.21705034842385,-66.93955780963623,-65.21375714859022 +2292,-64.8417937709154,-61.91451940079776,-66.5594621314054,-71.40754033822589,-69.05017532363597 +2293,-68.54856613732025,-69.64202726829215,-73.73526232303117,-66.6671762258804,-69.44127630017014 +2294,-68.42869697200102,-75.26446375776978,-70.0174295120288,-68.5590629516252,-78.6183051696809 +2295,-70.0740560392413,-70.50731895913223,-64.91015467084246,-74.12205223970443,-68.76226118734769 +2296,-79.63953737813675,-71.16571646024863,-78.73620013270194,-60.312612660596514,-72.57924411986723 +2297,-81.62948334953875,-75.99005047628437,-68.7282384705749,-73.63740896708943,-78.93222488081362 +2298,-62.6119249548235,-72.51526744465669,-66.11320505856324,-66.97425254312286,-83.97233423997376 +2299,-81.65098572014581,-67.91902255632779,-73.37809199070138,-67.36633599600898,-72.31282886134548 +2300,-79.39458971787312,-74.80042933211408,-71.3835295232754,-73.58405625869663,-74.47621193130017 +2301,-80.1461176741126,-68.08992420256817,-69.25285798495167,-71.46477992897674,-65.5085173589163 +2302,-66.03060479500562,-60.541590779709054,-68.61313916105661,-65.13928958245961,-82.40937994370255 +2303,-71.43288410822638,-65.13122767430154,-71.44419759008255,-91.10719154049904,-73.11494732389009 +2304,-69.43117597912968,-61.875185258595614,-78.2357375132348,-77.83740503310536,-64.78819943860638 +2305,-69.05858074603422,-76.73645629273332,-71.78272271674186,-74.1754594803626,-74.60785772761484 +2306,-65.61347393390196,-71.17356021385177,-68.83378086043348,-77.63402166856707,-74.98233424517768 +2307,-71.52998473183914,-64.8096889302888,-74.6242978637384,-69.2998353454112,-80.26380360265111 +2308,-72.31415527814706,-81.01147097633569,-72.13924615447928,-75.81551271626168,-69.6969932898981 +2309,-68.2265801061677,-74.48117461563933,-59.95296879584717,-65.95437599771876,-76.42449920436214 +2310,-67.76808945233013,-73.68016523924831,-67.19277913331399,-69.55189037766328,-74.02448389687166 +2311,-71.91930285917653,-72.20401900323594,-66.36846637390757,-64.5959111213681,-70.05611477105505 +2312,-68.2653843587093,-63.97244672483995,-71.34211791115348,-60.95603252848069,-69.6130468546506 +2313,-74.45001849720013,-61.664049367196476,-62.39364727983075,-67.53654558664043,-65.21109634949342 +2314,-62.38536413612017,-70.17168676182463,-69.77595332643777,-75.87708685609226,-74.27673039024758 +2315,-68.37272796889152,-61.516969053530545,-71.45414018660698,-65.10956695574733,-65.48967446594472 +2316,-73.75024694894903,-76.58432508404843,-64.19952622891498,-71.78326738520836,-61.597600180392675 +2317,-71.04613763042491,-65.18253995936504,-71.3787093769746,-73.28657890451564,-67.14780673575838 +2318,-76.24250410058993,-74.98528651304882,-64.67434148426064,-64.98099733568183,-71.21514347739601 +2319,-69.94972818212872,-61.53099683781308,-63.0688038702934,-60.8312499133184,-70.28251419317588 +2320,-63.009012963323215,-67.61816417547868,-60.587773474870914,-66.78270926487451,-77.60132697335308 +2321,-57.480087734541264,-63.04764794131876,-71.0355962051379,-66.08170476805489,-87.53664080149461 +2322,-68.31646628801843,-68.09015456214914,-72.75843597274297,-72.87257635736616,-69.51572016478296 +2323,-66.8205758560214,-60.623850651830054,-61.52544841838891,-65.20050459386871,-69.11364514982151 +2324,-65.41395277084925,-73.95593553898371,-61.74705975621169,-66.94078005745635,-77.31474271014413 +2325,-72.1660329737098,-71.81754104705708,-68.8409780696909,-71.76900036194739,-79.83829428910273 +2326,-63.37747384844977,-69.06609212776621,-71.24635222892942,-71.40380119850226,-66.87448783923928 +2327,-62.506605701476126,-66.27460127760172,-70.47357818166783,-78.4143333229664,-66.20977655243917 +2328,-71.86223256158176,-64.59629587481326,-68.77212616971589,-72.04610731154536,-71.17940980427959 +2329,-64.18333621114544,-63.92341045210703,-68.68712618360212,-69.31526076088063,-60.33362134761396 +2330,-61.35940179515696,-71.41579656544799,-75.91862260281115,-64.39671107275007,-68.70832195726085 +2331,-65.12118995997965,-70.9480986490756,-64.72715265057376,-72.50664137918011,-63.023509418056946 +2332,-72.74499308960421,-72.09345536174186,-67.29141282516791,-60.684315223030865,-69.13853051851271 +2333,-67.0785360593571,-71.96823982683719,-75.82519491516213,-58.980905855288185,-62.462217086325445 +2334,-66.80704968884659,-70.92573002884565,-69.50426020961672,-70.21321495663118,-73.31169150938628 +2335,-76.31489084327706,-67.76049030955669,-67.74822297364462,-68.60470780853989,-74.94955391032497 +2336,-65.71485043325684,-71.34587025622993,-71.22070337877746,-66.66672924177762,-63.47742861835676 +2337,-78.28173501722674,-68.23854382290652,-72.62574795449557,-74.69599689566896,-67.40276005321648 +2338,-62.45078181141749,-62.72117460029178,-65.99375602951835,-72.45152402997373,-75.29318898776249 +2339,-68.84589186321497,-75.80337089320032,-65.77995863411869,-74.70308710734584,-59.40965408481619 +2340,-73.58605831557513,-67.5744503619332,-70.5347237020932,-64.97185993401159,-65.81404490602642 +2341,-65.46791793853781,-68.01606567461353,-71.78472665873107,-67.44215814056194,-59.57654181845629 +2342,-72.81694709892106,-70.46754944483342,-61.6715191777687,-67.10810375916695,-66.62264971682824 +2343,-68.12909764084749,-68.41468706956627,-63.01525857270082,-75.05059490305865,-71.31777212708545 +2344,-66.27795620141767,-64.63930080396915,-67.8909970307117,-72.26547242323902,-59.75145960720909 +2345,-69.74154624265748,-69.18199994610704,-68.84039833111468,-69.03305846857624,-65.65012073013338 +2346,-58.99493643121349,-72.02188342295356,-64.50147333402859,-64.38569897627015,-68.76687182877113 +2347,-71.90549116698143,-75.96725810923256,-67.27856965461885,-69.39614671800818,-74.48366858630432 +2348,-71.76571514564648,-67.21160558480534,-71.07482866827115,-74.50820877237852,-58.453940481877495 +2349,-71.06392669012648,-67.86565774908523,-67.81630146775152,-73.41772274833833,-68.34174215377934 +2350,-62.13065811385477,-67.96938788939175,-74.76672359765524,-62.184539392816376,-65.10712193523288 +2351,-67.59519174791849,-64.42381606282835,-62.50719117924801,-65.62082339839779,-72.85103452954978 +2352,-69.97026073157575,-61.92063126017632,-68.98166558387446,-74.44643109245919,-64.7030387368309 +2353,-68.16223628563785,-77.01244868296463,-65.00947850069007,-74.63138058753552,-77.72132781714886 +2354,-63.90633451886737,-70.13012826441027,-70.51737072809999,-72.71856227128843,-66.8616504252027 +2355,-62.97736447177049,-82.03769181366886,-69.882264530216,-71.08213413470207,-63.901656021582184 +2356,-67.44867727339322,-62.37083931343677,-74.52203027722106,-60.41520989142114,-67.89431731599802 +2357,-63.454097878763996,-67.53096816796207,-73.21943647304302,-68.16531072873202,-64.62252185561728 +2358,-68.83708781065003,-73.25446215973622,-75.34524248534282,-64.32940107107085,-69.76959059913452 +2359,-61.48123180052536,-60.431193514167944,-68.96578373816608,-70.13731440917456,-72.77703637946797 +2360,-68.0480399260575,-63.418928249133536,-65.70497470257084,-70.71817966353711,-80.02574050243821 +2361,-77.54507443025705,-68.9590815232936,-72.34996945739346,-68.31536135551266,-61.14311056033229 +2362,-60.489056328375035,-67.36328479075041,-63.676703354182386,-77.35438520124144,-62.608507445924644 +2363,-64.24585362824683,-85.64689691236393,-76.97555708096927,-59.464368046884864,-57.33411766421297 +2364,-67.8547462955634,-66.41998562332434,-63.60610948307546,-64.47325637605081,-70.66757588724245 +2365,-65.3960334515982,-83.65869176167116,-63.73042801609777,-63.050859000017525,-68.85928195910995 +2366,-64.09692406419389,-82.6618108566047,-71.61451745558048,-72.39582799166914,-70.25118331940617 +2367,-74.4140550628855,-77.67591566526725,-69.18622937864801,-77.30146976703391,-75.79345196992153 +2368,-71.94800610703747,-77.1873799503879,-62.092455979497885,-68.76332301143985,-75.2007678629569 +2369,-64.55814107010589,-68.13490735922335,-67.44403452567757,-67.49658317914623,-67.9400179084998 +2370,-70.86289072867996,-68.82409991235872,-56.95402625642696,-66.48525460698929,-66.05767556262006 +2371,-69.36907849830999,-70.03691992047321,-61.70621917824331,-70.6234335310901,-67.55928384018289 +2372,-79.01521752209663,-83.10281843421794,-65.11784636073277,-72.79174710157794,-64.06259634108723 +2373,-77.33547125597707,-74.04405875062402,-60.37946623218797,-66.09829926668814,-70.99037710256518 +2374,-82.99080623801152,-65.62228914848387,-69.32137808685347,-60.903787496034106,-63.761192978618936 +2375,-68.16334080850457,-81.16167077180279,-74.80000627541219,-67.11883108881982,-71.45833594977664 +2376,-68.75858477048561,-70.84315328459638,-71.95776810793762,-80.12666859347038,-58.764530169404075 +2377,-64.00009448506461,-64.03269720116434,-69.4881040450624,-88.03267262186652,-65.7079755435906 +2378,-66.87440733666641,-66.79886807104839,-61.779886759392916,-64.55120959124532,-60.529849443592866 +2379,-72.21301473812287,-73.65562531849856,-70.038585399703,-65.086091404039,-64.35228558257553 +2380,-78.71392153746501,-61.96729433690039,-74.33747369234976,-68.82196236367172,-74.75512955790074 +2381,-67.78802466707883,-61.523204573177615,-72.24356010628632,-67.21108352463692,-70.90735831884906 +2382,-69.87824148698972,-73.06285735707321,-69.54338203208872,-71.54456138720072,-66.07783701148459 +2383,-64.45995031212009,-63.097647131325154,-62.28622069532258,-87.31964129225804,-62.82514670343433 +2384,-60.174856471328376,-66.67294517992906,-63.59512662099849,-82.57304058414871,-71.33603904764391 +2385,-68.78952813209948,-54.713070914366995,-65.77901320387957,-83.17306565357262,-67.81521012627732 +2386,-67.14687750982768,-65.52004526804872,-65.65628651832476,-79.62662315182281,-71.43172276016826 +2387,-67.36094647943821,-54.91196462054144,-66.57814333953735,-64.34373001256952,-67.45651452354346 +2388,-54.56691183630566,-55.51192257440733,-64.96429182148589,-78.76404244890533,-75.07597641139358 +2389,-64.3762653482059,-61.99296338724212,-72.89455051496732,-78.32162401455298,-73.16788448697555 +2390,-68.54556743691217,-73.11574464045137,-70.46254791921177,-73.98031816452091,-70.33877832066241 +2391,-62.49862108763782,-67.60363609815528,-83.04914888222146,-71.70960613136067,-90.25696633860419 +2392,-63.28158060380581,-73.73102115195208,-78.07509372925833,-83.27610317732953,-64.63546040848293 +2393,-63.59377885379714,-65.86837864972755,-87.72079863406275,-67.06842280916128,-71.34215193283617 +2394,-66.45050014374601,-73.01904055737513,-65.66147499819272,-61.07909769378478,-72.18907838015025 +2395,-58.43094673725454,-65.18508003909116,-80.97587963374632,-66.36854511535326,-76.39952774369125 +2396,-76.89545439110653,-71.0376237836544,-80.12942189507946,-67.59113191457998,-63.52903181521013 +2397,-73.93294702095666,-77.63340050064238,-66.50989440025145,-68.00008127282686,-65.6106932371486 +2398,-61.63074668580111,-78.76778834833536,-59.80055940271037,-73.90617883946634,-70.85572790261513 +2399,-60.978428875137595,-58.057871395203065,-74.66793093790572,-69.2065671258186,-64.98011451171156 +2400,-68.72187805291082,-72.37339389138266,-66.19013732183231,-64.97596715158846,-72.66022105030066 +2401,-62.101871845658636,-63.485569466799355,-72.65339161990642,-81.03917244049518,-70.99573445631268 +2402,-73.32350265047216,-74.1207683693965,-56.56233297970448,-80.92950749544833,-67.94001574260567 +2403,-71.50730696947953,-68.9946675540927,-73.36083427458315,-72.12425473226268,-75.8719385360209 +2404,-76.20457920239878,-71.94588120752668,-68.65509298644531,-70.94419458600618,-65.14791502937483 +2405,-65.5801974658187,-61.083301509921355,-67.49749790145493,-67.90391911225828,-61.33806072387906 +2406,-68.72394690883428,-62.204322569618036,-69.78515457301303,-65.89897872097593,-62.13387680067195 +2407,-67.42469510198985,-69.34756102809816,-69.80416555107591,-68.52198705826062,-73.74477603825683 +2408,-71.36610055446512,-60.39706554992043,-69.40443192234194,-69.17814319442434,-66.52877561489836 +2409,-59.10405333731981,-61.43264332693249,-76.17748574498134,-71.52138069150473,-70.24017763734726 +2410,-76.82303964718787,-66.10019111263067,-77.6341749115629,-61.30439478783903,-71.01748439340685 +2411,-63.7601440807582,-59.21087266021606,-61.913539449182515,-71.08888396376452,-76.19261373078245 +2412,-71.0019155999337,-76.00672103480431,-66.83151096045216,-75.914564955657,-63.719419321172815 +2413,-68.95529500941888,-75.2764809871709,-60.92905604388179,-72.66315679419206,-60.71461764321413 +2414,-67.19355534353866,-63.25497983281344,-64.66950880590991,-63.24604505413022,-64.38935641314713 +2415,-79.9503640286183,-63.34900423539202,-62.989111089064174,-72.68048488762624,-68.38164641582313 +2416,-65.24902514863409,-64.32626065078536,-63.901649964984124,-66.2973842584908,-69.17277502159446 +2417,-69.538837926997,-63.371372857498365,-65.20852368089211,-72.74962358248825,-70.79624356174746 +2418,-70.2392780355594,-67.24026382563144,-65.88214945159045,-58.341254986404216,-70.98654818322089 +2419,-73.45410340743904,-70.89357132264475,-71.88141288828199,-63.325581413156094,-70.05602717618171 +2420,-63.01963337706568,-63.99627203303914,-71.12680272878154,-80.7755871822212,-57.8166024297182 +2421,-68.66012633122914,-65.47170941045155,-62.89424944487997,-66.56332258065568,-59.44123655818463 +2422,-70.12776512231814,-62.678304251068866,-75.84612588967956,-63.43730216772945,-62.57748680210733 +2423,-53.03462154889881,-64.23225546074207,-70.18672756899429,-70.44209752966536,-63.32131749449771 +2424,-70.8593037169436,-61.444120855899165,-83.535289875799,-62.01293287316223,-71.32481895961179 +2425,-63.95289924036346,-78.98952907929716,-64.1038756229264,-69.87649407635877,-66.65981654186643 +2426,-64.96502668262366,-71.20804544877156,-68.7823119459607,-60.79911750845572,-64.69338138508772 +2427,-53.190529279479875,-61.657440161418144,-64.58451588965352,-75.59509249546123,-68.61925463700261 +2428,-66.88708159921734,-74.03845232253039,-75.20125484334015,-68.43576060602126,-84.91370885645992 +2429,-66.45092537985765,-67.13260995734414,-67.35924488330404,-76.10740246827157,-67.60851376609632 +2430,-68.26129487501932,-69.53036317393506,-65.16944204298684,-62.42497831784205,-81.96034905032064 +2431,-63.62532963218757,-79.21477444723855,-76.6497431493607,-74.8019594202112,-73.42968737699599 +2432,-76.1621810305075,-72.22258616074485,-76.52801903868624,-77.39381706163785,-74.17353064809119 +2433,-73.43063278543978,-70.33479316895435,-66.84595402969096,-74.71759672519539,-70.7009177254707 +2434,-72.84783094480098,-71.65303765823566,-63.453059718957,-64.7748365816146,-64.79175698534273 +2435,-93.40945579982487,-70.65332474802574,-76.94386263530275,-68.01782367966103,-58.499337679846725 +2436,-76.2527088236153,-63.267908826722646,-72.13150721359919,-65.59010987228609,-58.7334188021382 +2437,-72.95081134889895,-63.30682815373334,-67.4195672652413,-75.88236284461018,-60.13028566538188 +2438,-65.5122341781537,-68.58322740893817,-63.26825188225126,-65.77474203597355,-72.79359465882142 +2439,-80.81763636090204,-70.2608953441568,-64.01084933882404,-64.66752737986491,-65.40440709349903 +2440,-67.31619090145448,-69.3122930383017,-67.04501120468115,-59.27848538192398,-69.05545937879361 +2441,-63.903371686990546,-63.896951730669834,-68.41902506192181,-74.35950720283373,-72.94157818407953 +2442,-64.43238332297783,-67.05473839202804,-64.9623518585246,-67.26959279798457,-63.97242427401086 +2443,-62.55054532809421,-68.70042137321036,-79.82094458979836,-68.50779436121908,-62.178394361859205 +2444,-61.58444375094964,-67.24012040171931,-66.1313374755042,-64.2297774624864,-62.11860367059837 +2445,-57.52183533956355,-65.78076548621877,-74.37163340104323,-62.331975560116014,-66.6426072709192 +2446,-60.54335117984035,-62.79262874908222,-62.48123977214248,-68.27092636308015,-63.41361184036826 +2447,-70.43422117335281,-54.98539415584376,-68.70489291416379,-68.32891661372986,-74.67097045058556 +2448,-69.09903193924235,-68.74926304692094,-79.38938199054883,-65.94295585356957,-74.40791114533147 +2449,-60.67614214776174,-67.09152854484276,-65.48295975271004,-68.55390089644054,-69.96578609642162 +2450,-67.65866091232911,-65.82619361586629,-68.36603562498317,-71.48743983417474,-67.40112330114141 +2451,-70.25835178990313,-69.0911475440464,-66.51902453074064,-67.05309312556702,-61.07797852917158 +2452,-70.46663539294559,-61.03557817876708,-72.64937721011177,-69.38911422296464,-58.65787587235696 +2453,-80.73661487393208,-67.14056775566733,-75.76507083467506,-65.17758891773836,-66.62392044001705 +2454,-74.97787208894647,-69.1192949093185,-65.5199916414605,-71.07590783087758,-70.92354723590636 +2455,-73.46646141090643,-67.55098375135707,-79.48470639244135,-80.84192153294167,-75.76406115234713 +2456,-62.46774243791754,-62.184198983997845,-74.75453178347527,-62.330949287055915,-67.90392750704824 +2457,-61.94206855574003,-61.43705893086984,-66.05076046406744,-66.97190248128757,-70.98572824857574 +2458,-71.54632488394753,-60.3481749192792,-69.66148684657125,-66.14700874358637,-62.89663630953982 +2459,-68.68391945644576,-69.2709912530273,-78.67098694222575,-63.09170582727313,-62.71433017613175 +2460,-59.35167881867793,-60.37632120906539,-83.2782198909128,-65.1231536009899,-63.51227410506406 +2461,-65.04857203645399,-73.04541640003904,-73.78969476828237,-71.51336114636179,-68.60475172374902 +2462,-70.92806177654164,-72.33901442880376,-70.51794732747179,-60.37665189593772,-60.38903362580297 +2463,-71.3182903907159,-63.789132357085016,-74.8308115070027,-77.34825420865188,-61.80307408164773 +2464,-77.78699625170636,-69.19045501136803,-68.73383257068868,-70.1095097623104,-65.82601311370145 +2465,-81.81688836622246,-63.056060960607205,-67.89006548373443,-64.38311531907092,-69.85477508782147 +2466,-73.93269591526372,-64.8249176383904,-70.26704532647678,-65.21638387516903,-59.22345518377201 +2467,-59.045834677328465,-66.79794019076218,-67.01822219908846,-75.84031249694814,-59.847997528704454 +2468,-71.78193426057533,-63.76705960988653,-62.08271706937911,-62.9712399881847,-64.95418340360473 +2469,-72.84795475653844,-64.36722013935133,-58.01044248112943,-64.66171628675559,-60.68106941933552 +2470,-68.01680759786568,-63.34994935714056,-58.10831169779371,-60.01163426125707,-59.8665154624531 +2471,-70.06524339427466,-63.79134635707445,-55.775287324510835,-77.59962404085428,-57.93371177762902 +2472,-74.09019687322072,-61.85191931260407,-67.64551417189396,-82.56211708162158,-63.96669970805727 +2473,-65.20110472714993,-62.4290893069037,-71.44970339150846,-75.26872355884723,-70.65679854048614 +2474,-72.16510176811747,-71.14314916456617,-65.35040988126438,-80.61016695388523,-63.286946075833036 +2475,-82.23905053752165,-66.0175417452279,-64.45871766833123,-84.9033415244118,-63.172270347449725 +2476,-69.19725409941948,-72.14808410157659,-67.35933143785003,-84.8000395617742,-63.31655277064819 +2477,-61.904813352777005,-62.60187375808896,-67.67262678739124,-82.81811268108146,-67.302941738714 +2478,-59.72814442151877,-72.14210689434509,-71.27946957827653,-75.96694818561355,-68.88934969278237 +2479,-66.32617471810259,-62.48700779536447,-63.10487418584616,-81.65635209343434,-53.6567375299835 +2480,-68.25267357745216,-61.98817840204835,-62.03773642385685,-80.08595288046506,-66.64330895049719 +2481,-68.9840429589273,-59.06560124168129,-61.54163016861039,-70.9821478726201,-64.83602712709178 +2482,-63.898139140831056,-58.940477834916656,-69.3993242895441,-67.32882509277987,-68.47254448446569 +2483,-62.936281457572655,-69.15777009672323,-73.81678930766888,-66.92601152675502,-62.98618136936438 +2484,-77.1612054332083,-67.51370409277237,-68.00226197020726,-69.22924242823413,-71.48650823952572 +2485,-66.43585199078022,-66.70510709249956,-78.55490017352571,-67.48929725364687,-65.9282649350278 +2486,-74.37307103252755,-61.68316329987483,-68.22720419253916,-63.749981275103494,-62.509100573045835 +2487,-70.49271008376995,-72.59182291853588,-61.253884612843386,-69.1005945849785,-63.6171181176112 +2488,-74.5040534144274,-58.758593253529156,-62.92858138231256,-70.0222415773196,-63.84636796926378 +2489,-61.32361806656763,-68.06608328233462,-71.29601504439516,-70.82266844091595,-64.92057441195422 +2490,-67.04131743399833,-71.63855183267043,-76.23407524987219,-71.58249233995414,-71.94627093227653 +2491,-66.92204677226033,-60.71491769516711,-64.72453698806417,-65.39155974302179,-63.392139914982664 +2492,-65.18448927665852,-68.53556952462827,-58.28104524926711,-81.58727541778809,-69.0049308725517 +2493,-70.46104894056269,-71.33471217066845,-73.9367923627262,-72.26627371400137,-68.50532705299896 +2494,-56.92114710711763,-67.38530038169156,-70.20121422077307,-72.21898242403206,-63.04665997071984 +2495,-65.63926978101917,-74.34122068202566,-64.23429504922954,-72.25160535898968,-69.3217434614482 +2496,-80.51381089848701,-67.25352662962247,-67.05308798775036,-65.41623964521149,-64.7990224613719 +2497,-57.12026518035555,-76.55038040213557,-68.2498800939321,-63.80556948210473,-67.82938906246139 +2498,-70.95281628433362,-62.60646044548565,-72.99052977672832,-67.48726076362541,-65.16458859041039 +2499,-65.7706607765219,-67.86806957223907,-66.64241031807803,-75.1991218349162,-65.27285645983059 +2500,-69.00485082216088,-72.31119367017125,-64.55207669434084,-64.78725370575042,-67.01789924317427 +2501,-65.16119290108954,-63.572939259892685,-74.90289327776325,-77.82832962423426,-69.63455192695132 +2502,-66.05953325246202,-67.36241646136757,-64.96444193225668,-81.16297010204234,-62.30585671200791 +2503,-74.07440622714243,-63.79224843835895,-68.91694451019498,-80.39790038483851,-68.4051003583989 +2504,-66.11212812654232,-66.05033607195465,-62.94259458439449,-69.81741656771104,-78.60474929157998 +2505,-69.4821180205819,-73.03100894161813,-61.818419738109704,-76.47864991630793,-64.65640152694012 +2506,-63.997051584521394,-66.90689231477174,-65.02716821409798,-81.19817366738614,-61.45107170476462 +2507,-69.51976720005432,-66.48704256036916,-67.64190619387355,-66.18760078630721,-56.280803930183005 +2508,-71.75166727987427,-63.12504871420616,-65.06544595954512,-71.10282871538182,-62.66387499158076 +2509,-68.520223176632,-64.36678533758437,-72.68320572310073,-70.93014594810657,-66.74583497203525 +2510,-69.18002796956455,-57.693293155578445,-66.30571197059697,-72.13612378404552,-61.424892735569536 +2511,-67.90946383607965,-74.23264465598537,-68.79314465855242,-64.63553033379296,-68.71324985798101 +2512,-67.21500369711895,-55.31182409125562,-67.95428064900815,-64.47175992250878,-66.12121285271185 +2513,-64.21603707164405,-68.69219162339496,-67.2697220903271,-81.48600009692125,-79.89053659630842 +2514,-78.62405913417028,-59.24712854513598,-69.66535339023145,-70.22742917923095,-81.69404154545045 +2515,-78.3563622019328,-68.51188413745102,-74.02924994007978,-66.65802124162612,-71.27914304240643 +2516,-71.54057130915979,-58.728479359174806,-69.83185833288599,-70.56316100279365,-75.3453567161106 +2517,-74.73590366100849,-76.84976330482078,-71.24876550126383,-66.22139020547135,-79.8575725929104 +2518,-71.53836309202998,-58.158493980271004,-73.54897927154482,-61.63370678524716,-71.41597450326482 +2519,-69.09701164688204,-59.51309360784013,-68.63261897051304,-70.12664995783692,-70.7280218425301 +2520,-69.23222210752286,-65.98391910165186,-59.4301636949316,-84.80195049783771,-76.13159407362426 +2521,-62.84702419312908,-61.96767783935046,-61.208455379097,-63.205557626200736,-60.10196827200529 +2522,-72.94115232637284,-65.83655235105796,-68.86359684964377,-81.69861447572919,-64.93608426167943 +2523,-63.20913051988903,-64.20324486718583,-71.84224121646866,-69.90261287537984,-67.41507235401927 +2524,-68.71778848473681,-67.93259794609506,-71.36457874409436,-75.77785915324633,-67.99688442423302 +2525,-65.57207653579303,-65.51971090711658,-65.01093514725085,-67.12469949021049,-64.61376630376274 +2526,-67.53592177029287,-67.12310840403134,-68.6394371627685,-72.42075659655967,-66.00201034374001 +2527,-69.66934700396519,-58.99402758090318,-63.760124962080006,-64.93356337155628,-65.66215034141409 +2528,-63.44475240492155,-66.4705870228573,-71.89858319136535,-74.62294207051342,-63.740932782223624 +2529,-59.34316392507141,-74.84946896712346,-61.94053023678946,-74.59671620228913,-65.14580719689793 +2530,-67.40280821836112,-65.2674778682441,-65.27891324470296,-71.19442043883517,-58.639071048452855 +2531,-65.08311676250263,-71.07333140090498,-62.2063371454602,-62.77105740956364,-61.18375523911458 +2532,-61.570963263137635,-72.53997544839773,-74.21849902573139,-68.91025375572727,-62.838136531191175 +2533,-75.52731009178589,-63.21130560607292,-62.839832103556276,-63.34010087525075,-67.408258460041 +2534,-69.65255899516804,-65.02829032627255,-68.21894639834844,-63.472524922365956,-63.35727777920991 +2535,-65.21652155370045,-57.03802918220724,-69.24847053024565,-64.56922904631905,-65.01981887896551 +2536,-66.36581932997437,-73.92588452133803,-74.05071243511279,-62.652783226751325,-66.04783964363638 +2537,-58.586349427025056,-57.22953621445045,-60.280647868225934,-71.25254980429305,-64.2178672425878 +2538,-79.32444676291647,-60.22697628859056,-67.76885529998536,-68.77320420248115,-60.781062907083154 +2539,-78.70380225053749,-60.411524004010076,-66.35078343487476,-69.88275294216642,-61.72234342542788 +2540,-74.35174841639832,-68.1411789085447,-65.320138980468,-60.719768410258375,-57.3513559856358 +2541,-70.51088234428283,-61.96336220393039,-77.63730867815664,-69.42967055882048,-72.92755224143704 +2542,-70.56584033558876,-69.03324113171537,-72.44013923560753,-66.71507457754873,-73.1640507029366 +2543,-67.81868066152363,-56.37631176222208,-57.1213600493361,-80.82132572030149,-71.09720807256495 +2544,-73.39911814660488,-65.95352533212696,-69.83276377621414,-71.19219751851237,-65.31449586092383 +2545,-64.84093053687978,-67.24803390664577,-66.7989184768529,-75.84126128985582,-67.4197113904491 +2546,-62.4620019736803,-65.02628742268408,-73.9019154752056,-73.64816838894785,-67.89062448231338 +2547,-60.44433296238673,-67.54883972458494,-63.80867860838575,-71.86043664730491,-59.15701477744341 +2548,-59.494185988746636,-63.033144327578576,-64.09073068146137,-68.11542082817574,-83.65593114550505 +2549,-71.33298655416124,-62.27705453048127,-61.916838782183824,-80.2746158545784,-68.34092639696587 +2550,-68.07895233224713,-72.76766782311061,-63.92845490991554,-76.10694415965736,-74.45870255502993 +2551,-61.573617311645904,-58.34184896325021,-74.29656077237877,-80.39256517879332,-66.22391058821596 +2552,-67.27348601474259,-75.51648664635923,-78.63265856586516,-74.63720818524084,-54.94512758959776 +2553,-70.31115850677314,-67.6147127404719,-64.2977511315813,-75.31485404282742,-53.13170759601821 +2554,-66.30895669152471,-57.844818265805635,-65.8213864644848,-67.17826968200929,-67.71351462326098 +2555,-60.069890153201854,-74.35665458330288,-65.68799162711305,-68.72330336015396,-71.58352858398905 +2556,-61.34609589700139,-65.93626577103156,-75.09482251108786,-71.0946806224441,-71.93786905196241 +2557,-63.06996285450351,-62.43183567233932,-60.572600707902915,-76.05608009560238,-63.893284327356085 +2558,-66.288815875997,-74.17877122409678,-60.60189301486579,-78.15726814081292,-62.92591765125772 +2559,-80.66768349604396,-59.664938021063925,-66.57762712029701,-74.28616609256748,-67.78645313745245 +2560,-63.54601846190963,-68.39998856156909,-60.99203246429376,-68.48158030685384,-57.82751806563827 +2561,-71.75420581067044,-61.31719585748316,-63.786981469299654,-57.056743515084406,-64.46651058428613 +2562,-68.91812592842157,-66.19849360081393,-64.15650830839165,-61.30457553957562,-61.00735494489487 +2563,-59.575471318512655,-66.94974096850454,-65.58966488670161,-61.43887990150004,-61.34371538554758 +2564,-70.68714116398017,-68.39345068339406,-71.60632545747833,-71.81185859617516,-71.73368301597681 +2565,-70.15680858642632,-74.9538519909541,-75.54463330835308,-74.34938592859952,-64.19971717440231 +2566,-64.9029736796842,-66.48144497461912,-67.64127056082458,-78.96121877452646,-59.25771973684587 +2567,-72.90814371795109,-62.098376773185436,-68.65559575865039,-78.65176121432576,-67.76228101542195 +2568,-60.82889832711838,-61.282714424359725,-68.21558212580774,-82.52566221897382,-60.67276672806151 +2569,-63.076282218837754,-76.6141739212899,-73.55016328238374,-78.09590353184923,-65.19990203755984 +2570,-60.281104149992046,-62.990108804608234,-64.67139236126873,-76.79049807843167,-66.77195593096795 +2571,-64.1489985840044,-69.52011929312894,-69.75635558259832,-75.71765001046167,-64.71033114479776 +2572,-65.44965734629525,-70.44338552897776,-60.51176484223887,-69.56206494350316,-62.88489598444733 +2573,-63.79151291416822,-69.69164304403134,-64.01146838768393,-74.8034542263354,-68.79533514269933 +2574,-62.947130271205125,-66.37266293050018,-70.71097359693458,-91.84089169326454,-74.23519807533837 +2575,-68.46000126679088,-62.156617809576254,-74.73871486245699,-69.95649311236843,-67.70456406585863 +2576,-66.92727971496299,-67.18990981445313,-66.55312527285903,-66.9537420410085,-71.71400552878421 +2577,-59.7209081685286,-65.87838689795961,-74.53166980562092,-77.14962563009541,-72.32931404797678 +2578,-70.58434495604867,-58.12312747007988,-69.34150798631542,-79.01575266731857,-71.65233420848475 +2579,-72.79877381494036,-63.72834321683811,-68.10845264333932,-62.103610640760394,-72.56402269609384 +2580,-68.34310740250318,-83.76816711903655,-71.15438131671537,-62.439907755760096,-67.93221938180982 +2581,-69.29953712599426,-62.459161139912744,-76.59076754249702,-69.17166872954306,-68.00072996427507 +2582,-80.66652869722148,-69.39242912198898,-65.21657695615633,-68.20056650435373,-64.52107767527465 +2583,-57.09574391352464,-72.12636508061532,-67.71625056369749,-62.9510697947034,-70.52007139018639 +2584,-59.56811723187371,-51.509199197747854,-68.02719692489543,-66.25064212969767,-65.4887497593185 +2585,-60.82656341287516,-69.4153567026385,-64.94592165348013,-70.79928741153789,-58.82013554091675 +2586,-64.14878878229801,-62.389818414295526,-67.72671620732896,-75.00866120801825,-67.33171559720383 +2587,-67.64777787918706,-71.01441315023047,-66.7667450775607,-77.69546448520447,-61.11427991660824 +2588,-59.57373109422178,-57.67356390602654,-65.72088166988033,-81.60465877460113,-67.99877564311221 +2589,-70.32259022247906,-58.363842043732326,-65.59426930728945,-77.1931514656915,-60.908074609192035 +2590,-70.44807005918608,-69.56767438997052,-65.4519598245422,-69.07360021053042,-64.77086672466153 +2591,-63.933097781341374,-61.43343447194766,-66.67142563749302,-76.5141367383182,-67.12209686797506 +2592,-69.8869355438714,-64.1324108616098,-72.44484848200841,-68.55458064439168,-73.7924218310037 +2593,-70.1724144269815,-59.58398327052479,-72.46942935646442,-67.15904041144789,-62.00646327278376 +2594,-65.71465138958511,-62.748838822959634,-72.87535916238886,-71.46427832673552,-68.53746028255954 +2595,-68.99552056884238,-71.81151644993152,-64.45546636480317,-62.45267615076596,-78.32039969673241 +2596,-70.29602786057781,-62.129826179750935,-70.20817510583079,-68.31405232849893,-69.55668927092712 +2597,-69.84492535981565,-70.09043980518513,-70.89475232564641,-67.66038997041498,-64.94337260135644 +2598,-71.07076088664095,-66.49243806224837,-61.048640425156854,-66.89733631346202,-59.76345705307175 +2599,-67.37278891970826,-71.94007936736207,-55.31253333192372,-62.394512222276845,-78.42289504060273 +2600,-71.50430167944091,-64.84576192715167,-67.0819783806112,-74.81782782062355,-64.14170536972145 +2601,-63.32104165707188,-68.8351126960599,-64.47175331636326,-82.1896060147046,-65.24961478212556 +2602,-65.29971019017209,-77.81117071772489,-62.848954387196976,-67.30828351829518,-70.31666182318556 +2603,-64.73808974916521,-76.23876740193846,-64.23241570631701,-62.973015335072716,-68.813061940555 +2604,-63.61287886468342,-62.316448545568534,-58.36335044457647,-65.25860981621986,-62.52895867492943 +2605,-66.15822373574747,-62.875483847492944,-69.34275302756375,-80.73250113545609,-61.16050517847633 +2606,-78.56316604362377,-78.39862796335008,-59.978224898691124,-69.95139505094762,-71.35044821977694 +2607,-73.7235622812209,-62.82068810039015,-65.60780338843304,-64.6460442916235,-59.153981081128826 +2608,-62.94965956811192,-66.72707253789345,-64.34951011356742,-65.72436911904208,-61.20975821144554 +2609,-74.9468333990361,-64.73072954068562,-70.31893935759773,-68.05041046216884,-66.6755157952314 +2610,-77.06060463413256,-67.53358051325436,-61.93034275142245,-60.8277411281157,-67.79461293935337 +2611,-63.97173144681818,-69.42666875657267,-76.43015967616469,-66.35897051739975,-69.6655499865905 +2612,-60.44047594229593,-61.360883759038956,-72.80454179743519,-76.48310788281638,-72.59878400766743 +2613,-78.28781787106573,-68.57201264017964,-74.24137435261582,-61.63642763285706,-68.95668786757551 +2614,-66.34009301457844,-58.43559741748454,-69.51937138998635,-71.31604582185304,-71.03812675054492 +2615,-69.05217720984452,-66.06988385956706,-76.68727716045306,-65.63098825733682,-59.39265672716473 +2616,-69.74250308407916,-78.176900051157,-64.69343366339753,-70.61469480075797,-59.13786958357449 +2617,-68.83948682346569,-76.6087625696915,-64.73919365197965,-67.08463836535851,-69.14142023882172 +2618,-68.92139459243016,-66.66526228681147,-70.82095000546768,-67.08164878017814,-64.23436738814915 +2619,-64.44089417002854,-62.83477261802696,-64.04644757142802,-70.27918329833902,-70.80580874647413 +2620,-63.3947671300401,-62.73255334757415,-69.6477741961606,-66.92336819422309,-64.7693231965976 +2621,-65.37978654140436,-64.01682382783522,-67.8161976726463,-75.3547918309891,-73.08111694076364 +2622,-60.692204137988746,-56.17433974433361,-68.0538047524799,-68.38725836216146,-68.77118168412362 +2623,-61.80151466390846,-62.772931784208765,-67.91223083448986,-91.19919217816744,-73.2463335747548 +2624,-62.483663178162246,-66.44122811707301,-60.32755375421826,-71.64489946686523,-74.41892215347063 +2625,-65.81945031011172,-64.2850908340697,-73.93890956043195,-75.14586136168882,-82.5344808750341 +2626,-68.19583375686028,-68.48658397760838,-66.72605616084917,-66.7554878098724,-72.20929589251264 +2627,-75.29287528391518,-67.13487013087874,-68.62705903433573,-70.29478571140152,-76.79427754934632 +2628,-62.155761923125596,-64.06841593628192,-71.099266836502,-78.62404903507593,-66.39517656421839 +2629,-72.32704116719648,-60.48336935549506,-72.12024961541631,-67.1700821024937,-64.70662362220249 +2630,-66.25970471599723,-58.70374766276887,-64.25139364325041,-81.37372388519339,-61.6200748606542 +2631,-70.854198651954,-57.32758716234913,-66.97219357779203,-73.6501677941537,-60.56421251365744 +2632,-68.83368178593898,-67.3422630816976,-67.60525990677667,-65.04870936853257,-67.70493277601311 +2633,-60.08740316378692,-69.89859645825595,-74.95810880303613,-71.87896513245472,-65.66067814906961 +2634,-67.84584575812802,-66.9840284276355,-66.67111013448094,-72.04918939980767,-61.43613814265822 +2635,-71.85434010172709,-64.83687686589755,-74.72856817820804,-61.38963944630673,-64.9512880084276 +2636,-73.44099895564803,-70.63616410960664,-67.4508435568627,-69.21558863948863,-68.0462288403312 +2637,-57.813826408264745,-71.68332980909972,-63.89291753324389,-73.03278154854176,-70.60468526725062 +2638,-61.247271814016926,-68.30347427787699,-62.50479790175295,-67.69261730842915,-63.676783428149385 +2639,-62.756050497493334,-64.16857409039527,-58.26215486167253,-69.39169606595891,-65.68749499496091 +2640,-65.54129684444302,-68.36957068527775,-62.31812876737561,-78.38973448012351,-65.39355767869226 +2641,-66.69024353352152,-59.08672428358182,-57.76228962452289,-66.22036359219791,-65.7558371921335 +2642,-65.79686797210967,-57.03131186777586,-69.00300179884718,-68.37801722233354,-71.93782190076963 +2643,-63.820049564223105,-66.16606176086715,-72.96036332299373,-59.394092789215385,-70.14117220298422 +2644,-63.733423889460674,-76.28507517682287,-62.15252225312821,-66.80503561045079,-78.2403912496176 +2645,-67.11050846250508,-59.580690587595086,-78.99920475055006,-81.674916177288,-64.88001354816684 +2646,-67.0114905999265,-73.34959308764434,-80.66609541849162,-67.8893502873393,-69.80876930645734 +2647,-65.138884765683,-62.65152568926779,-69.24903799089196,-67.24333223339187,-63.20774751290053 +2648,-69.41203915238785,-70.29394269270017,-83.22138931085387,-55.443473904846726,-68.34622241479246 +2649,-60.949474978053786,-60.83639100348215,-66.16926345966924,-69.27093533865873,-73.67836232889158 +2650,-71.01816409442317,-74.94472029279015,-73.51550121386401,-60.85103955916816,-66.04501911845301 +2651,-66.83997079176112,-60.90332046868988,-61.29952412605468,-66.16331500055398,-69.39015817731098 +2652,-68.34500479700142,-67.13755901677145,-58.6727636537186,-77.55866404758038,-65.11665863861026 +2653,-68.5893478911632,-65.0979447420776,-66.75206226650451,-62.79128269501533,-63.14009591157617 +2654,-62.18657706124617,-71.01140272083998,-73.05908826256193,-82.2964445869935,-64.30221527752745 +2655,-62.12492224080658,-66.26626356398853,-66.62140709152358,-65.34811680947186,-60.71087792228454 +2656,-67.39545979243132,-61.9708409860871,-67.58667138046816,-60.74376336563656,-65.28930931766128 +2657,-65.70224441531002,-62.16392701367928,-69.5731898916346,-80.95400154107755,-64.45516530519197 +2658,-70.21435578518557,-59.69326953136463,-68.90630644694104,-66.51335211218513,-65.92341621115082 +2659,-71.94237994855985,-61.18155915426922,-59.0449495117773,-72.56913062579468,-62.96571019274368 +2660,-73.90861649623056,-78.74492692771817,-68.72169744246104,-71.43982937876791,-61.46138703899175 +2661,-64.50976527634604,-67.8155995733685,-66.44912333669996,-70.29408113630835,-64.68159692564019 +2662,-80.44864100259106,-60.45475310836234,-67.79342967144686,-62.26621371201889,-64.40947417081053 +2663,-62.77038546228561,-66.47814244343807,-63.11437765386585,-71.68902707315442,-61.56269976725005 +2664,-61.27877510439003,-57.34464239205827,-65.78591460168366,-71.3387326756047,-72.80240409623929 +2665,-66.69345315125187,-66.11339500257418,-65.70074791871585,-70.77980253170286,-76.93966341929821 +2666,-64.30609272447877,-65.48191153154103,-61.77738125748415,-68.41320052307421,-65.90100158975739 +2667,-70.20977941232435,-67.44998704345595,-62.585509648721604,-66.70435467282606,-68.05931175936021 +2668,-73.15379260837796,-60.79259823302917,-65.1329238723417,-62.08884449854364,-64.0727899555538 +2669,-58.550460729187684,-58.38623929328798,-64.54409069123189,-66.94563333728958,-73.53272606277763 +2670,-75.99303910055727,-65.21408344203549,-71.5978360759922,-73.3733960573354,-67.9524968507357 +2671,-59.481050972845296,-68.13659652891849,-60.88554320161183,-60.46780074562591,-66.07393551675291 +2672,-67.30312554896588,-66.04003194188546,-65.00516056317815,-67.67931331621938,-68.85919090446627 +2673,-62.3015245567209,-63.8748528520517,-60.76844213868405,-58.93561443699252,-67.76211063431076 +2674,-61.31563011050641,-68.29941415402388,-72.85839736036591,-75.56923244873909,-71.25841525676924 +2675,-59.97733694804345,-58.40117084663691,-60.24960630478847,-74.06660651139512,-64.81049119926723 +2676,-64.89716832478656,-77.26373902777013,-62.49868827418856,-63.98442985744476,-63.49788562387315 +2677,-67.9630999086365,-68.65589206811323,-73.2804313371695,-62.07081257824152,-62.700364019656156 +2678,-58.18836605181222,-55.50881953132441,-66.26815791998615,-69.86175736395944,-64.61505155293855 +2679,-68.92830151333108,-57.52710637663344,-78.58489907281732,-70.63926786308349,-66.98572590233047 +2680,-74.3254209741151,-64.79754275880346,-65.84137946864836,-69.90460613422934,-65.58939534004429 +2681,-71.31083147265632,-59.80114139791465,-67.89779238916759,-66.89575595612477,-59.04756590085194 +2682,-72.60951634265909,-57.82345391158985,-63.033495083300835,-66.7099282672529,-63.88333423964528 +2683,-74.97147171611364,-68.80089031766117,-78.18420276335542,-77.60816145067434,-61.76772073306748 +2684,-79.1377955297572,-60.68114261886434,-72.03669477912115,-60.8484308159214,-66.43004727988762 +2685,-71.13575210065954,-62.70898608843675,-68.04839004062953,-68.32236979133626,-74.30239704441232 +2686,-79.22778341135351,-63.5059429142101,-73.48014485101099,-65.15442975368973,-73.12266543979341 +2687,-64.3606765981988,-63.63968157356414,-64.91022008178622,-67.74167706535346,-66.83501965124141 +2688,-65.89171546236615,-63.88773369660499,-70.84412058218612,-76.1284935697525,-58.55184317631201 +2689,-69.9237796907264,-66.17411599286854,-67.32444493516715,-68.92714234355678,-66.94143722225469 +2690,-68.41583766239974,-68.81085782811189,-69.2393552278983,-82.66276840929709,-64.23559518854887 +2691,-70.14099568155156,-59.2515726088569,-63.780451655432586,-64.9955186077835,-64.7485704394222 +2692,-71.0236873612266,-67.97758887472085,-66.9720352590266,-60.58463965193327,-70.95594030919173 +2693,-63.807496083978506,-70.11157212587491,-69.52859237455684,-71.49215607077399,-58.289138514949485 +2694,-74.02633318922977,-67.45086435799007,-72.06372017298943,-68.06115068595773,-69.50998390223091 +2695,-75.84000949392824,-65.53475720018012,-74.2186559204956,-81.24849434628808,-68.06655772640109 +2696,-64.8979538176941,-72.40136346887829,-56.706406464811465,-62.2477085374777,-65.37457099564043 +2697,-69.59956662758525,-65.49536827969999,-71.31933323512936,-62.90301641985643,-66.40025139096213 +2698,-67.46345535174825,-60.846026380772884,-77.39240169429202,-73.50689005183794,-69.1339244877473 +2699,-63.67590110146495,-65.66035900217287,-57.06087151350823,-73.96445308261924,-74.18336109766662 +2700,-60.9920376546196,-60.07535393854931,-65.7043494979533,-66.3638914278399,-58.368126164803456 +2701,-75.14127793027406,-72.84353798520539,-64.36703167636581,-66.618181901357,-60.39906994903043 +2702,-68.71789426924076,-62.119369868579646,-77.33364076933272,-75.98131624905407,-67.50779315577462 +2703,-65.93353130467574,-61.00415029684054,-62.49496967455366,-73.20723082012006,-64.79384862757382 +2704,-71.63904913218053,-58.66441778083225,-61.50907164167946,-69.79381906773074,-62.612092459855894 +2705,-68.53253851727727,-68.85375472675922,-74.88028068257985,-65.65231889460873,-71.43728845835439 +2706,-73.1399938541909,-58.05647909896842,-62.03748213675209,-67.87985979077602,-58.14211768134567 +2707,-68.99580552664814,-61.7495561252229,-69.20813876483253,-77.1702193109863,-73.2843690026309 +2708,-62.7356942044133,-65.53333206870678,-60.06244589315546,-59.62840960726124,-72.11822213349016 +2709,-68.49100484493063,-63.503493000401036,-74.60513208804909,-61.62061048832134,-66.33911278923463 +2710,-78.350086830808,-62.856022822962004,-72.04437438783513,-63.17192081136009,-68.50648346674811 +2711,-64.78103206887104,-66.28228112581517,-68.60160093666937,-61.85665035902965,-67.79718097488424 +2712,-71.36865948999612,-59.63723859081362,-66.30715081348187,-72.62857740015329,-65.91605092105452 +2713,-59.43548245884286,-57.92287285779375,-67.82234054935142,-62.731536747683606,-66.14241405913815 +2714,-63.79737060881719,-75.853092722701,-70.62609187630173,-72.7020185861279,-62.864641366655306 +2715,-67.44719605957357,-63.445611086416854,-64.67966517017429,-68.62852242356196,-70.17770006892543 +2716,-68.41309776738834,-58.95529483155125,-74.00602263979259,-75.97890161123597,-61.36230403887459 +2717,-58.76170569589913,-63.02093636201559,-62.55692080704343,-70.18183164782388,-66.6389856613548 +2718,-60.79803749018091,-58.70268747973626,-75.2400630980928,-77.20379285843704,-55.67361270260883 +2719,-56.35474717865416,-73.11773939450846,-63.077170709090986,-69.56873124614734,-64.57236839920098 +2720,-63.77276051539834,-61.07865389058478,-75.59730879512857,-73.83409828820133,-68.19387255601607 +2721,-68.27399832829724,-66.8885087091588,-76.3727851811965,-64.79644833371844,-68.30865773418608 +2722,-72.83729041044236,-72.18787501019217,-70.3225607238416,-76.3576714578598,-57.21432399723292 +2723,-68.948532728397,-75.52970552655779,-79.08627995909,-71.0964190345137,-61.143556578717494 +2724,-66.6571546504477,-66.9465756623874,-74.21113911618646,-66.44774656366681,-68.21448280842934 +2725,-70.70124260053744,-70.4765052254097,-74.79804108252809,-72.22782787157703,-55.30799014183655 +2726,-80.42983509807826,-57.0270013121497,-86.573632816808,-65.72405164116799,-68.68393200680816 +2727,-61.78603919045822,-60.33461224071798,-71.54286322993059,-64.40891035897216,-71.8259463767946 +2728,-60.53588374078687,-63.76916522889303,-73.8931361484026,-69.95029956162435,-72.92781314516617 +2729,-55.25324212177117,-78.68450431136452,-64.95840676868195,-59.121140051247515,-65.18803588838261 +2730,-71.28272325450885,-70.07681193388134,-66.48069117893004,-75.92087712060261,-58.40978011073041 +2731,-61.20379307212438,-68.83476716550048,-68.47799708303326,-75.7628378675889,-58.86415255870189 +2732,-62.42086551489955,-68.43354636270584,-61.17391533501829,-72.39166807037799,-70.97163383383793 +2733,-62.583039315696794,-62.880398665084485,-63.407518850009915,-83.00719070250683,-69.95123753047473 +2734,-56.43162766672,-58.53716203155791,-62.000903266830356,-64.7752024778217,-63.73932583840557 +2735,-63.56766708877519,-62.02784595203406,-57.330661391006636,-73.53754566940947,-70.19906241421208 +2736,-62.70486122646054,-60.84494182156534,-68.2360467704152,-69.99739425710426,-67.00166363626198 +2737,-64.69325869446862,-62.90720158193445,-62.70807955132596,-68.49895237949355,-63.32843259789181 +2738,-64.04722505416349,-57.15014342334012,-70.42928459342143,-73.5920445876556,-68.2346531474726 +2739,-63.77833339782902,-57.98558542506556,-70.97988157885158,-63.29903807218242,-79.87201874830487 +2740,-63.343779195913754,-62.6537705423703,-54.5290758926218,-74.65514202420935,-66.88386136593725 +2741,-75.18346881564638,-57.157736258229036,-67.90753856058845,-68.02684661617735,-74.65520102339437 +2742,-68.93624748820005,-60.36589525535676,-61.97873628374732,-68.47037316913976,-69.78259331972072 +2743,-80.5806840401278,-58.281703642625075,-70.34793099498124,-65.84539126681155,-63.635353619741 +2744,-72.86863092991442,-67.47505372527434,-58.447200713785655,-68.14467848765123,-66.42765419069137 +2745,-76.99613357043498,-64.70455531417643,-71.0117480113243,-72.86144360115075,-77.19889293724205 +2746,-72.35487095867607,-58.64651695612593,-74.91903818088699,-73.73627554780785,-73.7732243237412 +2747,-67.39175688141849,-65.1074898912339,-57.8667364815349,-77.09935492776057,-68.89000609026519 +2748,-71.40439546635317,-64.20930489425155,-62.710250869770725,-92.89309630192675,-61.02869784220912 +2749,-66.98092679106107,-64.92693894519685,-60.261807284687016,-88.37530794169722,-67.5236286644115 +2750,-66.07415657801326,-67.10197166350754,-57.739342728981434,-83.13066020228871,-65.82236331266047 +2751,-67.81763759616129,-66.34395662904895,-58.13503495932477,-94.72141224756369,-69.41293804396074 +2752,-60.38252883121947,-61.34921212595646,-65.00149703693958,-99.57654405878488,-71.41188102438598 +2753,-65.5641871993567,-60.01641319140319,-53.77467791682048,-89.99665655510384,-70.71146844237404 +2754,-62.346006211460406,-60.99283860333177,-62.853267763046404,-92.73603451156191,-64.93656738548464 +2755,-61.6940347347134,-62.365187273695085,-62.249925897037976,-86.33540100229688,-62.516411360136686 +2756,-69.67096527763765,-60.866609560041674,-62.730029913452405,-75.49869477674471,-67.86803108349037 +2757,-66.6283332833787,-63.26919848757958,-67.627557678061,-76.01337095110743,-65.5746026333202 +2758,-70.74714358439896,-59.99587881160301,-73.10320406811483,-68.58330235243407,-62.97683422948317 +2759,-62.93981495708487,-52.725575463481256,-70.45706417581962,-68.64177039773382,-56.535038224876985 +2760,-62.42318290603971,-62.6840046566162,-66.9460960179025,-70.63383981788388,-58.35144031776427 +2761,-64.78972213897414,-73.37623231752875,-73.76112806899626,-63.745512095936405,-61.13117564929885 +2762,-64.3569527596757,-67.28699637509234,-74.32344419266549,-70.318140661559,-64.58549589435573 +2763,-62.49757945135957,-55.86268327616401,-77.26866361624987,-61.36118783867037,-73.96339022805563 +2764,-69.68889091023664,-70.72901911487195,-70.4388807833696,-66.88880482833585,-66.4482655417828 +2765,-61.84708619291712,-68.38330870599714,-65.20044286363891,-76.73964289752477,-70.18027577688711 +2766,-63.96155909920235,-59.56882299151378,-64.70579889637257,-62.61436327046193,-72.23203022059172 +2767,-68.7684527775288,-62.837811833333184,-59.56146700732463,-63.13632472919238,-62.28663921565894 +2768,-67.80011492402876,-58.61132248869816,-71.03720639115954,-69.33961877945066,-63.403413069880386 +2769,-60.2624746447587,-63.010872375308324,-66.20120784492102,-70.85626231461917,-62.171658813194675 +2770,-67.0140010272815,-56.41430071996116,-66.53879980440792,-75.56590791187894,-64.74886059211136 +2771,-65.44382915907617,-67.16886002813393,-70.44287672433157,-71.4981374446125,-64.79724274560918 +2772,-62.77474645885926,-65.11522249917361,-71.35250351445704,-79.40380420588903,-62.120023683392844 +2773,-72.44344246497785,-65.34140976445342,-63.32362454684101,-73.14426166117904,-63.81635126537319 +2774,-60.17872126237174,-57.95040630716525,-62.1646794072506,-67.73654252383488,-62.39728014603865 +2775,-64.52708432458121,-62.533447926426405,-65.42303528213286,-76.01261039707786,-69.280897743698 +2776,-64.97843070707752,-67.00555559718809,-56.68540800812548,-76.81092069986198,-70.00609555534436 +2777,-65.72255249422223,-59.313786026902605,-71.92035164825002,-74.35721269938074,-70.37613884058075 +2778,-67.4299895959605,-58.23257068301631,-70.66249244874676,-76.60697659831943,-65.96377226404715 +2779,-72.44670579881783,-60.421888395858666,-58.86920094478702,-81.18512889179202,-63.05663294269639 +2780,-65.28118783893008,-61.27641016762775,-64.73486333179716,-68.09433078641248,-65.60412369534063 +2781,-63.081200428707696,-53.40183032379192,-65.8026167660031,-63.62791284458772,-67.66369905708271 +2782,-64.24578726188629,-67.41865167960822,-56.076127637519505,-71.29571940654797,-61.76826678145299 +2783,-68.20486562426188,-61.619882149892234,-82.65500510992582,-69.42776027987784,-73.30992500692636 +2784,-62.79341517265374,-62.40327253390814,-76.44749683077066,-56.580830477734985,-72.49243612699732 +2785,-62.263398268803996,-63.820115139027884,-80.74413279481526,-69.99577180851858,-60.720826670506256 +2786,-53.201723947770994,-68.68945888793385,-93.77146717253667,-74.04897621466097,-63.48844278330443 +2787,-62.11339618259417,-64.55705952169711,-73.61814912800972,-72.19076819178511,-60.991717286162405 +2788,-60.7380690710528,-58.210364190219934,-66.16545842031609,-68.3188773326697,-74.42768209328122 +2789,-69.2579191763966,-65.7156205645992,-72.0179773090409,-75.23090074321185,-63.564641325969475 +2790,-64.57424889030273,-74.07698646494153,-72.66456918834172,-65.88642057522553,-64.40517390354108 +2791,-70.96112836291985,-61.18235564567152,-68.51829814891663,-71.36906985317555,-61.78251510585128 +2792,-57.52539765416384,-66.02683054774951,-74.23030947133005,-68.30293596592973,-59.049353187231645 +2793,-56.339277455665886,-56.36350684337603,-63.24625339596341,-67.77811825493951,-66.33323470545929 +2794,-72.10396614673164,-65.5600165603003,-70.93047063042079,-64.72861772619937,-73.68470220743644 +2795,-70.7288018688349,-59.96968870799764,-67.35327506917808,-70.17723608877913,-64.86613934037011 +2796,-61.85347539825761,-60.6338062721609,-60.82550924608703,-65.98929484443406,-56.999093431192726 +2797,-65.01055026601415,-52.676324245073154,-56.999043455935706,-63.459723441558026,-58.13122662183193 +2798,-61.07328888195408,-55.62846525709098,-64.41937255862196,-67.66489033806896,-61.0394308680271 +2799,-61.50114864624446,-62.43192298996971,-63.89951290368125,-75.96278549082867,-60.05557838703285 +2800,-55.65185927717858,-70.35154980427852,-60.46805660064277,-67.86198428085198,-66.00427973642114 +2801,-64.03443918898385,-59.10071942247453,-61.69075998027329,-65.6499266876142,-60.6060946885303 +2802,-70.15667321027897,-59.75872015171586,-65.5268624965359,-65.76451223112129,-63.860589143588534 +2803,-63.2865982921417,-59.55447522233507,-59.15072040087446,-78.50521705792616,-62.772680396266594 +2804,-66.76938987331538,-60.403639940517216,-73.46121860603203,-72.90531020669171,-54.81103771333418 +2805,-67.04618753280995,-57.740757514033156,-67.98444583328359,-68.4487907287919,-59.94242445624711 +2806,-61.957056582914234,-58.24103389762503,-73.75006647812603,-79.2666216934948,-66.35065880313569 +2807,-76.8011477601233,-72.44083676079525,-62.82486500869689,-64.9814687395458,-66.54688112225185 +2808,-63.862133046124534,-61.00719535896702,-68.35556045324742,-71.97153573156298,-59.57079539549042 +2809,-68.80527417207483,-75.72183294585695,-67.84288616697978,-60.93052589842786,-63.866292319408565 +2810,-72.42662524099785,-63.59814646512618,-72.18798198422773,-66.34970570080174,-62.07649278653593 +2811,-60.96724809282813,-62.986530138117935,-62.35357089134003,-68.0367664420816,-63.50257155561674 +2812,-69.945409733878,-59.54664322323246,-61.36203710909802,-69.12441172815605,-65.81454863549637 +2813,-75.9552846423508,-65.13676726817289,-74.72918878229275,-65.41460876813777,-70.14475121343274 +2814,-67.09097061624516,-64.59981950320342,-58.33173540517187,-68.61093961518685,-67.55287323160593 +2815,-72.2595510736334,-62.16809180584323,-73.04787727980678,-71.94906655264657,-57.347861193858954 +2816,-67.84607133981231,-70.56352766850873,-71.80413394484275,-69.43344518209591,-64.66435976122769 +2817,-67.13091510396578,-65.08520897720504,-63.65868800850429,-76.56570754033415,-62.664158557734844 +2818,-59.21001461777445,-57.26884030810203,-73.54600903866502,-61.764353472767674,-62.794426100527375 +2819,-69.33869060495638,-76.7260589425878,-64.71354028881102,-62.60548126239615,-71.8931109397634 +2820,-69.74528143648081,-79.17854821211706,-66.32198202869542,-68.10167546025639,-72.79923252931314 +2821,-58.28941820383704,-60.98331391450142,-57.11401782413086,-65.94910407703236,-67.24273297519325 +2822,-73.07188349704506,-72.05884952786911,-64.25815732706137,-65.71444698797922,-66.91424608783957 +2823,-66.68380371937383,-61.25114284031793,-66.90939420219901,-71.21218630592469,-71.54168079093941 +2824,-62.54799048349183,-57.02883656905328,-69.48954679465287,-68.47977487371224,-76.35431328213484 +2825,-67.273555375357,-68.5342019729552,-68.32024714305608,-63.4951111377992,-61.25078418330105 +2826,-65.03912753525603,-61.375122175166716,-66.6951405680252,-65.39906865467911,-63.09075845950576 +2827,-59.8929783513366,-67.35287185139883,-63.64082693557105,-73.2044058249287,-60.49088460203858 +2828,-71.04299703125035,-67.02941849349715,-65.15479471584082,-67.24129416784353,-60.827576982250385 +2829,-58.41341907104973,-56.09570492022864,-68.43260603656407,-80.0472638857896,-76.42676653192288 +2830,-67.41107526134049,-64.845359525829,-67.08914617674847,-61.738195554661154,-62.08848789901264 +2831,-76.06404561367422,-57.00626339181393,-76.9341184796209,-74.6787960108262,-64.63475686382958 +2832,-75.68518470621059,-61.32258555814016,-62.49680443044171,-79.17092652597104,-67.06646754708373 +2833,-60.91021305794608,-53.740346111540944,-62.640264473961864,-73.83193004131267,-60.04396148740948 +2834,-69.6404841148985,-72.11096559815331,-73.57454968195987,-64.20789356172412,-74.74590687176072 +2835,-63.59940443977312,-64.4614746829239,-62.98866054788881,-70.74334206004593,-57.46996670197791 +2836,-69.03172704466299,-63.684955619526335,-65.38965005873062,-75.40266949832656,-62.72498453567402 +2837,-55.15134965270512,-66.34812778596613,-66.3790437248622,-68.37969769620926,-65.41355602986872 +2838,-68.59221874453713,-57.02255123570901,-58.92427952537186,-60.660095117967835,-62.28363421430862 +2839,-61.14806278396488,-61.515313129565556,-62.41508027878269,-72.1522107882342,-63.49309833561153 +2840,-55.7334746909912,-56.08318223888531,-72.21265219859184,-75.35592095668648,-60.73292042636895 +2841,-76.59039707183081,-58.1356204337412,-62.83449173115873,-64.95025282615627,-59.74820570248806 +2842,-73.8812717919552,-61.68767255418205,-68.26685737123852,-68.07414329301687,-58.88168823142626 +2843,-60.133843127976746,-66.40375899779194,-64.95632182665568,-70.32739320141643,-62.02173618092805 +2844,-75.10833463141624,-52.16719679788213,-61.053950365577656,-74.23801208950606,-66.6674991502086 +2845,-60.44056035208527,-63.965651888424496,-61.50930419793812,-71.68751552479821,-69.6855174962311 +2846,-62.71505193769392,-69.17417511569312,-68.40455590957451,-67.05934706477593,-64.25071566047536 +2847,-70.3761615741888,-62.24274758683931,-63.38514539564991,-69.16056516993163,-58.16760979961433 +2848,-64.32983590551541,-62.183569998956074,-60.157659369969174,-65.9538460128452,-61.839152569907014 +2849,-58.76871460965231,-70.80264913482452,-68.11645914599137,-71.49369492753813,-69.55852520690084 +2850,-60.69236459491693,-66.61718581771156,-72.39751726708977,-67.07290598954413,-68.68132367719006 +2851,-68.68898017523583,-62.76166700457221,-65.19482412520371,-64.30947252278132,-64.42135922324468 +2852,-56.244123282648076,-71.38452347994874,-59.60904039878755,-70.53705047545185,-54.875514905755914 +2853,-72.19254707635837,-68.57565223345836,-65.43337182504946,-69.72826473729954,-61.75336011361978 +2854,-70.25411260943635,-58.63791129335396,-70.26824702701438,-66.06296144793832,-66.78201367470308 +2855,-65.47796972790307,-63.208253900038045,-69.66328954736358,-76.28438091115972,-60.35563360442061 +2856,-54.62651829610424,-58.89012677183342,-67.96602349021657,-66.55542034739472,-62.97235724160711 +2857,-65.82993517209385,-62.60491253787819,-75.61972017116967,-68.72553885624991,-66.25228794316605 +2858,-76.85494404633391,-58.11801812453654,-78.29843408657969,-76.6985435245877,-67.01307636442911 +2859,-72.22182327086806,-60.06280354812883,-65.42372844366021,-66.38890888432974,-74.15815290792945 +2860,-67.63921751353746,-69.26678818064893,-80.83161071954018,-70.34681896895837,-68.08527439881044 +2861,-71.09969383153384,-63.61271512994932,-66.28268358480899,-71.48431143115167,-61.82041992364978 +2862,-65.49142241580903,-71.15447867224437,-80.19668211096258,-67.30542264840413,-68.53665447470662 +2863,-84.21473984731453,-61.2785349990132,-67.80026004600452,-68.69610733683778,-62.41018642100036 +2864,-60.025255937404395,-61.87554553763617,-68.3512624966868,-62.32192733181479,-58.2133642646364 +2865,-63.16166398658947,-64.11960811522172,-56.89761467707671,-62.079575922782766,-62.505088766624404 +2866,-62.346955952374884,-66.29291324167565,-59.77967652671702,-77.05025523662115,-64.36157038500751 +2867,-66.9669493738772,-74.25476433847936,-63.020204951287546,-73.28951703758932,-63.84992496964777 +2868,-58.25711962193932,-59.22288253357818,-65.59725552147796,-70.09200463968395,-56.66902769972698 +2869,-61.00205049879589,-66.53100650821862,-66.98247953036524,-61.06367545150082,-65.68803166621252 +2870,-63.78286988623918,-62.82023183080912,-61.848661017574585,-66.47798158769258,-69.06514760622974 +2871,-68.95161256262308,-64.3801620117168,-59.75899961287395,-58.514307809433845,-59.78748462037565 +2872,-68.57428103514876,-59.99593072161977,-66.49960669083276,-67.8982343045847,-58.797516449538755 +2873,-62.8020378498914,-65.06744522907404,-72.08778824906373,-66.58910048199627,-63.164096718046764 +2874,-66.15721271556028,-65.12173044596153,-68.62928517560405,-61.22167480027428,-62.2444094950948 +2875,-55.512458274517094,-59.52632897356888,-76.2752426305668,-62.40851660081895,-70.08410100398574 +2876,-62.54380656789493,-58.7656102894684,-72.09348548421966,-60.956298648148326,-56.4673719639252 +2877,-58.43409788651012,-64.53295875005621,-57.14343103523274,-67.2066127351316,-75.20664404466802 +2878,-73.37309430005897,-67.06844485938878,-74.05980173046632,-59.97598602334497,-67.90230958374788 +2879,-65.16764701738126,-65.90375603875316,-70.38507245749511,-58.898458801433,-70.08577275653208 +2880,-65.78202657504143,-60.94770996945415,-74.26139892467582,-77.78495450531584,-57.73259863013706 +2881,-65.79837142001007,-60.45362200637545,-67.49441786200997,-68.80782270038141,-56.309877140940145 +2882,-63.66121393207699,-73.20259129347902,-66.5933639963354,-72.1175858635174,-67.91088664650897 +2883,-64.2096492202802,-71.95025345239046,-70.85828502943376,-83.4138258609881,-71.6490295055064 +2884,-62.56585637416486,-78.03958023043711,-60.71356943472514,-69.7107393030252,-74.39914770805227 +2885,-63.686077322927645,-60.386181857910316,-73.28228358578535,-77.67649932112313,-64.2275096453651 +2886,-61.32766266599133,-64.79297090231574,-68.22146284213972,-71.78450284429789,-69.81186388124328 +2887,-68.90415425784705,-60.036001555005726,-59.90701680190594,-60.11603037034767,-68.99893800223784 +2888,-61.959603659849456,-62.652744437480315,-59.14888048365275,-62.72097935080081,-63.56356247036891 +2889,-59.42263289493521,-67.01955470225191,-70.5086160506941,-69.24851384293068,-73.77846572346486 +2890,-68.69065459806036,-68.82975815156671,-60.939820403074336,-60.57194515576573,-69.05592481160932 +2891,-73.3209579618787,-60.90948266781188,-71.67333161278046,-66.18581620754942,-67.82640982788404 +2892,-58.219916044245196,-68.36933167596274,-74.11559929060284,-66.37179504652757,-65.52822805271104 +2893,-59.92844563761793,-56.149210623513085,-61.360141538348806,-69.14978107378897,-61.83598265052146 +2894,-67.42024134942699,-62.69240425594845,-73.49498092459606,-70.55247394956373,-74.48069922918071 +2895,-60.0816838715915,-62.21591085924665,-63.17758208516815,-69.43395479546365,-58.46597896090675 +2896,-65.00273282442448,-68.93864543421775,-71.22067977542486,-74.70562720316403,-66.31837052502375 +2897,-62.93602261762774,-57.47387704667484,-71.12204943296163,-61.1628111851047,-62.01706401203195 +2898,-65.14817232104785,-60.05801531563838,-53.19728449109872,-64.22930252623563,-64.67022847916695 +2899,-63.37447321536529,-65.99108448330261,-57.98288818623745,-73.21618198127153,-57.10309146822985 +2900,-62.01904491755883,-64.36446701201216,-72.0386889178776,-64.0074960402342,-71.3172860039284 +2901,-67.8400776639531,-59.32603361742027,-62.982972739795,-75.9963201612544,-60.25559291086912 +2902,-59.09556346563365,-66.47466524495974,-81.52697385231475,-73.64365618373166,-65.61971230681459 +2903,-58.826602781833984,-58.89778575269629,-78.31570993353348,-70.95566761223047,-61.56753056386475 +2904,-69.84482158055741,-67.29599223403696,-67.87756849750595,-79.05549560415984,-58.628948150872255 +2905,-58.37357110097223,-64.39685602483871,-73.86042883124641,-65.10026320350718,-66.13685465193409 +2906,-68.31983878636163,-64.46737141229205,-61.27117904853887,-63.38747227204855,-60.03789576047301 +2907,-65.17911467506512,-56.40915036770464,-67.24491883895311,-68.93792418548183,-61.0835013630884 +2908,-59.96722144580386,-63.039763395944,-73.03067840229468,-77.37431911268153,-65.24799645740698 +2909,-59.31238053502813,-71.57187106753246,-68.97450746629505,-75.2567289929145,-64.01907398573286 +2910,-68.01964579701215,-62.956113648802464,-81.72602824014957,-67.90497611585661,-64.51464828506222 +2911,-64.01983648395837,-68.24465516267374,-68.3055908151042,-70.11644429954795,-67.10701062741687 +2912,-60.917438933189196,-60.52611402643026,-66.82137078213199,-71.28933435168909,-65.78477640825659 +2913,-55.46742846278241,-66.88365110350979,-59.3713849828879,-66.80896888352191,-66.28308090227652 +2914,-64.57000509269548,-64.21181840797276,-63.76141111663252,-62.83912428164838,-64.31594253396713 +2915,-66.13416573163171,-59.47772996207537,-58.67873002137172,-69.84769312394461,-56.246170878606286 +2916,-67.94082210971084,-74.98809549451516,-63.566711648377655,-69.17441749080649,-68.66673902732383 +2917,-68.76905815016298,-62.300135446603164,-67.3637562081272,-70.55257919147932,-53.93877224939853 +2918,-67.29785053779034,-61.459088420100095,-74.57327518778732,-66.88184635056186,-55.64913515885764 +2919,-61.80738973854921,-68.3808275688475,-58.323016812125346,-67.36003662694,-63.99892470404456 +2920,-63.144451206472894,-66.15019608193028,-70.17289749035857,-63.40925977157834,-71.08692108744587 +2921,-67.61140497365638,-55.54874835060943,-73.88005228948768,-62.604449920848005,-71.61639836222116 +2922,-68.60641771400631,-66.26787108304457,-71.73449254307627,-72.91738286678265,-67.73329826857514 +2923,-61.76844567115674,-57.45795138666992,-63.87948778523964,-61.68855845370336,-69.88579271432498 +2924,-63.34365855129106,-65.61258943879629,-64.72450812098862,-65.30061995804094,-73.49688389392948 +2925,-51.784269388807814,-59.32154620451351,-60.96242299573913,-65.15288761371048,-70.7303533259469 +2926,-66.90332230388452,-68.95145303686296,-59.88357602712368,-56.116723749361434,-65.04124283203495 +2927,-68.10401691666938,-66.53300381314948,-82.88398446837408,-71.74767988349016,-54.95471988012397 +2928,-61.00647987972852,-66.050185037148,-63.788175546829706,-64.12195535198717,-63.21930833449098 +2929,-60.431507882899496,-61.358959906011904,-57.818557395817756,-68.89034718058149,-56.343623523403586 +2930,-65.439448564942,-63.76790394720543,-62.04983529144516,-63.844193403804674,-57.83996602344211 +2931,-61.782353023957356,-64.65158616860678,-63.9474980425691,-63.74163383084173,-64.76644230649724 +2932,-62.03812801866572,-64.90784990803496,-65.75175156516184,-67.48116736022172,-63.10008977882859 +2933,-70.71142377591865,-67.71117262270226,-64.81690785642868,-68.80783155732776,-59.581712674901 +2934,-75.2612946188331,-64.14884725592002,-59.916475662584865,-66.83486679463984,-59.428113683591576 +2935,-66.06497110132216,-65.2195808389148,-61.502263960250716,-58.179191165735574,-55.93413689587905 +2936,-67.64730149597915,-61.171923167919225,-61.11190433133481,-70.59160055902137,-69.36343515859186 +2937,-69.23700434754423,-66.3149110610255,-70.20244567637576,-68.02034239828032,-70.14977705842072 +2938,-69.0745678392339,-57.855174407005755,-69.96998049236642,-61.92149760043682,-58.69397035263019 +2939,-57.29222855007086,-59.641374361811685,-62.513255297256094,-61.117349499188585,-59.3268204282522 +2940,-62.467824158171936,-59.69547688675305,-70.71795667482863,-70.52858012134945,-65.33716413836675 +2941,-64.3432464082241,-62.362586910555535,-76.99279526776559,-65.87913724101378,-56.43608416462032 +2942,-61.64094603306518,-64.08265360933669,-72.63942400258358,-62.68308907183153,-61.06422879332544 +2943,-61.996920808231955,-55.83365128366748,-78.90614192721368,-73.25454554943427,-59.7530509498181 +2944,-68.6599895783718,-66.33720081796844,-64.99949806595637,-61.494693542930904,-55.86119329205959 +2945,-57.86053923611466,-65.17558988545964,-71.89962245589572,-63.483133435607655,-56.79879124533845 +2946,-62.40847677772453,-62.80632513228862,-67.35948906971876,-61.3569931710359,-59.73049116470212 +2947,-57.52672643206506,-67.36716475139691,-58.01000449451457,-73.76450783226385,-57.14667950564928 +2948,-69.93007991181017,-78.07527333938394,-69.75915212244378,-69.94435519798066,-64.29027584773291 +2949,-64.62164844859214,-65.5124320824516,-76.86389403299104,-63.09776254908671,-62.86326951547712 +2950,-65.88105637967104,-67.39035804907738,-62.184986635169565,-68.48116803545518,-58.637626610131235 +2951,-63.88859058330383,-61.04748604209601,-64.42659628787995,-64.64685337348087,-62.38814468716732 +2952,-67.75313518807289,-63.35442031909465,-83.2092777021988,-65.26576064264435,-67.13599742188045 +2953,-69.07843236513246,-58.57590033113452,-66.64639558794994,-70.02633969764052,-70.3816782852165 +2954,-62.429248566344256,-69.57999558807694,-81.67741704739068,-73.89473158100468,-62.35569352577983 +2955,-66.66634496148244,-63.66862561490563,-74.65890028410098,-71.5210977606829,-59.21290503859586 +2956,-57.143766616413664,-62.78330156588621,-83.69312734968283,-59.31327020025996,-70.963510712003 +2957,-58.73315496624116,-61.53806002813433,-65.95739094218442,-74.34129451444818,-63.34820169277648 +2958,-62.14538626876257,-62.83149952868943,-67.51810549970395,-59.59725390613242,-64.05687059000718 +2959,-60.30850052233007,-62.22699882881916,-76.04080819524525,-71.01386565166058,-60.79257859274632 +2960,-66.8829974523154,-63.928723006894444,-75.40054195395945,-75.64726098817432,-60.75996426392595 +2961,-64.98353207297559,-66.63753773120568,-75.88594144783234,-62.96074683614414,-64.67955848716359 +2962,-71.85954659128004,-67.84480314186115,-65.49903804445225,-70.60280505329571,-59.293271334201066 +2963,-60.95353549768928,-61.48156013569254,-68.23348774326803,-69.72014278203906,-61.040437032925574 +2964,-69.38443614340578,-69.3056438217132,-64.11123775240884,-64.42835272384761,-64.84369175366596 +2965,-67.12995171661842,-64.78326256667766,-59.859561737160774,-68.89971708354105,-59.688873870306445 +2966,-59.01482731164214,-59.82589626086772,-68.1850583746512,-61.94948215766027,-63.595551524594725 +2967,-60.14874457860729,-54.541740277120596,-60.29545862145706,-62.95490262264962,-58.57969004343666 +2968,-60.53972732865514,-54.86193454111704,-64.13869020854686,-59.97143826539527,-55.79716893861944 +2969,-67.17790182673812,-63.35924801998844,-67.9560639074773,-66.03390378929222,-65.90059385339885 +2970,-67.04531252107816,-67.80462518059566,-59.74949930180597,-67.1890285062552,-61.8013364072968 +2971,-66.65071920170777,-62.15477604892237,-71.22070005051779,-62.097565117412394,-64.03439362507599 +2972,-64.97288690682475,-60.480274727612844,-62.50693959962936,-57.277798682620514,-71.78364746529627 +2973,-63.62907325807349,-60.26779589761989,-62.59216531478162,-69.83419789910708,-57.335022918828315 +2974,-68.22940853685147,-62.06208686627469,-67.30345141125629,-66.53710064708633,-64.69235089040542 +2975,-60.4454515410271,-57.53815733702532,-68.99868786318086,-57.37048734691558,-74.35997148356904 +2976,-61.63222254684109,-65.56491436244491,-74.30495805203634,-70.3108175936882,-58.495959687107565 +2977,-57.309858707909946,-56.00084142711872,-60.55242747132763,-67.67219206696487,-59.75842506515627 +2978,-59.988052794724574,-60.9811659130054,-65.57858703843947,-68.77093578412567,-63.40391491826583 +2979,-70.12978329019485,-55.72991806841342,-63.68540214157437,-60.35793964591443,-66.05328817171086 +2980,-64.2664585227996,-69.08958373780766,-67.3257440923034,-66.80140789820106,-59.286071437668035 +2981,-61.9286362496739,-73.5956844599675,-59.91902494440854,-66.8220816040565,-70.57947831636288 +2982,-63.12907357743036,-80.07302813949363,-66.67246110121,-69.26007588878721,-56.324574560938714 +2983,-55.397257710262004,-77.88377922995231,-60.56263139078682,-69.35808792761833,-59.78347723111778 +2984,-63.69319365511724,-63.21085680613027,-65.51605160172203,-76.05878765402808,-53.7960073231054 +2985,-58.463604651732226,-65.42030764685175,-61.44624705955894,-70.07828911020012,-64.54302707480714 +2986,-65.76436629452776,-55.91628969593061,-55.56537685056011,-62.042623909002415,-56.79836158551284 +2987,-63.0073268856443,-62.718618672007686,-66.47991194088718,-55.480724798527184,-57.647989890932976 +2988,-62.16338658015845,-57.763005878976536,-62.487032054401595,-59.4680697744333,-62.95470572456961 +2989,-55.38352478970382,-64.26033175685664,-66.39152719291003,-65.60829672083406,-69.88296816037968 +2990,-67.84647259384158,-71.330527365957,-72.80297756636737,-69.25331461064029,-53.432322127479054 +2991,-64.11687600278414,-65.83461246251876,-65.88120894493159,-62.539520819457486,-61.81799976328137 +2992,-58.50569336181506,-58.65803797715874,-76.62408957260952,-63.756382439752244,-67.32755595230026 +2993,-60.28057708573715,-69.78682111344256,-62.547862815713636,-59.48593364403748,-62.82837589432715 +2994,-62.77544330552331,-58.63225521720598,-71.86577618865391,-65.1214415716336,-57.998930589291575 +2995,-66.89450402958748,-69.23899474101633,-69.67253096488552,-69.27175688924623,-66.20401841476453 +2996,-58.22384819371414,-63.484441853217305,-66.156162907835,-56.89237361595764,-66.91115522434265 +2997,-65.1230508927952,-73.3176347940951,-67.90140523731402,-60.27701261206065,-68.52612455785214 +2998,-69.2075230834487,-57.185145282977984,-67.8260658518008,-69.28174811766337,-61.81061010460977 +2999,-63.84954462540912,-68.28531979606592,-75.21429807862368,-67.89382150110865,-68.78024089284162 +3000,-61.24117252066253,-62.5654815104935,-72.87012673788729,-60.242048952105314,-59.53828878691252 +3001,-84.82259900202176,-73.88350580952296,-70.98471739834562,-70.12747224776358,-66.97153381836766 +3002,-73.41821678830703,-62.16949103115025,-74.51594305345581,-57.50622115512815,-56.270199057851855 +3003,-63.831147522744,-60.01489506904833,-73.85361139520636,-62.61431450298472,-73.8938209573435 +3004,-74.67941607752941,-57.472408401209115,-68.17918146468455,-68.37953661237037,-66.56947310245828 +3005,-61.94416173751836,-55.13541844511222,-72.6454163986003,-71.76321526660986,-54.7769169817103 +3006,-61.1137456573166,-58.941143041285855,-73.04497521810787,-67.70525233510679,-59.049457273840005 +3007,-70.02297129962209,-57.55623924674857,-77.51216919366057,-67.83151001860007,-62.88420717526032 +3008,-69.40821520176587,-65.10625328667817,-67.20401864877088,-71.61517468587085,-67.1726748188731 +3009,-73.30630368370649,-55.43938750068119,-71.95144761513697,-72.47477355983982,-71.5828370424891 +3010,-69.57872047416242,-58.28548039552158,-63.15584598783002,-64.22060565445484,-55.518467028245745 +3011,-59.05791865646406,-71.0551601726628,-66.64021388102509,-68.95864790658025,-59.15043970319451 +3012,-61.35506012724298,-57.25279364555387,-70.03507620188049,-71.25277524895769,-62.22515467893562 +3013,-74.3717883406469,-59.38029690501037,-60.64674710054533,-67.03187505402688,-71.43478500207297 +3014,-55.39212289285722,-70.65478822067736,-71.05282356261715,-65.58984152273581,-61.06996142682765 +3015,-63.072168048141336,-64.5176263619015,-63.642758021666744,-69.73199763309245,-72.00916111124604 +3016,-60.581328357859725,-53.827564314719716,-69.4120510534195,-70.69408868184793,-53.413138454826715 +3017,-78.00012736983867,-72.56370568492437,-61.05030946441157,-68.49793529208365,-61.85205658742483 +3018,-58.66926789026037,-60.148999266069005,-84.36696170348567,-60.23041621161466,-65.26512525837606 +3019,-74.24450285235659,-67.41207830720258,-65.57588430372576,-72.8294442669771,-65.36690473072984 +3020,-73.09799020280518,-55.485423513265054,-78.11774868819268,-63.00097421149725,-60.73801391996484 +3021,-59.96626094139983,-65.47751601391334,-68.99277160395681,-68.20337893731728,-78.35107629786931 +3022,-56.708304416542006,-65.00065910897104,-70.78557396650805,-65.80257223467487,-65.79031902076586 +3023,-65.43307158005832,-66.8708627616909,-64.37914297292956,-60.58881530778256,-69.78225455833376 +3024,-63.89314568020542,-53.08169108885787,-71.20878311796345,-66.56769103960167,-64.72419973648358 +3025,-69.5571076399828,-61.81073651612678,-67.33304496423766,-63.1417181693019,-76.33573967024145 +3026,-67.59595526060176,-65.9524424014771,-68.95313262215156,-58.098638552862106,-69.74035041012137 +3027,-66.39373002608625,-78.03815311235282,-59.957413453718125,-66.22164096925619,-74.89000474130813 +3028,-67.84409858551919,-70.39982874891395,-63.608433910694366,-69.7262214162062,-63.82962104872793 +3029,-63.42007607626515,-65.41196232710585,-67.67072723870595,-61.987949019361764,-67.0096722510637 +3030,-62.962138214153356,-67.03099238699683,-62.973485601822524,-56.36406967003322,-62.58946478832615 +3031,-61.55264313492143,-65.9320271407436,-64.37383232850395,-63.83022144971326,-57.02527135243651 +3032,-66.48755144719449,-64.23309737805633,-60.57750676498757,-64.99916059182935,-74.21092995621513 +3033,-66.43820222301095,-63.448957896189306,-59.39333670086194,-56.32622548050897,-56.01955515112495 +3034,-66.78846012134746,-61.12167728981796,-77.33739105740531,-66.48497444885497,-69.03972696553978 +3035,-69.51680213327646,-63.57423155017297,-63.80139965665799,-65.39209792515724,-65.60404325016249 +3036,-71.39414198034781,-59.552146012235575,-66.83639521180807,-61.176633357847365,-64.55860294773457 +3037,-78.22156050412424,-61.86710500736206,-72.87171560280916,-56.583849208582855,-63.76756413321967 +3038,-76.36242187763916,-65.32592731009096,-65.63965120394059,-60.56196659326149,-62.99528505492898 +3039,-76.2673183449498,-63.436872754206476,-58.64954031781688,-80.35198222276324,-65.01388946019551 +3040,-70.80494734631792,-66.81713386133941,-59.90838856586522,-56.12697700567923,-64.44337022410554 +3041,-73.19760955821857,-64.73275244299613,-60.15388847979647,-60.56465410546518,-73.0286118647587 +3042,-71.38598116957519,-62.615849186622064,-64.50854868767344,-71.7979256259789,-76.85225574819248 +3043,-62.17267814176414,-65.04281280367822,-65.62741346936974,-64.98279838547316,-63.487041425847764 +3044,-61.676733778473555,-60.77290552093153,-66.43273979704878,-74.94610119789905,-71.98192601865894 +3045,-63.39525085173062,-66.93435652580172,-67.5438473630499,-73.74581262287789,-68.40573868456018 +3046,-59.13175249115262,-59.06793927824574,-67.64492161436398,-65.90956070542134,-68.05679174303728 +3047,-61.268429044781044,-65.46648582705534,-69.16996896702145,-61.17387876812952,-70.4088281352974 +3048,-60.5896584974531,-57.85944434272206,-72.98140202444134,-57.969296728170065,-60.93553258178219 +3049,-76.32647799763711,-63.19020431665976,-64.30777479205567,-71.98638083348662,-70.49342493174825 +3050,-65.05156578021683,-66.9175900804227,-66.90419138536241,-59.81082882995571,-64.57976184283827 +3051,-61.178293175641265,-67.37266445320971,-64.71820773767224,-64.4344454450162,-59.832547242274174 +3052,-65.3372124628117,-58.17377010587025,-68.87750829151952,-71.14523437000885,-72.41211619682959 +3053,-61.73277098682919,-68.67524042551595,-71.88238213318232,-69.68382243136715,-58.09628560839821 +3054,-72.41241869451827,-71.7138649143814,-70.10842588780709,-63.02159159573969,-65.16303654646329 +3055,-65.77501687434355,-63.39455176112212,-78.8002959139373,-73.075382412716,-64.90098920710591 +3056,-74.07716664695813,-56.55924888997233,-70.95455723777846,-58.955345651113774,-66.01747488994185 +3057,-65.18334859793927,-66.85672381212648,-78.9003943325777,-70.3285495036432,-60.893932762175886 +3058,-58.46784202283868,-66.11249590467146,-79.74827007527715,-65.04282501233186,-68.1789952390816 +3059,-59.12161703039206,-65.2872866085815,-72.15629904421357,-67.38431980311432,-62.23688872316055 +3060,-76.99545292982967,-64.40931512924888,-83.17784482080424,-55.36686829281529,-63.642744385769724 +3061,-66.03919668489384,-59.31498377056235,-64.30900149548938,-58.72656643379083,-62.33465914836364 +3062,-62.295661302983696,-60.445492049087534,-69.66095041857957,-56.29418367252188,-68.29621231356154 +3063,-60.7871358526495,-63.55132647711453,-68.7220538719024,-68.73653217992941,-54.75527834371439 +3064,-66.57728531888952,-66.59327399312815,-59.68184671830832,-63.12742017914365,-56.815248920541634 +3065,-62.92592091784254,-55.467244338807184,-73.02933957529947,-60.72791619280668,-58.25282003921296 +3066,-60.07524981576437,-55.11315893295006,-58.46779281661829,-69.14337236881367,-64.66304896787774 +3067,-74.68234734407613,-63.32198016076805,-63.076672048509536,-58.087709742188565,-57.170316767229366 +3068,-62.29827208897032,-63.338537080731136,-59.21824759735984,-63.02469374501248,-67.6227549225159 +3069,-61.87214638371698,-65.79907140325125,-63.52180698925975,-59.680467125214896,-63.380860536807575 +3070,-71.98103470463737,-62.09297578890036,-66.65843677250987,-62.39325541524952,-71.70823940042038 +3071,-68.07763483940408,-58.503010121075675,-62.8992694660863,-64.27221156016799,-65.77379147171746 +3072,-80.31626926866363,-67.66106893540022,-69.24852206640642,-58.688091326599505,-59.279049386423964 +3073,-64.97468711990162,-70.68814705977748,-63.166708754312616,-64.72886565272968,-66.28212184450278 +3074,-59.190968780676165,-59.53670937715588,-65.27573079605843,-65.68514509433392,-65.48614673319194 +3075,-74.9136725913873,-59.596526879706,-61.175130325189784,-70.22832992747426,-58.76706672385637 +3076,-68.80998381402866,-68.99893637832238,-75.09678467188878,-65.18262363482013,-58.55958757255707 +3077,-60.701584651257996,-73.90771242184796,-73.12004653308107,-70.11206049386803,-60.67649096625359 +3078,-60.873640042602226,-70.43083312787664,-70.17237132730557,-71.93201559865767,-57.7872964826627 +3079,-72.08019919743744,-67.03823708007664,-60.939433423133124,-60.79109006246348,-60.874849540085506 +3080,-63.71232165391695,-65.41912936879807,-60.54674461186428,-71.19978243242802,-63.32182792337219 +3081,-68.02526982380549,-76.58854151237877,-64.67233400133912,-72.08960354165377,-62.33126308066281 +3082,-63.86921355348404,-63.06245523361854,-62.81300703142187,-67.89191515640805,-62.04145457462078 +3083,-57.48094175326886,-62.741713823261136,-65.97121885489055,-62.93978672599482,-59.492641158333505 +3084,-67.930279098157,-65.53645793455105,-58.00057124453748,-60.28970539927105,-62.707587120554095 +3085,-64.95894683768539,-73.7411566135298,-69.36814149081489,-61.806181608188744,-74.95850832704679 +3086,-70.27684790491557,-69.67203384827002,-66.78542412574672,-58.791467389098806,-63.3548071100993 +3087,-68.55825867014953,-61.47250432508848,-66.66740346442863,-62.28704784516051,-67.80783868150397 +3088,-67.19664821519291,-58.89391327394991,-65.08719577909527,-58.40368751811771,-76.4029283220915 +3089,-67.8573277390626,-57.378455758804634,-73.46949002089355,-65.51587650001586,-62.79182780275181 +3090,-66.4956719592537,-68.2853566753016,-61.50411038802135,-68.05882115893085,-62.940696549744295 +3091,-68.73131564426744,-55.592773048957774,-68.77504193143879,-66.29597816427818,-68.53260270306555 +3092,-78.65680396855852,-62.426237974519616,-70.41478088003888,-75.0131983173882,-60.2775990133747 +3093,-55.73228251670194,-66.43827787224696,-74.73312125082316,-68.07442244908869,-62.13199264765563 +3094,-58.61029127568938,-60.64776315849885,-60.002568317031,-60.13772244662648,-61.52336696450033 +3095,-61.13884714934259,-58.59830388060361,-57.81866963399716,-72.87354055057592,-63.93219661271175 +3096,-66.14672860145143,-63.9729979777609,-68.59113449971868,-71.8117096470436,-64.46673029252334 +3097,-69.1285348210552,-61.169398500638906,-66.32741506873982,-76.63146771391176,-65.61574024946333 +3098,-61.81355466103493,-62.85358663055615,-65.47036887114096,-63.76737595872333,-67.12061369643713 +3099,-54.793318781375994,-57.79094728352688,-68.29438826359304,-66.05556148312525,-65.06464933225224 +3100,-75.90307608725095,-56.55779430776679,-71.91538292542936,-68.83492772732367,-63.247828905520684 +3101,-59.01790394945713,-55.966350421160904,-67.47271271611488,-70.11705297761064,-66.03468943440346 +3102,-82.29029769879796,-67.6406667017002,-69.35127059416106,-63.12444153117962,-60.3251528271239 +3103,-67.45994623027289,-61.815849960111564,-57.84050939397784,-58.61688172281615,-62.161347201876524 +3104,-61.07963749253954,-58.573714461980884,-68.87531322122064,-64.3544068556141,-56.763275798155796 +3105,-73.00670539500628,-70.47281820007802,-61.2126216888313,-61.449043678943724,-60.804746224963644 +3106,-82.88251521497281,-62.31010626321626,-65.3257086489721,-64.02252123007696,-53.622009228663764 +3107,-73.5169944468043,-61.91945336686168,-74.38163505825099,-65.08281212722217,-67.35223754909289 +3108,-63.316972810141685,-67.27268474886465,-58.52640467103661,-65.02856231584813,-65.48100739982326 +3109,-58.428446002480065,-64.02178243320502,-60.1231178268095,-59.215598957043724,-62.545521900332105 +3110,-65.90209605737931,-55.05272861145102,-73.51262032463492,-62.431809566733094,-65.47422364359896 +3111,-64.7281401755861,-64.94562132234613,-59.325697853688034,-72.2802779785557,-58.46051330328754 +3112,-62.47212987437857,-62.92358668083046,-68.16903672679666,-62.4137964396705,-72.73631177564174 +3113,-62.013327841136984,-63.042849066310325,-60.495834195671755,-61.94436220092824,-64.03613384504678 +3114,-66.17352196766876,-61.89695667844438,-66.80333009808436,-64.87479313221905,-67.69092623939183 +3115,-55.448117285264416,-57.11806922639079,-65.90949801483983,-68.66351055126934,-60.02598915203816 +3116,-59.41405523797295,-64.69265771053082,-70.56206860470239,-57.69579558507643,-73.34974125651642 +3117,-54.08274098923354,-62.56142070945983,-78.34321462105737,-58.87899831393484,-71.47124252650225 +3118,-71.48279487577905,-57.59510914240587,-74.32479962301935,-76.09507352912128,-61.183016010115786 +3119,-70.35366301462803,-61.86458523475064,-66.15487074960535,-78.48242481009308,-72.24398058034075 +3120,-78.35857167751294,-56.73405086078891,-70.66004916652531,-66.05839890539887,-65.33117131809438 +3121,-75.25119985497004,-62.641594888764345,-73.06670820681992,-65.46515984908919,-59.439785016893396 +3122,-81.36282694441492,-56.12546536635057,-68.10803311428522,-71.85683825535729,-58.94709736815423 +3123,-74.22391585945496,-59.93921171740465,-77.1216589060813,-66.2458969500569,-60.02707655506932 +3124,-60.05039806540556,-60.43995194069892,-68.73985844870312,-61.42106164420991,-60.13073968608989 +3125,-69.26133666561815,-61.60721858264457,-72.64049313038842,-53.245148396325376,-67.73550031386324 +3126,-61.51782505438063,-61.66880694035792,-79.12807929790935,-63.172831442130125,-71.72401314655197 +3127,-55.61061300128468,-63.44411245685834,-72.2050729759496,-59.502035091829335,-70.26197623143268 +3128,-63.783940555506604,-75.82004488060302,-63.237392316046844,-62.389752848860766,-55.804193815901236 +3129,-58.36267328093521,-71.26133020083806,-65.66441858179789,-67.73796398514382,-65.60289571565589 +3130,-61.0460353412362,-70.29535415859993,-61.82853415007106,-68.94417264856708,-62.441317991650784 +3131,-61.02025350386915,-71.5782399486265,-68.40217996734067,-68.44115232042331,-60.35414559636695 +3132,-66.20844272375739,-68.0806407747954,-68.12068223164113,-72.66551608751551,-60.625709144971836 +3133,-70.43004494902888,-73.46059264045168,-61.791363944540294,-65.49471471037906,-63.293485962964326 +3134,-67.50835523453011,-62.56468369866731,-73.73932237710024,-72.05627145241554,-59.011742648378366 +3135,-68.954831603749,-71.057381718928,-71.55975903081635,-64.16307120756414,-63.116929223127684 +3136,-63.25853312444968,-57.81789015800073,-65.7437777521939,-68.88320590705982,-62.59420029591316 +3137,-66.55565697308768,-61.02954045508178,-77.03168474238255,-68.5880202248081,-56.06821797077522 +3138,-68.84667647419535,-54.60903774335598,-71.4749255172686,-75.59849545202819,-54.40537248426939 +3139,-62.14474564630681,-54.157074030296414,-68.20359640090207,-59.52202420158219,-64.12742477429286 +3140,-70.07253770532095,-56.79705854023446,-66.06706901822362,-57.7296302799928,-60.33936692207263 +3141,-67.66342717881635,-57.926559286392525,-69.82506358500393,-55.34121564494858,-78.16906732672197 +3142,-60.408472482163276,-66.47956784118318,-78.52999871243864,-70.88240795196144,-69.95210241135935 +3143,-68.1202615431826,-64.14349088638777,-64.64654050493262,-70.34097257823403,-62.13505652906205 +3144,-60.23752656443777,-62.92482754797614,-67.29660185824997,-67.12799928358675,-66.90096960427816 +3145,-63.21506563161154,-55.97404506222903,-72.93184794097436,-51.543705273008875,-62.045215466236385 +3146,-62.11969781842515,-71.27383381687186,-60.55882960865135,-61.56992020143315,-60.04452198976252 +3147,-61.92703272074826,-55.46634142024892,-65.1111109581741,-54.39076899467544,-56.79644601417957 +3148,-60.24266011195243,-55.657998238233674,-68.73589189574447,-60.91301670302213,-58.52327464412882 +3149,-65.0824179146918,-58.88683415119169,-73.67870041430156,-52.25558742420645,-60.851451205248395 +3150,-62.60426108512895,-66.5877654343358,-63.78611315019458,-55.31041521921598,-73.23412003700798 +3151,-67.20038227167606,-53.09762663803318,-68.04966549622254,-60.07809514316143,-64.37242816834262 +3152,-75.602453571347,-64.0912562940004,-73.59380492313467,-59.96647585848675,-54.75911524611061 +3153,-77.10495406798772,-75.83056374229712,-69.52803063043184,-59.81157768480091,-65.91382976748932 +3154,-80.48052137885571,-65.3997164673564,-70.42531468901576,-64.55392603537963,-62.614866366648876 +3155,-86.22902130031177,-65.9807587461882,-64.09467189180322,-65.49864961656732,-63.959534981342834 +3156,-85.19647282355429,-71.25834144135844,-70.32607568499243,-62.26463052303719,-58.101448007748395 +3157,-81.82858009084133,-61.06744084459017,-69.09720844861828,-65.42894755072278,-61.06365538532243 +3158,-84.01669032544488,-62.0855091579823,-71.59259685438204,-61.43725433252971,-67.4130633243782 +3159,-82.48354829454242,-62.683253268881764,-64.91662147342504,-65.90538435615447,-63.7943452801225 +3160,-81.4494950838974,-76.92056745093568,-62.08458432494184,-70.21890635400618,-59.73682078678986 +3161,-74.65256664240822,-68.44590420638868,-71.16269482608658,-63.386790004825194,-62.717838241136384 +3162,-62.397434541618836,-66.01221144469116,-61.69667327094873,-67.91705148241819,-59.80672641814543 +3163,-66.69987837788544,-69.56032749062477,-75.10492914499221,-62.25702347661288,-64.8360108618298 +3164,-67.20439766059145,-63.005438226050615,-64.95739117650318,-59.69455309767706,-73.69032313125685 +3165,-67.01296042049884,-60.70969646670419,-67.05184340938217,-67.67323612631421,-58.89470244523041 +3166,-62.58629302254173,-54.186066907942816,-68.89665862185298,-67.01910762616411,-70.78970990136925 +3167,-59.509794130461,-65.54996814536567,-74.26995532655782,-58.58627199376163,-65.23711970569168 +3168,-60.12463606373394,-67.09487438787961,-75.4804445980304,-55.12945675356434,-72.36407997419909 +3169,-74.00913222826311,-60.031271415728526,-69.86381107890321,-57.70268533616759,-63.6612576246258 +3170,-70.72337674576731,-61.53550560774899,-65.50612632225713,-60.726911663107074,-71.02513545661132 +3171,-63.00266791380739,-62.9126037838607,-74.43544502420127,-66.21830908069883,-55.23478782668112 +3172,-65.23911158383875,-59.91593523549606,-80.08543172958967,-69.8218642611629,-59.31462543925628 +3173,-61.85639676203237,-68.72798577379409,-66.10243764880113,-59.72354571065654,-64.11574750820861 +3174,-69.98984007571043,-68.2257410936617,-63.441392545029295,-56.52193895247771,-66.70514703650987 +3175,-74.0150109237411,-60.166030421065145,-77.33236116798417,-65.97019773792536,-73.65006449744132 +3176,-66.50954587418745,-61.6538987670854,-67.1553665280506,-56.924401764216505,-63.366061617576634 +3177,-62.667947161894645,-57.63857866656871,-66.68636464669757,-53.99926578700474,-62.82043715074574 +3178,-67.35797637648679,-64.76030156505621,-74.85070781594784,-53.21669458295773,-62.7593978906343 +3179,-69.8673070715193,-62.0493658771389,-68.83345383181889,-68.27911688065852,-73.86372946685393 +3180,-59.87628990946119,-62.61073690755302,-66.06380736815635,-55.811557572585336,-60.3210298672836 +3181,-69.5179933881236,-59.28476180850235,-61.61007922542252,-54.42996525691155,-50.65320075492637 +3182,-77.662271791429,-63.772341059746196,-71.5121707555768,-56.449629742564255,-62.17094181835463 +3183,-70.34224428134799,-58.106065099654764,-64.83669921098355,-69.56430745724474,-62.79291832199892 +3184,-64.37216355791422,-62.61911456472745,-66.27413774461006,-57.298339576333895,-62.82912248129125 +3185,-62.29792799250404,-64.82142000757874,-59.930069279406744,-74.58064298036716,-60.343242866725234 +3186,-72.38134119781127,-60.61154915158632,-71.62488439189455,-74.98873052723442,-52.54004808619411 +3187,-65.23347416774972,-67.30318102052063,-64.94994572428388,-71.6275234872853,-67.9301849710836 +3188,-60.88548592842386,-60.26152248764899,-59.042865761039465,-58.65050900630815,-71.2312315787251 +3189,-69.35102680297639,-62.30309073758306,-62.46674995188633,-61.705199491515,-63.77313990806676 +3190,-70.30428201588381,-72.52394932527172,-61.8080464102774,-62.13850313890024,-61.514015168080824 +3191,-64.97900859334398,-74.89251558413616,-67.8464051063398,-62.91049831671575,-59.24476292368658 +3192,-60.825452148761016,-68.22911919170492,-63.34947632245237,-59.423351762357434,-59.184271421124905 +3193,-66.03016831738283,-69.54839915761427,-60.08680124693774,-65.29861774597141,-56.2051160502399 +3194,-62.502421166796985,-70.53192311063901,-58.632419935915635,-64.1329333561403,-63.71107314983317 +3195,-70.56208797879918,-65.9042635576432,-59.22592350164275,-68.86952283808795,-58.152106562998924 +3196,-67.84111709868964,-57.51092428295681,-62.58451765428638,-60.21522386258037,-65.02528305045172 +3197,-67.94352429390575,-59.042282618812344,-61.92036793516398,-66.56544812508758,-61.24460578439812 +3198,-62.2006030643319,-52.61014828275996,-68.89947810001928,-65.17940621561088,-61.565398923004764 +3199,-65.21075681565101,-62.72137885608698,-69.09316720463812,-73.04366231572021,-68.59183661547651 +3200,-62.62313766805999,-64.78804685418186,-61.64643066816785,-68.16427878985989,-65.07368837017523 +3201,-68.55480370625762,-64.22976585946171,-67.46556177058675,-58.64315928728978,-58.89976452225523 +3202,-65.51057915066218,-53.79566407712158,-67.91958724267205,-64.10313148206268,-56.522156510062715 +3203,-75.82951696840159,-65.85784803102797,-63.20009593565729,-52.69304175225832,-57.68916749831128 +3204,-64.02482854174532,-63.73205668488787,-60.27286961499327,-70.91853081740047,-66.99416335573417 +3205,-64.5895119772893,-70.43347249457783,-60.388371998653554,-56.33250640061961,-57.4886138741616 +3206,-69.74003482898596,-53.97208778205958,-62.79091427366025,-63.53840944055564,-68.22172533173443 +3207,-69.7339422444718,-63.46339990326432,-70.65533952663904,-59.933701454407455,-64.37996478276871 +3208,-63.605369818972065,-54.23184688725731,-67.23625900908227,-66.63047410214756,-60.05506129640346 +3209,-74.62233494739353,-62.01409876828761,-64.86339465443757,-65.5911959504113,-69.55680941130935 +3210,-75.98333235981887,-67.49721640491781,-73.13921542070112,-55.19133398814749,-77.4121572013779 +3211,-72.4424379104424,-54.156738201292605,-73.95251986067022,-56.42191332377144,-58.84174715285362 +3212,-65.87685926503354,-54.25356369242931,-71.51340150504878,-67.38959339188072,-65.92010367865177 +3213,-75.57973471477649,-58.13500286662137,-67.19241636180402,-59.94262912377996,-67.93060105000838 +3214,-68.27011671436038,-59.817280766221046,-70.53143822064747,-60.74972248754574,-66.02633065046139 +3215,-72.76540424203957,-58.49806291482338,-68.00828266041641,-65.37677277129957,-56.09049092910612 +3216,-68.28696557769402,-64.59527639966662,-71.67644367968124,-60.67937808415448,-64.80354111792704 +3217,-71.52800967598242,-64.26183130689292,-67.99009521495472,-61.099866296894525,-63.48633874552799 +3218,-69.27874497597607,-61.8703113427348,-67.84333660614664,-68.83680953590518,-55.89732201748402 +3219,-73.15469890288935,-61.54669331111804,-62.823147792595236,-65.06758775684669,-59.82766336770213 +3220,-70.35843037778396,-68.85605637208565,-66.79292079729163,-67.31806801494436,-57.8382153247995 +3221,-66.89429821346991,-56.16287481735251,-63.60660048403317,-61.88576224720189,-57.668109289215025 +3222,-64.78728612541681,-68.7383195067393,-69.52559285764522,-59.507389599556525,-60.125095467972294 +3223,-65.35291405870028,-70.29300051827907,-61.384572541326826,-66.13206124210774,-60.92571442224017 +3224,-61.92959262454448,-57.97907250863714,-60.88255076187524,-61.879537317447465,-64.79811862664619 +3225,-63.104211730091805,-56.67490750643145,-72.08432912808455,-65.51619901175863,-59.34470696973901 +3226,-72.80450371173767,-65.62869360944822,-64.0736360126988,-59.94241850838238,-59.441167823503456 +3227,-63.80028564923458,-51.821233882115735,-57.77426412980721,-68.45010485508105,-56.11770974076761 +3228,-59.81264639097533,-66.37876070623942,-76.20565549000779,-61.412705904840635,-69.11045052420243 +3229,-73.99191693686822,-63.07437722498709,-63.390465869172516,-64.81872156235103,-67.04188473270473 +3230,-58.22767523317471,-59.784280819065415,-65.24973972786378,-70.41808654866777,-58.90670831586121 +3231,-66.06105738606165,-62.17656034080745,-67.11195840294648,-71.9293579886251,-67.70098355151627 +3232,-65.9012610445944,-54.7485251604227,-68.06601002409312,-56.1290061454999,-61.55772999440713 +3233,-67.49579689545355,-68.84115489997527,-59.27782256399579,-67.01399031626643,-65.09061751016235 +3234,-69.4954449991596,-58.14838671206424,-61.128111180747055,-70.5260050116548,-60.31838307348643 +3235,-59.82542030145124,-58.960089650322175,-61.97360321261825,-77.28302252632713,-70.84118315917642 +3236,-58.756789367063185,-58.30987170153171,-59.39531147200441,-69.78640266206628,-56.26701541089672 +3237,-60.818565820162405,-51.32600057400223,-55.470987153285385,-72.88014931226697,-54.13414358161047 +3238,-60.54089008823096,-62.02896593780955,-54.17040392404841,-68.60720938144388,-55.11067048704751 +3239,-59.06446106885558,-77.21314154755886,-69.39336427532876,-76.62928878238912,-52.90072667476602 +3240,-67.39928445251554,-64.15964583242318,-65.89589342290861,-76.29013578709613,-61.19708681585058 +3241,-59.2497522495371,-64.69407075673236,-71.75847644009228,-65.23924607888833,-68.74490772114413 +3242,-66.44491914735498,-74.92402228174616,-65.73555481256209,-66.41899893989952,-64.70606190772357 +3243,-58.63395267776863,-67.50736037669195,-66.12213610764105,-65.78365748070733,-60.28326471956471 +3244,-67.35581245824652,-58.118204179022236,-59.98454988440531,-67.09613978206247,-64.24210619840918 +3245,-56.37576133760869,-60.6514394039668,-64.98193946407147,-62.08912022847419,-66.4686284527243 +3246,-65.61128013538998,-57.88225053441708,-65.53442191723019,-57.96188324101266,-61.901946405879386 +3247,-75.43051499461977,-66.17804298462174,-67.42762300952802,-64.01431718284393,-59.754648119159704 +3248,-57.67564896975903,-60.56761054836177,-67.14391599131373,-64.73863706216646,-70.7212037577001 +3249,-63.73270362590318,-58.57958188040774,-64.10227972228667,-70.21457315735876,-67.58531119410522 +3250,-60.65788311006166,-57.157239069124394,-72.34459038898098,-61.053897306242774,-67.777593944842 +3251,-66.04479130009437,-54.83095699861102,-67.91402883328182,-66.37666697116089,-59.119705324144874 +3252,-73.08884633185376,-60.21479104227335,-66.01841774163918,-67.05289571852879,-58.39333509297316 +3253,-78.12182919680554,-52.84454835811806,-66.59892267855305,-63.67836043229077,-60.61181881380461 +3254,-62.58156297029035,-62.4241306113891,-57.95845739760785,-67.12121797460632,-64.97828745206122 +3255,-65.53451089601182,-74.67599140223001,-62.895466220672176,-65.05684029192179,-58.15092846213939 +3256,-61.01644602315029,-67.80527482485574,-77.20330832424241,-65.57536260092198,-56.811493209592996 +3257,-56.729875318873056,-67.6541457583732,-55.96005347918538,-64.20882939758938,-63.43040296339394 +3258,-69.10954641360857,-57.52783327760359,-59.92618347095822,-53.9074652884332,-69.98850986906777 +3259,-64.83148663676754,-65.25913180556836,-63.228344693893774,-72.13754867066422,-68.30821359255388 +3260,-60.01015098838643,-60.08062894837388,-64.58064306846774,-61.98572163330661,-72.91757067555389 +3261,-56.388051613051175,-62.636811152858776,-69.14388296485201,-63.441681479849265,-58.22610265437061 +3262,-68.6621752341363,-66.01610720154869,-63.546180566297664,-65.46562206561717,-65.46205845174474 +3263,-69.79909892886772,-64.7719954736262,-60.721400304842916,-77.81656765550238,-73.54946987652848 +3264,-61.580158875802326,-60.900361084811124,-63.666471017139216,-71.92987146255847,-80.93142105757535 +3265,-67.73862692977555,-61.976786766456286,-63.34050351037055,-68.38046563494025,-67.97316139013786 +3266,-62.649842917757056,-63.71922584997744,-60.04645367662443,-67.07423152741865,-67.09793035101252 +3267,-68.22949141826913,-64.16765179693535,-62.84399040303206,-66.86789101587082,-54.52830122483979 +3268,-60.95269859314616,-62.12830731836554,-67.61128395717189,-60.295007601478446,-55.13542177983815 +3269,-58.65625512819286,-62.16311199378179,-68.59232529410586,-63.5684421004002,-65.89997952891811 +3270,-51.857040772215576,-64.15589134286851,-69.68589940891256,-56.38268704882132,-54.55019097648781 +3271,-65.58657937642418,-56.84004394581536,-66.6161504396048,-60.50120132152085,-58.710386342085606 +3272,-58.35696245664346,-57.81843255758941,-75.80493974894614,-79.57514966890933,-57.93489423721357 +3273,-60.211071731786646,-53.80472849582485,-63.48619674579397,-71.67622668773146,-62.00746454762736 +3274,-62.40765004157283,-56.16048642592883,-71.79524109007906,-73.27916721717753,-64.87756604790307 +3275,-65.61429966085196,-64.20498028605876,-67.16888665495642,-67.74645969406488,-63.9153025250865 +3276,-60.90404550880799,-59.11776110966554,-65.40617508452459,-62.15762397843606,-71.05078053297287 +3277,-66.25555470166663,-54.58475408345748,-67.22250749651354,-65.12751870542732,-67.69675716326049 +3278,-61.716950058234026,-60.18429857824585,-71.14276228303319,-69.82310326953909,-78.31858043829867 +3279,-70.04519952544113,-62.145061492168864,-64.0457355745729,-67.78937697661095,-60.330031230697244 +3280,-60.82855855997952,-66.2303672862012,-56.87984712526179,-74.6287273687847,-61.05077337708296 +3281,-66.40034215211496,-61.40857239350299,-72.43116313633324,-64.14407457189047,-67.7529701280712 +3282,-58.33883419047305,-62.21837405572513,-57.94972522444807,-63.315123692928225,-57.03440095410679 +3283,-75.55379754676264,-58.40424709925254,-68.6876273042088,-60.758387075651555,-57.86032194538163 +3284,-64.73713057251689,-62.05000280034205,-66.37595813936254,-70.04740361651525,-64.01777676834931 +3285,-59.01755125983388,-65.46283719900754,-75.81154926559766,-72.88041323501298,-59.74675371380959 +3286,-60.4671162681729,-63.43445602059018,-62.112742258326094,-59.15788210334793,-58.02060452218538 +3287,-61.76022983338197,-66.4053964210761,-70.36665580570202,-61.103683023796,-62.05855289577635 +3288,-60.39796756745596,-67.71493583357696,-58.621904989567966,-66.35390044960398,-61.88170952591326 +3289,-60.40701904936641,-61.03472573897663,-66.14726663451964,-58.800511521914075,-67.2078176926326 +3290,-64.61773764648257,-67.96559345246536,-57.10271033871799,-55.93040622255808,-60.42125671377571 +3291,-66.5785105890333,-75.46659110403003,-67.82344905520354,-62.46217759249689,-56.68090542217839 +3292,-59.79158592879622,-65.34777290997583,-69.73050968801678,-65.99839064653843,-66.26787823331131 +3293,-62.404996300192174,-57.956322314366766,-66.23322508176142,-65.03387083840549,-65.21387183942609 +3294,-64.20524966127067,-62.92677359881202,-77.60184362430911,-71.29502852124294,-63.35568779726304 +3295,-65.84247822037626,-62.08777399034486,-60.326130842768535,-57.00886032855298,-62.572419428229324 +3296,-61.37535590057144,-60.02949941086554,-59.26540869081957,-66.48136431287043,-67.78019200524177 +3297,-68.48438037412821,-58.66875298914799,-64.1940565809673,-71.00679116604344,-64.28137155463345 +3298,-67.0200331574596,-62.563071214344745,-64.18745519505165,-67.01876321465603,-63.85231869415676 +3299,-60.37033021861588,-50.331614919036745,-55.84550511261063,-62.85627285009452,-60.04856566839578 +3300,-60.648299378869915,-63.932480544954494,-66.05877096959563,-62.79110369627155,-57.67204652069115 +3301,-53.25715765739521,-66.09999260120567,-59.5247068637797,-61.68484882814698,-59.09234852611812 +3302,-57.61063170077363,-60.91639977478543,-56.81192905595565,-69.06325092889577,-58.023944054825016 +3303,-55.435463886771416,-61.23122809571958,-73.8996188853285,-63.72426487707819,-64.3066159538792 +3304,-51.964778872553474,-66.25234492474335,-60.48591638128824,-59.29113230741536,-61.052642874842434 +3305,-61.663845163667716,-65.40923274660034,-66.28492065314543,-67.592867937629,-69.8939202079952 +3306,-65.48123591985107,-58.94178542474563,-69.53289312204207,-60.52884591396832,-65.70529694876967 +3307,-63.03480602338168,-63.97587879150786,-66.24421590272071,-75.3297633989355,-65.9168290948979 +3308,-66.8940643603999,-63.40370964194317,-66.37706499372308,-63.49297146729793,-61.903076427005374 +3309,-68.29693505660826,-63.30547212722658,-61.870776233316576,-67.98545944525357,-66.89375299107343 +3310,-67.26884968346293,-65.78681188386942,-60.67495128800577,-74.64464611885933,-62.42893608207889 +3311,-65.0391476428036,-60.782180095046336,-63.879710833875144,-74.61681857612629,-66.51030142872062 +3312,-66.53070690969265,-62.41988809536597,-56.95147279794009,-57.186283323779186,-64.49589859815876 +3313,-59.550984163799455,-61.532763694194344,-67.0321337665747,-59.69287221954909,-70.98019209421128 +3314,-59.570885095187506,-66.85793247136058,-73.05294566909717,-68.5722795525683,-63.37226880567594 +3315,-53.588798211441635,-71.4583694823883,-65.34884534025801,-66.02557557620257,-68.20838637785779 +3316,-65.46680941931169,-58.19809478833446,-75.77335673608951,-59.35639738073511,-62.430518417681206 +3317,-58.08058364870401,-65.27940477686349,-73.57112289810603,-69.34147641600016,-65.33617710418561 +3318,-60.78572334814223,-62.12044872500959,-69.39336852761312,-71.95931177293136,-60.82398741519148 +3319,-61.82609545698567,-60.580953257415544,-54.7331085943525,-68.65657187961094,-61.235229793520915 +3320,-62.09474238195089,-59.72445292864909,-65.06490778995824,-59.78365413451544,-55.631623575923065 +3321,-55.78738024627911,-62.80954665786426,-67.9491853675097,-63.91553484585634,-68.43956949143026 +3322,-63.86909590971314,-62.13629634727807,-64.7495370421353,-65.23969169143486,-63.1174006736519 +3323,-68.4727312026655,-60.90644257179537,-65.72894024480577,-53.53509987498595,-53.40486394439136 +3324,-59.39726279627282,-58.50561883264886,-64.21180925443335,-56.67853069078686,-55.94576834376352 +3325,-68.4926534379822,-63.27431935149461,-59.859916778964724,-67.97160261043594,-65.5104127399126 +3326,-65.64262996050526,-58.743038660273314,-62.99157266425359,-57.501631040217916,-54.901367395004414 +3327,-65.54566538051331,-60.14052400800754,-62.75745386945509,-66.75963515830576,-57.65151891922593 +3328,-63.97419113856483,-58.06597382091875,-61.837912876844115,-71.54080812629397,-59.256898976652366 +3329,-56.78491626834243,-58.89502316199684,-60.3422965548454,-71.82322667301942,-75.82066730116085 +3330,-57.77300996172666,-68.5478075156986,-54.813579322646646,-67.89373750185334,-70.8097954330004 +3331,-65.56887486597454,-53.085146358804124,-69.58794371637775,-67.4022133846004,-55.4287224692516 +3332,-63.98334395567554,-60.98875895088942,-62.8026996776127,-75.89214230554315,-58.68259022574601 +3333,-60.887617672486414,-68.9283477314236,-54.39203247920118,-79.67570841466946,-64.18246002712303 +3334,-63.49308082436023,-69.61281029808602,-64.96324148931285,-64.30008782409263,-66.18834371282934 +3335,-59.94136310835695,-63.19345025347264,-63.65192755599187,-71.94661120739518,-58.22113075765377 +3336,-64.78748494066532,-64.32986051946514,-56.28770721123735,-62.31274266216844,-53.92779677612546 +3337,-63.4476005406399,-67.79387562094047,-62.70781825618954,-63.93065539508957,-65.76307780160052 +3338,-57.33847512147201,-67.80548351107967,-60.066048386164496,-61.30242051469821,-67.17400436026516 +3339,-68.32688722021139,-68.77773592436195,-67.69104338076423,-54.96903899219965,-55.46921178168263 +3340,-59.178008880515165,-73.48120335101149,-59.7519413178542,-59.527409315375415,-60.613711677307805 +3341,-58.391615941157404,-72.90318833072136,-60.82284395904963,-51.9400670734881,-59.232992619095334 +3342,-65.71431251155695,-61.89222422002528,-60.122154913643314,-63.04146555549921,-72.93287110781229 +3343,-65.36220129436059,-61.979835074930065,-70.76215961582058,-63.33211242976669,-65.02403757652256 +3344,-60.14824976245166,-64.73176014997631,-67.07948494474843,-55.28099053750341,-52.92050844219151 +3345,-64.0610570555092,-61.56778676811908,-63.907215045655235,-59.81330209187786,-67.90798313790695 +3346,-69.11323291905593,-61.94329046621655,-62.965890647166546,-64.58367798438096,-48.413642575736105 +3347,-67.13920341667627,-67.37167924151733,-69.42653564082322,-66.90033958228295,-59.47855259434881 +3348,-61.520445636879046,-67.63483392857756,-70.31473535438042,-56.822929353203,-63.624646058906826 +3349,-66.83303424422594,-66.74706069817259,-68.40985081673715,-61.30917883163125,-70.31858858597417 +3350,-62.512070236575894,-68.02643966747047,-59.51750657554013,-62.650583332097426,-64.60872804947482 +3351,-62.57014439982671,-57.78513863162358,-63.30427596962786,-59.624551109993725,-65.19847728000695 +3352,-65.19500623937961,-60.98708446993848,-63.42883017844413,-61.840560373226886,-57.63618076969961 +3353,-65.0325382676928,-58.457524865775056,-67.16966883742703,-71.085766795819,-53.68149264809434 +3354,-60.02532093049492,-69.06643028267096,-58.331594336353874,-62.394035242586256,-76.53711056211878 +3355,-70.02301007536725,-62.72173078426947,-70.16195470766826,-61.37591780092227,-57.06959975787568 +3356,-57.986129504206026,-61.72822903223791,-58.41950094788743,-62.98014352354185,-65.31308568749655 +3357,-61.15991150340097,-65.66718150751939,-65.12979213960925,-63.00138761985019,-56.31823800857435 +3358,-68.48610723647795,-62.31908091774224,-60.07092323646086,-64.89359006503858,-60.592658249259294 +3359,-54.91256858815043,-57.03153668922125,-66.96547994083214,-71.99454503445173,-67.91223248471094 +3360,-62.0823487633307,-55.155678625202796,-65.72207785027638,-78.73803519744813,-62.26866053856395 +3361,-65.16337219751226,-72.86565953601122,-70.59490689221931,-58.5351999506034,-72.20618364147127 +3362,-63.874383382993706,-51.25858696936869,-69.46290170116883,-58.47940585826383,-68.56978212891366 +3363,-73.13164891835028,-73.30274851262413,-52.60585947305925,-59.38625330963122,-52.26762812027829 +3364,-64.70121275452178,-60.45219096129671,-63.559638236818074,-66.14734613367658,-60.92752772811509 +3365,-65.99621233891897,-56.9705648032404,-64.27393434443908,-69.21926515414431,-53.12515257145994 +3366,-66.50152947866736,-65.14195291151603,-71.36127689905551,-71.06066701768479,-57.72529324039625 +3367,-67.31628180626964,-64.99063836762605,-70.81634545039299,-75.28144123158259,-59.94308899353059 +3368,-63.38163245160903,-60.26827810756651,-56.25252300696786,-75.23677598850244,-65.05712080576413 +3369,-62.8248598945037,-60.637144335367545,-64.75243956199621,-63.10283115251155,-59.17456261923682 +3370,-58.668609760974256,-54.80578160403474,-69.36169026442843,-61.123037006096865,-56.243105517124675 +3371,-59.85581889416966,-62.35904764253111,-69.31809897120813,-59.650123376423096,-57.20116407247519 +3372,-75.10218659095784,-63.796049813663025,-75.61556086808245,-56.10389421368497,-47.229086206733705 +3373,-65.04985624399612,-54.43379991347491,-67.81031237574034,-63.59341423588633,-61.07379918176422 +3374,-55.60584104688865,-62.88421181002253,-55.77562895247023,-62.983557233843065,-63.97074921768519 +3375,-71.75177825620906,-65.73522187268364,-64.22201391773955,-72.37776563062988,-51.161855575175856 +3376,-64.87442463094014,-62.5353466302383,-64.10818125819189,-54.93133884984888,-66.20518228708194 +3377,-62.73623193526223,-64.51494647090674,-74.70444798930518,-55.85221942061376,-67.29952915116885 +3378,-57.59795226958265,-54.626135028932715,-59.80161107035203,-57.26147453360205,-64.3923826911191 +3379,-74.24604748131769,-57.2736508274598,-56.84945570625812,-66.40990476701555,-55.21880859604477 +3380,-60.13463916885964,-61.18934540303553,-62.03244308755145,-65.489028835172,-65.94967081185446 +3381,-59.586013650387045,-61.107249180635016,-60.01007336996218,-64.18415495871265,-54.91127386443481 +3382,-72.75489372177353,-64.81413824828523,-62.095421793321606,-55.62329656259693,-66.95108243108841 +3383,-55.800244498718996,-65.53061827071913,-74.78098467225905,-54.60950118690855,-59.56301432054028 +3384,-67.05792947249131,-60.52764977056818,-73.14639990548812,-59.096348996830585,-51.67956641268821 +3385,-62.67876500939862,-60.77021490544674,-72.60653142954838,-53.95575252059123,-63.40579975991509 +3386,-60.54408937660029,-67.29720547882428,-74.4604274198228,-64.01518042138493,-59.16339941453439 +3387,-64.04797817271975,-70.47578551849897,-68.21069480288205,-58.989337141097884,-71.15802968075744 +3388,-63.82627688523772,-55.92503776945668,-73.74987622643201,-57.278375101703766,-53.04254665813544 +3389,-61.18404090758651,-70.17684718587593,-75.16332154688085,-56.34789622337769,-68.73036743880729 +3390,-61.8359827306349,-60.29343929323306,-69.19573624715319,-55.45299019288661,-57.51993901492911 +3391,-61.07203679774524,-70.13811978881635,-65.31892022530072,-65.00111918785251,-54.34455377475662 +3392,-61.86707404123114,-65.67388819745965,-73.11531145981509,-56.61047438043881,-62.491505415136345 +3393,-58.106566069123936,-71.74396632637425,-62.36732890358022,-52.89088396752764,-63.24658969406566 +3394,-70.360434141615,-57.03541926018346,-61.58435399601793,-54.75606317460276,-58.34996391814906 +3395,-68.73760842606607,-77.02806173705797,-64.90241364923133,-63.82501893705396,-61.738246965238055 +3396,-70.28772572391881,-70.2659702852197,-62.23901981804779,-67.94963493827379,-60.8913317391878 +3397,-71.18580925811749,-55.92832159803813,-63.29517900654952,-50.935245705693234,-66.62050571290418 +3398,-68.87651664205713,-54.693394010273096,-66.23654596923225,-58.148829462910044,-57.54002156670576 +3399,-57.69281739532769,-67.33456797072475,-58.79781239855723,-59.46574501502578,-69.41430550737103 +3400,-62.24327471578532,-53.85213780668132,-59.8190813233064,-67.97420653654449,-62.17319460784423 +3401,-65.25874789862142,-53.521874479597884,-64.9478171535734,-73.01123595970785,-53.15074542600062 +3402,-64.05000908818893,-56.824923244718185,-66.17972809351623,-70.61060660957652,-67.89990314602866 +3403,-64.66775004217638,-63.657398003592164,-57.98968682880897,-67.85027047369815,-70.40235573356458 +3404,-57.918321403279826,-64.0385384549015,-74.18714278863669,-63.12840177593296,-55.43001764062387 +3405,-58.39302967568363,-57.00731204275598,-64.49895928540379,-58.721752692700214,-56.157968649717255 +3406,-58.926689877745346,-60.76931530969793,-66.35350113292174,-60.5524918779217,-63.412775162637715 +3407,-62.53144674402119,-62.40792899902996,-73.11842698884877,-72.44194162986359,-56.751837644169456 +3408,-58.77817006271773,-59.80938978755687,-62.67243886891162,-64.98554797144445,-62.71347189440986 +3409,-62.655284769847924,-69.58051733712252,-67.78607808533238,-63.59858967863473,-68.6213514782958 +3410,-71.0575077354785,-59.99015358778046,-58.27835019574058,-55.583964613122355,-65.1531942014593 +3411,-62.732063055698916,-58.083950762257544,-62.68820701570902,-65.02176452085781,-63.2503949986081 +3412,-74.01792542059287,-61.43893528761281,-60.003125852568125,-59.94447424373349,-59.451449067537126 +3413,-68.4898774774897,-58.317760345113804,-68.35482820616569,-54.774972526924024,-63.88183172495605 +3414,-69.38273142996552,-61.21433292455924,-63.11334794183083,-59.832131945315496,-60.44967926938199 +3415,-59.393202359531394,-56.573179938991785,-62.487381906303305,-57.934796413486424,-63.70340155495863 +3416,-59.80673971410749,-58.43617598861085,-62.289500974917516,-62.913156573654256,-62.73051359995725 +3417,-61.56101447205571,-55.82663115038869,-69.18752034326752,-65.17483026884481,-61.74508464338111 +3418,-60.228647199606215,-53.02152204860458,-55.73101665788595,-65.68124213902334,-59.95539871139293 +3419,-67.99694535484139,-64.42207451491029,-64.62642649867134,-66.32780974299446,-69.36315091172358 +3420,-64.38849284361585,-62.141654727505596,-73.7732462536554,-56.65202004019034,-60.933429349451686 +3421,-60.24345839917981,-53.84441574183739,-75.53728294687298,-67.47794136905007,-65.73200817490192 +3422,-66.51119455628906,-59.24328216301884,-63.207671474481465,-68.24803409689282,-60.939412922764554 +3423,-68.2925876736402,-63.94973465065009,-66.8810040996985,-59.49411157189852,-68.18559189346821 +3424,-57.82201558041293,-66.49667859434771,-60.2655570697897,-59.672477943669136,-55.49726426728634 +3425,-72.1626220970496,-64.74871524503736,-64.25228718619522,-60.573704321628284,-61.12128810335295 +3426,-55.833251326707135,-70.05100131957008,-65.52834005050829,-64.87280468515456,-62.252780464645035 +3427,-54.27201822572537,-59.73171191243172,-61.07823434349028,-57.42756824647662,-74.19388082036531 +3428,-72.90791508055364,-65.12214243856961,-62.191210993843384,-74.56224925817212,-57.450880125014926 +3429,-64.61559251715501,-61.85115320957903,-71.55022291814896,-60.63590526484687,-51.994213093498175 +3430,-66.59417083784376,-62.82920705465256,-56.79534139478148,-73.57548003359837,-69.76948352028582 +3431,-80.58290136404572,-78.94265573772509,-61.24881432108353,-63.20837287741724,-59.913787051171774 +3432,-70.64244434971535,-81.95306592416476,-65.26750819811583,-63.93726343139728,-56.50587671352502 +3433,-68.72700425242255,-69.42267089448274,-67.30015305587855,-63.128769938545446,-58.51506569592313 +3434,-65.21336038807175,-66.7437397017265,-60.81827330940219,-65.54680880042469,-66.79098776162549 +3435,-67.26910627464696,-75.64018229054952,-64.22169188477385,-57.65288533660556,-58.22818191857938 +3436,-60.48981183376227,-67.50488369452466,-60.46836991139886,-58.66302960491161,-67.20644614137841 +3437,-64.96943108376146,-65.25856974300795,-66.08549707820237,-58.1543926361325,-65.92043243104757 +3438,-61.005740897505625,-58.7552000672461,-58.749722022354526,-68.59748037947622,-63.81634415966629 +3439,-73.97891750286735,-66.21979003849171,-61.57387103205204,-71.1065261779705,-56.922120018876136 +3440,-64.81602862371368,-66.15878990297381,-54.74124350667199,-70.8966666995152,-59.17564985488671 +3441,-59.49915964334944,-59.69982256106339,-64.05209217895174,-62.44836730913076,-62.78231847385197 +3442,-58.2845980269337,-64.56194250365758,-66.32283567409232,-58.64364268486325,-54.90721898192603 +3443,-78.65925603971698,-69.26579114628032,-61.36524690334263,-52.127092573003075,-60.50338765236667 +3444,-71.89890187118306,-62.27215198048741,-60.43598307807709,-55.22207685097722,-54.703831065302985 +3445,-70.75466790680173,-67.38012275439529,-62.56552172903985,-65.82046739270454,-56.569493368480664 +3446,-68.30804489601647,-55.83394734026965,-60.913350296557276,-58.53396696783818,-71.33423201078746 +3447,-57.69684769263298,-60.40190397505659,-65.35537099212662,-68.72723955808489,-61.75195305284342 +3448,-71.25800160866642,-63.576852056385384,-64.2473391592729,-65.76998853556617,-54.78883329299976 +3449,-67.92873826844709,-63.2359207387763,-64.66157907709425,-62.9380160416053,-57.17570324292284 +3450,-62.31548431763536,-63.41332932042667,-68.22426968318709,-59.81821276790603,-61.1024984766261 +3451,-70.60881446561774,-58.66701448702916,-64.83631077123316,-56.958040029311725,-61.94968524222957 +3452,-53.01368231537744,-62.37789142716904,-66.77411555625845,-55.37713350314981,-53.53208802128658 +3453,-60.17178310764038,-65.01670766738457,-65.24411071750848,-64.6293598519288,-66.45154590098389 +3454,-63.53712375068041,-58.31033075984128,-64.95185988770795,-63.31198184140212,-59.09731071190301 +3455,-60.74379706784224,-64.78953421931094,-71.81691331182404,-64.66015647843689,-63.673001585183115 +3456,-55.493921774690406,-67.26424162838897,-63.82956923143074,-58.689447154371614,-73.71339046959321 +3457,-58.12964531871031,-56.19254911902159,-61.86643201174511,-60.98502077544604,-52.05671398797284 +3458,-55.49712003220577,-55.0233626826895,-63.1580895098659,-63.38709180001585,-67.9431957934479 +3459,-64.02096564872328,-62.157705461518795,-59.4053940255516,-63.65181342327144,-57.7763415876481 +3460,-57.34248811043433,-60.92388701313819,-64.43711961289175,-55.92097363743195,-73.25640471058355 +3461,-70.7593092725863,-59.01991289677269,-61.02825308580313,-58.752333637504556,-66.38149359176151 +3462,-63.00391783367324,-66.47166242981554,-61.02780865474417,-56.78426785695118,-60.06259176683804 +3463,-54.36600506008614,-67.2444348024684,-64.77513945573526,-58.700852068792074,-62.79068696374664 +3464,-63.09742854026938,-68.46521344480334,-62.94969872657126,-58.72742530279106,-73.21237434610865 +3465,-62.126570024958845,-62.822016557698866,-58.0806547950817,-64.15716044788286,-64.41594904417809 +3466,-61.96809169070604,-71.85048273604752,-58.417664952508694,-60.25969937456504,-68.59610091664389 +3467,-68.4033310937781,-60.57438810544596,-67.45915885554666,-58.32100424201872,-59.58277515872982 +3468,-59.81999221521787,-62.6498474746251,-61.648772423853615,-69.08503493240198,-58.37915750781296 +3469,-58.73965987152683,-62.23269782651339,-62.41209304533997,-57.044347521624736,-61.89651686164109 +3470,-56.04934836753495,-63.20900396041191,-67.47004873237829,-58.8266114842409,-64.12144594219922 +3471,-54.95732141245763,-56.66898624924193,-63.22733761527395,-52.135120150538086,-65.78662781287 +3472,-58.09302966367958,-63.53907330252359,-77.76860172135443,-60.93674302556116,-67.23744322468588 +3473,-60.86188417782326,-67.6070738476376,-65.05542032983965,-61.319927910870625,-60.33625837967909 +3474,-63.16682627452711,-73.40582980847682,-74.96104816132608,-54.45697145914582,-69.32003227711573 +3475,-59.023401438231666,-61.84479000496821,-68.94496580929108,-61.24988725686721,-62.731175885739816 +3476,-61.45916627176985,-64.91617400253705,-64.06315528569895,-54.59325946993818,-66.4936964755374 +3477,-60.18120962964699,-64.13648168999319,-68.03738559440355,-70.10799434924327,-57.31391838884954 +3478,-61.869770978215605,-64.86645901151608,-64.41737509204381,-63.859395667970205,-69.84772919141042 +3479,-56.23115476425534,-60.70654366165401,-60.57133176820311,-51.69479315984533,-56.11310489282023 +3480,-58.754864787300974,-61.688465819176955,-69.70169101378481,-64.84515668925792,-52.379002058240566 +3481,-57.18121552456627,-71.96858722594985,-58.28396738380292,-75.52708298358166,-54.564263942948116 +3482,-60.03272807603479,-63.87583082998705,-65.45807184568879,-64.84216234407175,-59.76144427375381 +3483,-69.12382018207506,-68.46900816607284,-61.88304036387811,-63.06941427144041,-59.95948658189849 +3484,-61.461007114253725,-67.66779355213825,-61.16210951527946,-63.519200929217064,-58.34278633096097 +3485,-63.38553399615429,-77.74803022034246,-58.79110846628873,-59.98607707468316,-62.448624129530295 +3486,-53.126585331206456,-59.506751905271145,-55.264164816273826,-61.9268411694324,-59.863968083486 +3487,-66.06410605645894,-50.4171640926929,-62.62800995555873,-56.42309802432791,-59.55075837055488 +3488,-59.34500859638344,-51.77421978441113,-59.81357420883292,-55.580643796120775,-63.663876887652485 +3489,-59.25768560154147,-69.33954428919232,-67.76988241312218,-59.71738932585206,-67.20173539437567 +3490,-71.7483052333638,-70.10133448068405,-58.57942756060125,-67.39377545686459,-66.76078778185071 +3491,-62.12515710692702,-55.48190196970129,-58.99494743998944,-56.732248545787364,-63.97687462031452 +3492,-61.750517982783364,-52.583989535094105,-71.82544190360998,-69.00794899202857,-53.42619954472329 +3493,-61.42431576504416,-63.441261736272374,-63.055946997934214,-66.12915776398123,-59.837368134082716 +3494,-62.66972163682758,-62.060748760386694,-61.07382749106959,-59.73712752719788,-53.508518162010645 +3495,-68.95273962167254,-53.32768248028658,-66.94024417241012,-69.60246225178649,-63.849414112261954 +3496,-59.48802230775572,-64.14347742940907,-59.271648154686645,-66.27094859528911,-73.70114028419886 +3497,-67.49943635531727,-53.23416867212163,-57.009518351481425,-70.7437021811063,-50.77726592019799 +3498,-62.943849023403736,-52.729488280093385,-58.2392444332673,-63.87352102107768,-54.794288061478035 +3499,-63.17752443627055,-50.07896752200171,-65.65962622277101,-63.07849419701598,-72.95815171780812 +3500,-69.08262021087417,-54.44937084947364,-54.33030955374503,-61.63161047490066,-63.55029227083406 +3501,-59.255635064509434,-77.13322277445575,-66.18140545268973,-59.82297714631095,-68.50606609215322 +3502,-57.216514615413196,-63.22189833591649,-66.17186937310234,-60.51646233689191,-67.48809409947182 +3503,-60.77986118681908,-68.24699761791364,-69.26250355086447,-64.92869666946343,-66.308457631305 +3504,-60.148139125535806,-50.524698846674106,-52.94567741715556,-78.8164616085095,-55.56432895381559 +3505,-62.35715544882952,-58.87204188189659,-68.75022033852684,-70.22235927049071,-56.22323713551797 +3506,-64.55102159571459,-57.14831237204272,-68.05245482689928,-56.48367982505012,-51.095518173358926 +3507,-54.840296487003314,-60.890491980587164,-59.41178855824014,-59.54141795713901,-55.52300737077612 +3508,-54.751028194625775,-60.216077052117356,-61.03952991604003,-57.617752403177114,-55.44024445998692 +3509,-56.489221118714504,-60.98694507920502,-63.14565235012765,-60.4900350344937,-62.15056399122349 +3510,-56.64685556629494,-77.02230035149223,-62.421729737233015,-54.6503450325619,-61.082503991564366 +3511,-68.65560024450926,-65.94462750734318,-60.35424571235419,-55.03070794675078,-59.27154960966662 +3512,-51.63503269789414,-62.52368199104223,-56.3150018547173,-52.995380207313076,-50.87972678245342 +3513,-62.19479659514188,-77.96611313444795,-66.40547607141507,-58.52616523585112,-65.19824697409946 +3514,-55.628594275704074,-76.0493512025833,-59.27888066815856,-62.13454748605106,-64.94348905158381 +3515,-63.43778700069262,-76.36957826714234,-61.13443961968027,-63.005192238693255,-51.82571804637008 +3516,-57.44782538555697,-71.44730376577819,-65.47313994232789,-62.9095186418126,-50.02589362460239 +3517,-69.86693642685509,-51.61868347561361,-60.916660084243745,-64.96989280477057,-64.31930386397595 +3518,-61.65646149187699,-63.608076450530895,-61.47444186645541,-56.78990820541414,-61.511985333286525 +3519,-53.480613546005124,-54.617088023164186,-64.62719107194447,-57.19000598982282,-63.120483449826025 +3520,-66.67856853570032,-53.14132065549728,-74.32982407808942,-65.40763518040457,-60.197672183706516 +3521,-53.59252983668779,-57.16853960071849,-58.160731989672065,-54.48004880148647,-65.33255933439177 +3522,-58.538420805119465,-59.52995432387349,-64.47791733873557,-61.22434775214027,-75.34100004002659 +3523,-55.54954223757701,-64.28819762593392,-62.10913418901277,-69.53699818295308,-61.132443365247454 +3524,-66.04105456843945,-61.29081611782853,-67.63561365844951,-68.97725719172435,-68.68942542719347 +3525,-64.09412797461947,-60.950972377141234,-62.70186133239095,-64.38831056062035,-65.50914808288039 +3526,-61.7136727287158,-65.37281180963106,-63.29012104929362,-68.85833038251756,-66.89697935134551 +3527,-60.0780853063797,-56.56404436551137,-65.91305329293165,-56.14831587902576,-58.679229672533765 +3528,-60.751643270400486,-63.55157115054527,-65.82334464589333,-63.43000467984075,-63.59332338637922 +3529,-61.00230393641282,-50.804156907161506,-67.1242032384459,-61.695546453169015,-61.646684071578434 +3530,-58.03066010838727,-56.71424216024228,-68.58899855017312,-55.90769689659508,-71.49403667547293 +3531,-61.59471171889748,-60.14871062335389,-70.09931552977679,-61.18479050945814,-66.81272921029216 +3532,-65.78408462483166,-61.38773511944952,-64.89851798849543,-62.54398879636651,-54.79437014139306 +3533,-60.027307180101126,-59.799616129345075,-55.696933576686995,-63.45177070401049,-68.58106437414338 +3534,-57.141634542562976,-67.46915377732306,-62.05156625293812,-58.01929461056312,-53.16821937343158 +3535,-52.04884323082784,-62.37621417771779,-65.38642617389694,-60.7236767376542,-59.38582311709338 +3536,-64.8954726422979,-67.86672016018225,-60.93857210569214,-63.7138484485838,-68.15193073736828 +3537,-55.074600404401316,-58.99643249162207,-59.69858616052302,-59.67088464459648,-68.56694869211921 +3538,-62.95102675468583,-71.47774818807324,-57.32632565431698,-58.72907359998596,-54.88964563783553 +3539,-58.889480499044105,-68.45243345805034,-64.36135044317075,-55.56987101823048,-53.44260586392682 +3540,-65.56857863250356,-70.48919467746003,-57.60107040824465,-54.31708168784512,-55.9858563523154 +3541,-58.89480261166953,-64.30668467193135,-57.431601164443016,-65.20048986405865,-59.87015679986002 +3542,-65.9970137513285,-63.27395077293906,-51.68782907261222,-68.46592827722759,-58.630087572618635 +3543,-55.04715870358215,-56.08384456324004,-75.83565438795455,-64.99303798929814,-60.22007898894778 +3544,-60.957039955542754,-60.84770143379401,-65.23307707803068,-52.969904032680745,-56.46844292636427 +3545,-64.38652411073923,-59.07689442752567,-65.89424438735122,-54.119212383444285,-60.04643111193194 +3546,-58.333164038275,-60.01693284040407,-65.32244169762934,-55.21034627097337,-59.187797164743344 +3547,-66.25210668563058,-58.47253745183225,-56.605489463669635,-57.89254212101179,-62.857341437519416 +3548,-60.89432387274491,-54.96548176905461,-58.70951995534614,-68.47773962132155,-58.767739268736534 +3549,-57.51612767006263,-61.54512102000057,-70.67880380266644,-57.509065017658635,-62.81398844713638 +3550,-65.50919481131848,-60.42149786785095,-63.93529759657831,-66.89992031250522,-54.70733001233119 +3551,-54.95054477323051,-66.23446497643063,-65.74583669531059,-76.00858367405651,-61.78379810499173 +3552,-67.46543378128754,-68.1016787217826,-59.70434341868646,-59.20999612916493,-54.96260311760681 +3553,-57.92489847941377,-58.51409163352941,-63.23648231909173,-53.44143405904855,-55.11703612748678 +3554,-61.490450157291896,-66.95919705405376,-64.04283270156604,-69.88055266406155,-51.203496895079546 +3555,-73.7161605833556,-55.22083664750277,-66.10110303946198,-68.28184549131177,-61.28505510593757 +3556,-67.0056218532115,-67.93104209299159,-63.07787124102632,-64.32297309332321,-54.993942435133555 +3557,-64.26489402943582,-53.04320142863566,-64.29831682797679,-62.47247676501719,-67.86425184293905 +3558,-75.03848068865807,-59.45562142808951,-65.78295431594881,-56.85907501809505,-67.12789322669427 +3559,-61.2785351719729,-69.10766338407154,-66.25933677497109,-65.21113066208812,-69.15483657938492 +3560,-61.626185427736715,-60.05296498705652,-63.022539798818315,-55.88694801624075,-64.56361171743906 +3561,-59.28069999515441,-58.625915695764284,-56.8652946555288,-60.521317734932104,-56.94083875515296 +3562,-60.674471517314196,-59.7731337311821,-55.056257598374714,-60.79733494998824,-62.513730802566386 +3563,-61.60115317124735,-58.447452089517384,-52.54242182557128,-65.3817613247535,-71.33808676690657 +3564,-67.89698401923164,-70.48029450118047,-53.972397832219976,-62.139942873020765,-74.74265856233683 +3565,-69.43328007580783,-61.18454576595587,-55.88293531335923,-56.17045616330575,-67.09362183246841 +3566,-62.93467498351584,-64.09267061610021,-61.60811587756441,-55.892845587588624,-66.66788073700778 +3567,-59.089801774593184,-64.42438336520297,-70.30919479477586,-62.082594752310484,-67.24759798169828 +3568,-53.35901942631772,-56.89617141069724,-65.45634274637573,-59.97486237830297,-53.71753218020792 +3569,-66.83484947409882,-67.88289370523574,-59.40719107480465,-66.72281577006305,-62.08960036890496 +3570,-58.395718828798394,-58.90081403842504,-62.83319044589309,-65.4566046744787,-62.963580071088884 +3571,-67.84988416900083,-60.95875033035097,-64.04767505506675,-70.6684008739367,-62.0204193192896 +3572,-59.85952709362803,-56.46571976852962,-58.59875032416156,-56.82233196978931,-54.82727216678498 +3573,-59.131021063749344,-54.457801994175384,-71.55763691194944,-59.300829473470074,-68.78703786899644 +3574,-61.23203223069963,-66.38064809349537,-72.30910701706195,-60.25139584554013,-56.95221660780912 +3575,-58.76830665134236,-61.31011674854665,-65.5145894485487,-67.85720180820935,-64.38565162107366 +3576,-63.601434350331196,-60.13555309642251,-60.039165424751744,-66.30731202425822,-59.841052831857276 +3577,-63.29241209881112,-69.64551720027553,-67.96602398539913,-57.643429560455715,-57.90086069835301 +3578,-57.59888542116163,-59.65208974300551,-60.74648935065289,-63.00900222551238,-63.530833160441325 +3579,-54.43513475709901,-60.5831396026658,-58.741288986591634,-62.6664066743378,-68.70914118564808 +3580,-72.26545995292702,-63.50301517061791,-59.99262653802791,-60.12096205473115,-63.52809819542609 +3581,-62.02248670612426,-64.60479311323265,-61.47736218239185,-56.763188493856305,-64.38164518993592 +3582,-66.77524079463286,-59.727009089422566,-64.95142355481835,-63.58861512022118,-49.647029037133144 +3583,-58.18808518601177,-62.32439889671399,-58.3498615183705,-64.09169566339315,-63.79223198757791 +3584,-50.45650132699128,-62.9822367524499,-66.68690949860671,-61.435370119580654,-52.95308028509643 +3585,-62.991900417507246,-63.3158904056571,-59.360712245104565,-60.6050108097352,-61.35717751909717 +3586,-54.145303812480584,-70.27754947279996,-67.2839208761761,-65.41886136303425,-56.72807230992559 +3587,-60.14685483608402,-62.48562200868787,-72.04874923545039,-66.4246276086039,-57.21741664093967 +3588,-58.531377703158654,-65.7888313266806,-65.35222221222061,-63.83823102368808,-51.8340127283776 +3589,-56.218356271797575,-58.89543289210915,-68.60223455093565,-64.68644304353826,-58.29694291683713 +3590,-61.42882305630159,-62.00469841393954,-61.69285256479432,-67.49128826802503,-56.94830614758839 +3591,-55.18731831656098,-56.529403544287405,-70.35179665014552,-66.76165349883051,-61.22079576615441 +3592,-59.87594519842604,-56.48781786870198,-67.36274190596909,-69.30624667845613,-55.14856121029609 +3593,-60.32979583312936,-60.11108522758104,-70.28663168507663,-58.78071513688572,-57.94194863848015 +3594,-56.27651977872826,-61.35219106948841,-67.51117823267022,-58.74422317441267,-61.75203697940858 +3595,-61.770781050128704,-63.28761915146236,-70.57095384330533,-64.10192410682612,-67.2790369751181 +3596,-60.57436937917298,-57.55544956141708,-74.08486642762982,-60.646661895843835,-58.83042131209776 +3597,-62.872004593364856,-60.88567146549866,-63.69056284860268,-65.4599695743529,-57.54781040303015 +3598,-64.1959504889027,-58.75948543791618,-72.42514562495447,-63.54061339166615,-64.42332485830325 +3599,-64.45449553902245,-54.25472054292632,-69.3579569809944,-63.10601494335238,-66.78423539977157 +3600,-70.27543015447596,-66.63222470905058,-71.44236017464486,-62.38735383015086,-68.24090215292101 +3601,-60.261654900511765,-59.58162361825502,-67.7391755463334,-70.17134370008392,-74.51312894044443 +3602,-60.21927156716303,-56.73462715712258,-65.19715781821078,-74.71311985962171,-66.11034886346378 +3603,-63.333003066292015,-59.357282510961625,-59.8650649099756,-72.91048194350337,-57.24744293238215 +3604,-53.714151748027305,-58.64968993814454,-58.187038027653045,-63.66124823410619,-58.9283633244966 +3605,-63.28571021947054,-64.75214995149868,-61.06802399990691,-58.3885248256405,-59.97848401989072 +3606,-68.98390066359723,-59.482002948591024,-75.32797802722266,-66.01835367586175,-62.0177127846765 +3607,-62.515475522323925,-60.214422268616445,-59.51931520888076,-62.419045869383126,-58.63128964816395 +3608,-65.32788959983375,-60.58607712055501,-65.62590441651697,-61.424531071710604,-62.74360771443969 +3609,-60.68920096012205,-68.53636209195183,-64.5245460053361,-60.3597084881517,-54.89970075232295 +3610,-59.6753363477252,-58.79818875873875,-56.41519641867201,-62.5292194920482,-64.23774690481733 +3611,-64.30252270574452,-63.40956245423231,-68.24519892452292,-63.607928913255776,-52.58990507960173 +3612,-57.5066719973159,-61.089950065488544,-69.02445051541788,-66.60012213973023,-53.39426009199553 +3613,-62.749138976360996,-58.794191106408846,-63.14109547553814,-60.991398690194636,-65.78729465171409 +3614,-48.67776393452218,-62.47930139428743,-56.25722853655926,-64.57328691085016,-58.78796163211118 +3615,-62.449313587501976,-63.46566096205678,-60.011053166321155,-53.41491003918972,-59.551363250200836 +3616,-69.53458432723976,-57.19985950084709,-61.85429555755165,-55.02922475456372,-58.1674670628581 +3617,-69.15684680766029,-59.79472507148569,-61.595038858525264,-66.0953700648387,-53.057920490192316 +3618,-60.13812593654126,-68.37795979104912,-63.054396400319064,-53.47712366382536,-56.490321192997456 +3619,-62.43652150717551,-56.60724347036438,-61.226196215051964,-65.65487135150475,-52.68892264466243 +3620,-64.16483114154514,-60.520307071877596,-65.28331491312623,-57.8144390478276,-65.34732551903565 +3621,-61.07673972249773,-54.827748704073805,-69.77227807351986,-69.11303486075947,-61.416351193421406 +3622,-57.771887072982985,-59.29820151974205,-57.2988062560158,-60.20958781104144,-64.23871054746894 +3623,-60.42595542057375,-54.316999426517754,-62.527523145683105,-63.77882912874242,-70.83584383968392 +3624,-63.01335475012267,-63.685404369276476,-52.13854189829986,-71.80880528656726,-63.77271204692587 +3625,-66.7365224604381,-61.13711039657375,-60.58194833321159,-62.313292744031244,-53.86697438162877 +3626,-62.916902983332946,-67.37921397259208,-56.2789371201419,-58.863484009121166,-63.928605174144806 +3627,-62.89439645498617,-57.06721606387361,-63.69362287151833,-61.066260767504,-65.88844187187067 +3628,-58.27509832116381,-68.84249455250387,-67.73663132690943,-54.347806846845934,-63.31460438803839 +3629,-58.833536971089316,-74.08354796855463,-63.296879938943405,-51.78301720623412,-67.83924984593392 +3630,-53.31231082911123,-68.23532311790093,-66.84519535464767,-63.923249810588096,-58.49187597188451 +3631,-51.83398388408647,-67.45873756301341,-59.62202472930114,-58.43147671914134,-55.553927783022026 +3632,-63.39096135352625,-64.11434198607935,-66.00963229185804,-58.263280084552456,-65.41662861642901 +3633,-71.0265650012027,-70.12019543554388,-64.17959677925177,-63.238433599298965,-63.1761400691283 +3634,-63.82633097234691,-63.78185874415812,-63.68405510923389,-56.560101360861275,-58.84176790925909 +3635,-55.153175838728174,-66.3675451513223,-57.65356955502104,-59.43967040805552,-60.502788602152364 +3636,-55.040038975404116,-62.38244143602705,-52.72874436999988,-63.67074261762237,-63.57313978809707 +3637,-65.5172880371507,-58.9538118587652,-65.17080680584698,-64.82042158388323,-53.240650493160494 +3638,-67.54844114311751,-59.09855564369524,-59.311390748897715,-56.32742078367298,-59.290174337498975 +3639,-62.077739744756755,-54.798099263934134,-64.9817411981304,-65.43602726584106,-65.4309061528168 +3640,-60.68188574723657,-68.20194733530059,-71.53899587070097,-62.22271589954854,-58.80979406052112 +3641,-56.897475869215434,-58.85263149933906,-67.39133018844561,-61.771799697498174,-53.437697670503695 +3642,-54.28499574615643,-70.10882630303351,-70.52137511006387,-63.74911273323044,-65.85409943239227 +3643,-59.47068317877405,-59.576517262960074,-65.10918943996849,-64.2671992207226,-57.89531305827277 +3644,-65.50233721198632,-59.019051067108755,-61.730424135872795,-60.61147029182815,-68.81203811158316 +3645,-58.54257141445974,-69.11778423951148,-71.66430677182946,-61.103076832055045,-66.52714148016614 +3646,-62.48489074031186,-68.57926902156032,-59.96486458275523,-59.67459987192074,-62.23015613859278 +3647,-51.94476885800401,-59.57015221155276,-66.01891883935316,-54.361102055559016,-60.04854143765568 +3648,-63.41363902039175,-62.001949724525176,-55.6582933740306,-59.080565490820945,-67.0114482224116 +3649,-59.45597035914213,-60.76622666717112,-65.35986242762196,-63.1175646053804,-60.823336542091454 +3650,-69.95363364208461,-73.46451090018314,-56.61048196982157,-56.035135851367215,-62.80852540142926 +3651,-51.50370975728312,-59.40047273816203,-62.31422118902675,-66.30798404067741,-57.65254951550775 +3652,-61.22669147839886,-62.35700629736992,-67.41598146482542,-57.538942501984586,-56.64439954148711 +3653,-60.809289050369976,-67.37268839777622,-58.04906405385584,-58.32505310391211,-51.79367653917395 +3654,-62.509185837502685,-65.68239678710158,-69.08684603077484,-59.681423428911394,-64.96478203497712 +3655,-58.74222619587812,-59.97439058038015,-60.1918150586374,-54.0031714486339,-58.84822873095127 +3656,-57.35286262093265,-64.86523495343592,-57.4331654955813,-64.02771046169447,-57.86489789811018 +3657,-57.48451138495473,-58.95161150000572,-71.86761245800344,-61.368504423789304,-57.44838989252348 +3658,-62.34699999283477,-64.07703091396911,-59.22793894278396,-59.74243710942121,-53.14527618299049 +3659,-52.322461018606155,-57.42106020523906,-73.29112500565948,-55.10323700841502,-54.197670615031385 +3660,-74.46550047825855,-62.9756448521904,-66.45259994110104,-58.36427620077356,-61.41725687435019 +3661,-70.63105408797492,-59.98394978150317,-67.75974247986736,-62.76068116068684,-60.034937489645074 +3662,-62.331459863113814,-66.96025335475177,-59.703530080585345,-64.0543168388975,-59.78719498815626 +3663,-66.82531467494421,-59.658847865738686,-78.97966546154422,-52.42365702483422,-56.80036977852399 +3664,-60.80348017721611,-59.7186694561936,-68.19912469011318,-62.8564563222585,-60.72089402252283 +3665,-60.532574131331714,-64.47781263787778,-62.320594212008324,-64.35721950406234,-57.14933677554624 +3666,-67.7788855698839,-54.58036118361627,-56.630708927762015,-54.88121508650218,-57.675925171844725 +3667,-62.094495530207595,-55.6801340948725,-60.20947142654467,-53.21073342331456,-60.42058035871926 +3668,-52.77061954815675,-62.408482741281894,-55.908053597568625,-55.4767043220185,-70.20542820963053 +3669,-53.22447161778924,-59.67787290038245,-61.03450785338585,-66.99667290048946,-58.35487320550927 +3670,-62.55578030732338,-63.410599954061595,-61.136232760044685,-62.43898173225657,-61.353707481904905 +3671,-67.27807702188524,-56.98141544643102,-55.205066227035736,-60.471168446061355,-49.423834495240705 +3672,-64.0245646493261,-65.8718639033155,-57.378421686604135,-63.54298473339295,-54.39053592758606 +3673,-56.97216068739999,-62.5056761230915,-61.20353965283318,-66.06458582083029,-71.8995553640374 +3674,-66.13589437686703,-67.69492508113072,-66.0392469378277,-65.78355403611178,-62.53476528175862 +3675,-54.105835301334785,-55.19531562365161,-65.71287255279239,-65.88488462101441,-61.323247763937694 +3676,-73.71205703992848,-61.537892921525795,-58.7159401664861,-67.50041563022054,-55.6076977554073 +3677,-70.92152620232582,-61.49185726296546,-62.41877812199488,-64.38999158882797,-63.93547122141936 +3678,-54.59328115509973,-55.28318587383553,-62.20155874959199,-62.01954127291454,-66.48104212010287 +3679,-54.76998499818892,-68.95041094806972,-66.00570723493726,-57.693640373936226,-59.80458358302591 +3680,-64.97911474958939,-58.1599367882336,-66.20811762146514,-68.76729396633002,-60.00290737148647 +3681,-61.18899332895977,-52.906856209336645,-64.46399023658414,-55.14394651108791,-56.76170551994291 +3682,-54.994343341554085,-54.65070828904774,-68.17036032689549,-57.89504163120623,-53.150505689935876 +3683,-67.88840094172701,-57.51871172202604,-76.03446888879185,-59.64020132952839,-57.037645048690926 +3684,-59.20378174733075,-66.69642937132056,-56.50543340233003,-63.589294662803155,-63.10608439982947 +3685,-57.75807384258646,-69.39167753160162,-61.68225866211223,-73.37754242903688,-65.58637503767771 +3686,-61.33402912594055,-59.70438846772294,-60.19680752597512,-65.65832398976,-55.065562015755795 +3687,-64.32128633924526,-52.28185223774118,-57.365522501848204,-62.00347624860308,-66.45207519101497 +3688,-60.47284906897424,-59.61091627502119,-64.92028859156127,-59.19763794824517,-62.74677674685565 +3689,-62.847216332845605,-61.21175897182364,-63.32650851609976,-64.98968781121266,-59.95671432270888 +3690,-64.48384638146426,-68.23127710007867,-74.43049876648615,-60.36021185654271,-64.18709799113098 +3691,-60.052594427142665,-62.337370098592785,-66.4755667865889,-61.463040553364685,-70.49550657270265 +3692,-66.17975270930211,-60.798845825802054,-58.899985083893206,-65.38807331123229,-62.19531703071325 +3693,-69.38784358979443,-59.8077910613366,-60.27866210143139,-56.336844261863824,-59.74297281507668 +3694,-61.66271591003913,-61.13078825228058,-64.68678480110839,-65.30163119778867,-68.84614799726437 +3695,-61.156314577277065,-62.68278708929513,-70.1815325427416,-58.95741904050659,-63.7773817265297 +3696,-65.29621424159271,-55.22618201095096,-57.918339708967736,-53.50035847922995,-63.87162197187279 +3697,-57.99613868953435,-65.85581412118366,-56.011993036806004,-52.99227323743588,-62.96272166008401 +3698,-61.418149353875904,-71.34234840080462,-70.90754481764444,-65.22973882265924,-71.1248652803542 +3699,-62.34318799536578,-56.05715927284233,-62.925435690482175,-70.45161280821209,-62.669459087516955 +3700,-58.169683665531,-58.97088664060447,-55.298234205464745,-55.78529171199239,-53.772525709729905 +3701,-67.64076833560287,-60.91468236838286,-61.90540103333377,-52.03781426672243,-56.76578727970358 +3702,-60.692370714776835,-62.60752666154003,-61.83805233454476,-59.84181685933533,-54.92894056249818 +3703,-52.50891148794558,-56.62654529456013,-64.0153719406521,-63.12065444506389,-56.40605271527292 +3704,-51.50612630040677,-50.49520211111129,-64.63128144660058,-55.34873610070633,-55.94048866655288 +3705,-64.79635004290638,-64.08969266725279,-68.7001851322167,-65.71002223057566,-55.39550059805219 +3706,-58.79574734255447,-57.20603481227279,-56.69434794820981,-52.038144603994034,-55.540072610942296 +3707,-58.651786247767234,-55.2584745533659,-68.23535169609178,-64.64282649925268,-68.8011800242979 +3708,-63.15711062932353,-53.691619329672434,-53.3834874060166,-73.33819332029243,-62.24303128602291 +3709,-64.17156868980557,-65.25193695741939,-55.567683580966495,-70.69943923580843,-63.05466250748841 +3710,-60.56818261711611,-66.25517605562217,-58.852078804871674,-64.96317480112783,-59.01675817443758 +3711,-60.876356571831984,-67.48714520735771,-61.20811265650057,-58.801200266511024,-56.21265620027959 +3712,-56.90535595193055,-59.06295230598165,-64.17798263793753,-63.77322198171339,-52.45016984277055 +3713,-54.54585232730283,-54.69624763201792,-58.08813416053226,-68.97288206880606,-62.490853413654115 +3714,-69.55507164863776,-65.38427139438474,-60.80737713334193,-65.97321258893857,-68.00137216030666 +3715,-62.005698895428694,-58.836515921552525,-60.27633302240248,-68.48826841345603,-60.78662026739602 +3716,-54.403026048269744,-68.25436595022818,-58.40027305514839,-58.21966968208738,-58.97685613596169 +3717,-58.46772398756737,-58.18445900337814,-60.70042460810934,-66.53730164989177,-61.32389265833419 +3718,-56.6619508773352,-61.104117716438076,-66.7481257779343,-53.595603697848745,-79.22888600319915 +3719,-55.908904351385104,-55.257333285891086,-65.94870940012638,-61.40001810880328,-69.76348249239165 +3720,-55.10398377309238,-64.03460222423466,-73.99504605429411,-56.96974438493647,-63.019158324213116 +3721,-63.74145974864793,-61.22115907906405,-57.98735449660214,-59.633525019076984,-56.73485074947127 +3722,-65.9932880230914,-57.03262142457831,-64.11777358615127,-49.20724420375284,-69.60083322453815 +3723,-60.81717298748013,-71.56478197469204,-65.20587053481005,-60.41629034270563,-59.57971298890004 +3724,-63.10568823368695,-61.352750496781645,-62.22289104434024,-61.4029204379921,-51.257146030680005 +3725,-62.64254118634855,-65.49030355474392,-68.98088303478562,-52.10780201105458,-55.774240924328424 +3726,-55.33655155368576,-57.11688095159809,-66.71280911154349,-58.764916548202,-64.69378528017485 +3727,-63.530872863977635,-63.99437416942391,-55.24398221336134,-75.84255452111852,-53.82965317101313 +3728,-56.376137318972944,-58.10167993160045,-66.49895667483241,-77.78609588871095,-55.99589749291725 +3729,-63.65290086448548,-54.431246740139834,-54.601737839038854,-63.30694845737236,-62.96522650686897 +3730,-60.47075223250418,-56.96218623064343,-69.26815654037881,-61.26804518396911,-60.372987743640024 +3731,-62.67016315389301,-55.64476875337015,-65.81089942079943,-61.69165256023315,-55.859294111736965 +3732,-62.143382754052226,-54.1642534250277,-61.60164241127749,-76.88806250929045,-58.62311218366789 +3733,-60.73139211777082,-57.229037631132066,-73.23143796692905,-64.22731039260837,-58.65684865813907 +3734,-59.488321884265766,-54.05882984739457,-60.89184665445428,-59.43288039457747,-53.171037490551065 +3735,-58.60479607878848,-58.20510827000241,-60.75928012304158,-74.41429584906089,-58.168174698894155 +3736,-58.17243496643822,-69.12230113051886,-65.36154272802416,-59.31742563220304,-52.8954942997584 +3737,-56.76331589921695,-53.4866763772238,-55.461325896486116,-65.40729461714498,-57.916726589302684 +3738,-57.06957275327534,-52.017419484790295,-61.1487468284485,-53.93731031273757,-66.56324864997487 +3739,-58.8430479543962,-56.61194361705756,-57.017865879570365,-67.68291320791766,-55.52040562741381 +3740,-56.21072748550941,-56.722221427890105,-59.86518573393157,-54.28802727552546,-61.34362944910452 +3741,-61.28614497623099,-59.56724350297106,-57.618352810442836,-62.272770643478104,-64.17575974576698 +3742,-56.19102283482659,-54.85920788857408,-66.0099225962337,-65.03335785066884,-60.45964778538796 +3743,-60.11918587268783,-59.635203798607314,-61.39595731150286,-60.882002100914406,-63.21313249682102 +3744,-66.98432941001246,-58.45502478728112,-59.55117584089539,-62.694958902044725,-61.46623657810036 +3745,-57.965809169220215,-65.0073281654108,-57.19337817491544,-68.78140924488304,-61.491442381864104 +3746,-58.147741460289204,-65.1617719321328,-55.03687162505978,-65.88817887305106,-59.55679084689244 +3747,-66.50236675758066,-50.81957174101772,-58.69147216899995,-56.77056886157059,-51.20472315061645 +3748,-63.32668595440174,-52.57317602982597,-70.23912113984544,-53.1550489692788,-65.19277117777504 +3749,-64.38142976052676,-53.36649393160436,-58.96452115541458,-66.39393465921624,-64.86844717673918 +3750,-65.29210661528712,-56.21941625536408,-66.88861841090888,-62.86179162406675,-65.68618605091649 +3751,-58.8898220441846,-48.98938461221023,-61.44690335466942,-66.57482939507128,-55.59801625951022 +3752,-65.43043526670525,-55.58488018183629,-74.24320472346182,-73.06897823903586,-62.13047115955654 +3753,-59.573770238326674,-52.22884747185873,-61.6469684974989,-65.24650128430879,-70.1349270744106 +3754,-57.682323003616766,-52.59526307564478,-63.976622537513684,-64.19269775782536,-53.00526434392508 +3755,-61.97791737567971,-57.57018597641225,-61.280946362170454,-52.552469486596365,-59.56653170460934 +3756,-55.47679359444571,-57.7708445335578,-62.65664455804099,-59.79866232552966,-56.87173952869689 +3757,-61.52669901223561,-60.1035812076597,-58.810563508370414,-58.7694377057187,-55.366050918324646 +3758,-53.99521128677454,-58.530676254933795,-63.7181650229928,-68.61976526458764,-55.31437591879951 +3759,-48.895899412658714,-57.28704170148886,-61.44075387640365,-59.28469316737628,-64.78250900102991 +3760,-61.316315241209104,-63.82691477529802,-68.75799265513969,-60.55873702695987,-55.001245239920856 +3761,-60.49441512253669,-53.50192248591314,-65.2925531120799,-60.03863912352978,-56.98567265636556 +3762,-55.24139619969181,-61.554998824593625,-64.98068640997944,-62.008068339691555,-57.30711891948273 +3763,-52.44013463570272,-56.64679084359908,-63.73163888178742,-62.61832401363757,-62.124138277570665 +3764,-67.71854578950622,-63.05278907575941,-65.35432617698572,-60.560917009072824,-61.29761063011708 +3765,-62.87082962464884,-51.7825956600209,-71.88218455336549,-58.89220126846328,-67.70865052351178 +3766,-52.05348653433042,-55.814559900322465,-56.08887723063159,-61.18851200287633,-55.995394973657646 +3767,-59.786861044364066,-54.46595860075661,-60.13304857130548,-57.03745341082976,-57.564854569397134 +3768,-53.77475770941697,-64.72336061416448,-59.80881757828521,-55.47972336246021,-65.94849675288447 +3769,-56.380854669688745,-59.09202885795413,-62.83211634436782,-54.81381785123323,-59.54367389691214 +3770,-54.2721688975631,-59.33285390705573,-61.906437512563656,-58.04906049490817,-51.541649295816356 +3771,-51.23290147949216,-57.353830861091325,-65.63243016978527,-64.19127834493462,-53.24450394986334 +3772,-52.631999966225216,-60.11311660598095,-64.50220643542774,-55.25543066930112,-61.09162065150456 +3773,-57.04579985026461,-56.024673167500026,-66.60157498860363,-63.31278201036616,-53.72803570034196 +3774,-50.002831495674315,-51.955987193584264,-63.095687693492444,-59.502833804409335,-57.682599198489434 +3775,-61.25547144408841,-53.70998989990183,-63.888909331892656,-67.57327741546746,-65.94137792839491 +3776,-59.69415196084973,-51.812754318622765,-63.27937495524305,-66.65696978879268,-56.28666724168059 +3777,-54.16497833475271,-55.84092361440372,-55.791595039431535,-68.27333180294757,-66.15497814006356 +3778,-56.74345898580624,-58.69436605529724,-63.674962789112186,-62.64764854037954,-63.188020697885634 +3779,-55.74480855166825,-56.6984089442133,-69.33214934772595,-60.22971243363113,-56.5858241795709 +3780,-56.25610014124582,-51.19868624493257,-58.79859975439346,-73.9020975276969,-51.37337876537744 +3781,-50.74640110934473,-56.879221780408294,-52.21295922223719,-69.88623361077045,-54.28608889142417 +3782,-57.487804418232926,-53.73475144017502,-62.31268314618493,-67.05468165144048,-67.58695831532079 +3783,-55.8415456150406,-69.5379565535216,-66.26478573010392,-76.59126860172779,-55.70794755066373 +3784,-60.73852301440604,-65.66352730161529,-51.237372359803715,-68.81591498001667,-61.99838417233011 +3785,-58.18975609552254,-50.50461830914899,-66.23245090743421,-53.03257248542243,-54.909084781923184 +3786,-61.440014680217956,-56.45711002179234,-67.87569902377244,-59.27098739215473,-58.20581629607404 +3787,-54.60748375466262,-61.55930035924808,-56.9221646794454,-56.49852618689194,-63.76750820505558 +3788,-55.73394449776451,-56.206754738688595,-64.5319844962935,-66.1490257082482,-57.315926780482144 +3789,-54.69231190854285,-57.742820245895324,-66.41476509327411,-57.14707321691673,-54.303046030065815 +3790,-62.14626080355844,-57.14154881100985,-51.42272979154438,-60.72141755992508,-50.654697464510384 +3791,-62.509553468230166,-57.186550203538985,-62.65128848711805,-59.082719052998264,-66.19287870838505 +3792,-60.90477694630921,-68.97074392318187,-66.05366687050832,-57.311215706971076,-63.35529393048703 +3793,-51.90577953831191,-55.901610374602654,-56.229537379563176,-56.65281142485733,-57.62105144834524 +3794,-62.44135218762243,-61.458320778109396,-53.922387757325296,-71.15871683950975,-52.96914887410867 +3795,-57.80688533142793,-61.86770168640178,-61.46849595272747,-66.3052120800206,-56.70843125591558 +3796,-55.258835233472574,-55.43637449076351,-53.37866592741826,-58.29143952853181,-52.94957701116296 +3797,-54.298035856904676,-51.63933532420582,-52.89766871174131,-53.54872029168496,-57.79152555623689 +3798,-52.76805333848924,-51.85636666448928,-57.47211995137654,-56.79476010084673,-53.30834332370822 +3799,-58.019835491575726,-58.08911925190878,-62.30155473164837,-52.502354998637074,-53.638052844517105 +3800,-60.848089591417086,-50.131747678608676,-62.98674698006565,-60.41536887061373,-46.89195445170949 +3801,-59.20448297123254,-49.662846919443396,-63.377793861689064,-61.222266439139744,-55.04044222653175 +3802,-52.22011896232202,-57.05220503391017,-58.17306559452268,-63.83162567873946,-61.612047705465635 +3803,-50.167048353329825,-48.22578900528128,-76.30412528957238,-57.388154812965965,-66.64964557178195 +3804,-60.42379366686993,-59.01244135499741,-58.21976950137531,-61.05432096135338,-56.93843838791999 +3805,-58.688918299415704,-61.73476568460615,-58.50957670028373,-74.21414631377095,-55.06481651918986 +3806,-52.82047323715318,-66.11016855930313,-62.64262462937927,-69.92029922025843,-48.81664811591348 +3807,-67.67129688957557,-62.00482032414874,-55.89708314274401,-67.39363041567461,-58.716182745142405 +3808,-53.97250180332344,-54.64443495250641,-49.29064379802697,-58.51788334399417,-56.8412526722279 +3809,-64.77817009143382,-53.944976794531904,-57.42389307533044,-69.49819782521713,-56.52302239545252 +3810,-58.93760114116061,-62.20776364188307,-57.33309031491844,-60.708044060531016,-60.06795023705664 +3811,-58.53229413530774,-61.38167404442427,-55.227638534676245,-58.34045417832677,-63.16666151285264 +3812,-56.76433714929088,-59.42414432895783,-69.89961021261078,-59.8742024876393,-61.09606436031181 +3813,-61.89313751280346,-61.880775774587846,-65.05750194362949,-66.51746967575922,-59.161988657995614 +3814,-60.04123516577148,-56.7631173945174,-68.87477531466585,-74.09147750942228,-56.172526238832845 +3815,-58.64275083994132,-64.87560979015313,-70.19261633699215,-52.37387569833361,-53.33598591274459 +3816,-58.46544506970213,-67.61549629111737,-52.04204772731274,-60.52876556938154,-70.36405583770981 +3817,-56.15699280319474,-56.413875533366834,-59.31324168977321,-58.458498280665204,-56.502397775825294 +3818,-54.209402219257235,-63.58476931844299,-52.04483887938724,-67.49022811461525,-62.59657646859487 +3819,-68.0532523268501,-54.016895018532644,-60.185292546076724,-70.95841918007858,-58.97775080639556 +3820,-69.33859960349544,-50.36096175124976,-58.33736693304717,-63.728305180377305,-56.48778665903737 +3821,-54.652756339532154,-49.713941183749974,-53.09204654204592,-73.13954194006291,-51.1303108005409 +3822,-66.34596923894162,-57.06603372306517,-57.212370855564956,-65.9008186801163,-52.85981364188654 +3823,-52.786299728443545,-57.589452911035984,-63.14018218465569,-77.9137637688706,-62.63966287468453 +3824,-49.93704884673227,-57.810940505160225,-65.26493375340337,-66.83342357284555,-68.842748317656 +3825,-63.369978701240626,-63.40680982084184,-58.394264170904286,-58.797208622464936,-54.556952355628596 +3826,-55.168933416802965,-62.018168131909626,-56.6151948523671,-59.89624995724753,-56.688434885052885 +3827,-68.48008059327846,-62.96736408010289,-66.03665655842092,-59.16241389422567,-51.46292205145579 +3828,-63.670517238938785,-56.83315564795819,-61.522098284308385,-56.467538743723374,-61.555764599840415 +3829,-52.65301959065863,-55.411537081968,-67.72559038201568,-67.73145713900328,-58.30278432815312 +3830,-65.80035200774097,-56.496300214666036,-61.124900511560014,-60.17585306605608,-61.51764105941331 +3831,-55.35849177715109,-67.91383298336373,-69.21145367413975,-56.67844069320864,-53.12866905133568 +3832,-51.84149762839595,-55.71082931939329,-70.27095887205542,-64.20365957947061,-46.180155805485064 +3833,-54.64207755837825,-58.986941972068315,-67.08453063312027,-59.86561640097747,-66.05955746242708 +3834,-66.33516010765405,-69.2801449974863,-61.77501286707567,-66.075939233672,-63.67795339544755 +3835,-57.772529957728906,-59.527367870848806,-62.44707675223523,-51.582402436032936,-58.82633924240891 +3836,-54.85733245982667,-56.51225100450161,-65.97416719406938,-57.04951892305965,-51.34840827068668 +3837,-66.13397144252619,-58.465025667389455,-66.56071307124428,-59.9020601654591,-54.434459915519945 +3838,-55.645855518672825,-54.71150870721715,-58.98087092298776,-59.440962530228106,-61.34444144697179 +3839,-56.46420356717611,-53.847491355427636,-61.49408713477474,-68.107062197208,-56.14865891836751 +3840,-54.066149432711875,-59.26531820756356,-62.75657273785921,-60.067968384068706,-54.71989962228177 +3841,-57.65989702007247,-55.57692060766105,-58.31404180998563,-59.66485091441427,-50.03333839634317 +3842,-63.46453965174523,-54.25228393094572,-56.72362298700522,-59.40749684578998,-57.781003944594524 +3843,-61.518263580114066,-54.12988743889966,-63.441174016769295,-60.36599029427428,-54.45303756078855 +3844,-55.29595076631548,-54.83514738356745,-66.23277724491375,-67.58027238615794,-58.77084540137381 +3845,-56.5055060529345,-58.945919102066206,-58.7985932753225,-67.17739170941448,-62.87573874989641 +3846,-66.77856264057938,-63.105863695325354,-65.8037486964107,-64.51644225269354,-55.69384323300965 +3847,-52.18426850281447,-61.249733149245564,-56.85695991278845,-54.46809692172562,-46.803692976695444 +3848,-53.26417775329401,-55.157550550298886,-58.864455838732006,-64.42742255267721,-63.81215610779199 +3849,-58.62677322746827,-63.92756172905356,-67.63695945949912,-68.45087231873173,-51.056463076556135 +3850,-58.88799846060573,-67.7312999663291,-62.95445486473905,-68.57475218282711,-64.71725227573533 +3851,-59.62585850441123,-59.60695163931215,-68.1654352847386,-62.5009713654809,-56.846743383362366 +3852,-66.58292304335168,-52.13893329963066,-63.914537079913565,-52.304171552193424,-52.28181719965097 +3853,-57.032972438361746,-58.61729957513507,-68.67413052730971,-56.74662095994996,-51.51603492830047 +3854,-53.921039158504364,-54.50123317952696,-59.54363241263415,-64.59612876390206,-50.543169900810845 +3855,-57.300826324064595,-66.74937329660729,-69.42982493484875,-56.48632289582142,-67.120969678951 +3856,-50.57451982595431,-60.434223451550814,-62.40180632590097,-61.23510039813308,-53.33084363603673 +3857,-59.96497909970745,-61.28396551983596,-56.98021797927341,-63.1070730481554,-68.82487927669142 +3858,-54.058541868879246,-65.50360304288527,-69.24171760926396,-59.76434225083895,-66.76366589780797 +3859,-48.57533448591648,-56.58301820972791,-63.248387212942795,-75.25515842856552,-53.78800858155101 +3860,-61.26864797447153,-69.76211504765469,-53.467147730159446,-70.74136262666734,-54.545007395481264 +3861,-54.98959357062334,-58.13171138567324,-67.48228732241832,-59.38229660556529,-57.37389776534457 +3862,-59.59382535891253,-67.34264610484374,-56.93266249746506,-66.79325296066436,-58.05765009028486 +3863,-53.695837218563035,-62.776625791109275,-60.296594574568395,-64.7486491828709,-61.82653727260784 +3864,-55.51299843958628,-76.08999040965658,-60.582235141139016,-53.81902500407051,-60.30616245697748 +3865,-57.103998851715815,-58.73700738013653,-51.47897521645065,-53.63166329355585,-66.21861259394802 +3866,-61.56771695065407,-56.54574559869597,-63.43997157268065,-60.712607114137214,-48.49572431486997 +3867,-63.788873139605485,-54.50774201132076,-63.91040623219698,-66.63065083064582,-61.510619903972305 +3868,-57.63415437751219,-60.45251569137269,-63.47871893773901,-58.42588911877924,-68.97712951834932 +3869,-55.90709489060287,-59.72625875674404,-58.99865757200452,-63.79908081487772,-54.48019813457477 +3870,-58.40019720830703,-54.379308245888886,-65.87486397859692,-61.16209275109152,-58.9943149251232 +3871,-59.31202050240016,-51.81194154454464,-56.167582644809016,-56.83231096499786,-46.80485269124885 +3872,-57.34359452074886,-60.74172070149946,-68.17755399061491,-61.664718100573324,-64.9489267312617 +3873,-62.895935515865155,-60.04491623381499,-53.83167601629426,-59.00082913288364,-52.74019703945106 +3874,-58.27808412519601,-62.61666725131958,-49.05780932276329,-57.76628485312493,-49.79950267166974 +3875,-60.801170042242155,-65.96571741217518,-58.76891390830139,-68.16931266828827,-64.49493705093302 +3876,-52.126542133400605,-55.86088341383786,-55.94336164127811,-56.49885971444367,-59.13056216019444 +3877,-65.81983388814574,-59.23308552341129,-63.056720629615995,-70.69744355816924,-52.372698777563784 +3878,-59.89535779082871,-64.13903049565958,-51.82124791174598,-60.672345396451725,-56.97941141042006 +3879,-57.02519504689939,-55.78560221003436,-52.26357793060543,-62.280099389074394,-63.20647371958784 +3880,-56.53651660037166,-58.62794455191461,-59.29016549668743,-59.299178624914006,-50.06699772251598 +3881,-50.36186672804632,-54.196319084645985,-53.89319394334633,-53.55786281756301,-57.34387605550307 +3882,-63.790532154826906,-62.461328134960475,-57.59616951638737,-65.2255978900534,-54.65456384400615 +3883,-64.26973822608338,-67.60765955634518,-60.4777256314894,-65.22260814754151,-61.326368637128105 +3884,-65.68241651198781,-51.02722349383215,-53.45421574985089,-61.00627914838142,-64.07296176773872 +3885,-53.69528173018691,-62.766823743333845,-66.91117351290373,-57.77007693261048,-63.300765415978795 +3886,-56.19779581704783,-60.316246073346036,-66.66991684764965,-57.866713355888685,-61.65944725561465 +3887,-53.66605204121132,-56.90097958495262,-56.16431888391971,-60.517012736284244,-56.183906092577125 +3888,-55.875664678984435,-47.13721755353008,-59.51981056193423,-60.92834817566187,-50.06485481528138 +3889,-65.07045858101088,-62.923214222422025,-66.22901971932929,-69.85584774984481,-48.0738895968316 +3890,-61.41235688934022,-53.04858779630383,-58.785940720471785,-64.73771907722954,-51.81101002944669 +3891,-52.70821077100785,-65.14108845674156,-53.121589712734504,-63.46991153470572,-53.18531756268339 +3892,-66.19586726220598,-64.7841439167388,-56.06202732805304,-61.128606252030124,-54.02832701333549 +3893,-51.5190519193542,-51.552972097032445,-66.93520840860135,-55.549284314935505,-60.590613105622595 +3894,-59.80599892010201,-63.30851913722652,-70.13808788446332,-69.34888189657843,-55.76132890472574 +3895,-59.31584269159794,-55.332729425499174,-60.132851622102265,-55.702177111034146,-65.57531133256992 +3896,-66.69452117360831,-57.9345474407774,-64.5906674561861,-61.20834353586451,-47.60828958565735 +3897,-54.79040974654475,-65.10752997205734,-60.324971673803844,-54.14115021703861,-69.13411335847638 +3898,-58.689849346158184,-55.123684249502325,-58.544939868849134,-62.872708478265956,-60.80888472222032 +3899,-65.8125391326728,-58.31992636194274,-68.07497832384202,-57.65355456838975,-56.07594615243897 +3900,-59.26727630010156,-73.05352940934662,-52.43554979441261,-64.84207615929486,-53.92747705536097 +3901,-57.86918803063634,-52.76358777747552,-62.84346940497491,-49.81787702723297,-53.35878861395234 +3902,-56.533223622374734,-65.98829102030645,-61.27307424249139,-52.53878932750382,-63.94297302187963 +3903,-60.63047005905554,-64.64340088749942,-62.514578872860376,-55.513002630757974,-54.96940072304827 +3904,-64.2932757993721,-61.616641098120574,-72.08010850770205,-51.083507715077296,-51.65809493591247 +3905,-64.99016195555069,-57.165957791758444,-56.43939310707554,-67.27358445073621,-60.531167081809144 +3906,-60.496075949134024,-54.373942376634474,-55.737791465514455,-55.20051650293595,-53.806808343840466 +3907,-55.33992499505842,-58.98150959645878,-71.59244657524883,-54.48814011534273,-64.36585120601916 +3908,-54.435059733496324,-64.00757689723471,-74.93679808642422,-55.014355345330294,-56.25374052493295 +3909,-57.802934805602426,-61.575584978194634,-76.74011582415557,-63.30337479850662,-58.57066857404475 +3910,-56.45582043097221,-67.84742592786866,-83.26298546444686,-55.63095652892133,-50.15262301540229 +3911,-56.34646150903264,-61.241330126007526,-90.74449812503849,-62.212129024921566,-66.32844147608431 +3912,-54.91490893424139,-52.25744614286076,-83.92699772913397,-60.09273333654719,-59.499909812570905 +3913,-60.39438078891078,-48.147328781314094,-74.23228734525297,-63.591438920275024,-62.31998161771377 +3914,-55.16947827809492,-53.68575202778277,-69.80273409876013,-58.82506829159465,-64.93277500688978 +3915,-53.4500836788546,-50.2073058987617,-85.42956012167622,-56.668089353095006,-63.47910106431278 +3916,-65.87724165891831,-57.015429078643365,-74.86203609565575,-63.35612076692736,-59.53274493570408 +3917,-62.40231909778124,-59.47837209607047,-80.04661390543077,-55.169912251111754,-52.514116235261895 +3918,-59.77639223535072,-63.65770957501662,-77.44924308036184,-53.77140644629834,-53.352204190859226 +3919,-64.53663963076556,-51.7750493791507,-59.04110648546202,-61.70261078786147,-63.55943479898641 +3920,-60.160831353867174,-65.28457213935738,-62.53552277172816,-60.27053121090498,-54.97376837040735 +3921,-52.96765393862048,-61.48972973324994,-58.69922096980348,-60.21012900287251,-47.53586879976459 +3922,-63.56371037406339,-59.81309886813479,-74.97032457528078,-54.97987725969998,-59.61094729983925 +3923,-59.10659482913875,-53.04884722968617,-60.6547276831072,-54.206833207425994,-56.39182345424518 +3924,-53.93203751067363,-55.904749989214096,-63.37103254478199,-54.602975182431095,-53.60556031876279 +3925,-54.96664327102586,-58.42566978994198,-55.67112792334068,-63.58120352282982,-53.17831711555549 +3926,-60.97925206064285,-52.99294371847563,-53.89873858134682,-61.88746551745046,-49.550693270916604 +3927,-60.95128417135315,-66.28078640352567,-70.5685658071702,-49.06753448018605,-49.81897655230518 +3928,-62.45014783332198,-57.83650161726338,-64.90372464435542,-55.09549810364578,-55.95477141606062 +3929,-57.898537938852016,-55.22587968504524,-65.56033973603198,-55.09837724892323,-49.667131458874046 +3930,-59.98332008936773,-54.82080755163894,-60.85518388186066,-59.773985920183,-55.60012653748663 +3931,-55.81105820349479,-51.929785585032846,-64.90914800361135,-62.96045573077366,-53.38488440882486 +3932,-61.17878013845129,-55.87209409860424,-62.12513907155891,-63.269327529899925,-60.524271956040074 +3933,-61.29018955218938,-53.30159404642245,-68.39065394418944,-52.646158248215926,-53.09264304581236 +3934,-57.57393493432508,-55.441714089792995,-68.50389156238512,-53.582342731206595,-55.09447505248055 +3935,-58.03267471982288,-59.9948155739977,-60.9938761088921,-55.014349669342316,-53.02085409022974 +3936,-56.28145572603035,-61.25451772127018,-66.1725562160698,-61.93464206706887,-52.12306499439181 +3937,-61.936976225285036,-59.78037009196233,-63.735306124061644,-68.5735281174441,-63.79816713780195 +3938,-51.88183803532876,-60.03356931606342,-59.20796847460386,-56.325645868349675,-60.85035595646767 +3939,-50.69410986844201,-55.29538014311393,-60.576204023430705,-56.07497252139232,-50.30837875375027 +3940,-58.21763080328945,-60.92773054540738,-72.07469738387047,-54.25464139481314,-51.71461901479398 +3941,-57.405849078609066,-66.67568878049994,-62.91021419810856,-52.0997092748338,-48.669035936038405 +3942,-61.36687365092343,-57.05839068566033,-59.49148811570857,-48.17687294259174,-53.21285134199571 +3943,-58.33643932394144,-70.04282829087187,-66.81131731431537,-55.573314155989955,-72.32964455197539 +3944,-57.43945280000528,-55.059171631772514,-59.627936496836085,-55.974336331260346,-59.54630803093698 +3945,-63.14322562355427,-62.957178424593074,-66.42405069494173,-54.911236839070654,-49.54712280120023 +3946,-59.32563015076027,-65.1838318979856,-58.390739509442184,-54.65910599375351,-57.59088554992917 +3947,-61.30775076003291,-55.67848167803693,-65.75526437683968,-53.88238798063558,-57.65563254309248 +3948,-69.48842423469914,-55.847066898294074,-58.03947349321717,-64.68698155586867,-65.90753970560397 +3949,-61.200913582850994,-66.59089720530886,-57.170260042417446,-58.720157401594854,-60.71311191833376 +3950,-58.42740201929612,-45.40044414631867,-61.95409073897286,-54.884130511094604,-62.60318653261944 +3951,-57.620014252341186,-55.044847512448996,-60.597980181585164,-56.13717562118113,-65.41258441999477 +3952,-51.31763289078097,-61.39291358351126,-58.2545366462956,-64.70147043393256,-53.38460492601594 +3953,-54.864097789409605,-54.08433659323316,-66.78824054654443,-67.26129613294626,-51.152519745491176 +3954,-59.7676316561749,-67.09653263021356,-63.3389733365531,-62.89624218013635,-54.75218919775597 +3955,-56.76099216134727,-52.298841919972226,-66.87702895535433,-53.377823987560916,-62.25861020373531 +3956,-50.528830295295435,-58.12851929479751,-58.77046684649508,-64.71317907931159,-56.093246527046965 +3957,-51.658851188179426,-55.489367058975716,-69.61513370022774,-55.59185374958548,-60.730029002570376 +3958,-56.316472379078206,-57.042545503214086,-60.81216459502626,-60.71871544940193,-67.47916038564688 +3959,-54.11014185193709,-60.58758123842815,-67.53672351680133,-52.844156760972915,-58.54563997167534 +3960,-59.20036120309098,-56.339173292602325,-71.71533105473013,-57.32163584348238,-58.17658058281961 +3961,-61.379980541170156,-50.36679618809951,-59.622861382741476,-56.59853109094974,-66.07491025643732 +3962,-63.061445594064054,-56.63003979672924,-68.1991418244599,-55.612792393560746,-54.88559920371016 +3963,-55.79732785603428,-60.85714511691994,-62.25671990136299,-63.39990213258879,-53.19480477931299 +3964,-60.30637465695382,-53.98358537150238,-54.904465873417905,-62.178673592256715,-58.740985195158444 +3965,-50.013924803498625,-51.04552602922401,-64.59121144482383,-50.25983818784306,-65.90150731359134 +3966,-56.697144420515436,-59.94025121259986,-58.97600870634948,-65.69745473961453,-61.92293427359417 +3967,-51.70901122956827,-52.41680432234994,-58.314817806823456,-59.00434851441421,-61.99621131324243 +3968,-51.37967459876708,-55.89673192662325,-58.794863445077844,-41.6821278202465,-54.02311939734585 +3969,-59.9207850178204,-62.75982334172785,-61.69579970525893,-58.012744279449095,-52.70601404961319 +3970,-63.550988780276604,-55.74964549758314,-59.69250397307891,-59.78637580196852,-52.45780461290352 +3971,-60.77277903958502,-52.752174972308936,-57.41515650481972,-55.19125856172398,-68.14964052215213 +3972,-50.75039519315387,-58.174254758861586,-59.24561197124879,-65.61005982098813,-53.1221466088997 +3973,-58.37329278393062,-49.432425757275674,-59.32175826124009,-51.08772898177296,-59.19719064992938 +3974,-54.35794936978286,-59.554965475389785,-62.25574295993245,-54.66827461939851,-71.33121611950648 +3975,-56.09690273718313,-53.755625127097495,-55.50101842275745,-72.65525570425466,-61.71229020227568 +3976,-61.29112416525921,-64.43037081981065,-58.53537753116839,-56.3342507415816,-64.48605250930217 +3977,-52.28556545532788,-51.84068780709237,-59.82896255732195,-65.11781490831747,-69.90515990784111 +3978,-62.63060212695851,-56.93043416522021,-61.80131580803813,-49.94860645328766,-68.01048873287792 +3979,-49.99296524893595,-56.22666290300323,-52.77909112101889,-58.87399721902327,-63.68661820721558 +3980,-62.00854477283093,-57.12307163287276,-61.58891765347082,-57.92467363456598,-65.73376957634216 +3981,-69.72885422563185,-55.65286342738809,-58.5229311958483,-61.27860917374859,-60.21822271380144 +3982,-66.22059060599899,-60.23182071014727,-61.69246760265951,-56.614301813800935,-51.64735650837288 +3983,-63.66406624378279,-52.16731016763424,-63.335696589272814,-53.65661990908245,-48.532302384137125 +3984,-53.53565545914227,-59.15115523224386,-69.22724739338571,-57.28870970519905,-54.50451419786802 +3985,-58.41481196479595,-54.761591653107885,-64.67114702048272,-64.71751998720754,-51.70154029515805 +3986,-48.75408643397081,-48.80283100350085,-57.54024627851016,-52.02399658024938,-57.11999750769731 +3987,-58.170456918876965,-57.208236479714984,-54.4396147672948,-54.89720737925449,-64.51481733352566 +3988,-50.17529299832158,-53.50467107350446,-57.464287061720476,-64.15344808991117,-54.7785026088319 +3989,-57.69935383579017,-61.796211163745646,-62.26928669700277,-68.21017897828483,-59.3088809877019 +3990,-65.0353153658418,-60.3691017021885,-56.58723728576558,-48.53232337288735,-64.45488314885291 +3991,-61.22617927566876,-55.99867447293877,-57.25164964479538,-56.05403924199901,-55.33840556101695 +3992,-52.30505627966711,-61.72600410998553,-59.01162909054844,-58.67106821273379,-63.730886801059064 +3993,-56.87663429603453,-57.49453218919496,-52.924744838567676,-57.69726345394884,-57.39602047060144 +3994,-50.14057444030864,-68.12540625334758,-57.75327601316045,-54.6414849792551,-61.304801276796425 +3995,-60.67744177687631,-57.985069293551135,-64.34945836126535,-58.58680852120314,-62.98680328283746 +3996,-60.63968438592675,-61.57137247358006,-55.701277808646694,-65.35956928094166,-62.53818503454992 +3997,-68.9409515097664,-66.20199765080147,-56.89650861801984,-63.23341800277964,-55.11731589657046 +3998,-51.028412769863905,-60.804987186930376,-65.04186513792206,-55.97628185083131,-58.59045642129942 +3999,-62.93645707165482,-69.15562106787483,-66.0599138459376,-60.75405010853461,-63.38981414025862 +4000,-55.80263811704843,-68.78362178556574,-59.18413718950287,-59.58320876884087,-57.21375302748434 +4001,-64.94809414752247,-59.19621566868724,-74.77534802958284,-67.45568437578095,-56.80979432832832 +4002,-55.583469172943325,-61.66220035411601,-57.12485919899448,-56.601819749739384,-63.80549338178066 +4003,-57.19649244036685,-60.52949677104622,-60.17850057294213,-66.34138029085925,-58.979353428252004 +4004,-58.75719041686505,-59.071266698817574,-78.93991514743087,-63.11132234004476,-55.6722205517264 +4005,-60.38558619043131,-57.20833973366766,-60.50054008457907,-50.117764749610444,-59.76200979716529 +4006,-59.75268136681591,-66.13136282819066,-61.73641405596355,-54.520334250675155,-50.540254671525645 +4007,-58.4742047009807,-58.29124998416023,-63.28610536376995,-63.1581171933529,-55.8996139141301 +4008,-63.09190712831815,-71.59775798732703,-71.65283141180385,-66.90308733352236,-56.754289867555315 +4009,-51.73665457638707,-53.45093748041153,-66.34271434989144,-66.02967907479933,-55.91021210638466 +4010,-59.30906087836019,-61.76597649795911,-58.254848341382186,-51.876244794623695,-63.1937196454549 +4011,-64.71179335198899,-58.74816667289919,-58.518760953426515,-52.43355325638225,-59.92657052952005 +4012,-57.05349202639741,-66.36088380915028,-64.04767683327721,-60.65689729324316,-56.156245129503496 +4013,-57.42624991736267,-62.674499327080476,-62.01587271391869,-64.87322607084246,-57.17632244155387 +4014,-60.857370680498875,-69.86188470291809,-62.28538440701311,-58.39588091679104,-52.61677007461009 +4015,-60.31341881657636,-64.92049387605186,-59.8383096723841,-63.453427176104675,-57.441947121371356 +4016,-53.90728457078018,-77.42008427884068,-67.22125103634635,-51.279973341157294,-56.78558151306892 +4017,-63.89519385057248,-59.674376093162124,-69.37362247925726,-64.30376652259208,-53.61502460850204 +4018,-55.47677042368486,-70.71764878894822,-65.2436431125604,-61.62935290349781,-54.8842686397009 +4019,-66.16408459004833,-63.21632119330198,-61.21673047745195,-57.96728463406334,-49.93237143108798 +4020,-55.14238355836311,-72.48883349869885,-61.11329704048496,-58.3250486162815,-57.647756236368124 +4021,-57.4261878976382,-58.211630072623315,-56.9831356149438,-67.85674289548045,-62.04066457268402 +4022,-56.92198054679482,-53.74431121739589,-59.32142918544226,-58.579267912929275,-54.113049937160184 +4023,-59.518231991309406,-58.85373830580667,-59.401848367483886,-64.71994095124106,-64.67268166309678 +4024,-48.862475739244175,-65.90371789210745,-64.37426989579838,-53.12782127279165,-54.2982477584498 +4025,-49.29229161731823,-54.12597117899279,-55.17228848192919,-72.81805643557841,-50.38814763570447 +4026,-54.656808758607376,-56.133889683949526,-50.61027236509841,-62.900926639449246,-51.86621268330125 +4027,-68.0748600052385,-51.723922797505885,-58.66629736892357,-63.16345165168578,-56.73666595351301 +4028,-60.22562094555063,-53.87052924592667,-60.80647051303708,-56.31365186522331,-55.42891726229045 +4029,-60.142901296635095,-61.416260917709494,-61.31282508729432,-54.504377394311604,-55.54492986268033 +4030,-62.41366417149972,-53.0284781802971,-54.95209789004641,-56.98053927608696,-63.69751417417176 +4031,-62.36031347827868,-56.678594850263224,-67.2136507361845,-55.47304430205712,-57.22635259057487 +4032,-65.4004708564866,-58.344726664651446,-69.98926869383695,-71.88211102279578,-52.23570685519721 +4033,-58.75497323634237,-55.23342882666539,-53.206666512815815,-51.62935878744909,-63.92179944426333 +4034,-60.6974658646383,-67.0051204038437,-70.95542094832483,-63.032062719613045,-60.681004175956424 +4035,-65.12533016961225,-56.33887740845667,-66.96464393858447,-63.33342715212571,-58.87626041177544 +4036,-55.658861519792204,-59.549949208659605,-59.128790394546456,-58.859542423261686,-57.220541984920885 +4037,-57.384841395844774,-67.47635775874554,-56.02112475898482,-62.03036875941637,-55.38503322295705 +4038,-54.36290341889582,-59.041979575838006,-52.98524365323005,-59.22252746182973,-66.17009646337605 +4039,-58.48001148561058,-57.1894385386913,-73.1637732250767,-52.720882451066124,-57.9045373938252 +4040,-59.72674825527757,-50.989456393858816,-52.703689047766865,-52.95764150974127,-61.8220921598784 +4041,-48.401789328042895,-52.407153343519056,-54.94558795664347,-60.31109792489992,-52.02540698854968 +4042,-53.20951719982101,-54.59311005823489,-65.97686350000178,-66.55201280144875,-63.36101873958078 +4043,-47.56968438258292,-59.651249849916056,-59.70753434475795,-63.12189087443033,-57.56404116044722 +4044,-49.68201925528072,-63.01414201235819,-60.502429229692694,-66.87662375029973,-60.40951286501369 +4045,-62.73664487111626,-58.39143347504755,-60.5304403538942,-63.87151223965746,-54.324257678935446 +4046,-52.43324834231044,-66.44229700696549,-62.880947078797135,-63.43606732536516,-54.71827840438536 +4047,-54.53671095987402,-64.58357305683323,-56.821078530097395,-60.263116997552345,-52.41059080011147 +4048,-57.13872078208829,-58.31568802122322,-53.684529138340345,-56.55955882999909,-64.05210493376575 +4049,-57.123841024066365,-67.33535707623021,-65.05105070685063,-64.84912194371313,-50.67748422607506 +4050,-60.988031707726456,-59.245937230917484,-65.221198216562,-55.40040019426527,-64.89640350012024 +4051,-63.00078721325947,-54.20652798335273,-60.187590443172894,-46.84296347764159,-49.79701394232698 +4052,-54.25433950306946,-57.20409961952155,-61.10416286193106,-54.24269917222054,-53.665634272785155 +4053,-63.75360716832513,-57.20966373682807,-64.63454170366072,-51.18886964360948,-56.98887209296137 +4054,-68.37041555293007,-56.60056974736242,-64.1182417691597,-59.000446677483964,-60.47110236328441 +4055,-56.6591254792559,-58.65769418302196,-76.93471079676667,-57.61599210655728,-54.97851556630194 +4056,-54.66722383778217,-54.419930982462525,-57.0668550129705,-58.521533415405656,-67.36273047891838 +4057,-61.93588838245208,-58.47555475820901,-66.16642795751238,-54.70000472871392,-50.142467395844676 +4058,-67.63965764035623,-63.06180208947245,-62.28703020892118,-54.54889799980754,-58.34297424342753 +4059,-65.47349436383489,-58.718509622301504,-73.2393811487947,-54.355739400593684,-53.8665173171535 +4060,-61.80159883297486,-60.641098734667224,-61.23686435781616,-58.600709282337846,-55.560339646342236 +4061,-52.64785064469724,-57.377999119770614,-53.70300665046769,-54.4523229167184,-58.87194344052453 +4062,-56.325888812860335,-53.67991676305907,-54.0453398185662,-61.444943131104274,-59.642769119196466 +4063,-56.825782232733935,-57.22961969517529,-64.50490197071709,-46.73858521121151,-72.022944326578 +4064,-62.27499040699055,-51.08665280410766,-67.91586565163551,-60.034743170705774,-60.59164142238112 +4065,-49.11985675934446,-67.62086093642645,-52.795834225363116,-52.73908889212877,-59.26771461098723 +4066,-52.59870730019478,-50.518049685383446,-62.43740122179421,-60.761228265289546,-49.384200042127084 +4067,-55.0575161326589,-59.375533277590286,-52.73908544564943,-52.243541646879976,-59.50091791447603 +4068,-59.975370072091664,-53.55055627789801,-62.01803640487447,-66.08987152488581,-57.13690424795757 +4069,-48.62589109244937,-55.758603222172155,-58.05180216366742,-56.93705494410868,-47.48952173873568 +4070,-53.16963485803528,-65.19458904178524,-56.44195954800908,-68.31390176841832,-66.12982736971048 +4071,-47.308605861278096,-58.20419306527937,-59.71229070205501,-61.58632542276608,-55.72308060072634 +4072,-60.9683113526364,-55.8302646912263,-56.73390140063706,-57.69983870210635,-55.40456662136544 +4073,-63.25828678197011,-61.56318400298572,-59.11118835450413,-61.062714690984485,-59.23304094390138 +4074,-48.62556428498561,-61.00719523382476,-60.02359647264505,-53.71568480675064,-58.942640704648795 +4075,-46.0527677299804,-50.734109417591476,-66.45165792416358,-56.491160814687866,-57.958601327885425 +4076,-57.51493598782777,-62.390464728128606,-59.458097391809034,-50.375098158952554,-47.89378508904533 +4077,-61.47129862179791,-58.19685855541495,-62.82002897733355,-56.77961655696451,-50.73433100236259 +4078,-62.91329650684994,-57.946382017118665,-62.23764404074064,-45.88617705961075,-61.385814822352486 +4079,-53.604891247872395,-57.8609789047705,-53.73426883182268,-52.26218927288399,-53.735383946823255 +4080,-62.51848974358848,-57.2165507856931,-66.14265365119071,-53.82370609331161,-62.34113711750933 +4081,-61.44664008381048,-58.769155472979314,-60.34401158083179,-57.26046427500542,-53.90747540537281 +4082,-59.730090897683816,-53.123390334537994,-59.00502058553744,-56.262970321668085,-54.152441928824636 +4083,-54.21692757541832,-52.47368040293761,-62.69482734211723,-58.11574203157536,-58.99930859160015 +4084,-65.7363684179796,-47.76932802278175,-52.62389842494429,-55.294996527448,-51.882910908879026 +4085,-72.73282686626159,-62.06734464949677,-54.59653084053155,-69.00048199540913,-58.040644473937675 +4086,-70.91895170091851,-57.75814249820144,-58.86939634581449,-58.70728868690049,-60.73147746922604 +4087,-67.11321665311375,-57.89181718071703,-58.47652337247402,-59.96446113341363,-55.69590379114108 +4088,-61.3702508953483,-66.57757915994777,-55.595650928124236,-69.88328773716626,-48.54976237561323 +4089,-65.08070702463671,-73.54613101239191,-59.52405712256329,-52.66871938310363,-52.948337749677876 +4090,-70.855046147788,-51.59707899172848,-58.77903816110957,-57.53124834029723,-65.9328440721884 +4091,-56.577245311109316,-50.661734408797024,-63.93353708694071,-63.31509706596159,-59.527746573695985 +4092,-63.00350578581253,-62.48295721531964,-66.55704045303563,-57.526867255019994,-57.752829279707896 +4093,-64.10807662824891,-68.64848241736618,-62.392435631719145,-51.685584739195605,-58.50550247551578 +4094,-57.846214625492635,-53.255100787267104,-57.214891809712455,-56.90686002507462,-63.84141587858752 +4095,-51.60893596611267,-48.29942698550362,-63.63261717573815,-60.985458147975656,-55.71598983594389 +4096,-53.44046052784755,-60.018916488292334,-62.42039531829046,-60.67941779859653,-51.72411028333701 +4097,-56.8807926934348,-45.53764212173001,-62.78866069516321,-63.30064408413322,-53.66372917439392 +4098,-61.935464363746476,-57.80880126004542,-59.4167409294326,-62.79702835768525,-52.13801040902495 +4099,-54.76123280922332,-62.999063063662895,-66.70853808450615,-62.62287189631183,-52.90452661981609 +4100,-54.76105203961666,-60.0353029374556,-61.93956534321963,-59.420192372997825,-57.423329391136534 +4101,-50.361149204008505,-59.941581928470065,-63.067013366164105,-58.93601317255845,-55.6762738198332 +4102,-56.81172627189674,-63.13087569807047,-57.83386454963194,-59.87586342759136,-59.44968923485957 +4103,-58.5389039733819,-53.61339402874899,-49.050054403108824,-56.07979889442068,-56.258850549784576 +4104,-50.74952767529478,-60.150959879472914,-51.816095220099285,-56.81613841282901,-55.83380758382802 +4105,-63.37476635454312,-51.507267196930066,-50.60010696637428,-62.663383949798536,-64.59649740302845 +4106,-54.787812519936054,-52.72873583643351,-58.946777615104104,-47.65968953340851,-48.40375015396003 +4107,-59.690899198172886,-64.08942325744474,-56.6402580841472,-59.77355254638415,-63.56093884934847 +4108,-59.60678094680812,-46.84125925862143,-58.437413913895796,-63.65066140035954,-65.09158574859894 +4109,-55.2954299374092,-57.553912422857216,-50.41778822818496,-59.78098872834014,-53.569545276642444 +4110,-52.23671054556026,-63.213686623477486,-50.13127530107138,-55.53304507894912,-49.44175647413764 +4111,-59.78635837686264,-50.14410289141834,-61.030181133404376,-56.15955298862192,-66.95722910799692 +4112,-59.792153173498036,-56.24593979225432,-53.71702379679655,-65.79719503858344,-52.919798179255636 +4113,-59.32050941159244,-51.08256453413056,-59.85650577958224,-56.03294313759345,-56.909090092612374 +4114,-57.193101218910975,-53.41676933200025,-58.96267071754972,-65.40384575507682,-50.21097290339349 +4115,-53.41898358117467,-55.02445659971441,-56.79453451083682,-56.86963175241786,-54.55599734746314 +4116,-65.30254934958936,-63.191583063732054,-48.89843545223015,-69.30819300288566,-54.89991812135371 +4117,-59.18705955691432,-63.869462470045995,-53.63796521207573,-60.20797448121162,-53.47681208904952 +4118,-56.16222655961976,-59.383972904806974,-68.22160186357428,-54.1553019502797,-61.14723642633103 +4119,-65.7074558041445,-52.14310661174489,-64.15630089218554,-63.96807501490654,-58.92699577266912 +4120,-55.670300465842416,-60.09554999379024,-50.033814785997365,-58.300105747316415,-57.784094747807735 +4121,-55.35292467422197,-64.5004140421534,-55.03687442078487,-50.410173482970535,-54.7220992900842 +4122,-61.0698038984593,-55.53184578099326,-66.8685783483672,-57.41861201613297,-52.875862304391774 +4123,-53.8345976905905,-61.175380573322215,-54.147903608235886,-55.6496866712769,-51.90183398312879 +4124,-50.681455735072454,-51.66410053603621,-58.141330601302386,-57.85024220383365,-49.867015729148505 +4125,-59.671264348360474,-53.75160964459563,-53.980354554096884,-60.44155036204058,-64.32097772972942 +4126,-61.438709639213826,-61.67857299041364,-62.38673516248899,-69.81669749014652,-57.58173407498394 +4127,-54.29190308160082,-61.261039693218194,-56.21383612249102,-65.19211958002046,-59.17107477509656 +4128,-63.135641484683724,-54.27522080571339,-57.932275135331345,-54.416378235254825,-54.828981106325315 +4129,-64.6898420919951,-58.62184811339524,-62.115184469708296,-60.08518160992452,-51.31735261216084 +4130,-56.89468819864435,-55.50677132761351,-65.92573961893699,-67.99295622286631,-60.242267924279766 +4131,-65.85186339812557,-56.028179114321524,-60.4147948131952,-58.63064020311992,-59.87024503444768 +4132,-58.03928393660631,-55.77714591282425,-64.18541422430687,-61.259439740950114,-62.55456332668873 +4133,-64.57456382845484,-52.88327462896646,-58.67566047079066,-58.908061078624556,-60.08789066079882 +4134,-55.86303202935612,-57.87940902971605,-61.35571109803106,-52.82421802880554,-49.76665927254727 +4135,-59.98773772710453,-67.25933669190985,-66.34066260603119,-64.23614633619367,-60.017833002829974 +4136,-53.06297521832022,-59.541783178574356,-64.42501757626535,-60.8443652848757,-57.545487301514065 +4137,-56.56492020210023,-61.625539175002835,-63.73278002872028,-51.929115937921544,-50.81040156330677 +4138,-51.59008894048369,-61.03871802022712,-75.71689539861246,-51.478441171397776,-58.043824408533155 +4139,-55.67119267904629,-67.17253761183618,-60.65800699597979,-60.22501537896565,-50.82725579595062 +4140,-56.54734175716514,-54.308522964476,-56.72816229129605,-54.02474929836154,-53.01865565434451 +4141,-49.1730472678965,-63.08397635404651,-64.87023399730508,-69.36616058607042,-63.411971918892355 +4142,-65.90613425297384,-66.41111760903676,-69.7568840123933,-62.73355071290007,-49.43838309753171 +4143,-62.26246554102823,-58.3119109138691,-64.78352068466974,-57.89026984486513,-56.509051879365764 +4144,-61.66791004598813,-51.53928396244533,-60.60922149175238,-62.64898833872584,-48.83593223322828 +4145,-51.015690682998745,-61.284546666125664,-53.23139110870717,-57.55986898468763,-48.787216378769934 +4146,-64.36370897170406,-49.22671934662934,-56.9356027031794,-59.94168475309562,-50.885045829803886 +4147,-57.6420620703239,-52.90797516740086,-53.4011178239261,-53.535515145837714,-59.10901579271849 +4148,-51.896266434513706,-58.04505311201063,-49.41875653648399,-53.40798473223219,-67.8201722468482 +4149,-52.16301570760157,-66.22262256470027,-55.021553012414515,-50.45385118072648,-58.04383308098209 +4150,-60.106769542800286,-56.276646806121235,-58.27082463824326,-67.83797796142153,-56.43806521328741 +4151,-47.66477299051486,-59.38410667697732,-56.51016343497446,-59.09945533292872,-55.38159786472033 +4152,-54.939879155984904,-59.8593767826765,-55.23353746332394,-48.4897861928575,-61.00665159503214 +4153,-61.4748320502197,-53.120045735929,-51.0269122123248,-61.330482474917844,-60.29811269989378 +4154,-51.1019088776272,-54.9261268755606,-61.995756572768705,-61.23084919586637,-58.90440063560983 +4155,-51.33024383727911,-60.324967311273454,-54.97649586572434,-61.62895384888854,-51.50377549653095 +4156,-57.81386725810463,-61.00915142000064,-56.718723729873766,-54.35495004403619,-49.972825557902965 +4157,-47.0748111015353,-67.93809727971997,-59.521037474028745,-56.336057482730475,-56.07730235125976 +4158,-55.71759787064833,-68.61748264213786,-58.82796183221326,-65.93436790691705,-59.02993460768356 +4159,-57.20928769044677,-63.08854441697107,-62.53521436607841,-59.70213415665166,-52.044103643277836 +4160,-60.72084557845466,-57.00264242304542,-68.78192236744759,-57.17775674567097,-51.1894413383459 +4161,-58.62986725128053,-55.21487561318892,-58.73797574459794,-58.38612183502626,-60.96024963044651 +4162,-49.59918816065793,-55.656341527593696,-66.01870733521709,-59.92284587487229,-56.892227340543165 +4163,-60.42823224976648,-70.17021890282523,-63.61972641574358,-60.54848221972476,-45.06480249778528 +4164,-55.10238150165648,-56.390098978836434,-62.12714639853787,-72.0214732091777,-58.162864497451245 +4165,-60.00810919554163,-54.70679968820554,-60.481918625668484,-52.58115030350206,-53.96504760418918 +4166,-51.05948547683514,-62.18847830057265,-62.47108788903381,-60.89919331685645,-49.33105693051928 +4167,-58.864614805666854,-52.56086862023865,-54.00854864794302,-59.37563220196035,-60.475072070287446 +4168,-64.9623652956959,-56.93172286375867,-50.90866381297262,-69.00129346666303,-60.271818111377115 +4169,-62.55053068720552,-66.27569600852917,-53.884400499058685,-57.57328049709148,-53.65951211108877 +4170,-53.766347231999966,-49.4732484601435,-57.18640607243261,-68.57241240266642,-58.17635657200615 +4171,-64.50242307585255,-53.40752568233566,-59.00733218344033,-50.41294247367101,-57.05561648411949 +4172,-52.71227596253055,-70.69862550773252,-64.48487898510973,-50.9265727394556,-57.859569880856974 +4173,-64.08505819648808,-57.336120649475816,-61.330926781209854,-57.077123155409545,-62.61752849560643 +4174,-61.43838265165884,-55.00250719415171,-57.862316046783945,-60.38123503254616,-66.80836016454599 +4175,-57.23504877891767,-63.92102024001821,-61.65641680099566,-71.56642308911931,-54.49159200707637 +4176,-55.68346474695429,-58.98742593211588,-53.390114213203915,-58.23418668547846,-53.99658317377394 +4177,-49.745911284415804,-55.45522493613495,-55.14768544595193,-59.80800826375375,-60.253840974994645 +4178,-56.627130216373864,-63.9014804460703,-60.60466014659096,-55.66753359636913,-56.629433569902744 +4179,-56.95549474437364,-60.28135125913772,-63.7924563658708,-66.36234684213304,-50.511727865022884 +4180,-61.253099239234245,-58.340286002371506,-58.39300930285291,-58.09956111975708,-56.93794591072098 +4181,-48.25541164007486,-47.85326000234742,-51.44892091179218,-53.774206109361565,-46.29157549308845 +4182,-60.813381259200916,-56.45854867534101,-52.985203180929446,-61.30465137243431,-52.12966114874027 +4183,-53.000409242018954,-53.72836529316553,-58.80749080472307,-67.1966575237319,-57.181191930891934 +4184,-53.990630903941394,-57.691041270316035,-54.64476890536334,-56.68647389314541,-68.85177486709851 +4185,-55.89742353292739,-53.70541403352756,-67.6672781585802,-58.023970208465435,-54.59315020412005 +4186,-57.24813552616551,-59.82707781489706,-63.94741460531163,-55.91157265064852,-47.852983551630395 +4187,-64.86308254520455,-54.95059850748287,-64.37921492469854,-67.59650766391611,-51.94133117309212 +4188,-54.439028633587895,-51.734127505868734,-57.19462205710399,-73.6216976667822,-63.216628128301736 +4189,-56.72902103653499,-50.06731562718718,-59.398021615003074,-61.04440002220642,-50.315942389844984 +4190,-64.20621183288904,-53.37008055906783,-55.061981183025324,-60.91512303429986,-67.18366478678301 +4191,-66.21052060988663,-58.95968944834597,-54.7194106227333,-54.62095620434579,-54.87641881963433 +4192,-62.88378599495544,-58.67813093927731,-55.38822898510352,-52.60663393326522,-58.396694539557195 +4193,-62.34902191200588,-52.60342452593184,-60.01468511428693,-50.9969938669725,-66.84483013168675 +4194,-65.98518287535086,-50.92455522370516,-55.31946131024696,-63.459922182787594,-60.34594183818327 +4195,-59.70455705551242,-55.58662690207446,-62.15148797856408,-54.734515408254055,-65.09029104978383 +4196,-58.69109473272393,-57.21744099554854,-58.09501029638869,-60.01516126817573,-59.14574319614725 +4197,-52.15479303480799,-56.208445780094905,-53.02271749068182,-55.88574922568269,-57.49618284946661 +4198,-49.91544921513826,-59.958644869135455,-54.961246862102435,-64.55192313522596,-55.025130330197406 +4199,-54.523178524057,-58.83529044013847,-56.31133799586493,-61.84491569684211,-51.26684956592438 +4200,-58.93209801731518,-59.318947808758864,-61.000324498135534,-68.05361089695027,-63.709533121412605 +4201,-57.6272155457026,-62.247548518483754,-57.50897236042782,-62.82073101160471,-57.87484621417548 +4202,-51.628525655539555,-60.941331986436374,-57.58936930805893,-69.41876648372543,-54.66912631991444 +4203,-59.368523078051524,-56.62536961080935,-49.49170414429127,-64.71117565560643,-52.872970106325056 +4204,-56.10905362186593,-54.445399629130655,-62.22096051200545,-66.95707168245079,-53.37575695565321 +4205,-60.74647993401078,-47.07874035873579,-55.132179543216886,-57.259042105265266,-56.76672805718759 +4206,-50.92419675065594,-57.5173387425373,-55.13366902693122,-59.69440365470415,-55.19277663046706 +4207,-54.87674211506882,-50.66150313795267,-57.05618174864382,-59.646160311199225,-48.71372326396753 +4208,-55.149979606911984,-61.656221248249096,-61.833362903684645,-57.005611129483476,-56.14633705948143 +4209,-51.54102683390559,-50.72167054083104,-56.07380397736836,-56.69382924163299,-56.47211144953811 +4210,-59.08605662433993,-58.54401669127628,-56.356457056304805,-67.3185506551724,-55.652704566995155 +4211,-47.70760836195491,-60.05897093394511,-58.01173762182963,-47.98437825356753,-48.072518612503046 +4212,-56.20003627541384,-53.890789985702696,-57.746784136610785,-51.32993605301118,-67.96080637605864 +4213,-55.02544672691749,-54.78959143510156,-57.20324315440134,-71.32628048786418,-63.92468060593401 +4214,-55.55276355047747,-65.35761157082247,-60.401266365483224,-70.62397638321974,-66.09860156159274 +4215,-48.69940164689379,-57.39809471685101,-54.5723172592676,-53.53247227843004,-48.82537667460128 +4216,-57.38083328306425,-57.08823358929813,-55.39250076380253,-70.9950747894629,-51.52100876151565 +4217,-60.98998967693033,-55.84307170137088,-60.319364724339884,-64.66085032394237,-59.88554957347407 +4218,-56.7402548903137,-64.19090397692176,-63.90850674401996,-55.71227103297545,-52.17936506682022 +4219,-55.58702449731325,-50.03251884841161,-61.43330002172243,-59.49197390383142,-52.72261193727378 +4220,-64.30612532395374,-53.15775895789067,-63.11755067886181,-59.99559415367374,-60.00319005937763 +4221,-55.15600378462185,-53.12504002840773,-58.82143662893614,-52.716288323513695,-66.7801950996522 +4222,-64.5373881504611,-55.743371543164585,-55.242795723773796,-59.63490613004752,-56.61561829326371 +4223,-61.35655117218465,-55.27100486159799,-61.39955996171435,-60.899915979840046,-56.657594468841616 +4224,-52.98438596007093,-58.54540111263917,-60.05823164316689,-60.52140392470761,-61.19480081262433 +4225,-52.35006144461936,-57.493560628942404,-58.63193118483516,-55.90299580191404,-51.303743646612936 +4226,-60.60124752297887,-57.271979648115966,-55.40648833018303,-54.486224341113285,-47.99537930159546 +4227,-44.23602723766946,-46.23473768902478,-57.326806627255,-59.76383566841244,-60.68488109951318 +4228,-61.1684481904264,-64.4024851100593,-54.56067092116362,-73.79750307590862,-59.847626616531734 +4229,-56.674439410478676,-53.67765085289856,-55.77749143724438,-69.29792294883896,-53.454692731871646 +4230,-62.330563373565155,-53.5203636752634,-62.76137615218552,-54.40114617689498,-54.313004322316 +4231,-53.96801572284081,-61.59897307534747,-64.94165618713775,-68.14791506362283,-58.98220512654829 +4232,-56.09792324963884,-58.33846212359044,-57.526738201299494,-50.767757819304975,-57.3139162641265 +4233,-59.96099407108386,-48.8640308673898,-52.78975785203452,-58.425422755231175,-55.82256197532134 +4234,-51.289677135412475,-51.13317988583923,-59.39903404400856,-61.13533677370764,-65.4053589238061 +4235,-56.247355210092024,-58.25466663666378,-65.20115049408656,-63.8781028982608,-51.974467517647696 +4236,-54.77293010041308,-49.01973769376533,-71.18334303193299,-64.03381227349024,-55.43611868225283 +4237,-51.35043330404039,-50.163027713064324,-71.63290868119618,-58.78088890115568,-55.89512437723621 +4238,-59.70912625401259,-49.7228270038644,-75.12136311677472,-55.484772828393815,-60.072214084013815 +4239,-63.72849102607916,-63.29923261153163,-76.6392058032998,-52.553660597096986,-56.32453003152464 +4240,-62.031732527417404,-56.42983378833076,-63.16549204223717,-64.71405011545893,-62.810313576016576 +4241,-58.02848720927905,-55.59143489704204,-56.854338267204355,-55.659428632720015,-52.78569859988591 +4242,-66.84351321331116,-50.3251173664777,-58.54748126554678,-61.832139270274645,-49.14252433442834 +4243,-58.15384443671428,-59.07268511287649,-60.01652938385497,-61.50335309776071,-55.09757288929034 +4244,-52.49092742710739,-51.46196278351799,-54.60869933944945,-58.913905546017254,-54.51479980169801 +4245,-54.92107178219373,-57.52397583589869,-53.038672100690654,-53.18241938274412,-51.4222322056692 +4246,-56.69201893498091,-58.198437675315695,-52.6353970110889,-60.54060057072287,-56.17097479851343 +4247,-55.0300794595777,-55.72606715910728,-56.59683695729542,-57.261014709189865,-49.02430325083781 +4248,-56.45882186463677,-55.67498730881816,-62.02582109318495,-58.35930804844717,-64.98603279330726 +4249,-55.212676949040166,-55.63434734448421,-61.29459284572093,-56.961796100935345,-54.426892800263545 +4250,-55.46794662732263,-68.29727278815896,-53.5818187775754,-61.01606618052682,-52.44629571481273 +4251,-49.77900395002427,-55.717909220310545,-60.55031278305478,-63.54531183964595,-61.99025241297717 +4252,-55.509511653032334,-58.2618392881546,-60.31316831365602,-57.12218556903849,-49.231894101612546 +4253,-46.5627909548597,-67.22027128423544,-49.468792278155234,-58.09838587143682,-51.83078340353345 +4254,-53.332225121080285,-51.96288011205527,-59.36706132596739,-59.82472255598707,-53.2918514650469 +4255,-64.62866718267973,-56.36415422742233,-57.127328497840224,-61.54226185011416,-56.03805702716744 +4256,-58.78228521624792,-63.12965636124149,-57.522859924651236,-62.80790884946487,-49.69498588130702 +4257,-64.02518328268545,-47.88496778966227,-52.31499199722519,-58.17549107479178,-66.15772009303622 +4258,-53.42271681431293,-56.34502696346958,-54.14556168600613,-60.029418690470735,-65.11995014663054 +4259,-59.613058208139286,-53.42428558021718,-59.579204744297016,-66.11040454052339,-50.57895152708184 +4260,-53.005200908218264,-54.019200951961146,-51.310540858241104,-65.6039857466277,-51.47897779824603 +4261,-59.16430324545361,-61.744681307299174,-59.12859444935062,-52.09457569167402,-58.45953045866476 +4262,-66.07762863075777,-61.399018154898755,-62.01289498256011,-60.50095835675332,-62.87873672800558 +4263,-62.29256165042574,-55.28168301799449,-63.51738803601907,-64.83508600755783,-60.75861519106769 +4264,-61.75796766632458,-51.53580713401794,-57.13581057639818,-71.666824682251,-58.750739641194066 +4265,-63.24960781112151,-52.77863632858981,-62.065010776139935,-58.793967667355,-47.370953792119465 +4266,-56.182159114266824,-56.67783813494238,-58.85102418321661,-55.66674824294656,-56.956632121176945 +4267,-59.570231610813856,-57.038474372257966,-54.11276084522631,-49.1921493859467,-61.64621758435115 +4268,-54.59229880031165,-59.3140923890472,-49.364256097851786,-53.32412862131594,-51.96759084604858 +4269,-51.129150284236914,-59.51415612447668,-59.093914710792305,-61.782431034405064,-51.1324824470237 +4270,-57.87698355774324,-63.725443927896954,-50.66199309904041,-54.71187969372514,-55.11216633940338 +4271,-48.70364315718263,-54.93304388882334,-58.04728034560008,-53.59540720830529,-48.182076796651444 +4272,-54.62925992578507,-61.55671376253145,-72.00499114497424,-54.55613195881088,-58.075855730580734 +4273,-52.50201189785248,-61.866784026199,-62.30559545383744,-57.981119657042484,-60.89751515136712 +4274,-52.085958560679,-61.90337228242851,-60.98230841920936,-63.549389140660104,-61.8499867024202 +4275,-57.94094802813026,-54.18283110834219,-55.62895794274266,-56.197359112256564,-59.68551073557793 +4276,-52.296646927318164,-52.118093541411575,-55.1072056509011,-63.22003640165464,-55.730733002939296 +4277,-50.482411283190935,-66.38330118728312,-55.555263251695074,-56.43902699138526,-54.775604787017365 +4278,-52.89730054209219,-61.89164219170453,-59.96689099663432,-60.86980270180513,-66.77659437336347 +4279,-52.83535779089189,-58.27643445775583,-58.27135313734946,-49.935134683696376,-57.287677850386984 +4280,-60.72448447996455,-52.8863168290517,-64.5750385392666,-51.90352155994133,-53.281557736381416 +4281,-54.52940878486397,-65.42598932228306,-58.40589593103203,-54.82577495398759,-65.19303038468968 +4282,-59.1053320783917,-49.95744260425921,-59.821079075340364,-53.67792369204208,-54.14621525154057 +4283,-52.59012916105533,-60.97124984525816,-49.6800083411505,-54.369414090597466,-51.58870414082597 +4284,-64.11394205128265,-60.955293956128834,-58.911944175199075,-58.30418643938176,-49.57803498575908 +4285,-58.33572090467142,-71.91067184891033,-60.125094388177914,-58.997559987858985,-57.507263823559626 +4286,-55.38951153612294,-54.504964093237355,-61.63838150889371,-57.00318163116502,-65.51837285162708 +4287,-58.262861703078336,-58.68480135912814,-50.5845199637478,-64.72245192580702,-60.25308009287276 +4288,-57.370213412199625,-52.59547947424805,-64.59580366836528,-61.65198566442261,-54.46900098499406 +4289,-56.42139921702831,-63.66273405856541,-52.761013162825755,-69.29390620679894,-60.11944799208755 +4290,-54.02049408215537,-55.066153090771635,-52.89391344531183,-57.63567410458527,-64.57877076225334 +4291,-65.05373852555128,-56.27696603273214,-58.012432949540056,-56.802409386976265,-57.44668567204135 +4292,-56.39405612677594,-60.186500222757054,-55.151989234420356,-66.23765693325095,-64.8600686875625 +4293,-53.14294469396259,-54.115026259997535,-53.72664019951089,-67.15174199094338,-60.98579947375816 +4294,-55.17451022458682,-63.8565702138124,-63.47806306468381,-67.75671387897411,-51.34358013867139 +4295,-54.899170064230375,-48.50576712992046,-48.26720550589539,-58.26740181483845,-55.07084746621163 +4296,-61.17861161627711,-52.572565817425485,-58.82668898200583,-64.82939088694043,-62.16901649960072 +4297,-56.043747457875604,-61.29310997922858,-61.92661836231993,-59.680067267731346,-57.14916568599466 +4298,-57.10783024789364,-59.63436645000811,-57.71840759582924,-57.27346267438914,-60.89016863626885 +4299,-52.951341094420094,-57.84464145977798,-53.549903948449106,-59.03738173987413,-59.37055669360977 +4300,-61.531277270271815,-63.22783697222996,-55.8305504576552,-55.56788256442218,-50.237311037430175 +4301,-60.933462494954966,-55.721238175345675,-52.58328066899172,-57.23628574245815,-51.59316934403349 +4302,-50.59915799353735,-55.52260977265641,-58.82464068636705,-51.74232102090437,-54.103009713750986 +4303,-60.61172969716073,-73.6730941905112,-53.97924815761691,-60.532420999306396,-62.35329222189264 +4304,-65.71579128939287,-58.24515019002419,-55.99287379749019,-54.05691154569729,-59.63931308976752 +4305,-59.146787284953355,-58.79125545554512,-64.24489624207689,-57.77435931489372,-64.57836272143359 +4306,-53.20699449515228,-60.92716789134683,-57.58863497052188,-58.60878541048549,-55.54821909372233 +4307,-62.344157709006524,-62.31560011557105,-74.39419233455364,-58.13279120745857,-63.876903547620046 +4308,-52.6006939542133,-54.34390570281676,-61.04136957544254,-53.15586165501605,-48.77136935959382 +4309,-53.20060193170936,-53.8056442427406,-61.81909675705028,-54.19334147097518,-58.810575720897006 +4310,-56.42046033580507,-52.28870823474474,-66.89981297936916,-51.42233990320332,-57.903812462355155 +4311,-55.96367921013808,-58.24522011317815,-69.16150232709523,-62.287273286136546,-51.93284180666026 +4312,-50.07544028760642,-52.91341504458027,-58.31313460508519,-52.86410928492902,-60.09826122945072 +4313,-56.47730194186908,-63.073524466557856,-60.23871000034651,-58.538739829619466,-52.7812240763375 +4314,-58.0364746591646,-71.17404340110551,-67.6430001162984,-59.18767145891177,-55.82205057169226 +4315,-57.728225201330375,-60.757536483266456,-60.68173337690605,-61.92577607249803,-57.375407704899985 +4316,-52.47183551312937,-65.13235414654481,-59.6076206338957,-54.22991873533277,-59.36823844898245 +4317,-59.861641201253825,-62.61303281901114,-60.57040247148813,-61.49429165152386,-52.82342425711669 +4318,-49.63468259686703,-61.2292471484638,-62.08078736185546,-56.83763719182299,-60.19757601643884 +4319,-51.09991275568139,-49.14177610121428,-64.52456260258407,-58.00534711462722,-55.28307678139288 +4320,-50.597248342315225,-56.02233595725817,-61.14085551309939,-48.01357220791269,-55.07176338648792 +4321,-54.549586633930836,-56.71000542876358,-68.67972193129461,-56.50503169160374,-71.19371374132461 +4322,-57.50409177288923,-62.585638444340525,-55.5725184419958,-67.64704278246528,-61.01461589549794 +4323,-51.37682465839427,-55.739371910266605,-51.063543544593905,-51.670370105412836,-58.651998600951806 +4324,-51.85714621722849,-56.71777656105121,-51.97470814368021,-62.395529677103546,-54.32591905549034 +4325,-58.03109116197251,-53.73721820759774,-64.4006311549658,-55.2115561834257,-55.1168717208451 +4326,-52.1640018876779,-56.30993981542555,-53.71218656593363,-48.514272740417645,-51.99933616394536 +4327,-57.75469415927266,-60.81518316654012,-52.385857578605105,-54.62388380634471,-58.71138680309047 +4328,-47.438920629982256,-60.629799836109136,-57.36390914083227,-50.77514080785468,-59.72084686887948 +4329,-54.07538788931384,-58.770499975223174,-52.430575348207775,-69.68807615382985,-61.96526088926392 +4330,-64.43033717601206,-54.17226660269104,-55.141656696518716,-59.861572137081176,-50.11161148147073 +4331,-48.107847728973205,-61.57343823872734,-54.94965524179607,-51.476727626535144,-62.44529554149591 +4332,-53.43827011221686,-54.28716658728504,-60.11709080535091,-50.64059762514274,-50.53269593249516 +4333,-62.09130189538914,-51.01773774379009,-49.892054159317304,-63.84906409567438,-49.12446685290914 +4334,-62.30183713403019,-64.01191376992824,-55.3027125566863,-58.87338538859701,-50.802689846533575 +4335,-56.77664022439145,-53.77008213606852,-60.21702750301074,-56.33581178429708,-48.459953885582074 +4336,-54.519023964325925,-58.602533570331644,-47.29030504720563,-57.81840867212215,-46.47808644039118 +4337,-59.22326906913867,-62.060561851193235,-60.56413602081349,-60.64915401169879,-55.33223455447971 +4338,-58.09297701211291,-58.43783539495014,-51.35167686935626,-63.382405225967695,-45.97786747628428 +4339,-57.93891578761983,-63.93271073379,-50.898862471592096,-50.64978373673119,-53.1909786783396 +4340,-65.60795844871502,-54.470591796416294,-57.51094398148006,-57.94800561777212,-59.83906390134929 +4341,-69.62844971795393,-57.309939020663066,-45.44548532014071,-54.353249744260225,-54.22143829822152 +4342,-52.94905071377713,-61.862209633845126,-49.15743413576136,-58.88956968693444,-52.840961531073745 +4343,-55.51858927831887,-65.12496005036247,-55.47340176029853,-60.43939984498487,-55.25921556225406 +4344,-59.11335569071072,-59.981367627818145,-45.49143671210584,-58.33965385593257,-47.335045080208765 +4345,-59.335311457709544,-58.42200915262956,-55.98888197149578,-59.3585046896255,-53.03365851616866 +4346,-54.434994846857,-52.24190854222588,-56.90415762895496,-52.88014940254606,-56.56279439386681 +4347,-61.94833522557884,-60.99424206130705,-61.88108931511248,-54.17343232460584,-50.515339210479986 +4348,-59.61317748397438,-63.65901818075565,-52.70383101942043,-59.49591077228098,-56.22627247746972 +4349,-64.43006676431578,-61.13651409383459,-49.343018860361816,-61.94337908358448,-60.76654282107706 +4350,-64.03452409961706,-55.265108950747916,-55.805715216542794,-50.704642778405166,-62.72027336464182 +4351,-53.27611640033156,-55.773425017495086,-59.17380792964483,-54.81903050714981,-65.99039532599049 +4352,-55.16650147933053,-60.39500154419047,-53.10296706380645,-52.51272030621907,-51.17030949329865 +4353,-51.07054535874646,-59.51908448843172,-70.25897554204805,-49.48234312042333,-70.39502883315751 +4354,-61.48565795264459,-54.85216162647645,-63.80773925330037,-67.14668449276363,-57.76143267594471 +4355,-52.918667006307466,-60.67010858091592,-56.67678569937696,-53.47480627988605,-65.81210994108106 +4356,-59.35964871825111,-53.09764121455537,-66.45297743135922,-56.992025440355455,-64.57961927854001 +4357,-61.40560289233799,-54.81663590091782,-61.87607640716305,-48.861164577382155,-53.67436600258921 +4358,-60.567422563535196,-55.91017374235467,-64.70125345665268,-55.756569564397736,-58.461324591020194 +4359,-50.131544125537346,-54.62707260529986,-66.03517767729608,-67.2845511000841,-53.640275194110714 +4360,-49.190720135887034,-58.77266002565453,-71.28691419627802,-58.45649584859998,-53.45756079451433 +4361,-63.3697217140526,-60.54299524688436,-53.79127640864043,-57.29554877480449,-50.558388094928155 +4362,-54.65206611168324,-62.54801253490891,-53.16920461446075,-55.47510652981231,-61.066159390952215 +4363,-64.67769305087621,-51.55729159110337,-51.55840878553588,-47.8378816562718,-52.440791052670875 +4364,-61.53280818548007,-58.57036874871488,-55.323281780305784,-59.132602058726555,-55.99105105171799 +4365,-51.21460094835415,-57.13372541310828,-57.95990788436487,-51.16694499962839,-60.47830115999932 +4366,-53.69880053527817,-63.62647124542641,-61.28826302473465,-51.171535029200136,-54.3661617916152 +4367,-55.3451674287728,-64.39643671565504,-63.40583636842864,-58.29662643910235,-59.523276355062166 +4368,-49.14373630718705,-59.61087633901167,-65.94255907760193,-62.339346114981204,-47.953601600206994 +4369,-53.23477186909204,-51.99437580256572,-54.07169357546004,-54.923073819673796,-57.8812286389493 +4370,-46.6620401662515,-63.097745931765495,-47.46512700046203,-47.569414540385985,-53.39929413258015 +4371,-53.3669734605073,-57.70504533717295,-51.97026950882636,-52.57536417727553,-64.05680925609097 +4372,-59.054273001978316,-58.58942869958148,-50.98649760608425,-46.04876303540849,-57.481130028077196 +4373,-46.72550448783439,-61.01744720173109,-62.09449969974913,-58.45252705692678,-45.333370168556314 +4374,-59.68633096819655,-52.98204105998135,-57.785203670121845,-62.1741221840115,-49.465772662709064 +4375,-63.192421505475345,-52.19338581761943,-66.52770148100105,-45.39804188462841,-53.78158136057795 +4376,-57.25873930044185,-60.92203354688312,-52.91469633034385,-60.879085680115615,-60.49960372212855 +4377,-59.66383777084692,-67.4193813748478,-50.01213052183438,-66.11026279474257,-51.05850957134674 +4378,-50.98265567026181,-56.63953566514871,-58.63319190948757,-63.11155309663971,-59.09583316242563 +4379,-52.55685654301583,-53.70723813625835,-56.93682034678347,-49.70096599805234,-66.42688690525469 +4380,-59.122971934148275,-51.75816901271168,-64.45924765626235,-63.213290987117524,-51.46237072063967 +4381,-55.24959180522108,-53.380588819912184,-61.2202181664957,-55.59158803940946,-56.29849921594113 +4382,-61.429361214094556,-54.55243812874697,-50.25239241044206,-65.7149851973059,-53.442489658108144 +4383,-53.308835845950895,-60.222626519912566,-48.9357474332643,-52.431142126168695,-62.0260065050834 +4384,-52.66112876085282,-55.50007231292908,-53.09525602970941,-52.347144695310064,-54.485767852555526 +4385,-54.19810762732492,-56.17361967441666,-53.35952283494944,-55.776952837571564,-57.31547306650143 +4386,-55.587546798666686,-61.117230976125164,-55.39862289597346,-55.23136140679635,-51.690088318539445 +4387,-63.10031900232317,-56.37506029823056,-52.36641648961355,-62.60706337007523,-59.52105497092787 +4388,-50.46406394681007,-60.35124492580662,-60.36543727872352,-49.62164480034181,-56.97077096120336 +4389,-59.68925282888771,-65.80984004585686,-55.77369202461732,-60.366178369941224,-65.49051174407626 +4390,-53.242439500692846,-58.853000391740785,-55.74567255700992,-50.403414425275145,-55.6739274054923 +4391,-59.16415869977881,-60.37945310238648,-59.229900615494806,-50.50741110642695,-54.97003268912721 +4392,-54.36483567565486,-63.808778680012445,-52.40027702238772,-59.96767311219299,-43.554321014916766 +4393,-62.41689234151304,-51.73423430436448,-43.73352404965161,-54.60718843976681,-53.826522268094905 +4394,-54.28862544202704,-50.59824931961329,-51.500393376975246,-56.83292198423229,-47.72120252571899 +4395,-62.00491912494876,-56.35802466323766,-64.14625735696553,-51.5781465976684,-52.26822467585705 +4396,-57.457709906024114,-58.86585122479868,-58.997080311145766,-51.93494234448726,-61.64786673750893 +4397,-49.91990795952131,-58.52520675374015,-53.728486986831015,-60.167772347049166,-54.207376499122084 +4398,-54.42625392290772,-61.559085556397655,-57.22069792556395,-48.72510313149921,-63.69225852330946 +4399,-62.42184546209539,-54.73799671673627,-54.133583883575625,-63.093315031185746,-57.97535860145128 +4400,-51.50056245394194,-53.279210758485725,-60.61134138157923,-50.4551930904609,-49.81617965130622 +4401,-52.32525499618906,-62.51162726659025,-62.57816436810838,-42.8960113299876,-62.872076543814615 +4402,-50.98558189588918,-60.09244940546577,-65.99377114803349,-61.98541730341215,-49.27791491280119 +4403,-56.65000595959495,-45.20497448500916,-65.13891030578907,-60.482474185932446,-52.33764622000032 +4404,-50.99705624394686,-51.783041999454056,-53.98860162291198,-50.19654128346869,-49.92036768263591 +4405,-50.86165937471039,-59.15543054226315,-47.006979359264115,-48.0587758853717,-52.08067198269451 +4406,-56.02937677441482,-55.19086976792611,-57.54065382894469,-58.54401716934227,-55.86087419137116 +4407,-58.16378544677257,-54.190875429434016,-66.33499279340838,-47.600855426381464,-55.64118403939477 +4408,-54.43079896852697,-54.499937625438,-55.31993170180815,-50.07666446432996,-62.07591084761004 +4409,-63.062577511990405,-52.94125904237813,-56.16624122728958,-60.401107776196824,-58.69821496305506 +4410,-52.91661505301899,-47.71749210200628,-49.04195968489392,-53.91238086444088,-51.33006674315575 +4411,-54.12123228332322,-58.47250545917225,-57.13193737777053,-55.1193447522124,-51.905503461075185 +4412,-53.26812164758486,-48.30356547083562,-55.531104503692525,-61.877547590322095,-59.303403687146414 +4413,-46.908490081758124,-57.76451591573176,-55.49684232743855,-61.10108063360298,-63.035653095406836 +4414,-52.049121444303914,-52.700868677442486,-55.32047915343121,-53.99994950483153,-67.13191865324018 +4415,-54.22445865275424,-56.63934481271266,-59.93662052487286,-59.794841156651586,-64.75012582628602 +4416,-52.69675646359706,-57.82844285491815,-56.7454029359607,-58.515252062086304,-55.23444915681296 +4417,-54.05827974662579,-59.61198363517238,-63.37721674882476,-56.7304237136171,-63.19600942343056 +4418,-49.87280194772764,-51.018784576875674,-60.281724350513,-59.21675071851719,-54.12137432014634 +4419,-58.24523995825921,-59.93853381485019,-59.53000150915959,-65.90528572618076,-60.920072433575456 +4420,-55.05108752594203,-70.63461725797814,-48.83660355185404,-56.13376261125026,-58.416307376727346 +4421,-47.786126453825425,-60.49223215738164,-49.14066088174851,-59.001077907849606,-56.812271348949075 +4422,-54.43014493457218,-56.23476487969599,-52.80786307454725,-57.97023347957422,-53.91378357354861 +4423,-55.921761290683776,-63.46723951077622,-49.777388267929574,-63.79682692995882,-51.798749728797006 +4424,-59.945924739384004,-58.72332624118943,-58.41350357526854,-48.626001857772266,-56.08815843542354 +4425,-58.37881234529736,-60.377029317246766,-56.127217514494255,-60.32341425508583,-46.729942738866924 +4426,-55.99939146868031,-53.758463956767045,-56.10161445820088,-57.02729955040053,-52.84264268719373 +4427,-57.71884806929589,-59.2326528087016,-58.28695658143287,-66.91223335859857,-47.53782183504319 +4428,-54.08812601711887,-56.95019259940271,-69.88113669192055,-48.71773330442208,-55.68513925765247 +4429,-54.342850793277826,-63.549258775016405,-51.007335977615995,-44.622102023897924,-59.0502182456155 +4430,-50.66218440978489,-52.15055152836825,-64.75883140126355,-65.893645563757,-47.397791075224475 +4431,-58.53605007802162,-53.57401217251517,-52.617351288147404,-56.116730609260664,-60.930160309403384 +4432,-61.376646829221244,-59.97286688746897,-58.75932702662767,-50.85067179440831,-55.35558470648178 +4433,-50.35084163531257,-65.20882455399581,-57.91212075730151,-53.80228799064797,-55.20001866986314 +4434,-49.155083876153576,-54.00977048476108,-56.93167264690527,-61.23937897193304,-49.23044725376505 +4435,-59.69956206165116,-54.805476773837405,-56.076974511248366,-57.99410309669424,-58.365501477668765 +4436,-61.87623439036865,-51.6925889997146,-58.76045319315992,-64.29000574163626,-63.2026242370681 +4437,-54.9120421756239,-62.84940232373187,-55.152633780493105,-61.79447300183088,-52.679017600481146 +4438,-47.1781216555879,-52.693620589999576,-60.317670960890766,-62.42196405196548,-48.65288813281833 +4439,-52.97386280615659,-57.34118768904112,-63.029027090123385,-52.88364873974447,-52.376159547104784 +4440,-52.239875571513636,-52.14640648937268,-61.407339489624476,-61.82891399893803,-49.09065807072697 +4441,-57.300077659442174,-57.68335961797543,-57.4287534444886,-59.15539713584971,-50.643686810854724 +4442,-55.31898630063191,-53.210009883979176,-56.595460508853286,-49.53666154198296,-55.09410808045733 +4443,-62.30814372550631,-57.22642095441923,-53.29061063067395,-55.15850668415873,-57.26978847216434 +4444,-62.268605489711476,-56.016833219177116,-49.702965630029226,-58.083757995259624,-52.85068522682781 +4445,-64.34371194550252,-57.056224146752676,-61.77042640696481,-54.831689549133685,-60.683292003449466 +4446,-54.55692580636738,-53.280233828194966,-57.17431030558012,-63.47452143157218,-56.81225050797863 +4447,-54.75592359552024,-59.573701228449295,-60.164182253374,-53.73301778998199,-58.15469888781198 +4448,-54.70284194481668,-64.6593953614274,-62.22319876178376,-48.90808616877489,-64.50025934565952 +4449,-56.473163998040555,-57.9750041972813,-54.59049394402322,-55.37191756736404,-52.26925470878061 +4450,-49.539729596148355,-63.90662827652137,-51.547704165981905,-61.77114610141216,-52.287108568945975 +4451,-51.442880844198655,-63.03466831965508,-51.87606722041421,-58.84500653242141,-48.338663228898604 +4452,-49.85377413252395,-55.265942003939,-46.440882015979774,-56.43729074582401,-52.46842176754408 +4453,-67.03240857276057,-55.22749522398548,-61.13061025216397,-63.78603504712037,-67.00723750352228 +4454,-50.00667483044294,-49.421072676498454,-60.958232812953554,-56.726998800978755,-52.258913399331774 +4455,-53.39930942379093,-65.93494182672667,-58.84094592635487,-62.93388756313667,-49.80203488629648 +4456,-66.6356073910457,-53.73560633004114,-53.90679989239575,-64.15422587875453,-59.44775732144432 +4457,-48.12399837703226,-56.2096262999164,-60.32276551513791,-49.89004828986617,-54.13013109360511 +4458,-50.1299695540699,-57.978430647758884,-57.899285749506774,-60.02032888590829,-60.46312556219673 +4459,-51.63626399867086,-47.17156962350861,-57.28224997110041,-53.334723737651366,-57.81996144868047 +4460,-55.80991555742949,-58.84373905288364,-54.901527802720146,-65.84117801046477,-56.81241096490438 +4461,-56.5677607350433,-58.408792560448035,-54.62499179276002,-60.544945893472,-53.954260267709635 +4462,-60.12489593692098,-51.622244457776866,-52.407978706641885,-50.616408626439366,-49.07556219711928 +4463,-57.55574937782611,-58.359998322349405,-58.1532985538614,-53.303640712768605,-63.9619714962042 +4464,-65.67160995954012,-59.75328492887701,-55.011952479838804,-57.12669146386059,-56.51088190175186 +4465,-58.0655627337778,-52.84776236427147,-60.75295154040288,-52.768378103618865,-59.108015473701954 +4466,-57.17541100132753,-50.476736037010326,-54.8093205687932,-56.762533521683984,-54.135475584267645 +4467,-53.7361173732278,-61.07506238242617,-55.14005629032238,-53.2349077652673,-56.012872626080366 +4468,-56.741170201096956,-51.07366158761671,-59.82293508480926,-48.878529818225196,-54.23065941009799 +4469,-48.55040448672841,-49.546680454563635,-51.652741198426945,-49.12395865393225,-49.339524171265694 +4470,-48.68489239062725,-48.35926559031141,-55.1452160126659,-54.141807883329335,-57.84114616425911 +4471,-47.28911219058193,-56.3023083346434,-50.60722235664758,-55.74431908062327,-46.826167710973536 +4472,-55.77552140464626,-70.96553878729826,-53.37331732934474,-59.348462865012664,-46.67273358774876 +4473,-56.5540398685089,-61.84981322206322,-56.502950637190594,-48.82522516705828,-57.907863122841384 +4474,-55.356036794701055,-65.35528546332547,-54.75902984759713,-57.15693067859037,-58.189731744880255 +4475,-46.34855764884091,-60.5980271855622,-56.116652609633384,-54.675030922753976,-63.12039751644787 +4476,-52.53226087353537,-61.93554007474192,-49.98563295279671,-60.712103845032956,-58.47384885681868 +4477,-56.592660936322154,-64.00191370443913,-67.28569624945675,-51.54902889753179,-54.1806636368661 +4478,-59.856840149014694,-56.00110955542268,-61.24154821821513,-60.62836747732146,-62.258668743502675 +4479,-53.63408466405688,-57.49923262909876,-56.07115970196711,-54.41580797166399,-52.16696034006236 +4480,-50.60337089235002,-63.835428995270206,-62.33910265129886,-49.05814383181307,-56.73567590810398 +4481,-55.62366281977087,-57.41999038366612,-58.64796405436629,-50.246158578619585,-52.60409052490907 +4482,-50.957229151591015,-54.06866421190604,-53.61909108361823,-58.480663762114574,-51.292205480270816 +4483,-55.75286785841283,-56.10273613183617,-58.49163180991579,-60.85459518532333,-62.15263501771481 +4484,-58.871331162268454,-55.87710587786854,-67.04221349347922,-57.744636211702854,-62.03094916803173 +4485,-63.710747625259856,-56.56142782134987,-59.18308150434347,-60.49095523650766,-54.76088501229252 +4486,-53.5846143940808,-50.458185486868466,-61.122918709630326,-51.437111546512114,-59.96785636459492 +4487,-45.83644290723003,-50.59537727368893,-53.34843865352329,-54.55985941480525,-52.286240084805996 +4488,-47.88655694755585,-52.261101966612244,-54.95320721643476,-58.764328397259455,-57.07869299312839 +4489,-60.48797611860085,-52.872813831932106,-51.65694810368614,-63.92624972465333,-52.56333415024013 +4490,-64.29491601764535,-55.09568517245587,-65.7826818613026,-61.96148896418202,-60.01818673540909 +4491,-54.312551228132065,-54.04835599709267,-50.70938144227306,-51.81552586586096,-60.994397582568595 +4492,-49.93873536702359,-58.93666999042792,-67.24432013076508,-47.79872727509267,-56.527222639229144 +4493,-61.2548914198274,-59.86485761307441,-58.14197298249669,-56.64387643834646,-62.424661644866916 +4494,-51.81811503664137,-60.86622438147694,-55.19336803126467,-49.83316000151771,-48.638201264654974 +4495,-51.145178753145466,-54.20470108207363,-67.3467462731152,-55.37669978033121,-58.62912218792847 +4496,-56.510114978826415,-44.623746434570805,-55.32754439698084,-64.57788536204957,-49.656059645515924 +4497,-51.36626193478279,-49.9148171920155,-62.521339771271904,-48.26569108796642,-58.74930959967938 +4498,-50.1850214915555,-53.840132184309184,-51.0316675282717,-50.499624009686805,-52.09859547784269 +4499,-48.51285563775856,-52.35129670080277,-60.06597362144024,-67.15848034071915,-50.90064406205177 +4500,-47.12527151769456,-54.25899346849389,-53.22912565987945,-60.48524536174086,-62.35222687907431 +4501,-66.17818531575897,-57.09966634481933,-54.56016541141073,-61.58104910385624,-62.98404794707308 +4502,-57.64049116022656,-55.67714958863725,-54.87938512189859,-64.55987435834466,-51.3080520417741 +4503,-61.98491956439003,-66.16442242371922,-60.85010193408902,-63.06179613855442,-45.95227112528699 +4504,-49.253045489438826,-50.89988372075685,-65.32933895326912,-51.35021061173139,-52.384634282468895 +4505,-52.108189969916104,-58.33400754440392,-61.84054526268376,-48.16330107830238,-46.404460234400446 +4506,-48.877744318683256,-59.755348259823855,-52.98460444117738,-50.23150780731798,-50.23256838099272 +4507,-56.43536989653992,-50.799368008389855,-50.90965383835548,-54.64590895098488,-57.060463339386864 +4508,-51.68933303593575,-51.97006565396377,-52.631239567002545,-51.02658438733946,-61.98244427726295 +4509,-57.993584445039104,-51.82401990190962,-52.60408087728091,-58.69980382820593,-49.70515373115113 +4510,-58.23900298865709,-57.057344344534165,-54.24289044401572,-51.61699909339099,-53.37296213901442 +4511,-55.720076963069594,-53.7621389573635,-50.9314135639436,-54.36606737100913,-56.31515874623785 +4512,-53.42039312420065,-52.50788110692867,-51.078158394002074,-45.67043604676434,-48.27435698576414 +4513,-59.058809938470944,-58.80483175530961,-51.60427879488011,-64.69707363547019,-61.59187223016204 +4514,-54.78143187909345,-56.48729087199974,-57.67919690184953,-63.90338182688805,-48.12249858809719 +4515,-62.66990137503865,-57.51185466406144,-57.38288697187303,-46.9020480862282,-55.31498401452045 +4516,-58.53630322981347,-60.47900324985319,-54.368903262285215,-50.977895542822644,-54.10330481171715 +4517,-52.28272958779945,-55.17662770793932,-54.93346163946225,-57.13595925523224,-48.5904726311462 +4518,-56.4545473177145,-50.90986727137936,-49.723784295277156,-59.77792918515745,-64.5526252025444 +4519,-53.71206722585132,-60.37003885302819,-52.03306602143359,-60.59364306279869,-60.32381200697158 +4520,-51.386630026703656,-65.93279377596346,-58.38821500672576,-60.52854211060976,-53.8876282878797 +4521,-52.26314110017949,-53.189597209102615,-50.25888081399384,-60.017169493426124,-62.32708377990371 +4522,-60.21266243436848,-63.74849622937199,-51.22824209315285,-67.96530530086932,-48.442907039354544 +4523,-58.11649363696284,-55.94260070448147,-61.23018842247854,-54.60186900868641,-64.42561397722622 +4524,-64.56784643491412,-64.66589175997899,-60.43320102558007,-57.74195426211145,-59.868833115049114 +4525,-54.363342885457186,-58.92300970602696,-57.99409507921969,-55.83300240699648,-52.9632023528261 +4526,-63.930957843965366,-59.673360444750294,-58.63210525762629,-60.566454278642546,-59.737584409855685 +4527,-50.946265841344506,-53.407502018048895,-54.578590857847765,-48.72902771455937,-48.190570764708546 +4528,-57.24415425198735,-57.75548910059062,-56.37318147552088,-49.83388947665078,-50.899906039685504 +4529,-51.70635437632932,-59.991947218430425,-54.85543860237608,-60.97567151671362,-42.84981500234723 +4530,-52.41174635993006,-53.544832911472426,-47.58961222794008,-60.168966532762,-46.66856454111305 +4531,-51.12644576625915,-59.135841307488576,-55.89970069998688,-68.29902453002785,-46.892127916938186 +4532,-57.95918623935775,-61.455596139918626,-58.584703703771346,-52.25259216711133,-52.20336220981415 +4533,-51.6261491471526,-48.86228899354384,-56.989142534749575,-68.35008561647925,-55.143664424424934 +4534,-60.37375014163934,-48.78110974898316,-50.83675595357226,-44.73825090701594,-50.5645413830057 +4535,-54.12837585259071,-49.58999719824612,-59.821517730542865,-52.9654524195274,-50.44067597863875 +4536,-56.1304651479217,-48.32849402169226,-53.31338627832027,-53.50659685320828,-56.552772448995825 +4537,-49.32427820215401,-54.95745443081651,-53.24676177512116,-70.63604081520201,-52.008667844637515 +4538,-56.96211918546055,-50.6461380189812,-54.26623299031091,-45.09918535375823,-47.68897641380234 +4539,-48.702112709304046,-54.473344925402465,-55.51478481671131,-49.68845879853214,-55.5665384674856 +4540,-62.08326758828872,-52.43193471539333,-48.94857023380109,-51.61038362678827,-55.38741056021201 +4541,-51.48913983804476,-49.703623880667344,-60.45280854372237,-52.985890375652374,-42.61323111747044 +4542,-63.54716507153729,-52.45997238167474,-67.8808417725647,-55.80059484530982,-55.405747636283095 +4543,-52.046619050155456,-67.49749801571507,-64.86906313052215,-59.680958704007146,-53.7718814705185 +4544,-61.2295554360942,-57.91011591369086,-52.53562753896159,-61.12428288680149,-55.65300829338161 +4545,-56.99349295034561,-55.835620892730596,-47.491346459581784,-60.586123835738334,-67.17130448342773 +4546,-52.67061616750809,-58.40529782565692,-54.48679287835217,-64.44624111922842,-56.55077180081438 +4547,-53.33421518457229,-48.96043718720608,-48.82637089687561,-59.58025635576764,-50.530309678898725 +4548,-53.64839526765561,-47.21033761923724,-62.754828264595915,-60.954068996742556,-60.91049609039697 +4549,-57.375293394342556,-57.29824417685837,-54.973646859931016,-65.16470302102451,-59.152787963682584 +4550,-54.41664850627115,-52.510373632116696,-60.226179653398916,-52.14859071847423,-56.23380051754731 +4551,-62.72061315015919,-50.01596088051529,-71.01882681341638,-54.075861281675664,-66.29097389430963 +4552,-71.3954754233153,-49.189635123783404,-55.08851357514367,-57.578821376167596,-53.3377387651326 +4553,-51.5623186348727,-53.293086886274004,-50.39456114995377,-49.18158316680461,-60.44317783274397 +4554,-61.8840081656701,-46.28296586823458,-62.072328261315526,-45.796999715912385,-57.56565781938949 +4555,-57.878596467301726,-53.726010724693054,-59.06483789945091,-53.16281938008429,-53.29334404953076 +4556,-67.62522461566833,-52.0374967754556,-57.579022584292986,-51.431069106740246,-63.28713511934892 +4557,-49.716402967025154,-61.018601627655,-57.95777765642112,-57.946347821013426,-54.440296613254596 +4558,-57.03663454782805,-62.954567712683044,-52.24633188182673,-55.31155936253179,-49.27903192882284 +4559,-58.42998834538286,-53.6041690090109,-58.94942045155578,-64.24297468658027,-48.680256672451605 +4560,-51.05265599600482,-61.17135492692644,-51.776444644259946,-62.62018768550891,-56.9578542657981 +4561,-50.40085529327439,-52.37445190485489,-51.862931593916365,-47.629148034401254,-54.61916241386951 +4562,-50.121501852828196,-49.98725085204966,-53.74563140510117,-46.98373192164359,-49.901999344714476 +4563,-49.85065852291308,-48.415738832366166,-54.143526370626866,-64.83081741391196,-61.07912781897704 +4564,-62.59738640990362,-49.3963678025429,-59.12024030294208,-72.8423256628343,-46.134666559013645 +4565,-61.77556819891614,-50.1544938868351,-52.32080821664607,-67.05363618529894,-55.61037104913553 +4566,-54.70709759630701,-59.9181435364936,-49.43619548431528,-68.5923529434851,-65.32651857869634 +4567,-59.60652380918653,-60.57930991786473,-62.87717100625275,-63.891176090786914,-56.746710549471054 +4568,-52.48341629363202,-56.48407781877453,-53.198649035776484,-49.68478612576016,-57.00270728882287 +4569,-61.79910131761772,-53.86742222060331,-61.53945869743846,-56.63631368942604,-58.20343423318792 +4570,-51.82027743570761,-59.403822193466446,-59.94181175444507,-50.7000424122095,-55.24752614633428 +4571,-55.92305439317606,-53.82822269465434,-63.401533851582926,-59.41244308817786,-61.60935103372937 +4572,-49.542266398979855,-47.36647046971519,-48.19753678411888,-53.3324010487658,-53.14277057069408 +4573,-49.06550575166322,-64.4100233845431,-47.33424207687362,-64.77027485886144,-50.86920726904342 +4574,-58.62037292596595,-69.80405427066718,-56.7757726163145,-55.784798556588754,-53.51401876719927 +4575,-52.47253667286299,-50.31423213779931,-61.15320824605664,-58.5008992421947,-49.306759453569335 +4576,-50.812423346514514,-55.06429245632659,-58.408016814641336,-55.27588946149129,-61.294415555616816 +4577,-65.38507619218436,-58.92992663771446,-47.63854580788962,-56.36841075894816,-46.53464530750623 +4578,-48.66391601011482,-57.88360208922493,-52.95108974615908,-59.46756756844591,-54.85820611544167 +4579,-58.02465436014628,-48.58214539902657,-58.49880415227942,-62.49478033404606,-54.148952786562006 +4580,-57.92503515774599,-49.77696751436423,-52.046082072884516,-63.575560735610324,-52.38382183864666 +4581,-57.05174076445223,-53.7144265082342,-51.08435546336137,-56.947014439685844,-45.83004547669837 +4582,-57.27845589569862,-61.43708117866373,-54.05235606928001,-49.92717532775145,-58.955417515720754 +4583,-53.2851598032829,-47.93547713902158,-63.13525427706347,-60.44404076623254,-63.52769661567535 +4584,-56.788977684700924,-50.76588896196811,-53.81183114799987,-52.04974457513159,-61.57531745452717 +4585,-56.12763359433926,-56.077278319020394,-50.59679356163079,-58.70904829594344,-61.15163897454327 +4586,-63.93102129005451,-57.56481032341576,-62.27215076656849,-51.65789667401461,-46.52970904401984 +4587,-59.626014569441985,-65.05186031199321,-48.69687693585076,-49.28034239169288,-49.33837332537833 +4588,-65.76828282636491,-59.89960176047901,-58.42749092723169,-48.97662631873989,-61.02347906773924 +4589,-54.81677100632387,-56.61878072378599,-54.82286747009041,-53.56460439291168,-48.95480293582217 +4590,-55.95652971962959,-55.81902553678377,-54.644250210932064,-52.42100646634925,-55.24968036593631 +4591,-53.584688888279466,-61.648062739392344,-54.60327313998824,-51.21407596721266,-57.756419860093686 +4592,-53.05375037366004,-55.40416405039675,-59.44823001149385,-50.78061164486714,-52.646350118099754 +4593,-51.03220638752707,-52.26740021801682,-51.86548056197041,-51.59593709321198,-50.755268273486536 +4594,-57.84254720272638,-59.24891409324186,-50.601142748069485,-51.733748910435935,-59.0301829102451 +4595,-56.1977935280542,-46.9455650661416,-60.5967248447674,-62.3048365473973,-58.48754608902797 +4596,-57.347487194225515,-53.71173773441619,-55.53004381987366,-50.471921813205334,-53.01752082379452 +4597,-50.946224411248835,-50.852876976131114,-58.81083404706658,-53.83350723755252,-49.319551755271995 +4598,-53.21956153984576,-57.49400204276163,-58.36938907234028,-56.90612038689885,-58.27231091399184 +4599,-48.6125541116876,-51.80492531261908,-58.12097675174178,-57.63046166333436,-53.11226511256053 +4600,-58.84516018950436,-56.46139808154275,-57.76217233291729,-58.15820632661175,-56.26909098646395 +4601,-50.58937471263749,-60.46254328314577,-61.49668038592901,-63.03411396443352,-56.29529361059987 +4602,-50.446336477654675,-55.140259244381866,-72.41991475930716,-61.069980658714925,-52.008754725306076 +4603,-52.33960661472591,-47.323511823930204,-71.29794924677921,-56.02586838744191,-57.25529163658766 +4604,-48.60144413618642,-48.89688182363543,-59.93527514365082,-56.37671415128214,-59.144344966888866 +4605,-57.51368876994338,-56.60466888000534,-57.071750574783174,-51.96155088132625,-60.34915925321382 +4606,-48.49242960877049,-60.39297631138225,-61.010657322066535,-57.12904247548344,-55.74270470565972 +4607,-54.05500073682955,-47.30457797238406,-56.28889854035621,-53.79021727306437,-58.89274760622553 +4608,-53.635547248699375,-56.177170082888,-57.4543119715681,-54.151889844956195,-59.03860625373967 +4609,-59.92903841480313,-59.44506166129719,-54.64854351062491,-50.959860315099135,-62.02088751046817 +4610,-49.58680656107091,-49.70163238918817,-56.47325063526344,-59.80540352659836,-64.56755996773074 +4611,-52.17660400249726,-57.89702429809437,-63.5494958159432,-48.90756949624184,-52.18186674241018 +4612,-54.12578175915451,-60.75255063132032,-61.484794241689826,-48.899629791308655,-55.73708890284552 +4613,-51.15521050263361,-46.7812933783866,-55.60761037359732,-64.0051895570517,-51.561441106924754 +4614,-57.34723712174108,-50.097746941929195,-59.500882111429235,-55.16973152166313,-55.92236912775882 +4615,-65.42447754003098,-47.049911260167754,-50.84494396949643,-56.49859225265518,-51.83747061090916 +4616,-53.17694975480749,-53.25354628781008,-50.35667105341445,-55.276834291488974,-56.34063586366364 +4617,-57.263095687134836,-47.91264961863308,-61.14680132661796,-48.007169865909624,-59.15342192319155 +4618,-61.99497780533411,-47.196636170464586,-48.97081354217656,-54.41348756222324,-56.933183603504055 +4619,-51.34292551370004,-50.889109365376065,-60.61017395492891,-50.10129105658959,-57.066476770077934 +4620,-55.35707411869451,-55.854353861094765,-51.41432720065973,-60.29125532933416,-56.21014693791801 +4621,-54.29507209257622,-59.64102395094309,-63.356319350168484,-53.45225049308557,-60.12077591313739 +4622,-55.50932268677893,-50.11079004152187,-56.5600306034086,-58.21140779515488,-58.58594896654251 +4623,-53.756477304419064,-56.79512560132824,-62.44387877031248,-63.97478223915577,-56.243466439097745 +4624,-57.32734411554647,-48.57335405386938,-73.05145285313853,-58.018451931580216,-50.004242442339304 +4625,-63.11724515192042,-49.689967985363445,-61.031313987899324,-46.15002480420944,-50.07287459067857 +4626,-61.00070637369325,-50.69508498381581,-62.993583278712094,-60.88148775891974,-52.74136284517859 +4627,-54.87100715464924,-59.38257813890763,-57.603645140011416,-60.673029390709,-61.37895235611401 +4628,-59.654504680434,-54.65233143621796,-55.60233208690325,-59.9880746267204,-54.440782637345905 +4629,-70.06387699664012,-52.63342836728308,-50.98920432745961,-60.9879215901056,-60.217436372620234 +4630,-62.21524730616422,-57.34203819601106,-58.65951349727878,-53.6865238024577,-53.015366272745226 +4631,-60.18710054231174,-55.513782169184,-54.90049002842921,-53.678771200328974,-44.94342559408331 +4632,-57.08213951092608,-53.63850223171975,-52.97247751944344,-59.39663051287418,-50.06874972515558 +4633,-57.406175361746755,-51.230821515131744,-61.84184445079738,-55.86646354231962,-55.31740749550254 +4634,-54.44905768208982,-53.69855301457103,-55.760249107397215,-57.13239962189186,-56.21524807707394 +4635,-68.15233821134521,-51.60626547096379,-55.65722059101746,-57.95502423368007,-54.46296463788334 +4636,-56.076022939356704,-44.46536965872164,-57.923034921124405,-58.085760249368064,-55.648447219925146 +4637,-56.1187609166321,-53.46731307832216,-65.25173892012842,-48.26488518111197,-48.31457875394993 +4638,-53.56644618731035,-58.978116088068255,-52.13250143526301,-53.670171584283864,-60.769255241148656 +4639,-49.80888052794606,-51.003994756947996,-57.86339705979025,-63.07638431149247,-52.071468938511586 +4640,-58.38533997535904,-64.54197787972434,-56.101798357310024,-55.10004846871624,-50.06027315218623 +4641,-51.404014868090876,-53.89510973671995,-55.98216264983917,-49.51685861205323,-52.32483836560524 +4642,-61.229959023889464,-62.775209468023846,-59.51873974701454,-63.17632600012085,-52.38478102228599 +4643,-54.46719688088703,-51.748837984729356,-60.00637281215485,-52.324366552164065,-55.13559755696732 +4644,-53.18964166305166,-57.57465807176595,-56.10378670092344,-60.02731110649581,-53.280963782238544 +4645,-62.12096662594423,-67.0778334848787,-55.66818069640363,-60.3753123031122,-56.64493741111069 +4646,-60.50165027177277,-53.2313576024364,-52.76795168728417,-56.66148458619209,-52.893796734488596 +4647,-55.297828335327615,-59.402875033417665,-43.44919830359366,-53.97208505914491,-48.37732247634538 +4648,-57.3852168963637,-48.44045743683848,-56.25735877302544,-64.06737287441064,-53.056607878369945 +4649,-53.76865844879652,-63.248747808350195,-57.71287068977835,-53.272592311006534,-52.400315139724704 +4650,-59.93109264384137,-56.912312824717915,-53.8574210758483,-55.27557297530832,-59.79239241615265 +4651,-50.979284631909856,-56.482881034347734,-63.717958004248366,-52.0408864170095,-50.86970813572576 +4652,-51.394985819923896,-60.516363801493725,-50.4774483467941,-55.95899246186423,-60.44335442107179 +4653,-59.03868671188243,-52.511131733048444,-53.95403478817831,-50.27106788193643,-62.282574414740616 +4654,-63.28807006696216,-62.98616780941298,-53.39048547653502,-59.4392891029308,-49.75358753089306 +4655,-55.77368304750912,-50.74580450686542,-44.41111673817809,-52.959586940874175,-53.00674229475747 +4656,-59.10744039672664,-50.223729364110056,-64.31831458059789,-48.882596437936506,-55.66629132121367 +4657,-52.777341912049465,-67.56446965506264,-54.22903671724371,-51.988912364452375,-52.94712030299134 +4658,-61.4775942754601,-54.11463259420887,-57.711377716233926,-45.299080194460174,-53.33855543099376 +4659,-52.9275438437314,-59.83013425168739,-47.91389677399581,-48.26879994869509,-53.822704524845406 +4660,-63.500652595892035,-51.29046678419323,-51.382969906852885,-56.19721194913406,-55.259710929441425 +4661,-41.89543566507271,-60.723318651454136,-55.88350894548958,-51.62584775870049,-51.15873574402823 +4662,-62.135711379230074,-54.39135209012727,-62.736402090167175,-53.491826399824944,-53.91002053103056 +4663,-57.49176431639323,-68.50966661287737,-49.38531021706538,-53.63260596775211,-57.96675583508561 +4664,-55.85800073422634,-60.13140218443854,-65.72849099938993,-56.815806216540636,-56.59202079628158 +4665,-60.13655427656833,-49.10220970824859,-69.58750805084902,-50.08903651324204,-50.58503801201991 +4666,-49.56169045578304,-53.09535412398061,-54.26164531607797,-51.733083674104705,-54.95321870713959 +4667,-54.12309766388854,-53.163231124493684,-58.28752520556347,-48.95696406172499,-50.41932058273757 +4668,-51.931465783111115,-48.80184647500974,-57.093597711016216,-60.57594605865714,-57.13887623160385 +4669,-54.65911004570004,-46.58885010503305,-73.60241855056779,-46.043861185481894,-52.97762057573997 +4670,-58.79235626786767,-60.3848047664408,-61.67442738468022,-58.82500368862877,-58.2132289937258 +4671,-55.00563822854037,-47.50913635581536,-64.67994722131758,-45.45505999287192,-50.21285096610725 +4672,-60.336947717987826,-49.650716084179294,-62.64288214644693,-49.27523186108712,-61.291102820959196 +4673,-52.51932448873753,-50.62955529110119,-62.69339458269524,-62.11338920760037,-50.59826975459413 +4674,-57.917499085894434,-59.132900631997025,-57.07610364958874,-61.27996441602249,-58.660616644904735 +4675,-48.58715154049812,-60.74063496908601,-58.51628856416112,-56.40899165982327,-60.22061303104289 +4676,-57.20212030101659,-54.36068585849261,-58.020808790396615,-52.858049469254645,-49.878566331283125 +4677,-59.88350853696602,-51.425763394754306,-50.36744560616469,-57.45083295424916,-50.753760491921255 +4678,-54.92500280686152,-51.206255149684814,-50.4932159766025,-63.5447280778341,-50.14190346966116 +4679,-60.83282173506205,-56.12301319993035,-54.19952025665633,-57.604978729882845,-44.96179397242923 +4680,-55.353693282322624,-62.28014461554616,-57.77613584713967,-52.67507750989096,-56.591328115352184 +4681,-45.30985208845599,-60.21606494261472,-49.17915621300655,-49.90225253070805,-52.0727240827116 +4682,-47.73420218167467,-58.804839348484784,-51.10420526766774,-50.60726368546597,-44.118884201871964 +4683,-50.51733047703556,-64.79202363426927,-54.53439139209794,-50.923855623849455,-50.98600134976468 +4684,-65.99519945305225,-49.99681617682159,-59.05942268543843,-54.271947112221476,-43.87434222886775 +4685,-65.60033399456425,-50.28236083931619,-65.6647748692777,-61.21288014869374,-46.68348165113745 +4686,-51.44826556258398,-52.292851307115455,-57.603011096408146,-56.12087590549571,-52.94629792116204 +4687,-54.381822860462535,-50.58040929933392,-53.57943863259482,-60.322821537045215,-53.832340308848146 +4688,-56.531064521280456,-59.41640137986178,-55.288060418760146,-58.81071704470008,-46.02993869322177 +4689,-55.2871767482582,-50.33846176994114,-61.698030203962055,-53.978264857503284,-55.91486073835921 +4690,-59.696718712440195,-61.53149966637371,-60.45363281160513,-57.94340234674708,-47.07974011565637 +4691,-59.398040494262546,-54.57307792379548,-56.109414879199,-63.22324032752609,-52.177684771943134 +4692,-51.16966529268349,-49.530764219116215,-62.33384242920362,-50.467097559917946,-48.25733892296305 +4693,-57.49229661579698,-52.657486554446606,-54.78727606773399,-51.47684905536294,-56.20158996769969 +4694,-54.09015181814508,-49.459591533395745,-59.04300514319433,-64.02549641422725,-52.730179857441584 +4695,-59.5850942965051,-68.62053230160389,-54.40677798414885,-60.367399031569846,-61.53144405566243 +4696,-44.936281423076174,-58.92773264791314,-50.07398276606776,-57.08005136446818,-53.49056260452607 +4697,-57.38642644304798,-52.844788584454896,-49.36904232189026,-60.0789129303032,-65.95454200806556 +4698,-66.20752793079446,-69.70869101835092,-64.99842786659656,-60.04907520558624,-50.06874431840847 +4699,-47.02548442654812,-61.80373878438676,-58.985215898535884,-56.99620677138578,-66.16293593080614 +4700,-55.621960618198585,-50.932729820831696,-49.20849604341642,-50.001766851697205,-48.669767881558016 +4701,-54.06008844107595,-56.50153038607607,-53.26638471342247,-46.63602556025971,-48.53452671859172 +4702,-59.73432348071684,-53.80767645278923,-53.70376213479089,-51.849905095840874,-56.2132477225127 +4703,-52.19605637047794,-60.27644837705745,-59.849906093198335,-52.87694482965226,-59.856115727937194 +4704,-52.084255233183676,-61.739951618386,-53.522384492999464,-54.84964819201487,-52.05190532135374 +4705,-57.17638513365594,-61.91846691864682,-60.278667552079895,-52.914133401049995,-56.967641143254085 +4706,-45.735563868582446,-51.67161383442305,-49.26503379675163,-55.41841909424735,-50.76840390785367 +4707,-52.05910531915769,-54.75001232653404,-62.787964902634705,-67.49555591452328,-49.55856081412131 +4708,-46.074322888381786,-50.11023963030237,-61.24936658749152,-60.693073388621436,-60.010300671853585 +4709,-58.15162918007208,-51.79070950706874,-64.50733511570286,-57.93221724641338,-53.991857533397926 +4710,-61.7448086241012,-52.64816746429141,-63.901802800656974,-57.71474018209063,-53.090564226057054 +4711,-53.22167408695001,-54.37623402206591,-52.44432156147864,-51.7839230834463,-49.847879082060935 +4712,-52.99735075992021,-56.934885640062625,-56.105100025191945,-49.4592053036679,-49.33941179263463 +4713,-51.45314525172465,-53.226229222029396,-64.50912165190033,-61.27936270189483,-53.898461584687404 +4714,-55.44083335244198,-47.8883868176933,-62.984565292928075,-65.59365638010486,-55.519550936346434 +4715,-54.284803959897864,-48.9515590687235,-62.2633638616022,-54.63339612091835,-47.56444772709941 +4716,-68.01971604995097,-52.26810950378902,-51.79476359874934,-53.18912900916923,-50.99517129031607 +4717,-56.7674595357236,-52.82646434135725,-54.94428527012078,-61.31159030918628,-52.705235202689224 +4718,-55.94676546845694,-57.82928441089655,-51.741724411723126,-64.39098444363137,-56.42772729716784 +4719,-52.0929907295714,-50.68199189041127,-56.51122900951852,-63.73203471559738,-46.784294397406484 +4720,-65.78662319555238,-62.21998780632806,-52.33011398630272,-54.491371815400726,-55.56085177740693 +4721,-64.21924649582517,-46.87742536908508,-62.21404694747372,-56.14703451310095,-61.337630949614436 +4722,-56.01937078868494,-55.98946194790964,-45.28234600763829,-63.6260159498477,-52.19380807226634 +4723,-63.49221618625869,-61.40275713855856,-56.445888699845085,-53.405167659367564,-54.45911353599256 +4724,-52.39764825514599,-55.8915019324247,-55.114482169396425,-47.32038694638302,-52.43005251750219 +4725,-59.954009582515454,-63.76148696248295,-47.06474293486485,-52.541274337038985,-49.5536590929836 +4726,-48.22817308191769,-56.52902263670422,-57.76317149819757,-61.11058101738991,-53.0506130815196 +4727,-53.8674304852432,-52.7522735459616,-66.68147235216328,-45.854512952941,-47.35283287724645 +4728,-50.109704890694765,-56.81921237590318,-65.97037657821608,-45.510198741406285,-59.76303640826326 +4729,-49.273053553367205,-51.881486257283484,-57.4585616264279,-57.91859227930079,-52.29659779712128 +4730,-51.66676455309901,-64.90882288965105,-50.55285205899791,-54.80721561160964,-56.999466522560674 +4731,-53.04093220187497,-66.20195791676997,-53.99384416491469,-52.20667323066141,-53.723605989480795 +4732,-50.863713969556,-52.67510399857178,-69.02670612669324,-54.09454865878527,-43.77981691680129 +4733,-52.10373678923266,-68.94241789392696,-61.36612014609823,-55.714981353986644,-51.36738896241479 +4734,-48.61642266266067,-48.393659588016504,-55.96200530881237,-52.373723425875376,-63.023925441009794 +4735,-56.60546904812899,-53.59488030584109,-66.01958675048743,-52.80389959809215,-60.502405835145645 +4736,-59.92897407634428,-58.45743284214911,-47.16548198569287,-52.68221077961445,-63.055754906232586 +4737,-48.73260354538204,-50.45764578149428,-52.768546080446335,-50.68701973820384,-54.32051130640614 +4738,-46.65934308258178,-52.57422594826391,-49.993185936241865,-70.29441886581687,-45.824186677519606 +4739,-55.65981580815036,-52.73602116378636,-68.44379599763027,-61.434432235670826,-48.43446268998959 +4740,-47.49957077264669,-53.370408425738084,-47.46442241187571,-64.70024982646733,-54.42630635303914 +4741,-58.16369266456559,-44.253878273591816,-58.5062098558874,-70.00114993461615,-53.53476294946181 +4742,-49.4198281646504,-58.38413986147917,-63.553984542087285,-58.48957684796759,-62.39033411831132 +4743,-55.21554602533446,-53.995601799166586,-58.50767607097723,-64.44044049194298,-54.04623602587269 +4744,-51.99433833566512,-50.127205361277646,-57.547168544513546,-69.81650841986719,-54.933803447035096 +4745,-59.4723692587792,-53.53031691530985,-67.39574557232669,-68.0934736630839,-51.86920316440097 +4746,-64.7759995599776,-46.958182642099274,-62.637168799127465,-55.06934997672256,-56.383065936325266 +4747,-48.781067133494005,-50.77466659771125,-52.706803803684544,-48.42674158293336,-59.37226145799792 +4748,-51.52874204136617,-64.77369353371735,-47.858423375856404,-63.74764916592388,-50.35737536173841 +4749,-48.100375466025575,-53.47830850407315,-59.76017967402935,-62.355767787829265,-61.86279252586593 +4750,-50.91467126822312,-61.4945530736919,-57.788611575378425,-55.25920125297562,-54.00005427936776 +4751,-47.32466976002169,-49.31627724268389,-60.695446609371146,-51.59302861336997,-48.33126036112238 +4752,-50.94795331144634,-64.52015422207164,-70.58450538091411,-56.4234874900571,-54.260221237992916 +4753,-47.24099127107016,-58.46544851343994,-62.30602167377616,-66.70790340486678,-56.31807871179144 +4754,-46.22635434632808,-57.34693753333104,-63.91875370244002,-51.20926629978833,-48.14998660697555 +4755,-49.71333632666082,-56.89198947592443,-51.66566771047864,-56.61014871462025,-68.62375467018543 +4756,-52.267145801310285,-55.151532836585204,-56.79192658853691,-57.07749893332997,-50.250395784431134 +4757,-55.5924860575613,-48.71352293915605,-57.91263014732186,-55.76681474366932,-47.86887505163229 +4758,-56.09921033265126,-53.292864986604975,-64.93269344998119,-50.97128025732817,-53.02485343578152 +4759,-59.15495880767891,-55.922181235471456,-55.58241708520845,-64.30791759215055,-49.46230955696019 +4760,-58.91692090534179,-62.78285938178746,-55.83286134926947,-55.15461635900123,-50.981120321699365 +4761,-61.09975852367987,-58.37102505940549,-67.32082027747325,-53.9623965741133,-52.91210090938492 +4762,-66.52573059862206,-60.14875807975273,-64.20112671588666,-45.03054597963812,-53.17844820572331 +4763,-62.46597087498492,-50.10992379603825,-65.74077136744727,-54.608236027257746,-57.82829070910267 +4764,-71.501275517021,-54.70051619352809,-65.06636405366366,-65.02057131019343,-52.55818181910766 +4765,-71.5248152959801,-60.06730126978591,-58.19869763422081,-61.33408672762029,-57.175255411554716 +4766,-60.10324681308266,-51.31518119280245,-61.108846344294776,-52.26099756165723,-51.887174933280725 +4767,-56.31306422397774,-45.98195967031948,-53.6031334301561,-51.82562414439475,-54.78630233692638 +4768,-67.47079558257475,-56.160413481823824,-49.376831532622454,-56.959506943778706,-55.84870128251793 +4769,-61.64354912072916,-57.75036464801404,-48.94119191906444,-57.843161601829564,-54.08662054388442 +4770,-52.885199437653974,-61.9510956120649,-53.50638070163303,-51.07176378571129,-59.998083128905506 +4771,-54.86518096823049,-57.27032976710291,-60.34097681518658,-48.66869272078044,-57.190938257428414 +4772,-56.80324062900732,-59.6931409931167,-48.81277116064876,-56.82548632963646,-67.15436594985086 +4773,-54.99671686348221,-62.117789438446756,-50.79040414827682,-45.700863768490734,-60.06001954079935 +4774,-52.851241252412834,-58.25140317289795,-52.61192555032344,-49.93984933913012,-62.65363947980232 +4775,-50.409992430610444,-56.39339576655286,-58.64869826983409,-55.11855515389038,-47.459103605219255 +4776,-49.57047642670173,-60.48786288478927,-55.76765181181912,-49.99382697022572,-55.08601630681232 +4777,-54.829171486687365,-49.94286300356648,-58.25198905228645,-59.38248338107984,-59.85057178260241 +4778,-52.854685365488244,-61.07207065775655,-47.50450127852031,-56.3403446219394,-53.7552202706306 +4779,-55.68406414548541,-62.48279000591442,-50.520074714251194,-54.3569819937103,-49.63085724824168 +4780,-50.502828229588516,-49.35500347282078,-58.06200443962763,-52.43296309054603,-54.11753593430308 +4781,-52.43196124042423,-45.93826003591718,-58.8159376001309,-51.49490403682205,-59.68480911901954 +4782,-51.786914210995455,-56.283814583784554,-47.6929674641544,-64.83124842173778,-51.9358948531173 +4783,-64.84213125797788,-56.246276591729576,-66.42527569609155,-51.37001351393695,-54.00016994603181 +4784,-64.46642240094458,-43.53445805265054,-64.25719878892971,-60.243541513433435,-47.88425919127125 +4785,-47.59810268073767,-56.747819896033945,-50.44813701349682,-55.7547324045061,-52.316420675365315 +4786,-49.49863841445154,-61.874810987357776,-52.086546470183634,-58.90158368552061,-54.582445923501034 +4787,-55.9552154055724,-50.37888914191309,-53.100439558661186,-59.67290990554901,-49.38055475088515 +4788,-54.78914021106689,-56.12847392213466,-63.60291659030001,-51.95484790646333,-54.601490900428885 +4789,-54.74396269330415,-59.63914763702952,-55.81225618062537,-52.78287055006243,-58.56888074294891 +4790,-49.4526763677738,-47.9245076094555,-56.935034349031554,-49.26279078520541,-58.60577609685313 +4791,-50.64534754327475,-55.11382202320915,-49.82492613358587,-57.29270051079867,-48.032727586664805 +4792,-68.74564115505234,-54.831969255881084,-54.17563237712403,-58.78085829151022,-49.21108501525094 +4793,-47.634211197464495,-49.94990692318975,-62.305536081366675,-55.683836662261996,-52.44610985623779 +4794,-63.801450378921935,-47.72891666232243,-66.76819561638679,-51.29690239749825,-48.855666161076726 +4795,-61.55223412398223,-54.343860005648885,-58.93426014085115,-55.794846196357035,-47.61013012279472 +4796,-56.1560352676489,-46.072206440326454,-52.75902496215335,-47.75005870229057,-50.50015396763988 +4797,-51.780021103951796,-45.72801528947611,-48.31400413385242,-58.49644321254012,-68.35407969490944 +4798,-51.85028389771574,-48.84405154027278,-55.96069530493989,-54.23107027179856,-49.70043096158072 +4799,-52.170919736812046,-59.8564650059323,-48.47221054809973,-50.12099963083753,-47.02988476738201 +4800,-51.8435406036303,-53.21916648570426,-59.41326390683698,-48.457654889565866,-50.13005353680104 +4801,-50.32621609526652,-49.676064277945315,-54.014442611438106,-48.15735206394595,-53.41932639534393 +4802,-60.57212826988058,-48.257329780559445,-55.631174370017845,-56.18528933652117,-54.73510566083346 +4803,-49.76528055845562,-64.11132907831663,-48.86580022234693,-65.3586077723919,-60.70903776945851 +4804,-63.50117886245142,-51.815917692113636,-48.5404681637479,-50.802231100918064,-52.24376059901487 +4805,-58.71922873022342,-53.52668248415113,-59.29750801987478,-52.02148718805613,-57.3713879698053 +4806,-60.8362445837314,-57.62545931176657,-60.61526151432154,-47.817316170867144,-48.915997709552386 +4807,-62.80531114110044,-50.75144009104697,-65.91117672942792,-58.605037508098945,-58.40981151721866 +4808,-52.68299432236851,-42.914916861105596,-54.031970223490994,-58.471073509479886,-48.56256010409112 +4809,-55.15955482763222,-51.43201952721067,-60.385758256567364,-56.015583845505915,-55.207545743100056 +4810,-63.17317001532397,-50.166625477798455,-59.55418950976479,-55.004572772919694,-46.43262411238397 +4811,-57.95164408738603,-45.23473864305185,-50.358675316584694,-57.54211917659744,-53.055492137510505 +4812,-50.558785678989956,-58.33130130697454,-57.4642577718366,-60.530060969108646,-49.82505012867046 +4813,-60.01610055439259,-54.354789160731784,-63.824829869579496,-57.08500791900379,-52.6592976410731 +4814,-51.659178844280184,-63.12526606339652,-70.96597336868807,-57.803400230235695,-51.27763450178531 +4815,-57.71114349635618,-58.7975511348842,-50.2205145961641,-54.6537028243068,-47.80470324317806 +4816,-63.84891973241968,-47.88863143137972,-56.278349707813206,-60.037364972229845,-50.58271410242864 +4817,-51.1400501977173,-52.091624731463085,-52.85549717671292,-50.897650260972185,-56.39717620242809 +4818,-62.917843359192766,-50.45699934369529,-62.099074599643686,-59.20758746716155,-46.90356279467979 +4819,-51.05596048362633,-54.484632118439556,-61.915613280415826,-55.402209391162756,-56.26529904947549 +4820,-50.01934416551824,-54.787073842481135,-55.02389538353404,-51.6468881385718,-58.909158171996864 +4821,-52.89772896141666,-49.8202618774762,-66.21306673793677,-50.136541252542294,-51.0480652320046 +4822,-57.62428313804018,-50.02555487724516,-54.63282820666044,-49.9718708608379,-44.62001805900213 +4823,-54.50945150638165,-61.28187292280218,-59.05482039246616,-58.04371729166207,-51.08264707886891 +4824,-54.37354838512841,-60.7162512502905,-60.74636685297081,-66.67079590284467,-55.213829160806185 +4825,-63.90057318587391,-50.70962484878165,-48.02507801071655,-47.77790030908266,-49.34542416542636 +4826,-60.49882518549279,-49.8346319266511,-49.90083731430645,-48.368279086138266,-43.500405428666035 +4827,-63.393008532112106,-54.22215932126753,-53.385617816882885,-49.49374088335274,-60.05888955044008 +4828,-54.441846603097005,-52.56551878840818,-50.94641337446469,-58.464590659640905,-60.520622960897825 +4829,-57.353043169585796,-53.31596906960813,-68.59230213080066,-57.77870223042464,-42.628568469985275 +4830,-54.712929490969046,-50.2858143308646,-54.46651370878016,-60.78308834232809,-49.72258448584579 +4831,-70.52539248133702,-62.9226905075064,-54.80732024454632,-51.31121173522688,-49.62360304193538 +4832,-57.59556880783877,-62.70015127484965,-58.09002793090364,-49.794613526131116,-49.37729654005796 +4833,-59.83434175220693,-57.25456247655415,-60.64498141632094,-61.62165097900598,-49.98234037433251 +4834,-64.71968127801973,-55.692323652220864,-69.35526956167374,-59.75087917290348,-58.29768364398737 +4835,-56.08349203039279,-51.152732742535484,-54.34349912612281,-62.5154050212332,-53.30661165321443 +4836,-54.48865408277451,-59.23785196269385,-58.96115028176905,-52.452692647145696,-59.52554376886184 +4837,-56.64836931635357,-61.825751329166025,-60.36735321434027,-54.147179448030016,-51.76784637165745 +4838,-52.47289737287815,-47.178326800778855,-54.28037884541855,-64.41291958918681,-53.79015672388453 +4839,-55.384444554572866,-51.22020532989961,-64.0077820895567,-55.12906026196975,-52.2871811274375 +4840,-53.255050271037895,-53.95552819550956,-57.00543866798426,-60.01519616685984,-60.28618136529298 +4841,-55.90552193093272,-52.38765018967411,-54.79235598805181,-55.87058974767293,-56.25997536317938 +4842,-46.214952382910106,-48.6953866988285,-54.48911318292553,-51.63944278560285,-57.63929762148302 +4843,-48.6779277929366,-57.79562356055464,-53.1073650066131,-58.88719780603752,-59.15950175601696 +4844,-55.134673385764906,-61.22352022189453,-59.49783397871899,-60.19873435354933,-49.87510161708844 +4845,-59.274412199141786,-50.26271866016155,-60.67287534814476,-55.837475254486804,-55.188494381092724 +4846,-61.46020787217874,-52.78275174934138,-49.00449537953953,-48.87762493452347,-52.94381352272408 +4847,-54.39621398203886,-52.46296085631411,-46.7775946134331,-45.47468398863964,-56.1835940585351 +4848,-49.11750374438542,-50.83556516519865,-51.46602988139472,-56.84636863613544,-52.861942180432784 +4849,-63.49364405878293,-55.20156024504304,-60.22557745160317,-49.67874343263259,-57.994509271129374 +4850,-64.23789409747545,-54.664380481227965,-61.39156155335753,-61.463268596360244,-44.522383349365505 +4851,-55.07325937158753,-54.2190455631953,-53.75230357743372,-55.31874818226955,-59.10174706776193 +4852,-46.60701039153885,-54.82100270406139,-47.02912235449904,-55.72346168752696,-51.88496619909505 +4853,-54.19753526510436,-59.75342390872056,-54.972183568843505,-49.31440188232882,-44.95143041458081 +4854,-52.92404021675663,-48.04019897112984,-58.624764540267435,-51.59143173358202,-49.76003674906063 +4855,-60.35149632711019,-62.81000893501166,-56.99892065646899,-62.34803497634272,-50.47880732148243 +4856,-52.309373783030566,-55.073948011871906,-55.6904832508392,-47.9134499075916,-46.5182562353346 +4857,-56.9338064112383,-53.40452108264869,-60.93338152721686,-65.96287134158383,-42.227951625982655 +4858,-61.82280096072016,-62.29626215821552,-54.58006977381698,-65.95104548778056,-58.70174334864978 +4859,-52.91285927658691,-54.75366112071056,-64.47770166564813,-54.59350511303642,-58.5806761297056 +4860,-65.64659957877396,-56.232025402245085,-63.44310931438392,-63.938668938210874,-58.46669554237862 +4861,-50.59555169890347,-57.84483532933031,-54.57540276773162,-60.19181735072984,-53.418995135543994 +4862,-63.70340071609721,-51.030322502870995,-61.77608760942805,-60.51029975636484,-51.4578669366962 +4863,-56.348763317682234,-54.136298175300546,-58.99481049219067,-63.98831839064457,-67.80199941715226 +4864,-64.32849111932322,-55.6516325988461,-49.5859407410581,-67.88776320927107,-54.32821972808106 +4865,-48.2011064414437,-46.05289129661364,-42.84041156289193,-56.285530336470394,-69.93291565619768 +4866,-51.208680565646176,-55.579511635464534,-53.89127010770866,-51.8031208231944,-50.85003241807414 +4867,-51.7012802225717,-52.95289689107065,-57.685346744669445,-52.58696018810735,-51.071019443899125 +4868,-59.31916625198996,-55.354943572058325,-51.603282101326954,-63.029103921530826,-62.30326356041552 +4869,-60.66087443798831,-51.28497391493065,-55.55592914755872,-53.89725154292281,-57.80226039761806 +4870,-55.00998910978311,-61.70923011998344,-59.16877437746229,-55.133568174107104,-54.31320201006732 +4871,-51.07791309748214,-51.368266480458004,-47.912539489532364,-50.877593620046184,-58.955653836911566 +4872,-61.81934713047509,-57.5100669649656,-53.834283756446744,-60.83562500307249,-51.980942111952636 +4873,-59.66419558242494,-50.543066705633734,-51.76257722963605,-44.733927195044835,-45.70967529600202 +4874,-58.85966037219896,-50.816567549077924,-51.8606683483318,-44.28491937584439,-53.187485815060676 +4875,-65.15030649133246,-49.52027974322014,-62.54468610023555,-64.29607776344254,-57.111639469153005 +4876,-53.4440615979425,-51.06810838014498,-49.05284969701852,-55.84414376846913,-53.68211977648011 +4877,-52.948409980696,-53.83720064094754,-67.09234849238294,-45.50226999179811,-59.42167716377135 +4878,-65.5464329489064,-48.667790765433224,-56.018086134370876,-56.93809879204432,-51.85253737420796 +4879,-54.71230196062251,-45.926530861949516,-62.0567004001183,-58.287077825579054,-54.06659255656513 +4880,-64.0067574212581,-56.272863148941,-53.06794394554054,-45.855735838277965,-46.19669495863309 +4881,-53.8018353532864,-49.62399190148037,-48.64297022090047,-51.16666072344258,-53.32259580772189 +4882,-63.472582183940645,-54.00444505088851,-55.75127431766558,-47.812270747136886,-53.645262103111826 +4883,-69.28647359803303,-56.15717000510661,-57.9471814301262,-54.670395081070915,-45.53786701930501 +4884,-53.70357787425967,-48.74768000641329,-53.39403892139427,-64.19016408617189,-51.565048264942135 +4885,-63.48036248919752,-61.85122963285763,-53.838637186506176,-61.12379796614667,-54.63972660838341 +4886,-59.497239795783976,-59.18568906165112,-52.48081848866613,-58.605365404812275,-51.50025735393325 +4887,-57.216111705334306,-45.57406127820832,-54.44127216698621,-60.36755951773717,-54.96471324188038 +4888,-50.67993166655018,-48.74697503930332,-56.058693586900255,-48.506165921373075,-51.373683085431345 +4889,-61.17882881981691,-55.602233538015184,-61.26225974035992,-47.74517732079092,-59.50447898277532 +4890,-50.26520736873863,-50.17525369134857,-58.02241666260725,-43.33566981844299,-51.46039260786804 +4891,-60.02776937333814,-46.776328542321785,-62.15921971964398,-58.31259501440466,-60.310031708730676 +4892,-58.767173378270535,-46.5324812842756,-57.69542838935,-50.38130366307084,-52.5749060949135 +4893,-50.1435569064588,-58.660312177592466,-52.07348595439936,-58.85085829685991,-52.89182422846871 +4894,-57.533653142270275,-60.993220567212106,-65.14076607689455,-55.718561661164365,-60.632123494745684 +4895,-52.0282247798105,-54.30670888078254,-46.24479693210088,-66.55825535332019,-56.96194664774766 +4896,-52.14289373239846,-57.973391312263566,-58.15035783496405,-48.07062337143913,-54.27586279030722 +4897,-58.101252177287805,-53.37388925745783,-59.40940203023188,-65.01446086078775,-54.81095831367491 +4898,-46.90302173554809,-49.77747161364267,-53.39211171011924,-57.673622739311725,-47.481310793487424 +4899,-49.921209065919065,-59.59331517513128,-46.00086398896399,-55.27372543961189,-50.73218905289518 +4900,-63.10346673217905,-43.70672806671125,-63.38911814468469,-52.67018507822674,-52.700226189490294 +4901,-46.04809668777024,-55.050957741701836,-45.77815097158745,-48.598554846818786,-46.15452881719444 +4902,-62.506010964817406,-55.97019286554916,-56.168491728533986,-61.6617744759634,-52.790946494972495 +4903,-60.70570727099369,-55.447859245828425,-46.8378120267956,-52.73888731235422,-44.66584912589166 +4904,-56.06581770419858,-64.12585014735012,-52.612398673066636,-49.32050497432204,-47.392939679207146 +4905,-54.015556786474214,-46.29056164857205,-54.50668689842979,-61.801509161395465,-51.84925780522102 +4906,-49.724272947137294,-46.573648764503616,-53.268061099627076,-51.77276686130584,-61.972274024319894 +4907,-54.951062276466814,-52.21664804208717,-54.84069685709976,-59.725804261336,-52.3352804182007 +4908,-60.43046659908771,-53.88512781625928,-50.32063451125734,-52.41242842309596,-50.99923973463997 +4909,-52.89283974086356,-55.3607710620964,-60.91266803697156,-55.731869495135456,-52.91170053941652 +4910,-67.21373721947994,-52.39605644113775,-50.065118120053796,-49.136159878813835,-64.37639366696477 +4911,-57.79351518023851,-54.489937919512194,-64.34535841456098,-62.68189671974056,-51.10302685473955 +4912,-50.23792885990705,-54.06176506714629,-62.2613847152122,-54.813010662434486,-57.02608244778944 +4913,-49.34030539497463,-54.17866502242587,-65.74381728974171,-51.19060769607947,-54.67570613896874 +4914,-52.597587438421236,-45.70388251431338,-50.62609508152894,-58.035825789144276,-49.28060064590473 +4915,-48.89812681502321,-50.96303891503804,-52.86716668252662,-61.38572505092481,-56.50229571272995 +4916,-53.89942249739829,-54.17155534929605,-61.461965078759356,-55.181078815182524,-57.01181368514449 +4917,-53.89514688146336,-57.46584176658639,-46.125060977866646,-53.65208184800179,-48.75816309631864 +4918,-59.95280217547101,-51.905375655381334,-43.97225879883295,-47.73166615304095,-50.29011898557595 +4919,-49.5378762439541,-49.279391052487995,-58.70993457520174,-61.41710981047585,-55.149019177483865 +4920,-59.59679912066636,-51.0955123422217,-55.81338181571001,-48.543882345593396,-52.362339735660775 +4921,-58.55682127131706,-49.935283786762746,-55.59931469257989,-40.54521655481264,-54.732765504125894 +4922,-60.12505650159928,-60.695107763845535,-52.31670749341159,-60.77986847943003,-46.77361888235157 +4923,-51.58636696162983,-51.789071654649646,-54.27636015283338,-49.896116435225096,-54.28261232515306 +4924,-52.82232223012432,-53.75229351754919,-53.50148883566996,-49.063525957163726,-45.89759164892048 +4925,-53.22639433855726,-48.423857312859774,-61.23490645784861,-45.7545403947609,-44.86029369540809 +4926,-45.20538676300727,-45.441723463427955,-56.55110511548689,-42.74633906725514,-55.883249241898476 +4927,-63.30498556213518,-59.49985770942321,-47.042496490836285,-46.84185122714511,-49.64244648859077 +4928,-54.29127010337494,-52.71930968412727,-48.74786956925981,-52.625506797004306,-50.76640878923873 +4929,-50.15024863936717,-56.43630149519839,-46.75565928049252,-48.043188332981984,-49.04888048898544 +4930,-51.94595369795524,-54.37284249952182,-53.332393835692514,-49.085392843233706,-51.5459259869704 +4931,-49.84170115361455,-47.1507688579234,-57.875921923370306,-51.68560461868925,-52.34027627559295 +4932,-53.22383529114052,-48.68924809598985,-58.88687980561924,-61.18390866023153,-51.98258599561175 +4933,-49.00702554848323,-55.90376715076067,-55.31194531036036,-54.43364805442173,-49.095280373498724 +4934,-54.9930084282368,-59.05930991432223,-47.35651181296725,-56.66153515380759,-62.01573318931395 +4935,-51.90735737743142,-39.51144432589591,-49.968797499430416,-51.92319244432927,-51.7381280894065 +4936,-59.32982361358089,-56.53523449383366,-57.26897114232559,-49.69756967346963,-52.36739973554543 +4937,-60.1184158116067,-55.19115330418994,-66.79332918346235,-60.689812578397216,-48.42547492887456 +4938,-55.115806204016486,-48.56454330462261,-44.614107427162466,-64.40525594935892,-51.52740396045431 +4939,-52.811854253914476,-48.74618057043413,-48.32806603423599,-57.76575467058878,-52.48634851562617 +4940,-60.62345389131091,-55.066620904797915,-49.495745404867534,-53.88437002830046,-46.19078888666644 +4941,-57.903340885699656,-51.0381393015231,-47.31430727557955,-59.423685235378876,-43.78545590407418 +4942,-52.9646234237619,-48.61488422546579,-55.41550059621763,-58.742801371839406,-53.78234560247835 +4943,-64.83720188370087,-51.29106635188919,-56.25870501370977,-78.67312328948185,-43.72663615281752 +4944,-51.896121415317516,-49.57666127358843,-49.19122839770747,-61.994659334209096,-50.80246133217228 +4945,-59.63580725816934,-56.89438791087621,-47.77754152340886,-54.64404340407183,-49.37920796077288 +4946,-60.5037449963821,-53.152726719442654,-48.25123472471008,-58.458249377041724,-47.08557366281559 +4947,-51.05882655151696,-55.9676231694229,-47.28783893124503,-56.5953158650833,-58.69663872701712 +4948,-55.45454295244885,-50.260937277586144,-57.87299098086897,-58.456861495184114,-48.71180976406309 +4949,-60.86355246742576,-52.89718161244345,-53.3857894641094,-54.07814479571956,-60.223309058723466 +4950,-46.323307524305605,-52.752386287887944,-50.99075455001171,-57.77348282303865,-56.951546020495414 +4951,-50.697099303640115,-48.99255372407955,-49.71933385768894,-58.824873529666476,-56.22352841132704 +4952,-57.87387339089196,-52.01525046335136,-61.464633650395996,-50.41918114342806,-53.10530614301328 +4953,-50.07210341939919,-56.85356094987532,-63.359368837330884,-53.965541537862336,-40.538085150989005 +4954,-62.34417196675949,-49.66652480832378,-58.13540062718076,-50.86567052144161,-60.16582521072184 +4955,-45.54052880939425,-51.32067347610788,-51.26843300272094,-56.80030893541927,-55.92051172131082 +4956,-57.89865967844568,-50.301164872933334,-58.803881270731736,-49.008146839194275,-58.72659843649967 +4957,-52.58608007675637,-57.14615476522052,-54.915628383260504,-56.07285161750118,-58.83830432694736 +4958,-48.65687186158903,-49.90443921926511,-51.31404839451239,-64.04320590174981,-49.99652374406811 +4959,-61.90075438746581,-53.29323612610587,-51.081005376456936,-50.06656150630528,-55.90838708535103 +4960,-55.6683355986149,-58.69424296719751,-56.12053165585806,-51.27021729422607,-53.62667252639033 +4961,-51.77054216907717,-49.293053999104,-55.48897113812402,-60.79844311458575,-41.75743605747614 +4962,-54.56986436680911,-50.24027794774177,-50.21619176460204,-52.917806366774094,-50.382650937966325 +4963,-56.938848630861216,-52.99762036642302,-53.33033870392956,-49.72320097941474,-50.92018236242397 +4964,-53.67463708849999,-49.73107579543771,-59.107114062208986,-56.16557348026882,-49.56723372704024 +4965,-47.87421990868972,-49.247821810907695,-52.07978979466009,-64.45815972810807,-47.647962190127274 +4966,-54.945955057092405,-53.78328495892983,-63.75654616932348,-53.67916994533326,-62.672695811574734 +4967,-47.85052798099387,-48.67702918126843,-51.31887946884209,-60.394824661607345,-46.908278168063774 +4968,-52.67389890451082,-48.869130749640554,-49.7974777467093,-47.59228796345989,-51.26755207455213 +4969,-59.482706768899725,-47.82594417141684,-55.202766155820676,-47.37111777721977,-47.679762883521946 +4970,-51.04387887069632,-53.95735961257114,-53.30160027547075,-47.12235318667396,-56.27727546196718 +4971,-49.74097997985581,-47.940505020116156,-51.39028891689312,-70.33116677071379,-50.40226443603503 +4972,-53.035469882230686,-45.510952089346326,-60.69685345429408,-50.486425269509375,-58.87393527525727 +4973,-51.09606746977464,-50.88946483043297,-48.54789450519387,-55.61412590853098,-51.46651772947534 +4974,-59.361085112253946,-58.47742807081365,-56.91433313541698,-69.40090698788235,-45.78545299529296 +4975,-49.36358259644,-47.69361152306881,-61.83193880679159,-58.321571483324696,-53.161182254841265 +4976,-65.78336953546047,-58.442464309766336,-52.27523197813692,-62.73307254483119,-55.45033539065256 +4977,-51.38596056029083,-52.6005258740416,-55.24666234563964,-61.7105480974627,-54.44758430974635 +4978,-51.21332814297378,-60.6259755132056,-51.903308990410935,-67.52578484544705,-43.837189064705946 +4979,-54.83773469651818,-49.62667327048213,-52.69682551404384,-61.252065139457066,-47.23055098135319 +4980,-53.34783757547734,-58.64927687134082,-54.88767330836464,-58.8102902048273,-45.901296926115776 +4981,-50.496256578896876,-49.40508827612276,-56.56377285594044,-60.60907963063856,-57.78579610365025 +4982,-59.461901117684725,-51.0319013871221,-47.59594407446589,-48.120097269667795,-64.50326503004092 +4983,-49.25442465081867,-54.45720429945632,-51.0150737956766,-45.383671534011086,-61.321984215746916 +4984,-59.25435932158809,-58.29743547606021,-44.682666692028725,-52.05161501763389,-50.785874428823035 +4985,-49.53496796314618,-58.42833726891295,-58.52898475642667,-49.66657029567003,-55.48870702135413 +4986,-47.33091170914038,-44.300512757257216,-49.471682315831174,-57.91289093586676,-52.343344849096816 +4987,-56.860785928410955,-47.03693358032909,-47.45633050188015,-64.73098621222974,-53.151947026401395 +4988,-50.22767388949948,-47.80249601725962,-54.43052389734375,-51.740362369027615,-51.832620186113054 +4989,-55.335919672479775,-52.304203307157174,-62.57837171975548,-57.25552411510855,-45.936925401380265 +4990,-55.35868189859546,-48.971261802793926,-49.01119881519825,-60.43728985121516,-59.243078371214615 +4991,-51.69647690090662,-45.40678795400531,-52.03195764908262,-52.80363201440511,-53.427474599281425 +4992,-58.846457046555095,-49.94691558678883,-60.706631422804776,-61.59757815344725,-42.91431165718955 +4993,-51.6139683837164,-46.55521505094361,-49.672953896137756,-46.754354395557655,-51.518681673570484 +4994,-64.11449373241845,-54.683560927269305,-49.04706232208818,-52.56429975330016,-58.46821580821209 +4995,-48.65233376832939,-60.94940169178886,-55.39594174415045,-58.02049941203429,-61.29975046561851 +4996,-53.33326695179383,-47.27204246526938,-58.99203789136754,-54.84303786044411,-54.57014124388986 +4997,-51.890829714476354,-44.98678349058952,-61.66014753868732,-50.030555585074644,-62.4404487479635 +4998,-50.15898376900047,-59.183680838189716,-51.02220095968864,-53.27160422403456,-59.16076289882519 +4999,-59.0490696630889,-59.93793917819824,-58.16606676915996,-60.218613115923944,-51.49655849004754 +5000,-59.767419741728,-46.48444172198006,-46.313120119662806,-51.375935932481745,-51.43078954584479 +5001,-51.59602909429561,-57.28665305788151,-56.914616449254325,-51.18781826032127,-49.24923145112699 +5002,-53.8861396345233,-49.970007242482005,-49.67553378320505,-57.421680900052834,-54.05337055529368 +5003,-53.694665892509754,-50.528176054589395,-62.483561077164815,-50.519253837828316,-43.02768102678321 +5004,-56.319258135866015,-55.73111007635541,-53.653805147993914,-46.57260987037937,-52.302036565824274 +5005,-53.142197152050194,-52.375373949820336,-44.74121250951124,-56.79445604925159,-46.89557248051503 +5006,-60.9851029624283,-50.48911440138874,-48.44598339800672,-47.447987372756266,-50.984103854638725 +5007,-56.55356711776525,-50.44853401884148,-56.18623106626449,-53.058169158073866,-55.89625017048988 +5008,-61.30471905498659,-56.6031026816726,-59.775933282689,-56.361082138966616,-58.5790246186502 +5009,-51.6134736563919,-49.91555998484241,-60.009174886470014,-51.1857750620504,-47.28006335248563 +5010,-51.19724314098925,-45.16013427067987,-48.39886204382146,-59.577620548822665,-50.33825007309605 +5011,-53.07464509380605,-51.93698823246565,-48.55980668336152,-49.22994915735965,-55.06154057725235 +5012,-56.313491731289645,-51.912557924667,-57.051041930916305,-54.08039902299,-51.484121272424154 +5013,-53.427158181836205,-56.34438734205063,-57.19630294699099,-54.39814239226865,-56.35717865143233 +5014,-63.30951685495016,-57.19465856986392,-49.4941124626066,-49.60078683464357,-54.97069113747033 +5015,-52.58493812232081,-54.5885794337606,-58.8876980180266,-52.61538576010991,-49.728109934565616 +5016,-63.591783620702,-58.06902126129466,-46.75535429779934,-51.88861301578921,-49.42975796711246 +5017,-49.35543177437773,-58.47719550689227,-55.096396491944056,-45.36319289736104,-48.105206625326176 +5018,-60.94937944639556,-55.53676036312082,-52.85673245065522,-51.475956806248696,-48.5516843560742 +5019,-50.07882540169838,-59.38271546380226,-51.246028807488706,-47.85001589535532,-54.19990505918489 +5020,-63.66053357773519,-57.67129276623767,-47.66177134157896,-50.91510905321731,-58.07933664989406 +5021,-55.505524036733426,-58.87066602359685,-63.082805069455425,-57.88919966708008,-48.19079529785561 +5022,-51.23274214725536,-50.88503173590169,-51.15044137925644,-47.96626944277683,-51.71548615631019 +5023,-54.6616622431457,-53.904113051718554,-58.35258087685467,-63.620814373224626,-54.34237010727256 +5024,-58.1717811308885,-54.60297425959905,-46.73144375732653,-49.893105831117225,-51.761164408644326 +5025,-56.93920573256878,-54.375395692918545,-62.255908325823754,-46.06662600418909,-51.39792921368846 +5026,-59.1966313656098,-44.52554303174602,-60.76046229038618,-48.210600348407695,-59.6194463196303 +5027,-49.92133810389532,-51.382706366595386,-56.54450443157262,-54.490190763576265,-52.54656122201517 +5028,-51.409380021605884,-54.91456470982496,-54.57287813912364,-46.53654298292679,-49.6002686931016 +5029,-58.80083439268095,-54.94798183542462,-48.660079959820436,-53.92590960488515,-47.134477071752876 +5030,-51.811976307342164,-47.09597987836666,-52.9457584222926,-61.034899600014754,-44.741219682342525 +5031,-49.556595709440806,-55.02055326843861,-44.040339859913026,-47.94960379246752,-49.35874503253086 +5032,-56.22287931635549,-51.98561239421179,-64.40561224709317,-53.354590738580335,-60.937314204573454 +5033,-49.47910228350898,-45.09032731306539,-48.80915427614923,-66.04054934684805,-50.5814241053436 +5034,-64.2838438661374,-55.46784429398668,-61.159994405382605,-52.76095547692712,-55.73349676774272 +5035,-54.13640637486585,-60.34926276643135,-59.291207822078846,-60.31547276241203,-57.410041139572094 +5036,-55.894243021210336,-53.658199405885796,-51.84545387078509,-54.81288138406752,-57.57610609745544 +5037,-60.64272402522286,-47.67664245472549,-55.40272016737771,-49.38264435727373,-54.985497808085285 +5038,-55.586192060984075,-47.84325337366271,-54.532167521363995,-58.757155504906926,-49.67809499475925 +5039,-51.594720766745965,-63.021963601911644,-47.74734135983541,-50.41812309881227,-45.01126017729175 +5040,-50.38492132303475,-48.32017968612594,-49.84410649337676,-54.76313334633905,-50.60409729687946 +5041,-50.04335363852829,-48.62889545165122,-54.29238260287839,-48.93432649954992,-62.512601648665225 +5042,-50.691571632192264,-53.94124802431888,-64.17240212484907,-54.561075916788106,-54.418311361086 +5043,-57.361874230968546,-53.706663884329366,-58.224684053771874,-51.724560522541765,-49.68195953087568 +5044,-57.215980278202046,-51.73455648218739,-62.44439401490697,-52.15001896439073,-53.162964716472956 +5045,-53.072617685824056,-57.44335552360838,-63.556606564328064,-52.67916783650147,-45.08493133637398 +5046,-53.46089627371173,-57.89469686307549,-58.31732797840906,-51.9237346273091,-45.965497168951934 +5047,-61.181823797514504,-52.581732562069085,-52.457414540493836,-52.19233697880278,-55.21303352951782 +5048,-54.19137843806959,-51.81499135907295,-52.42427613062918,-57.49082332097491,-55.5080755685815 +5049,-59.982807642590515,-63.76612569576723,-62.95160610684472,-46.02473625935263,-55.96863769041505 +5050,-56.959573512574636,-58.162226858933465,-51.77485071309568,-62.785491811426475,-55.82052936046955 +5051,-48.974705978970384,-60.39892881837322,-49.40307797298013,-51.56860604982678,-63.27761031207723 +5052,-53.26768496009018,-63.77264544581961,-55.176837681835856,-50.58607268941435,-57.73999637482033 +5053,-52.327883469097344,-66.74132501982962,-45.212021874433695,-55.00239700291074,-49.79636770651815 +5054,-53.27743701292126,-59.71017013651904,-54.950423273566045,-56.57822645098952,-50.92475398992184 +5055,-53.20908189308936,-66.19291370298235,-53.855339408518475,-47.19419775656224,-53.095583925346034 +5056,-54.02081209779333,-53.1979425284298,-56.67598265271606,-61.68528988259744,-52.419544990723985 +5057,-57.499261609848354,-59.172219225624325,-51.84232190716408,-47.80786956841292,-57.78335230824887 +5058,-62.608439211631485,-55.05155334448939,-52.18307611364499,-51.66058156302467,-52.49822859533711 +5059,-54.546302453806646,-61.66783105193651,-54.054387906821816,-48.56365736916037,-51.070444610818015 +5060,-64.5965229470056,-51.3571726159709,-57.118247507350475,-55.8916815892653,-55.04595204317967 +5061,-54.99537972189629,-50.41608294133777,-52.93953964378142,-50.43903248858409,-58.104456971849345 +5062,-60.89456642812039,-49.77278648398144,-54.53765531711317,-65.25143589639708,-48.904247861506256 +5063,-61.36206449320128,-58.23769994236587,-48.81711814990141,-64.3268803609344,-58.551661325079195 +5064,-51.34353501774909,-56.583658041109146,-53.72129319526796,-52.8592917997105,-57.123215549938045 +5065,-64.41645869631432,-53.82433664830458,-49.77749041618153,-61.43452308991112,-54.43897869226121 +5066,-48.28536829936345,-55.70396842316644,-57.0849323203861,-53.38192316848846,-51.07725875012001 +5067,-58.81692124401786,-48.883003455963525,-46.08926418143564,-63.45840271935598,-52.754488247007544 +5068,-55.52128974960737,-52.94402780358344,-57.23905891336193,-57.44209034644323,-45.662031418902 +5069,-56.78282604800979,-46.550920040789386,-52.222766828960324,-50.95637590163999,-50.31037615161359 +5070,-65.09653624920132,-50.85944643187843,-55.070303205605306,-65.09764286787585,-54.85729857954981 +5071,-62.56823133113812,-49.05500699952591,-56.64253920099029,-55.871874288438036,-43.57384928702562 +5072,-55.47429049609475,-48.35021219904401,-51.425550807629854,-47.46689253454985,-45.70756800841695 +5073,-63.29071895132408,-54.342661198810696,-63.126963300051145,-58.09077404967422,-59.72351150899603 +5074,-60.665242931022036,-59.55966040832032,-56.94349958264994,-56.57672704270331,-49.0716622764314 +5075,-47.24790728155146,-57.41740329269702,-56.639862552556096,-56.575855502662144,-48.860374063390594 +5076,-56.443426689165015,-54.32101203240534,-56.859693538570845,-51.027367093052426,-53.41765850292771 +5077,-55.94407870983573,-60.058449589900825,-56.78299855163289,-49.5764478735759,-53.76523457681635 +5078,-52.74969988877958,-58.467966063456835,-49.11439573078069,-59.47941087613177,-50.94150758186029 +5079,-53.43371176639115,-57.56412764551314,-43.939652364861814,-55.87148379380877,-49.39984561634686 +5080,-55.017186995283986,-65.93320298626843,-56.17213667503867,-62.02764595281879,-53.940117484681316 +5081,-58.80702632290895,-63.08947809611999,-55.961074647599,-57.37582364816158,-50.21882899210213 +5082,-57.049951300246555,-62.343921535759335,-49.52054495608722,-51.80908571758744,-52.928750423835424 +5083,-52.95134172517952,-60.2064418785629,-48.015681207621554,-57.618051422754405,-47.687155716152326 +5084,-47.37602355472883,-52.88759808862634,-49.78226999158481,-52.563992145970545,-57.690240468672236 +5085,-61.39858853991268,-55.58889896104089,-59.241574496527306,-54.69990913805002,-60.97545548882644 +5086,-53.710020296892814,-52.20561968281395,-51.925281101307895,-56.05832630691357,-63.48775088042018 +5087,-55.66707339193241,-52.49996918391242,-54.26180967137776,-44.90459428589268,-49.79632870199749 +5088,-64.99826825416771,-51.91829663852035,-62.2404185760225,-48.32833334135631,-50.06973174585444 +5089,-69.2693553932185,-54.32211108058009,-46.706270658049384,-52.05043364974032,-53.36667268351656 +5090,-50.72043123145119,-51.13670786289602,-52.83941409319269,-63.541377805132825,-52.25557976002175 +5091,-48.11697479770592,-54.55120932651195,-50.84907145935364,-58.32550709389688,-50.90953583794709 +5092,-63.38136555471107,-58.88634798395193,-52.029989677758145,-54.660891794605504,-48.842098072767314 +5093,-64.82897346837922,-54.70905206215882,-39.574167757440925,-51.98034592235224,-52.529340786089584 +5094,-47.00406861170287,-51.68874527726813,-49.474334942965584,-59.36092266767968,-52.90020762422844 +5095,-44.607439979000176,-53.68368164597866,-51.782702561547154,-52.94997333448513,-54.61765594312192 +5096,-60.32443019326907,-54.896042390917714,-54.494738756813845,-49.26486449285771,-56.81566679777038 +5097,-48.855902818734855,-57.48858177347693,-53.55122902418421,-51.68224448395406,-51.830589127435765 +5098,-58.70698208078115,-48.528690150346236,-55.98210786834119,-48.80066385285212,-47.547349330575656 +5099,-56.405152097151735,-55.579573399049515,-54.961148984303925,-47.48804869879117,-53.028896482076085 +5100,-55.13671689423791,-53.72860714096706,-47.9479812307031,-54.02566105602537,-53.67018652601728 +5101,-58.85437557043398,-61.422882745784655,-55.76710283240264,-49.56041236583121,-59.715784792166126 +5102,-58.9640929160304,-54.56979131808208,-48.54021308904531,-55.30020092888687,-54.27103599758432 +5103,-51.948685661494515,-53.64130973932104,-51.804581170266076,-53.83978088880286,-47.54066376233154 +5104,-59.65788599593226,-51.421582144300764,-53.52562244452045,-55.50578016616267,-53.96010761586862 +5105,-50.70925965729398,-49.356556446759235,-60.81488018357914,-62.773617571277185,-57.70321433593206 +5106,-51.70566430713744,-61.64205084852994,-46.89846758314093,-52.731720882658685,-59.51587265668686 +5107,-66.8731119698122,-57.84709475571471,-55.785280702101026,-63.4469400882636,-53.13131306270264 +5108,-49.81424722350022,-59.52864105664561,-63.47527362794344,-63.67618133917375,-49.29465181899204 +5109,-56.1691324337652,-52.71431357439357,-57.455809783840074,-45.41239295059967,-48.52019124797246 +5110,-60.85415225144696,-54.222527265559236,-52.68822203838126,-45.16488903079502,-60.75486779165275 +5111,-51.83567717314905,-67.08610012714482,-52.370952275560605,-62.617585266362504,-44.6484158651703 +5112,-54.62720460228111,-53.97488414723204,-63.55147966369533,-47.22948966382344,-48.21722083011687 +5113,-49.31662540479833,-56.436879535363595,-61.84422873196366,-56.20634120900889,-49.57197479459666 +5114,-50.74003383738986,-60.46842721644685,-63.14897069426486,-48.892725941329076,-50.06037020995915 +5115,-52.271943900071534,-57.79451334319171,-55.096169855313995,-51.498864975345654,-47.20680310706585 +5116,-55.904913766652484,-52.43570652703214,-62.03102712033305,-57.625227963717705,-49.772380644242475 +5117,-64.03429994183067,-53.98022635977242,-56.858226762598605,-52.85972747021146,-50.82910946442449 +5118,-53.30066331959202,-64.13225805234376,-51.81475865610683,-59.29746664996771,-45.7346163601524 +5119,-51.56087728574032,-58.48152449974117,-60.16741273979244,-48.13654926015856,-50.997921823971446 +5120,-56.43647361762732,-50.30801182403263,-53.77635536824176,-56.59289911659576,-51.53820267881683 +5121,-58.07869513893311,-51.451958046250255,-47.04305041721632,-51.986093707295254,-50.66189797452467 +5122,-50.72666796548419,-55.12497568006802,-46.388748519972125,-54.338324897741174,-51.57574454665587 +5123,-56.98307692018401,-50.62325336365306,-51.13558402433034,-49.32728130515119,-54.31206981008844 +5124,-48.49761802488005,-50.18355778387822,-51.78765960023736,-51.88752745216869,-52.31601633445602 +5125,-50.04335617522131,-52.050028965334164,-56.75166322755817,-57.025736692653304,-52.07548439991925 +5126,-59.17390109906402,-50.58531694861766,-60.08648791841306,-54.57885960184824,-53.05146461845168 +5127,-61.11790697735766,-46.2415285952781,-57.09521318015921,-49.29884543209527,-60.35273786906549 +5128,-51.28003582965155,-48.75770186058691,-54.44799263176062,-52.08770755146238,-46.927647481429034 +5129,-46.5693719687131,-56.24188453500165,-51.15501787055881,-47.206021418893066,-50.77611319895641 +5130,-53.88756139977259,-61.99244491769262,-63.412041963555794,-62.115551722667746,-45.05392662792634 +5131,-54.640765330446634,-54.37825742106837,-58.00118097731288,-53.54312491315308,-59.17294597904699 +5132,-47.87407510401821,-57.41456076056101,-64.9746665196202,-64.5266175952424,-49.952094442703014 +5133,-50.215752277454186,-48.90729860185181,-55.22973521944753,-59.926602868614886,-53.544830674672255 +5134,-52.420084564808796,-55.2198747108387,-51.97860446165881,-48.47000838634032,-53.77832361176137 +5135,-54.792403126116206,-58.84715540168216,-58.67947421564978,-60.94301524241339,-54.05434799006641 +5136,-49.522816120121135,-54.249552345225254,-58.0461937027501,-56.70415316282957,-48.548659481652926 +5137,-50.54242272603849,-56.003899610798044,-48.07178670720531,-49.97831985548964,-49.01294831821781 +5138,-52.81731037277155,-62.83857365134779,-48.526264038545726,-54.638141922151135,-44.53727407483904 +5139,-59.404386423603775,-45.615287752608566,-49.424455891254375,-49.76276631414049,-57.67080469242571 +5140,-49.87160020928705,-45.4988902532726,-53.36381730971745,-50.881183268637294,-64.86925117781313 +5141,-57.34855402596071,-47.44489864345155,-72.16401127840588,-60.75292386906365,-54.91873969776448 +5142,-60.57939390635296,-57.97722003476697,-63.17412942083694,-44.36514786504217,-62.87563294122415 +5143,-56.549995244765114,-53.55899270092392,-49.6640037215965,-46.87838988208869,-47.53135220973517 +5144,-52.40415143581037,-57.62600635791051,-67.39949390076696,-46.85903732731007,-57.78393785588211 +5145,-62.58291174068208,-49.956641476347315,-55.19837284322897,-47.45821728955961,-50.59647509735045 +5146,-44.16149853144337,-54.09430371090869,-58.25898582630208,-49.73432447128053,-57.21033103719948 +5147,-50.50462109572148,-44.35781692937629,-50.99706889130391,-49.740676232672605,-50.67874119022169 +5148,-52.7881062434141,-45.35079863744937,-53.38750895059993,-65.05151860134005,-47.878754579456654 +5149,-60.993250242809054,-46.26922053668227,-49.375719167377255,-53.38456096673247,-56.56177542503751 +5150,-50.68560125130741,-47.0522350154303,-65.71766327410411,-50.959096583800076,-47.23494059452696 +5151,-55.17526840499682,-42.81760908608339,-53.24349985486286,-48.39291679697079,-54.19672173214107 +5152,-55.65417891725176,-49.29275762948714,-46.25751271629415,-61.04937032703011,-48.126915740132745 +5153,-51.43999673921068,-50.27602629741646,-52.5338150061464,-59.4801487817462,-59.82770762987843 +5154,-53.05444145951355,-57.832953530247266,-50.64254161451336,-55.21028700798006,-52.80394296024853 +5155,-56.052529200892586,-53.73680363719839,-55.64045295023011,-51.13913513199208,-48.21018383716076 +5156,-55.52645021949513,-48.48694112430592,-52.83735136366053,-52.60385834514936,-48.039354771132956 +5157,-58.58304240058818,-56.68648296627261,-53.90769308984422,-55.48217293259898,-47.06603440310587 +5158,-58.74975536696905,-49.79981592952406,-58.91606749353518,-49.51102592614199,-45.79185910427547 +5159,-55.8315386492708,-53.35010464709405,-52.27539147463042,-53.21090031901165,-53.90562834739818 +5160,-49.842872603293294,-51.38601362774231,-49.516010773827915,-48.87612837844236,-58.61544855422589 +5161,-45.18574500067723,-56.607479010366546,-49.925404070135045,-59.56140032010853,-49.68069165674216 +5162,-50.44769616320859,-55.75720014558643,-55.39204241548731,-59.08824578184358,-49.97078296612693 +5163,-62.36095293110206,-54.899634680276876,-53.54706844833055,-47.11254674556767,-55.268175394331365 +5164,-49.86862280994434,-48.52223383596451,-65.48143110696851,-61.57369476497728,-51.5873296965013 +5165,-48.48391918843957,-57.06989506592576,-47.59368781573916,-51.34240519349428,-59.281236962611565 +5166,-55.535881292409016,-56.90226633775559,-57.3073286036619,-45.46398721004105,-48.462114406966734 +5167,-50.2176466454115,-51.06257948202448,-57.77578203840381,-56.75447803082793,-51.89644186294561 +5168,-52.125818466431824,-46.30523239574192,-57.88133158726346,-56.28866355568162,-59.010135272028435 +5169,-57.46080470162702,-48.89791838817486,-50.411990724929105,-51.78885659080544,-42.689871052037134 +5170,-45.565774277654214,-46.18003232468845,-57.882971156919915,-53.686658061174704,-53.42289503799592 +5171,-48.99028019186322,-52.99784141735533,-50.108333983957486,-53.82741710509951,-57.242266424044814 +5172,-60.15124766918435,-59.310396978461185,-51.223175909296685,-54.785827235436514,-49.792959354001894 +5173,-53.58677680380483,-51.3777401489026,-54.06471585836463,-55.38352835524304,-58.856248093948885 +5174,-51.84870189364937,-50.65075809499769,-52.84883863357053,-57.94378344281789,-53.43176644467753 +5175,-59.58102774720601,-52.90698154087055,-60.67502121504679,-53.56205859175116,-45.47824030457633 +5176,-60.744218117080806,-46.7354967737817,-54.51526958674444,-48.109735477990164,-54.50135820469413 +5177,-56.933639722911536,-50.29974953110785,-54.67095918366976,-55.346455722019705,-56.44176855103045 +5178,-64.3524868511418,-50.816403854311325,-48.25553152943195,-53.47439218124583,-46.564393589922396 +5179,-56.67961383422798,-59.57787104919548,-68.75993482705728,-52.95967274844247,-49.99368673552618 +5180,-57.39413304681269,-51.4474496019391,-57.249650514661305,-56.932157515950145,-49.63533610498575 +5181,-46.54987994412174,-46.20505255137311,-48.43223640415366,-50.1500730882805,-48.32857828048225 +5182,-54.27580978134749,-43.74111572537751,-56.49266790536315,-45.810111612614286,-56.816299744894465 +5183,-55.32156237917279,-55.40188871545251,-57.64436543115975,-52.896756839259,-51.841502691338455 +5184,-54.147862177367074,-43.53236663767057,-56.09440655162929,-68.46865511466403,-52.05759716214793 +5185,-49.638280907001295,-63.179489918103926,-55.129662899069515,-46.97840539139942,-48.9603496624337 +5186,-54.99942239182338,-57.27040130319437,-47.84357821058212,-48.58665627644024,-49.590812617748654 +5187,-49.20840337070626,-59.10496259577567,-63.97638291538224,-47.161474602141105,-43.045497428179985 +5188,-47.483717564035764,-45.83250207549231,-65.52337167259682,-54.376031329287635,-56.07767065225124 +5189,-43.23382258559056,-48.338144693799464,-57.69028533159621,-49.690573873466285,-56.62501742216841 +5190,-48.49231434992119,-55.24905477969078,-52.46075274051371,-61.690416294923544,-48.5099694902879 +5191,-53.97237988790342,-53.55318540925966,-54.38944212108193,-53.902122115372734,-48.068685579644246 +5192,-52.94546087746961,-54.249276281649514,-52.23754527648656,-54.366129707508364,-49.636750163725516 +5193,-50.53528661734041,-58.839668111524894,-49.07972585609469,-58.735264497323044,-44.98946906435487 +5194,-48.36217689064112,-49.87874055834416,-58.38077920312398,-58.12477531074775,-51.45523038933984 +5195,-48.53456400502111,-56.745511095088254,-50.740376495223046,-57.12825330663815,-46.69566124805977 +5196,-51.281525618414086,-52.439849972121365,-50.461496270318584,-61.93984425363225,-49.240232639988996 +5197,-49.95054417348,-46.09944147763264,-53.74762873118358,-54.12464910914898,-46.546017988774 +5198,-59.72884736122265,-53.24907268461193,-53.31093554133843,-52.871000692852405,-49.81122404162164 +5199,-60.378900136227166,-53.786647910003154,-63.501214188028136,-49.27411549709866,-44.4040997916932 +5200,-57.24624791763986,-55.881203309538165,-62.02087346388992,-57.84691772138549,-55.68253408282497 +5201,-54.41166760698525,-48.41479419644891,-51.50019702826523,-57.60476450850135,-51.28286165890725 +5202,-58.35052084215438,-51.98250181360018,-52.97785466317386,-55.68954260136813,-49.1412972741528 +5203,-54.56729717292252,-44.446184160082666,-53.64718223800283,-45.6643498907978,-52.29113873783824 +5204,-51.53147921998233,-56.14133057873743,-64.01856716642195,-45.80918310538321,-52.73280946143163 +5205,-46.96059145937316,-47.66432155552837,-49.5855108942978,-51.59747606482986,-57.254982298552996 +5206,-53.668517755418826,-49.45768356810193,-59.88181487590309,-46.52730874288924,-43.85905150580782 +5207,-52.857894457774805,-50.96576849705373,-56.6536880782011,-52.65697087563301,-49.06009768174032 +5208,-59.899448937482695,-64.62712828545881,-46.76845704945369,-55.572183418743585,-59.092330751010195 +5209,-49.40855823657112,-49.62693295660077,-57.846073781668636,-58.45550605183193,-58.441419038341344 +5210,-61.01905270695348,-47.70513046202711,-66.26443559920654,-55.6755387430494,-48.203025448846745 +5211,-65.10759704998661,-50.27335300521397,-50.59828202440787,-49.21581488800769,-44.66923894462106 +5212,-50.33539957543411,-53.74032461166388,-51.51667271211943,-60.57321671697568,-59.52643622943068 +5213,-52.86044021961118,-49.40157618187087,-61.7791085633918,-57.00690267287882,-57.07512421103819 +5214,-62.09056415951846,-50.71526507175649,-62.591486714623954,-59.37504309799601,-57.7845062334301 +5215,-51.51829149010138,-49.225432716641585,-50.68061046013366,-52.15558506394693,-54.81497911657422 +5216,-51.90383390964791,-48.80184688361982,-59.00718917357526,-47.78913197774526,-52.83754261101049 +5217,-52.47217862232265,-52.46574051513232,-52.1686438347347,-62.395520215639124,-48.56354361061643 +5218,-55.041976785391526,-60.89259640442509,-54.239485511928216,-54.96480318679991,-44.98388619176109 +5219,-42.71352062672417,-54.04473907625963,-49.75379690240952,-50.992207713922824,-51.51261833615097 +5220,-49.29673348459659,-60.27366530461925,-51.65927433081674,-59.94564025497782,-56.944956681186255 +5221,-44.565669000104094,-52.36839150907832,-44.430414622689284,-62.78158512463559,-48.05425180643844 +5222,-55.31965368319757,-50.538103690143764,-55.27747208729031,-54.25313769365579,-50.02283128228751 +5223,-52.33242252143034,-57.49704320388211,-54.80181308496547,-53.803446847293344,-45.65407196906012 +5224,-49.70894512277003,-53.879911966666654,-58.21865145192379,-56.944962600366864,-45.57291668585222 +5225,-56.09596008834557,-50.563783225705436,-52.79783020210982,-49.359206881803246,-54.474045201124916 +5226,-52.239333447591456,-50.515975096548786,-52.6780623868909,-46.79085595443619,-48.409472676523364 +5227,-44.37844727310244,-55.873242175462764,-51.72944569814983,-57.51942274284041,-49.54724190238141 +5228,-61.48865898631537,-50.47393677441842,-61.44108641952826,-58.99357360034699,-49.506356983274266 +5229,-46.44536851588133,-49.27942598914688,-58.53609779874981,-50.311106918922874,-49.14857671907218 +5230,-51.34933719714874,-56.703049158072645,-48.04689004676148,-50.66541704563064,-48.01934698423312 +5231,-57.17278916289695,-56.76248329749215,-58.33485186651029,-52.85782911630746,-51.45610133391325 +5232,-55.48224566608111,-50.052477497853424,-42.517261157454,-53.249899552636236,-49.09607109513925 +5233,-54.712049039322864,-44.30066180085172,-54.010753701060764,-52.645126521509646,-55.89609509656405 +5234,-50.90769124433232,-54.74372260538774,-56.07015671263017,-58.08574784979047,-58.445772366487404 +5235,-54.83320349489908,-63.32141067251836,-57.76368027515823,-46.65371107548265,-54.51635513462913 +5236,-46.21768673567659,-48.96876460720696,-49.25457598395604,-51.192594594634514,-53.21737388699399 +5237,-48.7617565881484,-57.13838013244818,-45.64451720915849,-51.054494065514106,-45.92401749271998 +5238,-44.26456029943994,-46.499894447473864,-47.76066331371588,-54.94695626661478,-61.39819819373801 +5239,-61.682373774945596,-61.32550820309072,-48.58051834445379,-52.65205926233594,-49.10041013698843 +5240,-49.99231265361027,-55.25027111377859,-54.7753830304396,-57.3121143752098,-55.119422855802675 +5241,-50.438198255571194,-40.13128445070494,-56.375787746804384,-47.14927703499171,-58.34252808029511 +5242,-47.160681557325624,-46.975393391296286,-56.53242440407822,-43.66220730739442,-47.673179918642184 +5243,-53.309561238697285,-52.244906410226044,-55.745961422183335,-56.3308974825383,-50.903266592458 +5244,-44.431273185572714,-46.696101717359845,-53.43576199496137,-51.100547948300836,-49.41228302424807 +5245,-51.80205199624537,-46.838429331335014,-51.4471193997348,-51.83670693499123,-43.85516064541846 +5246,-53.30449554489811,-47.211835670592365,-54.822936777421866,-52.86598988736737,-48.0559497547555 +5247,-49.65138210729626,-47.49252553099587,-48.07679986859186,-45.42389827925757,-55.55162800885967 +5248,-52.26922784265625,-54.44653414113373,-59.26455306617467,-62.49904980932462,-58.801292371714375 +5249,-49.68158424541553,-57.13412303679398,-59.19443540137371,-48.405379416453506,-52.80467480684704 +5250,-63.8398456528207,-48.606215369641006,-57.67303064905137,-47.010447003649105,-57.286991493680645 +5251,-47.72653673010452,-59.73560278585419,-54.626190126952764,-59.528106785002606,-59.38472096659526 +5252,-54.95033106854182,-58.18334478234893,-51.59380158816378,-51.0986536082942,-44.93267625927023 +5253,-62.454420354919634,-46.48706972912047,-53.98822538545678,-47.948452269009636,-56.60713212027709 +5254,-47.862341024445975,-48.69271094052334,-57.09403799070087,-49.52653305363488,-54.07302098618185 +5255,-48.67235850922651,-50.12687074427164,-51.25093620975559,-56.04652356485089,-47.624826094743035 +5256,-59.38445512948533,-53.96167725210965,-51.878616106378296,-46.90119089288305,-48.586174846386584 +5257,-45.025726862016505,-49.600563697573264,-52.285364732665144,-60.61529804745709,-51.67218378850954 +5258,-51.66264310338855,-41.68124330332727,-53.94085714017595,-60.75879012963939,-48.47987902496501 +5259,-46.70272580325613,-52.9013829761059,-59.441133967260896,-45.16127801605518,-48.04174721046708 +5260,-44.44116469970374,-52.64434590104125,-57.55159978287756,-48.290496973511,-43.975177875464276 +5261,-56.901523097008834,-56.455440197945215,-51.513993072906146,-54.36463120069694,-54.103354912213746 +5262,-57.3999357860768,-55.53329190343022,-59.351522047437676,-59.97710600100349,-51.771534852560876 +5263,-48.17716593755143,-53.61227172895453,-63.40057809411077,-58.70828681354057,-55.43053440204258 +5264,-42.71498616850393,-51.177628959411045,-67.91630761094585,-54.87390418779858,-49.40994668147746 +5265,-49.13484797606633,-53.2468018634838,-58.802428245507336,-44.67717585554183,-48.43612372011771 +5266,-50.28629864931051,-48.15393118184205,-50.8107267084447,-56.29163435536669,-56.02082042243356 +5267,-52.85802852219241,-46.621059334841405,-48.631926386483386,-57.83592816946721,-47.242202441648445 +5268,-58.84126770888941,-47.037223014575694,-49.10864571507195,-47.35064210101943,-53.51491539478553 +5269,-56.07836082442826,-51.96737958960925,-59.454123484124686,-48.97686797887012,-51.955446488576015 +5270,-63.146233694303795,-44.49833637740142,-48.0339964881188,-45.83999356452193,-48.6190399608836 +5271,-48.96100480089483,-47.793335659843116,-52.724918232607536,-51.10404544806241,-52.18060804172258 +5272,-50.65486161436982,-61.67602098325422,-49.38330909996437,-50.18815422569041,-63.3013318646876 +5273,-57.382141623714325,-53.8657898925714,-52.4953907579866,-58.10661299199857,-46.668368293027335 +5274,-59.28439652920266,-58.3036348888857,-58.1322334225941,-55.567534291901566,-46.752608917211106 +5275,-52.9631902416504,-50.87920286276492,-52.46196979129533,-50.77856325428116,-58.903247656741335 +5276,-48.23520544382505,-47.85891044197724,-59.80984266867145,-50.114499496821054,-59.06151903997387 +5277,-65.68922757120883,-46.829604407853914,-51.481852988943736,-46.18787628283804,-47.17764450610975 +5278,-58.021423077415484,-52.41697820057967,-56.56376820287545,-55.30167454802131,-53.00411145790235 +5279,-54.12917961418475,-55.48747313437461,-53.126163543099295,-55.18416462401157,-47.090337710061256 +5280,-52.8289348367648,-57.73866208524531,-48.763853799627384,-51.77637407073625,-42.436999390685656 +5281,-60.374957397978136,-51.249404755002196,-57.41253578759802,-59.28034702983755,-53.45806713045874 +5282,-48.59538814501306,-51.98684005469012,-50.06741634919392,-52.42412386191375,-50.912985506909514 +5283,-55.74566487378539,-48.112392686099085,-54.718527180249396,-49.350857731643536,-53.38353427403571 +5284,-53.89050454667192,-57.92909051059148,-58.094793529811334,-54.72815187884145,-49.565387714567045 +5285,-67.5935487005396,-58.55545781122532,-51.988548458726505,-56.279780808268626,-59.68539039040427 +5286,-48.419412919917285,-47.32366132835082,-52.59994251804333,-59.913349527497836,-45.2674433105446 +5287,-55.21020729315129,-48.70469120908422,-50.621979897137194,-61.60444848235272,-52.568780395168105 +5288,-52.59165653354725,-57.107242334445374,-52.99312492574044,-54.80609709770975,-53.9734187481895 +5289,-56.8336192980385,-44.01247194666265,-56.353452474035,-59.354878610783516,-49.87436847278418 +5290,-47.82272661841258,-43.477563719650746,-51.34668424383306,-64.46017747203503,-51.5394032791401 +5291,-56.418072307280646,-51.0742376933388,-51.125507822005765,-53.93547913544472,-48.09645720067958 +5292,-57.748638738966456,-56.53627115905647,-58.1863229031005,-62.1836696385933,-46.04414172469651 +5293,-50.39586197580215,-54.98265937808898,-60.36842152194983,-62.60165460938116,-46.06374873046405 +5294,-58.77737474226575,-59.56735350018541,-56.29647373630637,-51.98763924263522,-48.43145833281126 +5295,-45.00264084766627,-52.22087822713586,-56.90617823856716,-49.701360066601126,-48.432482798460505 +5296,-45.2523741725512,-51.584373948434795,-51.29787512363243,-57.983453426098905,-55.82606452786506 +5297,-51.2881289079959,-62.425592061567066,-46.32340897860798,-56.38051427339125,-55.6875473593 +5298,-52.208361813862396,-58.0264877207854,-54.73212963809877,-55.70686586070188,-51.61651874347733 +5299,-45.0202853427502,-48.63789055406306,-53.42199848940554,-63.25166014224183,-46.29327978282654 +5300,-53.52120777226965,-53.98492315678256,-54.627347617510445,-48.867144316518896,-46.33758004378249 +5301,-53.212262652175696,-45.434215757500425,-50.648979333108954,-49.282903057488696,-56.19891280775791 +5302,-50.743371300003176,-54.89511338362114,-45.10974403605307,-51.114215304395216,-44.37172930125416 +5303,-63.366469402955964,-54.13404155868845,-58.41150857150161,-60.525030245630305,-48.22167586789573 +5304,-48.11946941502045,-47.31811699208376,-50.66149976078204,-55.2865446601093,-49.340906691472306 +5305,-47.46006261238652,-53.85706068653057,-51.70717419776406,-59.332888218784646,-45.892456661280164 +5306,-57.62459732654673,-54.90526133643829,-58.70686476705993,-51.66275623593458,-48.41355828061826 +5307,-50.783275487013135,-65.51885146710819,-53.99922817436015,-57.918157294596845,-52.2393149561267 +5308,-53.44174478961992,-56.75524195299635,-52.80194265230132,-40.59910009240585,-47.78786301397095 +5309,-46.73207970327416,-55.018093796111195,-47.4043075474635,-58.54917713602612,-54.92968278239622 +5310,-51.599604875549474,-61.50249117133133,-55.342765016693285,-57.45098377955563,-45.97144641974952 +5311,-54.38243676494168,-63.47004093194018,-59.578750834217125,-47.434986751455796,-49.84036800544078 +5312,-44.683434061746254,-55.25307799206945,-56.3442053334249,-58.45280676518514,-46.09798114284068 +5313,-58.692525305321084,-56.296929043454206,-51.115912691418025,-54.11015143176993,-62.21111743807631 +5314,-62.30087175637175,-62.605375654790315,-53.709774848714574,-54.59173864055668,-44.41197579674806 +5315,-54.86087819872762,-52.27746353142648,-52.90725216785177,-53.55326917724684,-52.10039304086031 +5316,-57.924751600498155,-55.35402162125508,-52.34680165752632,-55.47461982481842,-47.90545003595684 +5317,-58.42353956197405,-55.757786650204146,-54.51548484870166,-49.94465786112117,-47.82094174263579 +5318,-50.638437345338346,-56.98758511895331,-50.958739686248215,-57.52759098983781,-51.981515759980006 +5319,-45.88340488639438,-56.905593106571125,-55.2237789758869,-47.25967453994533,-53.39015742061995 +5320,-46.11119336226068,-56.17082010580973,-46.4415239702669,-46.612450218637015,-44.69449277277904 +5321,-50.61115988524585,-60.671625996058104,-53.54402986322513,-58.14938108239762,-47.288032974999034 +5322,-51.649171928203685,-49.709066348282214,-60.44937025093037,-51.63935872965152,-60.26728439945817 +5323,-48.87424590175676,-44.17058713908223,-44.51796381457348,-50.76867887557074,-58.84289619226832 +5324,-52.049731066847286,-48.96600214565507,-51.841007691289484,-44.78654855075385,-53.71617244061833 +5325,-50.86905241733797,-56.88296783591848,-52.97958779986345,-55.18223724700509,-49.914387859629656 +5326,-54.41167877640654,-42.11871522095033,-47.11605659649226,-48.110464796467106,-50.93678462829041 +5327,-57.912395872614134,-51.53059888722801,-48.68404296774096,-60.95159544774073,-60.54200886545716 +5328,-54.951654736721714,-51.973736705069115,-50.37126701767351,-62.67197291391508,-52.42710740209997 +5329,-53.4952889193871,-49.54347080181023,-63.971007828399294,-62.83202498265659,-53.45246974061815 +5330,-51.41244119973315,-47.62168784564998,-55.89342024228573,-47.623981296922956,-61.683324839000626 +5331,-58.443274884442125,-52.97105407851727,-39.52108765034738,-59.021376183408634,-48.43448272773264 +5332,-48.398946356079456,-56.26251466026184,-48.143378109564985,-46.192439366811094,-46.27288886015995 +5333,-45.36422683452874,-47.9905743033312,-58.238584906728285,-47.232297357233016,-59.653157534698444 +5334,-56.79443149091332,-52.2201755411268,-54.89878500977525,-51.45649808403631,-51.68836664096063 +5335,-50.24440111220487,-59.05909850314295,-51.238951781888574,-48.06743900435281,-45.44961042329971 +5336,-51.37444993466683,-48.259999985132794,-53.201467019515434,-47.727366491725974,-52.928079503973706 +5337,-54.29201413059903,-53.42606023434582,-58.16645003045527,-51.740195498753394,-46.72691264616873 +5338,-49.85471294445586,-46.77344004667128,-61.93474046892729,-45.83449792746667,-49.910939550763125 +5339,-53.88285715771324,-43.87644635000175,-46.64112608751595,-53.58109813662015,-42.32820267596526 +5340,-48.6929401464625,-51.51643367769291,-50.24248662212292,-58.59573722626028,-47.8978354649684 +5341,-45.39873359578908,-43.275317621859024,-51.03502960461034,-51.23512412104927,-42.940874747060874 +5342,-54.73443604267613,-49.3767512784379,-55.20343564698203,-47.061622752032015,-53.87834622193815 +5343,-51.766394293238825,-54.24876785215421,-55.153910472631864,-52.88262254010654,-52.27507786339755 +5344,-53.85049611976629,-45.17420770600437,-51.06176335314177,-43.02710548987261,-53.117973632102554 +5345,-50.73243757765391,-48.448588571491925,-56.26533833007341,-51.48292283973959,-49.001875216977744 +5346,-45.9872711611977,-56.000327834850864,-46.09332301114739,-52.94841883916712,-55.24426625288128 +5347,-52.79330837563524,-54.10195756630515,-46.7544841278552,-44.079611292074304,-46.22364687819601 +5348,-57.546055317824646,-48.72491270410862,-53.44140243317533,-55.14053664924339,-55.67160413657509 +5349,-57.30404512508478,-49.04427762255346,-58.60264580210744,-55.54887424064533,-45.37427204683717 +5350,-48.89338917194072,-47.36274149455013,-51.97249656495786,-51.92321194910655,-49.61750357780953 +5351,-52.4695508871928,-55.689640952456514,-51.49511129633937,-57.02568016351564,-54.22126991854839 +5352,-54.89970075240797,-49.03406261686077,-53.66111987036995,-45.41146366774224,-46.12536573462116 +5353,-57.02224875809995,-62.81041169745795,-45.4793007976933,-60.85063182409006,-45.28793352842342 +5354,-54.25701490377295,-57.40017800103772,-64.69547260932772,-51.5271778282037,-49.611734521222246 +5355,-57.213103889676084,-51.39595397482636,-49.517122786375644,-59.73470421401235,-46.23883741174479 +5356,-48.68122355220134,-56.61093230794659,-54.53531342307964,-57.07191540811149,-58.79377800674481 +5357,-52.614204785674445,-54.70355596477459,-44.9526414428786,-47.56888248982995,-49.900613369321356 +5358,-48.64441767669531,-55.89138759510759,-56.765775636748025,-54.05375069801526,-53.32514639084192 +5359,-52.68015316721384,-57.66138768813525,-59.84601127805637,-49.887955324352156,-55.90803063643021 +5360,-55.33905501349028,-64.7512969418599,-53.413749213745874,-54.044533090855865,-43.0510346034031 +5361,-54.32945396809673,-47.77138965588193,-56.311433937868614,-46.95674494949454,-50.05303280952546 +5362,-58.6843488129392,-47.61242831047403,-54.44850664024245,-58.530259096233834,-52.55788136541919 +5363,-42.745303749624924,-39.57205796728862,-44.38299406469731,-48.21967319480297,-51.87567382042884 +5364,-53.24648664350491,-52.429880742080066,-58.82170879860165,-47.31346500361592,-53.508330265694504 +5365,-50.380223673762075,-56.30160399482619,-46.49369394323055,-52.77691277942949,-52.014300332215285 +5366,-58.86638518669034,-58.387484511684384,-49.41578532288247,-48.73023401982883,-46.218625812376104 +5367,-62.01660244151024,-59.78171157530569,-54.43773233913829,-56.13251190491267,-54.95941148155198 +5368,-53.209846233770975,-59.95609126145056,-56.17196549237548,-43.798691867507706,-57.106839160399595 +5369,-47.72817170819913,-48.58213529704643,-50.692704809680535,-54.79933968184335,-48.276039075261544 +5370,-57.59771523240394,-47.620232353359576,-49.15647060973308,-52.47309548677092,-41.85637028809201 +5371,-56.26037605329391,-47.606259287987065,-50.01601299114392,-58.39862303893892,-46.981820809156495 +5372,-53.3188483221736,-42.96550548078392,-46.9530819652999,-48.20414562599594,-47.510515067898005 +5373,-57.960845308587366,-60.633990990888265,-52.75946274247204,-46.39133046690017,-46.842928985937455 +5374,-48.91054435079753,-53.17817616816631,-55.83237751025671,-46.99765289610638,-46.1350116579682 +5375,-47.87345095753231,-60.835216747471065,-45.682289488699226,-49.76604938252456,-53.06958037644385 +5376,-56.20693457117566,-45.3863970806106,-56.315614799098846,-57.98122627648109,-55.10056639913851 +5377,-64.24057301555726,-48.45978993615765,-59.524395545216805,-45.928595129144334,-46.55942761455165 +5378,-50.806455188066906,-51.968059588318816,-57.41849553448649,-54.69237153491888,-43.884029844147626 +5379,-46.90504390861327,-53.401319013301176,-45.639324809896685,-58.434012466605886,-52.658223170754134 +5380,-46.325287834176365,-59.51872372156834,-58.991778086112404,-48.04510439572483,-48.500607623205134 +5381,-45.0991905478787,-56.691132764662704,-52.280499912938105,-50.545666871215865,-56.670121097240795 +5382,-48.918262332150164,-50.95645062306562,-60.7668484594069,-48.754314819918825,-49.22124615376411 +5383,-59.44778250156233,-47.16716243390526,-47.75015236723229,-56.47512968263997,-59.84965028926463 +5384,-56.88205766994526,-49.80154370149199,-49.28121977153288,-47.595178467222716,-55.75754408702717 +5385,-52.28279316919222,-45.41431481499249,-53.027616326078736,-58.191273541226366,-60.2503448250193 +5386,-59.492519400753785,-51.019424564071215,-57.52436065469934,-46.89639392201483,-46.28202711058781 +5387,-51.48821605405731,-49.78391222414867,-60.48871027331334,-52.51619898228909,-50.721952551635006 +5388,-56.732931684750795,-55.18692593777908,-49.41088947362236,-52.14686916542757,-64.75127380267051 +5389,-59.0383507113584,-50.74361086255755,-56.41322389500145,-62.652760901201994,-48.3437675092002 +5390,-52.937773556285215,-49.20790133783895,-53.947515358865346,-55.46185454622527,-51.81242991985306 +5391,-49.67913301299689,-61.410455447693344,-47.069937234017154,-53.02072320221295,-50.78767873434856 +5392,-59.475069368313754,-48.92418085617369,-55.75351373884177,-46.955841316732204,-57.97669739559231 +5393,-51.02012929168192,-47.58693558697632,-50.74653777670551,-52.81015480641728,-52.99975483685659 +5394,-47.02172408047558,-47.125742069825044,-49.974278366790216,-49.02859591282579,-51.77157298013975 +5395,-52.22619885195139,-56.34563542383677,-52.33392980856611,-53.943741632059,-54.1957014273653 +5396,-52.95099498403313,-52.62491611062327,-46.67587858321492,-56.116720668854505,-53.18381967733487 +5397,-51.10833055964783,-45.83830820148728,-57.06557743771488,-49.876460176191244,-55.1739259555318 +5398,-56.46926013089259,-49.15159386443432,-48.0262681974908,-63.87111280673397,-45.92513938764738 +5399,-52.048909379359166,-48.39239180231651,-56.65576901372278,-54.914523421545375,-48.371351092339474 +5400,-45.88015316276038,-56.05294522826754,-52.66657390804405,-49.004066313035146,-51.69493177262228 +5401,-59.55448639953794,-60.77995849431424,-44.87570700185138,-60.20600588548744,-47.21394878104311 +5402,-60.3095722401984,-59.27669080054736,-56.39200549722676,-48.318704636927606,-49.48302992410752 +5403,-41.07949461407209,-56.78451372384907,-50.0164941790736,-49.36587846610441,-46.97958748645652 +5404,-49.901203526718064,-50.07778559352232,-49.16032631519872,-47.28978208081352,-57.33804907299786 +5405,-54.02783419105273,-44.74014066669779,-43.68980479514956,-49.085574885289496,-61.15773241910613 +5406,-46.827368146477625,-46.606561338337144,-53.612111713452485,-50.98994180815408,-59.89649362295773 +5407,-47.3819508380257,-60.704449983841606,-46.138458264506546,-48.97801199832457,-45.35216111481735 +5408,-48.138790596578,-49.51962120035541,-51.76698942840661,-58.36343992771407,-50.818422885590145 +5409,-49.94761548422769,-53.137061116898984,-59.8641215495536,-54.494814288911606,-47.971223882307655 +5410,-43.46004121356152,-41.758833635070445,-46.975835327983894,-51.08105451403203,-51.89042225553983 +5411,-50.641462090451824,-54.72495192731013,-51.45869000670508,-51.43470960732871,-48.22076255917389 +5412,-48.41271380481027,-49.749426617730784,-56.10799452836437,-53.19120743202935,-41.557423193431 +5413,-53.451795404061855,-46.29602668718762,-54.47723970390702,-65.1636879976722,-60.728534692450275 +5414,-46.41409595386926,-48.96962711617619,-47.9893007450008,-54.834697223735304,-44.50512662669571 +5415,-52.81785585370186,-52.55987324795944,-60.576820842135675,-66.87296661913717,-54.90679813408652 +5416,-54.60675278767593,-55.25235490536869,-54.13286621527878,-58.09170646304818,-57.410266553684295 +5417,-60.8638363574259,-59.12584460900643,-54.79235964177935,-60.738489893785264,-49.94336501410845 +5418,-46.8926328859927,-55.41957442772769,-57.092039188306934,-53.59280771506829,-48.84270883918284 +5419,-53.23574487484729,-53.345162352457955,-64.63449311548831,-65.06646628449674,-44.81457687437341 +5420,-67.0462352433307,-41.02258133935134,-55.23639183611455,-61.32111631064722,-51.40951820280652 +5421,-52.551400516555866,-45.27550756403912,-59.15874935427057,-51.56552887682172,-53.08586423673615 +5422,-48.759870544089516,-48.07363045406443,-58.91538694726479,-57.664093435779805,-46.82956568139923 +5423,-57.248142420165976,-46.16655402429297,-56.83440963442697,-55.80985508698813,-49.47019555808538 +5424,-50.35720064534258,-52.33524792267525,-44.71083339104647,-57.460633426919664,-51.14239667021449 +5425,-53.30215990835007,-52.827243403906934,-52.85390981584468,-44.802397191241326,-53.82758085544979 +5426,-46.741630582756414,-50.31457706958712,-54.86750039262986,-54.60322287946068,-49.64549373831933 +5427,-54.66884092720032,-52.618561568993165,-60.764966718954895,-49.20323415706014,-57.970129963845814 +5428,-50.96817064234821,-64.88147677810522,-46.73823065114484,-51.606361163795384,-48.90175100505414 +5429,-61.83545079682829,-50.08643387519503,-43.858251695982126,-54.21241497155072,-40.9833914999248 +5430,-48.47374576737445,-62.20915616574079,-58.10041184433716,-45.287811967090136,-56.25501931306242 +5431,-51.28849365788241,-51.984180336477316,-51.21876441712494,-56.39601233377953,-53.152927292108686 +5432,-56.86415512614865,-60.05726375113105,-46.70840509802082,-48.908182672966305,-51.91024830171114 +5433,-58.59496310307011,-54.218423227947184,-52.26482326148611,-49.16623070155601,-56.41062428963509 +5434,-48.91923929731411,-57.5712666005735,-59.282859382920904,-44.966701596039485,-50.27707941716713 +5435,-49.56525199890534,-48.1356582054449,-48.881506384400474,-56.37636183461372,-53.23889627111292 +5436,-49.48652265419489,-49.593905885197216,-54.964552155455074,-59.723118816659216,-50.826493437055916 +5437,-56.731339552549485,-46.27033226633994,-56.100580574720695,-52.287888299090596,-49.392104133279695 +5438,-49.63403619658354,-52.60646360384899,-53.13312083406205,-47.76434741027266,-44.56349192243964 +5439,-52.40175778248601,-50.271871159625086,-48.425714888888855,-50.736808773305405,-53.72256703147792 +5440,-46.72990099887086,-55.807565218484186,-49.95657777982141,-47.2787285744866,-54.58142897639717 +5441,-53.38265550906579,-51.983506598630235,-50.7307736425501,-54.94877132715429,-57.248689745630344 +5442,-51.3200675001234,-47.839777202345196,-43.34245611237531,-52.23305002456365,-46.37455534121384 +5443,-52.995321211251095,-42.857142073812454,-52.85187249276253,-57.950815643054305,-60.20321276829313 +5444,-52.040457549054715,-43.94986304308108,-52.28098310195472,-57.78923955978161,-51.4810741216683 +5445,-51.24508351335328,-52.83193655950261,-50.95254361735642,-62.37219736634298,-45.95514924139469 +5446,-45.3381766250011,-46.77714353575367,-59.254183864204336,-55.88600434077073,-50.032893610961885 +5447,-53.42310614199477,-56.11709640070435,-54.730422914589596,-61.812807646875804,-55.92645866887661 +5448,-55.68821613361892,-57.26396904571083,-43.183851237052664,-62.39539446642688,-52.16151814001657 +5449,-51.71560731713274,-50.90302245454413,-50.02200958583979,-54.131035393016475,-48.88445117738384 +5450,-54.70355251206341,-46.507233663938784,-53.50843955750413,-52.930584828812975,-58.68112160550639 +5451,-54.880864716448315,-46.580528740291534,-58.195377013544906,-48.06346980195194,-52.58855325611064 +5452,-50.564820768633915,-43.010368688613895,-48.12961697355031,-58.80517321844191,-56.150656182560596 +5453,-46.92560249879341,-55.23061174426931,-61.933223761530854,-67.75253244014077,-60.04751657392973 +5454,-47.64489891599405,-53.140948819356204,-50.16726207671513,-52.30649004359075,-54.24961197224147 +5455,-64.9099932418104,-53.985915793085965,-57.232930488825914,-48.247269588713564,-47.34412922541752 +5456,-48.93497177144515,-46.37884621199881,-59.14086397196986,-57.64007596891259,-45.93164298671855 +5457,-55.55291800004924,-55.208756078930755,-43.546648353398034,-55.39802157728324,-60.092304114671855 +5458,-52.04731170371191,-52.82684692900537,-58.76323158342014,-53.79852201403155,-53.85805329597001 +5459,-43.712762627129486,-47.47573862007963,-47.57688472696698,-50.36049100783294,-53.31564390791698 +5460,-55.70743091435998,-42.17326716375948,-62.2468297737244,-54.582811121060146,-53.08938033249874 +5461,-54.31935681135559,-48.984438803578634,-54.02656201221691,-49.576848480741006,-46.46111897964505 +5462,-48.78059378313813,-43.324355576237444,-50.008302162834305,-47.21659318296539,-62.846693764986085 +5463,-56.27504572546607,-49.89774086100684,-52.60857961808316,-62.726101562606864,-50.80004154431834 +5464,-53.43863757688376,-48.28058353308403,-54.67051763457357,-51.087624080006,-54.37295921809768 +5465,-49.307046964087675,-53.14389404279407,-52.94982790043609,-60.61079635708014,-46.46941697375158 +5466,-49.23737517655881,-49.76118758743435,-55.15971578791937,-53.897611209014016,-54.53460327850244 +5467,-61.22619516781327,-47.62004710207721,-51.490918076874344,-51.6714728354239,-43.75596285215897 +5468,-49.56336407669474,-53.772173696154546,-47.29654886104252,-57.96977835772074,-55.03336698748746 +5469,-50.730109080572014,-48.01674939999863,-49.43767125598344,-47.191044631706966,-48.20003212284616 +5470,-41.89081021525209,-46.14942873950183,-57.6203760223447,-56.621538940823115,-57.90475032423917 +5471,-49.039981342540734,-47.48363754092046,-53.45493974160289,-48.07527975197216,-49.55035287283903 +5472,-58.927087124467306,-51.597778829398315,-52.42116620582539,-53.247125694094194,-48.761027891069965 +5473,-53.22005899547977,-53.58818647671411,-51.68407005199503,-60.452110398312215,-49.203894494435175 +5474,-57.546388436636875,-49.11643517854512,-60.90117140384183,-54.70662460263015,-51.10563647738762 +5475,-54.72482245259675,-51.19886448119525,-46.99889738437994,-63.03935885724508,-49.746525300465585 +5476,-53.733324641998706,-44.956046464181135,-58.483618679942424,-63.21871139448233,-51.3571851412346 +5477,-55.82759822213422,-62.52761864232059,-45.67988997966645,-56.63594529085787,-48.93716266726964 +5478,-51.52488130631853,-54.369708427004326,-61.26521543482606,-58.9597007490769,-54.85158729481178 +5479,-47.79396131652572,-47.69054224583148,-47.10316675668067,-50.84049884334238,-58.07173245377279 +5480,-58.72770441440188,-55.91102364408283,-45.10019235076618,-57.1000004633918,-49.62792141946311 +5481,-47.2037967996107,-51.85332507770637,-47.49839951832334,-55.282701998940766,-50.85186142880438 +5482,-56.74789172223628,-50.012938022359414,-51.63267404072358,-50.87864066235722,-60.0023713911297 +5483,-46.62109252290242,-46.83877322905184,-54.17541073476598,-54.02194224227689,-50.387695782041305 +5484,-49.12758478981908,-54.44763515869232,-55.110527065722756,-59.70258372609678,-46.2664925410473 +5485,-49.075377928885715,-48.88259377013007,-60.32789692589693,-52.433287997905865,-56.534035667394704 +5486,-44.54479422442313,-49.24997055085779,-51.43291715146624,-55.013887723201314,-56.76254525788868 +5487,-45.5817776080519,-46.4257951485399,-51.45372237993091,-45.3075516049209,-55.47963503383046 +5488,-48.618430620815566,-48.74036391403557,-57.174704044691374,-56.629079343167355,-55.00300817373343 +5489,-45.12400252010444,-46.47390359523876,-61.995713633781534,-48.72507101614467,-53.85914707013508 +5490,-51.02685968841939,-61.33483290964537,-57.97256445185109,-57.824493772667864,-42.41511034931786 +5491,-49.99755558460737,-44.0942467170879,-49.67848622498264,-62.028159710429364,-51.631303033237 +5492,-58.571578199974596,-55.125216769755184,-47.05033668217924,-54.60029801146055,-49.7704187713028 +5493,-56.02729178449382,-54.940971479186366,-48.582626100602326,-62.28762081386134,-45.70452063581006 +5494,-55.56773844827236,-51.38834930319264,-49.02955936107131,-49.2969820597666,-45.122141705743346 +5495,-54.84726165636901,-55.95325695189813,-53.955489630494604,-58.63614337120213,-49.16375825374677 +5496,-44.04615320569826,-50.95978075602412,-62.890168822343824,-49.307088279692884,-52.968632264561364 +5497,-43.22716179518225,-53.3254129349907,-47.99247305937141,-57.16523978029451,-54.53676216933599 +5498,-49.41794376612196,-43.67236945401281,-48.64193656327894,-52.53218368779355,-43.96419788778443 +5499,-52.6036348125172,-53.90481399691622,-63.18242917096662,-43.320933843397654,-52.4747891022015 +5500,-46.03116529774624,-42.95797323460223,-57.550845060942535,-59.8206029250662,-57.51518937140027 +5501,-54.01076827280597,-44.63102314774302,-56.18712315607765,-59.91633895686883,-48.047225276858065 +5502,-52.692911409668454,-52.39181173280628,-58.81577769615787,-51.16679799098114,-46.1986887976419 +5503,-60.63134292772353,-55.41167736232183,-57.49544126667011,-51.86895459247019,-58.43854479265152 +5504,-49.0011312615737,-62.78607771275643,-47.97556428021028,-53.188275480464775,-59.38806840355396 +5505,-54.92754020537556,-54.53270176176723,-46.735004808212544,-43.93313812757475,-63.57706606899831 +5506,-54.277426230627185,-49.19752139496917,-46.67343435575258,-39.897791357680475,-50.81752750596481 +5507,-49.90445815275714,-44.10125894617676,-51.54519609697557,-56.496636115266355,-43.712985271476434 +5508,-45.92018267875368,-49.750150720112295,-49.33325647689068,-58.859456058720426,-56.50848327098912 +5509,-45.15416228481861,-49.53568147205364,-56.88372175108098,-49.130692879541954,-51.18038099073395 +5510,-53.92969840838859,-44.71536358858123,-54.8932860177067,-47.92771950820591,-48.52989552529689 +5511,-44.809118893437606,-50.636375199281765,-53.64388022561973,-57.22575441070722,-47.821153424202116 +5512,-49.24854574918208,-45.64183957239994,-44.955669085789744,-48.35638932347483,-48.11965857733336 +5513,-51.275897073686494,-49.83253928284005,-55.519193859217644,-56.69088556144067,-54.06721832798556 +5514,-48.899683524384855,-59.41938443365701,-61.81184304390727,-48.75391968781865,-49.03511533498221 +5515,-51.60509329413733,-52.19009563673324,-43.81721868443314,-55.83799384300107,-42.48760930147378 +5516,-57.238823840315256,-52.36309679825564,-47.545892718237425,-48.24780521798188,-50.75784653993365 +5517,-50.12806373582213,-56.88831308249119,-56.67235869669032,-51.19940334998585,-63.488103240669 +5518,-48.423508976630416,-47.073844231016814,-49.167889088303355,-64.8410310612564,-55.03547280283584 +5519,-54.51467209016532,-50.08018317923498,-57.36087504005241,-58.860170499517736,-55.8341053874352 +5520,-58.34780294976314,-57.30144298729132,-49.08318588674575,-52.282981599231164,-53.79084875747711 +5521,-47.46379090036596,-49.76003070928597,-55.755920139564,-60.00302213670608,-49.16055909843639 +5522,-56.47873414123804,-51.249481284501435,-66.95526436071881,-43.79866473885084,-51.543245221239985 +5523,-51.26137078825495,-59.27963597242142,-50.293518602276876,-62.0669929004359,-50.83335554413172 +5524,-56.349979387718065,-57.173377670041965,-61.395557794377304,-53.22649820758188,-48.0330213967074 +5525,-53.296951906751,-52.505239629414426,-46.51408916264457,-54.04941269233095,-61.078183842381094 +5526,-49.74263072004151,-54.50576559925562,-53.04229131677404,-53.92947187321045,-49.91602763767149 +5527,-53.26328297167952,-46.48693925654275,-45.40120948289683,-48.11379936680879,-56.66542515446101 +5528,-52.338713982838286,-51.6570874801351,-54.802233518399724,-50.97310603860301,-49.56583670549567 +5529,-54.23005002516094,-48.62240357458261,-56.16789510292208,-41.46309693258841,-55.98228783685677 +5530,-49.08747834966941,-43.42999018260339,-64.04969167633779,-47.1517962613212,-62.35594189271801 +5531,-55.14857086867782,-50.10431009118597,-64.92550817155607,-44.80403389414336,-44.05045195148928 +5532,-54.7130915283432,-51.84553720540564,-45.16768240753412,-46.07419787636993,-61.89972178061549 +5533,-43.63340376980299,-50.33758189484367,-60.98385079096499,-55.89050278121958,-49.21360931812672 +5534,-46.862878188076145,-49.37900610889972,-45.30642274021825,-47.70866162973465,-51.01190522738879 +5535,-42.7964910812681,-52.09806640350745,-45.32354776072867,-48.56853280928769,-53.37383244680257 +5536,-44.59715140192351,-51.72790984787828,-51.9849624269974,-45.253374365298576,-51.276279248522776 +5537,-49.4207576140967,-51.46051257404721,-63.251140925278754,-46.222133291710406,-55.904095623198565 +5538,-47.5061466443787,-47.51869387213162,-43.6258993170593,-45.91256875083393,-55.48478172401857 +5539,-51.65909774843288,-48.334833105762115,-44.38623866545212,-50.68287334747504,-50.82857509251059 +5540,-49.65612004692018,-43.97249717643399,-47.868221153751406,-52.561040362972875,-44.65444754576264 +5541,-51.19635689212453,-55.24030766631915,-52.55843918928841,-43.47118435800424,-50.7798550539265 +5542,-43.73831728798038,-57.521315012633686,-49.454934550629176,-49.2998533469347,-60.8536014995259 +5543,-62.34107455831061,-55.484579330486895,-50.92663872844258,-53.41880766100613,-50.89572432188477 +5544,-57.50548119928713,-44.90417072164441,-48.741969471157034,-47.335005523729784,-54.27868218103673 +5545,-54.16834607787569,-44.24916111872335,-48.090522644088935,-63.90895188612541,-46.475117811049635 +5546,-54.4385976980048,-48.10991599119982,-50.12084198243055,-52.31220002915161,-59.59556925273832 +5547,-46.38856727756457,-46.3946141983383,-53.72908970135369,-48.07589676350897,-62.022069708714405 +5548,-48.10210104601314,-58.693698014293936,-49.327470162340234,-61.44764296912352,-56.50399617383049 +5549,-58.87293615786051,-50.53455083667042,-50.977245178704166,-54.00776608569665,-55.940491103591484 +5550,-49.4696188070689,-60.23376312994897,-46.442295641937314,-47.845128846016124,-48.910868312586985 +5551,-47.57487430176887,-60.15740416720049,-50.25465959489115,-65.13525019637176,-49.54363483875292 +5552,-44.452636642480705,-50.98420344302471,-49.40668449074509,-53.01883789000476,-56.68810625891416 +5553,-51.82459766836111,-44.51288074675847,-48.21360772326239,-52.30549372906364,-59.107572750782154 +5554,-45.51369353072656,-55.70230174833196,-48.344469434213806,-50.420116171378986,-54.85691016845965 +5555,-49.605157718829936,-59.103281935391095,-48.5338593166037,-52.133562274910076,-43.32907225521013 +5556,-48.26528817635592,-58.07925184838785,-51.36564151950575,-56.751090210469926,-48.7933928523792 +5557,-58.70560945677863,-51.65457593312465,-68.68165426672994,-48.16545962569003,-55.73059829969312 +5558,-55.48257176419019,-43.313818818877046,-56.139721026501135,-52.01300211509988,-52.65842818921099 +5559,-52.076368223544655,-54.11686030878242,-61.6021375641606,-47.47959593681682,-49.82926916415148 +5560,-58.07464366060115,-48.34970425018511,-54.649774059479356,-56.74867394623928,-53.43058401119194 +5561,-49.00466782979774,-48.030299299377376,-49.427910213901704,-55.1401528820515,-50.79621627117381 +5562,-46.711673641308835,-51.10664746508101,-53.461517213000505,-49.065775653016765,-49.200369372993734 +5563,-44.56308796805748,-52.85865308147753,-63.375366209643616,-57.14242345665548,-55.10171201794272 +5564,-48.16464881229257,-56.8829113293176,-65.33729092455553,-44.97557407423561,-49.967009224008486 +5565,-46.50743932152017,-49.54995094784985,-54.530918845991344,-50.332707603356035,-57.84020264423357 +5566,-58.3300800970913,-47.93183031834394,-56.78453750211341,-61.147135455411565,-64.00840434792242 +5567,-58.66356834434266,-54.787604358054786,-57.45730779220973,-51.97287590798125,-53.32923018634056 +5568,-55.89485215465151,-40.463630062482714,-48.54158469603544,-53.89774683809408,-49.925934795244096 +5569,-48.299715452869854,-56.06095797458379,-52.26110638592614,-58.45835376319501,-54.74231573340045 +5570,-54.872086376342274,-53.63677862687245,-50.917978613799,-52.194568239706136,-50.729184787706664 +5571,-52.12494760812935,-56.44207062832917,-51.54182761606129,-59.5717714818823,-45.618126857617106 +5572,-44.61353888225301,-43.06999024601184,-43.81284132678741,-54.49171064595484,-52.0627713247036 +5573,-57.26018838099392,-38.034741689514874,-56.916653999879244,-51.32394172176483,-46.2968542205163 +5574,-64.30185569287383,-51.77857603886924,-50.130695739846146,-47.998580538042084,-48.780319991484056 +5575,-49.697029595667104,-55.47600336299879,-58.58644132928316,-53.808613349720176,-46.80218263062369 +5576,-49.18783229749674,-54.7633704383966,-55.74735715701493,-56.80571307881213,-44.50729030339333 +5577,-56.08604569451491,-45.36222164090327,-56.343240101086614,-40.75949953465937,-45.78648164895725 +5578,-52.10033721725189,-50.483528507658455,-62.188492000027566,-50.8839314825198,-59.12654348831016 +5579,-45.443895538291834,-57.82476516974906,-64.39729530593138,-51.7562161723209,-43.04259186738627 +5580,-41.06937074366846,-51.52975366650993,-64.00978404037582,-53.26361848335356,-47.38864941917525 +5581,-57.040756496440046,-46.27429122028574,-53.29321664342873,-43.73573083656006,-50.9399661292307 +5582,-54.58534609393158,-53.17816005698752,-49.51832228048928,-54.76074975648375,-41.80185018602847 +5583,-48.06790607881241,-59.495632615343986,-53.85984781767589,-58.63932276105013,-48.19763761344698 +5584,-48.28608095306706,-46.02674009673399,-44.378792147833494,-58.36775527667649,-62.92385158556027 +5585,-51.009894041946886,-53.300316138141206,-58.72364725730395,-57.17919670670299,-54.86284054082322 +5586,-57.00942860577062,-56.13792943894389,-50.61329988946794,-44.34429295794147,-59.600643035112235 +5587,-60.027203437088154,-46.69165132613851,-46.11678541813748,-47.441123047585585,-49.47401233330571 +5588,-55.63312227843727,-49.279975391649614,-48.746901291184585,-53.28366457153653,-43.60380216037485 +5589,-48.090538738361516,-47.85957442164331,-54.021309903070794,-43.66346273127419,-44.05806000052363 +5590,-48.876995448681384,-48.88955777282166,-49.40461592750291,-47.35924161060996,-47.02087757812512 +5591,-58.694077610313386,-50.11448735662949,-48.77938263254318,-54.54656942229303,-41.90598955435058 +5592,-52.644507878801065,-61.518378693339436,-54.13016952028234,-50.642293760701634,-52.16214594429526 +5593,-49.439650185156786,-49.14622292276863,-49.39332098242635,-47.22587723671513,-52.23635113341381 +5594,-54.612421139793895,-51.020074040727394,-53.575553402716935,-58.5380467713057,-63.41189369683502 +5595,-48.28302775485017,-58.917945320201376,-59.34428646412365,-50.06342409074993,-52.020755777356754 +5596,-50.895552648271405,-50.03955703268231,-49.77828246438899,-47.2218896938346,-51.114069641719844 +5597,-49.02647918538867,-53.18654950483832,-55.14561078875234,-46.26532465862026,-50.80715544796676 +5598,-52.41737011707658,-46.84161422599619,-49.83929507438521,-54.97631327040437,-59.22247266639753 +5599,-49.524742379364504,-54.40930379521336,-50.19728158385732,-47.62978324760451,-59.1594983631628 +5600,-52.709355828068034,-50.42537353747502,-57.07264494595354,-50.613884794596025,-48.528491143555705 +5601,-58.23560788154422,-58.419086236453204,-67.32832952084011,-51.76789198143659,-42.9284411699896 +5602,-52.67778666885675,-62.15877187960395,-61.1190177354794,-47.154117906019835,-54.701560739608 +5603,-43.16830216416524,-58.495541080103195,-53.41672724246353,-52.893572630601675,-50.44736529147347 +5604,-46.19645334956677,-49.69370805994985,-53.65327641503345,-57.020759394496366,-57.26283103144398 +5605,-54.56594633561578,-46.35448188310677,-50.74995738305094,-58.714298058341,-41.68600431745669 +5606,-58.87285913803777,-53.62840095315247,-55.0279921295833,-53.3715196682505,-54.14572754486548 +5607,-47.73693022029468,-43.22646211343005,-53.42402307602077,-56.29863842869598,-50.7767879675242 +5608,-52.78431807007243,-45.41319314165723,-57.488377035937674,-51.79689276276327,-46.49625935965638 +5609,-56.996762931607456,-51.16286235521751,-51.979728011700296,-59.29100918394144,-47.59350446835395 +5610,-47.20667776080738,-53.41960024846059,-62.12362068425071,-60.805041093729464,-42.43886417120404 +5611,-59.267263324147805,-58.16863770050743,-49.886645314287314,-51.5226697233029,-56.79056464611915 +5612,-54.17039772310459,-58.10389804103921,-50.215508768204195,-47.30625657183669,-51.88520166139142 +5613,-50.269417754587735,-48.448842571195534,-58.656061978010236,-52.589312259506265,-50.37017439607367 +5614,-49.33878608663063,-51.85162184833219,-51.43924693690968,-53.090985913057274,-53.72695783230337 +5615,-46.992504061625986,-46.983511973736505,-57.29741823492782,-47.32111302200133,-61.51200896728911 +5616,-50.34046624004475,-45.28159694120209,-50.59903542677203,-57.37553556390432,-43.678792680281674 +5617,-52.06070404835634,-57.717506831973104,-48.681022076184135,-58.14469594171805,-51.92371919630149 +5618,-49.720662921415496,-39.70687695916357,-51.25253674522965,-51.06198806093433,-43.457471313407574 +5619,-49.712912912486296,-55.70970411736568,-42.014743634471905,-46.27010205279784,-55.023997627689845 +5620,-51.87790193117668,-48.87420499095464,-57.05767505243671,-54.02876805924517,-61.17090421419272 +5621,-60.38061505377371,-58.39846055699201,-52.26874553138185,-61.25955922260976,-45.398583904717306 +5622,-44.992903856804965,-54.67005038075796,-57.39595205407016,-53.927512615225766,-49.26684656249596 +5623,-51.961049572052055,-55.91737901570939,-62.60260456535962,-56.87967261922858,-45.87075057920004 +5624,-42.61824763372029,-61.39325773023506,-52.84672714768304,-43.42710289996766,-46.436166025199476 +5625,-49.21288682457656,-48.423802495660716,-45.31913891634267,-49.44414989783244,-51.05337910635345 +5626,-43.99787236622001,-54.83105813719261,-55.787166226949765,-58.60172256205465,-55.539764232048064 +5627,-57.32532479023391,-51.4079123345256,-56.05208363183432,-63.21482938654584,-59.490275399219676 +5628,-55.85502577552663,-45.54055602751215,-53.92540555367453,-57.05608576480375,-42.33741979700413 +5629,-55.27578646158496,-45.77782913401464,-53.44481456418108,-59.685346301216086,-61.35794885790193 +5630,-48.990679547564255,-51.649096730526466,-47.67856957570768,-48.73626647094311,-54.480943990213525 +5631,-45.25453343848845,-50.695180645758626,-44.852925781930864,-46.40772262648551,-49.24273022649231 +5632,-55.466026079215936,-50.785277041883475,-55.79745859962516,-50.38866004089022,-48.13078771159032 +5633,-47.42266300310146,-54.36904939544733,-51.03883915512756,-55.062302391169744,-41.33488610938649 +5634,-51.186588663587806,-48.49526579868321,-52.53729235440582,-55.89763245833185,-48.739414354207064 +5635,-48.689185641358335,-51.47471689430464,-54.94425074863076,-50.770272901032726,-56.68698282927527 +5636,-42.890290233051005,-53.84500824391509,-54.89499691535572,-53.289642740291775,-47.67629684578537 +5637,-49.802569268935024,-55.97235412062712,-44.1791316070175,-46.31612755972219,-52.104606146232356 +5638,-52.57829091498616,-43.90141147634871,-51.12118596357592,-59.49557778800761,-45.500197792963135 +5639,-44.98219308093632,-53.84933405560838,-58.958818282002746,-48.67105658311508,-55.17217920819815 +5640,-59.98939569927803,-50.20021152710879,-53.81968285020613,-46.955375108295286,-55.53749418620825 +5641,-48.11547694241405,-49.34416995547919,-46.43607355483753,-50.164664103862805,-51.68392120787938 +5642,-58.77148479422682,-56.43872746197708,-57.185785291651726,-48.79308912069514,-42.10567340964874 +5643,-42.68246191379656,-58.5150625908171,-50.430052390359016,-53.019018512476514,-61.80326538047619 +5644,-52.11741883860569,-55.63341624764428,-60.790373690522294,-52.92032921640648,-49.1789218479347 +5645,-63.28997969141483,-46.91748192840761,-61.136621229209474,-54.64516334293185,-53.92209409189776 +5646,-55.24802043455538,-48.45368478622813,-57.53276636217835,-50.46518282970063,-46.44417975435905 +5647,-52.984110128914594,-45.59685165297585,-51.126747842478316,-48.19001467357098,-59.79022321090538 +5648,-43.774072666511294,-47.72219167823651,-58.32349181487395,-48.467435588712675,-58.28488842462993 +5649,-54.64790518770965,-51.43580829466913,-51.49537098479812,-50.87542758791424,-56.550589898394044 +5650,-47.26103278426549,-48.94698226346834,-53.32462279497956,-53.77229284831799,-54.37978431747847 +5651,-50.63753003412165,-55.3717795651308,-51.116157395071035,-47.56159134913188,-45.32787365586826 +5652,-58.126443711437496,-46.54370713814831,-49.92074715258147,-61.49200396285514,-57.828167432007035 +5653,-46.979891057466794,-50.27144945694426,-46.05564945290095,-60.543595215844306,-56.29003792044291 +5654,-63.77101700590876,-47.188342183288825,-57.12961286391905,-49.390980698087816,-51.31445972940377 +5655,-48.9624053661815,-42.77449413289148,-49.26270655507293,-53.19293170874338,-48.56893880811985 +5656,-46.40710340388775,-54.60906495554188,-45.661123658879184,-49.84877010858197,-47.665235233441635 +5657,-62.17777277094771,-50.14962223854531,-47.898552083554584,-49.43631686085784,-44.12670897174503 +5658,-51.28926906954855,-54.12706922520704,-45.132000185139795,-50.439151214257386,-56.26759942026305 +5659,-55.27736106133433,-42.99221867011115,-44.07789130624497,-53.859034401808835,-55.00006111084597 +5660,-49.345588130627235,-49.104759974154746,-53.40944816626957,-54.672954724257,-46.36563179873216 +5661,-53.99303123748736,-52.63324070208429,-49.493834592541546,-49.75236588185957,-52.33835404220253 +5662,-48.73573005438713,-55.1372454788422,-51.871473036874015,-50.281206726086204,-53.30102140843929 +5663,-61.20108283707047,-43.36887339787099,-48.620102457884585,-57.48751274762941,-47.600698575498534 +5664,-54.90468069515936,-55.3899561487908,-53.4690485028817,-50.70613161502618,-50.18488371427234 +5665,-51.60975763943639,-61.18876592565256,-47.83415536588608,-50.9650451711871,-54.19508953512754 +5666,-50.7316723793213,-49.80781379692748,-50.645394696015586,-52.875860518090256,-48.59037192122393 +5667,-51.706642011854505,-47.71424990084177,-49.68506146229081,-47.475496988665306,-49.847768191140354 +5668,-43.140540242429665,-47.88470438395362,-63.34897164122207,-54.07288884676084,-53.4001349252689 +5669,-50.041265577005476,-58.11265044654423,-51.74284821607468,-51.34702609592698,-47.99481880710797 +5670,-58.029402167690016,-51.6038028725795,-53.38319034509722,-49.66774260343372,-47.764483139593935 +5671,-46.966643189365,-56.223931775960715,-48.199819973134076,-44.62646155668209,-53.95661569690497 +5672,-47.47413737363448,-57.64061546793386,-47.266295441236,-61.0016052461385,-37.60149495048026 +5673,-46.241265190014765,-53.798969650289095,-65.27106163171673,-45.630941528660244,-45.85790205130697 +5674,-56.90666836135425,-60.53489573535889,-57.92090871985429,-54.74195891643278,-58.938479326702634 +5675,-54.887571572393064,-50.96062894871261,-57.17792938743468,-59.37709460407995,-47.2649199696136 +5676,-47.76065282699573,-51.24475876451984,-47.41917656882949,-47.06515634348498,-48.254384000786445 +5677,-53.21673368669079,-48.36460850745024,-60.28142359339309,-49.695790764745375,-43.56648202235055 +5678,-55.386229408065645,-48.148826308359446,-62.34605685639122,-45.12066171856762,-54.49462970391149 +5679,-55.840732461556414,-49.605851913507344,-51.49064505078969,-46.02939185696158,-54.60863918568152 +5680,-53.395789546465934,-52.24441008723258,-48.588940615587106,-55.91354187356569,-49.27738891451858 +5681,-50.65002951215173,-45.77254210639354,-48.60874323815746,-51.55407942755371,-52.7593999836363 +5682,-52.940878907517344,-44.509718104729544,-49.45969341605205,-45.97771091961077,-54.4624326631157 +5683,-59.89466534955457,-45.48512407197794,-51.02459039532458,-43.707570757450455,-51.40388804056143 +5684,-45.720262089194684,-51.47425446934171,-53.175975245231164,-42.63658462728089,-50.61752354680698 +5685,-49.98516644231442,-61.65084423682704,-56.054499142406286,-47.09954028101569,-45.303461221800774 +5686,-42.35210357356287,-49.939787634751724,-47.864811027630935,-54.161157558638955,-48.19718554858294 +5687,-47.193499843042176,-53.251712877761555,-58.83575711091248,-53.09074238036035,-60.52624850224136 +5688,-53.118134185223695,-45.65192612693769,-58.96209700464844,-43.816882549325335,-43.54994346335851 +5689,-47.666883433225145,-58.09672194945378,-51.76297507553388,-51.68577542936319,-45.97197941005766 +5690,-61.827814282682475,-44.65785310270307,-54.09891378501323,-42.29383765522981,-48.80811822077693 +5691,-51.879268696418336,-53.33119738346095,-58.45826943149765,-51.76766083857038,-44.016512958903476 +5692,-41.89034344615247,-54.87780239907791,-53.82109529836368,-44.39299272294414,-47.536702738638816 +5693,-45.85899495229623,-49.383309236168195,-45.32086807331838,-53.84679473203134,-51.269372586941394 +5694,-45.630642395435515,-57.152619373669786,-56.141811886554535,-53.43010059019447,-48.735708596462935 +5695,-59.333877438279835,-49.14693494877015,-53.93078521735928,-55.22703769630714,-60.352118283424055 +5696,-48.27607360677775,-45.40245178894573,-50.619132224857985,-51.77700916427642,-49.21947063917862 +5697,-44.42638829062584,-46.641516668990946,-55.97922817225961,-62.870010604294876,-52.62150016092058 +5698,-59.22727052011555,-56.0392490607413,-54.97708397231762,-53.21484933135158,-50.11244238072947 +5699,-53.98150119732824,-54.04266421877463,-57.165240646635,-63.4302405534758,-58.57855313229658 +5700,-44.558714140751945,-42.955837303993285,-47.683898292015044,-51.779053028235474,-50.64963711767367 +5701,-49.71385038619977,-39.55726514367564,-47.08741917181163,-52.34178135785112,-50.76778410045558 +5702,-54.08756386579424,-51.45089299263043,-48.18184161827617,-60.39713947889391,-50.614746581411225 +5703,-60.04474657624176,-53.70571510518829,-52.210700247081085,-63.584236195175805,-55.13540323322421 +5704,-57.859714602204654,-49.127481397687134,-53.84869213248542,-57.98655122050957,-49.94263478579693 +5705,-59.114156713706315,-57.45106115228682,-51.49532997222996,-62.03057036114392,-48.57111845053124 +5706,-48.985630465418296,-44.994240132365434,-54.51958323546068,-52.41318719525012,-48.514606150282795 +5707,-55.840867926744906,-53.36447263143289,-57.340246526549095,-50.09682639154305,-58.893611402071286 +5708,-50.67931250248493,-59.729246890935414,-53.95235794251692,-56.701990384750644,-54.813510032726654 +5709,-48.36986532999497,-54.10212736555973,-48.25062877256199,-54.77039791705869,-56.446530155624956 +5710,-48.08280697963853,-55.69563258107189,-51.63061764740024,-49.316925890776034,-55.62785066270857 +5711,-45.072302138844414,-48.27632855224804,-48.16080255524814,-46.3011831900701,-48.318548077683175 +5712,-59.071778864387404,-51.79433243754883,-42.46175059698134,-52.467542304974394,-50.25937038650194 +5713,-48.55503124754426,-57.46716463024511,-54.615686500624655,-50.406130300841575,-48.74010838335083 +5714,-48.28420906925391,-55.47188009987078,-63.31801287121249,-54.36509124450484,-44.08232086723489 +5715,-47.03095683461227,-56.72281755611921,-46.73543699867149,-46.90604789161346,-52.88347871690958 +5716,-47.6683990823274,-47.60290074805708,-46.900814254752284,-50.77118926722082,-46.056030049732655 +5717,-49.449560863141016,-53.79036207032695,-55.844017002103946,-47.19690973076063,-52.93969898794799 +5718,-55.19042347491377,-44.29531430635075,-62.22672997545486,-54.0746617699218,-46.448022693867344 +5719,-47.04941492827377,-49.76437578042695,-56.87839321516653,-45.36291980317366,-59.0459598941426 +5720,-57.9154906202023,-46.100432456336435,-52.20427354419948,-50.854245795152856,-52.034217636646154 +5721,-43.12708675293875,-55.1860852297605,-49.9181857321997,-62.18125784817171,-51.8434350807516 +5722,-50.7410159939679,-45.83628837065841,-60.79275196407649,-51.396777615188995,-50.255118474137255 +5723,-53.67093243813367,-46.9911476105065,-49.44973376273515,-54.94157805810361,-55.135587210084864 +5724,-50.05137662811246,-51.88190978731659,-47.49078531220718,-55.35653514031304,-50.18174296356277 +5725,-53.87387062749203,-43.441388582093175,-48.43397962688837,-48.35009167208097,-46.41422800224878 +5726,-44.69921938933922,-52.1149575727144,-58.444242888840826,-58.545721254409294,-57.063285038693515 +5727,-44.13712788941164,-60.30934959193477,-44.728634171667544,-47.11307749074873,-57.73656405005855 +5728,-51.294891091133,-59.753773867740456,-44.40033360008435,-61.5972504602772,-52.612124696763864 +5729,-46.17723827889484,-56.11123794045431,-57.62739592697353,-52.28750832407067,-43.686147642658824 +5730,-64.11188098725869,-42.50813677495053,-53.45282491944146,-56.97443742017234,-38.771325987854034 +5731,-58.39201600334162,-50.4909254113586,-38.992094780384406,-52.99126076279331,-51.74796735733616 +5732,-49.73327508123586,-59.63523149336392,-49.741416227791035,-46.81715763434591,-55.32209457996461 +5733,-65.66869871062009,-55.28400686920338,-50.747173646543224,-50.589371031782065,-42.0310782909404 +5734,-47.76300609091129,-52.06320971621915,-47.33788985250995,-59.672796838538204,-47.268893010114084 +5735,-50.54635407883718,-55.298838104431105,-51.21019564338404,-56.99980966533915,-43.910295998937315 +5736,-54.587687473417695,-45.68214740541635,-46.50678806693236,-58.031085511751975,-41.10524181960868 +5737,-43.79973199720006,-46.89583576135181,-49.695981149388444,-52.62841270069731,-41.104139006805156 +5738,-50.472958318601584,-45.155430250515025,-54.686743439970385,-43.155421077965265,-42.36394499658648 +5739,-48.97527925006651,-62.88718310270889,-50.77107822310015,-42.44560161667401,-58.04398490519876 +5740,-49.99445179479255,-41.680679369957495,-52.80794484017684,-50.19703208397818,-51.26198038643799 +5741,-42.0517563358211,-54.23303454010459,-60.059540632213505,-49.38048832594314,-45.69898954798619 +5742,-50.84073162749909,-54.75980727844142,-58.62802110431569,-57.37291331180731,-42.343406521343134 +5743,-48.99347434111064,-54.94300741054058,-58.44954692269669,-51.98003506461517,-42.04778895515222 +5744,-48.58328314114861,-55.92933892062607,-51.58275959712226,-51.7907906105445,-46.36277705117595 +5745,-48.84869858617551,-61.27701920829505,-52.28199841619131,-47.27749500031388,-52.39847289824294 +5746,-40.04710338876066,-58.540806908271264,-52.435954275549186,-48.93725013903061,-55.95397670976648 +5747,-46.84010049324781,-47.89226903575787,-43.17849132130186,-57.0382351521111,-46.34688778781817 +5748,-61.30277698379917,-47.32899117035259,-59.928181289692674,-52.12964853624157,-54.11742505687311 +5749,-47.252816291579016,-58.89350737377004,-55.771439034799634,-55.00278305661129,-43.62117471681243 +5750,-54.14159327922999,-50.76433488599577,-55.990573871276524,-54.36825991304572,-55.28532693153773 +5751,-48.309924144481954,-55.93847023186895,-47.20946968286285,-47.22506996376427,-46.785961801414544 +5752,-61.3733789743872,-58.96707933839345,-56.60647752888914,-54.91132079789031,-51.96984317722227 +5753,-53.83988324511075,-56.929466218924176,-63.45083263105111,-50.964997705078744,-61.62978477584246 +5754,-54.50609356442892,-54.43880985111931,-46.858664994249935,-46.180071786884355,-60.92328138816898 +5755,-51.98298727856981,-46.37186140231841,-52.660612723740364,-66.55083510114581,-58.78309267973754 +5756,-50.70717252393487,-52.604296441683424,-51.3938009718515,-52.81247256767909,-42.23235751249044 +5757,-44.500698511308144,-53.24798422899433,-50.192238938068705,-51.76348394979102,-49.506070041847224 +5758,-52.19498879306808,-54.57030389708278,-46.97380655167096,-55.079490952624184,-56.26763170622213 +5759,-50.4906915796611,-47.131164120833425,-57.43449106742135,-55.50846706664182,-50.94915420248491 +5760,-59.23805243350742,-44.09400190040297,-48.58034238102669,-53.596563836031876,-41.96290845160599 +5761,-54.880038325484904,-54.46443861435466,-49.13258432869501,-49.85207046378598,-58.3860286445538 +5762,-56.475954866958716,-51.19840968516496,-40.322151912884905,-47.68993576337903,-49.2096807021236 +5763,-52.172218047406574,-53.945115871642514,-47.445116654597754,-54.60938169405691,-49.07299704423021 +5764,-55.587951546326394,-54.84483777329153,-58.75213309202868,-48.73862148363103,-46.14419159564179 +5765,-64.80054477214767,-50.84510691675948,-55.54625709485266,-54.035460173805134,-46.968466417433355 +5766,-49.93872732056713,-55.818540678013065,-41.269629329751695,-52.22652703735636,-51.078385798496704 +5767,-47.477277178225364,-46.24156421318631,-46.82740534011871,-52.146256825141045,-50.77610623364774 +5768,-49.75337410939095,-43.44367735125193,-53.064470924287185,-57.38297865205622,-41.569218394443524 +5769,-50.64589517866502,-43.69560172002968,-56.12785248596954,-49.00172108108039,-49.63094928283481 +5770,-52.636317910408344,-47.22918985761842,-47.303934360475104,-55.488722573074746,-51.72541697083763 +5771,-49.41073541062557,-52.19322443905771,-47.55591568036833,-53.87899781435996,-62.50770450562723 +5772,-56.71859696830327,-42.7080190536456,-58.60561861630446,-60.40480130095338,-44.18660697675916 +5773,-52.359306133478604,-50.175789395479654,-44.93274399986433,-57.50636245254147,-44.643379630800176 +5774,-50.41050579338601,-51.562350726798016,-51.92905253924133,-56.060395969223094,-49.72217946898296 +5775,-52.28294230776686,-55.488307063786486,-53.790285333249145,-42.87589285940599,-56.046130960733656 +5776,-51.45575403722218,-53.10396012063784,-48.32439898106762,-52.571326262817664,-45.92099664822746 +5777,-53.744401703902696,-53.00792856039101,-56.19850532788956,-64.2586078353525,-46.86196659606918 +5778,-54.31244376637248,-49.677261092406596,-56.5228475351393,-49.54831590096316,-63.33317799272113 +5779,-54.46963102031813,-46.406386521819286,-54.73263542624153,-49.091556983597684,-48.83931076086157 +5780,-45.881310673166254,-50.66481992687357,-38.210734640142064,-52.201569953434685,-58.56298456030997 +5781,-46.489693290436676,-50.24858034269155,-45.928621505774615,-56.258039037491486,-50.43620309796384 +5782,-53.810356926114714,-44.88279661608867,-63.32105648610275,-49.47635301482136,-54.01624504903675 +5783,-60.350850617722514,-55.48281301555293,-42.50405483261262,-49.30121722603166,-49.785597801132894 +5784,-41.94167376148977,-56.16707781709162,-60.60588395432116,-43.445147331007995,-53.09416579258503 +5785,-51.61276561034317,-42.56610976370678,-47.37990790890931,-49.46061347453484,-43.476248407932864 +5786,-55.90502633706013,-46.91729848479269,-54.368112446450496,-52.21223815987444,-50.87602719347698 +5787,-49.270497464937485,-43.57086185688912,-57.51100659453824,-50.739535978418374,-50.22238972086636 +5788,-53.021417994883386,-56.520537568978554,-56.397153803582846,-55.77743682967212,-53.34313759861879 +5789,-58.91174434347821,-45.32892709359484,-55.35216226632957,-55.68244220234358,-48.40717554624351 +5790,-47.5181087213555,-45.4449059968291,-46.18707179166921,-60.23652180681966,-42.27366066862947 +5791,-53.657279160581,-45.7231059907831,-56.879157660982486,-44.29194715953206,-50.52062802608794 +5792,-49.634710335806,-41.46854458857943,-57.86213296327794,-43.792882538783076,-45.161412043751305 +5793,-46.374843218967534,-49.93610555757785,-47.95474053224908,-46.230967416395664,-51.62750940576823 +5794,-43.81277469106143,-59.667131322494846,-40.677470692286995,-47.94463281383575,-50.29682742406534 +5795,-47.65360551381636,-51.212213899462576,-50.377189370590685,-45.77077122081283,-56.45961003371604 +5796,-47.66944071899953,-44.169432992317184,-45.76208553589911,-51.29376100087639,-51.75472595707511 +5797,-38.539732863319706,-42.10692121595947,-56.8196171067334,-61.79515502340403,-46.41402720788489 +5798,-48.710234082435164,-49.365570264118304,-51.05058652414438,-45.08171407298276,-56.386556480568295 +5799,-61.92145960984396,-42.007959504385745,-52.17272251753515,-41.26719479205996,-58.680377931292405 +5800,-51.14710696539977,-50.862024261253794,-49.95774483554233,-48.19433730924309,-45.061044351644846 +5801,-46.378866477622374,-50.924496682347055,-46.889871479630386,-46.49353347360004,-48.63360200724567 +5802,-46.212261237717534,-51.5618730233579,-55.473748217180415,-57.19008017654077,-53.61272462195593 +5803,-61.60642819050911,-44.780840909130134,-52.6197431406866,-66.2299859249701,-43.23889978410216 +5804,-52.7934457367219,-44.69482434102453,-48.16848930562202,-45.69871342335881,-60.204319804668906 +5805,-47.0405373691175,-50.919014128073684,-55.25192935865047,-49.59133285078625,-52.32009292352661 +5806,-56.3646998855661,-53.5622494081172,-43.989592325195076,-42.77587078923174,-51.20441773233005 +5807,-45.99106634754026,-55.72874153167396,-50.52835814251648,-58.34575746805942,-52.252739787907345 +5808,-44.55075130640072,-47.94050024818554,-49.25790279107752,-48.567392341116346,-49.43812264612156 +5809,-48.004935555001786,-55.00487636100409,-44.74348265073578,-52.62098517859899,-46.54116749622624 +5810,-40.36101993465126,-52.11591881422353,-54.4853416069185,-44.792522807199724,-51.252202360088894 +5811,-45.57383363696842,-46.55176381396383,-57.803626723771956,-50.112309754181005,-47.11899871986479 +5812,-53.779855812141925,-51.05789998012721,-59.97762822456378,-44.258430116912436,-49.65604515100371 +5813,-50.870815000588806,-55.45754156947301,-55.6510881352127,-51.95461383193669,-52.7411604011666 +5814,-54.544542798437554,-60.945849130457404,-54.51692962978334,-49.04674569885945,-48.19321940487209 +5815,-62.54317076245773,-43.80892291840829,-43.390356195319306,-45.25970773566356,-59.274067312219636 +5816,-46.85641112095503,-48.20062040838439,-62.00655156530895,-44.78454364162446,-49.866917222815864 +5817,-52.16184073797878,-47.74297842193234,-46.361707809374245,-52.46431422181982,-44.51816000554461 +5818,-39.52204249757933,-53.62042059726161,-55.2045896922768,-41.69766725296445,-45.43447749690877 +5819,-47.6600893704889,-54.07895877503763,-49.128185401509676,-51.80946167433578,-62.20764238368947 +5820,-50.59649419926854,-50.227708921886396,-50.7586110549432,-54.10332772917632,-45.036030320019705 +5821,-47.260828134341544,-57.202474795145946,-45.395745409558714,-45.688408486637314,-48.11789981413465 +5822,-44.53114264838839,-51.0535043881207,-50.090621564018264,-47.44041640269865,-58.55961311332749 +5823,-54.78852976940014,-53.09501954086182,-53.71203561370462,-49.067059069855574,-51.667870100826086 +5824,-52.08900539314601,-52.33814763189512,-60.68523369246196,-47.971885331106556,-47.953208842932845 +5825,-44.75697684343915,-43.84622809577302,-45.90822800471283,-51.945639497267685,-50.335440046151 +5826,-44.55429960619566,-44.945264762535736,-43.802277809851944,-45.78445683566926,-50.49902172749381 +5827,-54.30543884503664,-45.40639612478728,-49.96669347616832,-56.69037011963426,-53.48727968458504 +5828,-50.27715929636253,-46.636006549421836,-52.16098615982868,-66.42041320476903,-50.65247987159631 +5829,-54.992864097787034,-59.62257636074573,-54.37190762157293,-42.88550536568212,-44.143242737700746 +5830,-48.138539749352674,-50.4889064164991,-49.264962710696686,-48.492231882055776,-49.55208820051753 +5831,-57.9383795551246,-49.474560856426606,-47.854240038796384,-45.984313969100384,-49.02319097103424 +5832,-63.4122248452119,-55.36731235383997,-45.73862557446656,-49.69977344936722,-55.311434505301754 +5833,-56.441088906188796,-54.411637554061706,-55.3487194060674,-49.20523062403161,-55.831593338323515 +5834,-52.98386441200703,-59.48339797925915,-59.11062659113245,-64.53100433279506,-55.459143956224445 +5835,-47.87956162940596,-47.09251088009437,-54.19576312819574,-49.82466624283753,-41.79854864633798 +5836,-58.12700482458281,-48.95185143237977,-42.83323266029659,-53.04089468793816,-49.67073066327194 +5837,-56.01854269215677,-52.71654240372553,-44.806839531759984,-51.741998589589116,-40.50297572655049 +5838,-46.90128750815269,-47.5553775666306,-58.76345158160617,-49.53858581765158,-50.731344094502475 +5839,-48.55726543765768,-57.3788102829046,-49.990862360357944,-50.50523770609446,-59.460169358663734 +5840,-50.904833745047526,-49.422310212158635,-54.0304079820784,-59.543947982871025,-50.66232589546583 +5841,-47.7022733660183,-46.2454655443497,-43.605356117051855,-49.875039492843285,-50.44747419492868 +5842,-46.63577237094584,-47.94026754835892,-48.26784291642403,-54.76323866301639,-44.64949149117225 +5843,-56.42615305883974,-50.6421881684122,-50.02827798963179,-55.36362273587101,-48.200942948948686 +5844,-57.13692456607541,-51.86871283466506,-52.97642135500465,-47.66713116333249,-52.07741821606449 +5845,-50.50517238577781,-58.914973307267346,-53.100165488007704,-51.74311175499209,-46.45980821378514 +5846,-56.77404620766444,-45.37794159682107,-46.79208949975595,-46.71765603350942,-49.308334015007446 +5847,-50.846597721469166,-43.029209143816175,-40.544128290003975,-49.304440173492964,-48.672708381213596 +5848,-47.62494684696084,-46.999482124052065,-56.13514818793338,-49.57064757045371,-51.84599952112238 +5849,-51.285808375604184,-56.37095452182911,-44.05208187017787,-55.37291662134725,-49.06433936810649 +5850,-50.65789653422625,-58.07642647311625,-55.99011494471157,-42.23767048744649,-50.82578634156934 +5851,-50.64536119519839,-50.754123178595464,-48.792423750774276,-54.77314145198879,-48.37514397967743 +5852,-51.80010756496358,-43.894543680069006,-48.79855143435132,-52.65564305255686,-53.252433812194724 +5853,-54.7074700721148,-50.56651369354403,-45.33033754485669,-43.61523789942466,-47.7703709268894 +5854,-48.461092243997335,-56.44208852951594,-45.675584411200546,-45.21687798404826,-55.88091204848483 +5855,-55.58479592499564,-52.101610939278366,-57.47446050358449,-53.97516111287432,-53.17895562492398 +5856,-54.26996485572092,-53.71074038264804,-45.06804786952467,-48.19600713979947,-53.936934671611965 +5857,-55.92610062251619,-54.893468974882865,-59.622947367989916,-44.17395957115657,-49.6388547333367 +5858,-59.096650833375406,-51.94003476087901,-58.13844278093506,-62.36997350917276,-47.48199902004802 +5859,-56.49831785021659,-60.447779840220505,-43.383995537162384,-61.906358074978556,-54.73106601328464 +5860,-50.694933468323924,-62.06647471061431,-51.6821936636328,-57.833591058880025,-58.514222956026444 +5861,-55.217455857156494,-47.812139129895876,-51.43030495108371,-50.35246419238344,-50.49604669214342 +5862,-49.973911889870216,-56.9801227437043,-49.46680437423628,-49.88040733732088,-43.91600623697562 +5863,-52.99045576210023,-51.32171144750716,-52.84709089671812,-66.20196112069003,-55.56347527289593 +5864,-55.73036106973616,-42.21012946695885,-52.20511029204354,-50.062314828546775,-45.18150966232697 +5865,-42.66690009568355,-42.16889165410553,-53.98454118950916,-64.70575857074189,-51.805826758843075 +5866,-53.34085484145092,-45.319518513895154,-42.36646566669789,-44.50512882906925,-42.60994280610827 +5867,-54.28339366253755,-53.00022890295135,-47.53569239430135,-44.96074611007273,-58.11371867412791 +5868,-52.70366017846724,-46.38508570468707,-63.45373472698601,-58.23922717173955,-60.265363596990184 +5869,-45.18962731913105,-49.169783023362854,-48.44912105999144,-50.55399224562157,-43.4884857680959 +5870,-51.540594007322994,-52.846212574673594,-50.85716068181288,-49.5326704904669,-41.81845263467454 +5871,-46.87292731627731,-44.6826278006093,-46.488093576529984,-54.49148179522902,-50.31378279801862 +5872,-56.820774529686446,-48.590843205344235,-61.52940241159651,-49.08973053815516,-40.75846959390741 +5873,-48.77120106366841,-49.81631441161232,-44.47368239231664,-44.31195542868144,-55.55099594412368 +5874,-49.094439629897614,-44.32629094139678,-43.559431373503415,-47.263497942799866,-50.64258033936502 +5875,-50.11419120239939,-54.81714709713965,-58.07873363660432,-55.706397544865084,-50.63319232195138 +5876,-50.02561046993179,-43.48395447395858,-53.4915510282216,-44.707241379643605,-55.50205019046495 +5877,-54.37337379961813,-60.511020724871784,-41.725294058242895,-64.99427679043168,-39.15930577358173 +5878,-46.25699254482333,-48.8824242397436,-48.20072646678722,-48.68266992092132,-51.19744516627691 +5879,-40.38316643889396,-51.766196961477974,-54.26632474305419,-50.792019244326504,-43.35503026113311 +5880,-51.71369938299007,-44.49107423233663,-42.16658857680378,-45.41358969004951,-39.851927111039785 +5881,-50.31137252970585,-38.66840519902297,-48.989198212651814,-51.89251298997202,-43.91969687859142 +5882,-49.3566646094531,-53.055635945233824,-43.43448150015797,-50.917817612529454,-45.16838142286655 +5883,-55.1210185724784,-52.41557587797668,-52.28924025168909,-43.8079337190585,-49.29690024207294 +5884,-48.27885961683457,-48.74045312701329,-56.03199147937515,-47.31407799744117,-54.760545807447926 +5885,-55.203701665695924,-51.48492761525644,-52.165225663829794,-46.895731635778,-45.9480614302218 +5886,-51.26966154076791,-47.82466809095182,-52.831089007601726,-46.18654362284228,-39.051876283946655 +5887,-45.44456499444734,-43.96805475424918,-45.2190095163975,-57.86447119840514,-37.772108856596724 +5888,-51.38991140797911,-43.92553586150172,-39.4052194338513,-48.50089623773504,-45.80136424150589 +5889,-53.99738043552346,-58.84963089241701,-42.89274276000694,-58.61932126067045,-50.77521888412477 +5890,-49.92640734341084,-50.08016632117904,-44.40154480106783,-52.649871198803176,-45.042501773407345 +5891,-46.71497184200029,-54.62616407664666,-45.00869671896239,-51.61168181683977,-53.51491521752314 +5892,-43.042934195865776,-56.54548874111339,-43.58470141032194,-51.57927413227887,-46.63910466835401 +5893,-56.0722998761412,-48.870891806810356,-51.27147900840854,-49.85939757274693,-53.058323117858464 +5894,-56.92496112562852,-56.48328633214809,-45.91879656375712,-53.959947660333285,-47.950318120272776 +5895,-54.87115253020258,-46.7467029419348,-57.26404844120957,-55.85680377880933,-47.459413138312655 +5896,-51.941164540173595,-50.76441455817458,-40.376291749442665,-55.76438815909126,-54.17748465044213 +5897,-50.94837784135066,-47.90124685484221,-59.80690963658761,-52.162708368078,-51.581541448665554 +5898,-47.604571914869375,-53.49008767235332,-57.76163890617985,-42.55097355970618,-57.020441636721245 +5899,-53.73740973838684,-48.79574945279236,-50.915479062666414,-46.023941390283056,-63.99058688692915 +5900,-42.99123908770987,-56.34018192257958,-46.64647357628158,-45.766237826881024,-43.00295096379231 +5901,-53.951425405242325,-43.686281076195776,-48.46597203773767,-42.13493907526866,-46.847174902737386 +5902,-51.947308167256345,-48.98079360014565,-58.76761321230896,-47.580507712494025,-54.77894637544301 +5903,-55.32374030640364,-48.22476390229533,-50.71150124855961,-44.18887946846915,-50.15876178433139 +5904,-62.60590878642548,-45.76835089874004,-40.6710530002707,-46.671395590717104,-41.37944870464668 +5905,-44.19670190801094,-54.90922022356565,-54.80540398934574,-55.22863122561187,-47.100758753161294 +5906,-42.12109081616933,-50.712662897971924,-46.73530365564059,-55.98428086247384,-56.01841613400846 +5907,-56.10980390933024,-53.29002804493112,-56.82749495929601,-56.2099207103828,-48.39715156084081 +5908,-54.780722284331375,-49.46320828189625,-37.25612394062513,-45.0824289264019,-51.5777629899784 +5909,-57.10345832884871,-52.93447596673291,-50.09817358730013,-49.10289206352614,-51.19131518476573 +5910,-46.15046840297875,-45.53503549214641,-42.63460038379294,-65.96839841813933,-50.092281417248884 +5911,-49.170550305135414,-52.39839269931813,-60.02992316815439,-49.69454213234066,-48.88613310895292 +5912,-58.57317992146183,-50.48699307689934,-49.64528784319814,-59.41619594964273,-48.798500997708054 +5913,-52.11454988542982,-53.357841443789376,-51.29969839687882,-53.97037736302716,-52.82435858334208 +5914,-44.75309147197594,-49.5563855595895,-59.2391863625265,-50.257358329894366,-47.83167237800612 +5915,-53.16124312430586,-43.05133250459638,-57.85774522072261,-50.582846126333315,-49.09859102121503 +5916,-52.304335558248624,-55.41439071057056,-52.32417758193213,-51.50408139697312,-47.56115840626799 +5917,-62.64957865041831,-44.50378539944861,-48.47426985907503,-47.93997465358417,-52.46602503697265 +5918,-49.98817504356277,-42.76503378246415,-44.367435049511975,-47.69238910250965,-51.51369200496453 +5919,-47.01718395492261,-50.81604586323317,-49.97210266382427,-57.602523863948484,-50.42856190687992 +5920,-52.15648351910821,-52.68343129530022,-43.92794156158094,-47.90006668252602,-54.590098218883796 +5921,-52.358882312486145,-51.96606989187142,-42.48390363553004,-53.11609994924838,-46.40609668486929 +5922,-57.09921220537389,-45.75948104791489,-53.793549081879554,-44.935062852978845,-43.05423863543696 +5923,-55.19028116118226,-45.13170103979983,-45.94998490918856,-50.74355713076468,-55.50294481868664 +5924,-50.10759081652346,-48.073750289817156,-46.03786998305757,-41.98689371875068,-45.18275243500057 +5925,-51.11057355383348,-57.23667204037909,-40.52821002318105,-45.846186355249365,-47.57377636406907 +5926,-40.740840088414245,-46.78725279988971,-38.06518804598707,-51.57081533208971,-42.770960332191315 +5927,-59.420025650524934,-43.877169463603764,-45.181947592566125,-49.421656971894606,-49.008246577000186 +5928,-50.306701869833134,-47.490756928003,-52.075716296295305,-47.98351868962129,-58.21769852189965 +5929,-50.01432059661342,-43.795479966081686,-38.21458573815951,-42.315404301120466,-49.995430720707596 +5930,-51.007835972628705,-47.30159218421907,-40.41584760349656,-47.245969040427774,-52.45678502681923 +5931,-43.99336696493632,-55.462286891806514,-47.238375337347826,-53.66261810389755,-47.69457038837896 +5932,-46.003515589832084,-47.89167388955865,-60.484017580248704,-51.42807794829066,-54.93677276930729 +5933,-54.43963517170128,-49.64477724773903,-50.06991189019256,-46.49132578588923,-47.842928381193715 +5934,-54.98990149033393,-47.200243447060075,-53.82570292195095,-61.22807789348089,-55.56179698217316 +5935,-41.973441460728296,-39.19777763040768,-49.565804809139266,-47.21052906018999,-50.62107572750032 +5936,-56.389118266860734,-50.82808848309255,-48.79973435480856,-50.91177559085374,-45.05832844072563 +5937,-52.151122117495,-57.05632908113485,-55.8144985516364,-41.928615914769054,-49.20122645729701 +5938,-47.12454117132209,-48.051804771225385,-55.5080036116378,-49.748876737220534,-47.67046330059 +5939,-46.045989356056616,-46.6054581028616,-49.62521131556387,-49.17087623391097,-56.38113452425029 +5940,-57.32603424197485,-46.58532528711935,-45.243058736021034,-45.51828420698679,-45.18712485550199 +5941,-47.43678220484135,-43.50820241104022,-45.26880764783641,-44.60073648472309,-44.85810688516309 +5942,-42.50227507814083,-45.608301075085514,-49.593451701819525,-51.342346623887046,-42.748302006270016 +5943,-55.01413201968113,-44.6580456810597,-62.9912991695305,-45.37668529001545,-58.30379052025004 +5944,-44.580012337388084,-45.82635365567268,-54.29953783298048,-47.93696480773885,-52.07603216333405 +5945,-56.130562383434395,-48.19605571942204,-40.48583327409127,-46.7234162874507,-48.387888831626334 +5946,-48.61852710044156,-47.66460281138681,-51.83076856774233,-49.583594352312154,-62.04470000851793 +5947,-55.495399505181574,-44.77298524818816,-50.04637031359025,-59.04701833023224,-39.576187524621524 +5948,-53.39511086292274,-52.049109344970844,-55.12849912230334,-47.695477135538894,-48.9935256659263 +5949,-51.3283925987462,-52.305726941119254,-51.34851183622545,-60.2438545376448,-53.39175437798467 +5950,-54.65820319317425,-45.092450234961746,-51.864899367557754,-54.17591173357054,-46.8696385726386 +5951,-43.874935531795124,-49.86277635096987,-53.12383025668902,-50.78450525569081,-49.011691028383346 +5952,-50.52719306857436,-55.633231405387576,-49.513953654726514,-49.33913701638866,-48.54300538832778 +5953,-56.010574066574755,-62.45007281241559,-48.42543505530122,-40.98890589725845,-48.199693297020154 +5954,-46.31884626428617,-53.96091368697046,-46.625177178197724,-53.93850458128,-49.674631479626875 +5955,-48.80332726691353,-43.589716100171316,-53.3991111801426,-51.24041823261317,-48.39579707805653 +5956,-46.922357896059786,-55.14719385117543,-49.79815856163369,-53.68253641625724,-49.1851442426724 +5957,-56.04835009897181,-54.37300445058003,-52.38125701969025,-53.91452981291139,-54.283567104639104 +5958,-46.287905360585974,-50.00919919422072,-58.809157746642775,-48.7124613342964,-51.17109901875368 +5959,-52.505579536745515,-46.60354290466858,-47.392733338884995,-53.27070254573668,-42.85345025986878 +5960,-58.15881408649736,-47.984554376814756,-46.87468191021465,-51.8660053131055,-44.74153905441616 +5961,-47.38502235749485,-51.763237504956706,-55.55025285940412,-42.20601977477428,-49.64356466535507 +5962,-50.346765438751525,-46.93833784289716,-46.283985318416995,-48.369123609017265,-47.36151353826125 +5963,-51.48360093449035,-51.75709147108345,-45.05831709794384,-50.002463035296564,-40.49591698402526 +5964,-50.84183262754711,-56.63603331431743,-50.875766262796986,-48.7715958488356,-46.15875887016774 +5965,-51.10226171434922,-46.940038157257206,-60.33212070222724,-45.928365624745844,-50.36252880728203 +5966,-51.15806465966446,-57.684018360194095,-53.26888606712268,-59.148559689517654,-47.1142969502167 +5967,-49.486190296551804,-45.81004633532667,-55.2627876934434,-41.647666649295175,-42.755798885731046 +5968,-47.08589236374544,-44.33691785264702,-45.403317168283714,-48.26202696349009,-49.71056211024832 +5969,-47.77329857905734,-49.936302295724914,-44.727352271457704,-44.41019365323536,-56.01606768413988 +5970,-51.21087146333175,-50.39979585687361,-46.20162199470864,-51.76249012036936,-47.5848112850533 +5971,-45.892711824647854,-46.8013574766999,-63.64732143536962,-47.8047377560666,-53.29509854943889 +5972,-45.161779012986436,-54.45353914318202,-45.4116072742454,-60.457086718063735,-42.51916904718757 +5973,-50.00983797461439,-43.08128163247796,-51.945976582325294,-50.02949405338513,-53.98796629880043 +5974,-50.93662931773222,-53.5079822081816,-61.93157448156927,-46.963372227320136,-38.678341458381524 +5975,-40.76037249233863,-58.07246550485119,-52.86257420323574,-49.55201341968404,-48.02324139743136 +5976,-51.57411352579618,-43.17661237409215,-52.517305560697515,-52.274829928160344,-40.54876720958155 +5977,-52.222603615481944,-51.74830369595995,-57.190106078820364,-51.72500784861875,-40.930967536153446 +5978,-50.52189823020112,-46.47160129528405,-56.56019727406507,-41.210788442381315,-52.95031913269923 +5979,-41.005318245479785,-50.11070492981601,-53.49745954397682,-47.028991338664966,-56.498348055480015 +5980,-52.98686073996671,-50.95326058569891,-55.672267220206855,-51.59004242127895,-47.68562748041661 +5981,-48.44567428890482,-53.95877894920016,-54.67186500408931,-53.426381007999794,-58.81737917490109 +5982,-51.75020156781727,-43.845002757303654,-49.530538713019766,-58.27590247195216,-45.85458940328783 +5983,-53.85855623720831,-43.85305280955059,-47.8279957685293,-56.55732637451423,-55.289396133681336 +5984,-60.58618888853052,-44.673286206259704,-48.3137017042282,-47.214886627070385,-49.60371400419048 +5985,-54.953237520628186,-58.880398299529354,-46.0508310448,-53.402696146675346,-48.02510766919951 +5986,-48.183982482937196,-43.622126821378146,-51.759215355644905,-48.87548135427528,-54.03422107467989 +5987,-44.67355990363729,-44.42076149507426,-55.60471573337511,-48.16563611215165,-53.502773670751836 +5988,-47.69893124120691,-54.499103431253616,-44.694507087240034,-53.30834375183442,-66.42293148008359 +5989,-52.51557992771147,-57.43457440492321,-52.146610626747425,-45.36780768985206,-46.69861976777643 +5990,-50.76719284163491,-45.115917063014294,-49.43585929535646,-58.48209756267653,-54.73606047919889 +5991,-49.83066920091208,-52.70005862363263,-46.524102646033874,-51.29377960175926,-48.64569921210955 +5992,-54.89373000911229,-55.01851421949889,-55.35117761498896,-42.91282018231562,-54.11313190183715 +5993,-45.946412299972515,-49.0902753607907,-43.46774516100841,-50.349475582441265,-55.32297672797599 +5994,-49.6813271457508,-47.40855467255307,-49.86877176527562,-52.99930886349222,-52.56072236796929 +5995,-55.977542261203624,-52.22830576104424,-52.33169135939001,-59.40377188690892,-50.63414404476281 +5996,-45.42548349611701,-51.72998845812622,-51.190745098919066,-49.41904235062243,-46.957865176838446 +5997,-50.72998732481719,-51.77117799289114,-48.84955585828524,-60.20186816856058,-46.63196958158678 +5998,-53.693091210587944,-44.89568852275565,-48.491193095871736,-55.628257257220085,-59.23389131579136 +5999,-55.64995822112207,-52.66439488179487,-58.27980167855917,-50.156296401832115,-52.73644513904455 +6000,-48.6866251088983,-45.26506005859005,-45.88809768795017,-51.27945695126384,-48.1916629699032 +6001,-59.86687258099732,-53.039172985453334,-49.84903284852247,-44.54039140576972,-51.593604803019026 +6002,-44.73756397685239,-47.424561879573304,-56.358636540796255,-51.93898679153839,-60.33638699593301 +6003,-45.86453468049957,-58.92930959249703,-49.1580622341137,-46.68451402604264,-50.08480614843239 +6004,-53.78748125874095,-50.54331436919679,-44.90226894586545,-52.0869998077632,-48.425770121168554 +6005,-49.873333172246966,-39.93114672200205,-55.00985255206886,-46.6220283132842,-51.74569985783349 +6006,-48.3338314522775,-47.05267443298754,-41.873867307015125,-50.14723504018654,-48.790799161624854 +6007,-46.77042911460731,-53.75559806811595,-53.66428688321345,-53.951658339739296,-50.71327049703943 +6008,-54.54897131904825,-56.30967558920533,-54.37960153045452,-62.4247270554506,-51.6050725014037 +6009,-45.82201851437548,-57.183882055345215,-46.340357149725975,-47.37802173161032,-50.60483424834858 +6010,-45.208515323102134,-43.959925481220694,-54.68227659698299,-47.114912520179736,-44.66210264739832 +6011,-49.7526982436912,-43.86079121423092,-48.23006405954164,-50.78057623487835,-50.481409912752916 +6012,-52.41529292649826,-54.05592522747419,-51.52743051353177,-48.57817078386871,-47.106286322113306 +6013,-53.46687136575894,-55.64004483358672,-50.000439369967836,-56.10897022335659,-48.61583844620858 +6014,-52.1591538095206,-51.26120103674072,-51.871730494461026,-49.53938840050992,-51.98406361879153 +6015,-51.000286346902186,-57.630253536431944,-50.8691833937984,-48.16613777314007,-47.43717273021409 +6016,-54.67227961095243,-43.11044212179644,-51.45711247970605,-48.526502069680475,-41.59656972196639 +6017,-55.22653069034295,-56.83053000468593,-39.90663683285055,-45.51578242067106,-55.15577828364326 +6018,-50.01529840159198,-52.28139430460298,-50.03884736267346,-45.79030471850838,-53.81690172802544 +6019,-56.08547859888253,-54.734640958674305,-45.89730113998301,-58.180502429205305,-44.29338265497575 +6020,-53.7795682293645,-50.457016959482665,-46.39813493349343,-52.99534307668336,-46.16279660349627 +6021,-55.03511190310617,-56.783751837005795,-54.043331811040595,-44.65100224848288,-57.36769197005222 +6022,-53.5495543590792,-54.39428949779342,-46.58500711935013,-53.159038136897706,-56.369843495635166 +6023,-48.54231050425723,-55.625791211580434,-59.52386477511369,-58.294453548904556,-46.50475342074056 +6024,-50.74508347973388,-45.50601055413011,-48.453533026173766,-45.87192974478038,-57.4899794692634 +6025,-49.075197228285894,-62.724654085201465,-41.822479730515504,-49.305139362053616,-49.08078938090152 +6026,-42.64110861088077,-55.68398828513961,-44.62208537784415,-55.971083470896765,-48.737236699617554 +6027,-46.325493592235965,-53.263848720569406,-52.8453269559831,-49.65635252239246,-49.069528344604244 +6028,-57.62591874428889,-51.67124557813267,-45.932791020929876,-52.14766707906237,-48.81529378398149 +6029,-53.19740211466944,-47.4983179258683,-50.73553563055359,-40.303106555679186,-57.4227689281604 +6030,-44.04365231925351,-50.49241435407043,-57.27842827056847,-39.520845351757906,-41.461343966159475 +6031,-52.12244219232644,-43.592966514223214,-47.794632547377546,-47.94456867387944,-46.65495491201086 +6032,-52.389071131498916,-59.71044166557672,-48.53210467243431,-58.35655319820899,-55.728869329069596 +6033,-42.47665114512968,-42.77953786937329,-60.88290910779596,-45.246762036734154,-44.70004385201819 +6034,-59.63817849286871,-55.833347242325274,-47.40048768926619,-50.60076514805783,-51.64577114363167 +6035,-61.86885790519164,-58.23123463336292,-58.4325473769462,-54.17151743560988,-44.73926098336197 +6036,-51.94048967038483,-50.91948119979127,-50.047259861269225,-52.329996858764865,-50.538369617957414 +6037,-44.63600327068467,-56.04728806561369,-43.461686056400545,-62.862977995153045,-50.07608703238075 +6038,-46.06298769279602,-51.43896602135799,-56.06114339670827,-45.7521752373187,-53.17870486493037 +6039,-59.61208164923091,-50.285212440953714,-47.14459895940124,-42.46413065376092,-51.39479813583153 +6040,-42.32901538490031,-47.660017049183104,-51.01351321636318,-52.01728452666002,-60.231745490447516 +6041,-54.4911870556494,-56.590166135000786,-43.06759313106538,-60.25784364945625,-57.99202095880717 +6042,-55.62810856193064,-62.31487048946175,-49.539855812108584,-52.181321982571696,-42.73331339341879 +6043,-49.23891736057677,-56.49932220403833,-48.18090971311404,-52.42208697260556,-62.4164655864237 +6044,-54.87919170078433,-63.796847236390086,-46.155754412731866,-54.78321875426299,-40.669489562140605 +6045,-55.5385858606331,-63.79123432248938,-46.10358806051837,-44.314761830546686,-46.3384211917384 +6046,-48.046957210730476,-57.075757825716046,-46.52375663979048,-49.849053934490186,-48.431397919202375 +6047,-45.05630703608288,-57.085555737974374,-48.19349569933502,-56.91163284926733,-52.228102408400325 +6048,-46.75922790312396,-52.01689664093154,-56.70223248716649,-54.53534633098347,-45.30412095112719 +6049,-60.15865549374079,-63.53702903965126,-43.184275491096095,-56.1992847793571,-58.8032326305016 +6050,-49.49435482725363,-54.513265165127535,-57.96453432726726,-54.25459025005977,-54.276807946791955 +6051,-49.78034416985614,-44.680961873190576,-47.823966419079916,-63.05529545109381,-57.51124016452021 +6052,-52.25297196358087,-57.13972979906134,-45.65836420050896,-58.94644589104991,-48.469454044716215 +6053,-54.480286701213565,-44.863052134742,-52.85998740910561,-51.54493217629455,-54.94731653703301 +6054,-51.55312971518369,-57.075849241495625,-54.84581021763522,-46.13062550736504,-43.033119240653654 +6055,-58.84190858301185,-54.333387397669824,-48.38119269418125,-53.8573087470458,-54.99243148566896 +6056,-47.34912904092682,-53.96137960330496,-57.11854022989718,-49.2613032865245,-53.911419470866946 +6057,-54.640395802098354,-45.240941859475754,-45.44745550548955,-57.19324983695042,-54.331109257846556 +6058,-48.87878897881626,-47.714776794544555,-47.12542923667526,-48.70139160028212,-52.752935422512074 +6059,-52.17813177228623,-47.41725316158492,-46.00883085171142,-48.76667126510341,-55.381694326990186 +6060,-43.11594338913099,-52.35059840009457,-51.93858340195521,-47.5044064644548,-54.227035848652434 +6061,-42.850364817289034,-49.651491626867625,-43.36964045784433,-52.42626520706237,-49.58160506178386 +6062,-43.540146662894834,-52.53534936824626,-57.4142538132625,-50.15777046330503,-44.1692273205864 +6063,-55.20085431169547,-44.68062823248866,-60.95422986227431,-54.57257560511136,-48.70627195371359 +6064,-52.82286494435552,-45.687710704697814,-49.25082704165333,-50.19991609085288,-48.06040756816927 +6065,-45.37018911733855,-50.00555104183403,-54.20642531805205,-46.509284559058955,-43.269869776208594 +6066,-52.84747196866574,-50.477381141435195,-46.501120736512306,-50.141075449520045,-53.6559684105477 +6067,-45.98305220459676,-45.82630014333216,-58.90047388137543,-53.24146862810976,-50.886378959745265 +6068,-54.896793213953096,-57.47842944712559,-52.541755348764646,-41.71951310652436,-46.73405002972787 +6069,-51.595138836707854,-51.012343029776446,-42.7727457496018,-51.05497466489735,-50.84813700666313 +6070,-47.802538236300954,-62.48880211520505,-63.63216038284697,-53.18445318667247,-52.254314704413225 +6071,-50.53897595454604,-52.52989109212832,-49.34985935517789,-43.00102719414425,-52.8214814689012 +6072,-45.1747735211013,-48.334455933356985,-51.542198165351216,-43.58386259486009,-51.61465507782121 +6073,-51.95317956593288,-52.017511349223554,-56.91167451160447,-53.04504535556394,-43.465756733534626 +6074,-53.22353226244113,-51.14335709767017,-52.36578675317253,-46.043223233545014,-46.13474779867246 +6075,-49.15713158800369,-48.14158990700871,-56.28726799126179,-45.95078252581082,-43.32848640912201 +6076,-43.11391655537283,-46.85909994918466,-48.63456573929342,-47.82066256073047,-45.132775900855464 +6077,-53.02008841269636,-48.82793635366467,-53.729397405537036,-48.09396439810096,-42.09280210629023 +6078,-52.37685545111,-42.44492803369071,-53.05711283428387,-49.36768963308683,-40.581103549595944 +6079,-46.596871527351475,-44.580135642150545,-47.143213622327856,-44.18026505877718,-53.74707501615272 +6080,-54.86188184197322,-48.06235967481478,-57.08333631915074,-48.82872613383824,-49.55817620246099 +6081,-52.87970487657631,-49.447009993452255,-51.62682185664509,-45.802800971593456,-56.87728210185463 +6082,-48.446110819590906,-47.37821958370217,-48.81949155206939,-50.25160836731427,-53.6146705238492 +6083,-54.1189008180222,-47.07842501555623,-51.349807635877404,-48.98374162899103,-47.36008695326406 +6084,-40.50992021769108,-47.41758387385084,-50.15325010792503,-51.5054468039133,-46.75342202501031 +6085,-44.9055397947943,-58.35693104017858,-49.25108507759148,-55.72194017747387,-52.98985810311574 +6086,-48.12443515625692,-50.67550212540607,-54.46432646476469,-61.84761661269105,-46.75731806882412 +6087,-49.41022776621844,-53.07856365095104,-47.669691960400975,-45.228613303433896,-55.48823311097484 +6088,-48.19615571251163,-58.82171632945595,-44.07148124409881,-45.16632544162869,-51.492488207362975 +6089,-47.97382090048212,-44.73047738119552,-47.788880074146036,-45.58639866524536,-48.804302791144714 +6090,-46.08528591681436,-46.21088816775213,-57.96310301174221,-52.65093053122749,-46.0653529593943 +6091,-45.33846453490878,-48.23333111662121,-54.38930499875696,-55.34129645284606,-53.193796768581755 +6092,-54.116047684890106,-52.215243932371344,-51.507896586388384,-43.368215383712425,-50.72842392632871 +6093,-50.17907903125239,-45.581127448496204,-48.34818623271269,-47.67468983666172,-45.03893285019391 +6094,-49.983124299836746,-45.76457326713086,-56.585305322978186,-49.67397855423925,-43.502734076449975 +6095,-48.57950200232236,-49.16292376953571,-52.90310592927799,-50.35388364053771,-51.25557754176717 +6096,-49.24412737091326,-51.47044593957791,-43.13498707435941,-54.716386623920876,-46.31599119185074 +6097,-55.7909450575663,-52.108867032253805,-47.03077280041605,-48.85600157465519,-41.333027630210275 +6098,-45.035762677316974,-52.63109281648589,-45.68992241730921,-43.90436450014631,-43.924536343022524 +6099,-46.98957932014295,-56.141257892513664,-47.235777190004804,-49.22929929390193,-48.944756222306616 +6100,-45.053570386013384,-49.76078266695057,-49.736516662208174,-50.69182012723476,-48.76668347352988 +6101,-55.38235421254665,-55.28385605467779,-52.19244171329755,-60.974265233696286,-53.92669550725704 +6102,-48.5093847795804,-46.115612328905144,-52.167149731934266,-55.30355392320492,-54.46308742363546 +6103,-42.61289020984533,-49.685775284309926,-46.67801113461695,-50.21041604998033,-48.95628508249881 +6104,-44.18946070465725,-50.70336517931039,-54.98154484897559,-51.05909805775124,-49.83090566677665 +6105,-42.145195543237904,-57.20006042606102,-61.35852099431698,-57.431653830959924,-47.02096690041995 +6106,-49.511109545258265,-45.04219491701142,-42.16073225964336,-61.10554369660871,-48.07717160793716 +6107,-48.66071538875169,-51.639798072938284,-57.69281514527337,-52.06306453948677,-54.349081237061576 +6108,-49.05943133588484,-59.96564959221273,-52.68800089554589,-49.61689834065374,-54.53027866015411 +6109,-40.70463252054936,-50.55438442510448,-39.75866438088149,-46.946386364178274,-51.308005056642465 +6110,-46.24443875532197,-47.33687147804766,-46.39597006968639,-58.4053819361555,-59.46344087711664 +6111,-56.173235660528285,-43.48984510503443,-55.475745205728536,-45.28821493742865,-52.26845660473814 +6112,-47.1295769292089,-57.65937273854542,-47.341830028717055,-45.61707039386615,-55.56170295177541 +6113,-49.3711209003943,-53.63845622310221,-52.54584520950223,-45.79824947174102,-54.34657628788416 +6114,-50.748025215623365,-59.80783105558176,-47.452448426472436,-44.913141908503654,-51.558768125555446 +6115,-50.79645143342171,-48.88007610590958,-51.83076538066316,-46.93664991780132,-64.51079764668461 +6116,-44.558141267183196,-60.86864059778943,-53.776305310819026,-47.49204751258659,-57.4457568237485 +6117,-45.87754548695966,-53.875639040324266,-48.80903217160737,-52.346036439791085,-63.02092803622399 +6118,-56.21108227389862,-48.12167425843812,-55.01291369975021,-41.97067370543511,-65.33846688036083 +6119,-55.1924794476685,-56.301372815819896,-49.393509270385756,-47.91563742908715,-46.78361420410247 +6120,-50.44051074274796,-48.62942897590994,-51.25562628560771,-48.89110331928843,-51.3806162764368 +6121,-47.61132634912325,-44.12185690343578,-49.60309725607395,-42.012936607725734,-55.875016664964804 +6122,-52.66179334771846,-45.32469267299283,-45.9904523293957,-50.60366238134324,-48.38620535388404 +6123,-57.08034550478008,-46.52856405350946,-44.10825084578599,-47.56676473815715,-53.963203730610374 +6124,-51.33653668339734,-49.5080771840138,-45.28211567290891,-52.41787951994814,-50.77710813748979 +6125,-51.9262368060064,-57.04344441858301,-54.61479905827928,-45.08614477763924,-56.55226778525725 +6126,-53.53830262592726,-61.83663337400872,-47.95357391404524,-51.69082878964922,-49.23660261283976 +6127,-49.43943942681494,-58.577843011540864,-48.44826857885004,-53.57382955286611,-52.217321582514245 +6128,-47.89111703215138,-45.26465017792225,-44.8601858724806,-42.438874319212076,-44.83963981758195 +6129,-46.932112161664946,-53.70049753025762,-44.274064709448915,-42.69774065473716,-49.48613928327826 +6130,-58.70687806966525,-55.65352557497003,-55.94918302804904,-45.22576552551005,-44.084502893421565 +6131,-49.87633017710304,-45.925041552021646,-51.43567911735208,-60.27165393075945,-63.05371196130596 +6132,-53.28480661885797,-50.24994509319672,-54.820248087103735,-47.19077390143931,-44.1923203832266 +6133,-46.768159326501475,-53.893570151183475,-53.3423281276336,-51.511912245744504,-47.636466787771184 +6134,-47.79142321640527,-45.32435788657218,-38.140417947667785,-51.86431224892117,-46.251523981139734 +6135,-56.025336929408624,-49.011674848250074,-50.268355261673754,-48.691495008921066,-36.008920404235724 +6136,-52.104285013640094,-49.7205432132592,-50.54468987089496,-44.89172575368368,-53.884199193220034 +6137,-51.07487042061966,-45.445907427202656,-47.82176827076423,-48.8560872983376,-51.04304272401602 +6138,-61.997559221931546,-43.45034283715651,-52.31400906182577,-43.20665845973615,-50.80350839132452 +6139,-45.81611028664231,-49.43690807302473,-43.23077289784858,-54.938779294411994,-38.31700852507784 +6140,-44.96619832165662,-44.95984105085049,-46.11510480327758,-65.20024953062618,-48.846630496129194 +6141,-45.50553197305857,-66.12095609230391,-55.61267846016423,-53.182734224365895,-51.239835619330236 +6142,-60.07130929701368,-57.08209648322283,-44.65172382868677,-61.19947925581221,-56.39422134507775 +6143,-52.20273408531189,-50.03349151383331,-41.15237191191584,-45.256448907758276,-47.627192480876616 +6144,-51.13821910182864,-52.39286115051831,-41.64760656093437,-54.70206808392053,-53.20076119394891 +6145,-46.119859697653546,-48.56938998937324,-46.20966295620333,-47.14400761860615,-53.97811984629827 +6146,-53.000041238182625,-53.306173398009406,-49.80955122798654,-51.74456459218333,-54.679344332352436 +6147,-46.76828374411397,-45.46798392846647,-49.01275809641599,-45.91742654969751,-45.8905716809691 +6148,-43.61017950055022,-47.61326273317757,-57.27170706477631,-44.232351228619976,-55.71403625545749 +6149,-46.63492926573124,-45.41310465301222,-49.444897306431415,-50.728934900133105,-45.01233631666068 +6150,-46.94613346996486,-65.45225899305609,-54.71082145049439,-45.99987711503448,-50.11179700854122 +6151,-49.646126256515494,-51.307266619307626,-46.94332654137985,-49.61210823726646,-47.105133255532586 +6152,-47.42512496542046,-42.400372725926346,-57.72760016242903,-44.41350123920876,-43.910517973041884 +6153,-45.466090140365225,-52.00251876269707,-55.28936210004748,-54.63765082762962,-49.05601091934561 +6154,-53.558325816965926,-48.00227093449615,-51.27380988428097,-50.41911070268114,-48.040121205468196 +6155,-50.05283969193481,-53.82273380211539,-47.2811114294379,-44.406195522993,-47.001354628573395 +6156,-45.79717478720937,-49.079944223852785,-47.030815143263005,-48.075197978738835,-41.25439049535602 +6157,-53.00579115283922,-52.83455257428139,-51.08094102845039,-42.180900232949995,-57.26923805087169 +6158,-44.9094814558526,-55.8620190112113,-50.25102552655346,-42.487038100912116,-42.38208354357564 +6159,-50.58968931045436,-54.61112828303387,-48.708793749961565,-54.073173373593065,-46.43328665071629 +6160,-51.85164570150291,-49.475883735825946,-46.37502831748492,-59.68049281533692,-43.95582180369597 +6161,-51.224761740664945,-50.203686826329985,-55.5736583195022,-49.16630158864214,-53.200026978352014 +6162,-53.50180168488714,-49.74596768538377,-55.31624407023055,-41.31596291950186,-59.01385978020768 +6163,-52.072896804987,-57.0092806721021,-44.57937781981079,-54.37927138616861,-42.68202287475776 +6164,-51.17445370698209,-67.54257333826979,-54.941638338480686,-43.281600070506975,-54.43754279790032 +6165,-54.288905907008846,-43.8555083557237,-48.231055460633264,-49.00912958615717,-56.97107908403412 +6166,-52.11632942813521,-56.822662459898666,-43.025203036903015,-46.032129039630576,-54.2283599896314 +6167,-46.7325483876039,-51.23596310540117,-57.15441745135437,-49.38909225708713,-59.85657354158842 +6168,-42.27998326277111,-58.26224504462329,-51.906828061213425,-58.868078430037926,-40.98203266598403 +6169,-43.33967482169249,-48.155572275236665,-48.4934503968174,-47.46549330161639,-52.53735646121521 +6170,-45.67718667615794,-59.174035484840246,-48.08758376871089,-52.80658655719562,-48.05302886752697 +6171,-49.26881644446958,-40.629805013003,-48.585260427012734,-57.76388997957201,-52.119675746908605 +6172,-56.14203959192442,-47.15153235062681,-50.44262724090778,-49.02272120315325,-62.54270411778268 +6173,-52.806071588791625,-51.18052139085807,-55.159546563350474,-58.58173842812652,-49.925037276653704 +6174,-51.413282537320185,-51.417366633966374,-59.7533409643616,-51.014046792019506,-48.44077170044339 +6175,-52.30879403461814,-61.24998577931539,-52.17783064044454,-45.54384575186694,-48.70844232858698 +6176,-46.90421515201049,-47.966374794937046,-47.943333515222704,-50.24155165553725,-46.591685792769326 +6177,-48.59611540566633,-49.223038486843656,-52.913945955582655,-53.866544019815855,-43.133298835999 +6178,-49.79307721162726,-46.035785203714426,-46.64526282379643,-44.84103927010317,-45.57023571029877 +6179,-58.28815446375658,-57.49539210262202,-43.93158427905929,-46.159683830512485,-48.64930250331324 +6180,-53.12185562728422,-48.75741606144853,-50.46094779942345,-44.92322290314315,-38.13624078426733 +6181,-44.56511425245168,-42.51730593359008,-45.876108451777675,-44.807325079170305,-42.36143736686444 +6182,-42.93528927303216,-51.47892154506588,-42.94092374492586,-52.46132053598444,-54.76602457452743 +6183,-50.59086830391926,-59.45201025160682,-49.2517902726078,-49.068582900626815,-56.21265294621436 +6184,-48.28198933003171,-48.44988610386826,-60.84283437095684,-49.47581990600329,-49.72976972782295 +6185,-59.2014585276866,-48.34160560948188,-39.163899615962386,-43.563716358613334,-51.740538722294936 +6186,-54.32968983612489,-44.5845628846816,-41.55647544265026,-45.24741748359494,-46.9125977188492 +6187,-55.06584390451064,-58.92690761661883,-41.22319877936662,-43.361477884453535,-50.59330403103098 +6188,-49.05194959887897,-64.78849632269889,-55.10288479925092,-54.574215194300514,-51.78812586192451 +6189,-48.75376239087189,-54.61027792914115,-44.09122525066711,-54.03179082556976,-48.938763578284544 +6190,-47.34760032517841,-51.29633718045475,-55.9177252970667,-47.034177156218774,-52.98613812823448 +6191,-46.41294063000047,-46.71705274513264,-49.32763852211972,-45.32340007644058,-47.119954839185354 +6192,-46.35335684626162,-44.254665326955724,-50.344269736517326,-46.23063044644076,-50.68807560595553 +6193,-50.392362302509,-41.02038428096513,-53.4380514653595,-45.36766552495053,-46.17282708973024 +6194,-47.384110518456104,-54.30717139089342,-53.05114750745765,-49.088661432579556,-47.90798424260644 +6195,-52.66574598093473,-50.237016668480216,-53.06280016300563,-48.14958896337143,-48.169821860459486 +6196,-47.83182423473384,-52.36436163751311,-49.55451045758605,-53.55909858591203,-46.48715052248858 +6197,-44.21864302461178,-47.4504856463372,-47.68945608405322,-52.356066550473635,-47.03956001484714 +6198,-52.08890797624276,-45.80628758556292,-49.626078635340946,-43.371567828768164,-52.40725822804396 +6199,-47.95941968094342,-54.15511011105509,-49.682667027854755,-43.8810524191886,-45.07812298438852 +6200,-53.00706189106735,-51.64718467408794,-55.76010477102772,-59.377928481719444,-43.30088682018877 +6201,-47.57775325199564,-44.93515197722841,-55.90680656232272,-53.18069420576248,-55.06619990193334 +6202,-50.74878414626386,-50.72208449422637,-54.26928137402944,-47.15484722971392,-54.04933456612775 +6203,-41.11107271633114,-52.261235093141785,-46.6514162720325,-47.57236382628658,-47.60702868014701 +6204,-56.70326337663166,-59.02907004542298,-49.32416805375808,-55.716440249164584,-46.396123092755715 +6205,-45.571094656272095,-48.521955639811,-46.934583947345736,-51.808640870323785,-43.62833627897221 +6206,-46.5526655270726,-53.7832004112079,-48.80016304693092,-41.88547499239603,-45.14424086884046 +6207,-47.092130881602834,-50.02550220797963,-51.918638372643485,-45.19232687057127,-46.770100426025074 +6208,-60.48676976753177,-47.85646682370999,-56.448519291672646,-58.23706886669527,-51.14066046487462 +6209,-45.70175389836495,-54.852017434044136,-53.565148707426864,-55.66996842185611,-47.30223420943729 +6210,-47.54152391218213,-66.02523086713882,-54.85454518039036,-47.41908369051934,-50.68773787738143 +6211,-48.68399308067832,-43.72188112026602,-45.10767204205923,-45.64178724364734,-45.952510141994274 +6212,-49.71659697526,-50.04546547731101,-57.38626932582794,-60.523918307474936,-42.34497510757436 +6213,-50.05887368192462,-58.06118064874839,-54.4289091897569,-59.42485494455297,-43.397342972772584 +6214,-48.9699005556835,-55.284571088055664,-56.33256674450314,-51.64480352998481,-55.7416551539008 +6215,-46.11844919456067,-48.19781409554692,-46.476079092022346,-55.83467313179901,-52.40562420675051 +6216,-43.20844610972623,-53.887990117321145,-46.08606994631031,-49.97689772069705,-57.762873600906154 +6217,-48.81923343951619,-54.10676940065308,-52.13857315728909,-50.738243632348464,-42.58483400735354 +6218,-56.97033683610464,-45.9857442569517,-47.352863455264135,-48.15562895397043,-50.61423462182348 +6219,-49.41280167663306,-44.942472903585866,-47.30927903141217,-51.81270033132042,-53.21769944022807 +6220,-53.70037606486963,-51.621701583886335,-53.82715644367206,-58.522510393791286,-45.393959811298195 +6221,-51.19786494322761,-45.63908698227748,-61.77429984513129,-46.85877881742868,-40.46462724504368 +6222,-45.84375786122567,-48.94043725434075,-51.899941452687,-47.801294903918965,-57.37872740274862 +6223,-54.83002368704983,-49.094987321022074,-44.05496357938317,-41.24535258024201,-46.140637546723916 +6224,-50.120803175308644,-56.78882030108453,-56.21031379035336,-45.710427282113514,-50.767682586168064 +6225,-52.32024905988116,-45.99263250067852,-39.129718358277984,-50.48036792524072,-41.12805737287155 +6226,-49.18984990278696,-49.00401924866996,-40.53907248463997,-46.288056673471836,-58.000180698453676 +6227,-54.21680437199578,-49.374984071115385,-56.3002432929032,-47.51352448001517,-45.914760869678815 +6228,-49.438064624879196,-56.233135542163105,-49.422777542935954,-49.6116774405002,-45.51224061517643 +6229,-51.34634965292927,-55.26713879763958,-46.34318359135824,-43.521241438628664,-51.86388646559293 +6230,-56.642111292709565,-43.05148451388204,-46.761244363326114,-46.82438515613635,-55.61854393177289 +6231,-58.50194419502943,-56.69604157634978,-49.5889945419344,-48.80780069611252,-45.469660923422985 +6232,-44.71196578280468,-43.58870998970465,-49.863397469474236,-48.145475263137165,-51.64591980182104 +6233,-41.02669831348892,-53.32863484500551,-48.59653421640826,-55.800462724803545,-48.554981650468 +6234,-53.911924044383376,-50.575534030895234,-53.678134241512716,-54.46343124140028,-38.97682434644034 +6235,-60.1288107509797,-56.02932866616024,-45.68004325634414,-51.00362962186203,-55.51089962535949 +6236,-47.4777096798356,-48.705199668758645,-49.03316936382755,-50.662204914970005,-51.14842089903471 +6237,-52.76554592309318,-43.233678200029345,-51.025576556869275,-48.31590081632505,-56.21510394673198 +6238,-48.16161199103862,-46.14223982894405,-52.93829647467462,-56.40866720240463,-56.94013993168687 +6239,-59.524835768093084,-40.10188929277861,-46.57739311576361,-50.35513865568253,-45.103549414558266 +6240,-55.118136244304075,-47.580653863177645,-56.76436600266456,-51.51798131657145,-42.72720210987856 +6241,-45.773273175749935,-57.25050880893428,-47.23510094548773,-56.01635228871745,-53.793251889258094 +6242,-46.74836681427266,-51.53670996564155,-41.255402792620615,-47.474406805235986,-52.436674072055155 +6243,-46.71511034728204,-48.887064821211766,-53.64089809322922,-52.07212087651772,-50.830088658415335 +6244,-46.00661575291759,-47.984237850502815,-47.56110651302287,-48.227826989516636,-40.275113718076234 +6245,-43.68092850851114,-47.201872299733765,-46.046590477032055,-46.61316286165727,-45.855167184789 +6246,-44.919125600907336,-48.128889533634066,-49.16586157293888,-41.47956018116587,-50.59938719365819 +6247,-45.44814197019393,-47.005199592562384,-38.50279365131782,-56.39644335635396,-48.141074333160994 +6248,-50.251681284613035,-58.15751570614034,-58.82531488304911,-56.59885133590623,-47.282582337055324 +6249,-54.136633061038545,-60.8855545882014,-47.04164258954171,-52.33647785377762,-52.81982758179856 +6250,-44.3448554971315,-59.86085730428862,-44.892246347104454,-57.48620254440498,-42.38019339533437 +6251,-55.42584316249813,-52.630834926686006,-55.303839064099265,-59.02894967876697,-53.032220424183734 +6252,-52.78929061772303,-55.75647824463948,-48.24457891027363,-39.983843367433174,-45.849664765451635 +6253,-39.74007972327948,-51.30130144644867,-48.05367065023936,-53.449633488451994,-42.12683424842289 +6254,-48.22497452875527,-54.65472158080287,-48.71830443683605,-52.84690137060656,-44.84076632095166 +6255,-50.23607772782215,-51.70368487293376,-49.42705933584414,-47.95481212243725,-45.433471708537105 +6256,-48.68380959743844,-49.356017888198,-46.52645620622148,-49.63236957507611,-53.10498319244475 +6257,-46.278048647711714,-50.962855178970834,-56.519091884796765,-45.29577237074948,-46.89113457967953 +6258,-41.01235839603612,-53.09363835330692,-54.292013477532734,-50.594630718306206,-48.10550722237283 +6259,-50.56964243008072,-56.42402419561786,-46.31121216030183,-44.96391675264355,-48.94687391044736 +6260,-54.06656625453357,-56.533995552092236,-46.64929269003505,-45.50868721358804,-44.944578166516806 +6261,-53.687437269879865,-42.85041163038185,-54.24727791175777,-52.13064352936184,-46.61330305025046 +6262,-55.67871850741478,-53.159817528520215,-57.626650673769234,-52.414795302057634,-52.05284319775616 +6263,-52.19941727367059,-59.08726141214958,-55.77417470460318,-52.72396068903348,-49.95209745124142 +6264,-50.889225895282436,-64.95524551467668,-52.260336260716706,-47.95703297776954,-52.228440660041024 +6265,-52.283139918030095,-51.770913810538836,-44.32318812047088,-47.06376584077895,-57.37316752785329 +6266,-45.11000708468256,-44.48439498110576,-51.99237120767662,-51.01147188440194,-57.05162516230752 +6267,-45.77225826626756,-43.23133706103343,-54.383111466062296,-47.38872218221616,-49.220874857418615 +6268,-48.20855636523535,-44.953070960187496,-48.46257659688829,-57.2873214604533,-51.904047076742 +6269,-49.928292278266134,-56.68123645632848,-46.7179966735802,-53.11618467522365,-52.12071108101182 +6270,-46.19607472303402,-44.56511809526325,-45.48195204733006,-51.94990015201059,-56.420252762005774 +6271,-48.52717820685834,-47.54276199831289,-46.775438790379845,-53.429028956910926,-59.3249404965379 +6272,-60.58788470501507,-47.14305511206452,-51.3833197958256,-57.75611650404265,-53.36038024888489 +6273,-47.5465035120669,-47.0614021201559,-53.04946533270191,-51.122224829635826,-55.686497389826265 +6274,-53.137972451881645,-57.16549649583394,-54.751577870880766,-47.17403246848038,-45.86668112573966 +6275,-48.82872610693263,-50.976852073967066,-54.76106409960083,-57.8393157625013,-46.357425268584194 +6276,-45.7479156673674,-56.584165295090266,-50.18384303893604,-59.130784811185585,-55.605350502842235 +6277,-43.93562868096646,-49.95679769669687,-52.56140335843305,-44.446555878358915,-46.29246972271427 +6278,-50.787880786651755,-53.5402624877814,-54.87672642357664,-51.316696797227856,-52.88484065597304 +6279,-53.1854651098476,-42.56421597238199,-49.34796216274191,-39.14987515937767,-52.95842402411541 +6280,-54.52266190877168,-43.94971123046158,-50.28245353000452,-44.19095476376886,-44.291474644258464 +6281,-48.61830460058197,-50.22060247802196,-57.80967108916767,-51.813883982374726,-46.89383840084567 +6282,-49.01498999382192,-48.23114730419219,-50.0347865637037,-51.98366454725581,-45.308853608390876 +6283,-46.80216418271073,-47.5627165556995,-46.753141775648054,-47.9149672058641,-45.199120630923595 +6284,-52.042040517032824,-54.248984366535105,-48.30685877585351,-50.78082905632278,-51.730478492605414 +6285,-53.87767667163918,-48.54177985034441,-51.77901637446664,-55.86548968033521,-46.718971288376586 +6286,-47.03666913182132,-47.63225440320017,-58.3049205208928,-44.966746197702086,-49.93771573085201 +6287,-43.38986404703912,-45.9019637227276,-53.779377838354144,-50.62567928023563,-54.05232389539894 +6288,-55.083155724030284,-49.985035299461174,-47.52818563791472,-58.488860176944435,-51.03494541275421 +6289,-42.38859539441309,-54.48732354455468,-54.40940572543422,-48.640574696612376,-45.47264360854505 +6290,-42.62415137320439,-43.99830435014107,-56.188126438928,-51.68268277066283,-52.646686479434265 +6291,-51.312728425325076,-49.73175463605986,-53.40670967248542,-50.09999545441467,-49.349349970355384 +6292,-51.581175038780955,-55.715574871785456,-57.94724040561911,-49.614066631944304,-54.06220211721725 +6293,-44.44025424267464,-62.186650989815405,-56.11848245649647,-47.6005018237851,-56.62950022465091 +6294,-55.22424197487761,-53.78443010346261,-45.95687518441633,-46.713941173416046,-56.91363202912999 +6295,-43.16945079878481,-52.03836937153284,-47.97512532784718,-46.907104340498336,-50.70250429737211 +6296,-45.51407160596448,-55.04666103636595,-57.30126386641517,-54.289665719554364,-48.150111275851124 +6297,-56.44379688340784,-47.50738083921912,-51.62755020372525,-52.03751835604292,-53.002479616979 +6298,-52.67856092936495,-49.23571463139729,-52.62415860380509,-49.6238725340645,-48.199916843058844 +6299,-48.71981689362182,-53.40094106990574,-55.078130670936225,-45.18093983262917,-52.68063949610265 +6300,-49.615604739131115,-44.324214721369856,-44.93385022725191,-44.70769266196297,-50.051045804789794 +6301,-46.52619779789112,-54.568237081180804,-47.17249989501376,-52.41865044038392,-53.916967429372264 +6302,-50.43172814818762,-47.930765185982544,-48.69698181339038,-42.164712740324035,-49.17824117342822 +6303,-47.55586083525081,-54.723789734281155,-57.30019711100851,-48.15499303950844,-41.07783114198089 +6304,-41.58539649551512,-45.39079380445685,-52.54664946742025,-47.951285200623,-49.88316664438524 +6305,-53.10562658644762,-55.9153742002427,-57.34587551995586,-44.82546185079005,-51.956779629809056 +6306,-48.808143340444566,-51.13738265022143,-49.72176166411111,-49.78523742124578,-42.748295712382074 +6307,-63.138461785948245,-47.190024521662025,-54.42869144933891,-51.590466856046525,-43.88305504380299 +6308,-50.81137383852641,-48.864549240214686,-44.926881243694304,-47.7823646605159,-62.79587738414155 +6309,-53.05757343516763,-48.95966830227641,-56.83182327633475,-50.43352872051162,-57.50947497231572 +6310,-58.162241029478494,-44.33485862537874,-51.71250573199227,-46.918735945803746,-55.776312347546785 +6311,-59.67338006414637,-50.53632385693796,-45.01925782332904,-48.98003472606511,-54.83332577826537 +6312,-45.1118687002299,-49.78413245072668,-53.61636243422621,-47.19972461135382,-45.26548152419735 +6313,-46.56098870758489,-55.78656371689762,-49.08448353959082,-57.63962802175562,-43.78899965914414 +6314,-55.8482256835096,-54.26726096510331,-50.219668619827736,-48.72589795982821,-59.43696257307791 +6315,-51.064454024671086,-57.40045291291947,-51.911416228777696,-53.30812788403121,-49.52868035544678 +6316,-48.174364650729046,-51.024879657361446,-51.37940783422734,-53.8148119716841,-47.01231941789494 +6317,-52.32175482904624,-55.829055627430925,-46.483472929816834,-49.86457985945355,-55.042460925730985 +6318,-59.79506653966691,-49.56429855461425,-56.34732071640511,-53.33591419449099,-53.8013415388962 +6319,-54.38417336035645,-51.30056043755583,-42.69335291659662,-52.63613181536448,-48.04889662235911 +6320,-51.388056438013194,-43.12659591549957,-43.237943394190566,-48.08198545365157,-47.72752985699286 +6321,-56.09276176807681,-50.13275416311,-58.88811656043708,-45.319280671762264,-59.91475446860722 +6322,-51.64030041620594,-59.709792700249345,-53.31791630200544,-53.87839025708255,-49.03436981377582 +6323,-39.80142909475843,-43.07457260916607,-49.630607378490424,-53.17801940352618,-43.75666598915395 +6324,-44.283651631404396,-51.315425845221455,-44.292313291383024,-49.37200640268123,-56.059495590508625 +6325,-53.19058158810753,-51.94362848992198,-48.605059552019206,-47.870069488155565,-55.12288946866077 +6326,-42.5421432731354,-40.93423937430175,-45.6112123740552,-49.56473830176423,-50.27739420179033 +6327,-46.12235979464673,-49.341509174266605,-55.72811095738118,-56.63445775341505,-50.52128732462754 +6328,-48.763563760542645,-47.28668638759972,-54.52516894710487,-48.87398810821259,-50.829964321008084 +6329,-55.11088499585312,-62.251260553359465,-55.75270767688471,-49.41103029867636,-47.81297312286537 +6330,-44.89340427520096,-50.283828219148674,-43.28749559798528,-58.79839688528414,-46.30606732648397 +6331,-51.92227574080363,-42.9633757445252,-54.8732662127412,-45.93841272391578,-51.86734112220603 +6332,-54.60408185784961,-44.15411084828218,-42.014089348234506,-42.691784268056374,-57.04415171549 +6333,-45.07164266239016,-54.29613752274903,-40.700028960918,-54.7730121093475,-55.74951613311166 +6334,-42.94070938031557,-50.757813380388704,-46.86768080663863,-52.32907308637678,-54.25155391904108 +6335,-52.433480333102196,-48.823448946345394,-44.55666022709395,-45.008250342213536,-51.71147804109086 +6336,-43.83800181341939,-49.26889490551663,-42.484337251811105,-49.116794577195506,-52.165144680775434 +6337,-51.211119809369855,-56.29986392475292,-45.9462957799613,-47.549020389399345,-49.85653845661306 +6338,-48.89709820099533,-62.21624853678528,-41.55843728306758,-49.76942624957899,-52.68401879531607 +6339,-45.3972503293404,-43.771768489179166,-44.88587275465548,-42.4827451174079,-52.3613854310873 +6340,-52.334686993993756,-47.90575042078522,-48.39236686035633,-45.80406069975929,-43.67659510358217 +6341,-42.23999561018999,-46.694347228357955,-49.95486909574837,-41.98241813422948,-52.8854665731606 +6342,-46.977764914717575,-56.38677893249802,-49.75262683045916,-52.21751675481914,-46.882821073388264 +6343,-54.0902794273084,-55.07076928074004,-49.52118606899901,-49.50457179049551,-45.081203973529 +6344,-42.241819407827634,-47.14511945454392,-43.122742946208426,-51.105741614285634,-55.09490832909471 +6345,-49.15866298041468,-56.4080782742507,-49.03300539506497,-49.238181690712736,-58.250479584116896 +6346,-51.31301723785878,-41.955383021605165,-50.39070922666118,-47.937779647414324,-53.32760570356354 +6347,-50.52393396968291,-49.100192797503475,-45.58731439234301,-35.31904642179969,-53.272627739051956 +6348,-46.07080478226287,-52.651046219239696,-48.63159238561433,-53.47963068848435,-46.2267052203176 +6349,-46.53270062378678,-57.113029281082866,-53.850032751976364,-47.66140656083146,-47.60068573676632 +6350,-47.4170520476209,-48.340502615161384,-53.18578998325921,-48.335513923745445,-45.92735201314616 +6351,-55.201387480996324,-46.91083375895265,-57.06890494685857,-53.824881285684114,-55.54954400728338 +6352,-47.44564501964824,-50.03153820127942,-43.46183976865639,-44.22176817369362,-44.83676885970663 +6353,-54.070948513335985,-37.65128173045042,-60.56363148082931,-45.92307712815937,-44.505508079774174 +6354,-54.5356536766582,-62.11750213281154,-47.00040867263835,-46.63424320934263,-47.410976727266565 +6355,-57.714695233578475,-39.01176261318389,-58.48509263052287,-45.05525553722891,-43.18634853139724 +6356,-56.86488386893088,-51.25440968872197,-53.52646479099623,-55.363888607834966,-51.367083536542566 +6357,-61.70406124356271,-41.76796055489396,-45.309559755228,-46.63072082166159,-47.82778130346447 +6358,-57.580426546311614,-53.44235632967908,-55.16119278538071,-52.32583307083078,-48.24787361719055 +6359,-51.71139818616589,-57.04400928515415,-49.644882116058945,-56.12353669100064,-41.29506399002412 +6360,-55.611755036673856,-52.4740548977496,-50.01764322529646,-42.09356266285453,-58.542309043556216 +6361,-40.38495530448334,-52.18898060480947,-47.326080287911374,-49.499621651691676,-49.17024929276068 +6362,-39.73028259726464,-52.15997419318241,-54.589414338654315,-53.98308359014183,-46.13716675395541 +6363,-40.49461102336919,-38.45890754054739,-46.70372305453676,-55.80602498193755,-53.051935599259274 +6364,-48.741709469375316,-53.18705886177721,-50.648233288579426,-53.43010951561385,-51.12496398135896 +6365,-55.92190996576349,-37.91562454640915,-51.65153816882206,-51.20323581085027,-46.145207299190176 +6366,-53.11529353696175,-46.06846189363717,-45.57040185366787,-49.06822109828637,-51.883848412591774 +6367,-54.71898039323412,-52.85961100449949,-55.79092561935715,-54.68938043646227,-53.91562959037496 +6368,-54.2505846477424,-52.87295722082336,-40.23260236697004,-54.8216122552539,-40.66374167419509 +6369,-49.94125805891587,-45.47177711126314,-52.65252995538288,-45.46498222228638,-49.17704270346226 +6370,-43.605100760896974,-40.26950762430663,-49.925458680839014,-41.88773138904116,-42.78941487871521 +6371,-48.93663673088204,-47.71886962053135,-58.96515503755637,-51.52835246041547,-47.34675196684376 +6372,-43.00427348457315,-39.949843141057364,-47.947480479182246,-46.87571465024107,-48.72442299886888 +6373,-55.331845028687454,-49.36633474102197,-42.79147942795954,-43.32467486360611,-48.55176858603541 +6374,-50.61786842986367,-53.44661278795831,-43.83064583857982,-45.67129804713687,-54.074391296677135 +6375,-59.00497289390633,-41.43185551651174,-48.58468330304788,-49.09413998785523,-43.909852003830906 +6376,-43.461394560836624,-50.52280877348029,-52.899200246037964,-52.83578619577258,-54.59322503293484 +6377,-44.84864442981767,-59.97912563780194,-45.065471742199556,-46.902656359947095,-45.0374606805429 +6378,-45.952221691903375,-56.77944055241968,-51.263435599986494,-47.888112031445786,-52.89150273760952 +6379,-47.309090198591946,-43.24761112293142,-55.17378095318605,-58.01880970602972,-52.91970962449185 +6380,-54.774461227026286,-48.38409695714544,-42.70910849857522,-45.46312180454487,-51.04859513350534 +6381,-52.49209473867703,-46.366698980067895,-46.402070648932586,-57.523818375444904,-47.49529830047534 +6382,-47.26508697953078,-58.33171540305173,-43.298966879467734,-43.81752194077392,-53.63413714977307 +6383,-43.67721877280255,-43.47441941937484,-51.95354357785321,-57.81640488791176,-49.37044957848843 +6384,-46.35110679620159,-48.22169963550833,-46.548454320783854,-49.17616797164888,-56.730114364703674 +6385,-44.57321825298706,-47.544598784662774,-57.092109960934984,-53.37844199094657,-56.92570257375094 +6386,-49.23110623377725,-51.35368191488393,-46.317512969456594,-42.879867500534075,-50.520705161109625 +6387,-50.7045322162994,-52.99459177601933,-54.224581305144476,-48.04756746138968,-52.71523577168229 +6388,-51.397460223608455,-43.71695318430282,-50.0130619630449,-59.76928775776001,-45.733239875105475 +6389,-47.99150851735851,-52.202286146577535,-58.28790306298817,-49.941402780743516,-44.94395212304747 +6390,-48.991140274056484,-47.94867533691375,-49.93307218086304,-46.92201311829711,-49.6035464736584 +6391,-54.36323790705594,-40.428155140196814,-49.55087914751296,-52.148194202805,-52.16229498390298 +6392,-49.21163852245813,-51.03687060791445,-46.214140091127824,-54.105994866530935,-47.92509366750741 +6393,-40.87255244770571,-46.016127491654885,-50.8673539315343,-51.31488389166735,-54.32770071404297 +6394,-38.27570570995343,-45.78982442581186,-48.05609874141992,-52.042657623705544,-46.12301831135267 +6395,-50.87794658353632,-45.25489564166913,-49.13476948250924,-53.141298468426406,-44.685979471486085 +6396,-50.067225980101426,-43.16721531664839,-56.32154743825265,-53.844898174904955,-48.26030655797623 +6397,-42.67842981087568,-52.14920013261578,-48.99863379804122,-53.52691672678974,-47.59773397648606 +6398,-44.88332669881518,-44.96346397889265,-63.531347615014646,-46.14890281973809,-38.596311400450325 +6399,-39.19075553304049,-56.65855989921369,-57.014350147049214,-50.24636567279702,-49.33364859088863 +6400,-51.600325550411824,-45.365002723560934,-45.76027718232916,-50.24846781293371,-46.16889664993684 +6401,-54.42676942915993,-41.40204132650769,-57.06481695168915,-50.34288511806753,-46.88034603339686 +6402,-55.27691584463283,-52.68932430379461,-41.53462847386324,-48.43149142106988,-50.65752608402062 +6403,-56.78146158751483,-51.55874621339707,-42.61390493129304,-50.15927827725444,-48.18850697058426 +6404,-49.91458010208523,-43.40157652112494,-48.18968906153518,-54.365924280181964,-52.77950667553435 +6405,-46.41456374580304,-41.726841824918665,-48.739781415158355,-59.67744034774897,-48.640742184196064 +6406,-43.824252391446734,-48.65084535444916,-46.19224155196254,-55.54219253534283,-44.092218054982624 +6407,-56.84618642548923,-42.38683153815198,-46.96253391336025,-39.04062467262541,-46.79979869271275 +6408,-47.38010665576055,-45.242301682456386,-57.14687193662383,-50.58809000928262,-47.07034548158507 +6409,-50.33840913648604,-52.02252349764815,-51.83745637881927,-50.50599056105997,-44.72955487733672 +6410,-43.876257429055755,-45.9448600167045,-45.335507489828885,-52.062756151149486,-54.210022111911826 +6411,-49.93550116723372,-46.059053112812364,-45.63983918555724,-46.454365169344044,-44.44671304828075 +6412,-44.602722584083956,-54.116533881477,-50.819628626955485,-44.7632811218011,-41.57021602150154 +6413,-43.55731522075435,-50.53147592004637,-59.15376686421384,-60.18533742722141,-46.21673047202215 +6414,-48.103594651492294,-44.77430111299426,-53.67423875773041,-46.105310339743866,-49.25191330537805 +6415,-51.474248614659544,-52.33285614612377,-58.33169139248031,-52.284012421689326,-43.32768386028962 +6416,-49.22543804131136,-50.79179650389854,-41.875014988641354,-57.07075309749466,-41.61941932820922 +6417,-57.02888787615831,-48.42227302660887,-51.886138074807754,-49.015666275109325,-52.236725207815454 +6418,-51.85192787551696,-49.51381043016875,-42.51306315716622,-43.448557801600316,-45.14422690266249 +6419,-45.23868708977056,-56.77777877823111,-57.53451778907449,-44.622378196216566,-47.04924827039362 +6420,-42.489913233574946,-47.84715627230516,-53.54856984895467,-52.53540724199377,-48.30940584042312 +6421,-44.597740373568776,-55.12615672211097,-51.31000113240529,-53.515693607100445,-45.22648941451128 +6422,-42.400645063653684,-53.91893601855868,-53.13584884328234,-43.69970461740712,-53.436569899175396 +6423,-43.97515413752888,-54.542519739283506,-49.798436144395964,-47.200618794425324,-50.385354039533325 +6424,-51.907897415959695,-43.778994345032814,-52.6066144102376,-51.34535522786906,-57.5327963610559 +6425,-46.34889795635954,-52.72742766732389,-41.7912019836833,-53.61660578222432,-52.34901890213205 +6426,-47.47570133060753,-52.12100899868033,-49.118690879443044,-50.44945183618435,-50.971955665697486 +6427,-47.06057056893532,-57.592073109448926,-42.99897957417701,-57.30865182828847,-55.97444482142214 +6428,-60.2032986546369,-44.53725001203776,-50.87425409890111,-45.69677896203054,-48.305307374276914 +6429,-46.30681415761139,-41.36590873887897,-52.363311500404635,-42.59930531827311,-43.02978272006803 +6430,-57.50736515302482,-56.94000474985391,-46.20252247251378,-53.99189331371159,-54.01037402111672 +6431,-51.90597800896238,-51.64241848296281,-58.031500970075264,-53.370911467729904,-59.205832342882005 +6432,-52.71305155633443,-44.19562579274526,-50.309855012088825,-51.60924752464199,-56.61704214189321 +6433,-47.99919900117447,-48.698068234150405,-50.57586872149323,-55.71112885455245,-55.78206352851551 +6434,-52.34596496401537,-55.018621882059854,-46.8620242520708,-48.32225187189267,-45.38388173534525 +6435,-45.908050082736615,-46.20445043498918,-53.43149793076382,-50.63176228939379,-53.7527965295558 +6436,-48.74441663182155,-49.672941681476495,-56.08889991291012,-47.37606104582494,-54.866411999817366 +6437,-39.053408890271854,-50.9089658002504,-49.55482299609359,-49.67148506284068,-49.63871425094783 +6438,-50.769232832776495,-47.59277484484195,-45.06391933872916,-43.77158825322489,-44.516338542345665 +6439,-47.578865326093556,-42.991178996382594,-46.58620101920196,-53.905985986596065,-51.22575017755258 +6440,-52.87588665129905,-48.08358522361277,-40.375384241033295,-56.09477026795726,-42.80821880991779 +6441,-49.5813338845774,-51.80191794790109,-49.19353591813152,-55.505771509269174,-54.773289515763295 +6442,-45.138162169854944,-41.06425553747584,-44.934813734821795,-48.05867255415667,-45.31986068705834 +6443,-38.00885191753225,-50.02520873464928,-49.3188711473999,-61.93130787447482,-50.834897224336196 +6444,-41.89191608667754,-47.25131839938598,-48.06887015793909,-48.30528882469195,-44.52350863960091 +6445,-53.16453666026817,-46.008589929088615,-53.80379690953186,-46.083876748427926,-56.415496565865084 +6446,-47.771269815580794,-59.81614605628474,-48.53062836600488,-49.613810343170435,-44.37736337706851 +6447,-50.526402910421076,-50.26026358323831,-52.439663703321884,-53.406245307814046,-42.60328073255396 +6448,-53.663360622834865,-44.49494701666146,-57.53431914836175,-51.4919736274789,-37.097630917672724 +6449,-47.69122030557704,-46.09210247822509,-44.394761545992864,-49.65612437127153,-47.40129019664409 +6450,-45.45754453338226,-51.2006332109958,-49.61973886937063,-58.192632017841916,-50.91632100389948 +6451,-42.549513125714505,-51.39183937324907,-45.577623138938094,-50.32115080027238,-48.67363063873968 +6452,-39.7537300581937,-46.92607471799459,-49.24365837648455,-52.25206687104192,-53.56463829586508 +6453,-51.37254477011389,-56.74623865619137,-63.56987689359443,-53.25100637404114,-44.394688836896314 +6454,-52.04233323994355,-46.87010456232661,-48.14539133722669,-51.05601970939558,-42.13219169963104 +6455,-52.71374886775915,-57.36119522549336,-45.85831595064486,-45.28416899924848,-50.4666692116938 +6456,-46.33481233414669,-52.387705744988864,-59.08285427705808,-44.9802537984883,-43.761083238828064 +6457,-53.836660072747854,-39.771489955022425,-54.92183212937649,-58.15343728359776,-49.98874246535725 +6458,-47.80544449309577,-59.148824746310744,-54.86993407892596,-49.887006286341155,-46.41694410309643 +6459,-44.3120539235498,-41.97782650290155,-56.667899934776415,-48.9982974529895,-53.994037718556655 +6460,-40.35078832731526,-59.84951571920937,-53.32804730129696,-48.95701517799432,-38.31101772398295 +6461,-51.130227876025984,-48.84031688236132,-48.191660678688905,-46.518617185108646,-51.216960650958335 +6462,-42.91983237454026,-44.68312647474599,-47.29271623019823,-61.279693027313,-38.373454768527765 +6463,-48.121003085988896,-43.70261093481958,-60.76111037985789,-46.232238687690796,-42.005500637127746 +6464,-45.46459056254353,-49.28437861644669,-50.67502369197194,-52.42804917692683,-55.54631931125494 +6465,-51.63081369420183,-49.00565816307051,-55.01657498918835,-46.46295305201286,-42.17914624469055 +6466,-43.995915702064806,-48.07065019515938,-48.79710349858934,-51.43239075867565,-52.2756856918647 +6467,-42.51097564722427,-42.862632821044365,-49.37461747108418,-45.90867224735263,-48.36043528306625 +6468,-51.56031770274367,-42.00295108872221,-53.29375444759645,-52.772874065263075,-43.19712285233295 +6469,-45.11334373953821,-41.81357912319776,-45.950460762837,-47.43002868170927,-44.986849475574544 +6470,-44.13295409053327,-45.445012784795715,-54.82577685606724,-55.025963427972066,-47.93845821598997 +6471,-38.903701688910076,-49.13004991774454,-46.9107513264543,-48.41063977652507,-48.033486145298234 +6472,-42.723270133327716,-50.785780872425676,-46.74765690947805,-48.34704242502176,-50.887645117166464 +6473,-50.553731787564466,-42.86611714372457,-57.8865130060477,-47.48698243410101,-41.04268935218641 +6474,-45.29248324076462,-53.298658383399385,-49.83111685890038,-51.29417905214142,-52.0302475529904 +6475,-49.68418231547424,-44.665180123285246,-61.27536564124924,-54.03174335014239,-46.01243696720436 +6476,-45.75557002993319,-53.25548916903673,-53.699289715187355,-54.297696081521984,-43.02977766764239 +6477,-54.58721559583445,-43.87012828856578,-47.45494614091928,-47.907554765256045,-44.67340505390627 +6478,-50.090612901819874,-54.84120346183647,-53.81886222346535,-53.61205455326266,-48.38313901610858 +6479,-43.9905314872101,-45.51986478904971,-46.07453050815284,-59.86442809357882,-54.44948341676444 +6480,-51.1463103600727,-42.406659123463136,-53.79564992665278,-46.34447686085662,-53.35894981972186 +6481,-52.753323711866116,-44.009853902863966,-49.81877804305105,-50.29019948726119,-51.60489061111408 +6482,-46.1502906283029,-50.04075175702937,-49.45836915297647,-56.15579144074808,-51.254120133081386 +6483,-45.24543819024707,-52.267855779704085,-54.74582666820572,-50.07706537137561,-49.63402475542606 +6484,-52.25876225813572,-50.13308486761737,-58.70128836079722,-44.94610159723742,-48.29991155995098 +6485,-45.87684185167515,-54.43777251995223,-49.94294781583637,-53.74964492149649,-55.08152041796376 +6486,-45.962366820412655,-48.69168457854002,-51.19230535140819,-54.728085014904124,-45.628871275975904 +6487,-45.8997918142272,-48.23234986105547,-48.752062681520734,-53.38168211368088,-50.929326017041895 +6488,-46.10669784782775,-49.9274461707368,-52.612513290091805,-53.839422583539935,-48.486429092630964 +6489,-43.824329170167566,-51.20246942635876,-47.013658369636254,-50.73403497207906,-50.24694286993128 +6490,-56.711380534695685,-52.567389051333635,-55.45224732624532,-40.13017967406559,-45.219897962136166 +6491,-41.350798125752064,-46.92951299225641,-57.794050184811255,-50.48717520045284,-43.437158724312184 +6492,-58.32924341410177,-41.31993443406686,-51.22011357752056,-46.53648515961938,-45.87992784092687 +6493,-48.75047360849031,-45.41416363686052,-59.97857815626141,-44.290882253902716,-54.857366111575104 +6494,-49.34878349958659,-42.43283178730861,-46.354017659912294,-44.855014204099454,-45.20553224771919 +6495,-57.24462891967858,-46.8705790564459,-53.17890609476995,-46.86477179511407,-48.04737578267722 +6496,-52.31110870789892,-56.80154989509321,-46.46946076578526,-49.53292935167736,-48.07702511322607 +6497,-54.090915871096996,-40.67161385103041,-48.775062316279865,-51.57959931419575,-40.58535515728656 +6498,-45.78636888987178,-45.50448568350752,-44.74218049283032,-43.8366663198073,-55.14045557175494 +6499,-49.0149505935498,-58.238824610134955,-43.820599753427516,-53.05139923314812,-49.25493135545306 +6500,-44.717280386252696,-49.58733497067028,-59.768983803789375,-54.030633600389415,-50.735720375542144 +6501,-47.43482270928769,-50.59667193730758,-56.27626830054968,-45.47238779259029,-53.71852466516911 +6502,-46.84340065907311,-53.485509232872054,-48.16288539799649,-40.60578664278549,-44.33439975117145 +6503,-54.263104009109384,-53.23901966400383,-50.60153708900627,-51.75146597477747,-41.902654583992216 +6504,-58.78029089740535,-43.06125890926015,-53.10339812101374,-54.63568188039144,-52.464773910584064 +6505,-48.672999733188384,-46.30084913041109,-40.85757506917351,-56.21685841191325,-54.59364881120665 +6506,-47.434895151768224,-41.16975873093778,-44.728574151522494,-47.65849852883488,-41.50392743166018 +6507,-40.83718844805466,-44.64707755663997,-49.70268311758504,-44.881850593213464,-42.947858120904634 +6508,-41.91264609546369,-41.577961476285694,-55.89544884866464,-50.62875374525257,-43.14951412853936 +6509,-48.1068306857744,-50.34895727632078,-43.45535655917635,-45.99169318921063,-45.12597299833372 +6510,-43.6243090594604,-48.04673919381297,-46.46193904141515,-44.465103953821554,-44.6977115314431 +6511,-47.98735003237173,-46.29582533909332,-54.7045106778089,-48.353379648076725,-49.99730302597696 +6512,-41.382249769857964,-40.49888014007351,-45.12632618402057,-48.31412752868419,-49.561659299243594 +6513,-45.31343070518358,-53.20064417966971,-52.71860113470195,-49.744706957840094,-40.3615318915445 +6514,-53.012429389712665,-57.97614451325585,-41.785644472753035,-45.12123842951126,-47.847237039992365 +6515,-45.968477054040875,-42.7194392906348,-50.35213774707782,-43.850463976538386,-55.38790698428417 +6516,-47.9035738753312,-42.819637976801765,-49.12091800198182,-51.07305064132637,-45.19126017848903 +6517,-49.63737458094464,-54.168508760100465,-46.72619729254622,-58.07967447500011,-53.100968072197965 +6518,-42.120693552684436,-49.25027467365635,-61.61085158220262,-52.476250308291746,-51.80851730380643 +6519,-45.00642025571118,-52.89456797770778,-58.34206357557923,-53.954560256950366,-44.19836598012273 +6520,-50.46605077936107,-48.488226213724296,-49.40290136625528,-51.13933153305928,-48.93743128110532 +6521,-45.0596934934231,-55.73221854838891,-60.3915916020594,-42.71193294082366,-56.46373846230868 +6522,-49.408164263511935,-61.267052615581754,-45.124622870233935,-52.69960464474837,-55.53912648331162 +6523,-54.68417293003534,-42.63417974875108,-56.25306362125962,-47.729617691279365,-44.05317056769847 +6524,-56.212425620457374,-54.10483852861469,-53.41000387891351,-42.3021305282559,-48.66303129789411 +6525,-51.68317317816023,-51.03587611910886,-47.968913662266345,-54.23812623438994,-47.281324242255366 +6526,-54.30717053109007,-51.96437800338294,-54.1931460710764,-45.607062880147474,-58.25254505924359 +6527,-40.03957632924949,-41.020682911843885,-48.31067162309559,-50.615163213199494,-50.02949534239296 +6528,-48.31845100285807,-47.608464282980464,-47.52662402751716,-47.358269427460726,-43.34585242801208 +6529,-49.77570543057003,-55.9141729612484,-40.36734129586292,-54.9901290945878,-42.99198532182623 +6530,-42.86544394793863,-58.703301341873036,-42.58193037928783,-57.62424680195064,-48.32499745038357 +6531,-48.39965299372584,-62.63742152552365,-43.35816284232822,-42.909291469697,-42.40973782690738 +6532,-50.82850329146611,-46.743652800744144,-42.709843915371984,-58.63583491535024,-44.43778246393016 +6533,-48.265043964206974,-64.51511112720368,-49.874902203341925,-44.94896634530403,-48.29825433984059 +6534,-46.765137350561325,-43.7758410891826,-47.29934696353445,-47.541997652997004,-44.71284778311984 +6535,-49.091841212834574,-47.34287739694479,-46.219029597147994,-53.39472328882256,-55.32790040509977 +6536,-52.744566526243894,-49.77796936059268,-47.117686516161406,-50.143586266166864,-49.90538118354043 +6537,-44.078822917481695,-60.85517283365178,-47.16494538571347,-54.02221047300812,-47.30148465868189 +6538,-45.23628376578105,-41.387949216097965,-45.637726475795404,-53.78799728185072,-58.399062975515356 +6539,-44.51321378090674,-40.9807617522474,-49.905146913017475,-49.27436983715611,-49.218119170167896 +6540,-42.067402806341086,-45.61838571986647,-56.24190147202856,-44.09708741135373,-53.008369689977975 +6541,-54.369682587196586,-51.97441983299054,-46.95512978372093,-46.441703253208374,-44.00987248633593 +6542,-50.99531796661752,-44.29355192424227,-51.69965920621121,-55.88901782889115,-53.44989596861175 +6543,-50.643496810928184,-49.5560245373248,-45.33215389366579,-48.117430835471104,-52.99214052088649 +6544,-43.98581335912558,-43.724345836958435,-49.94594653997903,-50.09382402709179,-54.95783785391385 +6545,-45.838535487106995,-46.02088261469515,-58.05358547558867,-41.68384654178479,-43.675845239611164 +6546,-43.59064120414629,-49.743068449478095,-49.92502776782349,-53.998353885195954,-39.81871849481288 +6547,-49.68302343271104,-51.791100947634035,-44.792134075300524,-53.23709299890716,-52.11486716458812 +6548,-53.52539300173042,-52.92191132404313,-56.56536499032169,-57.40404822124639,-46.39388794025589 +6549,-44.01997600733518,-50.659296228208284,-53.785908230884615,-49.88989136006943,-44.078309812873236 +6550,-50.53211695157836,-46.42865975844205,-48.523753677378785,-45.611820281823945,-56.47704568569601 +6551,-60.50085876211647,-50.83642804173157,-59.161158838127605,-47.50394356349963,-46.05025643418653 +6552,-51.41718339509018,-48.70082637794451,-49.349127139025974,-52.99258324874923,-44.953374096834374 +6553,-43.070173116850896,-41.94764438587218,-52.002060287338324,-51.59642104810267,-42.871244309035966 +6554,-57.40937351585914,-44.848104667075994,-50.483804226152365,-51.65536780608912,-50.71879739966604 +6555,-53.81626594055731,-52.316190350269245,-46.96846657421068,-42.86170067154197,-55.63098005467203 +6556,-54.18041177209952,-45.99891336047074,-55.32330093580125,-44.35613295039318,-44.48782068492654 +6557,-52.07325690500674,-54.970802057578325,-46.050934031884154,-51.2940547999408,-47.25508528725082 +6558,-48.49844037620453,-47.92364052435666,-45.11801333189075,-51.234956932989824,-53.97583264084078 +6559,-56.99072688847736,-56.66816033903763,-42.83523614667192,-48.26674368124037,-44.400950365479105 +6560,-44.16369931951013,-48.358497451328546,-53.423508455870895,-55.227473126040884,-46.283196963545834 +6561,-53.533841442544016,-39.73490177005402,-51.27404543374191,-55.887423806305776,-45.91851639486544 +6562,-50.467031387393426,-44.84024501161373,-46.82030829777895,-46.56766693279986,-50.089382862676885 +6563,-50.391763245423974,-54.260949773357815,-56.345995813064626,-53.033882893440826,-46.702190276272525 +6564,-52.76422896505373,-55.914603608426404,-42.95187235393883,-49.33289980439901,-43.61956456947699 +6565,-46.48780214378114,-51.77715879925793,-48.12882885048329,-51.543519566591,-47.598554047766044 +6566,-45.69032180309816,-50.81273777760895,-60.98967626349635,-57.442736325080745,-43.1059054507854 +6567,-51.40813149979399,-48.88817292798064,-52.6268141101489,-50.620628058385535,-51.69497386472538 +6568,-47.274872847025314,-41.796900904860834,-55.00889146880082,-48.67454385076824,-44.43251285838712 +6569,-52.68737767042953,-46.4777239384852,-52.92081172581741,-53.04746845205443,-46.16948238240431 +6570,-48.72138284470802,-49.027491858041756,-45.290513386440075,-50.58260380269821,-42.11750852668245 +6571,-51.14983091919894,-51.65039488295017,-55.85341846502519,-43.28884285904508,-40.66447476756847 +6572,-43.51924783944293,-46.0833583360475,-45.1111254302251,-52.77082901275309,-44.939132065649964 +6573,-43.587285923332466,-56.61230120788364,-43.08592696775591,-43.40450386561971,-50.902105829158735 +6574,-47.78730098290707,-46.270096974074846,-46.204017372636315,-45.63422674926466,-50.11597847050717 +6575,-49.20090931498385,-52.1390207738554,-46.13120122754481,-43.21497828542229,-49.62991407252395 +6576,-50.50363804718484,-48.59142681479885,-55.36690805705616,-41.432573849524864,-50.50774040746853 +6577,-44.57515113564243,-49.29398914298373,-42.219850852883454,-47.42288335546464,-53.2682986133264 +6578,-43.895283378926834,-54.58569256164259,-49.867870046668315,-57.0549967902261,-58.09230964498485 +6579,-52.8596858001208,-55.0337988588939,-47.768289229066205,-41.672380743526105,-47.389807593774144 +6580,-49.95201623764967,-57.626316830421324,-48.10516184398182,-44.808976075321326,-53.8911048762607 +6581,-48.360850824175266,-54.49569137343377,-40.85465483210134,-51.347728126726146,-48.60634513072361 +6582,-47.896714788355084,-41.754023865168726,-53.96052275325014,-42.76171769474242,-55.76261337373946 +6583,-52.226040575400305,-52.29541579748812,-57.81370038953048,-44.24366576085542,-53.62425833467865 +6584,-48.279505369865575,-41.222453990148644,-54.959075297235294,-59.37368037009881,-51.33431858652024 +6585,-44.922830436481064,-51.044158536029244,-57.0746411517468,-50.98375417275573,-49.87826694326749 +6586,-49.56083448900982,-44.24974905875792,-44.60534192426612,-51.158759059770325,-42.51694964898495 +6587,-41.4803268941141,-39.991778478825765,-46.828223519553475,-47.40936197486817,-49.09795569526902 +6588,-50.03684114413453,-41.6143700362942,-55.19405200690821,-44.7958590122483,-46.73124957637178 +6589,-46.04276719119526,-48.24658433548292,-44.469023709783116,-39.6771897564672,-51.985996406813655 +6590,-51.0395907710157,-41.00789649216931,-46.82450562022303,-41.55921788864782,-47.315498547807266 +6591,-49.62078772973282,-43.011214104358004,-55.24398898766664,-41.400723000334686,-43.80551981067156 +6592,-50.13953555430502,-45.77435387692757,-50.72158533425239,-47.53126206248135,-42.479905675740035 +6593,-42.78549501966501,-43.125689640341314,-46.84403780349131,-51.978282074065035,-44.20234343400145 +6594,-45.64332229627906,-45.2567156627174,-57.45775269640608,-60.13634803669804,-45.544880549782825 +6595,-53.33055411288778,-54.823509921178704,-56.836579319727214,-51.0539590560593,-53.36211061471041 +6596,-48.98927326729298,-43.424843980531335,-48.794178528147235,-47.57577967046244,-49.32304902094482 +6597,-54.61103599054034,-44.81982831829412,-42.744836145265275,-49.45919981676513,-42.53757217127133 +6598,-51.8735999787245,-49.22514584495869,-54.9268518610665,-55.76047412480529,-43.26965487291327 +6599,-48.19447396846074,-48.15186116451161,-45.082732787552,-54.1220753203951,-49.98610801336896 +6600,-48.47266548751338,-52.483466647112444,-45.34711967406961,-47.079519586217,-52.0737440766225 +6601,-53.545561240288926,-53.25070754606021,-52.05455957107068,-38.51242538432728,-54.87558131220897 +6602,-60.09731363133855,-50.828905116530606,-43.468942231561506,-50.36271773673199,-48.72827065436836 +6603,-59.16087116228165,-40.59333482955021,-52.05356183608537,-47.88473796560319,-47.20244548649013 +6604,-48.51975199750726,-46.456015710993,-57.25233410474431,-54.32109816005615,-50.180512575326446 +6605,-46.52804894523512,-44.7923185322279,-58.11393918393162,-41.43599121392861,-44.794705947006115 +6606,-50.58302363901423,-51.020978309343434,-54.2601062380339,-49.745631441977636,-41.758345474460015 +6607,-45.03696700746651,-41.42878390405869,-58.1909963170223,-55.09151211043877,-48.34207039624801 +6608,-44.90257948982401,-52.65164937216535,-54.53347109455093,-46.40828337321894,-43.50594362161591 +6609,-46.01932893832041,-42.61903355189686,-58.86045944627591,-49.92371153528355,-57.02532506922723 +6610,-47.133594558974615,-46.81989534781925,-60.84995308672674,-41.47534602623815,-51.045472689663484 +6611,-56.055170866912334,-43.737820012779466,-48.2532523804833,-57.5882964460253,-41.3471975386869 +6612,-54.78970889640135,-40.63623043065063,-44.00894134007959,-49.11349652161673,-48.574290067455294 +6613,-46.81168571535307,-58.52487924842866,-48.341332699548765,-51.85418316008318,-47.93020900615678 +6614,-49.40194088509543,-48.92999783697162,-47.68731731401974,-46.16415697223989,-49.193153618678 +6615,-41.472391906281196,-51.164083301184235,-44.43344161983857,-54.23587225667142,-48.566779092898926 +6616,-41.732363526588294,-47.382629133627354,-52.57994277512524,-39.43183880115922,-46.8777760596985 +6617,-57.01391276361833,-42.93179088840003,-56.312553913496146,-49.60738037009059,-57.90878121379067 +6618,-46.57347620609189,-44.85414875740694,-51.17786657340251,-40.17548283759963,-50.778798480853276 +6619,-55.077793727799964,-40.5666912008921,-47.600112407659715,-50.07498686126181,-55.079949002411816 +6620,-42.98380130403191,-53.8431011960722,-51.45323906692514,-60.32816203134846,-48.34441866990402 +6621,-62.643820518648894,-44.87224968577424,-58.72579723747718,-43.53846813442135,-46.63365598703392 +6622,-49.887803086218945,-47.19930660238972,-50.95631332461712,-49.04234771978612,-54.44599306122017 +6623,-54.03282037734755,-54.42468646361332,-51.37473396353323,-48.125362006305565,-42.60253742550505 +6624,-58.14003525928504,-54.40960214960924,-42.56638459087865,-46.60780378952371,-45.60275321783066 +6625,-48.25304908872074,-39.80943446567325,-46.108717165850535,-52.10025974095244,-46.12879082522333 +6626,-51.46012578109826,-56.26508469618593,-50.914485783253525,-55.73324845348895,-53.082101640135065 +6627,-46.78744598072542,-53.02382766751241,-55.64526111153218,-61.323552940447755,-53.15658384185767 +6628,-43.35424607246112,-55.50104732094999,-50.200680412173455,-46.53106840748885,-42.177823166810406 +6629,-43.446579874343286,-52.7254900830776,-55.90843083609559,-63.271307177306106,-45.01692259826781 +6630,-50.48078437027283,-39.63870690374414,-44.48825603604081,-56.45250891349373,-44.100454140699995 +6631,-46.45290885302326,-41.76507969061495,-40.506425796310445,-49.85068050293282,-48.42058008823131 +6632,-44.30303479683527,-51.54382354462226,-42.504821108418696,-51.74008847635516,-48.16304232823002 +6633,-54.57273466991988,-45.31206204474873,-48.18209312881723,-44.748677522841405,-49.25713884558695 +6634,-46.30847979134681,-49.019614207536016,-48.96089847431602,-49.67985618981777,-48.35647765037758 +6635,-50.7521040127753,-54.16371185217768,-46.79433619454186,-47.305133968445794,-41.324620180235456 +6636,-49.901113501435425,-52.48576652369279,-50.70977025958478,-39.88201640259836,-50.538978878375595 +6637,-55.869736699818965,-44.00048485450256,-40.66639782438376,-48.12425703943254,-50.29029104263247 +6638,-43.6885951285577,-51.355345635613126,-55.75182707459219,-39.1780749638553,-58.20738410929774 +6639,-50.75426698023839,-58.14265302841481,-46.34640117771729,-50.58075669341943,-46.135202385135685 +6640,-49.073961524055186,-50.49429985978378,-43.02708127033586,-49.955101071996545,-39.82182772240414 +6641,-47.4985761023208,-43.4749771664077,-44.826601830359884,-50.93379185967592,-51.430886211286435 +6642,-55.044461434230996,-57.39775936866063,-44.34837853116707,-41.51716727960697,-57.54790052251174 +6643,-53.739726181468676,-48.41961062770799,-50.9285243227488,-63.08843952832372,-46.17050908243395 +6644,-52.822624627499,-56.88213450923589,-49.15236534529998,-46.089595782206196,-50.519098858154216 +6645,-48.12961822213527,-56.12441726691118,-53.03368646617856,-52.23379945967408,-50.04025532878012 +6646,-42.066126952271986,-52.96368041954524,-44.462469571919215,-44.315472559845304,-54.757908568658856 +6647,-40.04484746443376,-46.79745929469836,-44.4324071142716,-58.577249105456026,-60.53964088603703 +6648,-46.15001073917637,-55.973284993850925,-44.178574621032524,-57.147527536202176,-45.50971300298589 +6649,-46.756476882036026,-47.33001215490144,-43.96975336558492,-52.971608808905906,-60.44421527891794 +6650,-42.16953533431644,-47.379679568385086,-51.883152939582835,-56.11567721247461,-51.081041320220955 +6651,-52.528497600232875,-50.574691779440194,-42.210921825892314,-45.688933270920586,-56.99872559142664 +6652,-34.221776854582934,-47.784085887864386,-59.030822374693045,-58.88356315226298,-51.81471691661896 +6653,-46.22915604670568,-45.22355859597468,-58.180861556883244,-54.01148755681328,-49.350045810167295 +6654,-45.59361304426776,-53.15419273001859,-47.00802748947542,-51.07767307045934,-45.48664819885168 +6655,-33.91848945285571,-44.60162258788292,-51.026989300430365,-47.71110560525004,-49.34754964552956 +6656,-51.68163368610955,-42.063323875318915,-44.74420440602669,-48.31477924963935,-48.36608214784108 +6657,-44.6515530566861,-45.49714798609943,-46.7638782726003,-40.691042742987236,-44.711104116796655 +6658,-47.015184902680964,-40.393694400028195,-47.268329732251566,-52.47195381160502,-44.0089893980533 +6659,-37.915744506554375,-42.33970196974823,-49.209298727627214,-49.293420257418354,-44.42110927977923 +6660,-44.25069668875674,-48.17748479235303,-50.150160790084975,-45.49487888525096,-60.132700752026885 +6661,-47.706430620871366,-46.76590426687029,-41.88187680555777,-47.774412359957964,-49.038149056647185 +6662,-50.15563057017977,-45.703769680512146,-47.68267357128871,-52.75018581347975,-52.39798407702168 +6663,-41.63531800640763,-46.86592200439745,-54.027915905049554,-47.79898207577147,-41.925937778103325 +6664,-48.91888589338457,-49.18281748103984,-51.043052868025896,-53.01629955699894,-48.187991295741654 +6665,-55.28877937918466,-45.3327151215952,-45.627579832004514,-49.8677681632324,-48.232938200546954 +6666,-44.08594175947273,-49.228704989160995,-49.32935176279986,-48.87925085801638,-42.096583548244745 +6667,-43.3394506195894,-43.19686315648589,-46.371858645309274,-45.45162675160662,-42.355093104713895 +6668,-44.74166835495211,-55.05501821563283,-51.53399937758347,-55.40497538262499,-46.40706835649263 +6669,-54.23335547849267,-47.96619908246091,-45.50695240476183,-46.300606787675555,-53.02311148440855 +6670,-45.124563202682296,-54.73088756721537,-45.10232686317621,-45.18675088313059,-48.496403547871616 +6671,-52.21402026137503,-42.53788753579637,-43.07657985723484,-56.085672727022924,-40.25381585469511 +6672,-52.243407901068764,-41.38134806182691,-55.3583992533315,-43.8768719840483,-49.21924737162491 +6673,-52.554109415127975,-53.80642125806795,-45.606185750770166,-45.2953939292239,-51.50343493009675 +6674,-52.63638765437333,-56.95817080661128,-55.13816464234561,-61.513146374043,-45.76941240848868 +6675,-50.484509284439866,-47.63049924940995,-53.02131754189765,-38.19577541222354,-51.76322843997661 +6676,-50.82744356135472,-47.45442154938189,-43.542720587002165,-48.983388922545366,-51.927850629041366 +6677,-44.60038614984534,-50.623866172454036,-46.61430514928502,-44.51348604971303,-48.89543924289719 +6678,-41.42040164862012,-55.228503722245975,-46.509974026093424,-51.975056060939906,-48.343385109606324 +6679,-35.391960535020026,-48.813656695171446,-42.46594241891722,-54.588936410271025,-52.389415838064366 +6680,-51.28622279861925,-48.12086476893092,-53.18062240338487,-43.541436461295554,-43.15484355666193 +6681,-39.25483285494917,-49.14142537647105,-45.11133419833719,-54.10424133003744,-50.99473794329033 +6682,-38.368996731752006,-45.26729223126291,-42.93615616677664,-56.69029056054419,-48.337850760881565 +6683,-41.2156389971317,-44.86234832108458,-45.3007011314111,-45.23593618924489,-59.391254735789715 +6684,-44.15147421659696,-47.97933927418871,-41.07863791943934,-51.719097520353316,-46.702565317843344 +6685,-55.17557876893044,-53.60939075307323,-43.035288914056345,-40.15746280234096,-53.6646931351802 +6686,-52.455961119672395,-47.99608247683414,-48.030758709253725,-42.89028485099798,-52.98747085778294 +6687,-39.661946367208195,-56.92932451948481,-50.42766326549327,-58.565396387728846,-42.30901838439809 +6688,-37.18976233652978,-50.51603682309431,-41.705711796879626,-43.72833868406318,-51.46422014114612 +6689,-44.64724267150257,-50.00517128115153,-51.05359489677974,-44.37926019415064,-53.21739714795541 +6690,-48.39336551421617,-50.486335806076546,-41.416659316248854,-49.13267875547164,-58.77914914890471 +6691,-47.536833974461494,-52.76265729056808,-50.2100349299,-40.63681489349618,-44.10749113837719 +6692,-61.089615247559294,-52.88499137522244,-41.88189397776283,-39.091122165582995,-51.17842669022873 +6693,-47.56100661854227,-45.02575050192154,-52.7226589382742,-49.24557950274167,-45.47007584434235 +6694,-58.09445955015738,-52.94482165252958,-50.506736179941136,-45.74069911320166,-50.77225280848415 +6695,-49.81731878322614,-54.384826561518885,-54.06902902040276,-61.02997610500733,-48.38698935257732 +6696,-43.84821485546761,-49.99019677220226,-45.942054781282835,-43.57942192301975,-38.819125643909416 +6697,-39.201760272252564,-52.75992182746085,-59.633031952045776,-48.78842773049507,-43.70921249495624 +6698,-52.468083323736835,-52.48272180699396,-44.9177510530374,-46.26417590295006,-46.58351285041079 +6699,-50.68868625873764,-51.98393711038044,-57.112095540488625,-56.45276406324314,-46.531707672744766 +6700,-40.988645667224844,-44.73055988362224,-45.60633262846317,-45.27122694809532,-45.19987178549873 +6701,-38.35878032574715,-44.27433403607333,-41.5343020727156,-46.72795581761142,-49.70328340283464 +6702,-47.85705823742967,-44.60429562135539,-50.03227620861881,-42.6683312120695,-44.938114541822905 +6703,-48.42102543983876,-46.738423824610955,-55.33075975811689,-45.58771367886884,-48.60922019854956 +6704,-46.9412510656909,-49.47043378486668,-49.379373957802876,-49.01165332605801,-42.12348115860829 +6705,-55.39450112666399,-46.78141149240416,-52.80427156763273,-45.96988196903157,-45.27007477524233 +6706,-38.61710360977794,-48.43803751273117,-45.9650744507842,-43.12012329511168,-49.91626195095318 +6707,-50.08082550608161,-58.54080442447315,-47.94589539401686,-57.44261566641312,-51.767620192856974 +6708,-57.27916516191568,-53.605123286162545,-55.95590769898858,-56.06189525244146,-53.7641053806444 +6709,-50.529983445271604,-53.42825392952827,-48.95918821243497,-55.32278772474208,-51.47840532922022 +6710,-51.26573340985557,-48.29270830292843,-47.691274451872864,-53.35347606107732,-43.81834737022985 +6711,-46.01602173152423,-44.19866061772001,-44.17869914220479,-47.10498761354497,-42.75961465148077 +6712,-50.675714176977856,-43.92536517102625,-48.1835489588307,-47.005826402376144,-54.65152803479541 +6713,-51.758888972275514,-52.43737677791963,-50.63924695458027,-47.485051895871344,-53.31258630374955 +6714,-48.76644631906092,-54.89550831446402,-52.55610885685941,-44.089955240310175,-46.50127801623063 +6715,-55.86567219197332,-48.30107129686705,-45.40894661113956,-51.03727121044565,-56.4281338905279 +6716,-43.82411210656121,-46.4611852684072,-45.51705666869938,-44.272232379586086,-42.15597641578789 +6717,-51.245598739304256,-52.15259226073044,-46.83058442346094,-52.09401513545175,-45.653646303328266 +6718,-38.08408736632628,-58.876229334514775,-49.36235708372253,-43.099046021082486,-53.4304944765459 +6719,-46.22908285994351,-54.72814274887533,-40.97925473445588,-60.61369378958736,-51.3343515830351 +6720,-43.55176756698824,-50.784086736059855,-47.96178016806168,-54.769896196561746,-41.18990614785905 +6721,-51.0983158878791,-48.8732429778582,-53.441342823905515,-45.655373345001166,-59.5314934404187 +6722,-42.21609824096574,-56.21154175191383,-45.841399645403115,-45.54377069944398,-48.88429317209371 +6723,-44.16977607267456,-46.65404527572469,-48.893581755293084,-50.57508509990682,-52.318059347466836 +6724,-47.34961707003322,-39.994775385426244,-50.454106201516,-49.73462713540597,-51.59480727464673 +6725,-38.042692777375215,-47.59755657810369,-43.20435399422285,-45.32193349871483,-42.88870914895462 +6726,-46.74742079409152,-52.46794887124406,-54.13180367872956,-56.02980785723787,-46.75810350180548 +6727,-58.280784268785595,-41.732490009205335,-44.9011371049653,-55.55132395628742,-46.48314947240092 +6728,-59.38838778763176,-42.96204890884337,-54.310124155381786,-50.40385621381608,-50.053783865097216 +6729,-49.1378057789826,-51.05131195126801,-46.248737574273584,-44.7598789114662,-48.1278689681724 +6730,-40.32868165309362,-49.977547660971304,-53.19372682251797,-40.93167049309508,-56.33060271282445 +6731,-45.15680634920907,-47.3018118311637,-46.0577806961745,-48.25491632156786,-40.63574683542053 +6732,-58.84854795639619,-48.45930424050579,-43.13854261219272,-54.048122570264724,-47.95517417251282 +6733,-50.58787188702497,-48.33924700282494,-45.55120273239328,-41.74935040191356,-56.17842896461988 +6734,-47.22985761644874,-46.48980799692563,-60.158426597640315,-46.24280452986962,-46.480943047390205 +6735,-54.99782061578302,-46.771847324010345,-53.615048230294356,-48.849729681419504,-44.73346112719988 +6736,-46.11011309525877,-47.10893879344771,-55.76981204633304,-35.28125576000576,-52.04835879953191 +6737,-46.41182363140783,-46.842469571649985,-43.19631499606803,-37.62368847071942,-52.748124372869576 +6738,-44.61896135579309,-57.35082741173554,-40.720746766800694,-37.492157347341234,-54.96355389362096 +6739,-59.551581495011504,-50.87901922411813,-40.33935381040312,-51.990208346737894,-53.047718403659374 +6740,-38.37659642108551,-51.044125614660956,-44.72082533457244,-52.4655155213775,-57.418889996719315 +6741,-52.03186446891981,-56.2218404040158,-46.51422011404447,-41.301032925560946,-53.8612390880524 +6742,-55.46360979020245,-55.230991273095135,-55.722756350973675,-41.78245430357705,-40.485552910798816 +6743,-50.98786609102553,-53.588466649973,-48.10105820103521,-46.27913929019932,-55.26793138359225 +6744,-50.71123851079244,-53.930696286856524,-48.65023252496065,-44.815861886782464,-52.45085887996935 +6745,-59.02588358704059,-50.3491465722157,-43.128090372267266,-54.018253501436554,-43.28689707976432 +6746,-54.9501435651506,-45.703351283714426,-46.820459188604836,-56.32900145422112,-58.20798598243988 +6747,-45.65671206731054,-35.607889843511686,-52.1067019560844,-50.57369111278106,-59.8507098963191 +6748,-43.06323480141533,-53.01051880456876,-47.48438075309659,-55.432337503516976,-47.19561806839 +6749,-54.47969774673,-53.48735333159372,-53.35929035704787,-43.95444161591268,-59.255377439898695 +6750,-48.87839075234199,-54.59106201270036,-48.56596127892692,-53.390850899573756,-40.70834892074316 +6751,-54.78203074922709,-44.314757370169495,-40.098179642656355,-47.58805240454804,-43.41308166691719 +6752,-57.116717769125565,-55.907081786380104,-49.18836733900937,-48.76730450755303,-46.69152349180846 +6753,-53.672116683587355,-60.85103442147323,-49.03851998144795,-58.716763416902104,-43.7204537391989 +6754,-51.918231080081306,-43.39942865151746,-39.70086662391149,-59.539986554493645,-42.81211784209367 +6755,-42.650205197100846,-50.64312080671957,-58.69088740388743,-53.78380264045063,-47.44945662690207 +6756,-46.926597905921696,-48.63921261881853,-42.47713134490224,-42.804310796892295,-56.15724993926325 +6757,-48.6474027292405,-47.44633061152236,-42.6801259322182,-43.219494968686696,-45.62020611731407 +6758,-48.14462486449963,-42.45470822541596,-45.072354974037026,-55.79517046527517,-48.93773218830789 +6759,-41.459988532437684,-52.7058903782014,-48.18875604127949,-52.035372725838464,-48.710344750348426 +6760,-45.48944924490477,-43.07668685109056,-47.44658492786142,-39.96307054851812,-46.26634823018925 +6761,-48.847974051145684,-47.49362467289148,-45.007999483826985,-54.23621632367699,-43.700261819449686 +6762,-45.34555286361694,-36.41072575766703,-44.14304198037967,-47.13886997302688,-43.6057741298329 +6763,-51.934982204226365,-45.80980753808569,-50.43562225282987,-47.188019887248515,-50.193645874620685 +6764,-51.09304546366173,-53.75900501478441,-44.21483840074765,-41.33641526703097,-53.049357557370456 +6765,-47.751232893512764,-52.98871223445892,-49.85464862832804,-44.935540147182394,-50.01971812328907 +6766,-56.432506261591264,-43.22531414188812,-46.165681368768276,-50.5857926173742,-47.12222396170134 +6767,-47.06051635661269,-44.190063114601884,-44.04564286572406,-50.7874686469864,-50.11168264334801 +6768,-41.66054312483215,-50.34992153668852,-51.04608394395352,-35.76825220796076,-42.814589336640736 +6769,-42.53886016964322,-50.11180004260799,-48.07281196371762,-50.44546600957871,-48.43913564488888 +6770,-44.37281282850454,-43.20737352814767,-51.246206031804476,-51.633383325498464,-46.03582787024013 +6771,-49.99944700827728,-46.46222233638894,-51.42753079298635,-60.13481812345969,-52.731744588217204 +6772,-39.48183941699489,-55.00705520027549,-58.47260826701883,-40.07344126295464,-45.99888686301241 +6773,-43.68253285826342,-41.67952698373414,-50.49021256205944,-44.41813782212084,-32.29659009160431 +6774,-45.06443326763731,-48.84902071197502,-53.70203435552467,-47.56870372782804,-46.52296192847051 +6775,-50.734269843892875,-51.530530353333,-41.73054426136233,-56.215724915784506,-51.57642365787279 +6776,-50.012693772633206,-44.929881721739314,-47.943986278052705,-41.379094943186715,-54.278539116411416 +6777,-49.600681255418,-53.06224405868993,-52.33053442642282,-46.3005381971322,-54.084678565081994 +6778,-46.68893566132969,-50.22300149461337,-46.95186438343223,-58.495014678564665,-43.445299900935595 +6779,-44.465766395820836,-48.5597220149339,-43.036504786776064,-45.70220161717702,-51.79485057867987 +6780,-45.964100212377225,-43.11454814569021,-46.85823207874393,-56.03570357623503,-51.04483776694622 +6781,-50.80795358939468,-45.24516714693485,-52.65365223132876,-46.38520595993999,-43.9954602290173 +6782,-44.78473281959825,-55.86454478391254,-45.84387809166055,-49.18835259946276,-49.838029924499025 +6783,-55.772062227939735,-46.6878840857443,-49.26121263768463,-47.7646068634556,-52.090943975328265 +6784,-53.950884875669004,-53.037384633605626,-40.584159037415546,-48.68308556200618,-50.48890845225045 +6785,-40.47659495160456,-49.00619991299296,-47.37583272444392,-38.73255624953364,-48.20431608582953 +6786,-45.385961597291114,-52.69665635384633,-47.19475864460889,-48.307208003376324,-51.237150916461765 +6787,-42.33622812714981,-55.23690201177775,-45.58504482866907,-45.83832426460135,-42.44072057151024 +6788,-52.44950966854998,-50.645886781820145,-49.95274191744046,-48.26836895279984,-48.534739554100454 +6789,-43.5600416415509,-51.032549436996845,-50.88261131278379,-44.28194137351327,-57.51683810063212 +6790,-44.800860577754165,-45.60074441169836,-53.9864052524921,-41.999510758238905,-52.256000565541044 +6791,-44.84239508690125,-55.244962198662066,-40.487195443592995,-47.95646406830188,-45.64208663509939 +6792,-42.878589021587985,-54.37634736631929,-42.12214862595379,-50.11209717241575,-49.28879377370941 +6793,-48.38049050586857,-46.2715519393405,-43.368736113251146,-49.71491883617558,-44.92025579508741 +6794,-58.37997503574218,-45.05365406375978,-45.17588203067988,-50.04328485433563,-42.5146202499155 +6795,-50.961029267546955,-54.45723792245817,-40.94296280385313,-54.6665575104123,-52.42443264831157 +6796,-39.224216655932736,-48.25514672600944,-46.89149342044051,-50.587568158327386,-47.37634761687654 +6797,-38.69279587406618,-52.755161454761534,-58.08014968480317,-41.039497243694264,-43.74644411558637 +6798,-43.616287396086385,-50.020540726337046,-42.96571685242323,-56.92556843313779,-51.98183004363565 +6799,-40.54797276286495,-48.859413286357196,-41.90836360628096,-56.9559149029322,-50.64617644788144 +6800,-52.80262307080603,-47.58712282180376,-45.19255477264493,-45.25274947430354,-59.211439859885395 +6801,-46.93295230574262,-46.69583920878329,-45.302411472001026,-47.32585710475896,-44.69743626421436 +6802,-49.80998788460249,-49.96112520874586,-48.275993317041404,-52.062769398813074,-52.59775379776785 +6803,-45.00687106721739,-61.54076433460132,-57.32908665651148,-40.717759061111316,-52.03372002746665 +6804,-44.04273207588709,-45.63887963072202,-41.744806669191235,-59.63830244849943,-42.263298623824156 +6805,-43.74620365334651,-47.77767410203659,-51.05904425381621,-50.45589061335358,-50.5832586434678 +6806,-45.939795774604995,-40.804480976063736,-40.876370963710805,-52.805999434473954,-48.10088545174383 +6807,-52.43288005287631,-46.94398712002685,-49.783188546002926,-50.88708175574556,-43.06028241135338 +6808,-43.64646155079153,-47.538659896106644,-44.02528080004923,-52.26713665559803,-46.09535230444531 +6809,-48.61403776367372,-47.24686676388115,-51.64045090402881,-49.002208515223195,-40.30803139440312 +6810,-48.40060179801531,-49.51702008486286,-42.17853546656736,-53.03845902863896,-40.1122589148595 +6811,-45.511932410482814,-45.22838613041225,-47.62167930290209,-49.727008426629766,-48.218715652251255 +6812,-45.67728198085125,-53.38824312090744,-43.961098087201655,-40.162032616709105,-44.171915697549906 +6813,-50.50748287862447,-51.818961720050915,-51.015538048992525,-52.59899462492881,-54.63247683407821 +6814,-55.812981195239,-46.48969844096738,-45.56389695226188,-47.60387578242052,-53.183250897846165 +6815,-40.3630872281865,-45.130669845725016,-45.318656967024914,-57.53280085747716,-46.95218893046195 +6816,-48.80854762402626,-57.39844863141333,-42.13098899770171,-50.86398744512386,-48.5151838178747 +6817,-44.402889343579645,-43.90389293965851,-52.55765950314985,-39.07979751319571,-49.58931136335622 +6818,-50.61502804105076,-46.61991924283757,-38.83546254382714,-47.04462133300551,-57.22281912565674 +6819,-50.05531123195639,-49.7129370733778,-47.868738082318245,-60.139624891087,-49.116209991513905 +6820,-49.35042488064073,-50.7757775476399,-52.290324743446796,-39.013954549037926,-44.09126238398163 +6821,-55.84818536213803,-42.55223180799412,-43.40336785789928,-45.11645193649172,-41.41869192809284 +6822,-48.74826739766517,-45.59763553334276,-45.62422879238755,-53.165080667802094,-45.2226303664858 +6823,-49.65882628483212,-50.36444714707215,-48.19235877769869,-50.04428086356325,-43.60899773492685 +6824,-52.34921510299883,-55.473606741168666,-47.115273556260874,-47.161067855332846,-42.7465863965231 +6825,-42.780708278916926,-41.522546110618045,-53.37261865022161,-48.54878809520568,-42.10945978833214 +6826,-43.42094345064627,-42.458144020779024,-46.32329728203564,-47.294961999463,-47.30855958136078 +6827,-41.15033272078885,-48.23222387456847,-58.68780122846073,-47.83884078150672,-50.52927341323001 +6828,-41.45445102029696,-49.82064713237641,-60.72461793325754,-49.22928412779905,-40.22544711203362 +6829,-56.45363613688792,-53.54552893742902,-46.69926170934637,-43.86182947400422,-46.597783531658 +6830,-45.724351067995464,-51.67520068034505,-45.80301451518395,-48.76628929608109,-46.75453831370222 +6831,-43.52361469421913,-45.61756549152737,-46.999389193604074,-48.35662430273974,-45.37208941950733 +6832,-52.351605327780824,-39.27363826700641,-42.64110337360778,-52.6929300565974,-43.61931019166648 +6833,-43.707725737431225,-52.05552057891,-50.65213343538685,-56.66484749769471,-46.221412526508686 +6834,-58.225623039172184,-53.03803303199793,-53.74198999518326,-55.717561661961035,-47.669663590104584 +6835,-42.329061432941984,-50.910899542267266,-45.10991936682138,-42.1579065698464,-53.69061530111835 +6836,-42.16522612382638,-43.72715407254425,-53.3367290136142,-49.115635767468895,-50.12024273773382 +6837,-52.124256309342975,-45.1615642461285,-46.30740759848154,-38.08709314702367,-43.61268179031332 +6838,-48.313698042970074,-56.27426977661541,-46.429802084438954,-51.79648073814863,-47.92342108818487 +6839,-55.927283207235746,-43.395001838321924,-45.01793590641875,-58.5551133496518,-55.448736409193586 +6840,-49.576102445771554,-52.98134705939777,-54.927155226485105,-39.62362755444498,-51.04679550105704 +6841,-40.23832366900387,-49.02838313906797,-48.407728205883295,-54.0753326749714,-50.787960355284575 +6842,-42.318611076672376,-42.52484772718205,-51.231548555761265,-46.85501469906638,-41.97831565860984 +6843,-45.355723546470706,-49.780462390498926,-49.7588364175875,-46.862012217571916,-45.98278930804545 +6844,-46.56950949628938,-55.025710142455125,-43.26239903947175,-49.19005182823695,-45.520653731705146 +6845,-57.20338549903377,-50.814508760707994,-48.17154618098038,-40.74467150526745,-50.08761936899453 +6846,-40.56357951914264,-43.51922329813856,-44.46875528890575,-48.99944228764826,-55.08487578822088 +6847,-33.84656455172925,-41.6898596390234,-46.857769720452296,-40.165630029531776,-48.05317497833384 +6848,-42.59078314164478,-52.96116381648315,-48.183041773477065,-51.29275928007526,-40.39756577401548 +6849,-46.6661829602759,-46.481826391825976,-50.096064557995895,-47.81281002265534,-50.15197438852148 +6850,-55.60600698947686,-53.00617717075963,-42.24233392349319,-51.64303782705786,-48.33334968243821 +6851,-46.49572838230671,-48.446009724633285,-50.470301797813995,-49.178312357767275,-54.62952981762871 +6852,-42.22800059585501,-48.49489627682746,-50.077560918108304,-51.69191432489678,-46.9408231711324 +6853,-47.706327746398586,-44.5873215706086,-41.839979160239736,-45.206541236356834,-46.41362565749946 +6854,-50.105011442103674,-45.01881230960063,-42.05034396078388,-56.576151100328914,-45.23649260167694 +6855,-49.64682274415892,-54.127182544303274,-50.619057104526945,-47.87673256109623,-46.07342113666439 +6856,-45.10252424828884,-44.014358152217255,-44.0647632324768,-44.32796305919246,-47.784691863921445 +6857,-53.94571631215522,-61.14026073442608,-41.47269035177587,-47.97980204586015,-49.7935264897335 +6858,-51.44647416688677,-53.041577592421056,-59.14551498425446,-46.195358941962915,-44.34626824626488 +6859,-58.36583644016122,-42.74994058655611,-56.15685461994252,-56.12496335019729,-41.91535883160777 +6860,-61.80434633799466,-53.07445034831112,-51.293440251738424,-57.63447252419613,-51.18923115812112 +6861,-49.63552840926121,-49.66468580640231,-46.077029027004826,-47.46561151461819,-50.032638000910104 +6862,-57.710649720434084,-48.96262779050408,-46.135137495931154,-43.760584465889096,-55.73580393282156 +6863,-51.7695512666856,-54.551549294158654,-59.35377813786136,-58.10306809689554,-46.82349469992631 +6864,-44.709576579994646,-55.80395588019506,-46.74325324170939,-42.628425960202144,-46.924629040631565 +6865,-38.302507387816405,-49.61743396607418,-58.756120095035534,-50.84100082117636,-45.56272663099318 +6866,-48.50978067562941,-42.188358410176164,-42.52732483669073,-40.11200076044561,-44.73810348374428 +6867,-49.48676752684836,-48.19235425743621,-41.840780602857535,-59.445776521414665,-43.71345096933339 +6868,-44.85008981215022,-57.89691988178937,-55.80591455742217,-52.943337923781705,-51.140158532473556 +6869,-48.594897280851846,-47.45629703819037,-52.08177638497088,-41.63921111031382,-50.89368945877146 +6870,-48.55322110708706,-51.086734726408714,-47.16621345393278,-41.581320243570374,-53.759629708877945 +6871,-43.08717745656787,-44.86105467746053,-58.22989022622752,-46.865178542682784,-41.65616860414115 +6872,-46.4922661656106,-57.785012522308996,-45.865776707697584,-41.30038280188239,-52.880628174523004 +6873,-43.55636817806058,-39.83031858540394,-42.78223406169248,-54.76698370234214,-53.99016620424944 +6874,-39.32359290651199,-41.37468839517931,-43.79966133511696,-44.62831786622202,-44.335654007514805 +6875,-51.232986001202754,-54.9786244331421,-54.16206926744888,-45.43234114332117,-51.56414269224068 +6876,-43.02109647369711,-47.64561361623639,-45.87416796071251,-49.90371739128725,-50.66491459349992 +6877,-56.128478266034925,-44.040917663753504,-52.9976544034404,-45.26285368835442,-44.166892659701574 +6878,-48.25150319561964,-46.9527688346656,-43.12260556462618,-49.65263128023177,-45.44063120552651 +6879,-49.53026344950211,-55.14438817983597,-47.15791277529462,-44.560985798848286,-43.01984000773794 +6880,-47.22946508917534,-41.29288604126192,-42.739046956339784,-40.16291504463073,-55.660041393533 +6881,-39.76599397769766,-44.55057999419544,-47.88539214550615,-45.714049980338665,-51.31252170736862 +6882,-53.05024801245115,-41.08062413549059,-46.405430392275846,-41.71761900076824,-44.85587162358623 +6883,-51.75521097773961,-46.4292475920743,-40.818275384979074,-50.39971383804737,-46.724073609533015 +6884,-46.99192095580686,-49.88227064215766,-48.41293258926681,-47.29670422177063,-44.787962688796455 +6885,-44.39064508572457,-53.21035617235335,-48.94032103238416,-46.28343418353318,-48.485762462110216 +6886,-44.48831304859824,-51.269427360106484,-50.27508496043218,-41.436103048057376,-44.89529029539019 +6887,-47.64099932548638,-48.84417831692368,-50.11138012989326,-42.70354759675814,-56.18121166704017 +6888,-45.4667642309107,-42.99094370225565,-50.58235075573075,-44.91577205947769,-41.99085010371334 +6889,-54.47939473905875,-40.20298611220898,-54.87095113095415,-50.02479100299738,-50.483831920440785 +6890,-51.36474826902801,-41.66015969343317,-48.31854652720527,-49.73265815638824,-48.213112701133056 +6891,-51.28649271914475,-45.20818120533668,-58.65635131518053,-54.92954185844072,-46.449750676718566 +6892,-49.4934935093472,-42.017361464045564,-47.565289068470605,-45.02412615458864,-55.615356758772556 +6893,-43.95169439379057,-49.23604969868829,-52.4918266601098,-54.23180090119718,-45.85080764724928 +6894,-58.96398161453738,-46.445685198971034,-53.10575500338679,-43.70678622226,-46.50506660061869 +6895,-42.58699060386946,-56.281479304526705,-52.055439218850005,-46.840570932290106,-52.69924832123077 +6896,-52.074010757452655,-40.46880616579106,-53.26351254998977,-51.31626953869634,-50.44511890978002 +6897,-42.27957570080795,-58.96873223985529,-49.484591179455414,-52.74044257790676,-42.92950877974975 +6898,-49.982142961359514,-54.91197501930385,-38.073649287882034,-56.56930506345863,-50.45487028999339 +6899,-43.90208552041822,-51.253235963893076,-43.26653163832607,-62.61374434022774,-41.81731353203412 +6900,-53.17268880445154,-44.122041899999886,-47.25583046143072,-42.60604511888147,-52.108405747912116 +6901,-39.39596034952673,-47.61616545787332,-39.77929627894619,-45.214833689287595,-52.90703795589864 +6902,-44.14575667628911,-58.64207005370127,-46.628151667945716,-54.66028790835176,-48.57473294225024 +6903,-45.44082634952865,-50.04207131886018,-40.644007051293194,-50.75594182905127,-38.53057277752833 +6904,-41.46240988143181,-42.118155576181685,-41.26230712782544,-42.808091450629874,-47.581354932762764 +6905,-51.418909399688275,-56.579589996824794,-51.59836683499686,-45.682828464503466,-51.17497567459124 +6906,-45.6850079754731,-44.68047017515425,-53.83671569891045,-53.11757954730642,-57.92225560084572 +6907,-46.0129392222676,-54.975233738546386,-49.687469146004936,-49.37771667757547,-46.115624426453664 +6908,-48.51307530090685,-50.99911442868066,-37.41010020080489,-48.112283937879354,-49.79646986032722 +6909,-48.18302376826449,-47.7122761354972,-39.413609016048284,-49.295288825947196,-49.086419440026624 +6910,-43.68657689945377,-44.49114690484502,-60.25898288995851,-48.161125104078444,-49.81965256988094 +6911,-54.00515759871244,-59.804559106344314,-42.65509936049306,-44.30882136097547,-36.14181626883518 +6912,-44.11092363014417,-46.68243640486635,-53.95015999426284,-47.77413943993851,-39.91524565731451 +6913,-46.404184333792294,-43.92258870150105,-50.652909651009864,-46.21272290721454,-51.54421701308712 +6914,-46.991419818942205,-58.174329821419626,-44.591468633311656,-42.651038066848294,-47.559623164866125 +6915,-44.103224347793976,-55.8575164501596,-55.96417137495232,-50.882091132501195,-47.96968993047918 +6916,-51.49810732411708,-47.225933350315096,-52.473501693514294,-44.01987767033496,-50.17571923398134 +6917,-42.95644254974403,-48.24660994463742,-44.84316024676234,-50.59794772223577,-49.92639177509539 +6918,-41.52064763768146,-47.609079799607905,-50.84286782823862,-50.98047709787424,-38.91640119298447 +6919,-46.36689484578894,-52.1727812667007,-53.60960940716556,-47.8893629849865,-50.09467986291337 +6920,-50.68883216330708,-49.15937945709606,-45.880228595060316,-53.0218468409358,-48.51065071616249 +6921,-49.33304019933223,-46.11218655908053,-53.51592020114524,-40.31227832415768,-49.93122695111369 +6922,-44.08320186669489,-46.6020297442818,-47.64578558058021,-42.5931723175763,-52.4764025339123 +6923,-46.627994861968865,-49.281401331672335,-46.84326021304979,-53.842010535611024,-52.6078819692928 +6924,-47.96244971715119,-41.415159099761894,-46.68292045987789,-44.324156360216996,-45.945722667169775 +6925,-53.29245349657662,-43.711807719364515,-43.53448352527544,-49.240985140661714,-52.44341219692136 +6926,-48.59170586603049,-39.875644588297945,-52.74008199264421,-40.88809532312029,-43.239663053725245 +6927,-40.38113857731676,-41.79845276933157,-45.31639909775654,-43.701235440150086,-50.9553651764442 +6928,-43.2453237262031,-46.49458077678362,-45.06912728837225,-57.082460262595205,-46.04330948882874 +6929,-42.0902881371046,-42.43474081353077,-45.29981504401414,-51.509961234088316,-52.536461594137144 +6930,-45.35526283348275,-43.70644954956837,-47.43834589301679,-41.38300391372568,-46.864768558474864 +6931,-46.84646275747928,-43.995556762437644,-52.53178132001884,-39.46261661121109,-41.83850707774968 +6932,-50.42085737168226,-55.33770710917839,-46.768911799237905,-49.6282307637619,-42.20345526243764 +6933,-43.73369304601307,-49.31383461935274,-46.99405377678486,-38.057389963830516,-47.75852354205741 +6934,-44.457718978856015,-48.75451896279152,-60.07350313044736,-53.340413994148605,-47.614963772205506 +6935,-41.8762237062962,-48.75465227018371,-43.347896402120185,-44.84508136758463,-43.13967262249875 +6936,-47.243844370171736,-49.87395869156511,-46.479829345574394,-41.72421278207182,-48.106126466956226 +6937,-54.20194843057941,-56.94703696659472,-36.85652233986677,-49.54953531532163,-42.91023197985218 +6938,-47.720889152191184,-54.25641040403194,-48.70186773083031,-43.29736320286624,-42.54400717519123 +6939,-48.09635223964915,-45.06392727627531,-49.446336704683915,-51.11695457022114,-42.88116627976105 +6940,-48.068445501390826,-49.884473175523986,-40.94514252568303,-40.594153758516356,-43.73343764469187 +6941,-45.320738892319014,-47.865437500768344,-36.90840284221758,-46.4002075554643,-48.04716246882027 +6942,-45.65727542952778,-47.15698210296464,-49.70768678471731,-42.04077670275549,-52.86871956552272 +6943,-47.459082596561785,-62.47898413842365,-45.85991249102147,-53.48279052682087,-45.40004768203933 +6944,-44.041044243984864,-56.11646024085989,-49.46732652924136,-50.15073711968073,-55.44847199800978 +6945,-46.3381652301022,-47.20482644618299,-40.87515497725501,-46.198775979382326,-48.990440305036806 +6946,-47.504670227504015,-53.035560583577144,-44.341170593297015,-57.06087324426833,-56.52536839099766 +6947,-37.6478184088174,-51.136820378502584,-47.528633170436265,-45.60747494287231,-46.48771817876084 +6948,-47.846107479088154,-53.57267700102563,-48.07893093540988,-55.07455398569971,-48.455078668127356 +6949,-45.874937274697345,-53.8421239522552,-52.50066634490862,-49.624342776304886,-56.10684107322093 +6950,-41.118406256528274,-50.75638239347434,-52.99672388736642,-51.41975385652095,-53.7683414660107 +6951,-44.41145883173719,-52.48881117403494,-50.763146667543815,-50.688019980396746,-45.36707395139837 +6952,-52.76032626599951,-45.291703598234534,-50.45961292915028,-52.81592983460128,-51.07940477563923 +6953,-54.25598713070804,-46.792412637303116,-36.29245437576425,-52.75980278468619,-47.384401709670044 +6954,-47.65715992607215,-44.532754166529784,-56.35717671524293,-49.191180467833576,-51.133510759942 +6955,-44.45301158829222,-50.91641407684352,-49.66117703980019,-49.281687675586845,-42.07368356163129 +6956,-51.08165294340679,-46.855994086648096,-49.880192447565825,-45.93279446891002,-45.964135269090555 +6957,-46.52653923239417,-52.70968894477142,-53.985499924324984,-58.20409247279034,-47.82458201060149 +6958,-46.291177016598965,-58.33325674691237,-45.11302537871886,-46.65608658343139,-47.75637333769718 +6959,-41.15915617825439,-45.893658443979724,-53.216380835939,-44.902089379219035,-43.879603799028736 +6960,-46.776347128129075,-46.68293642342642,-51.56820204599405,-44.684161948936705,-46.55565316788844 +6961,-46.74734401005489,-55.88438763273855,-39.511151726175335,-50.596878277376305,-44.036136398713005 +6962,-45.95724226661738,-44.23383108924833,-43.632573911508565,-48.4585218002679,-42.45969600973373 +6963,-46.99092550387006,-43.61559592169734,-46.71327941032951,-41.809939113183574,-51.16285519445794 +6964,-49.975745470957214,-51.14715985365425,-48.37494667450778,-48.04721134773167,-44.12719128387773 +6965,-42.67563748240256,-56.87378724828131,-43.38491665671773,-49.29404420353536,-51.191272515852496 +6966,-49.640646174781075,-50.7634193544234,-56.087836568400355,-48.3141384594709,-50.28858999333503 +6967,-42.341756474080874,-53.33236331834537,-45.4713777106029,-41.586355894076235,-45.87106404025891 +6968,-37.41387429979066,-43.68157765975957,-46.8525338030876,-48.933660927651445,-53.69223895564824 +6969,-48.151814827919296,-42.37534818836712,-44.232027270484984,-58.92243568820301,-42.11801579924868 +6970,-45.53036654409525,-44.21173218617879,-49.72535518662536,-41.708577237046015,-51.566147205552994 +6971,-42.37770272917389,-56.45773993260512,-46.915279295129395,-54.10018753468715,-47.61502170841511 +6972,-51.83754084811511,-41.68288837928689,-56.4899683485744,-38.21245432392077,-47.32178924094657 +6973,-40.68983219810687,-45.769794856573625,-46.32724268384379,-50.00434038595534,-45.25487156333767 +6974,-45.24038254378659,-55.43652414587216,-46.2838427921546,-42.21193944365626,-36.3410263102885 +6975,-57.46721697997489,-49.07298635535409,-47.9750738017581,-50.14858080324849,-48.134750407200016 +6976,-40.80725971359179,-49.28435260796038,-50.39753831999381,-46.00820900429498,-42.8691643443033 +6977,-47.53992351357247,-58.45455345305624,-49.68769719478424,-45.836697098165516,-46.45722439395266 +6978,-43.47387651898977,-52.139654303506745,-38.55076056679828,-53.21931892078598,-41.19014607583434 +6979,-45.38443370646499,-49.68303696471635,-43.524824541499854,-55.69246056033974,-40.35745112456899 +6980,-45.31093974139721,-57.68688958546102,-46.19483076194186,-54.19945483136391,-34.70571249853736 +6981,-48.98328192429055,-52.6519201066669,-48.01574780815072,-54.781408979864494,-44.224943572040154 +6982,-41.30995189338109,-49.28668339618267,-55.50402124905911,-44.05259162849749,-40.985053501905114 +6983,-42.62654043111985,-40.96020195965559,-56.00793034136558,-51.063162524532025,-49.42131939103732 +6984,-41.04143868195521,-45.04524871577755,-43.2779037335676,-45.39891833266491,-49.69843936084722 +6985,-51.87744985377892,-43.44970872651868,-51.84244058768122,-47.70177928914266,-56.791623146686796 +6986,-42.80491474006074,-49.899154447996644,-47.060092595293376,-57.158306987143376,-45.561547733840406 +6987,-42.7118904421396,-53.87280695326569,-46.3046975101827,-48.75686514631549,-50.667228201139245 +6988,-47.784471241530234,-45.71410621857242,-53.581016965630546,-55.81978274040811,-37.655171699611074 +6989,-54.168565011115774,-55.21762058587182,-44.77923492681704,-51.33727876019361,-55.99814097982732 +6990,-40.528373560393,-52.68180820846397,-53.18130451928007,-55.20360746066847,-46.694399638482125 +6991,-45.205496205413574,-43.492497572678616,-47.24823005431635,-47.865149328316896,-50.19652324422198 +6992,-48.64335643969939,-52.22002569914614,-42.435928428112085,-49.934167553555206,-46.94971702656898 +6993,-46.30863130176653,-41.35866871115893,-45.58245306322449,-54.62813685124554,-53.12604677677631 +6994,-42.0833591848434,-47.94336053491741,-46.96500410697153,-52.70166958097707,-52.91927988659389 +6995,-50.14350514218575,-49.879430187817746,-57.0290959714697,-46.94527112379388,-58.002963816256575 +6996,-49.464851356564054,-48.184841295138305,-43.940168115271995,-47.04936535743302,-44.65508492506448 +6997,-51.93115423373371,-46.18384292829456,-56.47577804151651,-42.305121296821916,-61.162669392122694 +6998,-43.3300032359619,-45.04219802328109,-53.17989630293442,-54.95214916494898,-58.949954851943616 +6999,-51.752280172222214,-58.743832493325144,-47.773000362856486,-48.72755028907491,-57.179931861198774 +7000,-42.283267932103,-42.529643736034814,-46.78391500461665,-48.3521655105585,-48.03705779364714 +7001,-49.85336272969502,-50.0362608425014,-38.90303836087267,-47.9472771475369,-56.21977732982488 +7002,-43.29533426886478,-53.26527970398327,-48.495125618528114,-58.440578408962914,-51.62282130191149 +7003,-55.59589340962321,-45.62686627543994,-42.49202984609992,-48.05367826678036,-55.15009290796599 +7004,-46.36596292381398,-46.93063525432585,-46.92533519396389,-44.77270600906764,-49.30400240616412 +7005,-38.73060033122727,-54.66198950169242,-43.897919914967154,-49.82490563602115,-43.295707192008955 +7006,-45.712957755574955,-44.27735857780652,-43.86740472352153,-43.93539155538825,-51.860122087479 +7007,-47.743296931595786,-51.45556054492308,-48.76326324758613,-47.717515633781346,-52.652917827440305 +7008,-52.769602295331104,-54.79397630847841,-52.0813154335475,-47.318154215402494,-49.39558534227644 +7009,-52.554093985127096,-45.928771526671994,-43.25761474173882,-41.90176058918289,-50.18369671819046 +7010,-42.99820568622104,-51.34543476968422,-41.91808531862952,-46.48544276757332,-50.95731759257998 +7011,-39.81538209266454,-43.89052887730366,-48.01186217233273,-50.54118717373098,-45.11083412596558 +7012,-50.53332379196901,-51.43795126368112,-47.00780222149683,-45.33679247236231,-41.15959506575088 +7013,-54.13506637982429,-50.43964597556676,-48.759017236775506,-46.5767935915304,-54.14809081269374 +7014,-42.02548576727659,-43.41522206828654,-45.24957643128911,-50.166460206174676,-45.05838205751819 +7015,-51.90749467855753,-46.258980077616,-44.45557035242003,-43.09340320799204,-54.17127444149484 +7016,-44.78676747464053,-46.80577263051249,-46.012508128935394,-41.29425465380175,-42.16627612172135 +7017,-44.46783333900981,-38.799554880078006,-44.602500058080956,-53.12430598474753,-54.42884175315961 +7018,-43.50263155967413,-45.9546512482419,-46.10732836681786,-52.40230160424421,-50.85285566619894 +7019,-43.025299498768376,-41.594083476341275,-50.49155742896732,-41.896753590014065,-55.76152606681629 +7020,-41.84234973190753,-45.796028187495715,-54.04759092550974,-44.19867791998386,-47.54873212216685 +7021,-56.531169921558536,-47.11320476977511,-45.569381816807876,-57.060488589457734,-43.850864690868285 +7022,-43.24995803694368,-42.587024561631225,-47.7238322849543,-53.36306649290566,-46.3303232436714 +7023,-51.25747493974545,-58.53896100688091,-52.016487378653395,-39.88426975089408,-48.24866905243276 +7024,-40.990271434342034,-45.727632629984086,-42.9087740828084,-55.9717070649925,-56.87912196424597 +7025,-52.86925341929678,-42.169938134206284,-46.49567785924303,-44.94019047159482,-46.103309436254825 +7026,-53.82004802480416,-41.23873654721211,-57.19015830586902,-37.77132011233462,-44.57400526596631 +7027,-46.59922363453987,-51.300414022116634,-50.259593204976,-43.29407573310889,-45.13445524948529 +7028,-50.476637582358435,-41.21690049626578,-48.85314719439017,-42.371901791238756,-38.95014341237866 +7029,-42.04229158986059,-50.506938656510016,-42.45308713103471,-57.30427767690869,-53.0641036462263 +7030,-49.61964217673594,-55.629905460243364,-40.24168112890012,-41.882734235430185,-49.692841175532024 +7031,-40.94158341788908,-43.13471625834957,-48.47767414622684,-47.87735827307837,-43.92473352481581 +7032,-65.39416591662969,-46.42361858044632,-57.85699783715891,-53.63963800797187,-40.22489777585363 +7033,-41.00957006127404,-58.42285044891787,-46.63516741112389,-48.35765009300775,-43.42590826122552 +7034,-57.6255767192673,-43.73563354527477,-48.382739875035774,-50.392424305590424,-56.688515870033044 +7035,-57.244707758562086,-52.435737111381435,-51.76763456555071,-44.65944300664862,-49.343376068176546 +7036,-50.18395206619307,-48.34981720585144,-48.332077593646325,-45.79445305123557,-47.40562283768553 +7037,-53.887648987302526,-42.64351785560954,-52.92706580740418,-50.039878123084364,-44.700905832590095 +7038,-50.08333894891962,-55.49959757825916,-44.1130412328214,-47.3747850822651,-42.91188074045619 +7039,-47.25553817240061,-45.65240643602386,-41.40111909304439,-45.4921681528961,-41.54965482913891 +7040,-43.02698721344194,-51.173253605474166,-46.583212919960715,-53.44357098119041,-47.542668409612 +7041,-52.07766108637265,-42.15156481409776,-55.19317426751449,-51.93385221959094,-39.12473338871515 +7042,-58.35568627237555,-48.617876717523394,-47.298476080211785,-41.58749732829939,-41.16177555569456 +7043,-50.486208365633324,-46.55259086903844,-46.72959743155504,-54.790867309639836,-45.2515736226558 +7044,-60.578895167346005,-47.33263751561794,-51.65971470229529,-38.95318371361813,-46.62877634186403 +7045,-56.43188665433595,-43.08210976464207,-40.78071047496075,-47.38952897830229,-45.56855140300073 +7046,-53.19869849687469,-45.18099293043043,-44.80806222434891,-47.110323271839256,-50.01178429577384 +7047,-48.05334828005603,-46.04597869695608,-55.23937361344008,-53.255685644634255,-43.09544049963488 +7048,-47.82629744233828,-52.131948357217645,-52.993380700241964,-43.10315320245467,-49.33649838905647 +7049,-57.18976300142701,-41.81031401850943,-55.65449916727229,-54.79090221211069,-50.61398619619342 +7050,-45.647093911569876,-55.31173865171923,-52.47829589240126,-54.225852947716525,-48.50232326994081 +7051,-38.78666414874719,-43.837121184524214,-57.41061243950268,-57.28801745196403,-43.667497674913946 +7052,-50.11032561973443,-43.55594803015914,-50.67375554701361,-46.54383182067944,-35.7517368165451 +7053,-39.46472720910881,-45.525789789350256,-49.2778973313833,-51.37681217871192,-41.66649706633351 +7054,-50.06254642896455,-50.04441075814878,-43.921567559312074,-43.476661717269955,-54.85964579809748 +7055,-47.36799944821705,-46.27065532088769,-48.37446357434163,-54.54739335316667,-49.33141261184045 +7056,-49.66687924671914,-56.12361269531283,-47.236964473940176,-49.27639244805733,-41.848836601989895 +7057,-42.677419601548806,-41.592628664794525,-54.07588389319841,-45.659895883189904,-55.69579321710181 +7058,-46.14923460464897,-45.61598800660207,-46.25124917976108,-44.48415249196675,-45.51924837943739 +7059,-45.52181662948198,-44.7895654515464,-46.076273137380404,-51.161921961671894,-41.28149232747303 +7060,-42.575887835110414,-50.05253631724296,-47.819844353547,-53.3052093623221,-44.22043364892903 +7061,-44.31380906576597,-42.43774851329886,-48.589998216946945,-46.464316886647964,-48.327905000479035 +7062,-49.244035166189924,-52.21789911139209,-45.686989543190606,-37.72496404048957,-56.558902463452426 +7063,-40.76817468301609,-57.825848561775324,-51.40776969834849,-47.50398110459167,-40.26087702831689 +7064,-44.70630651885523,-46.03960662012514,-48.272767438804706,-50.706477138307584,-54.83027770967664 +7065,-36.27909093222048,-51.73984634475897,-45.49619997837116,-37.33297847991953,-46.77415664059199 +7066,-51.75791194641482,-44.21347391170311,-47.241253978461934,-53.06814163965983,-45.682978632758626 +7067,-38.91558077399446,-53.81769353331463,-49.45709798720042,-46.58725015057185,-45.685631092713756 +7068,-51.24495773639088,-50.07114217570325,-42.27120528724191,-42.61964944047676,-44.770335240918335 +7069,-44.20631233910099,-40.23608140805066,-47.35618862893952,-51.22793798640492,-41.6170728029246 +7070,-50.17352507840141,-57.22987108075302,-50.747975072753505,-49.150525672454016,-52.020048574474785 +7071,-51.05561255746071,-49.695321807335034,-41.809348158996166,-46.30167458648715,-47.47315864390516 +7072,-43.28093401736455,-46.002369986489704,-45.91924078750837,-47.40467796997739,-52.9741242700634 +7073,-53.899335038697714,-49.39338090488799,-51.987147955596434,-45.23606978251889,-51.98765780934367 +7074,-47.28076009306801,-47.97892390452017,-46.30406493829992,-45.910753131908855,-39.21057610422558 +7075,-46.52133968995082,-54.47229205874619,-42.599651233325396,-43.17590445552778,-44.76193582191373 +7076,-46.67095982967752,-43.79859332915365,-46.552275807749496,-47.84488019175163,-46.89589511687639 +7077,-46.13201799935564,-46.26600205506336,-48.726883197566224,-42.873799346575545,-47.72178830887805 +7078,-39.567662385959984,-51.63064361247165,-45.92141296200746,-42.61814585049644,-49.7129836553302 +7079,-40.00760479789993,-45.48551346015092,-45.617059000111425,-51.862012958773526,-39.51744051413316 +7080,-46.46473576083973,-60.9731316845066,-46.469350088147834,-48.38302005050369,-48.387574896033826 +7081,-45.33647184352075,-47.144653803460834,-40.86342871555567,-61.06842541107005,-48.15035591157287 +7082,-43.67739968555964,-44.18464650379539,-47.77046873745001,-53.5504793054642,-44.22848037149053 +7083,-40.24661182623783,-49.84280309836678,-46.93661175205657,-48.02141134765122,-51.088334350215696 +7084,-44.77296071572992,-44.52852798503164,-46.73584945034457,-47.13701263719259,-41.38219097308378 +7085,-52.871641149506324,-48.107012959548776,-53.548255437945336,-53.49822258014252,-46.52264909600959 +7086,-45.79460620247342,-52.5684501473764,-54.855260197304204,-43.45743563220424,-43.28560484350702 +7087,-51.389505414450724,-48.46832490293972,-42.48340454544965,-55.001901416330185,-46.078196147228574 +7088,-51.82773044284947,-41.261747741779,-46.1547757050194,-53.49332831615951,-56.9687379982182 +7089,-38.25002663619511,-46.34431402056266,-44.84235456217272,-48.6123177957733,-61.29572709944821 +7090,-47.52325408115174,-57.42407445885885,-52.52575540316314,-43.812220759445694,-51.94265285491775 +7091,-45.07339269880721,-53.95192221895549,-48.00463507922832,-54.01775678877424,-51.26366815277844 +7092,-53.144983447684766,-51.457410887639014,-40.0333928522034,-49.568707482685554,-47.473484491212055 +7093,-41.403244585507124,-48.595511410008214,-45.65378781243749,-44.34558714119912,-48.30447938609593 +7094,-49.07045145021009,-54.5778313976333,-49.58259800833389,-44.48689037611342,-51.85447374671668 +7095,-51.26701941246468,-48.17781550694382,-47.93143212244672,-49.52007355522729,-51.312137437913144 +7096,-51.11852816858094,-44.166129646276545,-50.82374628372824,-46.47896903342754,-51.45939117291813 +7097,-45.63873832861389,-46.29133265640963,-47.08617403151988,-36.97169384195419,-43.30958895904397 +7098,-47.580348052381055,-42.010022299752755,-41.81416450207398,-47.833672815863245,-42.00185811513389 +7099,-50.583392579236765,-41.8078924875555,-49.631353268282254,-46.193465126117474,-45.27396382307743 +7100,-40.14253137202727,-49.547794220294634,-46.88633020351445,-48.55983393770828,-50.165165605877704 +7101,-43.60963063696551,-47.46209499007397,-56.357030491550816,-54.29384986230593,-40.6266736598019 +7102,-42.88018263787594,-49.432741909468,-51.89140279906196,-53.65340637180364,-52.68461644127692 +7103,-48.186386727206255,-43.58636880968723,-45.0462743675239,-48.803544279018546,-49.55284795165946 +7104,-44.969592918109036,-50.762513554954054,-45.93000549387935,-48.07992792748694,-52.32465407431082 +7105,-49.603579703653295,-60.363821592769476,-52.10448949406295,-42.18963813126555,-49.53097560400758 +7106,-34.629186084836476,-44.66495146971753,-56.07834368545499,-45.511679171810066,-49.27377795292283 +7107,-53.4749859559899,-60.58479301114916,-49.81774896715226,-52.642416367198855,-42.74963381373053 +7108,-52.968871300927255,-55.106863226023336,-49.22519561533614,-51.426536997047336,-50.85392355861458 +7109,-49.02923821976716,-41.92707186971947,-44.43070040779935,-49.49193379028533,-39.65683642854408 +7110,-48.62408177377502,-48.63730880744828,-56.68103964988952,-55.67110068750514,-45.09601304284448 +7111,-43.2082490272401,-53.78878359656694,-41.80662834594349,-48.72750714492811,-55.394480790751096 +7112,-57.716846827236395,-48.10723649974338,-42.580790985940624,-50.316394929169334,-45.40046418025081 +7113,-46.85674257008203,-51.827832875983724,-43.32404668196008,-50.6545330091859,-45.434624705189975 +7114,-61.0608719699928,-40.628038427498936,-43.71763308871143,-48.11814409246632,-47.60841300759131 +7115,-48.682981882164135,-45.53682333638273,-44.8242517660056,-57.69428446583778,-55.91054796400264 +7116,-59.870161958100915,-46.840716905663584,-45.12497184187401,-50.9180935786162,-47.47654360375874 +7117,-51.77951258160769,-43.63346448459146,-48.044518488298,-56.006235599210655,-45.11341520357222 +7118,-41.678987285608514,-51.671101948481756,-39.529199369127625,-58.186630569472676,-39.93669296043332 +7119,-51.44070233735299,-49.624365970902765,-44.35526816065176,-39.80881102668757,-44.20958366844054 +7120,-47.08425430128349,-48.24699450798926,-45.28546233274098,-47.28142503265759,-48.652522808214236 +7121,-40.092325758568045,-45.67983061330162,-40.66548773443979,-50.042228141552016,-50.72863902321828 +7122,-41.49425253578081,-43.647753153228926,-51.44215984688924,-41.81528804376873,-40.84075799028862 +7123,-44.16215885387433,-40.250896106783514,-50.34608189074146,-52.593294272037944,-50.332097210634316 +7124,-46.96387480236166,-40.96960011737568,-44.99949661690149,-54.30760907737431,-55.09118955910253 +7125,-51.72726207441622,-57.954159917327814,-45.11582149949401,-48.013226158246276,-51.213330428631004 +7126,-54.14518591280136,-48.94200548690746,-45.35400716955882,-41.78892254646503,-49.83351287382713 +7127,-55.591286965308576,-52.19996191019306,-53.64986761268413,-46.20921828435276,-53.13714180159913 +7128,-44.03975764378471,-48.51306489439045,-40.13833627865302,-40.27681108338705,-45.471817326200565 +7129,-52.65959944502255,-39.09093676937684,-44.14203216606928,-45.07244992086137,-49.96757449143613 +7130,-60.21033490566058,-56.78006613568219,-43.3954107825862,-45.18642496587492,-48.970784954035224 +7131,-51.80555250379051,-54.05329539702166,-52.22747509956927,-55.65333086110314,-53.2804723501999 +7132,-54.144939402775954,-59.32283206409367,-44.555687199980284,-41.16222794962644,-51.88641702552228 +7133,-50.66620722711104,-55.06757846051425,-50.309003700975936,-45.396344282939864,-50.89835512844479 +7134,-45.83502672291431,-41.175954713613294,-50.500095799194824,-45.0063031383614,-49.97377061913554 +7135,-50.72348331925173,-48.95906677860829,-48.31211849326284,-43.01961848670859,-42.8834650416155 +7136,-51.26017262411361,-60.56240775984241,-42.7575907384838,-47.76206546454521,-53.013349567647005 +7137,-45.14648070396678,-51.24317801302077,-47.29078227264325,-48.15494536680716,-48.04144505897787 +7138,-42.48816751297843,-45.51040476186705,-41.12082174843221,-45.83440918710942,-55.59941803588006 +7139,-44.52488710832601,-47.99472170810275,-52.45362668163184,-37.19081142642879,-49.76556342634358 +7140,-45.82326938621358,-43.19855887397355,-58.03862187636956,-45.16605854500157,-56.28570490062382 +7141,-57.019066285128424,-58.48954526735739,-49.28582003155849,-49.265320855210966,-43.24821899006109 +7142,-52.29338761778534,-43.53112410561642,-56.81432191792317,-55.0468353295813,-50.52218358949802 +7143,-43.768627541620745,-46.738761226799696,-42.1114375920936,-43.70387115007033,-44.372989152293144 +7144,-55.80089378899956,-39.104675635379515,-51.97486605992508,-46.33977542757842,-49.13967180002291 +7145,-48.36274424763727,-40.35516126128466,-45.46381482595295,-52.641800771305455,-50.90348769246121 +7146,-46.810359370750234,-42.82136339386014,-50.81472251797898,-54.42330404080683,-46.92960481019317 +7147,-43.834992694184045,-45.8036790678814,-43.64357168228316,-41.675594900935856,-48.81018336244729 +7148,-46.789269889139824,-57.329212554017246,-41.82536768745474,-50.36695865268246,-48.80783230177556 +7149,-42.355957938160905,-45.29072445755903,-49.5851211497538,-46.36966380742881,-46.88076087970924 +7150,-55.37504741705702,-43.26690547625758,-41.70491662709764,-45.41023581634676,-44.47055194650148 +7151,-47.251537926319344,-44.24482937736343,-49.532646019566094,-45.14509168644005,-44.01715565227172 +7152,-40.78904070923471,-51.952941136340755,-45.23609391082237,-41.70209301462075,-39.98116517325258 +7153,-47.930157296702404,-49.09242745917004,-55.70448227954274,-49.25007788592306,-54.46272456791999 +7154,-44.44216736807086,-44.9340899396664,-49.25756440170655,-46.37338370634126,-38.6972840137189 +7155,-51.31457740366476,-43.95256946296204,-47.32172682767775,-47.23154571634413,-41.200079624625815 +7156,-46.36946446697331,-39.47327429916199,-43.864820144492604,-44.17975715317574,-41.51728069052421 +7157,-46.30665257557604,-44.139133443216934,-41.25207812455232,-57.57627983848892,-44.26757759061008 +7158,-55.06896901940378,-50.7224602475206,-40.8843843312556,-49.882627838814976,-52.87504698576145 +7159,-46.824838565892,-42.62367282101818,-54.06015666983226,-49.292893858872645,-50.277302036074616 +7160,-44.24457455516748,-44.93444345608569,-56.00588305102201,-50.257032938412586,-50.52746693339003 +7161,-46.962859248132105,-49.0002411507035,-46.46651589113673,-56.18254296535448,-45.91707411007201 +7162,-51.557450355979476,-49.46698005448982,-47.18449129081007,-57.40062585428043,-46.01774454348836 +7163,-51.68805807860661,-39.046487943874936,-50.6658685539817,-47.53465036833809,-44.30637262005432 +7164,-60.624611552039916,-50.8013079651207,-49.564960726383546,-52.46132372493713,-46.338059608377456 +7165,-43.070466786041116,-49.30233060807779,-53.103557521622186,-53.0344855717018,-51.09554862248429 +7166,-52.20271578605064,-43.11747028939896,-43.07488765179454,-50.416503968536915,-45.09868867588569 +7167,-49.78960315381352,-52.17284110340145,-48.15451638381337,-55.34724408518268,-43.882481736266065 +7168,-51.28741709691756,-48.69833818980265,-54.714400777808756,-49.4614717560987,-52.75317541237617 +7169,-47.36652232183482,-44.15688853649384,-43.37095512621044,-47.55306336535944,-47.238558074453934 +7170,-51.91567751405059,-48.24300339139667,-49.674972638942876,-45.08257744489719,-51.478462232240496 +7171,-42.5221977034554,-46.8840170250206,-55.217085268593,-48.75381753465126,-46.14141871261234 +7172,-45.71905405319294,-43.97548144702844,-47.316003432997306,-57.80430497071148,-58.17579975059946 +7173,-46.53924152864392,-52.61859859106572,-54.47970248491835,-46.824265167516124,-42.15129481713031 +7174,-43.02657855059128,-56.682952812329546,-49.72947615846294,-47.73181527676067,-43.57604315849338 +7175,-56.46445538483917,-43.77672537118069,-43.24164739496693,-45.26246564346478,-55.06006258572211 +7176,-47.939040805968595,-45.35708737566553,-48.03171185535506,-44.79278788034232,-54.95516323384217 +7177,-50.837963618931624,-45.37630162216693,-53.964661044939994,-42.98029773718243,-46.0889351533736 +7178,-35.786672353820194,-50.44834247369227,-44.17426744448859,-44.132665091120984,-47.019861459368634 +7179,-61.00012828786788,-45.24470056218063,-44.07245463186433,-47.90858439707195,-45.944997979965855 +7180,-52.36011953219246,-48.27362990942919,-40.7434893391025,-42.43632050300578,-49.776120121426054 +7181,-32.233712780323486,-45.15128272533444,-44.216269100836094,-45.339709820810775,-51.3927017714733 +7182,-51.91350239885282,-41.36183935219698,-50.19904077689345,-53.7602101418523,-47.28467024639045 +7183,-51.90893356038229,-44.306832545266,-47.92811220420416,-52.78907511927903,-42.28478751209771 +7184,-51.194835440713064,-57.22696369906435,-48.232330738982796,-52.991250876289534,-47.752286178871756 +7185,-49.28128643787261,-39.58800511540261,-45.97794409529271,-51.482422617542234,-52.340983165469154 +7186,-37.0836773620757,-39.26696972513419,-50.85676037528005,-51.17632990315094,-44.04825039854811 +7187,-58.13123572891619,-41.98278233942709,-42.13384596723022,-51.504804446309784,-47.89305888758352 +7188,-54.87931975803595,-47.863904149781376,-52.519826033477905,-58.951838901793195,-40.33000805357605 +7189,-55.529874469105856,-44.095955983416545,-53.25171226579655,-46.23993153832883,-49.71123753387602 +7190,-54.0342375483932,-52.08053719078472,-45.75877277989733,-50.36203764100176,-48.59528027459371 +7191,-42.90077711219993,-47.01964016890222,-45.65967488220879,-44.0627513012008,-49.40285784222708 +7192,-39.83624244471418,-47.49363001336735,-49.054368464927904,-52.37136464734715,-50.439876832680156 +7193,-39.7525685146589,-48.85175952051947,-45.24242404644586,-44.606820170371016,-52.11884672849563 +7194,-53.77631164844805,-49.77821671269017,-52.433813845158184,-47.48571828512812,-44.30329334250236 +7195,-47.420833193038874,-47.0400983299365,-47.651540713523126,-46.134204246553516,-47.0795004362586 +7196,-48.004737714723916,-47.721303764618064,-54.527701594218584,-47.39043060106706,-40.369640434062354 +7197,-48.65804217002374,-45.84530961596079,-53.6225406747566,-45.56275253604051,-49.95001604695457 +7198,-46.1508677452503,-45.73130146642744,-49.8486282997255,-50.06758399878005,-52.64023130863502 +7199,-51.35687784911995,-45.24539933871306,-43.980949475122635,-46.66420103939912,-49.30167187840733 +7200,-50.43252350150787,-50.973903732656204,-52.33807305752127,-41.10960723615546,-47.97197266238781 +7201,-43.39633913529024,-49.58741926276524,-52.540524342867876,-51.9721967463745,-47.02748670658369 +7202,-48.4337694740946,-47.95771732867583,-43.10117640419497,-52.25671930984052,-40.91565707788479 +7203,-48.00036753013162,-42.15861224432956,-49.7491415575233,-49.4129204473353,-49.79608484637368 +7204,-58.431914752522815,-41.73870797769828,-46.24256306355376,-43.78929821481438,-41.61519788600918 +7205,-45.063673225712016,-48.028938823669876,-49.33152270815708,-45.00904825134253,-49.72804242867703 +7206,-49.53121332246758,-45.72707607370179,-43.47027380238212,-44.16834612565157,-47.88954313503666 +7207,-46.33959672634824,-47.700638313439015,-46.2395324058667,-46.230769896141695,-42.20384613700297 +7208,-44.65219574430712,-48.0898939451862,-56.46951125800358,-49.54824585954227,-55.3749019155798 +7209,-48.39686603499964,-48.514176684798755,-55.73874809727609,-46.469959269989836,-49.80629605640056 +7210,-56.54343950358067,-48.340544622922636,-41.78525363064995,-48.145018457512954,-52.34534954726732 +7211,-41.93170744271848,-41.087335125710254,-36.688333817815945,-45.779244035920506,-45.92971730692303 +7212,-46.143239626756944,-60.21437793183056,-53.662050075754244,-43.7709121215341,-47.48156410381951 +7213,-59.56812569669856,-58.76412970644883,-51.88379836170094,-43.092914165017255,-45.62345880903098 +7214,-57.51678743126137,-58.8612557577402,-55.10575158924749,-57.70567742794171,-44.159275974055156 +7215,-43.39375440793212,-43.28829469771953,-50.306126988849755,-50.49520001308952,-52.38308951319193 +7216,-55.48819251334595,-44.79599338251125,-50.45727981519607,-58.45478232160138,-47.68030051717365 +7217,-49.27695027154163,-49.98768735794046,-45.193558752946245,-42.95835808447226,-49.23192460380708 +7218,-47.58302265507467,-43.775890559860386,-42.77988471731851,-47.94562128882689,-43.48140808348034 +7219,-45.20236961791317,-41.05496511342363,-48.8775053689704,-49.13961836560274,-50.01561872768228 +7220,-46.64921875852143,-53.36114131674309,-53.81422698985153,-46.54847178875535,-50.94368284457681 +7221,-43.177125341808996,-61.96355929486678,-46.906377932016255,-44.17935523967713,-48.86032979307715 +7222,-47.62672546052618,-48.281314429713,-45.06162013795893,-52.92182544644009,-38.55583285571415 +7223,-48.68459742473207,-45.50104588881396,-42.5573506564125,-47.54177219828504,-55.858572978966116 +7224,-50.62001005194469,-53.94790100196323,-34.05169298441034,-50.004369029031416,-44.32864626660018 +7225,-45.009663897676596,-38.94014965392982,-48.90000089104975,-37.464013806128555,-45.44381021058887 +7226,-44.95807730508632,-39.68416409830509,-40.24075833544147,-53.71829954286254,-47.5559287199637 +7227,-46.55726338569844,-51.94646705540794,-43.69508865162739,-45.24659507972986,-46.40374666485508 +7228,-57.340903688575175,-46.618257378055894,-41.600532611135634,-44.761601894193944,-46.73256694375746 +7229,-52.67503595902521,-38.88711780913026,-44.8694196177419,-46.06310787808825,-43.36221767437857 +7230,-41.83007969491195,-38.27476548146222,-46.02143502370688,-50.97491932876052,-49.98759442549036 +7231,-56.28521785108466,-48.59176766591388,-49.55340015403842,-42.171747219997215,-50.97730721888847 +7232,-41.19861332228307,-54.15840638850227,-43.193816703890086,-47.11301931941396,-45.870741728635096 +7233,-48.6194538877187,-46.35745029744815,-51.1413160451548,-44.44012836123501,-42.012873114393045 +7234,-48.3361612727304,-50.03644610315975,-55.75031587426606,-38.13076958991556,-40.18035779707506 +7235,-48.52852535862557,-41.375583092807794,-47.5127469401566,-51.471156094160165,-41.40321734284172 +7236,-44.239727081035,-45.25680335706226,-50.34938211076123,-48.776878426624705,-50.20541763530887 +7237,-41.60142217986683,-45.1000338157397,-44.43052888914243,-49.393301200981334,-42.71309879901649 +7238,-40.648964317102134,-51.44075219975971,-60.96467350328162,-54.11465084069542,-59.21027542024522 +7239,-42.81607833140815,-45.35492846357661,-43.56359034318323,-42.95967655862033,-44.74209290268486 +7240,-45.18749987227651,-55.30615130746305,-55.52654666548255,-42.75852510755605,-45.922398307349184 +7241,-52.13336532725603,-45.240836052858555,-55.99806821630618,-51.739546230142025,-41.896605526229386 +7242,-47.205067984601776,-37.98166560796645,-42.33951052502747,-48.471154104607216,-45.49496034054198 +7243,-46.214742409506684,-50.648957412543254,-47.5437179208854,-48.78987369481953,-47.06884113775579 +7244,-46.70544532163269,-48.40803051008189,-48.12930676219769,-41.094378469189195,-52.772637852325325 +7245,-43.94892506181515,-45.57545892257969,-37.71579972224836,-44.666027811574416,-44.74140753975225 +7246,-47.47217660458697,-46.85934396343821,-44.102365317857505,-48.49435097950201,-56.53370764070042 +7247,-43.59328741750391,-38.61409550879396,-53.76430060366897,-41.78126291213652,-48.89150394047826 +7248,-54.95460122658442,-60.82889066079066,-53.36710194941124,-46.50722392007125,-49.77623169793426 +7249,-53.85536713052072,-48.20849295985799,-47.67577830270596,-51.138622847635915,-46.621377761171296 +7250,-50.57109785022596,-38.24321062785952,-52.40301918350783,-38.978174314771614,-56.10396950899972 +7251,-47.2568993301588,-55.06427753689756,-53.140364203356,-47.514391815465885,-59.2844261906629 +7252,-42.789140441483376,-39.69963208154136,-36.61600466076087,-46.31562057539948,-51.57173793197874 +7253,-46.766944302665834,-46.80884179336542,-50.28454598913967,-39.524118209420564,-44.42432367850631 +7254,-49.273610065082316,-38.13569285044388,-50.45120065974639,-43.808982008902575,-42.085367975149715 +7255,-46.01398925046745,-46.19601243725943,-44.29780068463002,-44.875500705979086,-45.62709855971405 +7256,-47.20345351482141,-35.71946138055096,-43.67473844440877,-48.58330072195268,-47.05219328569885 +7257,-47.266247549086486,-52.58479470497123,-42.70973156888943,-44.79684718350684,-44.216233251418885 +7258,-48.659520292676525,-51.453390461821414,-44.048992436685886,-40.50608547710988,-40.644067870076825 +7259,-55.967343896663664,-36.75963175117336,-43.4521060782661,-48.278610930229455,-39.96350904439906 +7260,-50.3702611998972,-40.19164971696977,-39.94930475639732,-39.329692679961425,-39.83723487068455 +7261,-33.71553128521537,-49.642162363117805,-49.875150086767434,-39.102864449045974,-44.52541116751396 +7262,-52.829925760855616,-53.54173452665954,-46.92233349081957,-48.96465170904128,-48.24518340512998 +7263,-56.02456285850584,-56.873868203203365,-47.44498953102864,-51.83905029680821,-48.10785622345674 +7264,-58.480541079214625,-50.95171348172036,-44.47665327528737,-51.00536541064015,-47.74989359190228 +7265,-52.404429652143016,-38.96653501732791,-44.01599420171956,-58.666453096898564,-49.561367998388356 +7266,-43.90692225381239,-44.248252141502434,-49.73678362602857,-49.63701904678314,-45.147614459149665 +7267,-36.372934197594944,-59.05433019602737,-42.58263016164233,-50.334052740273755,-52.516648377502094 +7268,-42.40836555837769,-42.940188753502454,-54.09293412086219,-51.865692169623706,-44.95640364069111 +7269,-53.175879338900394,-43.9167723688002,-47.53015965382965,-47.01437150302848,-50.143822217353645 +7270,-41.82095693365903,-44.959432947358756,-44.326955419102866,-57.133441370145675,-48.27785895228959 +7271,-44.23499892597405,-42.75599862009217,-49.093435362117106,-54.515090803189246,-44.190220993590295 +7272,-43.40106955488359,-50.04899899156079,-57.13857131625237,-49.47962673340909,-48.91788322570245 +7273,-47.343365048219034,-50.12169838934542,-47.26364415018816,-48.872022559688176,-39.83069648027855 +7274,-52.517342674913785,-55.01939553730018,-44.929070707343186,-43.29562915233535,-51.64634877169443 +7275,-48.07452929940197,-52.50227928319292,-52.65886581364326,-36.48123957102148,-42.546187289058466 +7276,-52.19821766869614,-49.19935603307733,-55.00679116295035,-52.56665687176826,-40.06805954985603 +7277,-46.08353591179827,-48.14740067931744,-40.0753238654167,-42.91498534205116,-42.09941198007352 +7278,-51.25429701230159,-55.40838413719444,-46.36821792960991,-46.281038308533155,-40.28511811680151 +7279,-42.17733083902529,-51.24120384417337,-43.69770230975875,-51.38161162070258,-42.98993905396773 +7280,-35.84839679392628,-47.38451140014555,-40.649266028714855,-38.008651818986834,-40.667318396029415 +7281,-48.021639814578975,-57.52527959928548,-49.72745167620004,-46.52832186070976,-50.271703669594956 +7282,-44.29023198913743,-46.386911316746634,-47.23015996378134,-42.89000207476072,-42.96008937797387 +7283,-46.09139766583916,-46.340582962256,-44.01654820247069,-41.955952029151504,-41.0047130298857 +7284,-53.76964793570847,-45.94486702811891,-44.95747672604938,-48.28399377797146,-45.49445698441927 +7285,-45.92044605417583,-50.8998953730078,-56.77953085005234,-43.85457436255454,-40.21429412123901 +7286,-46.424385999907706,-59.44048003646349,-42.51151432877427,-52.07090656603469,-43.78378960786401 +7287,-38.756399792498215,-54.385603953814396,-48.24443524243622,-50.6518202420324,-47.638538157500214 +7288,-42.29830177919054,-47.171263276401504,-51.28040922548712,-47.76522144219553,-47.27705343534801 +7289,-53.680603563356875,-52.26280510290648,-46.137346399876485,-43.95019823153186,-47.773406717948134 +7290,-47.69106224241109,-53.823730702585074,-48.70254840778908,-42.07122604570027,-41.301625519493996 +7291,-39.899300370478635,-53.31867869257329,-45.41480164354012,-44.87209368984125,-50.642442169868275 +7292,-48.1071268500515,-61.647198268715,-43.18877260301422,-48.978545476724435,-51.28300238960557 +7293,-53.913081609684674,-60.03887646048634,-44.832638490941235,-45.69467376737662,-48.71374526140006 +7294,-50.0355180875786,-40.850037191168774,-41.51996824178055,-50.93697294172348,-46.78091468984765 +7295,-52.906359622986,-44.46711086550988,-43.82281862077677,-53.1243712952668,-52.26908171347814 +7296,-45.64929503588064,-50.9089239984383,-55.60970106242602,-43.1296479069764,-50.88370583318107 +7297,-38.79528936595146,-50.2894971087727,-49.85843506403946,-49.683966024076895,-46.60152253028666 +7298,-50.76455494897367,-54.76611027449209,-47.08452778651401,-47.209020110305254,-46.603786405392526 +7299,-48.53995249334839,-54.86065806851196,-40.76509260711879,-47.74126785364225,-39.65103669329818 +7300,-49.8280317127062,-40.45925866399493,-43.961656019961076,-42.382843468977285,-42.13729489831882 +7301,-47.08638011849474,-43.095135226844086,-50.347782416386195,-45.780654593969125,-45.78003215041991 +7302,-39.38659756102378,-47.01277022456166,-40.075690725613676,-45.46962662741242,-47.17309593920094 +7303,-53.785392843494975,-53.60625428208189,-41.23111214642432,-39.699487990258675,-53.867177259256366 +7304,-44.54746476649062,-49.025232583022714,-48.789929145584146,-45.68726961734314,-51.937323695935206 +7305,-46.91727254649073,-52.99318347149436,-42.25613067033164,-45.88288555988139,-46.351222514808484 +7306,-51.00514926374666,-47.76899498399161,-40.97351855468853,-43.00783233633735,-45.5750253081024 +7307,-47.61579044077835,-52.24012126919592,-49.82294062138627,-43.95907514980354,-46.3768361847839 +7308,-46.07057686495476,-42.610993438891946,-50.93400740837373,-57.74907187941531,-47.24154013717781 +7309,-40.595229581182515,-55.40551654546452,-47.77908775843655,-55.599789152631296,-44.356007787128355 +7310,-45.71503958895905,-48.6791526741734,-44.89709094661085,-51.319428964689756,-42.57611278962409 +7311,-52.415396022254406,-43.14867042168561,-44.252616495155316,-51.575735349055776,-44.72069230701158 +7312,-50.02947176433855,-51.556184132597075,-44.62615389208089,-41.520358407937344,-35.96379608137419 +7313,-43.943815094755564,-47.41531401657063,-58.11485491305532,-41.26824756878483,-48.89653540649395 +7314,-42.90781159806007,-47.79077367996695,-42.18436668557251,-55.39639576945158,-40.59718409239246 +7315,-45.936938105199616,-50.85082717404642,-51.5614139491199,-45.70702402017252,-42.57296437172253 +7316,-43.64850647532828,-48.85351855726831,-46.855254384204024,-44.364245810855856,-53.25892766979549 +7317,-44.865249062261306,-46.07836897060769,-43.70247279091576,-45.081643380284255,-35.58724341818268 +7318,-51.120427307953996,-54.08364429594126,-47.88954490314187,-45.1951458635233,-45.46022637417943 +7319,-51.5024821399187,-42.34787259269275,-47.11383119958634,-48.64763020914625,-48.02906928945094 +7320,-42.420045538491124,-41.14402934970363,-42.35063022659893,-47.29321568028472,-49.06071009638434 +7321,-50.035809898414804,-56.24588534082209,-43.60082127308663,-52.42724486967897,-47.826660851616985 +7322,-54.20448242868118,-53.04064884716996,-49.3248752049774,-42.96243544308598,-53.887386530998604 +7323,-41.22830837593357,-49.57306462525121,-48.765887392278046,-41.31657828709606,-43.146910238088886 +7324,-46.10116069276968,-44.38104921616892,-45.8508467664636,-50.00703145722748,-44.58377229021999 +7325,-49.98291124125943,-48.947425760096536,-44.76379163349955,-51.42233133289552,-42.431273923578296 +7326,-39.84567989360657,-46.70268155532855,-48.061399926180904,-42.08675779703089,-47.27340507964035 +7327,-42.960967915422245,-54.62076373377995,-52.88555260855503,-45.47160874998539,-53.73403234183661 +7328,-41.943441374641715,-52.5636293417165,-44.980639979544584,-46.59594288461924,-36.16479209903381 +7329,-55.60061211139168,-53.54109537632687,-49.417620688733734,-43.67500496361434,-46.59312518092358 +7330,-47.53031190484579,-41.464418815461656,-52.77944686237278,-40.93271300585143,-45.88755343654471 +7331,-37.30687815521378,-52.79322065403139,-46.14289915119914,-47.14464922475599,-42.14185994802963 +7332,-43.76115018416518,-42.53848349782307,-40.19877040595842,-51.44692591075631,-38.75032112394169 +7333,-48.78312404305368,-41.443983152251676,-53.27789065902748,-47.30523372453558,-40.645491538279224 +7334,-50.06534716218257,-40.240678859817464,-47.39802071980027,-49.13649890333135,-37.26661323056811 +7335,-46.6413222991802,-42.483151970407725,-38.8734867453783,-48.717080114166876,-52.91959104407992 +7336,-45.25149279899398,-39.945719025944435,-49.81124446895662,-46.1516841959134,-47.768843027098136 +7337,-51.91920923935526,-47.373638436209845,-43.28295811473371,-46.95972595225641,-53.12671294709018 +7338,-51.94595142200699,-37.438945416499784,-44.522475931295084,-49.72473657487444,-51.67097216776769 +7339,-38.00516232250919,-43.94512721468984,-36.51427742924389,-47.92846121389244,-55.25287348984957 +7340,-44.5030801903771,-50.51262546764477,-42.19403246236779,-43.22329527433513,-56.498048852447454 +7341,-41.48188909000075,-46.41005895162909,-38.93960417500629,-47.669059905987126,-45.686692745029006 +7342,-49.35822896547904,-42.47543903378173,-48.85142809996611,-46.43217165918398,-42.76038147743712 +7343,-47.756034639784644,-52.50845228512258,-46.7702335757315,-44.14432811697427,-53.55511202551536 +7344,-42.70005218048715,-40.16383294258027,-48.14319853855858,-51.80500224555633,-41.18875270904453 +7345,-51.18163990893285,-43.35592332582144,-50.83215991249542,-53.31973704109335,-42.499470603128835 +7346,-38.936866515703706,-46.55179276233154,-49.4089344405325,-45.71145952166974,-55.70709158163548 +7347,-48.848937161047445,-43.61515243489493,-42.230053338088275,-50.36781118101174,-44.62733819266077 +7348,-48.896739134649756,-47.241203833605944,-48.21652416362518,-47.595161784792666,-40.53120335166303 +7349,-52.264453016520136,-50.02258777948793,-47.29802594180839,-44.841701887498196,-49.27826182468852 +7350,-51.711384064386664,-49.100056138017024,-44.45781574596231,-44.61499382635176,-52.654916816021434 +7351,-45.75976264563525,-50.62392220229052,-50.88939222881622,-51.10474465583655,-50.22104742125919 +7352,-45.4894794645937,-42.654374473196384,-39.7892329976793,-46.037423270156744,-48.57164784641074 +7353,-45.95556882583422,-57.11341061438527,-44.058140850116985,-47.1706263046529,-50.80882433214581 +7354,-54.529507540799436,-43.65145149039894,-47.950990847237776,-44.845057340876366,-57.23779003868751 +7355,-45.56799356412108,-54.96581781974019,-41.03148696003662,-40.3225758965684,-52.65478592423982 +7356,-47.48216939357455,-51.40920850638646,-53.35864151583916,-51.765288824166205,-44.68158390647523 +7357,-42.317387344040064,-41.68169596139682,-43.54421422231931,-44.842704834810974,-47.544420006532924 +7358,-46.80815963686594,-51.76273482021108,-48.80913039676842,-46.45527676082072,-46.98332472627032 +7359,-54.52592737580727,-50.067853653436195,-53.178169553499544,-48.41661237218934,-46.32948834312762 +7360,-46.64153910178578,-53.45986392082402,-37.485551265099495,-57.75375975552306,-49.600538009624664 +7361,-50.43923803758931,-45.31834861516469,-45.06141365385564,-50.51351783909933,-41.7614519339508 +7362,-51.26485168401916,-55.796909148642904,-46.58270634658254,-44.22049169547095,-47.4173485145576 +7363,-37.23416188636918,-44.32107605543195,-49.83748172857646,-50.53957591309847,-45.381691642906816 +7364,-52.309798566626604,-47.88091303289934,-48.7980164384114,-47.53877883517123,-50.74603916941719 +7365,-42.52268499735774,-50.69013623101766,-49.18667666884091,-44.16263009828656,-41.90390085064419 +7366,-42.77869919876829,-40.48330035040829,-43.66557442392981,-50.95409145536784,-37.810067485578884 +7367,-46.79273621741356,-54.19166341695251,-57.248891075444035,-51.42795870231245,-37.03453225164732 +7368,-51.942597730545515,-40.86983879686492,-52.22634802323741,-44.086717315659214,-45.647262611624505 +7369,-43.33571199737359,-52.177373491639635,-39.547572634605004,-50.81320544838668,-44.049955520292606 +7370,-41.332144507990094,-44.52500810075715,-37.34922122837714,-44.235942044281565,-54.47757304058663 +7371,-46.99300575951379,-54.25718446170095,-46.997335139362626,-47.460923848566516,-42.83498918751124 +7372,-36.68380268162559,-44.71766609473652,-43.789684588249195,-47.79058452431685,-44.37159133609069 +7373,-49.370151893291606,-40.41245643196401,-43.85823010561841,-47.42442307892242,-44.485810286481446 +7374,-49.61876666312117,-43.12484336745143,-42.54457701054091,-52.670054109220544,-44.50365471174668 +7375,-37.151130854446045,-43.5716888597016,-47.258568997149744,-41.6100111377711,-45.600342242920696 +7376,-47.26161527435473,-54.46461429341282,-50.200916029796865,-52.500180717969194,-47.039449339106 +7377,-54.00144147664936,-43.07474847228272,-46.36407404794829,-41.203933533714086,-45.85797143468257 +7378,-49.77532779486914,-45.737026932140864,-45.85723299432864,-45.04378013480769,-48.5600924714777 +7379,-36.15056656757473,-53.07686768654051,-57.90085113386969,-53.004179343230895,-44.147085604131135 +7380,-48.79931329042166,-41.04977645708912,-40.532080482418536,-51.818743186376295,-48.032687896737414 +7381,-37.7600047858155,-45.60673441065998,-56.23989027962046,-46.49661753826421,-44.63938117056095 +7382,-53.96335744187605,-42.77701103643634,-41.168370022356704,-50.21532422358527,-42.15481384300674 +7383,-43.47192462226128,-50.035954622322244,-55.635781941097726,-47.818305621015426,-45.16237378902747 +7384,-44.73960526210134,-42.769051164029236,-47.046354466101704,-52.312207223152335,-45.07222008470111 +7385,-48.018164296743954,-54.06402444228923,-51.57957946762437,-54.276018805579376,-56.46023565431298 +7386,-51.362580835884,-44.453278340700415,-44.32785109969891,-49.47411387308982,-59.89774382259434 +7387,-53.33856167303319,-49.43662837088061,-43.63855957054088,-52.46272640734973,-41.093285403685556 +7388,-45.264255915953484,-46.65227591136103,-53.82063066478324,-48.96507846905791,-47.038189513155146 +7389,-51.130718101948894,-58.52409644980184,-47.70776968342223,-43.60651003949913,-55.585592777168394 +7390,-50.183357025283684,-48.83426250069001,-44.86363237850895,-52.41679381221659,-43.5283924248466 +7391,-41.129571776174814,-46.7300867213262,-50.581264274916535,-49.2874523784631,-38.575486810610926 +7392,-51.45174682506998,-45.63547628099807,-48.93907486688139,-47.979902024488375,-40.96788343152722 +7393,-48.4340098180816,-47.370028587376304,-47.52596647871837,-50.60533002575327,-38.34849494451216 +7394,-47.43433277942614,-46.022646218007566,-48.38228397662876,-44.00616196944005,-37.25959404968827 +7395,-45.16807827191506,-50.94174042330646,-49.545526964617004,-42.32412209385913,-39.89012853826548 +7396,-44.015405958278166,-51.22915186350264,-52.208191948611095,-47.91169405069944,-50.4775662844874 +7397,-52.785713566404745,-44.44662616202649,-48.8471357366347,-47.781053857280554,-45.277665852565626 +7398,-40.22795448948544,-59.03600322620999,-40.6375974788886,-42.256792700839824,-41.86351293977378 +7399,-54.15419692811098,-51.487320725013554,-45.407280695885284,-43.84720964401451,-46.36950007870645 +7400,-43.06723534719947,-42.312024899482815,-46.66032029692679,-43.917602314637975,-49.859152322518504 +7401,-34.576970322427904,-49.506538737229384,-42.764330627603314,-47.8583435564333,-51.45909067648229 +7402,-52.13124165196616,-41.58332285837899,-47.37922789299845,-43.67777810365899,-43.15819764705572 +7403,-49.85601881309286,-43.65688809027089,-45.2587795923792,-47.87403258595696,-40.91119121365995 +7404,-41.395056809551384,-44.16547574697393,-52.46198006669524,-50.32254877013528,-38.60889172635531 +7405,-38.25253805066583,-45.781033814071534,-55.90589631526832,-45.559086099450454,-43.887223141761076 +7406,-45.63093434063358,-47.796704921152546,-54.343094495886476,-38.69373606730014,-49.421363558295496 +7407,-40.23459206090719,-47.16094754074098,-41.809022264488036,-49.91105488284817,-44.9544693231686 +7408,-44.98247100308884,-49.69742637276234,-41.30727875543805,-46.755770740430734,-55.15844159873201 +7409,-48.90346617522466,-45.81393005801784,-46.11224592954922,-40.84414757674267,-55.48008633097032 +7410,-43.844247956668205,-44.91985838169647,-49.37671847919474,-56.24012700625016,-54.10043754588288 +7411,-38.19187420459011,-45.69887516558734,-38.730732748109126,-46.72571380986162,-47.733899282373365 +7412,-49.58913762075289,-47.943393249968786,-41.1615429962911,-43.33793048765745,-50.69469968366468 +7413,-49.490585417932834,-54.79291230179241,-56.330053308124796,-47.727268119214735,-50.15060368403671 +7414,-45.76694199376974,-50.94780258239664,-44.74390608437055,-45.756083032276074,-44.750150677780994 +7415,-49.957903124167196,-56.80157892624352,-48.71139533827193,-41.34341383365155,-48.372787532927305 +7416,-47.731320017899286,-49.40107383395744,-56.61654991473454,-38.69972164283685,-49.019696520602615 +7417,-46.113793450539134,-48.27971155529597,-49.79403684107766,-49.32374031350489,-43.963085036316514 +7418,-47.61325628499556,-42.6086186367137,-47.5606375524808,-44.7062724427529,-53.24311229323663 +7419,-54.109048633385356,-54.15861649325279,-44.13259112729745,-46.26678855291587,-52.285348261028886 +7420,-42.304574920592856,-51.988459195813284,-52.11628469714513,-45.995135258916946,-37.5776628547103 +7421,-49.788783998937134,-45.961269346448795,-51.074201575939206,-47.06821234447618,-40.71725983679296 +7422,-50.3890264143424,-49.25975335529516,-48.17548585666599,-47.78788240424741,-50.26709401863385 +7423,-49.740570990128056,-46.18983927079997,-49.528111805410354,-45.634940352589766,-45.88406592296427 +7424,-40.15133228323486,-48.433012973619086,-49.758447991520235,-52.21548866465538,-44.939747671211805 +7425,-49.102264953564315,-38.1677738000699,-51.34570898710196,-47.660334415869,-40.073926956342035 +7426,-46.10121472415998,-44.38791425317089,-47.113145883825716,-46.06103337728597,-40.77769618532543 +7427,-56.31438382229428,-38.78090637306971,-52.889459914042824,-50.37352044004532,-50.275425574704016 +7428,-40.699603065747745,-49.01688484141424,-42.72704019827452,-42.95310225229131,-39.75180345548601 +7429,-38.53242430438191,-51.1369401918622,-39.049793949643934,-43.14628689649461,-45.32859868026956 +7430,-55.563956792006245,-41.72189596345679,-50.830153540022515,-50.32719840007614,-44.13620724009692 +7431,-47.317365717397394,-53.27389494339675,-48.45254159488849,-53.57473257687907,-42.79264834111838 +7432,-40.322877064411394,-45.42342811388831,-49.54487506356683,-51.398810469639784,-46.176739020275704 +7433,-46.738876138365384,-46.0180837331736,-51.94544808746452,-50.57919543964199,-40.17709536568728 +7434,-51.122015278530455,-40.82168387210672,-48.07196783488202,-43.11183872940495,-45.25286117908256 +7435,-42.79767757511892,-51.90501126551786,-48.1170351238416,-49.37821044289615,-41.7238866303133 +7436,-49.98854008757055,-54.32231186711947,-42.19581502224994,-51.97463721739773,-50.291890655688576 +7437,-49.13312581209124,-44.257814429636944,-45.67938089357971,-46.452884569561604,-41.04373642779963 +7438,-47.968106040346136,-42.88639594386211,-41.540405042107636,-45.16184157320879,-48.648029312661805 +7439,-45.53204667291847,-44.714855375631096,-55.6859794322928,-49.72658269374362,-42.368351354300366 +7440,-46.39031790990789,-41.78212449150358,-54.593083377698825,-43.73670721635712,-49.61910414402061 +7441,-46.039629436716915,-47.94615744523562,-55.44024922585422,-53.912758707367345,-39.04613382481548 +7442,-38.839494220634144,-42.83804738096911,-48.239556697658514,-43.187420847990964,-63.45795555733928 +7443,-47.540977270034915,-47.96478639632461,-57.92238655181445,-52.53149977240757,-46.097892753764896 +7444,-45.977164722149446,-47.617287466185864,-48.08263376244876,-43.83477570261257,-46.691706444435326 +7445,-43.727940059061346,-50.75778912917952,-42.722243903965804,-54.446081071188054,-46.73895915058842 +7446,-53.13566419359084,-45.10158991620748,-42.707073152319296,-45.922097976753065,-48.65032822472627 +7447,-45.71066132601819,-51.714226259648264,-53.36294353726394,-44.22946324030565,-47.75965725994734 +7448,-38.84222073814404,-53.02034761065542,-50.144073358568605,-42.78098105401923,-46.03735675836275 +7449,-41.3646409672785,-43.53178612849076,-49.02956369627564,-48.60592205601877,-45.64515457822567 +7450,-48.75351127379225,-46.245145229879135,-59.331528892458344,-49.438884058391665,-62.86778441319349 +7451,-46.17201053372807,-47.39155838350553,-45.44378008938431,-50.153111374509734,-45.141001890151486 +7452,-41.21218336216638,-46.7492803548113,-53.53129656848231,-48.45058093313132,-40.09928618756116 +7453,-50.05720538056129,-57.78463641300431,-51.90852618879554,-44.255402267487106,-45.7777638125662 +7454,-42.21596597147291,-44.42892785831376,-49.93634968975621,-40.64587967984181,-48.70398895093595 +7455,-50.38408759547496,-41.71904264880834,-45.22577358556438,-50.59340539534113,-48.07274295502667 +7456,-54.99351863851013,-51.81830885707543,-43.73894890462417,-39.814324280036054,-52.133474950207656 +7457,-36.2211133993709,-47.512531933002805,-57.07669595532762,-45.295343644264115,-47.099857965942434 +7458,-51.258549357852154,-47.82105464395748,-53.67803515581238,-41.30002014246771,-49.97433294458258 +7459,-41.96172289401453,-46.462535169336554,-45.1795620781032,-48.80311638259441,-46.1557730994118 +7460,-51.216068710496785,-52.80330727195531,-49.19706024436091,-41.559997525512394,-50.76965459270566 +7461,-46.30507179846572,-40.99734928373705,-42.35930628414665,-50.4918556407496,-51.870715397047114 +7462,-41.99923427468249,-42.70959518676203,-56.16088646370235,-39.22324274479348,-48.21382473126884 +7463,-43.1860404534039,-56.05570447300483,-43.1299602968196,-43.64526394106105,-41.76615632761267 +7464,-41.81061649780662,-47.10925099846574,-48.39204963677668,-54.51560139969271,-59.67757365704492 +7465,-46.586702493160345,-50.967397766877866,-44.71492285250939,-43.52995669633216,-45.84527560475976 +7466,-46.556134782942074,-45.28987782581469,-48.35867621505226,-47.81323788399465,-62.96974822566926 +7467,-39.89971103568065,-45.39700970623293,-42.44034045785592,-46.9225070600085,-42.54532019529427 +7468,-40.79234607183859,-50.07900572397391,-49.96339174377363,-41.16023752832944,-51.208023119514564 +7469,-41.22337805938991,-42.842118670528286,-44.01553504016136,-46.76657157861457,-46.53604942361917 +7470,-40.694195586361786,-49.44699246039243,-53.46239086708124,-46.5155128662666,-44.65093974801229 +7471,-48.39440957366242,-43.882450305703514,-46.40721112721777,-47.09742909231435,-56.13537669260688 +7472,-49.861519987545215,-44.83270613886667,-46.89266618784147,-49.641024603462554,-46.83840734665746 +7473,-41.868072941876235,-52.86503391735705,-45.92737191949325,-43.10171207520411,-54.10542605822296 +7474,-54.68411293898757,-47.65130699210517,-49.239544804743836,-50.23127128465821,-59.55891464522806 +7475,-42.98339136260789,-62.05615953585992,-50.362377735739294,-42.66667127081523,-38.27355770676608 +7476,-54.75146652075702,-52.782078248295925,-50.67615135358202,-41.8090554309551,-46.563498268250086 +7477,-42.86612031019336,-48.10172374157983,-45.45431615917445,-38.51592768819124,-44.45411535394036 +7478,-51.35243856053145,-52.434483616218714,-50.546472097320596,-45.475138341538965,-42.42876787304405 +7479,-42.38676595065602,-47.40210247493856,-51.88395671270219,-53.23287618115743,-39.157265542058234 +7480,-41.06509040351925,-54.25278940717658,-46.695958131553944,-50.6161773670513,-38.04501566971028 +7481,-43.05545301810231,-49.56181174802941,-48.21103798053058,-45.811764723029604,-40.665440330581845 +7482,-44.81176196427896,-48.64260817875972,-52.955625546696844,-48.76749385036407,-45.80031492547549 +7483,-46.663086635625476,-54.91512326534284,-48.0207128354154,-47.553549907486044,-43.548265801597374 +7484,-43.75529756824873,-58.66054145184909,-41.87143118600984,-41.256554218747674,-38.820246157414275 +7485,-45.74005864739301,-52.173917301032226,-49.343779850638406,-49.00466736011276,-53.40322552107167 +7486,-47.39135713575,-53.646576971246176,-52.18323847918507,-39.669083241373734,-46.90772678593112 +7487,-46.402636603576255,-46.83258280297325,-50.7062239073986,-48.26209888817742,-47.06835850557796 +7488,-44.95814559287953,-49.75225765312338,-50.318969622028106,-48.988333065132224,-44.31318251117301 +7489,-49.733089398223264,-48.31170640418136,-50.577080702544535,-51.98564424936762,-49.267828804124754 +7490,-51.47132868604401,-53.224678358108456,-40.16399304143962,-41.50809437599252,-49.81478406865426 +7491,-43.6420108756844,-53.55461430042716,-45.00637222417808,-39.47668155310281,-52.4960306159811 +7492,-37.37711725143609,-47.85039160345662,-44.85258205359169,-49.56829605453048,-40.99827923085241 +7493,-44.09510368048476,-54.30049593811143,-42.05142620554404,-53.16739038003253,-44.78415366048278 +7494,-39.321561201512715,-43.423181222965034,-43.980078944556304,-44.5017561148123,-56.62006561589306 +7495,-47.09462510895613,-50.03974759525939,-45.43562391975464,-46.313592231361326,-41.6872367909995 +7496,-47.60147080056586,-42.82011753726268,-48.086133110164695,-47.973919612151796,-44.14961057201119 +7497,-39.46273925045031,-50.56557427844212,-50.35781517353425,-39.572802501755646,-40.9170639916747 +7498,-42.20548722943486,-44.3167130300141,-39.90053768534849,-53.64936722489221,-47.475983847995494 +7499,-59.874858640075075,-43.20871820395294,-51.67429305749023,-46.185558795893414,-38.68039416533318 +7500,-50.44297665564166,-53.502157281053414,-50.417950928675104,-47.00585538854098,-42.661260896739755 +7501,-50.055677352964025,-56.33086319638026,-40.38202826060927,-52.59293684633811,-50.90722814719346 +7502,-54.368781766244936,-46.495666213316724,-42.07904531664224,-43.394503449465724,-44.81675306935663 +7503,-50.62799998562884,-45.1798580905818,-49.2956832732025,-48.121258754375454,-50.21547617168489 +7504,-42.11722600665146,-46.17293800894227,-49.290632204433535,-55.486102661855575,-56.118585259815184 +7505,-41.374720559986926,-40.044081441577646,-53.97730425194537,-54.52113089236385,-40.97974770509484 +7506,-42.8274814713515,-45.02201267603667,-46.17472843946446,-46.19149515140674,-53.375959257284094 +7507,-43.43311736280837,-51.67095631533086,-40.5751560232457,-48.179800312211135,-48.436862599323085 +7508,-40.45946280063414,-56.45715492239715,-48.787568654276015,-44.06067035555876,-52.73998154340525 +7509,-49.26764538215283,-44.67426495775976,-44.42932985894061,-41.7023404032679,-54.548574868573525 +7510,-44.68751416245646,-50.15009865853438,-41.84344477370389,-45.566876056814166,-48.49319852792077 +7511,-45.66090596139982,-47.59409171434419,-45.7804319768777,-49.64953554108082,-46.05268402787823 +7512,-39.13808122639624,-42.753744222168386,-44.47111836847055,-44.640903589815764,-45.67750685120635 +7513,-49.73371047638854,-50.33927059869439,-48.51911745861285,-38.41746381573917,-49.787909161687786 +7514,-52.56614326947513,-41.49687377928608,-45.45510278448376,-37.909391082224325,-41.866477756651925 +7515,-39.178266783869105,-45.659585733266084,-40.149798316529484,-54.09719694983288,-40.64783887989763 +7516,-42.25253855725549,-44.49581559978777,-45.45419073476985,-40.47148440929711,-53.91223652874124 +7517,-49.223983344677734,-41.37572485378788,-53.27135970708757,-54.362005635980736,-48.808184805607425 +7518,-45.606161637123314,-55.284633827221576,-48.580874172973566,-44.83801020396401,-59.61407098036751 +7519,-45.08202165951075,-50.49217862149211,-50.109479322169086,-44.0746707292841,-45.104256694098936 +7520,-44.942234220508034,-44.23592415422674,-48.15379499925265,-44.20306599296627,-41.13614964752896 +7521,-51.16308616761597,-52.05194656688758,-40.769932602142134,-55.46702619983417,-57.35615654336379 +7522,-57.00519967892765,-41.76034633997817,-47.64448357274175,-52.861457112076295,-49.81998600566259 +7523,-43.04967680404331,-53.28082057687154,-43.484444946202665,-45.527104051355394,-56.59284827237156 +7524,-49.70688406737619,-48.31021176343774,-40.111319414262496,-50.22682568468016,-41.111788697518854 +7525,-43.42699800624225,-50.431308135291545,-51.452022038686,-46.86469073363379,-44.51216404697674 +7526,-48.29702993310627,-47.30418063266544,-41.32097037855551,-61.698826431367024,-46.61895338667123 +7527,-41.533960366368724,-44.69552982515745,-50.203691494098635,-42.6104335659428,-38.38685314649399 +7528,-47.39924581088249,-45.58787907063048,-45.27254088470327,-41.19483664326728,-42.78196487823291 +7529,-49.22288246008772,-39.121256513220615,-52.34170553213273,-41.515234761153835,-43.91463250320577 +7530,-55.85357263368263,-41.367845650980684,-58.325464156177496,-48.18463165882891,-44.31321362659798 +7531,-55.864073507421075,-39.275525501225786,-41.62571919682275,-41.44737158080946,-42.120842396464646 +7532,-42.45748259151537,-42.25885972656022,-56.180546692868006,-43.60461479757118,-48.02731674986652 +7533,-55.20051586553913,-52.79852107301681,-42.57671207144726,-47.840757921635195,-50.972935692449234 +7534,-36.91253881963695,-42.31526477187382,-45.17409180163743,-44.38914579578867,-50.346132091881934 +7535,-42.479162387989895,-42.3454084531902,-51.10183054984237,-54.52864620455743,-52.21384113065866 +7536,-45.83962660635628,-42.06613485513756,-45.09834801796205,-38.84720871946891,-46.04537753004488 +7537,-57.81609186480883,-41.66877563483397,-48.20813197526304,-43.99733017697427,-47.722592885829506 +7538,-37.750407608696754,-44.6555857588444,-49.83706347819741,-57.401415821439215,-44.98251216085347 +7539,-42.302403436398436,-45.055505088840185,-46.32414507142602,-46.41644761496873,-40.04473368043752 +7540,-41.41261610817004,-50.699007059498015,-41.741787959468624,-49.8431184360779,-42.40649134166121 +7541,-46.786353620413095,-40.72586675085164,-44.93988771151185,-42.846821693824126,-54.29515459441869 +7542,-44.10808190650315,-45.410795330675114,-52.547924764929995,-52.91143936545302,-48.49541772740627 +7543,-47.56028802095754,-52.00147712603627,-45.01094826029471,-49.865064947846705,-49.85229049372541 +7544,-45.851404526595246,-47.81044664312741,-46.809005513200155,-59.435297239650346,-38.293143515760654 +7545,-46.52953947679861,-61.73325082224891,-40.94754133395317,-41.516206688347104,-44.06731586862419 +7546,-43.26499616165532,-51.76595869299123,-51.36378323449059,-38.46460564355107,-49.536775070145154 +7547,-42.29088621932022,-44.43041018314866,-51.22583717245049,-42.39942326375766,-59.18527231375266 +7548,-46.22420153049537,-57.0175988333257,-52.72689970927495,-43.009991286048496,-51.428149874996905 +7549,-46.507687794762326,-44.195152423412196,-46.71845449040033,-39.52818842618938,-54.16850531590642 +7550,-39.78750665291078,-43.395544729894674,-42.87634105104181,-56.03149386711903,-55.94864738394536 +7551,-45.05233295599494,-57.80411539799775,-43.88316380614252,-45.898727446756425,-51.35730290848653 +7552,-43.16544278950001,-48.52025033630292,-51.28299223745897,-41.40202286106165,-46.1272340711221 +7553,-41.34937015986681,-45.96814027608979,-48.55777744045235,-42.22047506629317,-44.9884219347865 +7554,-41.38363676315727,-44.83233537206301,-50.44292399403803,-51.018971402428974,-55.5746760341428 +7555,-48.611800196129785,-48.491252327037756,-38.97365576733226,-57.65184053305148,-43.68493998908224 +7556,-38.43405792584973,-52.282456173628724,-41.13589357435673,-37.610303786735805,-46.348917065332216 +7557,-52.02576847940327,-42.95019387673099,-50.6725625006817,-44.8788286134753,-46.35954434055359 +7558,-43.828608920908664,-45.02343887612411,-48.89417209234948,-53.34723241661252,-46.825011624803935 +7559,-52.0622415696324,-43.58726751792946,-47.610962734591304,-43.47144775060447,-42.024369322403984 +7560,-48.32335545998388,-49.803352398239596,-50.04893796742532,-46.95112277601486,-45.42745950172617 +7561,-41.53759165228095,-49.57039380248218,-51.756199307469075,-43.85060596894311,-47.15267941158925 +7562,-44.10274364213406,-43.07027072073298,-48.1260894404421,-49.92249494180526,-43.70114745109348 +7563,-53.30997658604087,-52.3969497357763,-51.491081435243245,-45.04389266511418,-45.19630772258409 +7564,-52.843390303055926,-39.76323107709777,-47.515112362252545,-36.98995691399245,-47.18816040108344 +7565,-51.05613952752931,-45.75669575104635,-50.188114758817115,-43.06328191219083,-43.02549009525993 +7566,-42.61997708558054,-56.74221629206194,-53.091172179455945,-44.63073247317684,-45.16200998259575 +7567,-47.66828622885912,-47.9462019642873,-44.01740471513698,-48.996216577031845,-47.21499505650736 +7568,-41.41299349204413,-49.69051894949755,-45.49969143875605,-43.61338856871482,-52.083364716049516 +7569,-44.062948130382445,-52.84556610472577,-50.134461112713296,-43.55850129696623,-59.35127652332049 +7570,-48.13507184841618,-45.71525265443857,-46.142005850024155,-40.78377409975176,-47.62927910065919 +7571,-46.264404992340786,-51.80844748995797,-39.87662425024743,-39.62295975046619,-38.5923907084227 +7572,-40.09296297727922,-45.280448837343144,-48.02745943718802,-47.133430331561925,-41.958066874795485 +7573,-52.42500244822953,-43.72631704980043,-41.780474188454356,-45.75768845546861,-41.19700929947435 +7574,-45.320371647000925,-43.78646012227395,-44.2356693230574,-52.1926890887984,-47.42829351887354 +7575,-47.3090816320866,-44.32853337422386,-42.36948769623016,-43.54342475109637,-51.44463763309778 +7576,-45.44920876794921,-49.8855977822429,-41.20116066709932,-48.38403934777743,-42.18144582007732 +7577,-50.58209875139256,-42.233811816059124,-44.31860323423545,-44.771746580009506,-40.744540715321016 +7578,-55.290855162408086,-46.70573606924264,-53.77786160687155,-47.884802935528505,-57.26841817566934 +7579,-54.11855202899047,-46.82885547563755,-42.61039767717601,-44.50035799207599,-50.28382273209579 +7580,-54.53052490586878,-46.433489058668485,-41.309683002109466,-53.66817105876868,-45.633148778225696 +7581,-47.179052580737704,-36.49733442521734,-44.58671278262838,-52.271455714152474,-44.123704589736114 +7582,-38.935791659411166,-51.15070254326735,-40.087908233059025,-46.91828730876174,-52.3950183997504 +7583,-50.97880435138422,-54.959817735776376,-42.61884767431361,-46.11126569983157,-50.093771523011526 +7584,-39.80123162730553,-51.95830923216904,-56.545671719874555,-46.956336725388645,-40.520821590003656 +7585,-48.234643881078355,-52.01435902870394,-49.21391946145192,-45.986350866381386,-44.934113507820115 +7586,-42.45046614954751,-37.315524869721706,-53.4775915300334,-37.26665654847502,-39.7756102277933 +7587,-39.22035871830742,-36.589518615489766,-45.908548306215025,-47.75109619552083,-54.61739625307831 +7588,-39.70247846854017,-49.101241474309425,-43.238495292474894,-45.4635891203958,-54.61754945742538 +7589,-44.32746646920721,-38.35725499032898,-37.68448747402863,-52.434563588662776,-44.02583233693148 +7590,-43.158850005268405,-43.00658810061028,-39.51761739186068,-45.57813614122318,-45.430099580106415 +7591,-44.72233846708015,-51.86641551539927,-42.205243000591274,-42.72207385610326,-48.735884845866764 +7592,-43.31234062785936,-48.48164366312207,-47.27579630592618,-41.551267606298005,-51.5682775414153 +7593,-41.320523560854056,-44.53522330908939,-47.23656896208158,-46.22515117287106,-49.395673616965304 +7594,-44.28258576233489,-53.85030912029583,-57.59391488545612,-44.59894289544352,-54.403029121989334 +7595,-53.320507542927714,-55.0653436823275,-45.40196776821195,-55.56220178282566,-42.39200576790823 +7596,-43.57395466098735,-49.76814970172781,-43.21829344562949,-48.346713012750605,-42.672398005469695 +7597,-43.893292677757714,-40.68605743042759,-43.6567706920491,-41.84471517806405,-40.36895956833207 +7598,-47.056055262684104,-54.07900383072533,-52.99740244209621,-42.81755303516634,-46.57369071132149 +7599,-47.117467242591545,-40.2122100766993,-52.342302425840195,-53.74431560244124,-55.51294378269997 +7600,-48.69097130613619,-42.67595499244964,-43.073696338252034,-51.6587751201332,-40.3584152830816 +7601,-52.69724046675704,-50.736517403582596,-39.86852656633554,-57.387147636583144,-41.411511884343476 +7602,-47.34299652103942,-41.076753381605144,-46.93166953800366,-37.40484842581378,-46.86764858052369 +7603,-37.05695452968141,-48.96426147581401,-45.87513568581211,-47.62817395378062,-38.96550827394622 +7604,-44.132919488689325,-53.765763420359114,-50.83981028687903,-55.59773409039626,-39.057622988532586 +7605,-43.507912484184885,-53.628035519252194,-39.09746954313597,-43.38831258466772,-45.01061449937005 +7606,-49.64168493453059,-50.605498852208,-48.231756423475225,-41.51355705554393,-53.10814630723545 +7607,-45.7438158202497,-53.06915721669202,-46.21757529663465,-46.9473248717452,-43.057765126215045 +7608,-49.353123976870044,-49.82507924773991,-45.01032232745868,-43.837265073177086,-56.42755436038162 +7609,-40.22441124596989,-53.861915091355236,-45.224812634587444,-46.66212579930904,-47.53154049518426 +7610,-46.9279936922198,-53.63879945159945,-39.16168409731058,-46.721986637111414,-48.16706521336728 +7611,-40.99791943217723,-41.31330732830175,-51.983679295611694,-37.840294299696936,-48.79348586943527 +7612,-37.89509052382711,-41.69448102955835,-47.56205642833898,-43.31394002280072,-47.14345647212188 +7613,-57.434347672287984,-44.47466428184888,-44.92820523115362,-45.98652255446493,-43.011118091967006 +7614,-46.93741931097216,-46.672751609732046,-48.50381538627479,-46.603667262705606,-43.989807066035794 +7615,-47.38846434969751,-42.67492144359147,-54.35632836524217,-43.65589511672058,-45.97407471409662 +7616,-42.642532953537106,-52.36349142435101,-39.27829810706839,-44.911073086569644,-41.56668423521996 +7617,-38.42653636298351,-52.7050720488284,-48.99593667497996,-54.156938728225796,-47.90744027827178 +7618,-42.91054614088158,-46.41910594000143,-40.849299819340516,-49.76373090618864,-50.24384103598213 +7619,-39.619505703282954,-45.03876273032264,-48.88160292431609,-51.617923978748856,-46.59270991509046 +7620,-53.4333733011391,-49.87015030194431,-59.68795759803114,-50.236279650291316,-49.85379646498867 +7621,-45.233036990978285,-55.50229224338753,-41.186181683799695,-49.758151903405775,-41.4912317738169 +7622,-48.996548424684974,-47.991384417274524,-52.93547049056344,-46.580626041197334,-51.23128938141784 +7623,-53.641298688560134,-49.784411244148956,-38.78718786945583,-42.7554010733228,-55.66975979030898 +7624,-48.52173948721198,-41.408811987305036,-46.11573092974097,-47.17781866744049,-44.60455672454811 +7625,-38.3428396465329,-44.70795309665119,-44.44017352731905,-44.561419369916344,-50.2657795596668 +7626,-51.464679887184424,-49.357447768734865,-53.61953547012946,-49.37244104002754,-48.82101998280782 +7627,-50.07385064440365,-56.19162406643713,-63.35014548292928,-50.36782958762908,-51.77623967178385 +7628,-50.31300530869401,-49.26590601066143,-47.99286701753492,-43.47029644903938,-48.81455619117372 +7629,-51.606081327187354,-54.58256196327544,-55.50963771636894,-39.97133390017116,-47.5582534516574 +7630,-43.47485636196594,-44.768579090189306,-56.335306403420255,-38.11544329659016,-46.20197290727295 +7631,-42.858374573089,-42.55438714657906,-47.71285350582104,-46.90739478010007,-52.41911328934543 +7632,-52.41545358351316,-44.32889955577558,-49.76641197915817,-46.6829872348742,-37.32190433026435 +7633,-49.9901882831237,-47.90441034149348,-43.264593224283935,-43.25871297908038,-44.26234214312234 +7634,-49.25509880490599,-50.478075964501976,-49.21260252432872,-47.229926533923724,-48.76794487627952 +7635,-50.94951819304467,-45.03890859406883,-50.542158165971244,-37.92807511385638,-38.42081055129743 +7636,-50.81129422823086,-50.92444397103395,-46.99429670050297,-46.8600527704638,-53.991724174831056 +7637,-38.0555415915449,-44.38024864971062,-44.74128927805661,-42.542078696386,-58.563474177340424 +7638,-47.00567149371495,-52.93833794134915,-38.87647851690035,-54.06814953263895,-35.969310944300865 +7639,-55.43980353134268,-42.926041035336986,-49.30108278951753,-39.11918207512579,-36.431361397916405 +7640,-47.58986419231414,-40.87083265181763,-46.93835612668046,-37.32192840926109,-49.78767655556583 +7641,-39.97613678873433,-44.22644122184637,-45.255932603938156,-45.61796436270067,-42.58033337927643 +7642,-56.103544916908014,-41.7884986030828,-41.40707368588329,-53.96290221257206,-45.94269976365587 +7643,-44.86601217838864,-46.4992647455231,-58.479783957449065,-47.907069175442956,-51.56342863742874 +7644,-51.88878386849459,-43.74848229095158,-49.44791713999433,-45.92629894374522,-61.35934492200068 +7645,-52.185246374132966,-48.53484697114752,-48.560164353565746,-43.39618775437277,-42.866146750206525 +7646,-47.30706233058422,-43.11141446993137,-45.19648274408594,-61.19931674589325,-39.386281280530326 +7647,-46.46597013843516,-41.66074830640594,-59.42013215513068,-58.551496342952234,-41.47819012188166 +7648,-50.83941406149022,-35.38117889197098,-57.98719751923565,-43.52027698827827,-49.59062676010235 +7649,-45.72074804747717,-42.82324744501093,-48.17645133437095,-55.149524476655074,-52.83899591626926 +7650,-43.827395389881914,-51.06032021271114,-46.323613389489466,-48.036127794388534,-43.75182669329478 +7651,-45.08076115840106,-43.47343866403374,-48.855873625229,-51.66672720913342,-37.60162632813753 +7652,-42.6357606800157,-56.32685802911737,-51.57589048245821,-45.48481481434955,-39.9629183048636 +7653,-39.97744202501389,-53.10713325656568,-53.09664695053519,-43.458507337951,-47.115231650558606 +7654,-49.780598677118036,-42.39459912495201,-51.546382733133214,-50.45333382173162,-36.046924379001105 +7655,-41.54396162666552,-45.401338828976975,-45.90067401242318,-46.020622212527776,-41.308658192695255 +7656,-38.51959534057682,-42.87562250088408,-52.23308108835733,-47.27248310365096,-46.002400440562205 +7657,-41.340156171063036,-44.32182468543366,-39.45451219823676,-44.02218194316913,-55.54719650974503 +7658,-35.215225015079845,-47.03238270557666,-51.99514400040343,-41.16151073540586,-41.05303021204082 +7659,-39.04395655772572,-48.23929510735524,-49.14950635614044,-37.5541607624727,-49.03086677669688 +7660,-49.19373455567643,-50.11204563808337,-47.01035339327237,-56.405835838744885,-50.598543590610795 +7661,-44.693539159193755,-46.14082764238197,-45.08042778695716,-51.297685076552774,-49.62319804968903 +7662,-43.71343369449772,-44.2796714442058,-48.653462259231596,-50.72324174523998,-46.68150897567677 +7663,-44.95486762444482,-55.0817364249517,-46.48779996700375,-40.066551661976035,-51.70712865606732 +7664,-43.206768585252405,-50.24554351024632,-49.791030124074695,-47.12462218572454,-46.656325615602306 +7665,-44.42765197472611,-43.742326475216686,-46.38982599143211,-48.260333146352615,-42.586086054244134 +7666,-44.35635317911569,-47.58835811260833,-46.62898959623253,-33.40305387974332,-55.87713704751478 +7667,-37.74616253697284,-43.41464664083054,-44.01511246405407,-41.338021683573544,-57.340210841289675 +7668,-52.204050145336424,-49.857685894363655,-50.87502586574551,-43.21560023220089,-53.032271358197576 +7669,-41.7949694114972,-45.7749947285471,-45.7348239927249,-53.89227025990779,-34.5037847643128 +7670,-50.51953598769611,-47.21194014815645,-42.25288625668526,-50.45832576214403,-39.08519916612897 +7671,-38.88683058561951,-42.118394470164525,-52.105780078164614,-37.2863570037159,-45.68337319763363 +7672,-39.805180153066345,-56.73078852482225,-41.87936022484003,-47.67491616606504,-35.27636212104145 +7673,-52.50583855225739,-43.315690453226054,-41.70890349545776,-48.552173237432534,-54.763572817745214 +7674,-57.26227589081704,-52.692618369863524,-60.54401524907854,-43.703147374736524,-34.17751758033662 +7675,-46.587192022282814,-54.457199408182426,-42.66339271333214,-54.86368457481356,-38.76155483974368 +7676,-44.8280530415113,-44.42791858106728,-43.812031339725635,-49.46343602045148,-39.48422110124605 +7677,-49.60528836758561,-44.81101135590594,-40.763548793855996,-44.917495826114646,-37.31180395332747 +7678,-53.76818429429472,-46.271642762480205,-48.52239154626474,-51.33490301035103,-61.00153431118412 +7679,-48.467397239231175,-37.71262398388011,-52.37005687404185,-48.93877389988194,-48.752176800616084 +7680,-44.952439592022266,-50.747187459413404,-44.792610927945404,-37.66962689881141,-46.8078146885607 +7681,-41.09060400360255,-49.62171195470414,-52.25960833002884,-50.094635352759504,-42.860735181559335 +7682,-41.52572063697899,-39.12090072699617,-52.245600211987416,-43.46482420635697,-42.57693730894339 +7683,-42.353308657884206,-42.51621313751445,-50.10373762837605,-56.45580586409151,-47.593842414150025 +7684,-43.125459114384576,-36.85175031561062,-50.06391288748712,-43.52144321453694,-47.53372165219792 +7685,-54.351791231119606,-38.249167848155146,-47.44083155827814,-49.861079544945696,-51.43440959058775 +7686,-45.697036383232145,-45.62622172246003,-43.28040200731498,-50.36970965299999,-36.72929319907469 +7687,-56.92133735569166,-47.51503640749578,-52.948449874409256,-36.68868758082071,-44.315679541007455 +7688,-50.298557759182984,-36.33739087823335,-39.554753644724116,-47.3279276577217,-46.96718012911781 +7689,-46.67646932467812,-49.882317107262566,-39.82504718982225,-48.816674547765096,-56.01205202169294 +7690,-49.795545676934594,-37.73166447969769,-46.01592173407626,-57.30402796017755,-57.52150422627394 +7691,-50.347501914575496,-48.32459079406048,-40.275526206628825,-45.847950368669316,-42.5710076044708 +7692,-47.01828511315075,-39.42765748352537,-42.25904367190803,-51.657611283299744,-53.245275878597035 +7693,-37.694707008010226,-50.557547946082856,-45.28863899769731,-45.34097697392236,-44.69360663697856 +7694,-51.45323133792836,-48.285199606034254,-45.5565254964815,-49.89723735816773,-33.48359479346711 +7695,-51.179891778386356,-50.09904985064048,-55.85815043100094,-48.647716924237066,-51.154987201855384 +7696,-47.06236604290878,-44.55401631676188,-40.41565282292294,-42.375342614977995,-47.86355108951905 +7697,-51.45052760009867,-56.1099788719071,-44.167069770926545,-38.89543991434518,-46.863639838602914 +7698,-48.2076233826898,-45.087344436546175,-37.10631185780663,-49.33087084050715,-42.455113835767676 +7699,-53.236750225326546,-55.55483967433247,-52.32878816380078,-44.5142072941732,-42.69211193767811 +7700,-41.0449415881126,-42.17813723074954,-41.87701116244119,-41.46303369018376,-49.198133973311734 +7701,-41.89099522454367,-41.43405641257072,-43.605378965514504,-43.88132777355009,-50.26709375338108 +7702,-42.36657641668386,-48.74197235988318,-45.45804935407617,-43.63219969076382,-32.6494813163283 +7703,-44.190270321477314,-52.881790786457984,-47.38766005663513,-46.42863813822587,-45.68989184005823 +7704,-44.442481181642705,-49.42329349617937,-47.30389092616804,-42.66763412144481,-44.35595820008697 +7705,-43.98481453737386,-52.193114022001176,-49.81962138595188,-38.93246329001688,-32.21007614972748 +7706,-46.749963432207544,-42.64500154313463,-38.69665974071484,-45.06097792572689,-55.33385429266977 +7707,-52.49741929414026,-44.270916099966676,-58.89379316592362,-51.96155661558842,-39.538303784555076 +7708,-47.14817094436561,-52.02374505018454,-51.8474304925695,-51.907795475764246,-36.15503632807723 +7709,-49.4776429645965,-47.36130971792156,-53.86061365775598,-52.82494863405897,-42.3276913070844 +7710,-47.25405195281654,-46.59850170639953,-47.2255210098853,-37.461151156381206,-60.76359843018902 +7711,-41.835732336053766,-42.197141311597875,-43.249761558242334,-39.80702628407183,-52.39112375718516 +7712,-40.55990183940609,-45.3326317314974,-48.927960560179905,-50.321463024808054,-46.664567843680565 +7713,-47.88828143668576,-47.43656100611806,-46.38296524686334,-58.65839238144752,-48.04587452280344 +7714,-57.073791783952245,-48.37741722207221,-42.00028121949993,-46.12834393626499,-46.919234854391206 +7715,-44.151219021343344,-41.82271678616954,-49.258817080629456,-52.152681518353184,-43.15330681256641 +7716,-43.74611445763973,-42.159023946622014,-43.7577848877576,-40.63794716861573,-44.20387795097761 +7717,-51.90207132956703,-45.51900220951243,-50.1980715061053,-43.43948788984391,-40.48517894899406 +7718,-51.954419619871246,-45.06046053934661,-44.27874656809741,-50.45828186469357,-46.16778738086406 +7719,-54.39443298754801,-36.20248860983762,-59.22061594899373,-45.264026234809975,-49.107490775445314 +7720,-48.6102508014107,-45.79880137379459,-48.420111476726646,-36.32158403181865,-42.95212173041931 +7721,-48.47079828106086,-50.83591211647249,-46.882642542566735,-57.7900477985959,-50.542119544937016 +7722,-58.273716473322345,-42.779415918203306,-44.84733573355113,-46.369899046950344,-51.208312339715285 +7723,-45.15183549471522,-44.97648048114176,-51.49960890163372,-49.93938039978835,-49.61289247629841 +7724,-37.66694122867003,-46.450152780285734,-46.944170249857564,-54.2661548752065,-48.2484385219162 +7725,-43.749067362508995,-39.64540729003565,-47.33811245693706,-46.62850985572577,-42.39759688265047 +7726,-53.416627633718605,-49.748329716127806,-54.96697859363743,-48.74608098619691,-51.03898470791936 +7727,-41.11390934143835,-42.17775316853159,-54.24033242935061,-50.86221486107589,-40.52161697100361 +7728,-38.59443725596416,-52.49527412532395,-49.59014051395684,-43.70414369845433,-48.8989976300021 +7729,-49.29879231901038,-44.70077727410286,-46.66510207905934,-47.30680001056888,-37.06086648401799 +7730,-45.45209580035025,-49.59535905641924,-36.05306642259147,-61.489218083880864,-38.82370263454414 +7731,-41.21422992549123,-46.62791118268091,-49.926950957812615,-44.26743897459598,-54.28183028093194 +7732,-44.724614510021965,-39.32345772293549,-52.0070734975068,-52.94885872180478,-50.68654751780851 +7733,-41.564574647485315,-44.85792883845159,-41.55853319559505,-52.8433476292102,-50.37935419536801 +7734,-41.939808489298755,-55.39400411819941,-43.01894723285476,-41.34611047989367,-39.24765677367654 +7735,-44.90510541744964,-49.94221402081547,-44.53546184230424,-38.915882909882114,-42.92820059819872 +7736,-43.18053599046636,-51.968582078022756,-38.43249516541942,-48.12663764404466,-48.092765974465564 +7737,-44.38652313553624,-44.03947906631645,-41.20664511989642,-49.53278723879881,-49.24518334690982 +7738,-53.71557437004114,-38.13294119701783,-32.93695751551414,-50.075156502852934,-48.82634245723129 +7739,-50.524250010214146,-37.115293141992424,-50.06303005946691,-48.916900853600715,-46.07100219136114 +7740,-49.31351101426082,-43.01592226715634,-50.53673001419576,-58.21656332408736,-52.14810569383031 +7741,-54.544332055355284,-46.189149207028834,-42.83691829612094,-48.74373218037554,-49.41081570603734 +7742,-49.07561542059149,-54.226325344047495,-36.12555780419875,-37.149880106188284,-35.080783442817214 +7743,-48.73662708373505,-46.325590289423445,-45.40337511467498,-50.338707903151196,-43.627963462709104 +7744,-52.4536478355527,-47.132680117726274,-44.21096184229569,-51.83045962960723,-50.689624468227194 +7745,-45.18084482125922,-39.419653789436055,-51.326718180684,-38.148690616563066,-43.95590724589748 +7746,-42.50860212300186,-45.744544168354714,-56.386910662800055,-51.10410470804602,-40.457504432356714 +7747,-37.82401415094125,-47.426433393234184,-45.928476365427855,-62.55382569310531,-43.601139714149376 +7748,-53.40682358688057,-41.490885027710725,-54.47447348961865,-50.49897849696593,-50.43090945579318 +7749,-47.48202044203389,-51.63938781287084,-42.81385960495675,-61.739117137222046,-42.37884406076134 +7750,-51.62677609404802,-44.8876445312242,-51.25263839071582,-42.97244180461234,-51.07189240875902 +7751,-43.908605773523995,-37.83567063353901,-46.77739427974269,-44.59312922025875,-53.320106443549435 +7752,-50.10424495395243,-47.093623161431914,-49.206501095459686,-45.816727237569104,-46.02893108287822 +7753,-60.102875881304016,-48.55056371233736,-56.19899835590411,-38.26686820275665,-42.5179501786197 +7754,-41.18335421232653,-41.3340128929643,-56.279612146432186,-36.918750972183076,-42.11363919156946 +7755,-45.10535344720001,-60.598863966250896,-51.19318286685744,-47.664322288378976,-50.09806867500107 +7756,-46.71881279595433,-45.34786210615285,-37.99254399398131,-51.43963682443895,-43.22136303547216 +7757,-43.11659022470723,-39.793894298008496,-43.35231902064208,-44.230873969038704,-48.18251007561028 +7758,-41.505136875780565,-44.58525517640874,-52.7121361865862,-50.819929897352964,-48.653904385178144 +7759,-51.55884792214399,-45.905228031875566,-48.13457527367546,-49.393488052270555,-44.497836078121715 +7760,-40.0108361936198,-42.64640656741156,-34.01605599973944,-45.39770546339964,-43.55114702247754 +7761,-43.5590532752145,-48.286580190862736,-50.089884406677015,-43.50269590164207,-45.46200801607363 +7762,-38.8164662108921,-47.35302025231377,-46.73199752403068,-45.497885988636554,-49.0092311211392 +7763,-44.30011665104467,-50.277781917795245,-46.144311287424976,-50.08640332071952,-59.2287006408497 +7764,-52.84055943593828,-40.91732275561408,-44.05641327364209,-54.78557220087119,-40.0406147013925 +7765,-53.73097900864214,-49.43532762090691,-45.712675747206035,-49.14632612865343,-55.7388027571454 +7766,-41.92880209339311,-44.63007554290527,-50.35680627420132,-48.48362707449619,-50.59211292504091 +7767,-45.87634868552228,-45.044702150232204,-46.93676960936948,-52.812000243439385,-45.495906627286566 +7768,-51.43596112759786,-49.86931299315699,-41.23397992481416,-44.57411739065801,-44.662973159871314 +7769,-47.18880731245831,-44.868534045727515,-50.50625461784903,-50.64629751445295,-56.5897107768921 +7770,-38.78196943683169,-48.76807921510218,-49.69521707330749,-50.714564103165614,-49.94800935454891 +7771,-43.02106629444171,-52.35825716091425,-54.37388134991125,-56.34905721554546,-43.92558762645799 +7772,-48.88800445913303,-56.74878266708388,-44.41413484381945,-45.78523937596028,-48.37382418748101 +7773,-39.8403053787063,-47.79055108617937,-42.824312370428416,-37.55277775537534,-36.397561121047886 +7774,-44.96372012388622,-51.586324785988126,-45.37644182213542,-47.43881681569218,-53.31715712481429 +7775,-48.48415334197864,-39.18016146096543,-54.367150807984515,-52.81993913250176,-35.61681600331168 +7776,-42.12346117451366,-47.5607932560073,-43.26131010950345,-50.916837140446184,-48.7767523013151 +7777,-52.03741971697399,-48.410667792598396,-45.35477083782871,-52.236714968373605,-42.96639379992442 +7778,-49.032760764585056,-43.19348471850292,-57.603071228331075,-43.91103578867798,-46.014106160812226 +7779,-44.45253695707103,-43.689879639087835,-43.69528374572391,-50.4603152817405,-40.28353746954491 +7780,-42.07471414035236,-47.21507805990304,-53.74065268568339,-49.672430921917844,-52.65389951847137 +7781,-39.99252279318275,-53.867518736236654,-45.29886855553112,-40.82199002162879,-46.48403345176974 +7782,-54.96394367002848,-46.214631697458195,-46.539753107191366,-52.27719727837943,-53.41614187904722 +7783,-44.79906801819631,-44.99839438382038,-44.63172688837494,-53.50784312241808,-39.00017477645602 +7784,-47.61891645021331,-37.82359380058335,-44.96634234507904,-55.02140920018459,-53.78097105116213 +7785,-44.691040838069775,-44.63469574892611,-39.612569086877286,-55.63764533620485,-49.15451329883118 +7786,-48.138667496316806,-43.676876104960755,-46.292716960679314,-54.78653337147125,-48.43550668478049 +7787,-49.75230568415823,-47.08794318682683,-43.99148350600316,-44.38066474212048,-48.856074717280215 +7788,-45.173952452661574,-49.51685450895371,-46.52269584979308,-55.3774876186997,-43.02836697599724 +7789,-44.557303555682246,-50.328971088347544,-42.47229846385449,-61.790756089679576,-48.27283191019605 +7790,-41.271325074107764,-52.01052839747502,-41.963778788934775,-54.48006269485884,-48.51909641050011 +7791,-54.31665942242428,-44.23508206734828,-45.6843717391356,-43.928176133502845,-45.23079890455387 +7792,-47.89882441855215,-40.64402580314422,-39.39384082813427,-47.41324286856701,-48.46242085972068 +7793,-42.4747920995902,-43.42803149275057,-50.50302227974729,-42.459115776085454,-52.889411543553955 +7794,-38.25613813838071,-42.010216860305775,-47.70542959079328,-37.85629210895686,-49.07841982424037 +7795,-47.16474129086457,-40.67679843656157,-54.51471131418346,-51.659445254594175,-41.61292020457471 +7796,-40.27227085456676,-45.94532337866753,-46.214744345025466,-44.30471758327719,-44.40048431091182 +7797,-48.29854350904437,-59.07112059682234,-40.10789466148216,-42.99839718164381,-48.08274081333266 +7798,-45.22736887013464,-41.82619609933594,-56.61195892265943,-51.97068143103007,-60.439650332568455 +7799,-43.35685865250697,-40.06793570830907,-56.36484226760922,-48.21625857662826,-35.29355610076021 +7800,-43.96813321445852,-42.547863689641645,-43.01577634982696,-55.98496127906211,-38.01870576815932 +7801,-42.36081680565357,-39.463800453668306,-43.137558693617926,-43.75065294000713,-45.76037999633694 +7802,-48.555487519681314,-46.10538790027705,-50.95605612150231,-48.95218685710534,-40.007134757908325 +7803,-51.965036856473446,-54.43657730024107,-41.008353608213405,-49.572801034019825,-39.478810474138314 +7804,-42.48853574844397,-44.109874084781815,-61.28047125327797,-38.24497065730449,-41.4376869579503 +7805,-43.08831388278473,-48.737439617216204,-46.226364054655626,-53.65162207427187,-41.269322457357454 +7806,-38.0186642815397,-40.41313398123451,-49.062144853220495,-49.775274634010856,-57.44700037583659 +7807,-45.74026604185308,-51.28696788723471,-52.744343709580086,-42.43847221741114,-44.78825671310453 +7808,-44.55436889962451,-43.42962869723298,-47.12574326134842,-42.64346249204674,-52.39019026286566 +7809,-43.64541063249572,-48.36195995358514,-46.01448601477147,-42.01308003576267,-47.598031561704026 +7810,-45.723171097533346,-39.53744831109897,-49.118844397897995,-39.15469708202604,-46.692147588419544 +7811,-45.862391296114446,-46.4911210242926,-44.2206089699424,-47.44355518425539,-50.80054429836913 +7812,-50.74217817707133,-39.961431222621165,-45.96094600053157,-40.19964995587496,-41.46143376943957 +7813,-47.54297818147393,-49.52176543414456,-50.46610898975189,-54.5006203446485,-45.697446825870266 +7814,-45.29934827735462,-44.94429967599316,-41.73577845085553,-54.53850045307416,-48.73927967349466 +7815,-42.20674460041214,-42.593744534586,-55.917249465166556,-46.38808582603642,-48.57454225147903 +7816,-57.072262891937456,-42.36321814827669,-46.86875250961557,-47.782652109579764,-45.70009041683455 +7817,-40.51300364812282,-51.796333644712014,-40.16992717203889,-48.03414681874732,-46.78720424227788 +7818,-46.342096911057865,-38.937291533239446,-43.00107404317075,-58.305285266702796,-39.39993901740606 +7819,-42.95443297957448,-49.836210616445925,-59.05556442148732,-51.408638512250825,-48.531426714521814 +7820,-46.708756970414385,-50.82453197900611,-39.784978799671144,-41.65593310126913,-49.270568073990425 +7821,-38.43554734890037,-42.25506134969537,-46.37843278742078,-39.64722896364795,-49.01794791152836 +7822,-43.79598389563878,-39.422881362874065,-49.47418407062855,-42.73056029468636,-44.94969945585016 +7823,-49.64517813727697,-41.83098381019997,-48.303815918950114,-42.53940319248827,-42.84918467012516 +7824,-58.331193076409434,-42.9136473473061,-42.43823035031234,-43.971522034832944,-47.204241146642616 +7825,-39.15112024171575,-49.136163939614676,-40.24981430304308,-38.583417081748856,-46.876371561481214 +7826,-40.73486405820656,-40.163399176958315,-47.60070942716997,-46.2987681803999,-41.91962243991699 +7827,-44.32997318965171,-51.96052516971393,-48.52744782532471,-49.88839475033967,-44.99125331491591 +7828,-46.24327658421198,-56.30281834603775,-48.37771505255691,-41.5825826706751,-45.01385493814555 +7829,-45.91465949032894,-41.68384029721246,-44.85784148034746,-46.78284436071568,-46.801654541922986 +7830,-47.65263474442251,-44.214919097513004,-45.3988353343423,-47.61794378216514,-45.25937516563081 +7831,-41.40221146377384,-40.34379646880452,-47.85892451202593,-43.09292140030352,-45.047369202313405 +7832,-36.92457592872846,-41.246574838196146,-51.06180098115002,-41.23183508207098,-50.22320031038254 +7833,-47.68829023471478,-46.31445299545979,-56.57795502100695,-46.928110101540234,-38.29204984177385 +7834,-55.00222896665701,-50.461084082506964,-55.33103775807412,-47.03026227142136,-48.53847651022734 +7835,-45.838743735697676,-44.0101070459401,-39.704956433034376,-51.2086146260199,-53.031014889350786 +7836,-40.201021649984526,-47.79305602077043,-46.789608003936664,-48.23283974419686,-49.71260064255106 +7837,-41.70699999017442,-45.71256491508137,-41.761493650688024,-41.50297278442125,-46.7497926432882 +7838,-49.262685249217064,-42.813928164297316,-48.49532424811326,-43.04131007663169,-44.415891092201846 +7839,-43.37268594045739,-42.91690828283528,-53.18550560711971,-51.92423927670694,-43.39069187091355 +7840,-43.89980174085833,-52.26356376918689,-47.21166458682533,-49.78862554370506,-40.63725662211176 +7841,-39.72985081338497,-45.573907436020264,-49.95591487659953,-47.51231266707157,-41.51665625792997 +7842,-41.848265817393695,-50.957327903704346,-46.72433721408223,-41.991981401044754,-42.84844920741296 +7843,-42.901645930113226,-52.56534013501727,-37.82059130996377,-43.40773278212935,-44.141489215310784 +7844,-45.936011381411944,-40.314207364041245,-46.019837066242005,-46.72425564092076,-42.98562880546857 +7845,-50.269158193798106,-48.28237507674105,-43.01602470818342,-50.86625480369452,-46.486129538712746 +7846,-42.2542932615852,-47.296854728593374,-45.23887921884627,-53.87393951410805,-41.2139826365908 +7847,-38.080947570438916,-49.021677456840486,-44.80892993256347,-49.8446320292961,-52.46127828198741 +7848,-55.823654197149885,-45.237284550394826,-50.28337071083286,-37.76572120308631,-38.94449782698766 +7849,-40.207861789188584,-52.25667231174339,-47.530773242456014,-51.13730519610652,-56.85475031653149 +7850,-60.63991833818045,-36.320763853903316,-47.42060892909539,-49.19094573705291,-42.68213891044054 +7851,-51.67364743830608,-49.62864514690953,-43.419320442438796,-51.69759693584924,-35.01283964586833 +7852,-44.56796284410705,-48.15654982638171,-48.948793065185804,-45.06153189405979,-42.6481188876008 +7853,-44.887630128171566,-33.87252615067445,-43.5884679538238,-41.33470794297424,-44.29657986915481 +7854,-40.79175523427788,-39.77469386860017,-55.98995947928226,-40.95152212456811,-45.81234492794474 +7855,-66.04554757049043,-50.74969309528553,-46.80658203129397,-47.86332572047105,-47.08055436247014 +7856,-44.626215482682994,-44.58786291859203,-46.16532976840653,-50.03426157820767,-47.519572158178335 +7857,-49.63944239830686,-39.405207048606385,-44.459211439414226,-45.84752231183485,-43.14932137637446 +7858,-55.43325674399598,-56.90272754992484,-44.16193001032323,-44.32741301671999,-45.29870777441825 +7859,-42.58314480253298,-51.15757085809694,-54.17546611238156,-44.29466381852897,-49.80221721296187 +7860,-45.9190334054416,-52.00635922980466,-54.967921577501365,-48.04551968102612,-42.67277823765865 +7861,-43.61067856554167,-43.67064001702293,-44.46839362110283,-47.73428123030166,-50.25156734374755 +7862,-42.42380037209123,-45.79790164824329,-40.94771911674623,-52.98149265499013,-43.23605807899132 +7863,-47.263891954676126,-59.13979694324236,-54.708087765366514,-41.94132654214772,-44.097332877372146 +7864,-49.856396809087315,-47.085900292885704,-42.5644114065793,-47.24633150135239,-47.08008424085258 +7865,-48.90776564400324,-60.85307559720186,-50.3797399447173,-42.791556920322144,-49.160803987445554 +7866,-39.47268660559011,-45.331936791943285,-39.26966681209773,-41.87276831425005,-54.12396935788653 +7867,-44.61391364719084,-42.92845646525075,-56.49571223040675,-44.03973695827402,-48.79041168293356 +7868,-59.05740263162356,-54.15004656449125,-50.12012886142016,-51.4770335575957,-48.446814555306354 +7869,-43.033931434583785,-49.401807694183276,-45.2257997087541,-46.486015588805564,-40.27347849564634 +7870,-45.08776625810256,-44.25499144573338,-34.52993195669609,-52.14898376714409,-50.75400367444282 +7871,-42.68146414096672,-53.079090470467655,-44.4024050657616,-42.04050669950423,-40.67079247850685 +7872,-53.49343613178408,-42.92082083479324,-42.67242716395334,-52.16975857934139,-43.3718446975119 +7873,-36.52254907009388,-41.50432004992419,-53.09831033437695,-54.197893329320394,-50.79265441674749 +7874,-37.49284275058899,-42.31347591814749,-45.22868749175056,-42.42499410282218,-39.09954250056251 +7875,-53.07881720721736,-52.736637897514605,-46.953693465706486,-49.29772907247856,-35.504675914659344 +7876,-48.01641165961572,-43.75549328925308,-52.6445847599464,-51.7353667200094,-43.44768543862225 +7877,-43.209813126661196,-50.90898223148245,-42.63362825764179,-44.738677350081936,-50.81993034292211 +7878,-43.971920905972055,-41.57974021584788,-50.11605229366814,-41.59592031139707,-42.6749610777946 +7879,-51.44866608229198,-47.590819125731,-41.91945293905395,-41.841865799058574,-46.659319387002874 +7880,-37.01022140616951,-37.56895547808255,-37.85587871473163,-55.20515863209755,-51.072856780904395 +7881,-41.57880103868487,-44.23859695980166,-44.372470873197095,-52.23952567112609,-45.924731462272085 +7882,-37.003006000964724,-48.17281204191977,-37.63036002325192,-48.46436991986618,-51.72201365233895 +7883,-45.61398958756646,-37.14788715092474,-48.910968328877175,-48.05834614140195,-45.9626228292388 +7884,-51.02791336457222,-46.35172575520622,-45.76635130771538,-47.19364752075426,-44.13889236299058 +7885,-53.4165745981832,-41.99792925356869,-41.316357953063154,-50.555522693143104,-48.81299781441108 +7886,-52.47286562184408,-44.07999390522213,-38.855866262694136,-45.267418384447424,-51.42876755942867 +7887,-47.002326530385155,-40.676376298319205,-39.94966286654337,-56.32867208603751,-46.658870117311345 +7888,-46.88770093086677,-43.58985212811661,-42.75649560421194,-45.606202779203706,-47.93420120573802 +7889,-41.28837795266897,-53.130969921311724,-48.027946380292114,-49.677947126665934,-42.159080364684044 +7890,-40.093527604566546,-46.52743152570332,-41.95958883757629,-46.777190911851186,-52.992593523602444 +7891,-47.5376271041034,-47.50377746959988,-49.416142069713004,-45.47361518398402,-49.51628441033391 +7892,-39.6481400249023,-42.4773068064891,-44.211452320491745,-53.488440582218104,-51.02920449796343 +7893,-48.041046704260204,-43.73027662591724,-49.589772691295735,-44.38443375495515,-43.67800182490912 +7894,-47.64569500072322,-47.72475988695824,-41.05969215385374,-47.68389339466048,-50.43052024662638 +7895,-54.178937080561596,-52.32239602286003,-48.318500312509414,-49.629476990317954,-50.30533668846697 +7896,-37.367742906821796,-52.08578828252375,-47.566109546115065,-48.95243509340387,-51.876461516152624 +7897,-55.78547254253236,-47.492964574217126,-45.605432895431115,-45.58226630629995,-46.512888369962376 +7898,-49.83863793752062,-38.192121246538086,-50.55724707492497,-47.68208312177442,-51.40725290633132 +7899,-45.07676973454084,-42.50628195960913,-57.29884918652663,-45.165090991316454,-42.06174417928984 +7900,-39.7322035245716,-44.16025355314798,-36.28294129253965,-48.32523459912906,-47.14701030936259 +7901,-42.60478218271638,-36.833306817155865,-43.890466209313615,-50.56743828797978,-47.28165410582097 +7902,-55.013293605881785,-42.132016744443234,-50.08647035291863,-44.850322143115314,-41.49756253246543 +7903,-44.00097473633159,-39.39509527917039,-48.43191218694161,-37.6408172172195,-42.561445932964965 +7904,-43.510265294320284,-39.769960113271416,-38.316901335046396,-47.08821338945686,-42.42689728006019 +7905,-50.53335836236659,-48.498795985099356,-44.70802246158948,-52.50907099532905,-55.527611757119175 +7906,-42.88741995326717,-50.40142036579727,-54.911170260845346,-57.931670152647946,-44.87501159599515 +7907,-50.67425876082861,-46.76952097690514,-36.59079330248963,-49.22589269710036,-49.085313645651645 +7908,-48.607362226815155,-40.25391011175242,-45.84922528450021,-53.12769793493927,-43.50551805128802 +7909,-47.41059592053008,-43.24742878356245,-44.922621983714635,-53.20468750890817,-45.78402319385875 +7910,-43.69644158125441,-56.319862755638674,-45.15450209966285,-49.496050161122554,-43.15950781022016 +7911,-54.61553582352358,-41.69501711606747,-43.133723685106474,-41.55081969145255,-41.083964254498156 +7912,-45.991108884675796,-48.957633210204996,-45.85441420593424,-49.584438861507934,-50.82311636980709 +7913,-45.173863435246574,-43.64122820019485,-45.63409368373934,-51.728863768064755,-40.193716351581855 +7914,-54.191024535089404,-39.220010601312545,-44.14582691556526,-52.541259039556536,-37.797312866349365 +7915,-54.36735611528902,-49.197057551460304,-50.65844134452302,-49.86415015759785,-48.03650965059608 +7916,-45.92995816884917,-50.950411282855285,-43.4522796429813,-47.849176006993915,-49.5488062881755 +7917,-44.45575217480195,-40.15774473488484,-49.34724142963437,-48.540217369786895,-48.01147117263507 +7918,-42.787497323497476,-43.95938537165246,-48.30830952929562,-42.28312711592656,-42.78199744531078 +7919,-52.25028298173821,-51.13145596428448,-47.18196841000251,-50.1402753035978,-46.00919293648416 +7920,-43.64031743728839,-40.8294884389293,-50.8019457350617,-44.42305957462627,-38.101013142420776 +7921,-38.528094222146485,-46.53257046809758,-40.23883631491759,-51.33331719714498,-47.34765787452619 +7922,-49.79931492775182,-44.99007034724221,-38.68208543494412,-52.127842903209725,-47.760198442534005 +7923,-44.51107259720351,-43.15564607590557,-49.288516047115316,-52.231402162672744,-48.215856590365746 +7924,-41.94053800829412,-44.968268507775925,-41.13124408975774,-46.235805095240714,-48.207931925103686 +7925,-41.72720129322564,-39.81290531454792,-44.90320346868618,-51.62503878235868,-44.840770346984144 +7926,-39.07376247117186,-49.63972882628637,-37.88175781868508,-39.490784681165024,-45.09478628887828 +7927,-39.893572810408294,-45.902891762604035,-43.2259553304796,-51.24698591737993,-50.45809457500637 +7928,-45.11211076937331,-44.673247028762745,-52.24980320083731,-42.810009587175465,-48.943193302517564 +7929,-37.73553957212582,-41.639841311344924,-48.59839322458068,-53.5685285825412,-47.28597274223431 +7930,-41.19554143611674,-45.117336119719496,-44.86248714532356,-46.03409015900553,-40.95882375901504 +7931,-44.807417987268174,-44.112026661949095,-43.00298599465676,-44.0817930416404,-43.04987561243637 +7932,-51.98331751716239,-42.50737614013139,-46.79097756857248,-41.9875838155485,-51.07769284589908 +7933,-42.98256847327301,-42.88886581814298,-41.06281133175293,-45.784870334173156,-41.16133764770491 +7934,-50.697131725210504,-58.191876842966,-50.2820446628018,-49.582288242875585,-46.13912547958454 +7935,-43.85454955139557,-43.615116973987774,-48.47096854970444,-44.33999994154204,-45.89830858955489 +7936,-43.66077497364809,-46.35451217031721,-41.40331725223933,-44.131457323503014,-48.277614250054654 +7937,-50.3776293796965,-39.15523935872381,-47.40850051881369,-43.20762558802535,-50.73893794191117 +7938,-49.753724194836536,-40.90671984837958,-43.147069116487586,-42.57543123406447,-41.54151689165984 +7939,-44.351749867210806,-47.08745088124423,-49.202495130821944,-46.33843227700292,-45.83334403420494 +7940,-43.02382491569736,-41.757870014324894,-39.09970153936768,-45.232211882019946,-43.773564938180066 +7941,-38.56637734395694,-38.791390033598525,-42.619467391517574,-45.88924455789636,-49.295550733068815 +7942,-46.75283163862896,-48.79968621827605,-39.196981784127345,-49.98223099232296,-47.85974897578898 +7943,-59.11161855116378,-39.045253009123776,-48.712966724526964,-44.03197056205113,-45.384841813046755 +7944,-53.27705973621583,-45.95819870660171,-47.385603046744535,-54.41100596219619,-40.05440843586817 +7945,-42.034408630939176,-42.84855507816993,-45.91593066781263,-48.29036314486976,-36.954529905934855 +7946,-49.651238808692355,-44.235914553703346,-55.88876210568202,-56.53183953715934,-44.94144564860201 +7947,-46.14417399390502,-51.68005323264195,-36.06834489564724,-47.50927215237942,-42.41411609203796 +7948,-51.0365396897443,-45.08020042958054,-49.103261829348135,-46.85174908473895,-47.9995648314244 +7949,-48.057040400620345,-55.33577433644024,-47.75734364043025,-57.56422988347918,-43.35796414692781 +7950,-50.95849776685531,-51.93925763726966,-44.84842067161859,-55.96764484143171,-43.56800525571464 +7951,-50.897436450965955,-43.24096166650006,-48.403132334954826,-48.62792043280132,-43.78073191734064 +7952,-47.496562204901245,-41.26745626648299,-42.09135263662454,-49.20166777577225,-44.98188190666438 +7953,-42.878987882252794,-35.26187332453391,-46.66724386192815,-47.603047238589625,-56.10494733276274 +7954,-42.62353872705727,-53.1659764510885,-49.80402753644695,-51.379982192535664,-43.74334243629965 +7955,-49.4962403929163,-43.5620631025587,-45.67110606613231,-42.88767088380634,-47.016268712242194 +7956,-43.164990045052065,-48.27689994190725,-45.631227097105715,-48.02154010987261,-45.55430793894689 +7957,-48.21489788183428,-52.260025990281385,-54.83985829494564,-48.25056143823927,-43.6767673876249 +7958,-57.81959843654194,-43.493747551380444,-46.6699757396916,-47.84408164844357,-49.59430259327057 +7959,-43.81739501655277,-43.60292273418454,-40.13885858569399,-46.08903737933958,-49.220053277541965 +7960,-45.39684962297834,-50.6634961649843,-39.23109624685303,-48.90295605941145,-40.352037158971456 +7961,-49.10945883800021,-34.970723626046954,-47.42653902824913,-44.16131395547704,-51.77404005858846 +7962,-44.58154218168344,-43.02993330372785,-44.253097962973264,-47.16958653716443,-44.12680755048184 +7963,-43.3901201446576,-44.394070161692866,-39.636957229023274,-50.55670476208576,-46.4042201598089 +7964,-48.42097257183143,-43.860767052435065,-45.02235679801174,-43.33454070619954,-40.579193430431054 +7965,-57.67684503749618,-38.80702355388944,-49.269932950537616,-52.750338644553125,-46.75832513845789 +7966,-45.91670793618795,-55.81587647258136,-45.30859471340637,-50.948926211542535,-45.99389875877359 +7967,-52.043713103024515,-40.51596712401048,-42.0803661696235,-47.51666975940613,-43.407327060964555 +7968,-43.558568214301474,-45.92872542696387,-43.75384387592908,-54.55885514364027,-46.47628508378313 +7969,-40.21587967991834,-37.41529572754259,-53.37960331446681,-41.81905549932107,-43.48239240084413 +7970,-41.76054115401147,-50.03868972306072,-44.960747966255234,-53.56577997085473,-49.035580008165994 +7971,-52.98911692380638,-44.12037161093964,-51.292549551852346,-46.94675128811584,-47.01219110507227 +7972,-39.28202902951171,-56.1785994611955,-39.981779271726836,-47.98737733537328,-57.76924242724727 +7973,-45.287819575123024,-45.89997050199315,-52.922830119176176,-46.6761357105645,-46.46551548015123 +7974,-54.01081800074767,-45.41177547229419,-38.29197095094513,-44.259010093470444,-45.126553471492414 +7975,-47.46752241766597,-46.65763305746254,-49.22730473663243,-47.423996141026,-49.675482329312 +7976,-46.800230805798975,-48.88134935362051,-38.891742301777875,-42.95732536437544,-50.06824734441781 +7977,-55.31230493269709,-47.03926398074444,-38.50568389515275,-44.02841028970944,-45.3994892899377 +7978,-51.196249261119746,-36.284814106123065,-47.9721321076673,-41.01841372797697,-50.00747172222218 +7979,-48.53059176335161,-37.41396565854844,-56.18422917154755,-40.90056105681599,-49.645318496699865 +7980,-53.55096361534702,-45.309288725417595,-45.676354777363215,-43.84795549349304,-49.65520918239083 +7981,-51.92084589060325,-48.86729134147984,-53.66830562193749,-44.085009924808624,-54.33551552620853 +7982,-40.59267104113587,-55.586759301244314,-44.372282314640685,-41.84056284846966,-44.69466527812483 +7983,-36.27584585010082,-54.03294646747738,-50.38539724573447,-51.373075728781366,-41.867643315729936 +7984,-43.38993559723835,-37.332584877339166,-47.92749391029433,-52.98112430314006,-46.56625984382423 +7985,-43.09753807272841,-49.0650893701073,-42.46817712515147,-58.36352809676313,-44.56367830737932 +7986,-47.36316370717919,-47.646693057310344,-50.85280116883919,-44.38931628733477,-43.15305280653559 +7987,-55.42117637402312,-42.31694555801075,-48.273692907062305,-51.48008814180872,-43.07156712005962 +7988,-41.73825251944247,-49.17181928923569,-58.52895783242148,-39.85306735386715,-52.94838821114879 +7989,-49.500302388267755,-37.56719652902265,-44.88881557490715,-55.64705435320397,-38.01400787758726 +7990,-47.33482544940611,-50.041910538248466,-49.85878905507938,-46.99185636333931,-36.66502668346428 +7991,-44.72123300888562,-43.95098776989697,-45.054127401912226,-51.50395864673516,-47.19250225792644 +7992,-53.76082140311357,-39.50034403012197,-48.35584945454294,-45.83186969027713,-36.335671582973546 +7993,-43.99696617912027,-45.11068617280689,-50.58945302233007,-49.69329323988393,-50.62383712912148 +7994,-44.564083175572435,-45.50044056006798,-51.409313499093045,-50.41859216832106,-45.06731475114308 +7995,-52.24875804987129,-57.00748099907664,-47.72748327349262,-59.926495284385076,-41.78455685410992 +7996,-52.429081697203365,-44.90101582921429,-38.383328189890356,-43.92841951013338,-42.5914759984944 +7997,-45.53691431383587,-53.67974099812902,-44.01425366605656,-56.10313621643491,-45.868624340920796 +7998,-48.98401543648473,-55.15833426130192,-54.701651503947005,-51.871324087821385,-40.823992425766214 +7999,-51.859266519249005,-46.983871002885195,-50.45318182029073,-52.172944204907175,-57.108818338088824 +8000,-44.1181373078407,-45.77759037967323,-42.70290458275222,-48.165955191294344,-42.01576665889131 +8001,-43.16237059016296,-38.053399231632504,-48.45772382897353,-53.835539210907456,-48.030499411089686 +8002,-48.15696171209827,-47.340451944789585,-58.22476770385589,-52.68427584237578,-44.51111554374222 +8003,-43.70934885915199,-40.37816375591682,-44.22866986948442,-49.49940212655191,-45.94164054741798 +8004,-38.51517039178784,-47.06630827325282,-45.52267870444963,-53.28259545290091,-48.872061369540965 +8005,-46.592412678192126,-40.60543701930301,-48.33461523982398,-42.016044322297105,-51.165658147186456 +8006,-36.61918490406837,-42.478264939763534,-45.268639965162265,-49.51568227844934,-54.81668975383403 +8007,-43.15674761890487,-50.55644493487194,-47.436509620501226,-51.90180314969925,-47.918577508776565 +8008,-48.49593891468972,-50.24114602881212,-47.733596303729996,-54.1775105351938,-41.620444652923275 +8009,-43.46147990408663,-43.08810658131287,-42.179277911513786,-48.9497884334852,-50.71172135504585 +8010,-48.910858726754036,-40.722428417426265,-47.55000716559189,-50.077170897298316,-54.06434643584597 +8011,-38.381551419151336,-45.89439257997924,-48.667048354433106,-47.48437211511103,-45.17644278957053 +8012,-45.76556877040743,-45.48612390224406,-46.950761426283485,-40.02014020218478,-45.784979009856755 +8013,-48.042829280328874,-47.390141439291185,-43.747620342977754,-55.70519263396395,-53.24485527816691 +8014,-43.90736009713362,-44.05283282682238,-49.69110236242701,-47.517227812020955,-57.31555899694097 +8015,-44.91647844023105,-42.605305899148014,-45.94216397033416,-53.59415140579715,-50.29919738621988 +8016,-47.67501030523294,-43.43789728087334,-42.184393868209305,-42.338375890484976,-50.51718818629751 +8017,-37.763621542062396,-41.388693012244985,-47.58659754232269,-54.90457756927552,-35.10964025667795 +8018,-46.98302536586934,-42.393452887007385,-53.95006592595963,-51.26829154784999,-45.39643026887461 +8019,-38.73573538844982,-48.15273483626669,-45.98241524315581,-52.02865765797966,-37.957396217926856 +8020,-41.25300769281256,-51.28028797504896,-43.92370025250543,-45.10940353348436,-43.97247559567305 +8021,-50.031567705983576,-41.918655263200165,-50.95049454018096,-46.55358061132081,-48.8054203581959 +8022,-39.892159063789244,-45.61417365374345,-47.93330796139596,-46.78616565139676,-46.18059556690189 +8023,-52.64187561131092,-51.18895000524484,-42.83865045226897,-47.773576889364854,-43.79266784956248 +8024,-40.92853596564414,-42.65489393243201,-46.63935879637968,-56.1955272992377,-54.39032468776468 +8025,-40.28137678308648,-45.25664799549648,-42.74988638434306,-46.08254888925616,-51.05182155799121 +8026,-42.192688701412685,-54.334290038770774,-41.298709524151825,-38.48670198184547,-41.592530657110515 +8027,-45.90897885230344,-48.00868947849038,-42.712728008057915,-44.18404811259285,-40.531298884435124 +8028,-40.781138394676965,-46.34778875913104,-41.802368416159574,-42.67644081077795,-43.19708246459597 +8029,-46.0159794832131,-38.52899614011464,-59.23084711776614,-52.812648617356345,-43.895854822609394 +8030,-50.80461110440419,-38.91438593868694,-43.315755517078856,-47.89270604567854,-38.138436404703356 +8031,-40.53413985871708,-44.29557885312756,-48.21688369038666,-42.21019277914868,-42.22310929314659 +8032,-44.90514157124235,-55.08723625853324,-53.8248949137942,-42.64346051602877,-51.67103625243919 +8033,-56.09139933308296,-46.05498403883602,-51.182881191409486,-42.35688100941521,-43.9581015435107 +8034,-48.04616089219292,-46.80960237729963,-52.95256729015706,-54.6843401669253,-44.37353899020226 +8035,-50.912077567756846,-48.95137763367112,-44.07878326563801,-47.18452892624606,-43.63943030612644 +8036,-46.06177642292381,-49.250233372048314,-45.77481646325803,-44.70410383833176,-37.191587608849424 +8037,-44.12344107770292,-51.92204535240974,-48.59964606102814,-45.46814866617132,-43.35738976734053 +8038,-52.20180374798236,-43.79762897816393,-50.69398607157497,-47.2113052732661,-35.55176941741079 +8039,-43.59586121343407,-40.19654549873222,-46.53421761446229,-41.51683918668191,-39.29778607362267 +8040,-48.53576835808106,-47.78206769974898,-56.731449081661,-47.96911786101548,-48.72068171620643 +8041,-43.372158439267714,-46.13799443012809,-56.89569415532414,-40.833014298656295,-42.499244154309864 +8042,-47.69792178309208,-48.48501495333921,-45.08862956395331,-37.665885261008526,-46.57163125658294 +8043,-42.699704990203756,-47.803154328141815,-57.51613190735519,-45.21883062976594,-51.69029728060077 +8044,-46.25365714362743,-48.21345982692321,-41.019517924831405,-45.95785110641695,-48.198797999574396 +8045,-46.064890874370015,-36.62361264074976,-43.17470063663772,-46.43993521538058,-45.749984100367286 +8046,-44.60698962064162,-42.510905139980906,-46.272472371127925,-47.170932484196186,-46.38726527943705 +8047,-44.23128766268296,-47.30161624926385,-54.644731373986744,-39.9969813740591,-50.139303624052886 +8048,-49.90783850715665,-51.096682615910574,-45.90244531946501,-47.44310520179948,-50.92181004857254 +8049,-38.98679463338484,-50.360188128149275,-53.50204168579928,-48.14031536173275,-43.64413678113885 +8050,-55.84968974677491,-47.95135213390601,-48.55582798546502,-53.27123359441581,-39.47229661217913 +8051,-42.43291292819122,-53.5928461957031,-55.226772212626,-43.15783403249335,-43.05910119777798 +8052,-42.10461854664771,-52.770867106199105,-44.54058012027138,-44.16674309188332,-51.34817497323295 +8053,-44.25708636469796,-44.39444690789975,-48.91642043569626,-43.07013818168749,-42.362652708534156 +8054,-47.45410389712122,-41.55668253566958,-42.17063611424081,-55.69256828834281,-46.37866027734986 +8055,-43.789684336135124,-45.85394427792806,-48.275331433099275,-47.31105359458434,-52.188389109864914 +8056,-54.12874481467519,-43.242133662067744,-49.33435336494429,-38.53250220660043,-51.168192386066764 +8057,-39.751964925640436,-49.306509063865086,-48.03910157594733,-51.053009166671885,-49.2205611249011 +8058,-47.4742664062209,-43.298177465810845,-45.66904568835345,-48.386155816311444,-41.288844723994124 +8059,-42.15576038877752,-42.201717371169536,-48.51629254847914,-41.13066121400055,-42.35377633002241 +8060,-46.74537991838969,-46.043695135967766,-47.89751589375666,-45.56981383592423,-59.42873020002839 +8061,-44.39309993782167,-50.678258308752376,-44.2335056400247,-50.61226036918955,-39.72647710275854 +8062,-51.70378419004371,-42.68984005664246,-39.6206522627384,-53.81255855801423,-49.50541640474231 +8063,-57.43238024073325,-47.72527245057921,-45.20362953500591,-46.42207005851689,-38.8961930079509 +8064,-52.18635478744392,-49.0123933996419,-47.18851554838594,-52.82280819854694,-42.537552700947415 +8065,-50.14413692147075,-42.65002247666403,-37.79375072475143,-48.036090642239685,-45.703299552651636 +8066,-41.80296398743687,-43.76080822793902,-49.67448177545717,-38.46215801254691,-38.583795484760074 +8067,-52.37166964863394,-47.0216670684777,-48.37234107752553,-53.25553812545143,-44.57294340728849 +8068,-54.455116301588646,-40.41379717414381,-45.78902693904754,-51.68505085567065,-45.97969955554248 +8069,-41.61651051677396,-45.08395935665785,-52.2961927034783,-45.83866708170706,-49.92812704369191 +8070,-56.47294719818691,-49.057092408556,-50.24016365207739,-46.25340937409058,-48.03157496215923 +8071,-46.12347514664938,-38.89392614567298,-45.60803791176406,-49.16172497449439,-53.05150609423399 +8072,-42.84685017695172,-43.334063672479175,-48.1869787857649,-56.05626822769419,-39.115722664987224 +8073,-48.230553900452726,-48.89574526236675,-42.09766061202971,-47.74268239739881,-48.890340262129314 +8074,-49.55302176862712,-46.22992394017285,-44.5525409510086,-40.6212507356266,-50.38477740475286 +8075,-50.22938872307762,-43.62467557165543,-39.386834840137496,-44.73630453065845,-49.964640115805416 +8076,-40.58956647610863,-50.471173117502325,-46.128516371899885,-48.87127143224361,-42.36684390547489 +8077,-41.37395580663727,-49.53858520611088,-39.87213614247265,-49.35849503916318,-50.81128149984304 +8078,-52.07037591984995,-51.32066076194061,-38.66846094198058,-48.06007016367926,-49.522356520561885 +8079,-46.44347305533978,-43.38863240834128,-49.813399839191845,-39.51107156782772,-48.45254619863809 +8080,-53.51021430832997,-40.261446964887895,-45.6193207366771,-42.17609437571194,-45.34216722812722 +8081,-43.75068393686743,-36.386657288065,-51.25696725211392,-47.179340162478475,-52.4979325804313 +8082,-39.46808562864764,-44.71212692100424,-50.14538622193219,-44.218576438709135,-50.55545872603396 +8083,-40.28913527683576,-48.20884719003572,-42.15287661749386,-44.8850213153129,-53.73966393701749 +8084,-44.678718185723184,-47.52485353968279,-40.582643961589206,-41.524251856376516,-45.27295866282928 +8085,-46.282824998063894,-49.123769621870274,-46.30869903122618,-45.57253398495304,-44.35415483894038 +8086,-50.36784648190474,-55.43535211205831,-39.69950813316707,-38.941061787781365,-46.418841965764834 +8087,-44.00951034811558,-42.392993772725035,-48.316529775177486,-40.71787542463362,-48.75705743634061 +8088,-42.399564389637796,-44.411237137534314,-49.33165477421217,-54.65862915271,-39.90942129261668 +8089,-39.54974005468692,-42.64246169892171,-44.35402038205156,-54.887979516417914,-39.85526245952536 +8090,-57.19880309638617,-50.36578207908015,-41.31757312326212,-47.44182091233037,-47.5492254903793 +8091,-51.791878203357214,-44.58946172500231,-49.88049124947067,-42.0727616337457,-48.40455393039295 +8092,-45.60825600273178,-39.94392998270767,-47.015778393426345,-41.28085866839028,-53.30722095915597 +8093,-47.8665177245888,-40.70291973204563,-42.80597129392595,-43.98785706346136,-45.892529495247274 +8094,-49.06362680455734,-48.447066883465254,-45.84046136258471,-45.2569905678317,-46.6561104798174 +8095,-45.27096930756656,-47.393907269261526,-50.84476924363105,-45.40042773025573,-49.216014585734044 +8096,-40.593424896461414,-47.617007793940935,-46.26454931944985,-49.07190007090657,-45.214091336111906 +8097,-45.34184814597796,-41.63815019214963,-39.32255247911165,-44.94094955121871,-46.61739291041803 +8098,-42.78975911693975,-39.34916353452085,-46.089767404066,-37.926524376617856,-47.33247584659003 +8099,-42.07630081135447,-47.707780953812076,-46.26343896034607,-42.9683121005674,-53.17463036916531 +8100,-46.56724808205938,-46.44946565779596,-47.98323393764526,-46.54692195889147,-45.14784740890767 +8101,-43.92165298195406,-56.483038330124764,-51.866333642061875,-43.956334412715194,-50.15582326493094 +8102,-49.27613021579851,-49.91674135535077,-49.68834269569526,-45.82619840230901,-46.61266477407862 +8103,-46.006710105265356,-43.990541296961084,-43.69321515492721,-53.85942871341056,-43.37142367062338 +8104,-46.811137572974665,-45.237202407396694,-44.682087292321185,-48.34745097660764,-42.45436612622107 +8105,-57.066661758465514,-52.595697833186996,-37.694124488065526,-55.79294670366472,-39.63427568356942 +8106,-39.170339548705016,-55.69196300306995,-41.25640158613038,-49.163752111253444,-50.43685957524142 +8107,-55.925360360858356,-48.14704448684768,-48.28811949093002,-47.82676422664997,-44.144627911568456 +8108,-53.87569851300756,-45.7348828717029,-50.671444953993436,-49.81836584109582,-51.23761580645443 +8109,-40.81529075871732,-40.809358077722706,-43.40126998394259,-42.748647530314216,-45.60730564350477 +8110,-41.79172274615369,-52.790782048759716,-50.93286348062258,-47.1569704726756,-40.85521147189758 +8111,-50.816310801663235,-39.72207443880141,-44.70244249380657,-48.93797010452022,-47.4540686525046 +8112,-41.45039538740069,-39.831668207743284,-51.59683979414093,-50.04853942979887,-54.15873548226818 +8113,-48.33787470152859,-40.43805164332051,-44.497801073292685,-42.15497015916298,-45.622263329987916 +8114,-40.07044446006959,-44.073438400154366,-43.35597795822255,-42.829778295934815,-39.723425682958805 +8115,-44.20848542926721,-44.497165496960385,-52.68853062632076,-51.24075894309296,-43.9981613268402 +8116,-49.3308284447238,-44.0387224862601,-45.68752434608134,-43.9593186931844,-41.70409723990223 +8117,-50.08486345392593,-46.04444543191018,-50.70314422532192,-45.393394901628554,-46.13619566537664 +8118,-52.46367071430889,-36.23408160072146,-52.36062426833591,-38.66968534300622,-48.89678373330146 +8119,-48.70809705349896,-45.80412711463438,-35.649562969673795,-46.29563063727443,-44.557350234856344 +8120,-41.94343500499637,-48.73568129313231,-49.261918498079005,-49.14581904675376,-47.48081071006064 +8121,-50.65598576463951,-35.38529966912678,-48.16692508022886,-48.24402910832675,-41.9743673870147 +8122,-47.10061456295819,-48.779350960186804,-39.79143508657006,-37.15815142436426,-59.84462160782991 +8123,-42.12051528102487,-45.46548823591008,-47.923087152491696,-45.277483501342275,-37.72131530452297 +8124,-45.41474341144485,-49.386039655189194,-46.954958483760585,-45.01951475864218,-37.55716930560437 +8125,-53.847180177829216,-38.47855349976173,-46.48132047883573,-46.576102067657715,-46.4755269510588 +8126,-45.422455452578944,-49.51067075969185,-39.691337569756115,-51.610124962083965,-38.309062055756485 +8127,-49.13983407321907,-49.986773886874765,-43.940061226261996,-46.61186589670497,-42.14086578661025 +8128,-43.30062367137045,-37.48939359055407,-42.024550751408995,-37.092185575274655,-46.2266669859805 +8129,-35.43492425695562,-38.67813759232182,-40.973507574611034,-46.43645415843111,-40.33694577668401 +8130,-53.64947835807562,-35.65740026373064,-46.45799063857959,-46.83628547522394,-42.808186762887594 +8131,-48.263483478275155,-51.63522405197215,-55.49137282424734,-49.69264455119126,-44.384838974333306 +8132,-55.77146944824886,-41.72004812669875,-38.47746279672789,-48.90262052033434,-48.20199019273547 +8133,-48.74096443679635,-47.834640531951564,-46.683973335669585,-40.210096130218766,-45.00340384658238 +8134,-38.51857699719334,-45.714061593237986,-42.776361128905265,-44.703405547346286,-50.12908202429812 +8135,-48.09677797855703,-44.123629034880096,-42.3350618184631,-44.795802032284044,-39.65073867946757 +8136,-52.39943616007576,-40.76280546359961,-46.055651518360186,-45.69042508520778,-49.12810129413423 +8137,-46.96901174312567,-43.57404763544293,-48.222695799764544,-43.916128902192334,-52.203908516024825 +8138,-48.7745863235388,-37.64904655251237,-43.76996290569896,-57.85257655826855,-42.79137245845119 +8139,-42.31387385951722,-50.838368352274756,-39.32730026349336,-46.18283836998323,-47.984219847802734 +8140,-45.08886086766767,-55.66532652230439,-49.538345051378464,-60.09594570192207,-46.50482261454473 +8141,-53.39943554486605,-49.33831382835166,-39.93988755719454,-42.01143370328023,-48.20067599805864 +8142,-41.48761854964916,-55.45748059710484,-49.10421477931256,-55.57536596837144,-49.808688601027484 +8143,-43.867472104427264,-45.83993311292063,-43.04119615525109,-46.51793108505153,-42.0284539001071 +8144,-42.40378577626312,-51.231646526862846,-48.605094381937434,-52.83376627204121,-36.373782884832266 +8145,-45.334814225442635,-43.677938168934,-50.933379016472564,-49.2747611050734,-41.66062409381731 +8146,-48.150771291647196,-47.75424487472025,-50.45821358142616,-43.29574154150003,-40.87901115976794 +8147,-42.72961226439473,-48.28908391715808,-43.678493078703546,-44.31369387802775,-47.91833170786797 +8148,-56.54298851929319,-44.82216639558989,-49.94982940789236,-45.300934331082566,-53.42596457975071 +8149,-49.61003645824379,-45.685200865134,-44.32535002355267,-51.31284546681111,-40.410636613820664 +8150,-49.380246826480814,-42.67441506996265,-45.9390636508868,-45.34595989075459,-37.75237461154317 +8151,-46.36255683610157,-44.496144443269046,-42.34608666511574,-43.450651866656656,-46.20442045962759 +8152,-54.28756271104864,-41.65718722961613,-38.83915148516078,-41.71659219360096,-47.19921097650445 +8153,-51.630273367388995,-51.17934835919856,-43.173393329016655,-58.97181325570475,-44.54189123595313 +8154,-45.52897378842501,-44.65043172709029,-43.71989129899795,-40.94755512337431,-37.41418497161041 +8155,-44.86287606996518,-43.77627425739012,-44.71127484266302,-44.06435175898407,-43.96413245188591 +8156,-41.10033441702497,-43.37143247138689,-39.88200093960625,-43.71202960893924,-48.0144451281122 +8157,-45.98424071387635,-41.479904695092756,-54.12805413965885,-39.62786417423212,-48.20568330755687 +8158,-45.61014777119148,-39.892070473435496,-45.38935080093337,-51.63333135438621,-46.74301012731823 +8159,-45.894989650409855,-46.860079044699404,-44.332550646356715,-49.511336977678376,-45.671840946330015 +8160,-41.6343234306808,-52.83427992349564,-40.90566907208857,-46.843680118540675,-42.103301567180786 +8161,-50.62230972771388,-51.0408574386678,-45.11331255229891,-47.36158167190969,-38.63983951761217 +8162,-48.87506521016062,-44.62698918479411,-51.18606925842076,-48.24247319047577,-39.55485746030887 +8163,-41.00610661434514,-47.505852387772315,-42.634855648858576,-47.40102802264121,-42.31976883800309 +8164,-47.47700080508664,-44.96049154644086,-45.36588316793714,-46.98431578151641,-44.513312261220044 +8165,-44.37396348356902,-50.55986449833945,-46.73465842972753,-49.326456698493296,-41.932246102010495 +8166,-39.98563273412862,-44.531472516079894,-49.90021195482563,-40.19944728595895,-51.15511091782183 +8167,-52.73951884330041,-42.9719185041666,-54.03752436160925,-37.405452302502404,-47.400190386262906 +8168,-49.26668719420048,-54.085519185761186,-49.039360657321325,-55.50679687154754,-44.088167589866316 +8169,-45.07910914890849,-36.65867176634256,-45.759234092457206,-40.87311653090941,-41.48306686173942 +8170,-47.39703909710224,-47.29778104344086,-43.493351523720314,-45.8608423051819,-45.21478825863295 +8171,-46.989774200891524,-53.9696215767398,-47.926731902633435,-38.05321888321988,-42.18133516989436 +8172,-44.56094055163473,-44.87262024620376,-55.057757418191564,-51.394782219134065,-39.53354344704071 +8173,-52.8234005006922,-49.29364045207239,-44.38558329699711,-36.294064427633295,-40.8569943523082 +8174,-58.08157004349454,-46.23511114902492,-46.61432203350797,-37.191645572081434,-41.171171870071234 +8175,-44.165820287908375,-39.148355441266084,-46.93864476392118,-55.4486392149506,-46.546855293077456 +8176,-44.09869251068713,-44.275150146439344,-41.44456749370314,-56.6566686986481,-45.539048003623655 +8177,-48.11326686083936,-49.83076451821846,-40.47635105137337,-44.6582109008315,-41.46574373641057 +8178,-44.87403054488534,-39.50089831364381,-41.62504300056212,-44.964787973742396,-40.544332660803846 +8179,-41.689722191767835,-45.05823338503763,-48.554184779939014,-40.6256424834276,-44.048745560987065 +8180,-48.29660442672225,-45.50988363808051,-41.7008675390534,-49.88605611182786,-50.484643377366794 +8181,-41.86371609309256,-41.459947862557144,-41.66901793962776,-47.881918394380044,-38.732840676099435 +8182,-40.099735863906176,-49.580180283848115,-52.18846425839588,-42.84382897570275,-48.18462004192774 +8183,-46.76598218340691,-44.62274037886259,-51.09758885255125,-35.8121380121143,-42.05010949035555 +8184,-57.86964370964195,-49.24412806718387,-46.58399908052649,-49.11642311331798,-40.43953594869884 +8185,-39.128274293143065,-41.936130786987135,-45.73243632655947,-48.63706428888515,-45.33078864731015 +8186,-40.07211231756521,-43.85440622813928,-44.68324783574107,-41.636607231668194,-55.824957634041894 +8187,-40.8485253767167,-41.17273768247643,-45.669368151933874,-49.406041981821964,-47.46115216793924 +8188,-53.37554018293033,-49.94752202429394,-49.7556111551607,-36.38461544689316,-40.79741177498261 +8189,-43.22605653490256,-50.91429207257014,-42.72678564818292,-45.660626600187584,-58.36376839542307 +8190,-55.3847862045279,-42.677330637301026,-45.5575377262465,-51.41919016234749,-52.74607655778714 +8191,-46.67192845814203,-42.533284897747905,-44.84463236506214,-46.3932171081392,-49.13336549931 +8192,-46.41750189355832,-43.62098948480912,-49.06106778217108,-49.954376958672015,-45.875924646079476 +8193,-51.77270199731426,-40.0987758312297,-42.98151495459261,-49.580537829287906,-58.31450446661943 +8194,-48.16431825027684,-44.85686533120183,-43.63623418208535,-39.51884307759211,-49.80055014322638 +8195,-50.955131718868074,-42.421911807479226,-45.39266439913504,-41.728679340816974,-52.73261328229346 +8196,-43.11505906143797,-50.17230486365154,-47.1318306807369,-36.644525861576334,-45.289463687421986 +8197,-46.23859365468827,-47.66931841448574,-46.390267704371965,-50.52093086919012,-41.180253622909184 +8198,-44.5804944624304,-42.04463697995264,-48.02614591407188,-50.87677641375238,-47.822116894204626 +8199,-42.57346217326698,-43.89416427479061,-46.292943870509646,-48.068991743986,-51.54834511970131 +8200,-53.424599863928066,-48.61336516791136,-37.84986797138636,-48.50698761995957,-41.90998470384038 +8201,-48.01311273659549,-47.9751108822188,-47.824476850299874,-47.265950429277645,-42.56290364538472 +8202,-44.293428781269625,-42.14596464176152,-50.59285001441589,-38.15905427142272,-40.712332422424886 +8203,-42.24669507543191,-50.1675266914683,-46.92608646204448,-47.18605396242422,-44.147140303133504 +8204,-40.98006391039897,-52.15258244736454,-42.28880552742103,-46.54307465194425,-39.61844844253445 +8205,-44.48931156601162,-48.975068834066896,-43.022956131927515,-53.93720626690848,-50.90652282745529 +8206,-46.072969172603976,-43.237086830779134,-41.644829748117445,-44.60448650839817,-40.84553649313988 +8207,-45.5940284061989,-43.19903996275949,-44.977459917217864,-40.543336531000804,-47.52829973650414 +8208,-46.57885962850481,-53.37231535686083,-48.82619779987449,-57.3117205203741,-40.893393035031316 +8209,-46.34708842184188,-50.75355045632015,-46.93370510932087,-47.2681014537335,-50.45893800111963 +8210,-48.787294582295566,-44.44150620328535,-48.68943883046458,-49.15517737183602,-54.72262463395025 +8211,-42.18644698974339,-44.99408067755349,-45.17608744916782,-43.37537230875761,-49.05115065988411 +8212,-52.83097826042958,-51.48078585026232,-42.29953057107885,-44.961651457282336,-46.213907394201065 +8213,-50.67814794358416,-52.1820307916838,-45.46767769812821,-41.547841622158074,-42.55501185858714 +8214,-53.432550619525436,-49.86800672366921,-54.920563729175484,-43.947144802558206,-51.821360789567024 +8215,-48.00376483732502,-48.78032019590931,-50.254149828195374,-50.51822110818688,-46.71124331905675 +8216,-44.12422315815488,-45.17964692030954,-54.915615910246565,-45.73177307878725,-33.21651843588674 +8217,-50.001571138516944,-43.05392927526374,-45.23308098666794,-47.449539025582055,-46.246539744588866 +8218,-42.23944445718294,-40.070733342071385,-49.33763706176836,-41.43512555020907,-44.06748446170314 +8219,-43.19475229313539,-47.896035101535496,-48.08404065746544,-49.80715618384742,-47.4289310017192 +8220,-47.935532244853064,-52.68060910268346,-44.11174070789866,-52.326255764767815,-34.326948652858306 +8221,-58.95379152173339,-41.46196589930551,-38.754303302878846,-52.899367750523616,-53.893316173269845 +8222,-44.81668998864126,-42.368369448534054,-52.30512887094324,-43.25745486362762,-43.966718904302255 +8223,-45.11469777547585,-37.28742256524152,-46.79321086654775,-58.53800077253358,-30.350050337421493 +8224,-53.39721054864669,-39.65827088237272,-46.1690847733396,-42.61835512394736,-43.60760733100484 +8225,-39.00142522503303,-46.34877990176417,-37.87860432369225,-49.55779443255016,-42.276847097429005 +8226,-40.12090128553848,-43.06447272848001,-53.03661396161412,-50.043684636754506,-38.318979363425264 +8227,-52.35984591271716,-42.73007318792718,-45.88328255269783,-40.64890824425811,-43.238297424579784 +8228,-47.533519720472825,-43.06810813229781,-41.56923978305949,-45.94645964996787,-48.61355511612296 +8229,-43.759018908961544,-41.07078063176901,-44.3576862188149,-45.4228670493358,-48.30778028729826 +8230,-43.45137872700498,-43.18291588689989,-48.25136713329224,-49.357513844435516,-47.34891403050648 +8231,-46.15736741910316,-47.239197295580524,-42.283633378186494,-52.18597700374576,-46.48504857444846 +8232,-45.303415215747386,-43.07433200745492,-46.0505504396924,-41.962394568893025,-45.190420371176494 +8233,-43.34175820182758,-53.08891198237092,-43.865965541873784,-38.75492621793707,-50.98031666727667 +8234,-50.13809853431668,-54.74950499668211,-37.556523701194486,-42.133165219131435,-48.79729818195797 +8235,-39.45983775318799,-46.888948675348665,-49.81815007453377,-39.937172276427624,-44.181993473318194 +8236,-44.2670898389904,-45.47546410968559,-44.575700398833455,-52.054025244827955,-48.79489761402302 +8237,-45.35971090884281,-42.82114260000533,-48.19217277042539,-42.13932913364803,-44.819450386776445 +8238,-47.46813624363441,-57.163161499537615,-53.471263265987815,-59.42516965861097,-51.60639255071012 +8239,-46.010947803838285,-42.14627609488102,-41.549227443668656,-39.451612865121355,-51.08622435317731 +8240,-49.556282409918715,-51.14250256535964,-42.24984080071827,-45.740233689421316,-46.116769819029265 +8241,-44.42908567704634,-53.616481572223755,-49.325830243511994,-36.184024989807284,-41.914679145224255 +8242,-38.07048238875725,-41.71512241673848,-46.48947300245205,-47.06626647733677,-31.602866558505895 +8243,-49.69150528124514,-49.21503482614539,-44.478401873053905,-42.09594931668125,-45.9622349955428 +8244,-45.98973931295813,-47.77758198426407,-38.08220616429509,-54.39926758935028,-51.453510765505435 +8245,-47.112240129312866,-38.83117136239755,-44.41224960236252,-46.538414488184245,-41.09092127809752 +8246,-46.42929096171997,-41.418853988131445,-47.33510050527765,-56.25432438743412,-43.45682207049298 +8247,-39.91416888609903,-52.214492194313934,-42.3031484766278,-51.21349203796412,-51.90867452601245 +8248,-59.52258801910818,-49.753002541483404,-45.65288345707123,-44.23301965087716,-43.221405247999684 +8249,-44.73566508156459,-45.640699918643904,-50.04009160276955,-51.372325265774435,-41.34142588606283 +8250,-40.24535672547774,-50.83174082789824,-39.74467145252816,-53.88951042566815,-37.88061888281791 +8251,-52.42681403478467,-53.419000304917724,-48.27341736166448,-58.90258741820984,-44.329375660800096 +8252,-43.16543435756773,-40.53933123626832,-44.81338495939042,-49.585830328461086,-47.274475564460445 +8253,-44.40880268907002,-49.23643111965674,-38.779659017709335,-51.83710598049741,-39.626122312576285 +8254,-42.37259030505044,-51.069101798152225,-41.80166820918235,-44.23382116296046,-52.10789367488003 +8255,-41.96137707523267,-41.00136390449765,-43.81897890358262,-50.05982591624681,-43.132109585181574 +8256,-37.975582717920105,-45.251757535730015,-48.4478474630043,-49.96365762162149,-46.42394289616391 +8257,-50.188267476303125,-40.98905950113096,-41.35687322770185,-47.23775871237528,-51.82987109918018 +8258,-48.936594692484675,-43.03513000008113,-43.28492009455752,-44.32661886450758,-46.541097025006685 +8259,-41.416296503779094,-41.72872932136963,-45.97416079518586,-38.23628804946543,-51.143645130791704 +8260,-40.34418275337515,-36.689204358624075,-39.09062324453738,-38.554649314165324,-41.500324484153836 +8261,-48.57114731078407,-48.510353027383196,-40.04037805506801,-42.938595576580674,-48.84595780725802 +8262,-48.89907913842981,-45.5453673504141,-48.312970034358166,-47.494052634579155,-43.85163491082613 +8263,-53.503239663623155,-47.41709734107126,-46.58957615158634,-47.147340376484586,-47.10876397727441 +8264,-49.596875437190604,-43.601275013354055,-48.13034834735319,-45.53634723301169,-50.65809017251453 +8265,-39.40114991258013,-39.829703525253905,-55.582189714499044,-46.74850277151464,-44.606580255702646 +8266,-50.0882206973051,-50.70359195470574,-43.90263769977942,-45.15558157064903,-47.7941596408047 +8267,-50.22157217638339,-42.99001872193638,-45.40316005583384,-48.27611694315111,-45.58371556039265 +8268,-42.977805610669456,-51.05828333388353,-49.65027761093126,-45.116738106153505,-43.24952170722114 +8269,-43.17507113526269,-47.52618395558097,-43.729805242422124,-49.94680770617707,-46.92428734907865 +8270,-43.500209547044044,-40.434043456724176,-53.924145355499626,-45.56921522273469,-33.40694331811782 +8271,-45.9293185358809,-51.518560320783045,-54.30351409560875,-45.75580079023633,-45.798035745448004 +8272,-46.473431595319084,-59.04910777168924,-47.850860691233,-45.80551843344671,-41.015520695818985 +8273,-47.723310286460475,-45.705851409753436,-48.02727175574662,-45.398087617798225,-42.69880409681494 +8274,-50.216707132578925,-41.128829790736845,-43.0926836323205,-49.679544414866456,-40.96095117398502 +8275,-48.2634043080636,-51.26537051584937,-38.60828021374004,-43.453971516600035,-48.39133633458865 +8276,-45.555667711533125,-52.79540446208867,-48.260713947115114,-40.143746858967596,-52.89515397405824 +8277,-45.90146339224997,-39.40946170178009,-42.06490006864751,-38.58359116490115,-49.28056111048485 +8278,-50.35369758063937,-45.28796628586435,-47.244033586065,-39.965265545064725,-47.15169236087666 +8279,-46.657480714190314,-42.44238023796031,-49.7663329270774,-43.848392821923035,-37.03924753113362 +8280,-45.451399178473665,-36.65104039961667,-40.52555005584507,-42.358619947612226,-50.6445223582603 +8281,-53.627449762818244,-51.38530108106819,-45.22788892761717,-52.15326224148194,-45.838182733975444 +8282,-45.05765775330322,-42.41904272507125,-40.6158266545676,-45.80670691233471,-47.08957084856765 +8283,-42.91458265905088,-44.12319433094228,-40.1812501645344,-45.842617136149556,-47.551108438450335 +8284,-44.00755550768034,-45.13214503620845,-44.39894580444857,-47.899431796428104,-47.21701479918172 +8285,-46.59026068439267,-55.38573695443931,-41.85755285106847,-45.94423633541803,-48.40339052035597 +8286,-56.53288842049307,-42.382404223888706,-46.3445115061884,-46.16232881157993,-44.94860364237494 +8287,-46.861667808908095,-49.6443310260857,-51.274999039149556,-46.54982006828908,-38.80089209657158 +8288,-42.59852891200612,-49.400502265744436,-44.844515748476525,-47.14488529446534,-52.95988203931102 +8289,-46.479443535290294,-42.56991875364426,-40.64260392012048,-47.73047035310348,-47.00139081178832 +8290,-49.8351095071701,-44.546896439357845,-42.897120976040014,-42.00573956464798,-39.5060690395169 +8291,-46.68274372935057,-42.211303921445946,-42.76450010046584,-55.44500858274867,-52.20891657985383 +8292,-59.33215703699131,-41.31013154987375,-47.82863700777789,-53.80451531103824,-45.6925216008594 +8293,-56.764556045558535,-39.260322991393906,-45.442727476799206,-46.825762871656565,-45.71201291776901 +8294,-41.295974861945865,-44.56784184712588,-50.373846290957054,-47.81669726040037,-47.40450878719662 +8295,-40.43055252044464,-41.248682205158474,-44.96557915494697,-51.00988578585132,-42.971172352214154 +8296,-49.040366655334736,-52.31946263207259,-42.28680201677748,-48.81362306897173,-38.55909412133526 +8297,-45.99355539220788,-47.27978323466429,-46.87638944782338,-43.138546469515376,-54.96972746849769 +8298,-51.19197106783515,-46.545626861865934,-45.30835439120693,-44.229567381958695,-46.572856991781926 +8299,-56.1966320913492,-37.836740158244766,-46.96851959274014,-37.58553748477938,-41.7758964031407 +8300,-40.64979186057268,-43.860589116058634,-46.60463616543654,-46.27763200673252,-34.25863313183622 +8301,-42.747885702241916,-48.206136709679555,-47.252176489104755,-47.144623184312,-33.18557341294427 +8302,-45.92315684566564,-40.35872497082748,-44.75665227026229,-47.685294393706194,-49.59379950215697 +8303,-50.32820016180456,-43.63490834205142,-37.81074784759942,-53.56313130341309,-45.71051722966659 +8304,-46.860658840247744,-44.64732254413147,-46.310813839130844,-51.26995128383461,-42.611052364280944 +8305,-50.629938015180635,-41.26139691872835,-45.66694498401199,-45.003202195597254,-50.5518641797713 +8306,-42.92443839694752,-43.64423680891069,-41.017409691413306,-44.70636117300392,-47.039142124155155 +8307,-48.473244711831875,-48.78071594932028,-42.10761791712117,-45.28733207153185,-48.18728108886892 +8308,-38.69438115927303,-46.537433818819444,-55.72393061743573,-48.349365045303244,-49.49002207345309 +8309,-48.55823002700501,-45.49050323586996,-53.36044346698247,-46.01494597799287,-35.48575313460744 +8310,-49.418025711521736,-41.281299412356184,-48.530426967193186,-42.61983895198079,-50.82294223208137 +8311,-42.53385525491981,-43.3670915061561,-46.27408885227028,-43.790630322123064,-41.763776691318164 +8312,-49.411659592022104,-43.51963090151964,-41.25853175578657,-35.12671367053049,-32.70436172110098 +8313,-44.101940212722795,-57.32239606251304,-41.00216471385785,-46.48458426520369,-47.30995369153209 +8314,-48.37273896184737,-41.00955404702787,-50.42886486465058,-41.73235502229205,-47.8695981930494 +8315,-48.82320155983312,-49.152603099623654,-42.84004484072834,-35.34338579801129,-53.40553413232355 +8316,-46.77193574151216,-41.37822988358452,-43.343359396535604,-49.475228124250584,-45.15334630991883 +8317,-43.40454858301807,-41.38712863611273,-43.58312206430982,-36.1032000724321,-41.00031817918474 +8318,-52.25805731984219,-45.65964119867084,-42.860536187015704,-42.10611748745482,-52.17947455530576 +8319,-34.06132539279766,-49.53196374919072,-48.20259018586045,-48.13995295226038,-37.15908048946976 +8320,-42.055453445671006,-42.31097995579866,-48.841832889732714,-49.628302150643414,-46.77912785416408 +8321,-52.659166854539876,-39.68414902854337,-52.945691671446866,-46.6776318840538,-49.85496054318983 +8322,-51.256681567051054,-57.95215994995934,-39.26390367239523,-51.448609160565525,-47.498391912324976 +8323,-45.81055049372054,-54.74674804218702,-41.72184775285088,-43.82573508370192,-46.676179266544565 +8324,-41.43908959234239,-50.26017229340527,-52.52492089794271,-45.65900462145476,-46.829596220009556 +8325,-46.250053618626865,-44.827766078525144,-53.72001387367981,-48.73102013600518,-38.084591130533596 +8326,-44.2689279164157,-42.52184671448191,-41.88004630936585,-45.951487240849666,-45.15261623759358 +8327,-52.754276641926545,-57.05922959400038,-45.19947571160721,-53.24332179336361,-43.77318433144672 +8328,-52.81857878359176,-39.68921436695598,-45.8728847634309,-38.32680557122771,-45.58051436213093 +8329,-52.87565609531222,-48.12021738001521,-41.9968624629951,-44.19856972024028,-54.41674249016258 +8330,-39.03990965622061,-50.864482004349426,-38.08074452786278,-40.60071281479785,-48.992287971195594 +8331,-50.3395429259149,-45.97182313080753,-46.364166575632716,-42.78905250156496,-52.097082491175215 +8332,-38.9657832711511,-39.91057870290658,-50.35267632942538,-36.41912771803059,-39.992831548320545 +8333,-36.688737627514804,-54.26575923716764,-45.05906125628664,-45.98857001616328,-45.17718772892063 +8334,-42.75159272866759,-45.17186671733667,-47.410097920143826,-36.6077039129902,-44.22481009130926 +8335,-42.21207435419106,-37.08405017198342,-47.15695206721343,-54.89298585412411,-45.794206780158035 +8336,-39.54628123694473,-46.76212778360274,-44.65214843131813,-43.58917792306645,-49.21956460631717 +8337,-45.53146335301181,-40.40427900325961,-44.26687280035949,-49.18031991491198,-46.690445817417206 +8338,-35.41280387097917,-47.41776555910959,-48.599202964241634,-45.44752157675941,-51.62067568091429 +8339,-42.748239177221045,-38.51779898565176,-48.85615523563429,-53.25610277815069,-55.30881427822718 +8340,-48.14529248724699,-42.03042823997224,-40.52607046775068,-50.56081226610213,-47.995227191410855 +8341,-41.105760222424486,-39.42735733883545,-49.10843626893214,-42.666846307175476,-49.241343135611054 +8342,-42.408063296802844,-47.745021552640104,-45.82331119802018,-40.93848937310687,-44.03664180218459 +8343,-46.226877781307834,-44.918057819378426,-41.439007980395424,-49.13464854579807,-47.69232810454691 +8344,-38.472873707672434,-47.82273794319618,-49.00039419234102,-34.962959602925245,-50.58991099366129 +8345,-43.376134111262104,-49.781946276399026,-49.37369141305229,-39.74840098956515,-41.024848862959246 +8346,-45.50036570689774,-42.55236673567452,-48.15712490603331,-49.75755384757417,-48.73351759150501 +8347,-40.01464646188292,-39.659952577146875,-49.26849220322643,-51.47034397760794,-40.69589271153599 +8348,-47.940894650724395,-46.42188028756084,-44.37300284716635,-38.67238758777206,-39.29805201737519 +8349,-47.293753857772195,-45.0044015123784,-42.453635624929035,-42.968754034510575,-43.319968824280295 +8350,-44.61273562130871,-40.83118642602064,-42.10395444833603,-53.18900109628388,-40.50732173115925 +8351,-48.100388178790034,-48.40601978543595,-54.11150588069816,-51.53884488698833,-54.59577136263715 +8352,-37.475832092015345,-38.3274872072291,-33.78001493226824,-43.45645478419805,-51.86796534169229 +8353,-52.1952462165773,-38.88539608798737,-44.19110469905341,-52.71385195981036,-45.36269781019233 +8354,-46.011182821197266,-45.428266155700484,-41.507494596998086,-54.969324616804954,-56.20389227675425 +8355,-52.577572242482674,-42.829341593478645,-40.763278949962874,-48.14972119029534,-46.23214551998911 +8356,-49.85902702730508,-54.1092967582783,-48.160286810476755,-45.251679102868586,-53.3933441240497 +8357,-42.97617029829401,-41.90269448887643,-41.90524575416684,-42.019214791616704,-48.789096010874 +8358,-47.684815058014344,-45.401793120018304,-42.29603908951511,-46.43453280448651,-43.89676928286068 +8359,-44.28836928334998,-49.4723069479065,-43.820605027507405,-41.279587980667266,-39.66900209548103 +8360,-46.96931926349122,-35.38159804415931,-54.073080720795836,-49.5931951422811,-47.152954108013944 +8361,-42.65842928760541,-39.41800191797728,-50.46163627677517,-40.61928603196821,-52.04962449006265 +8362,-53.02889464283081,-47.59678109379283,-43.97890985523621,-48.151926566649514,-39.633225359718736 +8363,-42.12431890763097,-48.275192767249365,-48.360534647248755,-44.385572342333624,-55.27896178618844 +8364,-45.18934246104249,-48.02151588225904,-45.45200319984516,-47.822179403573074,-35.700134101717715 +8365,-47.23176970625404,-47.57954741247833,-40.92264256870655,-37.394836601093125,-38.637151583368116 +8366,-43.34054526350527,-40.37868206293628,-50.50718339109423,-37.506980625505825,-40.97528031369524 +8367,-51.93562902831424,-54.92005922668987,-47.24613450699232,-38.282999265495754,-45.24908830591343 +8368,-37.4109002881462,-54.46856752702994,-39.57179740939808,-47.86525488872297,-47.83155324400633 +8369,-45.42401631241224,-45.421814913705674,-50.42236692756566,-48.310770396160244,-49.40637324218596 +8370,-44.614716039130975,-36.55954597623297,-40.330341905036605,-53.04518406487445,-56.300219135727545 +8371,-55.06538838050581,-43.18853720652185,-45.25946196201095,-47.95057315590261,-41.15205700832726 +8372,-43.68861733197319,-45.137805160441,-44.588067605587455,-44.39752205407035,-37.57899190362977 +8373,-38.2953115570397,-42.231358360284226,-42.171834997244915,-48.65393817096044,-48.626628403040016 +8374,-40.47811369807204,-42.193672510493855,-49.165473630078495,-42.68454951339942,-38.65039704797725 +8375,-43.99864355859228,-45.09744897801996,-38.19162625458515,-48.6705074811532,-49.91799195493357 +8376,-45.70993181186003,-47.0871741100299,-48.27968523759381,-42.51527830884115,-47.47845539805768 +8377,-40.45960684938741,-41.89436165317672,-39.12043097973674,-45.30421373962359,-43.84528853032039 +8378,-45.440425231315125,-40.715965087886815,-40.07488047828507,-47.58379648842106,-49.96471783523888 +8379,-50.700306347206435,-52.449732671626855,-52.709228917660624,-36.16408579183022,-39.093726597757694 +8380,-39.61221906906708,-42.63056630416591,-52.16044340081719,-41.19295249884289,-40.61039464828414 +8381,-42.14472928989415,-51.18987000923853,-50.65629045503759,-48.98558031419922,-43.836235124863094 +8382,-39.778123465544304,-41.7016044066338,-47.703504665038665,-41.87996955065601,-37.778984024364895 +8383,-45.48888077201856,-51.98618476448578,-45.896267643922805,-43.8940011507111,-32.69606702788803 +8384,-43.25537112868139,-48.405807903547235,-52.39527039639241,-42.36896336218902,-38.29138871467942 +8385,-47.48084527431551,-48.138964147742904,-56.55607279537801,-57.572193472783624,-39.956520245154636 +8386,-40.63075625269029,-38.98219753123222,-48.55727634998403,-59.40379486236723,-45.563993811315285 +8387,-47.19961484833507,-42.881359019490056,-53.878100071791955,-37.83930868479849,-49.620928077331115 +8388,-47.636135551570746,-54.427769669608054,-49.33480373202204,-42.23043596297467,-37.699838755291886 +8389,-50.94800965556469,-42.4960518003485,-44.64850810676342,-52.80666375980464,-36.411451169118806 +8390,-48.67818765084075,-46.81601460771086,-52.243989337203374,-41.94135135614476,-46.477497009615476 +8391,-47.157776944496355,-44.915272861783684,-48.00456293372968,-39.3922060250829,-38.933481173717496 +8392,-40.53057665454827,-47.32539949878365,-48.53835720077201,-39.05546729275959,-47.083767558739716 +8393,-44.436394034666364,-45.02629693377689,-50.94205098203633,-34.38413942884593,-46.188689396635354 +8394,-43.76222598010872,-44.018842229355506,-44.098659480572174,-35.586412859924074,-36.687211473299655 +8395,-46.5084690319909,-45.25603290807962,-42.34232708137178,-41.946499447408634,-36.798069051777226 +8396,-50.34434597456817,-48.927989732308866,-48.98801549690649,-51.83436285176011,-46.89624581652013 +8397,-44.66183200994367,-48.99628250774912,-48.04922728830646,-47.76921582411842,-45.4751908815898 +8398,-54.8119175816521,-40.27693155382145,-41.811503702945785,-47.18051503405599,-44.95767964322746 +8399,-50.80167069881403,-43.3903026419555,-44.499569426715894,-52.05695003168326,-40.229859171102675 +8400,-41.34516361112143,-41.9388768512613,-42.970752851177096,-50.30647566113494,-53.10279889467119 +8401,-51.8847557460303,-42.25965390392149,-45.37762859321642,-53.783535958472825,-43.929392948480846 +8402,-42.79359995177286,-43.02822579566843,-39.61072961653558,-44.69885745706016,-42.116876774651196 +8403,-44.559798715211514,-43.04890139349553,-43.745114028287325,-42.73712463086077,-57.270390892754946 +8404,-41.141458849065856,-51.746084003179114,-49.22003006381757,-40.25397055904119,-47.63739810607384 +8405,-42.44038033550928,-54.9746205287928,-43.1264884916385,-47.33972919758441,-37.14585497409104 +8406,-50.131238100996775,-52.650075174468164,-37.0993538054998,-45.3564063123313,-43.716698358196105 +8407,-48.129376359650394,-39.392459085417194,-44.573920259578074,-48.556441754425045,-42.3349570144511 +8408,-50.04515142206233,-44.536810636125495,-44.21526645925626,-55.4036446021825,-46.095941745373715 +8409,-43.086776054488375,-44.05348079702947,-36.51052093851007,-49.85413321046735,-51.110083585036755 +8410,-45.78481554200523,-46.1595945454702,-53.29404302279173,-50.092522817358486,-40.357235203014596 +8411,-44.692782276197356,-39.329775335175896,-43.38190307793888,-55.32480817658716,-43.520712147814194 +8412,-47.87324448262788,-37.101355579430006,-37.89299716082536,-49.24265017057842,-40.45511270309071 +8413,-50.67593801716277,-54.980935176041605,-46.68429469237403,-48.5452499642951,-42.64474621551472 +8414,-51.8759015974082,-42.30941296807123,-41.820962696466296,-50.007610783678345,-46.27432430493852 +8415,-52.48722234296459,-49.213499552134216,-41.913061150540265,-53.3386662810161,-41.91345323176254 +8416,-42.16751204669508,-52.426846926861884,-38.85212385541514,-45.81756606543902,-41.86684786501795 +8417,-45.85858031913168,-46.678963697811525,-50.06071699604865,-49.280090658064715,-48.87484622371246 +8418,-39.607045076395394,-42.2074615508964,-43.175667819585485,-54.50293996443561,-41.76303222480204 +8419,-51.483252307232625,-40.61897486191205,-44.390547979659175,-51.84989666685705,-48.84714116969959 +8420,-48.907875493001775,-47.004402979488184,-43.045422257069255,-39.247379293302345,-45.92382230080992 +8421,-44.405627913974904,-47.04973290461772,-44.75713967535503,-46.361056699699056,-48.47864630233367 +8422,-48.664336305686376,-41.884165298460346,-45.89711635971303,-47.53462931168741,-44.5594529865109 +8423,-45.63014937266396,-45.01392252854298,-43.988839889550896,-44.49762496211556,-44.02695133486682 +8424,-45.09657825505291,-50.350762188179445,-51.52080276595825,-41.63894271011375,-42.1708151721726 +8425,-34.48470281045605,-55.78763900179666,-45.91326943427611,-36.84756752344792,-42.763491319690104 +8426,-46.22117273827419,-44.150945629646614,-43.7076724841051,-37.84984960342365,-50.738017582996434 +8427,-40.57141247200066,-49.8485984081279,-47.80989149117954,-50.67298002617986,-39.24040670896808 +8428,-46.55014667524971,-40.86247741359447,-41.03345278983919,-35.91089277169346,-51.80845056206791 +8429,-44.312571033315365,-38.56015386680316,-40.99303823885877,-45.334277677179806,-45.54111806432952 +8430,-42.57374323396138,-49.892026936881805,-47.634348501814735,-46.207881689565106,-48.88450420642739 +8431,-49.411042710393254,-47.85536283890108,-53.99790651266503,-46.15601913535894,-46.986570585274016 +8432,-46.38412358886338,-47.19082772568842,-49.02798706007403,-48.223859442911966,-45.54935853009947 +8433,-46.226518651900165,-51.2674019013597,-49.41279420594471,-38.738056253856314,-52.365860616825984 +8434,-39.78381364505813,-46.168120833261845,-42.927765635827384,-39.33769077080495,-40.201283764677164 +8435,-50.405519699542836,-46.22469639861261,-47.26826138051162,-43.778161261688304,-50.38452320109233 +8436,-53.273043863278595,-42.70436739939549,-48.72171501466172,-51.951283424042806,-40.23197381857488 +8437,-43.82843760161776,-45.98006674664705,-46.853084473183465,-41.57458925146713,-45.1197605968985 +8438,-40.95093928381054,-39.26815210678406,-43.13242828965284,-47.22229101510595,-50.00797454515029 +8439,-44.94976800570097,-48.931289594922454,-46.67851015532354,-38.984612132188445,-42.2938784146011 +8440,-42.256251679614486,-51.0492787503443,-39.50486412279159,-48.02981659790615,-42.94718794890753 +8441,-47.687050782795865,-51.250585995971235,-50.657542428781994,-34.53058780511859,-38.57409387959143 +8442,-41.35149774417185,-42.62102824637658,-42.58229941379567,-58.4416989639367,-43.939088548838015 +8443,-47.50212581139631,-50.78826347142951,-47.85051573495462,-44.72446496193675,-42.366379700490604 +8444,-45.00783953144019,-45.81923403890062,-41.42123114284698,-45.22715668940397,-45.241153732815484 +8445,-49.96516717428818,-40.600856491124624,-52.02024110007974,-39.08382629158349,-48.695028503016324 +8446,-45.485991227342616,-42.16492246690516,-43.017429849075505,-45.331528119462874,-47.447459481122365 +8447,-49.784055686463105,-46.4623325376002,-40.22110045538831,-42.61430790375731,-42.891288357481564 +8448,-51.65249275648837,-45.813963942261694,-40.59966089831685,-46.14950671377997,-35.88655226570402 +8449,-41.69989813821089,-45.606560948769975,-43.9832965095677,-43.75107805744173,-51.97382394216649 +8450,-43.14556044475461,-51.32819874225907,-47.67113958342966,-57.35771271539482,-35.65716010357118 +8451,-41.65050992761143,-45.142023504240484,-47.11890869658757,-44.07127367833646,-39.521952878547594 +8452,-46.05264109622039,-48.89557448317025,-44.93126177013006,-41.63206858497197,-50.71135889997125 +8453,-54.81850139687267,-51.30649946012195,-40.55939535361639,-43.64798466489269,-61.50881213532824 +8454,-41.602009557148804,-45.12682729337358,-35.94160371345826,-50.834676662067814,-44.84748486152943 +8455,-39.250083712316794,-43.341873366087434,-47.553589927977804,-46.97683516927109,-48.826396644236425 +8456,-49.037705739449535,-42.5910947632747,-41.643168466346516,-51.062928441466404,-49.51701257746342 +8457,-47.51558697699937,-49.72794666009264,-46.65892706742753,-44.90890731406243,-45.42040431345311 +8458,-41.71455880774308,-45.30290807415142,-41.12725196337359,-54.269762414704424,-47.22485920971521 +8459,-44.00359763590028,-46.98685580454387,-49.26687112837938,-47.70393246012558,-38.18698997191636 +8460,-46.886399236391306,-46.862362268097094,-39.50824186346901,-52.2571750550768,-44.94359993103491 +8461,-40.3423852563523,-44.42207025379463,-50.19517857132035,-51.04243391545058,-46.49466075130038 +8462,-41.11275817248921,-56.37073028475493,-39.51808598367224,-45.86422471055564,-45.16862201339995 +8463,-56.10992844402388,-44.22974501219375,-41.98878760164092,-40.17470052874316,-49.85531671941685 +8464,-42.864200191255385,-47.57135002279695,-54.277167181950745,-56.36975136376564,-34.836795309974974 +8465,-50.00518819587135,-39.805843937547394,-40.820139748666215,-50.16412306917262,-48.74914732121334 +8466,-44.41857337907212,-45.49580221969131,-46.13729819908622,-58.98458832967163,-37.673065766343726 +8467,-43.179749251278544,-38.30075568505041,-45.47480946036958,-36.936261090090184,-43.44869131693698 +8468,-45.54524158997615,-50.95535110861114,-39.40808273193137,-41.68296851601579,-49.638974860476445 +8469,-39.904809287379976,-40.39790930540757,-42.05016902260051,-47.48141121320878,-34.978563212559116 +8470,-48.439838601494834,-53.67783901806463,-43.68751699351394,-48.43417135946105,-50.16258231818846 +8471,-39.15933430220386,-46.282526404698466,-44.40016725092225,-56.961957796898076,-50.116535882662106 +8472,-40.981331312105496,-44.70285216364218,-47.0315311431782,-40.309529782235224,-50.20104311462517 +8473,-47.78807371959309,-44.2705878886805,-39.982432811125854,-52.929282997678335,-36.850949316537125 +8474,-44.257872548418305,-48.07394765268171,-46.79633121541267,-58.01836149847935,-44.85363565332523 +8475,-56.106384555074136,-46.82470133201982,-39.208101065261154,-35.79833563278678,-46.446562267949595 +8476,-49.70975388208049,-48.20572979021798,-38.429639159973405,-38.93229501600356,-48.575065856560876 +8477,-43.18751766638567,-44.17768100903705,-35.644488259030716,-36.76102662430769,-43.07988831392912 +8478,-49.969790714133836,-50.97866616626366,-43.921539595028385,-38.18318874590948,-43.97278428312044 +8479,-42.4877079199665,-54.55563460359418,-51.24846816265533,-36.660369500602734,-44.792528027531745 +8480,-48.198705429637336,-45.05939540705098,-49.56252408941672,-35.226450670714264,-42.96499281529193 +8481,-44.855102467253175,-47.09096900892012,-45.65542776959839,-35.114798163870105,-42.53061575685752 +8482,-44.896579749168744,-52.18976620576846,-48.887000188365974,-48.61993970879065,-43.65640604383132 +8483,-45.999162202938145,-44.76434483922923,-48.36650951518157,-42.77938648133804,-43.8186178913145 +8484,-55.91541080345576,-40.91194335358708,-41.56834675709305,-42.60789528581961,-45.031256570110784 +8485,-44.84588162625291,-45.533096668236006,-49.8554402627315,-51.99562285822465,-42.52160254954433 +8486,-47.653251178967,-49.95338639022702,-37.45909103804312,-46.438654805340796,-42.451421039463106 +8487,-44.94010029787645,-45.78127129803351,-46.8371810078688,-45.96333975639534,-33.3107308474646 +8488,-45.63715904460619,-47.57460154218227,-46.2334907432086,-36.150798375469044,-51.870255404311564 +8489,-43.342870048721544,-48.65692949846142,-49.94669303468668,-48.58427334963397,-42.39096080246571 +8490,-47.0611185110849,-34.926788867635295,-36.111987422194744,-46.348392734445326,-55.072790861277184 +8491,-51.5491241050753,-43.1707822231924,-38.31813117192354,-51.219018208245366,-45.964117401356575 +8492,-45.18296328737032,-38.58565218510978,-46.478988767912014,-40.898784519666535,-44.72273547351099 +8493,-52.0550858491004,-41.56276446361202,-50.4968099312075,-46.82020218572114,-46.41693484118934 +8494,-43.7458372119666,-41.84802761392023,-41.5400799242378,-56.330525994992215,-40.216911539872676 +8495,-48.73404919731361,-43.35518013352617,-43.26655739752288,-40.58095823510316,-49.21980552955695 +8496,-42.46558817948558,-47.261608311750386,-41.6030141122392,-43.129405211578344,-35.69083320330381 +8497,-45.25999298168089,-50.12179675920139,-37.72092679023646,-43.16091932409949,-52.280697616704934 +8498,-43.486532418203176,-36.28698262275503,-50.45765517846111,-47.64571603121835,-37.21643236274535 +8499,-41.50037710487924,-49.74743978191766,-43.585966454261964,-43.62101999517239,-40.17931386726779 +8500,-52.29505448786811,-50.9220443596844,-45.916935636697545,-44.23865499624681,-44.66896231552294 +8501,-52.45885404977695,-41.613605672974614,-48.7228509973019,-48.84665518533078,-40.58885382906591 +8502,-41.19024528309068,-40.90546099625392,-38.687578372630874,-45.34579753098194,-39.1224414619887 +8503,-43.34564312785167,-49.07232268850906,-43.0525134154832,-49.73505091413684,-39.89342472387707 +8504,-46.461323138079045,-46.60287336758402,-49.60693090735032,-54.23946989525444,-39.63384456747322 +8505,-32.20312949704573,-51.606447231653966,-47.049474565957205,-38.1346383022818,-36.97005740926761 +8506,-38.41186475321358,-42.117525894285485,-42.93521443391968,-49.574051646565366,-44.747170166575636 +8507,-44.87734213416385,-38.39177616651285,-45.788444435125406,-47.350926444445406,-43.4127428004122 +8508,-52.66027711448978,-48.280361484967784,-39.377436832083845,-50.68331791784553,-46.91026513189982 +8509,-40.34876909115378,-43.23074483597435,-43.21980352044828,-52.51146304708345,-42.48800775442295 +8510,-41.20013579575898,-41.976241424840225,-39.545775929858586,-48.25940527586837,-39.14575081369516 +8511,-49.34485756464513,-43.0617858692658,-50.16078321344612,-44.402333477812654,-41.23218686477518 +8512,-39.7590219873649,-43.47320311504028,-41.32791603490431,-42.74664480107836,-52.20314811999831 +8513,-50.342438194607254,-48.40629999151481,-35.86439941544342,-48.45019759222,-41.11121202657155 +8514,-38.44860872416749,-46.009094604959216,-36.05364935791019,-39.48852771893213,-43.72173719690073 +8515,-45.554822242367216,-40.1808654627566,-52.61525927620211,-31.435593072878447,-55.12467878459165 +8516,-42.118439098533614,-44.76738575994258,-41.37915100104759,-52.54277391729475,-44.8971750346817 +8517,-41.34080506742908,-54.00264080924143,-51.400674147091834,-47.607659867311256,-46.39551432107287 +8518,-55.055093772202135,-44.833307889966804,-45.83853947565532,-59.36702161203402,-43.65984492455767 +8519,-51.97386867432569,-46.04527086420502,-38.65420074489607,-46.5534563712357,-46.47768022846536 +8520,-44.071488596553635,-45.7444838350761,-40.254458572133444,-39.15267941021851,-45.858654579543874 +8521,-50.05218026488773,-39.85175516314355,-54.62681453320342,-57.58585857237269,-46.57106403465457 +8522,-39.965711496681784,-44.867087921322955,-51.34236822619284,-48.54376661783215,-38.852710719094354 +8523,-52.28524910049134,-41.61846202013545,-38.31659155244284,-58.85514135479169,-47.3846716371538 +8524,-46.41904443568349,-42.38960264381972,-43.855360064491215,-43.85091269295236,-41.89587038831086 +8525,-45.02103352441621,-50.2325486595691,-43.651585495932395,-45.78559805161759,-38.28903960580185 +8526,-47.65839966875255,-39.72710024253869,-52.10672683706892,-47.01969190731436,-44.987589450909624 +8527,-41.925820519837856,-49.51658849322365,-43.91909159066296,-34.88213054955899,-42.62104960393827 +8528,-43.24502713217125,-43.39031750021363,-38.835064669539086,-43.449568901589146,-40.438042398055 +8529,-35.633114075477046,-49.1196097447389,-39.3119223331639,-46.87175031485705,-40.61915284460755 +8530,-37.29106236704158,-56.006251636274285,-44.190849878045505,-47.331791384038546,-49.27786993059207 +8531,-39.3734350396886,-40.14750409733891,-39.09906277648886,-40.0754215451902,-43.6757527787858 +8532,-38.45529057238107,-51.93814082186071,-39.83446819060434,-44.78090257524038,-44.094333485437396 +8533,-45.78901405423816,-40.61876519628018,-44.162713216726836,-49.95779259085789,-51.26067117965607 +8534,-44.229160559323226,-43.89063764203625,-39.79574378634838,-41.50197563393966,-48.244201156499145 +8535,-46.099433939703594,-43.97893312293429,-49.97704686865771,-49.873532734399326,-44.66289757033568 +8536,-45.58499042897708,-45.29424408355762,-45.308534067834934,-47.72760601773297,-41.04259425066987 +8537,-41.785402190415965,-47.175014078327294,-35.87624128237956,-43.41591024246888,-53.36441306201053 +8538,-44.11305926354666,-46.669311002551964,-54.342065737000354,-45.514707548374815,-48.81099257980278 +8539,-43.51574181365029,-44.527594282388655,-43.62533885725917,-42.48921762744899,-53.479692630731506 +8540,-48.62803488535945,-35.021762311146816,-47.29751285067211,-45.92369898169959,-49.95909764305018 +8541,-38.15648191986682,-43.639451912101556,-43.58675560745762,-49.91118130476033,-53.984946306195724 +8542,-44.84525204084189,-51.04326610066029,-50.10385276697557,-43.50428597261831,-45.009645086811716 +8543,-43.14342726722114,-43.41878145154078,-49.92272779118786,-43.79074504718243,-41.07251591637335 +8544,-44.59953655511108,-45.463756744238964,-50.686338221865796,-43.68136482865353,-45.236958181593785 +8545,-55.04190435240127,-40.3649747859112,-41.845116302950295,-43.42768379738116,-48.020748894938386 +8546,-47.92033252944576,-49.92486118304184,-39.570436587985036,-41.78141066361331,-48.035722421369464 +8547,-38.45775407749687,-48.44868229018994,-45.84160679517852,-51.614202662752845,-42.024975360623905 +8548,-52.01501918237977,-50.065039994147355,-43.53078950235991,-42.90567236248836,-43.537144308045114 +8549,-45.698727273736374,-44.83814136898518,-39.29522831087018,-56.636661720187526,-48.85698578274209 +8550,-43.95560647566637,-41.228090717487184,-53.59414100819298,-51.39502020152806,-44.89496049285029 +8551,-53.3234421461334,-40.18459976230398,-44.93922050282901,-45.07441133536579,-38.48405203269311 +8552,-43.05231442856508,-49.124735073285116,-40.15970019955131,-46.89262320540505,-41.75642668348593 +8553,-49.86094560591919,-47.13692371743087,-41.342874283131145,-42.286142462061875,-44.856891143641185 +8554,-43.569026699702114,-48.5994325234712,-48.72747078560078,-52.57432067179204,-47.72004915533557 +8555,-41.06556788734006,-37.39125599617657,-51.247190358082975,-37.551927551500434,-41.70338594317609 +8556,-52.30052627906876,-41.02901410794647,-37.76943991863712,-47.21615129610122,-43.92520244051471 +8557,-43.03094428030879,-47.54126068052891,-44.41288756789044,-45.10046330974605,-45.18872503399233 +8558,-39.96903226637126,-46.685474599804515,-49.43183463324042,-47.14962181097783,-43.35486549554105 +8559,-39.52166170208917,-44.553585755701214,-40.17889558579932,-37.59686686103202,-45.602185403290804 +8560,-48.82739939580287,-48.460152685839816,-43.804005938241886,-43.89695556954272,-40.90882527570669 +8561,-46.86999905668349,-48.67404126078463,-41.78305235833946,-45.87232527238727,-52.9138586289182 +8562,-41.13603215179725,-44.89625932645717,-48.07274097410957,-45.36649481829,-52.209092679696035 +8563,-51.27420029947818,-48.07828262541864,-43.78648686629841,-46.35473921842112,-52.59076380323654 +8564,-39.30617432819037,-47.24361805718028,-39.961661697572886,-48.9217586463416,-44.4187729636425 +8565,-44.07727011339472,-49.23545939501535,-46.319426711222306,-38.61826416256729,-50.908192425353946 +8566,-54.506853989990425,-56.33025802455508,-43.359568657947804,-49.27709748466967,-36.839752233871465 +8567,-46.97007290580877,-47.42288242252136,-48.19305021947403,-44.261917896872305,-48.37061866869426 +8568,-48.55770425549234,-48.192452804719316,-42.54441543127073,-51.06524171167855,-56.457012932679106 +8569,-50.94576188294793,-52.45106055499205,-40.10725330615499,-58.16039229090592,-48.068537510369495 +8570,-43.82649825208117,-47.27210084338143,-37.990707286868385,-44.53211147505202,-35.73080945745001 +8571,-50.203523397811445,-42.228504898112824,-36.88202941488376,-39.75374022273842,-51.11325036031252 +8572,-43.53461162092158,-48.746644878111574,-42.35608704075314,-42.106192866029566,-45.52121576657998 +8573,-40.57041062796533,-42.910386484659725,-44.394015233051086,-40.66567795012151,-41.61475517382038 +8574,-43.5788621378452,-45.38352803050827,-46.52582321085754,-48.066874461888375,-55.040819188942535 +8575,-40.98484434508664,-42.017120382136554,-43.88690624614651,-50.51446722203497,-44.58507550175812 +8576,-48.55899198410756,-40.52003564023672,-45.27391743813998,-38.923117634128005,-41.82928547619115 +8577,-36.95425329857118,-40.71387294800685,-43.51942774527671,-37.40096815659139,-51.18877495650395 +8578,-44.39053177002824,-53.9010505259282,-48.158127193256185,-52.740381944426765,-45.173563758102894 +8579,-45.33277857770971,-42.89840194147605,-42.70005391920773,-47.84544001457465,-49.396148298870855 +8580,-45.60897617652452,-42.3842999813323,-50.06540588116214,-41.04317763199954,-44.37756025446171 +8581,-33.9150792495983,-45.28095131244729,-48.01258172931462,-46.250473589923196,-50.52735705791746 +8582,-48.14912144364094,-38.0730588275036,-45.55961568694136,-51.12874299845897,-50.5194389344505 +8583,-51.74397007246381,-43.593009575628315,-48.358253073262716,-49.77572346422478,-47.25054202275851 +8584,-51.154068696375106,-55.75888730072014,-45.87633050593236,-38.302992370176206,-45.52062518473442 +8585,-49.87253515684941,-49.04503691357085,-43.406118264834014,-45.66236211473196,-38.168070538733055 +8586,-39.0752758142686,-54.051291808792705,-39.606553501147076,-38.930226219566656,-44.350822642892254 +8587,-41.46853482758175,-43.14200859312806,-44.55366733912784,-54.1090813598192,-48.574566167681944 +8588,-46.94220551894531,-42.879407419096644,-43.45946698858199,-50.68404172897804,-41.38405226045977 +8589,-40.948726144848,-37.32943696243744,-49.179369343138916,-42.59091954806835,-45.08894401283381 +8590,-40.77293611284496,-37.411311795609144,-43.510784562830764,-46.77692188114657,-43.13228612843759 +8591,-48.20203096524128,-41.42711779547519,-40.899580953214944,-48.25780308849686,-43.11193740182813 +8592,-46.007815208701174,-49.24044695172762,-38.93487164602142,-51.151180911362005,-41.16583084523101 +8593,-43.35009969739479,-47.93669223463703,-40.82719836130837,-49.29108773346037,-44.550129121965625 +8594,-51.515272734897536,-57.66233511406635,-41.90709951877502,-52.38524132999996,-42.31678472804243 +8595,-51.63885433925822,-45.994114016121905,-48.50924994090589,-40.93940765018778,-43.173898603125906 +8596,-45.19673951602259,-44.99458179929445,-45.45113866650719,-43.792092212309846,-39.32950658383861 +8597,-38.82991334996596,-46.16002784765442,-39.183393840846186,-36.84706498542933,-45.84090208864815 +8598,-51.33791734433166,-53.31679669697622,-40.589460344720365,-45.788461576939525,-38.51056568064815 +8599,-38.63845510564886,-53.29085558114553,-46.57584770173683,-54.63166884916754,-38.012842313384866 +8600,-41.55111062295004,-41.289190488298765,-48.36991829201024,-39.23698519011198,-38.95119825161567 +8601,-45.326265676200286,-37.316995404388095,-50.87468806410792,-40.425609395648955,-42.07130388839902 +8602,-40.32901182455015,-44.352635922221154,-46.83857913740369,-42.695287575968806,-46.93335681988536 +8603,-45.608041444844524,-49.869785838210376,-47.64993005780622,-38.437624827704425,-39.871696445278666 +8604,-48.43479340219452,-51.11235113389841,-48.948690800971654,-37.29510874474011,-48.22174973754789 +8605,-54.08884228924122,-39.53788751352533,-43.02190372637762,-42.665456903416924,-41.2045002847339 +8606,-46.52480619759292,-52.042044552064866,-39.572646413788156,-49.86292632696207,-43.370619251548206 +8607,-47.29435148961854,-49.9621400874088,-47.54811603017581,-41.209527175363654,-39.292454622832004 +8608,-46.002865634893844,-43.43629704303137,-40.99981032788922,-53.27805559476102,-52.810893827969004 +8609,-49.11741413822728,-43.6101921586682,-46.74126939300385,-46.82419919204835,-50.88808557101172 +8610,-48.137038860981534,-38.85626702046835,-44.82062283012985,-45.850415953932625,-53.67724255762657 +8611,-40.575686797485744,-52.63571947572211,-36.39396788338539,-44.57789953417756,-47.763240402455914 +8612,-39.542225012844405,-47.707273827443856,-41.692384242869245,-44.64298255826449,-41.34653724341274 +8613,-41.70118939155774,-45.52611353577346,-41.92908573468211,-39.89553315691615,-44.28392633203167 +8614,-45.28156808988519,-51.76644139975591,-44.63754895949444,-45.050887298063074,-42.610745683888474 +8615,-39.985766171766066,-55.822384393020656,-41.09696009369188,-46.1734760338005,-40.421714988000694 +8616,-50.21205079624413,-45.717968845022796,-43.34261967775708,-40.02980354164845,-46.464701452506816 +8617,-51.09665126853952,-49.58329621220241,-54.06246983756797,-49.14280502112179,-44.306208664285364 +8618,-46.820259327533506,-35.24870930208748,-47.5413787852608,-49.899650672797925,-47.95848421301869 +8619,-43.363928370372726,-51.65738582155737,-49.72446032035193,-45.818126066460444,-53.5336153085722 +8620,-45.57812976443854,-57.8463163708394,-44.986425519435045,-48.748741290770205,-45.89958505803821 +8621,-53.99460859376347,-43.44441475362403,-44.564204370761445,-42.41735017447408,-40.53129246327683 +8622,-48.50326808358394,-47.222446900315816,-48.205503186832914,-51.39512313664294,-35.43379046525318 +8623,-45.590261254719955,-42.80143453791497,-38.15264112646441,-55.63087422144362,-52.23091033754563 +8624,-37.76569485279278,-43.60886315678483,-42.830828723272056,-46.26048074700845,-42.52270471529234 +8625,-42.43818901525668,-45.639849958213816,-40.62784518689523,-48.787106487463404,-39.71726849636301 +8626,-45.59542753260286,-50.61082192609411,-45.96164358531236,-45.67740541115636,-51.75476167406633 +8627,-50.56209081919928,-55.54609006551883,-47.7728903675089,-52.3031238161827,-45.66204840359097 +8628,-47.186523045422604,-38.6029219051875,-39.787590926490154,-46.21643331651711,-46.33043565619905 +8629,-50.78073522276285,-55.396414223498006,-38.427840981867504,-46.93222481322815,-46.608712771663384 +8630,-43.448506810409455,-49.898781693277364,-38.74569850248335,-46.17249113438784,-39.776701215218296 +8631,-38.873071628291626,-45.96784269017945,-45.05964432008714,-52.37423274262268,-42.366495407611914 +8632,-40.526944420447236,-44.71754320987542,-44.522813916349634,-40.17479111480853,-41.00437123622117 +8633,-45.37626699363032,-38.838708854522636,-42.43418551535322,-43.1020250528387,-50.675922595119715 +8634,-46.86258417375393,-44.86392405795111,-45.70334484225616,-45.57603851551505,-46.35925582908509 +8635,-42.738964811969005,-52.73423945598624,-36.6493424132433,-42.08739465973023,-42.067352654071996 +8636,-48.69108334269594,-44.00221689625097,-46.92857544459478,-50.21958550355185,-44.47112209219777 +8637,-40.74259557732082,-48.20830809085401,-42.31756333012135,-53.701671595215,-39.68081688295577 +8638,-53.002507478175126,-41.090906215649895,-51.650678007154454,-42.644902526116624,-41.39696605320102 +8639,-41.72981745931051,-51.60160118788254,-37.20646526113572,-48.52349755744331,-47.87937044933422 +8640,-40.546921544448224,-48.942661004220064,-37.79520974571584,-49.15033442396325,-45.29538782030039 +8641,-42.97315827452515,-46.479933554781134,-43.050860213808576,-41.84204973929758,-39.66679045313578 +8642,-42.06412592602291,-38.424661673030336,-49.69731776438035,-47.878196513258096,-46.61860788582031 +8643,-46.83500696701245,-55.55571530294887,-41.046611506236765,-51.503724791915,-44.90229569105916 +8644,-44.56292092412354,-45.3133450062085,-42.41335561133024,-56.41265672728926,-48.20957250370972 +8645,-46.611613841181395,-49.615676195313654,-41.68715770203457,-43.80002502917683,-48.42953405877281 +8646,-40.440111944246794,-41.94807126746135,-51.59073482717785,-39.44753699937065,-37.22399884845233 +8647,-40.916892396348594,-56.61681842010687,-52.19289866007802,-40.97814567277361,-48.8331452574018 +8648,-39.491001232146274,-54.7864232526559,-42.02215877106447,-51.28959077605464,-54.835748642198084 +8649,-40.021031558100766,-50.382712198970424,-50.79171041169372,-54.322538251578976,-51.0638069259677 +8650,-48.77471711265926,-48.50545221479404,-44.21453656391378,-36.652256452355225,-52.19962269075047 +8651,-40.62111866039605,-44.43840242615082,-46.95283926836448,-38.67906760766302,-42.538448021163155 +8652,-52.64488104392901,-53.21853450762083,-42.19365194876527,-41.7834781158799,-46.71385735808989 +8653,-55.03547520674554,-51.896348568794195,-39.9749349471807,-44.897521914655044,-34.60083242414869 +8654,-42.61962288893487,-48.46284548678655,-43.64487056898434,-41.482802929169026,-44.78322502325239 +8655,-44.43587884942081,-44.23554384564077,-45.61500877549823,-42.646048470983544,-33.30779470591813 +8656,-42.888215648450725,-45.375596547424074,-41.901461980223765,-45.955416873655864,-38.967453006225256 +8657,-43.71321935555362,-38.00946034706262,-40.340552836695956,-53.355972793470585,-41.34748280804887 +8658,-45.654034593827355,-52.13921077837343,-39.72702145642039,-39.76153511881052,-56.492624224664844 +8659,-44.761122921121114,-48.46144461988263,-38.1462491402276,-47.204404027789096,-43.81230966580867 +8660,-47.78327771093775,-43.400597228689804,-52.73304651968539,-51.630107262488025,-35.40394073161471 +8661,-42.769028959649134,-46.9707368177323,-48.686668904779324,-44.00847369802487,-51.31881610111413 +8662,-44.73375817235742,-49.429966067636386,-48.29878722460183,-33.770151287575366,-46.37058561194452 +8663,-50.33019644879265,-44.48429893667286,-39.81693433760826,-49.282983460636025,-46.804050035455475 +8664,-47.31607731679511,-48.67651315278781,-44.97029009718018,-40.36746335047638,-55.891762009424916 +8665,-42.61738953163969,-49.02107462981301,-43.27863252380721,-42.00261722893304,-47.47602915647358 +8666,-49.40851305001623,-43.888396405527914,-37.85839253107557,-51.18817188912297,-44.135304346256746 +8667,-44.214797017683,-45.34182598571896,-37.904547473995024,-49.43226560658511,-47.36526543977428 +8668,-48.61692732608803,-48.940562181102145,-40.374122755189525,-50.348436291394556,-46.760215601703415 +8669,-42.079458140835605,-43.468424839707524,-50.017562886370754,-38.168094711311475,-40.962447896294705 +8670,-42.31819752476422,-40.27599208837834,-46.78039384376922,-44.58034119490191,-44.977104068189604 +8671,-38.81792118634189,-52.933587426515416,-35.80636552147115,-46.46861105715601,-43.44010580263008 +8672,-51.081553285850184,-40.125393750315425,-45.270081532253734,-40.20050418537932,-39.81340076757478 +8673,-40.55585739063244,-40.29554275222178,-46.39876058077624,-53.48737681637685,-44.81915703115154 +8674,-51.95607372842104,-57.35027524864976,-42.04841647169201,-38.744363738837855,-44.48118806480906 +8675,-48.53651772825711,-41.23092275985303,-49.647224659562745,-38.16594447615301,-50.16777456322636 +8676,-38.30565202708458,-46.40861423636384,-47.638306200278784,-38.380853965156454,-47.04713391372533 +8677,-40.462036395181165,-35.88921742610956,-43.768711261267164,-32.42881454854374,-51.183376187589445 +8678,-43.440682164497844,-47.74308422552481,-43.58237802680877,-56.91163861376036,-37.54946796109842 +8679,-36.18451000623108,-50.65565034036718,-47.696543367708905,-46.67594301881287,-43.18843997079891 +8680,-51.38881483206078,-43.962532912392476,-37.41231590023274,-46.52883331922942,-40.90030917848326 +8681,-41.48448853120085,-47.90024672715848,-42.82783062952391,-33.89661920279607,-46.46992857945401 +8682,-36.280568051746,-48.521758624355556,-43.40743273474986,-39.25778411672683,-46.01329759023433 +8683,-39.9733977392209,-47.58344125290927,-53.26169017960155,-46.31848374276959,-46.781123285458065 +8684,-36.067654702325015,-45.60992901120477,-39.324477341305034,-44.96044538289327,-48.062663424999855 +8685,-39.39684918652049,-42.21320369899396,-42.16465605872446,-50.84580039417318,-41.88143055740865 +8686,-44.59827364434963,-41.73330508651532,-47.900713312948945,-38.25448846400205,-42.92519060438487 +8687,-45.06551850760235,-53.23567720115583,-36.929997746288755,-42.91234981617182,-42.14342281439616 +8688,-38.65056092345951,-38.71899512159744,-42.71758940673945,-46.165828506550106,-39.145016208568585 +8689,-46.48062899493724,-35.982633306306965,-40.062404171146774,-57.12573549860656,-42.79648778867447 +8690,-38.96694047684217,-43.04505772170674,-54.0891802097635,-57.457709583775625,-42.73728755830012 +8691,-45.32793180253922,-37.91539242030824,-39.29289251830654,-39.77133620167084,-41.19123331071048 +8692,-39.04158871627038,-39.63714162299321,-49.21407874686134,-54.45005111702451,-42.738178446301184 +8693,-49.45755892610645,-41.510560540064915,-42.587792319967136,-41.009761459370395,-41.36296059075689 +8694,-46.72853260016154,-40.83444263647862,-49.322967182827874,-35.73216905937924,-42.48450517243996 +8695,-50.612706505674204,-52.19395277775754,-48.03437561426368,-47.04650087955181,-47.76639389174059 +8696,-44.040122720798045,-39.2077118016098,-42.534905812573534,-48.07421111508865,-41.959635685981986 +8697,-52.12645738391197,-41.39934839183443,-42.40186144590895,-44.209917877629955,-51.69740630139671 +8698,-42.18751012193312,-40.20368644052637,-45.5505700277278,-45.31807778778531,-43.500745165941865 +8699,-51.972448610941235,-50.09494090001508,-46.01984596942036,-44.681796657385725,-46.51640756056318 +8700,-42.648939091157594,-43.38818727576804,-43.75513322913158,-47.621359442099,-52.10095853458647 +8701,-41.076246485509884,-41.552276803240915,-44.29444456173859,-49.80835335335721,-43.20178670603919 +8702,-39.642129898102894,-45.60815989136164,-43.507484511521966,-37.65934948919557,-52.63729896902762 +8703,-48.41504869921404,-45.23632624420313,-45.043919058426155,-45.86208122647887,-48.82356440473507 +8704,-44.694724909969466,-45.675773782441475,-39.79333389454211,-43.00630006591048,-47.90822275894672 +8705,-48.127390331909346,-46.47086447598575,-45.093566579404126,-37.411820262353686,-42.53429889801131 +8706,-42.6442739209308,-34.55640845387496,-46.26537406044465,-54.95344841904093,-46.68077639861083 +8707,-42.8643365261208,-55.29912171515843,-46.622322585368345,-39.71272447917634,-40.93311353857859 +8708,-53.62416701953611,-48.00810629721955,-50.98573978876135,-37.713609258688166,-51.0769285538156 +8709,-46.063397452186344,-48.911617166712624,-48.21308182996368,-40.59291848418878,-41.82257148539175 +8710,-45.573501926824704,-47.48903656880911,-39.4285340530705,-57.21576473240031,-53.895495539717494 +8711,-40.27794031687901,-39.80928391099168,-40.71707420167317,-44.332200493574724,-39.8052031554003 +8712,-42.79145285635331,-45.76575609717118,-51.19579755314206,-47.14752618685061,-42.13831059647116 +8713,-46.50452079185795,-41.676744659668984,-49.1733043961507,-48.64394579858736,-38.8636462725554 +8714,-49.849384242961484,-38.41515194397289,-43.90655778277129,-48.617072307271044,-41.66714541355451 +8715,-41.10421494763193,-46.24867672563125,-49.539728438297566,-43.38507285427521,-41.518588185790136 +8716,-41.607817114763066,-40.52141608375952,-38.25632220221297,-40.80775010987542,-42.2312253702957 +8717,-42.63625371276749,-46.17581280592677,-41.33512125171527,-39.40700611805232,-44.16461892444675 +8718,-43.21521669345984,-41.14580855838369,-46.40306330060558,-46.058968181103936,-47.825902086904996 +8719,-35.810606260793605,-54.32709924092434,-42.910238783455625,-45.92353219948354,-47.58185802964793 +8720,-43.13373679887898,-48.77954917347831,-37.401039773128,-45.57106202415815,-42.942978489233376 +8721,-49.073197112092295,-43.49652395164859,-53.11443821619739,-50.530541386826464,-52.89219074253798 +8722,-41.867144328575435,-43.00315236642681,-42.37412863044124,-50.17367937917705,-47.28636386755079 +8723,-43.70511189218319,-48.486589304698775,-48.232383445361165,-51.66006426398407,-40.59379056981108 +8724,-47.07765337664794,-45.0501219945207,-45.067612977598074,-45.84585963417688,-34.28947865540866 +8725,-40.71528741268566,-44.20232723624456,-38.41683114728013,-41.97279656951588,-49.15142193014866 +8726,-48.357446847664185,-52.26496378797246,-45.66646396711954,-54.4565774786659,-48.5152766520673 +8727,-39.34972988337778,-51.88372149021364,-47.12608341640086,-40.618741083641225,-39.46704988773844 +8728,-47.87395016440017,-46.17133821444058,-42.42095937542827,-49.74217386174162,-42.06019955099701 +8729,-45.044294033010694,-42.99332081165117,-42.13967488190734,-32.23620260919993,-40.89962388197593 +8730,-51.26948777211033,-40.72989124560452,-56.97485411957977,-34.12961141488235,-48.78371857100405 +8731,-43.05351096673095,-44.92766399198116,-37.00219412201075,-44.52587053258722,-43.291431307495046 +8732,-39.532683270187185,-49.50041117008162,-48.356531275302885,-51.07651223292738,-47.41303396609291 +8733,-41.90309254668039,-38.54024910403275,-50.68241775846735,-51.5393807665295,-46.59311883571257 +8734,-54.66869998442674,-44.40860164562588,-41.69428219439208,-39.99223206495324,-45.10502921464865 +8735,-50.28107084090526,-45.63046859947212,-38.862430065794186,-44.402554194589314,-33.83096987386769 +8736,-50.74229064370203,-32.478443888926954,-44.9122329429047,-46.90130833572013,-43.89824731939063 +8737,-41.61170831816953,-41.48661253716861,-45.895139179367185,-48.264875348175224,-45.57170206008233 +8738,-35.76379376803667,-41.25901606085403,-47.90441496685341,-47.900874410200466,-49.514968954556 +8739,-36.26903927040205,-46.12205494934118,-45.82875472135116,-48.95596435048007,-42.75317700836179 +8740,-42.67937430029456,-48.62114446197689,-56.925372293458764,-47.75420227941572,-44.97084801148101 +8741,-42.62091166015498,-37.31070177206654,-46.033774446077594,-49.61162999492456,-48.37020592455167 +8742,-49.76577815662379,-37.62602219203669,-37.56098749635148,-37.07196338665287,-45.67302690294235 +8743,-45.030843638054876,-41.58223226963451,-48.70571543628081,-43.50486972309743,-45.81846908916392 +8744,-44.095172038249885,-40.041402305905706,-48.10054567311485,-47.25813580305766,-42.839821079820545 +8745,-42.05474904185703,-47.55700411191697,-37.69690794761364,-44.71963310637725,-39.937546949153386 +8746,-42.473640015789684,-53.276372098157864,-50.82733197621966,-39.050528868120814,-48.34171332358974 +8747,-51.599314986078554,-44.03762243478055,-57.87543413691877,-41.7829736189783,-53.10918267031169 +8748,-45.602718918260365,-51.4746682125662,-42.61936386718818,-45.59095809944393,-49.02915553261088 +8749,-47.13693073439109,-40.40960435347957,-57.33388864412043,-41.677634659674446,-44.49686958171837 +8750,-46.312923392660835,-48.8863086889503,-37.1033126068609,-48.9091429263627,-44.55023790178876 +8751,-36.89976762300571,-43.91388737820744,-38.971115189817695,-52.19892205512809,-47.60253809446831 +8752,-46.207235448953405,-49.05551758641659,-41.17675114252817,-47.385723314699035,-39.03248307805756 +8753,-46.03377469728696,-56.23158013074614,-40.34124836505504,-42.01257283659662,-50.008971006212676 +8754,-37.25955519790855,-56.67006029767413,-38.56402344375261,-45.69223592086015,-45.88411590992437 +8755,-52.94856071334506,-51.5565298735909,-45.37630968641793,-48.06251525133979,-46.02430447447306 +8756,-38.32008471044003,-39.357895913155325,-49.10317349702057,-43.86828891839972,-43.269364979555135 +8757,-39.055835692725495,-40.26416459088149,-41.37365526205262,-48.525987430989424,-48.01506214823574 +8758,-44.76049587107696,-51.60979274481585,-47.541108776822355,-48.9089346568039,-47.65507474451355 +8759,-44.4834890237941,-46.78886467883274,-40.342468568628284,-45.64287369530572,-48.69124038077178 +8760,-44.722316438860716,-38.09919736358571,-43.80752341796778,-36.938800446907734,-47.09036905776398 +8761,-44.92073025911606,-50.45169622876601,-43.216880314301356,-44.21878748762226,-35.66824748131559 +8762,-45.87587111237358,-43.751932336630254,-40.0616218381675,-46.41829437957183,-51.72573033745765 +8763,-46.952797939091646,-42.9891302419382,-47.312650043558016,-55.67134090119091,-41.431267453034984 +8764,-40.631151118603626,-40.94059322324775,-42.77870441177289,-37.91497298695407,-50.074827162614234 +8765,-48.85833040875564,-41.71819012272099,-45.96775215417097,-54.22367767122244,-46.60376059751509 +8766,-42.26741817735278,-46.74158541739216,-44.40168483065637,-47.63139738845903,-42.032664182419374 +8767,-45.96933503942462,-45.41612082021051,-45.73473571770748,-42.1904490474045,-49.29483141724598 +8768,-48.33390130577356,-37.377220214072466,-40.279942639764826,-42.630512895282266,-52.41839873580009 +8769,-44.401476078016685,-46.048951589737065,-45.15717470571395,-55.50512703352025,-40.779890644454454 +8770,-46.5669982385905,-47.78141473568532,-42.76023163919321,-50.41405932849295,-43.545202909629694 +8771,-51.1137553160235,-54.9854285083068,-50.9848981121495,-41.91434170027768,-38.83809496184432 +8772,-52.12548896552496,-39.36289908525651,-44.268970700059995,-46.40135223763287,-45.537401180747906 +8773,-48.500490286890596,-41.286571504777456,-37.378596751931646,-38.58747476967215,-45.310714790560326 +8774,-49.431761147076045,-43.796921265676275,-43.34115200229792,-48.430632397425214,-48.31283878132882 +8775,-36.554246709463,-51.548692741801446,-49.56191313050788,-39.578397292769864,-52.16481314665853 +8776,-46.45909924603825,-39.61426565227992,-52.06048689110004,-47.748300958669006,-44.06375116564254 +8777,-50.502445912203775,-41.56360296938496,-43.497985877316076,-40.12695060217807,-47.96106224689761 +8778,-45.34687583558791,-54.39733832475502,-37.05103877865938,-42.91646944632281,-50.21765821544207 +8779,-40.13992221016638,-42.18376740452967,-49.55699814409673,-44.56948301703238,-54.03874379141444 +8780,-43.31056841421489,-50.284578414775574,-48.085155328431455,-52.189290927412934,-38.47489356149378 +8781,-48.4263124005885,-42.61820150189574,-41.74319394005524,-41.45453030532579,-54.20874862624419 +8782,-43.75141209258807,-44.27464571787057,-43.383381461791146,-47.5880943667145,-46.38748326509394 +8783,-48.589432786487784,-44.08003635168985,-48.407165496192434,-46.207895790895975,-44.9852325205029 +8784,-39.30015350358387,-43.60733339560357,-46.47385886499827,-54.839564685627195,-40.68608087744257 +8785,-47.9495404156382,-36.721072278435855,-43.119301543372785,-44.64775422852813,-46.25911426666598 +8786,-46.52227616327223,-44.87345157495585,-46.195029667860204,-49.750001782284755,-35.19358645406082 +8787,-44.16631507213206,-41.30194418572832,-36.921991575203336,-48.79459887566789,-45.35177849694151 +8788,-48.77445154708909,-43.69810473973003,-41.28643067890676,-46.45743601022668,-42.48237093889889 +8789,-50.0485828846708,-41.525434802181735,-53.463028476708914,-46.084400776023855,-50.83374737307083 +8790,-53.053433165432544,-38.847324112357384,-49.542249303783514,-47.50199262282872,-41.382821914551585 +8791,-36.96861550735678,-45.39536597941713,-42.97288982426282,-47.50313280055391,-47.94732112989116 +8792,-37.66974558114694,-41.95694579682283,-44.841229213759114,-45.928695088356136,-54.77977260460009 +8793,-39.512772966475396,-45.741604566101806,-36.02624530954395,-53.59798416614465,-39.714014356995335 +8794,-39.537216273054256,-46.08072526275225,-35.76508278560783,-49.5194799562759,-44.32533708604546 +8795,-35.61557468795966,-52.98747342867053,-46.936610895558694,-44.36459713550485,-53.67611814388681 +8796,-44.01393839192467,-44.986845454346195,-43.11565708004546,-35.809725448290244,-46.37180949046767 +8797,-52.162542814300686,-37.665708919007166,-47.46269159823849,-48.870570239687304,-45.291025114372246 +8798,-38.3601531427168,-53.665609084119474,-50.01877559916404,-56.42051920068056,-49.421412030679406 +8799,-37.56351684943922,-53.458263902468936,-53.491878853013894,-44.16263157669407,-47.19539471836172 +8800,-42.047392984699535,-42.041010600390706,-57.96231780123443,-41.88375816823162,-47.26281461246128 +8801,-43.72527531216375,-44.24124855393621,-38.80324686454592,-45.656776461996316,-43.230615414667334 +8802,-47.10741800449803,-49.99424481390724,-48.703592643036814,-36.908217257539455,-39.4954196602237 +8803,-58.61906425252491,-38.01351284868145,-51.864939598299905,-34.39308755133113,-43.6684422171669 +8804,-38.20430319428276,-56.3738055420533,-42.094841658909175,-37.0698393588865,-47.13147730715937 +8805,-51.09290149429942,-47.832534110918175,-49.06396802937065,-38.3698905411778,-45.074012664345474 +8806,-38.67202120705918,-46.77129277958617,-46.934305378613494,-51.46856035348906,-43.58073720340387 +8807,-46.38883464869995,-48.07230834842256,-41.537761919465154,-41.085534953096555,-37.06896020306614 +8808,-37.40436030688947,-47.692046381812666,-42.92063783691568,-47.34628442314223,-39.526012136151905 +8809,-50.77761959639643,-45.05920196934784,-39.60987968069146,-47.19886776173733,-46.488375884177955 +8810,-36.92527942635826,-48.63269882970935,-37.66819965498251,-44.11492472181529,-41.295344162551096 +8811,-42.08513838318503,-44.10493309687733,-44.01587877591715,-48.94920783033289,-42.70192680427453 +8812,-40.08025024555716,-44.601033493427416,-35.7986592907348,-33.77572499993861,-46.20498984418991 +8813,-45.98011000836428,-49.00298228050767,-52.01032122719615,-47.312170862194826,-54.31978371017734 +8814,-42.40340663528915,-46.20188167381346,-50.75799340781805,-48.10673183066074,-36.98882160087259 +8815,-40.495597075538804,-56.114676529061136,-44.844612134707084,-48.213438182331,-50.838976829674976 +8816,-37.63581960793913,-49.480150340694905,-48.08017107450857,-43.032235406107255,-36.924272166724 +8817,-46.844385168972465,-39.216512881070436,-44.181521049067356,-43.66089511138041,-44.872650129113495 +8818,-36.755698412290755,-46.42758555387626,-54.83801376517115,-30.990053963594264,-52.07992660373964 +8819,-47.14117961243238,-56.11488717052984,-46.385858153082985,-43.3485952661687,-41.9321969948459 +8820,-50.14624941095986,-39.675043710378915,-38.519988189518266,-48.67144395391781,-45.173243427736736 +8821,-42.211620652396334,-44.32716027714491,-36.64696857515071,-46.11795653092577,-55.45036545726471 +8822,-42.15536945939249,-49.78446777510285,-39.409534122240345,-45.12628023333372,-39.449123449558236 +8823,-42.599399481959146,-49.19265806055436,-38.35702655999458,-42.36414285749194,-41.71441590582866 +8824,-42.093700451695305,-44.68670947770408,-39.62198274223713,-45.57898137618288,-37.71836054895567 +8825,-44.10812538741771,-44.94371142242742,-37.38965974574918,-44.247435731391725,-40.66031698240903 +8826,-40.03461252823543,-46.66107571349813,-44.19024955595656,-43.461394405840636,-48.96832174720414 +8827,-49.37366291450224,-46.03799638021698,-49.43283157631493,-44.55620185219438,-49.127949725735526 +8828,-56.78383213241201,-44.15685741019157,-38.889468210529145,-46.77253807637246,-42.90677795071833 +8829,-39.27309203296726,-42.51614232056097,-41.06940803757647,-47.193082546943614,-39.87150588903317 +8830,-43.01964954259983,-39.90906271167395,-46.094115339633234,-46.70794605477994,-48.41461933182233 +8831,-42.04045282797791,-44.289849948621786,-42.59067861722823,-43.083408149811625,-41.39796291681899 +8832,-40.80426452728727,-51.023689144330255,-39.07290221365952,-50.14990459499813,-52.3016656425755 +8833,-44.67286883342848,-52.86392852136045,-46.515220401102184,-39.426063774952276,-42.5277535055767 +8834,-50.265486275587435,-52.92415436353417,-42.9820225660513,-50.810122478488346,-42.3141824723432 +8835,-43.781893247215145,-31.813069684047996,-51.83299558733117,-52.534188220578045,-53.05389478497085 +8836,-43.48722693912315,-46.05939043078143,-49.612817558698026,-49.21517777705455,-42.23685145614507 +8837,-44.77085877624718,-39.7237094356734,-42.741692682334914,-48.54255927353293,-44.111858922829626 +8838,-41.25955676916029,-48.213814608555474,-45.60790533581646,-48.3793019623278,-46.1967931659657 +8839,-40.67721625404528,-51.68536321597892,-49.22601976976797,-46.44347102929263,-44.66131165810886 +8840,-54.874694301742544,-44.639429001032624,-48.62466707675214,-37.44935495003752,-41.48542865351627 +8841,-42.80436876944558,-48.85619980537757,-44.055846004219134,-41.80718367030662,-39.55484173490301 +8842,-50.73404972606342,-45.652383582138526,-37.18193553467221,-42.63374402242455,-44.94291717821242 +8843,-51.35159008630731,-41.12945845761968,-41.07990122900591,-43.03954916244346,-52.22811346810482 +8844,-39.99547911399751,-44.63220351245977,-43.72398466648629,-41.56978057189134,-41.37906976501395 +8845,-45.39991420395781,-43.17441957785562,-49.15552657347483,-41.626037594505725,-39.00637810713324 +8846,-42.546738724412386,-46.419596774329264,-54.92988016601354,-41.297429520411484,-50.20633558688267 +8847,-46.87244234926991,-44.84270678531199,-45.60030940809882,-51.69808479698717,-57.307884416689646 +8848,-44.76557544555042,-49.919275606118184,-38.502143056531885,-43.10621069265632,-51.44284309709123 +8849,-49.18036894337305,-48.23737920630067,-48.685275423102084,-55.063603524743485,-51.55451216101718 +8850,-35.64336242538809,-52.43440341654648,-45.73871688112937,-42.14940586787905,-42.276909991999574 +8851,-49.748883942154684,-43.352670166264204,-48.458137070988286,-45.91152768380033,-39.70098319285345 +8852,-47.94879093560606,-46.735879281064044,-45.23254039180339,-40.54148651477773,-52.865560321400594 +8853,-38.27869677353576,-41.134457279837676,-40.01020873192271,-45.72741728422047,-52.30785340630558 +8854,-42.446079808186006,-52.50956535530843,-40.52610048862184,-43.69913999071153,-49.75669361595317 +8855,-49.05630676990433,-46.98313647232675,-44.56586218905287,-45.43407082350796,-38.72620367475894 +8856,-41.40919384092762,-44.19465278430996,-44.93351934041722,-42.74675444014879,-43.33538756408384 +8857,-36.62018603131329,-42.11634204060297,-43.333123078202114,-41.47814442906204,-36.79361930688651 +8858,-51.98051671055213,-41.6507140714106,-40.77849034522219,-46.339631974517516,-41.42226854466228 +8859,-55.42637804703537,-51.4674340128518,-40.115381158920755,-51.51326437227485,-48.44188205426165 +8860,-48.45986809887558,-53.30787334809059,-46.519993335181795,-43.04339099196336,-40.37661501811341 +8861,-41.090371425167405,-44.62892142765586,-45.37888176280725,-51.132679357622244,-42.21227798859814 +8862,-45.804491467640865,-39.642473883981076,-52.80453392315619,-42.192011209789285,-45.05545233478138 +8863,-52.844046493199585,-53.65657865830553,-40.85189890629362,-36.11149100050581,-43.619601723678656 +8864,-46.62528685199601,-40.90625819978166,-44.04611352031454,-48.117686945401545,-55.9790084699675 +8865,-54.85548109152104,-48.87668093983956,-41.6270731040752,-48.97274666950544,-37.41609326078507 +8866,-43.41429584295691,-37.78700950782012,-38.551655306302315,-54.719862994804515,-37.13808475973132 +8867,-42.627249321291735,-55.391411763856965,-40.14744640655939,-46.558250091537815,-41.60332474827704 +8868,-57.16424086555708,-54.167383933740176,-48.90881941753893,-48.2817067692955,-43.0174277323866 +8869,-51.28334489856353,-35.331919208346754,-45.19023727244866,-38.27708429945582,-38.375080233333705 +8870,-43.626647117978294,-44.1652138736069,-47.81235416470727,-50.2672718299216,-39.99985058511851 +8871,-55.00221282097252,-48.1611205937568,-42.0824934873068,-36.535997610198464,-41.28395731486325 +8872,-41.80352916282615,-36.82085698697609,-48.39544167601943,-39.03530217233072,-40.63723686034543 +8873,-40.19974927714658,-52.54543699270889,-49.74178614250555,-49.712488297770676,-48.26445167871885 +8874,-41.70632757301918,-48.13349796651677,-41.55052328235865,-39.859762416057436,-43.89545199471882 +8875,-50.78133680592162,-46.97064358164891,-46.506331217729425,-31.270189158519536,-40.568061655193176 +8876,-44.05544936947708,-50.11744904455412,-46.41787247231894,-42.915239484807756,-43.99525685663002 +8877,-53.1118706875644,-38.8208851454843,-40.97495480591423,-46.568750066670724,-39.700403203911414 +8878,-40.452382448671095,-44.491966010758915,-41.08701808964714,-41.20690141292096,-41.272556122689764 +8879,-43.29044643604764,-39.27977383285404,-38.57512590308899,-45.72066807945465,-36.914531842139446 +8880,-40.74015662934644,-37.795713434192784,-54.63995107108496,-49.68310154368695,-47.996277265758536 +8881,-44.76246706769952,-43.28752674632477,-49.24751563268484,-44.968639844363416,-42.37686817120915 +8882,-43.51865580642658,-42.12480394065332,-42.058556960220365,-49.8269326738112,-37.87860548766257 +8883,-37.08225795352657,-43.66600509655876,-42.91580642638198,-45.340683414176326,-45.62467290177739 +8884,-42.097097113526324,-47.46445308941209,-40.422228608207206,-41.77100470514218,-39.63851864704631 +8885,-42.273687785438106,-37.42620180353813,-45.60473793747634,-46.91283281916216,-45.87399609128337 +8886,-40.75134516827499,-37.07093637603307,-41.53828380801792,-50.332168228453234,-40.00049388171613 +8887,-43.61702141845335,-39.75123114256577,-49.713243895222604,-47.30419848216956,-38.57757343543139 +8888,-44.96401742609078,-42.120349492343436,-41.12922045776784,-50.05099659450331,-43.384899979107864 +8889,-48.00206692074358,-48.10928927220422,-47.6972209379075,-41.88444217952605,-51.427247005913195 +8890,-42.69672909721341,-38.137026679454976,-45.355287701597696,-51.705930287298656,-40.0964871592333 +8891,-46.02768508646943,-43.26317689431011,-40.59917009347668,-48.107637548228865,-49.8133244901802 +8892,-44.60452868913169,-42.232183085149686,-51.15721130260336,-49.88053050300681,-40.41107069556353 +8893,-42.668524424197265,-43.83949562868711,-41.847160211551284,-42.148528743909345,-37.01144912099863 +8894,-48.320427266579024,-36.03552006558749,-45.330350701654574,-49.02508675444323,-40.41289369255917 +8895,-47.86434238460823,-46.71641996825674,-48.91892774348755,-47.696160209759654,-49.72240854248597 +8896,-47.54380008792764,-42.65683971145413,-46.43960284312575,-48.61863446863776,-39.12406611575816 +8897,-44.76588144740896,-43.75647174874957,-43.14998449326559,-42.34753137472842,-39.71564813232957 +8898,-38.189581395254955,-47.93726053189674,-46.427594229979874,-52.100579977021376,-45.35152312923682 +8899,-41.46914215553364,-53.58042585378948,-40.702878519046976,-40.529967146389794,-47.07768455646 +8900,-40.80819831143807,-42.44329525670261,-47.17179703394237,-48.38136320802786,-43.94198237446046 +8901,-41.120667227684244,-47.37781593801874,-47.35343972883634,-46.09591653354676,-44.27640130649394 +8902,-43.7270066175988,-47.030872252629635,-43.267926709319184,-41.791439575780046,-39.83689363280991 +8903,-40.04587475754399,-45.252412024645544,-35.82143261196663,-43.075329798762624,-43.578576252648524 +8904,-40.69690019187749,-39.20223148623562,-43.79535793843711,-40.819365253631425,-48.2583198479649 +8905,-49.424734428426135,-41.38122606826469,-46.91082232958545,-56.229530047766964,-51.551052918706304 +8906,-48.184384247058475,-49.85447208321266,-50.91098509565888,-43.35511838665806,-41.20143969603209 +8907,-49.926903253158024,-50.303035482930056,-43.61474456673437,-49.163102671675425,-40.672912284685644 +8908,-39.582062890599545,-45.67410274465008,-44.8775548475829,-41.09621880785196,-42.402247059290296 +8909,-40.58141905542283,-46.20698447852864,-46.050618974606024,-42.76993365182694,-47.45175990198567 +8910,-55.91845685676294,-45.51226562170559,-46.4097424735544,-41.97291184194449,-43.50558521425664 +8911,-44.33235719940604,-42.822496014513845,-37.78718872264667,-41.65344345525838,-42.802050840437346 +8912,-51.12093698153788,-43.8025505014501,-40.376854047926614,-50.1137472719732,-47.786631861491806 +8913,-44.7912653142259,-40.96973403607037,-48.880429036225806,-36.02751451262252,-56.73075229615807 +8914,-45.27931783684361,-39.94304959361793,-43.1231926445073,-38.087821532581394,-38.54527194886666 +8915,-45.180665518182785,-47.63125695405626,-44.047065142650894,-49.23687823755296,-48.98802330590271 +8916,-47.07223517060264,-42.01969389806317,-45.36293537193173,-50.50534150705397,-40.58376404402491 +8917,-45.230138475048854,-49.377411690839736,-46.40199903096634,-46.64941658268421,-50.20835849632974 +8918,-42.95160442927145,-45.64507152337587,-36.27449847732148,-41.86657143199764,-38.82052859033433 +8919,-49.95458951162237,-46.63814767318118,-46.93759227135226,-47.28766085910337,-47.045749006403675 +8920,-42.023908996915104,-49.54276503330679,-39.63243187059246,-40.2253170033041,-37.21673334701576 +8921,-49.48883058643243,-39.28689311644032,-45.06544729134265,-43.20966495430391,-37.85125881632707 +8922,-41.888759211058016,-38.88777367243595,-51.04146689170048,-40.32722743484955,-44.23159377482925 +8923,-43.889857728406064,-50.25847594540918,-51.26278384261992,-49.3314931661189,-52.79923646148596 +8924,-41.030552537674126,-41.03275359721364,-43.44178261639041,-42.953528029912896,-44.06737216448647 +8925,-36.86940934241336,-43.602752874640096,-51.82979284507349,-39.17230233339894,-44.58285727207178 +8926,-48.918147157354966,-36.89673979577126,-39.93200345808582,-40.16511729646735,-41.57118073695963 +8927,-42.48140752911369,-41.50083577795048,-51.90822470700395,-53.25215628579093,-36.43646815896898 +8928,-42.36151662541595,-55.3160044340508,-37.83203498761069,-48.70997378147837,-48.16418154438802 +8929,-40.4053243885039,-48.57031761046537,-48.46568466154299,-44.23803404093114,-43.58749252706267 +8930,-44.05563738033292,-41.34626186166307,-41.30140770707033,-36.15025107739371,-45.23870726497999 +8931,-45.941652951257836,-36.9434997950287,-38.41269031659509,-38.666547171733924,-50.895989902189456 +8932,-44.5093214514742,-45.26129640544515,-37.7910456150744,-50.16285180820088,-46.0998815796459 +8933,-40.05051595916954,-39.6764195928568,-42.35471608262085,-40.60912678508674,-44.03495808967669 +8934,-57.81928613372058,-50.78348311227855,-44.21709367258637,-43.80802951751147,-38.04769510530547 +8935,-42.742186938969205,-46.017673826879104,-39.9779262831865,-44.72174844473607,-55.40759127247448 +8936,-44.731067091339696,-38.06657932541081,-42.09813407855777,-44.214312197572674,-44.455233836760215 +8937,-38.224941534334775,-42.968170545841105,-39.40249653377182,-51.34542435041717,-46.15606538563195 +8938,-42.462023989795355,-40.4164569141418,-39.79141275275153,-36.39456296525311,-43.305550469847496 +8939,-44.35625238090909,-48.69468394217274,-42.635070859298295,-41.83980342465679,-54.41899394150203 +8940,-40.23151117398843,-36.754483753090426,-42.31608782604957,-45.04181923389255,-45.62526862203079 +8941,-36.767510738172504,-41.85970102623069,-44.464938973034,-48.3244897609209,-48.05930680738008 +8942,-45.63076985784741,-36.8853602096134,-50.09674839027289,-46.72217561750787,-43.09044650246193 +8943,-37.94464410654645,-47.97203209914802,-41.92968434066722,-43.10368831027734,-37.27882724991792 +8944,-43.96842693117388,-45.86660456802159,-50.43750468085877,-42.40444693402104,-41.65677325107543 +8945,-42.132522101518994,-39.772787259979395,-43.76381797110112,-36.59634225613059,-47.96107928755182 +8946,-43.427652981840495,-54.99358827992118,-50.25091155842976,-42.06308231318469,-54.08840041549264 +8947,-48.75813339350887,-40.17869784212114,-42.81306709016161,-44.65762928605657,-45.60705392997287 +8948,-41.70700311565633,-48.661774837262044,-44.76990539551341,-51.977765512040044,-50.58451542409524 +8949,-51.384168506637735,-45.83460663342771,-51.57898574575623,-46.96944582569513,-45.83307738858096 +8950,-44.377602857246266,-49.65883228109332,-49.601862382730104,-43.18588486228615,-45.65844211545228 +8951,-44.56751605820517,-44.722193229905955,-42.752363718066796,-47.63136702030911,-38.688142479761375 +8952,-41.35857935586252,-45.11676917264858,-47.96319402986968,-41.99492204769995,-50.27586190576542 +8953,-37.669742657026234,-44.156067996774794,-44.49791460468239,-58.437511699292315,-50.990227427422255 +8954,-49.26520407215252,-44.061480377024104,-48.83082789192004,-42.5073537615969,-42.137683248142274 +8955,-48.856758863219355,-40.741034415744835,-37.79133084077027,-45.0049094465869,-40.723616081224925 +8956,-43.80162085924606,-42.2989465752321,-42.78905260784296,-47.89481428269212,-38.68654387889571 +8957,-48.72383187365423,-53.68616933665035,-45.41189921946693,-48.43895834055034,-42.21690217839388 +8958,-41.15710359229085,-44.89642428051466,-42.01294143794318,-51.46159623824473,-42.3748175329556 +8959,-47.242762729868886,-39.737226936888085,-42.09935758377814,-44.820721091519246,-45.58782018260082 +8960,-48.05123049264512,-35.99145947752336,-45.08579372170276,-40.728273346607715,-53.735162854313295 +8961,-38.73548878560826,-46.13091561556659,-39.207901787112135,-51.32640742152495,-39.065695212341076 +8962,-40.651292559669685,-42.28842651392314,-43.049952005087746,-46.472986030120005,-43.87677501269035 +8963,-42.73339215356821,-36.80644078338373,-47.63392759825484,-46.81233564309415,-39.76028055960521 +8964,-46.531321075753766,-44.614112132714766,-38.650684895627876,-37.79617839993947,-41.400980599227516 +8965,-41.418935993562975,-45.33033914198423,-48.78749968886792,-42.73278982934938,-45.98708593172929 +8966,-54.03254146872257,-41.65109820349751,-48.46287450534971,-46.57755801139357,-41.64927746343854 +8967,-40.69607272294799,-38.58953711537691,-42.68324670061589,-45.47701401613425,-41.232612602410974 +8968,-43.531668377089765,-44.74287336489094,-52.64258583231508,-49.42883250904934,-42.833429060372474 +8969,-39.48670989557285,-54.18635393066957,-37.02592288683591,-40.28509951734316,-40.17379307656832 +8970,-47.50142531260561,-40.592086477668346,-48.50566454618404,-51.72861629257229,-42.967755913836136 +8971,-45.87573085718258,-51.13162901804916,-44.47229499097113,-44.29440527918449,-41.86556917343426 +8972,-55.13234119912566,-37.225843980789094,-45.85637009793041,-55.565812213877855,-46.212146931403616 +8973,-42.58851020063965,-49.163130382841416,-41.5753411070077,-47.74774426368027,-42.8789037704544 +8974,-44.98624677875288,-39.7316300495562,-38.062373331516106,-45.849870705232995,-51.39656006246827 +8975,-48.38733339432453,-43.05085099995632,-42.463472600659095,-51.54389317172018,-53.83233279692165 +8976,-46.34536637286807,-36.52094031167027,-39.462332775117,-47.04458762558163,-48.53557958698642 +8977,-44.95323391257999,-34.24730783016607,-39.83926648398739,-48.82784610228376,-50.18751692089721 +8978,-35.78884412816596,-49.85472426192278,-37.167765351755136,-50.46153370329899,-38.42195474999486 +8979,-38.563699112031884,-52.03051359192894,-35.923025351522554,-50.79794449676692,-41.98244239098202 +8980,-47.0142684611608,-49.55812845080936,-38.229882189421346,-48.76471990201429,-39.33664692352431 +8981,-45.422923303796686,-52.34866495270014,-39.96528169108697,-52.62495207475108,-46.87926823920375 +8982,-53.13066882996218,-39.57875988084445,-37.58406169736525,-41.58294683341068,-41.73182675287824 +8983,-53.09328977976963,-47.02112888933128,-49.43294791857222,-40.842027295648805,-46.45201366170089 +8984,-41.55380183383564,-43.9648204018023,-47.71527465631474,-43.1604613235723,-55.05040862328026 +8985,-46.157405827088944,-45.39941036593799,-50.422529838652586,-41.83456736527877,-39.84948796996569 +8986,-42.76263095451131,-50.38221351356238,-41.648579531586826,-42.10000575911766,-49.482709195886756 +8987,-41.187498734979684,-43.97577305348115,-48.11462822135875,-42.43919772393915,-47.93242366345841 +8988,-46.677876961717864,-54.03215483962252,-36.422429907969466,-50.330037190676734,-48.68057661885881 +8989,-38.47566995965356,-45.7515320413816,-50.51134745333828,-38.32333561710502,-40.04262739705489 +8990,-53.93353828902249,-48.17682864093218,-43.273933922006684,-38.19458975979525,-36.61537702631384 +8991,-45.44257865821024,-47.14338576199297,-45.25218145607262,-41.21194734206181,-41.78465639822101 +8992,-38.112214696048895,-45.758897165834526,-41.42307884314712,-36.67644846745427,-43.16646203010149 +8993,-42.73268315443581,-47.97640418172648,-46.79483216141825,-46.818054090789936,-36.70411615605458 +8994,-46.01576051355188,-47.58833916410135,-46.90903526167976,-43.21486787293298,-39.886953580222354 +8995,-57.18414303215439,-45.99343011887324,-55.50493669248758,-43.278682803696825,-51.18738539444395 +8996,-44.58495407232154,-44.17385565282597,-37.69617794317563,-41.73147046424298,-44.62771193630358 +8997,-57.975077596383265,-39.82009646324615,-50.72935930019045,-43.2366533123606,-54.538655050051496 +8998,-51.7770730403336,-52.30157270457692,-48.60759483865052,-43.21070222274206,-47.10278455823172 +8999,-46.15094584685274,-44.88247864655535,-48.15693409111267,-55.19715828279678,-51.03298046092018 +9000,-45.641491269479445,-43.64335914397118,-42.442848727437614,-40.466670874430115,-38.25648237713543 +9001,-39.10751622019601,-44.16993069189712,-54.01324209738316,-45.070445178063935,-53.85150301536871 +9002,-46.39827224014789,-52.91485767375687,-49.17000349508044,-48.84759988244678,-46.46024408261916 +9003,-38.85397404900581,-42.60689075200492,-48.36376325412275,-41.86994435966709,-49.7237155464094 +9004,-47.350172012398744,-39.88236242349499,-48.37965583951189,-43.4133191509961,-39.17116949566008 +9005,-39.439445363525294,-47.19267131790728,-39.49023249818652,-51.48197222458316,-40.23123437018969 +9006,-43.77112502416355,-45.97218928792878,-51.04186240241158,-55.291475159076086,-52.57357674853737 +9007,-49.57492407385882,-48.91980831994597,-48.30623038551645,-52.09026193990761,-47.736373729811966 +9008,-51.6244346661715,-49.7421853251327,-49.29657358516396,-48.56392875285489,-40.72285437146978 +9009,-39.745724924923934,-42.84631356274991,-45.541925480993456,-51.608235237866424,-52.73354375073596 +9010,-41.76058375729194,-44.663239459717445,-47.976676948549965,-49.41301882574218,-48.18472453457816 +9011,-48.47836398344413,-46.81809761897831,-46.799264956988026,-38.60539760621532,-45.04587567496466 +9012,-46.10035490296507,-42.541509549710305,-41.08972487318905,-47.30498073363532,-40.284392078961645 +9013,-48.4035899677477,-43.39938490230977,-53.073642904669455,-54.75148876012355,-49.169102347864126 +9014,-46.419207405581254,-47.79204528783017,-40.24649313652578,-56.00378313523568,-47.668137886795414 +9015,-41.38929265785131,-40.49661163292656,-52.32123976038075,-51.93060708387539,-46.50185705634455 +9016,-42.236690804232346,-43.93114090133427,-41.031140914848095,-50.721652832693664,-50.538157069195606 +9017,-41.41889119067713,-49.183675459522746,-51.62524736845929,-38.0123153378982,-45.000550044932965 +9018,-40.57601149295088,-49.168991715925145,-48.04224727290301,-43.70900154453608,-51.13226580516166 +9019,-46.07681163980252,-38.90197098398532,-48.909657270908895,-38.243317610584114,-43.53383877433206 +9020,-48.847829573089186,-38.67269747262951,-45.43600280883815,-41.69468448344572,-37.61743191569452 +9021,-41.75743329159939,-51.52720684678265,-43.989206467830115,-44.87759968636651,-44.11851892947056 +9022,-47.22497133706097,-49.030870402994545,-42.3655462231313,-36.95435725992464,-42.076750637536946 +9023,-47.99395392258524,-39.9864708154687,-49.50706441993854,-41.61094759900787,-49.26583765282617 +9024,-42.917016060317785,-48.47948198907019,-58.36124644865411,-51.726321081701954,-49.93761446086672 +9025,-41.406075045789095,-38.135629081739715,-43.848976641380396,-48.123894256853305,-41.31329102986232 +9026,-55.32009256455577,-42.11645833855661,-36.147686563277354,-39.341586855260495,-47.40190652757004 +9027,-45.49014824032128,-40.87986361203021,-41.641949565674906,-38.16504182727422,-50.9707881614086 +9028,-42.194868412842254,-40.186758584419685,-38.931480486471784,-40.916899048249,-43.28434096581717 +9029,-39.08736989231233,-52.321180059776914,-49.28111759925808,-44.42380291882242,-41.3404244227788 +9030,-39.38736798785156,-36.491856036355074,-46.25296047279429,-39.15052167884849,-34.54105304909843 +9031,-41.55620635378906,-43.61490286376336,-39.087189461956996,-38.41076604418693,-58.58203129067961 +9032,-53.10119234772528,-48.82881397394419,-38.874659992710136,-52.4700018043677,-50.93677842818111 +9033,-45.859311804112835,-40.672437718362886,-38.651369681401285,-43.260002701337385,-36.12894248516983 +9034,-47.656534202746265,-44.51401873940049,-54.62209056107637,-43.283780390835105,-47.10324074197766 +9035,-50.730697715532514,-36.06533342812621,-46.437670958608464,-44.32773117698172,-45.59646380768829 +9036,-48.135492084962095,-45.55201178991614,-44.984832535734235,-36.275057295408175,-46.1755481285173 +9037,-50.472332360570505,-45.07402233913483,-43.594062921762806,-43.27910263857364,-50.472848660430124 +9038,-44.86188799281224,-44.17278453007408,-43.729029587997665,-36.33733911302686,-46.046241798050104 +9039,-42.01980518147436,-45.41490200746824,-38.54380576632108,-37.19497427691579,-48.2738047893981 +9040,-46.74888650281092,-47.84005027985405,-45.02704552794669,-46.829787565561844,-36.25211848267681 +9041,-53.806800705953854,-50.360618341074506,-36.47598258246458,-35.994369779153736,-42.332864941912135 +9042,-46.1061966622158,-40.05217006899681,-41.06111320246046,-41.28726317117736,-41.24867255865908 +9043,-44.41198687045032,-51.9068750084886,-44.52997100128812,-50.2891407217886,-41.238886914629674 +9044,-45.78283146036913,-39.282141950040526,-42.66324646246614,-44.68467053999716,-49.17325432779559 +9045,-37.1568995672616,-42.955562323339564,-43.203471117333365,-42.199142202744,-45.20671311442466 +9046,-42.30639967243571,-43.77742696185938,-47.57142539247822,-44.07396632775591,-49.562366284823554 +9047,-49.56085737442894,-47.46299824151854,-40.154230843305555,-48.93443613897489,-48.81524785072234 +9048,-46.60755305096829,-37.62080054905967,-46.27108608414442,-49.835216115126336,-47.68139017136016 +9049,-49.11500868380148,-52.43676650942011,-46.92594360055677,-40.64705256555065,-45.36588277057774 +9050,-45.90591696638355,-48.38402664690786,-46.44681457329423,-40.29733338981111,-52.756371628523546 +9051,-55.2287587614076,-50.80047462002656,-41.16040131028526,-39.01007248602882,-37.56907715392757 +9052,-50.2595863117971,-36.48734587697906,-40.74248481021741,-51.34215366594317,-53.8864180047454 +9053,-48.551526571978734,-48.86320280871918,-42.223823624783094,-35.54119268862404,-39.42409240444874 +9054,-43.66301120680029,-35.176776449461784,-52.32499022265918,-45.22359590365336,-48.79576937737555 +9055,-47.31738610142342,-48.29372719741391,-47.194114549360535,-50.934488868202045,-50.51488197346852 +9056,-47.66904906884178,-46.900083241839354,-41.505595909580165,-49.80180927045575,-49.89062249417294 +9057,-52.636545041231365,-45.066594585923376,-51.63683146546166,-49.26400602821886,-45.51070033562635 +9058,-43.07368200804985,-42.8610307668088,-46.71760036155612,-38.860105705583074,-49.03700750043594 +9059,-46.328748027577724,-46.57536125776178,-40.5276035903826,-42.23311512471169,-42.845746448165706 +9060,-42.70019489058008,-47.303063829123346,-43.05857148192313,-55.013212986346325,-40.49639652575949 +9061,-45.36334787360733,-41.59265763201588,-46.83630870904126,-36.82091445046312,-45.492300934500065 +9062,-46.5256174288845,-38.283984352552125,-54.74814165739948,-47.74270052327718,-54.15426916652636 +9063,-47.670978575609695,-39.20906987420155,-40.09344197663597,-37.52021183166985,-37.25917491945447 +9064,-47.0940554988462,-46.37288420151041,-51.84946978395123,-39.11684992044692,-51.8471244849219 +9065,-44.335212015725766,-34.82051026617602,-42.01364836623712,-41.49351937884217,-43.17337442517408 +9066,-43.89266868667983,-48.39275894538684,-42.498329375168225,-37.911824080666314,-41.95547436031022 +9067,-51.80625977701552,-40.95658883635548,-44.70997451941396,-40.331684374217225,-51.969882386011875 +9068,-39.068355969321004,-42.736457362571386,-43.23747289051523,-47.81868196623669,-47.297392310173386 +9069,-45.65260085300921,-46.371097035293666,-35.73483994887724,-45.773871468310574,-50.70604469544814 +9070,-49.375018245338524,-44.39039332053728,-46.44841818011644,-44.30688085141195,-42.020141474402735 +9071,-40.441710639239,-43.053976742013866,-43.831348060910706,-53.01083863662496,-43.698155449919234 +9072,-44.18066517675294,-44.190328755986016,-48.87302256536653,-37.973484643997395,-49.1708076457145 +9073,-50.65276679377942,-41.865783171969866,-47.84941860114232,-50.90255996490036,-40.46169372309641 +9074,-44.18259722960109,-42.2991409728145,-33.27124543904528,-52.06337170482389,-45.09999982373427 +9075,-44.992936123449574,-37.41516329402481,-41.17259731955586,-49.774155382175195,-47.325799381529784 +9076,-46.44509069328223,-45.5210763301592,-42.01366974760908,-40.77898599493307,-43.33554591840313 +9077,-45.922549108288045,-38.54994453500879,-44.81948051023818,-45.40195186824498,-42.524362140774734 +9078,-43.84379364255887,-38.8010170711477,-47.18442827080837,-49.18877557944211,-41.22316998235927 +9079,-42.44715887666173,-45.572049384183714,-39.77161481796506,-43.14758201418817,-45.175279002685485 +9080,-45.24918442931861,-44.7608932160469,-43.19962750831818,-45.53545338181159,-37.74125569567501 +9081,-44.84591266180444,-52.3940427144047,-43.957859954516636,-50.82802230587486,-46.57346631709648 +9082,-44.884376557876266,-49.83235279826639,-42.018683541835294,-45.96834858807182,-42.54641942389107 +9083,-43.29335567033949,-43.964178426457586,-45.44965149004748,-48.044170206803955,-44.84541821305162 +9084,-48.390344990532796,-43.19821040198911,-39.00333285480731,-39.90812727172338,-49.57631096294382 +9085,-53.04702974526906,-50.19446271666154,-43.21664803082467,-41.21014400578159,-43.55566257154374 +9086,-52.39342236096968,-43.13904334659823,-38.89695449458467,-45.27965161283302,-41.19117936593962 +9087,-43.75978789535869,-50.32534164803548,-40.93094400097268,-47.718687643576956,-43.17181255258432 +9088,-45.92270615287124,-48.59872810596723,-51.12527302947937,-39.68842359017218,-49.323796116305175 +9089,-45.488668260037926,-44.72643097344325,-57.72738658847399,-39.20369880079334,-50.40218350159229 +9090,-47.84501757418255,-40.893432451935226,-48.41665325557638,-45.744491298664926,-45.83795779238731 +9091,-43.63968964214989,-51.81503203256115,-45.38402815075272,-44.993741281401086,-46.86447725253473 +9092,-40.73365500926956,-45.068210945691554,-43.25545472583093,-52.17176911983621,-50.13932651517437 +9093,-42.685024668757514,-42.481995152824005,-43.25180060656456,-44.182325510550065,-46.57921365702009 +9094,-49.6671066885758,-44.36406515884083,-43.96881112994524,-45.58664316149364,-44.94466054400163 +9095,-44.56869488601265,-47.518062095343524,-45.97556518724363,-47.69852985760349,-40.39713375469581 +9096,-52.18999722132221,-43.178297796570504,-48.400375041811095,-45.26703186423923,-46.40901440226967 +9097,-45.88598362659482,-38.35465113002975,-43.218276608367546,-45.06636615543238,-46.073981282096014 +9098,-43.61425090088918,-42.22857576959884,-38.519305441411674,-45.541440051544846,-40.237177419359924 +9099,-45.93900587746293,-46.623579786422646,-41.54247770092187,-53.239262801018484,-45.9462714572079 +9100,-43.98257190187985,-44.29390608466022,-46.822767792569515,-46.26020128059229,-37.395217421387876 +9101,-56.1716218519454,-52.237870481753475,-39.895672194411006,-49.333437066042805,-44.494963627933586 +9102,-51.386562468026305,-48.456109309251474,-45.86115457490959,-45.97660544240394,-52.70016436411086 +9103,-45.970614784341,-44.435412904400366,-49.97606903780506,-41.124475536831184,-43.92628833878444 +9104,-43.92150155993882,-45.16189008131689,-46.023344242980755,-38.76731283865267,-50.485183171177454 +9105,-50.73933179152778,-40.46129104844172,-50.023831302846006,-37.56937855862717,-51.1525812178111 +9106,-54.52186826328122,-43.053232206322406,-46.55830382358844,-47.52535419817233,-45.964462122601674 +9107,-48.623238023057375,-48.1329449909721,-39.939705584726944,-41.582696794668415,-37.00879150348772 +9108,-45.55795522643873,-51.301932856879695,-48.42366910994691,-49.74970385687357,-45.11774614687131 +9109,-45.55559794671217,-43.60010704555943,-36.34209377387184,-43.59454922532077,-48.34019594913111 +9110,-52.84296536746599,-50.09621753610084,-42.30048980093288,-40.136347059168735,-49.27481711917763 +9111,-35.50033451597747,-43.87329236682591,-43.757927546104405,-47.33924907393863,-47.75622748459853 +9112,-41.97345833097253,-52.57055766321455,-44.420930601629664,-52.762841983403725,-45.51802568981894 +9113,-36.71674339894901,-46.54654666445958,-41.216262111071465,-45.82643816404606,-44.166608339392226 +9114,-42.26235360193233,-42.659981231752035,-38.55859134124632,-40.577922169154526,-38.24720117596627 +9115,-43.371083256386655,-53.165417703054615,-51.64184000176225,-43.918417737821954,-40.041654097186864 +9116,-43.44055226541415,-46.37398701847063,-40.33610368378328,-40.198008353642905,-40.41991458269749 +9117,-49.00371532020548,-51.118841778965276,-43.98273180044315,-49.23209574294893,-43.366520778689726 +9118,-38.534835303455914,-52.609589644073075,-36.59340559436062,-49.712039893721204,-49.84136474679763 +9119,-44.666677350684274,-39.89595428056762,-42.22918174855772,-48.11039425946907,-38.16680247154994 +9120,-46.67389383567154,-49.73780899672734,-48.2790418818725,-47.012612153922475,-45.52001175678431 +9121,-39.21728682881281,-45.27537398535949,-48.328998587503996,-42.266395088024446,-43.550387050056536 +9122,-49.83411512716373,-40.2120039810541,-39.1905587777119,-58.308812600346876,-37.14831651406268 +9123,-45.16514943355948,-46.36963800107644,-42.13941686380299,-40.45921485699217,-47.46128796647501 +9124,-49.16796868977876,-47.059521267866295,-50.62555503058195,-38.303278358521936,-47.54601968472844 +9125,-45.115721856515975,-45.06133003884131,-45.431257885643234,-46.11954886279394,-37.03840901734768 +9126,-48.61736592859404,-38.3029928450475,-49.03420693924766,-38.457503546152616,-41.326046237492164 +9127,-47.54860400809574,-44.504569043110315,-43.03235884292272,-42.60733831845663,-38.07587075101171 +9128,-38.1529174989957,-39.334445809921675,-39.448841665851425,-47.08984815634436,-39.366535658263395 +9129,-33.314566937435025,-42.35898761548938,-44.55871774079728,-40.22193707912678,-51.85838997803984 +9130,-33.9218956890363,-41.57491427978926,-46.84562876370295,-42.17146444261831,-47.81967570137457 +9131,-55.74944100052468,-55.54955808616419,-49.87915146230828,-45.76986843868159,-52.17415366968984 +9132,-46.63147211004171,-39.02261928275548,-47.823663835368315,-44.95962282793798,-33.20192435284861 +9133,-51.73284244327994,-47.303215890521116,-45.76464359739035,-45.131370077558074,-43.766787192357576 +9134,-50.36501389736069,-41.699343924911,-45.50774137831671,-45.718524612328835,-42.8922177252385 +9135,-45.825248426411726,-45.012480652163,-43.08029240278875,-38.623789382871706,-44.46434789632682 +9136,-48.96570389242442,-44.71035816706648,-48.53642410037096,-44.51799411041614,-56.96952755145058 +9137,-48.9429332771663,-47.302536305877034,-41.37900155401573,-47.83852732213259,-46.861776775039566 +9138,-37.8855801801756,-45.02223587410575,-55.30102734981489,-41.60206801491405,-38.827524065526845 +9139,-45.66252870624065,-36.863985672775556,-45.47608269076954,-47.121069165959,-42.068686225100606 +9140,-61.82670259630861,-47.279960535243994,-52.54984029662591,-42.45901246884346,-41.997954720673604 +9141,-52.75080559158077,-45.381967294354126,-39.64442197726259,-46.80097575738145,-46.719729842896 +9142,-60.74668855312756,-52.24790952756445,-52.46069910189877,-51.04455318335665,-51.904284464153214 +9143,-49.433286297096885,-42.69132738341335,-44.753528404689334,-46.58744428178674,-38.36208565413956 +9144,-51.29808947996948,-44.80781553825437,-48.70708470255598,-35.23837686436126,-48.656536364854716 +9145,-46.2051069857643,-53.283891588543526,-47.7561596027065,-37.38122762513521,-36.23614822837815 +9146,-46.510166476148704,-55.27522227967408,-43.5229815237986,-36.662533754410575,-42.5067764461276 +9147,-50.0130005305806,-44.40305659135129,-43.56605481573937,-50.54234662889921,-45.221247107001986 +9148,-45.74284313084323,-46.79949030686928,-44.624458047731856,-55.0816547281065,-44.567878448510605 +9149,-44.53744887811437,-45.026996309332475,-47.54186746109705,-39.048256096641595,-40.07710959549553 +9150,-45.232097998075986,-46.14600572783912,-42.2630213105585,-31.573971742558534,-49.092015289585724 +9151,-49.41545362484316,-37.70240183659206,-42.056546356635884,-40.68813488579376,-48.28502505545675 +9152,-44.45962768807187,-37.74164214189033,-37.81585726104593,-47.22065929670143,-36.92160639146712 +9153,-56.2205108122207,-43.68804156080241,-53.259486848822846,-43.66234430708677,-48.23871288222409 +9154,-48.32531712204884,-36.5553394672481,-37.536671998885794,-35.19695870381736,-47.66550440528926 +9155,-47.655217270555454,-36.47080596876782,-40.15828799212048,-40.359000297172024,-54.37232295954104 +9156,-39.43289994948715,-36.26901777635364,-40.971022021660936,-44.17775814963152,-42.96542573697805 +9157,-35.93765493944989,-53.29644537459564,-41.80649673958216,-49.84587024306981,-42.2706207823088 +9158,-40.69537823450414,-41.33510174316538,-49.19213816299653,-38.427978174758934,-40.477213445104255 +9159,-50.056808219633275,-35.18901626270067,-47.36705817845231,-50.61320358266115,-42.82100897037928 +9160,-51.93965796474759,-33.35101904651699,-45.13180104925689,-47.185493702345575,-36.24974282270558 +9161,-41.95703404832173,-36.2858368292371,-41.79314173112785,-34.91761254509684,-42.15700615499398 +9162,-39.945176876136465,-53.45852131553366,-45.0845410399905,-34.705431685010794,-34.901194824968776 +9163,-44.394861974968144,-42.89712330963718,-44.41596314188482,-44.9279184444328,-40.15037797773292 +9164,-38.56589251464086,-46.427099176786285,-44.58993461732047,-44.23202150406476,-47.7237999920092 +9165,-48.48895172853729,-50.956448836865,-46.228522734423436,-42.167538113620154,-36.74410782820636 +9166,-37.47397224251949,-50.0878386057089,-39.47163990398607,-51.81556443389595,-51.75762473256718 +9167,-51.665059778030056,-55.28204891035877,-34.16515026193878,-45.678728859403215,-30.020931311708267 +9168,-52.24076677771652,-44.17261482927485,-43.18375231396529,-41.41536840403467,-40.988890249359144 +9169,-46.98445541461615,-39.727628876523475,-38.36633937796739,-40.95875912022466,-48.35295343623066 +9170,-50.74381919534353,-45.68327452626566,-46.05103192900266,-44.55918608664508,-49.12520573044929 +9171,-52.203277838718954,-44.865490259555735,-35.445951575581844,-42.23577544775894,-49.21614548774321 +9172,-52.123249774215715,-59.16395808373551,-48.900241005378476,-38.391399669657666,-41.401046736088496 +9173,-50.93092484530424,-46.204266954192725,-34.782954123643115,-39.90165814410679,-35.26711394366312 +9174,-45.04838266563113,-47.34667289360353,-38.13780761623477,-41.343500228978364,-45.44457314132691 +9175,-48.30535091404112,-45.150885706997954,-52.50077461650083,-44.27433913778859,-45.131473170141135 +9176,-48.760331190341425,-43.656573722958775,-55.29731113178358,-45.23208208469159,-41.17134023447759 +9177,-52.285913655076236,-42.514529488873755,-41.93449404586079,-40.07091432420541,-49.877085958725765 +9178,-39.41592644660024,-41.49915226692508,-43.56360253951434,-39.27265121154762,-51.76606744787069 +9179,-47.98810371157377,-46.14788538543071,-37.537977049978814,-43.18447661567451,-50.4397225436973 +9180,-42.40676255790673,-39.13528610873744,-48.227147679884325,-47.83806877775538,-34.7871385430731 +9181,-47.11996776177726,-40.542217617692366,-51.85816100560306,-39.314209550036175,-40.43282328933795 +9182,-49.90741408229837,-49.97736934147136,-43.12150372962957,-44.28649695118528,-48.69914226290096 +9183,-51.83500669816394,-48.34987260967002,-36.6710957016857,-46.05256522610587,-43.261582319218725 +9184,-48.37588567488965,-49.21740172459645,-46.84205941858573,-45.40739796078746,-39.758220053192936 +9185,-40.706642525304666,-46.34314792801527,-45.715824018688004,-42.850300021694125,-42.81466907226842 +9186,-47.74502450853991,-46.22621561298752,-41.115022320502156,-56.30615087047483,-49.893938514408624 +9187,-43.99501558009685,-44.39999075602396,-46.285837982381274,-48.603073559623304,-49.34714392844388 +9188,-52.296430410088114,-51.57488268084217,-34.83512628610466,-44.834712416256785,-42.45934209131755 +9189,-52.52159915138168,-37.092102940890555,-43.507613335001146,-49.74433533237134,-37.782588191338014 +9190,-43.288148129719644,-46.62597421009827,-43.15945199907023,-45.222521590063764,-43.52074678837003 +9191,-45.795890411534856,-42.63448543572925,-41.012898620517774,-46.13951637641818,-50.44549673997848 +9192,-46.352410860631984,-46.21321058954988,-45.411786933477785,-43.7590419675063,-41.23602562570845 +9193,-42.13459054318866,-36.80866900108728,-47.04919293657573,-58.46821831845012,-45.39514086853701 +9194,-45.62145892096872,-39.481134072917094,-38.40686696464556,-47.11355771707515,-48.40502730654354 +9195,-45.63761431661081,-49.011446037788645,-39.730072495993134,-49.62008616544409,-53.87685158145198 +9196,-52.60501859216206,-42.152892625481165,-36.084672196717975,-44.62210310830433,-49.868287447782194 +9197,-49.88076475245233,-43.872520702519516,-45.60395013803557,-40.52296082607175,-57.43309123168648 +9198,-41.47232021354731,-46.71108896134158,-48.32111392722143,-43.77256026303398,-49.531201249523875 +9199,-44.129909226332664,-43.69600940984747,-46.32168303432012,-49.75358534620991,-41.25382830085581 +9200,-49.916782511834946,-38.33835427404977,-48.74048243304469,-38.29658384997803,-52.34735242120072 +9201,-51.72953578144097,-48.25694239895607,-47.420070922260464,-44.71340958072781,-43.313630930099094 +9202,-40.749285808086036,-51.68615723475569,-38.25904236418621,-42.916194072214154,-45.96513426371261 +9203,-44.590796023447936,-46.13537137057123,-48.420163229941664,-45.400699575121514,-43.49104285471198 +9204,-47.56353372765471,-44.49501168494001,-41.08906994088799,-41.65432649512674,-40.239639282758404 +9205,-45.00866357961908,-46.41042012347295,-48.023717009423436,-49.98880773061528,-44.247966187133 +9206,-42.78283917719134,-41.8588579549993,-43.23559984330301,-44.92486710075638,-36.76580312916483 +9207,-42.232729228277854,-47.74309234549345,-39.0497049114048,-45.93877338398945,-51.78750272729704 +9208,-53.88540432854864,-47.344885389176014,-51.2668320120541,-41.15926643265211,-43.46689810257087 +9209,-50.06987324978562,-43.96316637716673,-46.212650267171874,-47.874525703023195,-52.197187923666505 +9210,-45.79267702314454,-46.71388730831005,-47.697903402396335,-51.008866093054905,-41.37182247123834 +9211,-41.00876037647837,-41.34278876933189,-43.20015489643731,-47.649828294334,-36.36351137569137 +9212,-56.07497880394651,-41.80577288618416,-44.38554155378992,-46.01562532454263,-44.87866210388379 +9213,-52.85704527803954,-40.14991567612701,-42.751807839314814,-41.25017446773509,-51.35003961222816 +9214,-51.304100769491015,-55.288942308559875,-42.570777250729144,-47.5216338621332,-37.236027095774055 +9215,-47.43795322331575,-46.15208869478521,-47.53016656775694,-47.99386350645767,-43.288167073413504 +9216,-44.734943964687254,-54.08515287412559,-43.82983110449151,-35.01630911943324,-37.92875002706809 +9217,-47.48632310918722,-42.698129740353764,-45.54374469824708,-38.6936941087018,-42.79267170017611 +9218,-45.518590420705564,-44.120743133346174,-40.243622283456624,-42.22053491925284,-39.8889601580239 +9219,-51.48251068360353,-47.962702004785015,-49.39568699569183,-44.88250958121868,-48.02205232654109 +9220,-53.30685309695099,-47.157443343828106,-47.6167504515206,-35.55168098454849,-42.313619258444284 +9221,-39.64559437200643,-36.18710303881064,-49.7495269874408,-49.52597372674563,-39.32933626552681 +9222,-48.37281552725578,-49.13661242048703,-37.32096186440557,-36.81340820311313,-41.70501942842606 +9223,-36.17732042018418,-39.3407686717105,-57.26169250626583,-38.649044132993865,-52.92529194602008 +9224,-39.992840028812445,-44.29512552669527,-41.969285924861715,-40.95080622092817,-46.206990810296396 +9225,-45.30385103895625,-36.0796898975447,-39.56261299360429,-40.5685755909976,-45.337483843722914 +9226,-45.25101218593402,-51.87969797281957,-41.09669786379914,-32.34899559098783,-41.03155621830231 +9227,-48.78043244613014,-40.29573725540256,-43.61575445179976,-42.97035862080475,-43.19892058924163 +9228,-48.250055743381054,-38.61517605085389,-44.438003565726696,-46.3646654301659,-45.07291538708913 +9229,-38.40933503821617,-45.27292668603431,-35.926454007049095,-45.876369621943,-40.082286828948455 +9230,-41.77778335266294,-46.22893314732458,-48.66504545270897,-43.558676593067084,-40.6700607150934 +9231,-43.551167049561116,-38.22176057909218,-49.035856375326944,-40.63110793508058,-40.25748773919258 +9232,-38.68635875985364,-46.29082317643031,-43.457084150689006,-42.07769471924821,-42.162892399921276 +9233,-51.27805135519813,-41.47380946457682,-38.62702580689739,-47.93315117617165,-50.65392787572482 +9234,-51.142322392884644,-34.03497473148778,-34.77268801424156,-46.8166011814154,-44.14531142174292 +9235,-46.43366473825856,-48.13480299189986,-39.11032544950679,-43.85405638280134,-41.94462848675264 +9236,-41.41761007233512,-47.52071724303503,-43.54941237028609,-48.53282265064834,-38.27218957086177 +9237,-44.42440009422368,-47.89032995449187,-40.348856223902764,-40.57099795737604,-39.57626789034492 +9238,-54.331320653653556,-52.444422094180844,-56.675147351661096,-51.00843750248064,-45.43368563441161 +9239,-47.26935944220727,-37.72163229168198,-40.63536824202602,-50.141714403138515,-50.24058291350052 +9240,-47.63900811192048,-39.246746859418344,-39.34473773845676,-45.95257095882948,-45.27353032523181 +9241,-51.22156380796581,-52.522633237849355,-41.691441562998264,-40.63383987550438,-51.95363646555832 +9242,-38.39397899244061,-50.10634470741489,-40.65916320319151,-37.152565233960075,-38.41854617001692 +9243,-44.10532055175025,-46.604766048026384,-45.80338561268159,-44.267832945223596,-54.804373139880255 +9244,-42.468524001766184,-37.326071542687664,-49.059165418653755,-49.449121732130706,-48.56818304256755 +9245,-42.99963887969526,-43.861511651009856,-35.79817674588279,-40.46385091037642,-47.058290724408536 +9246,-41.440023034050796,-46.1449788808561,-55.54956964068904,-38.12817049282773,-43.70877024058116 +9247,-48.970266704872614,-44.48361637098594,-45.940137254242444,-53.68769159345998,-45.10938881021305 +9248,-52.328239697249046,-43.90441609406056,-45.54634077098537,-44.09647145459823,-41.746352249933565 +9249,-50.06151653446619,-47.54644498739798,-45.92352358242968,-43.935777653758,-47.341728420630915 +9250,-52.96094119669137,-35.57237271057725,-52.69485698296942,-39.0079292815703,-49.986336247273336 +9251,-55.455728086159404,-49.03155436124989,-56.9781284470899,-41.04394495742632,-44.835064575799755 +9252,-37.1455191053355,-43.79248381639808,-50.434370595968716,-45.432469767481834,-41.13473985838397 +9253,-47.915387835092744,-38.779511761643406,-42.20292939590984,-38.02161759710122,-46.55736734193566 +9254,-45.81896355924937,-42.24960632086265,-34.31229531701426,-49.220670999513324,-45.46022950980639 +9255,-48.255202534748584,-43.52838741584997,-41.86009474391151,-45.11996735453339,-46.90230527287014 +9256,-41.94629004052991,-50.97409974488045,-46.63834908056189,-43.94368716158363,-39.650989484784866 +9257,-43.773094254929184,-36.757037753528444,-36.06605172213263,-52.90375980258178,-43.70662853203544 +9258,-42.84086877210825,-35.85876937815951,-42.258292226950005,-48.749350843080435,-52.31694768302409 +9259,-41.61898858246384,-47.590158120784864,-41.45021257925854,-48.99698424184765,-42.615670802472074 +9260,-36.81428097380668,-32.797782061628645,-38.05106865734213,-39.85413436268687,-35.28344398435262 +9261,-45.3263425362136,-34.156458114885815,-43.8905118996833,-46.32787603075239,-46.33133716918329 +9262,-45.37166896173891,-45.12064881634834,-44.332351407873425,-51.25552960253078,-54.788857426170466 +9263,-44.98274036365604,-47.46406888487225,-44.90886202591134,-50.703202338624536,-47.217178525602584 +9264,-41.63372933540041,-45.88171859753319,-43.50324074115244,-49.36253307828712,-36.84889602375391 +9265,-41.35551780467205,-54.82650811090227,-44.29740988466639,-45.22619828170793,-43.05124284900281 +9266,-47.130108905091326,-45.910762424234925,-42.976131512525185,-50.64587382595165,-42.05962752246104 +9267,-39.61183188900887,-45.46363801257209,-49.0582343147886,-43.14332263083717,-43.77596262975706 +9268,-51.12145868612837,-51.997084214832995,-43.940341566440004,-43.07873515210562,-49.08457315204245 +9269,-46.08007723508447,-44.93485690750014,-47.331142467126085,-52.60443783337775,-45.44148782958582 +9270,-48.33818106877163,-52.768642428650715,-43.28902739783778,-37.51602942158452,-45.154124529336876 +9271,-47.95226642502842,-55.61536691632015,-41.83403687732124,-45.83041327585249,-55.40114916743418 +9272,-57.83401562492814,-47.1551552812757,-44.633366543442676,-47.37300787537343,-45.73174499594656 +9273,-45.97660162020825,-51.024459587581575,-40.62644998885178,-52.215874408298795,-41.93446449906815 +9274,-44.011674519462794,-42.88905747518514,-45.32919125730281,-41.25470979852694,-50.7948767878613 +9275,-51.33143774215289,-36.141043915581534,-42.12933040757314,-54.866395187865066,-42.611408607691985 +9276,-53.47440108127705,-47.64147430082913,-38.83092374128858,-58.173530205227145,-40.89322668318089 +9277,-39.5553319736398,-41.03828088404905,-35.682311920483244,-48.2573871824842,-41.56150127153547 +9278,-43.645470734737856,-45.59603447309434,-36.78694329169195,-45.93197062595198,-39.39142636394458 +9279,-39.928093721234944,-49.342907766155655,-40.98498479452923,-39.344330225152724,-41.36230792407644 +9280,-37.51511163278659,-42.56058813104084,-39.946584166426625,-53.88527384171064,-41.67662179261811 +9281,-47.129467819518325,-44.675760180313524,-39.39821404267303,-47.419528322254585,-46.63160347357919 +9282,-46.514504891542636,-43.61150248291663,-41.820321623223045,-47.615901519798946,-39.884768846319595 +9283,-42.782273917995845,-44.85822678661868,-37.17829008797606,-47.88836420015661,-38.53216894877019 +9284,-43.46405343581743,-48.919085778040674,-45.205292816505924,-43.818427582145574,-48.77095365987197 +9285,-54.80733939430203,-34.565424103606205,-39.25310156672751,-46.65843195877439,-38.98525018487234 +9286,-39.700656320385576,-45.30441851726098,-43.842894365434645,-46.11763893161529,-51.581879748648 +9287,-45.98090421697702,-50.93048972783601,-43.565805938258556,-37.8516783662118,-44.86684157302801 +9288,-48.380888726346406,-47.477190440302195,-46.152333322489014,-47.59742956237436,-41.55082315664527 +9289,-45.06023637092159,-37.63088957172633,-44.282623592445496,-43.3155140419959,-46.15475125328987 +9290,-48.64506508067618,-43.68684280639744,-37.746853811129995,-37.165394730879015,-41.28434047158705 +9291,-46.75426241531572,-46.162246190706355,-48.04148527363207,-50.299287510499276,-48.090239093971086 +9292,-44.511841223828256,-49.02960497824328,-46.88641939854506,-42.52613438218097,-48.843004818276334 +9293,-45.178227678876695,-45.99027587546314,-43.08788083483031,-45.29340437425959,-47.28728829236082 +9294,-40.962990471315614,-49.46197532751556,-42.45363592546861,-48.31449089513365,-43.71576778776654 +9295,-44.15154132562564,-45.61441864984213,-45.830407496260406,-39.33846002219016,-47.09855493112602 +9296,-50.4914731934622,-42.35586342549204,-46.43150383548891,-35.799664201245676,-48.85220754596674 +9297,-47.342434859298635,-45.568616251154836,-40.525162798265896,-51.461680446070076,-41.00818508247859 +9298,-46.05239978753899,-43.652300756384456,-39.545826692599235,-43.654123859282485,-48.92470311602312 +9299,-40.28909325570212,-46.48924551859396,-32.2036435529109,-39.91060051606837,-49.60259854356762 +9300,-40.70536748475973,-45.428536616815734,-43.94455313631681,-40.1358991493809,-44.49061421589145 +9301,-48.32580470355093,-46.22988722929861,-44.150229151046744,-39.196625054521625,-39.652174477031494 +9302,-39.795198128743905,-39.562376367610185,-47.48474953433664,-47.58356235262582,-41.631381345818035 +9303,-41.05612609738264,-33.91205585866189,-50.656070375112435,-46.16540805314236,-35.08548246050005 +9304,-45.31411644504188,-44.15684951842811,-48.40437448339163,-41.95404454329651,-43.96116721930513 +9305,-40.28229739371067,-42.59810544238469,-41.8582510379996,-44.39080268286245,-43.850862338762745 +9306,-42.49036486345247,-40.31377607986545,-44.73837083536018,-44.58527388152883,-42.7882874019443 +9307,-47.18895169911424,-40.02257539213726,-44.12624496105665,-46.30632365453478,-41.532465759117365 +9308,-44.87779867840071,-53.962518255633555,-45.60357364381146,-44.338895371074436,-39.87716870452176 +9309,-46.943785862919015,-51.13564933788746,-44.08719216580425,-36.62555497130603,-52.35151558646366 +9310,-46.78552904979117,-47.861611002350074,-42.97175391283384,-50.51130057599867,-41.69551858388916 +9311,-47.28093514848844,-48.27798711592578,-44.42255446709176,-44.58267784549667,-47.77536206205669 +9312,-41.55412216953472,-40.410866316854424,-33.02230720662849,-36.886482529320475,-47.83961422689759 +9313,-55.862090576184364,-39.97701359536842,-47.535944026074354,-43.419088847132684,-44.90855662240003 +9314,-41.8517560267661,-52.97859783865621,-39.89334852244463,-42.83730431683324,-42.950444818172 +9315,-46.97494592879099,-43.598054684228885,-39.4001856160364,-48.53559848809498,-43.39570936389725 +9316,-47.201416844486374,-43.538183129299966,-48.33139698068415,-48.03726180017283,-46.662615698445585 +9317,-44.66051642156909,-42.88110406310669,-35.50714440240751,-41.06763762051867,-34.866599454955235 +9318,-50.094725006371405,-43.28855085626015,-36.553345490869994,-56.45646664235163,-36.9806416539448 +9319,-45.908954838430176,-46.016518808689064,-45.94480763082484,-44.871846905530674,-46.75618488937335 +9320,-43.164724305364466,-45.436694585520186,-46.616436078755726,-50.29596184385285,-55.36767119103168 +9321,-41.20306062376531,-51.2177750091738,-42.719013712531755,-53.97686761314634,-51.24889856363746 +9322,-50.70813176543398,-45.051548795271444,-51.867740534517104,-50.23372867600643,-41.3624681799376 +9323,-50.715237776168465,-37.41048272375623,-43.81935046481184,-49.32066485555049,-40.531545711157555 +9324,-46.17323913022905,-49.02912851359571,-44.96964182156882,-49.312602635672576,-44.88718985723854 +9325,-42.5976465571523,-47.62794591593161,-43.5595038472747,-44.136898949798834,-49.031981722482996 +9326,-43.24558987035544,-42.36812835847639,-46.778905072815846,-48.61945447384287,-47.74682917736229 +9327,-53.848845247941895,-44.393762689633796,-53.553333982394435,-49.16049912352886,-45.478474015944556 +9328,-46.113323414712475,-41.29014163767403,-33.90018378844434,-44.340496046870555,-47.594887871216585 +9329,-45.71683028691966,-38.66496933790997,-37.654867950242576,-52.40770942331179,-55.17980489296919 +9330,-52.26986356690003,-39.870215964823714,-43.794647962364465,-52.207529621569314,-52.32948408958115 +9331,-43.04972899703811,-43.42383797117424,-40.60632172940091,-50.382909587930136,-57.50909367298096 +9332,-40.09228545406383,-49.32085407235134,-38.44283150542434,-34.458022941247926,-46.25926291261986 +9333,-50.30393729492803,-47.11799121457688,-42.358616856166705,-44.76504478773863,-48.33606535139656 +9334,-46.34768676763443,-41.711916142650495,-36.51684116780211,-45.017528341965765,-46.63632555185005 +9335,-40.87320598813167,-43.86660993357544,-48.948834712461974,-46.27921990352835,-55.3520514362568 +9336,-45.12345104780744,-45.64714450837117,-42.45192477203587,-48.10298880865837,-40.884435422462204 +9337,-45.02411980667498,-41.29763256249411,-49.05369814713124,-48.58021648066406,-48.88809330208023 +9338,-43.300559755359124,-45.157808520764384,-43.803006781931735,-52.80541554681347,-45.5935700418575 +9339,-40.83435668864645,-49.53816063803326,-48.589223449038315,-52.95237054247266,-40.91358434735223 +9340,-42.73111743812375,-38.95237289222231,-50.35738617750843,-46.34528070526296,-41.625946476865174 +9341,-39.799007375335854,-49.69580915728474,-40.0075491378218,-44.27545460379928,-44.57082879156586 +9342,-48.51704263479389,-44.26645432063805,-36.91847376200099,-44.28332213332384,-55.732027089095844 +9343,-45.63612817546958,-39.683389208000456,-48.473315348208715,-46.48005888536693,-46.21605931341391 +9344,-48.89115254391557,-45.235180878902426,-35.55501064087701,-49.48557019364904,-43.45332285489536 +9345,-45.376964157394404,-49.41389531846524,-46.47588370094533,-45.71061847108543,-46.4579284772381 +9346,-44.24153467406968,-45.95796444208819,-49.92341459490525,-48.762616932870856,-50.673707269222774 +9347,-38.76524522581278,-49.342535370580585,-47.593771746326915,-37.70578494994464,-41.29689657922874 +9348,-49.09835189521665,-44.659018030890344,-40.27765142179691,-42.063972802337645,-47.0208703121263 +9349,-39.99997489334828,-40.33949674812156,-42.37029289867079,-46.34091289677611,-35.77248488829104 +9350,-48.939675702257304,-39.660607948381,-51.56221230774774,-48.2969268438698,-38.03264168685272 +9351,-52.23309860873324,-50.46288313503416,-51.32234155121804,-54.32296863508633,-44.247423012830446 +9352,-42.70279365317806,-39.823222031924054,-42.72121873557115,-50.028120192921065,-47.11775659887181 +9353,-48.3734192549258,-40.320822930698846,-47.552793408635516,-48.30271577776159,-48.683985929074346 +9354,-44.405406094224546,-35.071231425915144,-54.54868514783268,-55.37348084642002,-43.0060833985859 +9355,-39.68609974265185,-35.092918893814314,-50.67124601821904,-43.75312946817127,-48.63847007267774 +9356,-49.23753205050716,-46.29097821155157,-44.02882056122728,-50.234370578862844,-52.20066622348553 +9357,-41.69624385225288,-44.45943594591987,-42.574905722556274,-49.10077603377414,-42.012139436810266 +9358,-43.90232182439326,-44.11703818596483,-47.795257780928736,-48.44237242239023,-35.29380943490771 +9359,-50.88191700476657,-40.632815197366035,-43.3085022363781,-41.33984778202736,-43.548756780669216 +9360,-38.40304739019398,-53.37561251803547,-48.9892217564587,-46.78468597874539,-50.35074071636669 +9361,-43.29971765123873,-44.408769529359965,-40.88388827857163,-52.225337512877005,-42.79049283110486 +9362,-46.11694171305252,-40.096033118382785,-45.52829958997924,-43.142243727658894,-41.7948390022181 +9363,-45.14778456199375,-42.9382824254839,-41.146601693465385,-54.04889429040544,-38.48335130971709 +9364,-46.0947656266116,-43.61239326941321,-48.783118228718294,-39.531315577388995,-45.02370884294778 +9365,-45.47594257995807,-42.08662517800049,-39.506743571535246,-40.94402350582932,-42.494201848668645 +9366,-43.73274305408584,-48.583994394287835,-38.169795107053005,-42.59458614433592,-41.07216358837288 +9367,-51.5580190169571,-50.18851333411731,-38.33259781951638,-46.24376011503259,-52.10829275121382 +9368,-51.166996412380655,-38.97834120293598,-43.7556737762773,-47.00756059917497,-43.76781399455046 +9369,-42.97221069740006,-46.788309435583685,-48.27261932459203,-52.51285042109035,-41.81321461353883 +9370,-37.90909513026,-39.35586111230566,-49.20815830929719,-55.28341920654385,-37.586404169071244 +9371,-47.248827827189466,-39.08311045320892,-39.80941443513118,-40.885821594618065,-51.211026215538475 +9372,-42.95650639157176,-45.61177910511569,-40.38544783054265,-37.67804736542006,-44.94679506504904 +9373,-42.119882418439,-44.19464973234713,-41.337885681603765,-47.391149205477596,-41.184876478520614 +9374,-41.649367342449274,-50.5954402310091,-43.360343346416286,-42.60382492126787,-42.378515029819376 +9375,-44.33834308031618,-39.29800017308387,-42.65632686985843,-48.66695001319525,-48.2637255626452 +9376,-45.219845506972646,-50.33958974047602,-42.98301529151145,-44.49095815028704,-43.00180868327025 +9377,-43.28949343496639,-39.974073161543885,-41.82773230533964,-42.95106355445773,-52.098176315968416 +9378,-43.72595646950381,-44.133425613253706,-44.59937537346301,-46.44303564689829,-46.898508559506546 +9379,-53.917011080923295,-47.122391732717674,-37.81342687567661,-43.04591290756553,-44.23835097012013 +9380,-38.32505684784827,-46.65529615072899,-36.073923365514744,-42.157632168652654,-43.778685875026106 +9381,-50.2152409669777,-44.04654263523092,-45.39047840569997,-43.69957222210041,-40.19566878503524 +9382,-38.179582048923166,-47.18450822399102,-40.58752634024354,-41.674093835714444,-42.22850003335848 +9383,-48.88596772559817,-39.381365985946445,-41.40280551730085,-38.30880333097605,-46.65010700644037 +9384,-41.88242884593704,-50.78622047957804,-43.94035512007657,-36.84267216544305,-47.844761753300006 +9385,-44.19601719942472,-50.23127039842883,-53.7745974432273,-45.8843566528167,-45.56478312485817 +9386,-40.145219305129345,-45.72595755635125,-57.30127494552705,-48.841264293259606,-45.43647195813039 +9387,-40.549690089355316,-47.54790934489476,-40.48426851571335,-49.15741005888047,-46.87489704381713 +9388,-52.36220929335487,-41.66689215127707,-43.2022979029503,-43.505227146783696,-45.53384153447364 +9389,-45.31634285585506,-38.663557688679006,-55.474951187433334,-37.262718721617524,-54.397662016086954 +9390,-42.182729515331104,-45.30273199334171,-43.8931753222782,-45.93564286346891,-47.12614423498641 +9391,-47.66203405961084,-48.57426830848897,-40.49888919797596,-39.253077082310156,-54.15861331097764 +9392,-48.46619164786082,-43.41309141879949,-42.891840977163824,-45.97598281145448,-44.20169386121491 +9393,-45.61314622859579,-50.9363470964101,-37.153460082676006,-44.47386650762924,-39.91203838670521 +9394,-44.80911060423511,-37.291287893868436,-38.42495698213112,-39.56322154786523,-55.067983613771204 +9395,-47.42130906535983,-37.39891690955645,-42.68061105189952,-39.24674309070836,-42.24592924062871 +9396,-50.68568419726138,-44.49189516616529,-48.68162950336795,-46.777329889028394,-49.576229993279355 +9397,-48.14768042788407,-44.078947162631465,-49.0948483572855,-46.20639074366891,-42.96876315858504 +9398,-38.58224216154358,-38.68768213687196,-37.250561633889305,-45.67922530492401,-47.239415416823284 +9399,-41.50118513564037,-43.76956596658472,-40.151156944565,-42.97671346779474,-42.757834199622955 +9400,-46.288621819591576,-39.61882497696902,-50.122310650082646,-51.442660563634725,-45.47191572282435 +9401,-41.60067174358521,-42.22897358758643,-48.466900205453975,-47.894531647618486,-45.185985313701266 +9402,-46.20902895371742,-42.59028047583551,-44.24987792397567,-46.99519173660116,-55.493657309331695 +9403,-45.26978116604,-45.12690265390948,-37.11594515044999,-57.97868898386892,-52.505707848948774 +9404,-52.39449123059535,-49.38977644873994,-36.62451491762285,-45.98449872011094,-39.15816063830774 +9405,-54.9412916956431,-41.653153272188725,-40.774040289695414,-44.29204549072605,-40.19312728879579 +9406,-51.53025779136047,-36.90045043349489,-48.05176366892559,-47.659006770385815,-40.03419144834097 +9407,-39.65797605410564,-45.652615786973975,-42.816997187763064,-41.43826535840434,-37.207704478315826 +9408,-43.19687200220078,-40.89716910601212,-51.677936106460486,-46.40150569561393,-43.048031613142456 +9409,-43.39561976318943,-36.688691036192395,-47.151178822339595,-54.23851757852753,-38.20002209788796 +9410,-43.341059061206685,-51.16183500611312,-50.99878402410641,-48.44429265052961,-32.76799556786598 +9411,-40.66604347804571,-42.21886201935569,-43.50672744554696,-43.42138549609608,-43.844668735978686 +9412,-39.87054876779077,-42.556255644397844,-47.75641802889339,-44.71822682729004,-54.83622614651444 +9413,-56.38208101771491,-43.7665817114008,-45.65276859053696,-46.73714425009349,-41.74697908906465 +9414,-42.92080742270029,-46.11163668775939,-42.87757932826065,-47.18426009631525,-44.9484830706148 +9415,-46.95727830313954,-38.68892654934625,-44.83069016906452,-37.10931770049575,-50.97698110449609 +9416,-52.1434604159388,-35.29662324383301,-43.31769759710093,-45.058179583961135,-43.54051937882785 +9417,-48.17493285861432,-46.2933492966486,-44.46794730560385,-48.133652656184466,-42.89871612135706 +9418,-44.97899068553795,-43.52302916432489,-50.05000510745894,-36.20611583900487,-42.99109864878972 +9419,-43.098561343459316,-38.02421987442385,-49.59778116063474,-48.97937288605622,-47.98140972307252 +9420,-47.34398319399512,-46.67627515937748,-38.08558047108739,-45.41795422746988,-47.5557409495009 +9421,-46.23708331722807,-46.960877910125426,-40.6686296535074,-47.188337835948,-55.31992074637673 +9422,-46.795073569707945,-46.13879331519152,-49.02081716818984,-47.439506718816965,-43.17974646108784 +9423,-46.41513460827957,-44.82491790552801,-45.97288095442153,-43.413062457709636,-40.23451678997164 +9424,-46.70240064591476,-51.361725905462635,-42.725726219347145,-44.967816189389886,-53.06516705036424 +9425,-49.514338338483704,-42.24162403759892,-37.0851600336632,-44.46270494859395,-41.193318772759305 +9426,-44.12795037094644,-46.492018319473196,-37.71962914187133,-49.10763961196038,-54.75993945920673 +9427,-51.69723928695842,-52.49287413600256,-45.68523064910969,-41.81920114280454,-49.853991428406445 +9428,-42.07176027038526,-44.452810441805006,-37.04611311927456,-49.994380032767836,-44.10280938574899 +9429,-37.08244724869459,-48.51114519725384,-40.84295126854296,-47.82350470645719,-41.89599330484321 +9430,-45.70561036973829,-50.901769036798115,-39.764936304035984,-51.35081949847873,-41.720422197180994 +9431,-44.976706736826856,-57.1134797340027,-40.12259217737817,-47.446575143674494,-51.580648808039385 +9432,-45.58604732800557,-50.360395432768385,-42.542770241020605,-45.14015531930481,-42.369863218237946 +9433,-47.36901050765622,-52.06822430932998,-38.142674280692255,-49.780001771472584,-34.36059524731464 +9434,-46.97919145770853,-47.89353041907232,-43.42449501680165,-36.24301955778364,-45.68841659876934 +9435,-45.15960003231883,-46.28902139527439,-40.66029279940543,-49.982949622480625,-53.01914312598115 +9436,-41.3204232535661,-50.57285375029826,-42.09962607696587,-45.94531509609699,-40.59948954235967 +9437,-42.05039165281411,-46.5700146405171,-40.84298679587707,-47.72633413783772,-53.01058300291163 +9438,-39.18527852930974,-42.69495436926159,-45.84537190510136,-43.5879441486466,-38.43185383928238 +9439,-47.09398714282087,-45.43661949775497,-42.286159925640284,-41.982261178473074,-48.35563433770431 +9440,-50.20532493858736,-40.707731435266524,-41.463255151480695,-43.660528830100574,-51.79858810967704 +9441,-51.889926083753416,-48.617101705335884,-37.74150652977019,-40.77560955692362,-35.960841982598744 +9442,-44.92958934566961,-41.07432276682735,-53.78335057018186,-47.83322222681636,-50.821631116187255 +9443,-50.181969031734845,-49.261448197857405,-40.30617696147052,-33.4427529290254,-49.750158932837394 +9444,-46.227266537383734,-39.71377002979832,-37.95432486304818,-44.32503209103008,-51.41391240600435 +9445,-43.29967828454621,-53.70539970798133,-45.30117657268671,-45.21160099973523,-48.92256462831847 +9446,-45.34636773607578,-46.39085520270633,-47.489793970793194,-44.18401399048561,-41.2853930845173 +9447,-47.60646645863301,-42.51686083550667,-47.27804592651688,-35.20968377987452,-37.65601590021567 +9448,-44.873541054888754,-41.885956957469276,-36.753717531117324,-40.62025237721293,-42.81469181840331 +9449,-47.830056416161966,-42.89816018021928,-45.07245025182429,-44.683576830141895,-47.563563189030084 +9450,-53.87035155049512,-49.70665390192448,-51.86088542482526,-41.071842867614905,-53.544998937913 +9451,-43.944895191264784,-46.10733869522857,-40.16141281390201,-42.264521370507524,-37.51881560885482 +9452,-47.3768812822662,-45.289948781716625,-41.601781056458414,-48.54065620040091,-54.81033106309069 +9453,-49.185621536636916,-35.708150112608045,-43.5827600522215,-57.25942491334066,-36.86731781910748 +9454,-45.34348383255339,-40.670927168924216,-44.48190204369569,-49.977324178880295,-45.649205221463156 +9455,-41.93608284326962,-48.14402137144266,-47.28408403538192,-43.966751204104476,-48.662522717250475 +9456,-40.874210755802466,-47.08987944778777,-54.343031191050386,-49.345885136641805,-48.238491307595915 +9457,-53.24354821729247,-46.65421900002282,-46.036689681965484,-49.633394913976275,-51.572647279628555 +9458,-44.75073225468638,-37.90067140835645,-46.22134245590874,-51.134386855217,-42.75228567390328 +9459,-42.26857323702608,-48.41363513468778,-44.28959922934282,-40.48507032251605,-46.83772263456459 +9460,-43.546959912745876,-38.53427169959975,-44.734108734668126,-45.58044751043976,-43.110924488486994 +9461,-40.61519948141545,-44.87650028425636,-46.547051719026946,-47.602167513402726,-52.028100699805165 +9462,-51.43404298908793,-37.29877346496969,-49.8918897665144,-42.27053775880626,-50.07965314983451 +9463,-40.672984733398245,-36.9411943139466,-43.38081394613817,-52.86362292695259,-43.344155929101895 +9464,-44.52808566932173,-50.85524052719237,-60.66455500083276,-35.669966969505914,-44.24510382765591 +9465,-39.76998931374861,-36.999343965342945,-40.88807994047221,-50.025203323063394,-44.72755421012287 +9466,-44.69059076775693,-44.57035603971931,-54.482623897384144,-43.75275286339317,-45.72743142323276 +9467,-39.790128278077404,-42.17198438873992,-40.32187636796109,-38.269252055624506,-42.732373638033806 +9468,-47.21404742564468,-42.69585209018507,-47.54158637723511,-51.26905652214745,-49.55214677426533 +9469,-42.527783884434946,-44.86181127968586,-47.60825021429389,-32.9341977172593,-39.54188417593283 +9470,-50.95306645544489,-43.43705935308368,-39.63787195059649,-47.39317322857395,-49.605809333917016 +9471,-43.21529162240388,-48.200942230378345,-58.967744125062644,-50.3525567846959,-50.47399109627193 +9472,-42.080713234595954,-48.594941901366,-41.53552511102473,-51.630217092096125,-47.52265962477627 +9473,-41.66752516560577,-42.2112396071938,-56.25700910263451,-33.80356325910097,-50.16273910193774 +9474,-49.767059863425764,-48.50989368844479,-55.00369993184542,-47.0396834680602,-42.18060880614956 +9475,-47.416459177187825,-40.18848108741988,-37.06677878557959,-48.129555219552394,-45.682225758753304 +9476,-48.984495850907564,-40.278745159943625,-43.751408699661404,-49.783310218239905,-44.279835336075735 +9477,-42.34303343608023,-37.636207831547175,-40.35288440001647,-44.44367571716331,-48.943014236930864 +9478,-51.492207301671556,-43.28807566269418,-40.33624373834691,-43.02161525209371,-52.970187710090784 +9479,-52.0356706630324,-47.306899965931066,-39.66488614669868,-46.38435784943541,-42.17940656054997 +9480,-46.83560325206917,-48.16376596219379,-37.05651314813708,-38.91996681425327,-40.90731020622245 +9481,-49.51112202479855,-46.99386633863488,-35.46653854871412,-44.13108015737039,-41.51239904408139 +9482,-51.687015512578434,-46.035587018704575,-43.70744075007935,-44.74968179534933,-43.40488698999418 +9483,-45.48171247923133,-49.87025610630519,-39.3202957435411,-43.25592254719808,-44.572046421182264 +9484,-39.503072766197235,-40.62025737783531,-38.61179873911677,-46.24612166837245,-39.3336225530835 +9485,-46.21421396572709,-45.497077730924076,-49.101220489099255,-45.574200215428206,-41.399385679058405 +9486,-48.808623078425505,-37.9693931611953,-43.35874067816204,-46.811611922178436,-38.16691068354047 +9487,-47.23908518080562,-42.99867707691047,-44.34005416323972,-35.81364004653064,-49.876311574885555 +9488,-44.7968559287574,-44.39522897033117,-42.132918740554935,-52.63094820557587,-45.37065002715986 +9489,-49.64764646341974,-48.93328574265624,-46.729358221911,-47.254498068445976,-48.05057442623585 +9490,-36.26598834515814,-43.02491792639379,-44.41445528464872,-55.74086687249031,-43.51849878924801 +9491,-44.008580603428356,-41.01640152530626,-49.87379121519199,-47.78542991447438,-45.60508980224872 +9492,-41.53872109842691,-44.01672296923098,-38.39234778786211,-46.19077594433031,-47.267943760890425 +9493,-41.883715008034166,-48.60962176749734,-45.66198744347314,-46.739247784327176,-38.43811435348028 +9494,-39.91191470722008,-37.64714152520706,-53.8364647567148,-45.65058977653386,-45.44803691833439 +9495,-41.070696940725036,-42.13399330626075,-39.015879055100115,-49.1679203572,-44.194604006456764 +9496,-45.15652790649356,-44.22796184534423,-39.92412729827728,-38.28858566651824,-47.43075752161111 +9497,-47.820050558068196,-38.367839309034935,-40.06588876088646,-49.18992779981786,-54.63756169813527 +9498,-39.350164190801465,-49.71663061275617,-44.692748846976514,-41.0036698511695,-49.80999275982138 +9499,-48.58453235594556,-42.619962951876516,-40.367373973817095,-31.85864246983286,-46.49312267546946 +9500,-48.42468431505821,-45.83062799799668,-38.63023509827761,-44.79016208474198,-46.65837009325469 +9501,-46.172271920845304,-46.74817264787262,-45.67821347422708,-43.87438115752574,-58.224685190044944 +9502,-44.04740422150467,-39.77865385820179,-45.8458606895724,-41.621452615810924,-52.66196964970825 +9503,-48.97384690733318,-44.168705300198695,-49.13267270643343,-42.135471213864186,-39.618240024120915 +9504,-45.45810498545622,-51.26383616621211,-53.626182513975934,-42.47326602164437,-47.09269014652046 +9505,-53.6538562606981,-46.934902885615,-36.33595464298618,-40.56226313207237,-47.54595750701976 +9506,-47.1585439119542,-42.98632177001829,-50.742618151810426,-46.688557787174545,-50.06955857664005 +9507,-40.43089767842371,-46.01116755977027,-45.243502835369355,-43.604823890007005,-46.01680272370884 +9508,-52.46408719600671,-40.671332696629094,-50.40496325134775,-50.50065728349804,-51.62176342720251 +9509,-45.575837200365335,-40.556992095189294,-51.074818509664425,-50.19955572126181,-40.67103397580185 +9510,-42.869079879612464,-40.037326403966226,-44.97296200165249,-42.034913237346416,-47.42334556125281 +9511,-44.20637486460289,-47.19146744757168,-42.59719307968359,-45.17423499873691,-47.08313269718594 +9512,-42.1264834734764,-40.68382352965761,-42.17010606960927,-48.297886944945674,-41.68429287116044 +9513,-45.162295211682334,-35.10325748428031,-46.583597496217344,-45.508702418650145,-46.20052390620826 +9514,-49.762389093703476,-35.11502875325471,-39.2697268220828,-38.117071008890285,-36.6033949055887 +9515,-37.35004724786468,-50.79273810215463,-35.96165618655181,-55.99513244299627,-45.630653635142245 +9516,-41.94564248363539,-39.77048273275902,-52.13380444967398,-46.38967260954308,-52.46036269413707 +9517,-52.70515213265169,-50.23309547139404,-46.53047029947019,-46.15690374214508,-45.08752654482408 +9518,-46.05414574261743,-43.983301765482025,-57.67037354934533,-47.534893419369396,-38.24786993758668 +9519,-47.12275620398382,-40.799231963422976,-44.330137104638695,-50.82674539852351,-41.452631837971836 +9520,-46.158504110317395,-43.01006144492555,-40.3069236273057,-48.210668297872566,-47.76469893839329 +9521,-41.6353826131666,-51.37309098796592,-56.37175135830249,-45.19010493156704,-36.02704280680475 +9522,-45.87605720820076,-48.01844528634521,-47.690995551377114,-37.20171247755027,-44.406562221983414 +9523,-42.00416253899776,-43.27297331512507,-57.90465883882945,-48.41810253533327,-40.680359959947666 +9524,-40.27448336627159,-47.276448108796004,-41.35966365788825,-45.06164614588472,-47.29614426076691 +9525,-50.054732280476046,-43.74909625659896,-44.782170239559896,-31.829018552122253,-51.040224848843586 +9526,-40.57373172856632,-56.136766413595836,-46.688583821412315,-46.213923569099585,-44.52612429199549 +9527,-50.23841134600994,-44.46293630387018,-37.488918547490705,-46.05420126921036,-46.861361688578555 +9528,-46.32916130290443,-43.02568236191016,-42.53616161454368,-42.57235896680616,-47.11787102165548 +9529,-48.86521578534596,-41.732997229653954,-40.9385227440142,-44.067747603369575,-48.21391515426832 +9530,-54.73468975893114,-45.27441571952683,-42.16687526940299,-50.179768063657605,-40.69525608859566 +9531,-41.43710717510062,-41.42918407404991,-38.20761958138478,-45.93005561649235,-41.22077587930932 +9532,-53.002875920864966,-41.17183135798786,-43.89854066620528,-43.35647209925682,-43.10286225194371 +9533,-40.190022932378604,-41.923344410998496,-47.994258755279986,-48.03185212916695,-35.76206416905555 +9534,-45.933048407716086,-44.225190217245085,-43.19151838415847,-48.37076967561516,-39.640418407114524 +9535,-46.05773978829594,-51.87805360371175,-46.48726083740993,-44.495114212197414,-37.71813110833431 +9536,-42.54237467023432,-42.73323527744646,-46.63993320947155,-36.015052675830574,-57.0022597524429 +9537,-47.25246368295207,-41.785139872429006,-43.60799390190971,-52.06307028608071,-43.96021574298543 +9538,-45.80280169452859,-52.854187129694516,-44.27034418181833,-45.89730863355413,-37.04074036764255 +9539,-45.11455262093631,-43.43871866698611,-37.80859965979133,-54.143537945858235,-43.93014585793453 +9540,-39.07271850415372,-48.845947849476026,-40.47728217756187,-50.52268058142384,-45.06127454882137 +9541,-45.898359607661554,-44.07889348404911,-49.77760642113553,-55.50003449716682,-42.72538442572758 +9542,-50.995592033041035,-48.111699953579304,-43.527245349349194,-44.2116923383966,-39.6510220506005 +9543,-42.3255652156971,-47.73245955341034,-45.97207444860001,-43.799991669397066,-40.574936559176365 +9544,-45.199292963471976,-51.31839823823034,-42.27893418936688,-44.94387453105793,-35.60209194096268 +9545,-41.774320970717085,-38.544529059407495,-40.50847507163893,-47.440031594660574,-37.77566032531293 +9546,-50.107846374137786,-36.88745384902725,-47.157416293675695,-50.325282740196066,-45.8106762075202 +9547,-48.87739217055964,-46.31826695870965,-55.0366821417555,-43.693077978046055,-40.886725561016384 +9548,-50.47922919926713,-43.54762112156614,-48.21037514763913,-46.13051125570533,-43.32059051658409 +9549,-47.17261504906805,-38.29844399869852,-52.292923517145546,-47.536905498909114,-51.599914145450846 +9550,-40.998804977356556,-55.67045771174079,-54.27886027146105,-47.33503633233909,-40.7710506391261 +9551,-44.65018625369468,-47.86457480224981,-45.441121467752716,-39.62389694566044,-48.820273542701855 +9552,-50.99632952368091,-39.55451554106583,-45.46377893046427,-42.63483308435978,-47.4214492727691 +9553,-45.47306632109413,-42.93536817881998,-45.21669564771451,-44.95898472484137,-42.10097997602506 +9554,-47.652745295146644,-48.845831211960515,-56.75022997240351,-52.078725480317964,-43.164227991422365 +9555,-37.051776200089286,-55.008557450199945,-44.941632288706806,-42.390707406424895,-52.31161190802512 +9556,-40.42058901120838,-37.194225207618466,-43.547181704783256,-45.8596519443629,-40.84375345503661 +9557,-46.34155836600387,-43.39042611085834,-45.02782883639454,-49.28355539961423,-46.620515497337244 +9558,-44.301452311561754,-50.677204641012224,-44.37361532363679,-45.115856045920005,-41.03097077839124 +9559,-46.82753011485742,-41.90371236630238,-41.677487144337725,-45.435940378438495,-49.284958498092635 +9560,-46.14124500228554,-47.72105419530519,-46.164711098131285,-39.71068942248376,-43.53282802133472 +9561,-49.11515711838925,-41.15366505772434,-48.903331471482794,-47.869505510255024,-59.64185167114797 +9562,-44.2202464373352,-44.85431773928109,-45.05954530256424,-48.61616957895798,-45.60702244125559 +9563,-47.16365986408713,-41.62918340031291,-45.32909115934685,-55.2488791671572,-47.83591056974626 +9564,-48.513382991301725,-38.41809861942693,-45.34601289678499,-43.84355099761047,-38.91252799113708 +9565,-46.53093753354682,-40.689591836461226,-42.23928677809771,-49.10808778233719,-50.26660155115845 +9566,-51.468282619251255,-43.990505911543075,-43.41639956103751,-39.34518422727092,-48.24342316976688 +9567,-46.1944001486071,-46.98725033124042,-47.2091481044044,-45.28681804346735,-42.741056748240474 +9568,-47.92399899642207,-43.82849666402682,-52.41023336256845,-55.046605667549635,-49.842078528278385 +9569,-48.334656234950145,-41.06088059398826,-56.77067383906896,-49.80974352485981,-48.52677349675722 +9570,-41.85561338197721,-40.39949541976529,-45.29917338478285,-42.12142058236488,-49.66711405097523 +9571,-42.63822908575729,-39.49123391511774,-35.545616002830435,-54.660434751011174,-36.290538278765766 +9572,-44.57308793661889,-44.28230164292606,-39.91307129699459,-50.135449956130934,-43.817530637506934 +9573,-41.17973765028129,-44.29674130806412,-40.61899604939933,-46.1644887700841,-47.32546186185243 +9574,-46.31721330278544,-48.817502548859615,-45.4286720432302,-60.90840663602952,-47.83831270531004 +9575,-45.20001676756062,-42.24931069581973,-48.2842946465587,-47.36475260972294,-54.13776752933213 +9576,-36.47052888285329,-46.68913725776919,-36.840271849031545,-46.43829905311574,-40.57875253759575 +9577,-39.86768002758963,-43.663000859841965,-36.070465664567074,-52.470709620221186,-35.85804237654263 +9578,-53.28827288164534,-45.00847328656578,-51.65451802769333,-47.512856758574884,-41.646639863442665 +9579,-39.10876108680629,-46.60473791204798,-44.63770253410235,-51.301873469737785,-40.32652814500809 +9580,-42.014264782431866,-53.481322272486885,-39.14378712254163,-45.568395375833134,-53.86716784713839 +9581,-44.4536895636585,-48.157265949328455,-43.16951886833639,-52.18806735626201,-40.145875089643724 +9582,-40.182483755458314,-45.26541811599376,-46.46763695516883,-46.506646994690165,-44.31685501876469 +9583,-40.69374228599148,-44.88026870776559,-46.41748811667942,-47.9603552524244,-39.679105507909306 +9584,-54.04219405234072,-44.82552259431311,-38.345519665435646,-45.862982758699495,-41.860476989798094 +9585,-47.11756205616135,-42.46487621617925,-41.32898128078222,-38.13990427309446,-38.81605521158731 +9586,-53.68624041825671,-38.68143537313604,-34.44614882747303,-46.53034069109536,-40.11051342682818 +9587,-46.26723267996225,-46.15690261555342,-52.84964842611703,-45.63073892312513,-44.90572157363427 +9588,-43.01139508311978,-45.58685312650201,-49.892255566950254,-40.23868619991078,-39.12914696196243 +9589,-36.625221172574896,-47.5596139100507,-47.47826235621323,-46.45695040473111,-34.55707537986991 +9590,-38.91473727484894,-42.15909135737548,-39.81961468841632,-44.19881007166771,-41.755924042116604 +9591,-40.19325100111701,-42.25121548259964,-49.28318684933414,-43.416415676900385,-49.75632890812238 +9592,-45.57750661873731,-40.12714311700809,-47.22298931552752,-40.483427358781306,-44.411243817117324 +9593,-44.52191862870266,-42.26668200151012,-49.62200041169931,-43.543911209229535,-45.49741731027861 +9594,-55.47944247950711,-42.30991341080746,-48.402069073713605,-40.07090769892038,-44.81655787701792 +9595,-44.56316715767788,-51.01076581544121,-45.214758351792675,-44.309675332574734,-40.582926071639115 +9596,-45.73469445474027,-46.60815273865319,-37.87459056289563,-40.43882887120258,-40.9391643012756 +9597,-47.55962248688973,-41.298207663114766,-40.91223469348317,-48.31557911649438,-34.8650273251244 +9598,-52.18440636674207,-42.95652679473036,-46.63720589716814,-40.09896941151406,-42.27396892618423 +9599,-52.73093444829692,-48.72365991449817,-51.84684438862965,-40.13099488998227,-41.186974973710335 +9600,-44.84303562397582,-49.32337834149847,-42.193752077069874,-40.325303695864335,-40.394139052116856 +9601,-40.951670503135816,-51.31164357287781,-43.58335226358415,-41.895550179531604,-36.808246301812964 +9602,-48.86833076621956,-46.268848870737465,-41.843161082943354,-49.09118454870277,-41.30523999164914 +9603,-43.8976451123506,-44.96332115335508,-34.148092149544226,-42.71576130116453,-52.794299597524116 +9604,-55.42689736434166,-48.05865180438295,-35.78149895669408,-48.03575975773138,-39.540484103067925 +9605,-43.10745593693775,-41.215366389022705,-42.052647106885054,-44.625997943908686,-44.54873848614998 +9606,-49.26763990298978,-37.64337298548294,-46.837939885429066,-46.29467476087088,-41.60077554005778 +9607,-47.544074726865176,-44.72505001814532,-44.335253453634486,-41.09622349755165,-46.254747332504614 +9608,-46.30851957873212,-40.33104395698531,-49.59817312064458,-56.06271747206218,-51.03039722727023 +9609,-43.156151513303314,-45.17053044483468,-46.90165003965128,-52.624690377455174,-52.335391974105576 +9610,-38.930254714888655,-43.79701519142685,-41.77569686594388,-53.52734226992817,-38.25454491170903 +9611,-50.89276877109288,-35.103361522693774,-41.32512968068853,-49.53754776632278,-45.11493349634153 +9612,-43.383577280388685,-41.60956727020769,-42.00776080385823,-43.36023619221122,-53.11954447896079 +9613,-41.80810676591732,-42.25504421301465,-35.97914719278097,-43.33121041768608,-44.114073348919156 +9614,-46.13977404880171,-42.41675331882706,-47.67599241622979,-43.81922945741158,-41.864673943971276 +9615,-54.18848794245703,-43.47836147769445,-42.539735286982214,-42.72071426324774,-45.62310939624002 +9616,-39.06834032165664,-42.81347171344742,-44.61643719494553,-46.91045807970172,-43.020090557280554 +9617,-46.17831874031892,-52.135678392331414,-42.82918965265239,-46.21061454212035,-36.60003504609589 +9618,-37.850071590882024,-47.34416177392268,-44.367331719215585,-48.741456097930104,-35.62198854207611 +9619,-45.73275981062333,-43.77863498162527,-48.70538849982692,-54.14246765899897,-39.22265748562186 +9620,-54.80082914766332,-44.44250966421486,-53.235897461436515,-46.62304701784731,-43.30894594097313 +9621,-41.55335182015429,-43.59457822570213,-41.32269573716549,-43.77372043957353,-35.448893631770055 +9622,-49.71511299011963,-48.65324589633543,-53.058403853478325,-40.75599643350111,-41.46627202027328 +9623,-41.661294604707294,-36.633407942087274,-50.080783813651784,-50.991802504476865,-41.713769931037284 +9624,-43.00765722549116,-41.94958196811917,-39.17417027045331,-44.62232566594096,-35.88310781082408 +9625,-44.44827204289206,-40.08254088641834,-43.06693553444624,-41.76408074209397,-41.54377945148014 +9626,-48.03356229333131,-44.33104575534984,-41.12882711346003,-54.24345793987278,-40.660941795197346 +9627,-58.31401850309567,-45.55596048597922,-47.0967232465584,-45.826198161928986,-50.36135174255548 +9628,-45.923663408897795,-37.82487199869077,-44.53335730633024,-45.89118300639827,-44.26765405335861 +9629,-53.49685291336378,-40.167331223432775,-43.771444770556265,-48.00499590628594,-44.455912738746555 +9630,-50.07682326762285,-40.815120398793084,-45.705525013045644,-43.43054380004005,-38.20208024634424 +9631,-42.633833900630464,-44.270910212939796,-49.004314999339854,-39.60747142202214,-44.68616358999869 +9632,-45.988323952645345,-43.20455480902998,-40.12565690382528,-40.70224827676495,-39.4998042399636 +9633,-38.766577304384924,-47.72886931597966,-45.38841663758176,-52.647447513488345,-40.558640747099986 +9634,-47.04206946915182,-41.487455488545805,-44.1030112243371,-48.798723835797524,-39.69593482522303 +9635,-47.612133508630336,-38.1710609580203,-42.528816817515256,-42.77222203242625,-41.06068440290341 +9636,-38.242214155839555,-41.610861371798826,-48.142835827819,-47.00416446344485,-37.05524438784633 +9637,-42.07269335059225,-42.960196129856,-52.02802134206392,-42.42151377208659,-46.74384048244384 +9638,-35.12827118387176,-51.37111635857946,-44.063579512351986,-39.57441212771916,-41.029669801930375 +9639,-46.332034527803714,-38.69940174828996,-48.61694169601295,-46.77109997164413,-36.42552398236541 +9640,-44.31931895305783,-36.50774189673949,-49.562205720726304,-44.464597533777024,-36.28212226048923 +9641,-43.10068704054388,-44.74371552457759,-40.56974597140283,-41.28148110715932,-43.263527241456195 +9642,-38.70823794055236,-51.6280181095827,-45.62282532812383,-49.02067104132141,-50.23821437601018 +9643,-53.7064438738468,-37.13519767465113,-45.30809616741001,-44.457462570757514,-47.010675459016554 +9644,-45.96412633353394,-45.553474506391204,-54.908043181427466,-49.152611667796066,-45.30953206299659 +9645,-47.518066405149284,-44.712171672851355,-42.27866781483194,-48.261686526785816,-50.82491682080253 +9646,-40.54166087409851,-54.32017942419216,-38.53850067632381,-44.96247806030894,-50.0015680897457 +9647,-54.59162608670595,-54.80963799265015,-38.8547885999645,-49.406283863010344,-43.39665001622115 +9648,-52.99995739541922,-36.08266538318733,-43.9488170309408,-53.22264028210083,-38.89110273061121 +9649,-48.317214594445204,-52.248005457776145,-48.30315498609727,-50.49462696170543,-42.315692344276364 +9650,-45.95789049930148,-43.72424485780449,-38.86886353849764,-51.243324387532496,-52.312835555205616 +9651,-47.28278527074976,-46.65008470445267,-37.91025614127893,-48.284519976465894,-52.434090660885815 +9652,-49.42525983581913,-42.423177227119645,-45.011165777807406,-50.284551361425144,-48.17433843910619 +9653,-48.54770669546377,-41.77929794236212,-43.09673270921562,-42.85286771085693,-42.71746306561955 +9654,-51.004941060001265,-43.492637332024486,-41.42678134697209,-48.29609135996958,-44.674085232175194 +9655,-43.89727877789274,-40.58000431593293,-44.62308174583999,-41.002624789893055,-42.68300111812849 +9656,-49.0583773154304,-40.91103926104547,-42.597607745645796,-41.415812299097624,-40.007383763093436 +9657,-37.27097100824302,-39.57095989847093,-49.542205079359775,-43.554608682264885,-52.72768603865979 +9658,-48.38093425293057,-38.63235181129678,-41.60518173688947,-58.68581818478888,-41.53226315438061 +9659,-43.89297256616801,-41.38290526230117,-49.34564776523888,-45.934812204923816,-43.65306286107616 +9660,-42.83248622129795,-52.68960993963746,-46.67892571915607,-38.552315702700845,-41.108874241210096 +9661,-43.768271166507986,-48.12326617366683,-45.22419254696207,-54.354297074500074,-38.50028998814501 +9662,-46.0317281793735,-48.0354357905492,-38.03927415757207,-48.62345266845019,-49.787946927680615 +9663,-39.93780567726185,-40.964347813026016,-52.94585851913524,-47.19974503273172,-37.42847504272029 +9664,-49.16942237762213,-45.518405346612305,-43.701260148796514,-59.089494362944535,-50.62305236993745 +9665,-43.64247813074493,-45.27694745865244,-46.40566778656204,-50.909789746201824,-50.45866726824324 +9666,-39.90605225261197,-37.8937263814566,-44.786622178099094,-41.58756732947853,-47.56910365150333 +9667,-41.11079117819565,-40.06969900510861,-48.715187106570866,-49.320128351905076,-36.55426031111744 +9668,-45.69206535438576,-41.55221988744401,-46.43910501500743,-47.17490216379851,-39.31474258462569 +9669,-38.627277621734386,-43.31436523792705,-39.83679409850001,-39.78786713589916,-42.79444322126208 +9670,-37.54064770543681,-42.749338980629055,-40.25139373747295,-49.24179375706321,-57.22472578210338 +9671,-46.09574001555098,-36.83691547417234,-49.42880250935062,-45.89820254213419,-50.33182276034668 +9672,-36.857146209126164,-44.108540546423896,-42.301857570452434,-38.27025999982206,-50.444353054041905 +9673,-39.033676976348765,-43.71705904627692,-55.76967260595309,-46.57155717276784,-40.37812190417959 +9674,-54.18036963341439,-41.84308520104862,-40.011647144051985,-44.88060196165629,-43.30798251925951 +9675,-36.569265333417746,-47.139994865968994,-37.756320718230555,-51.583703935283,-46.26410763566643 +9676,-39.77610891040558,-49.333341579570636,-36.865391326009636,-46.49250555018939,-38.78452069451085 +9677,-42.98746050906565,-50.35934600144321,-36.71925439558974,-52.563208452703925,-39.75489266802621 +9678,-50.44535105056824,-48.27665522670945,-54.418377220713,-40.569136559716554,-41.878035862299534 +9679,-50.777686059256126,-49.296431500004076,-42.42032720028526,-43.938237440411584,-38.4392675998228 +9680,-40.38892642318671,-40.13748075129803,-46.923575921975285,-39.224702969358844,-48.668169072562 +9681,-45.509686474892014,-48.64727107133196,-41.65399120817399,-48.89939336505186,-37.024827296667574 +9682,-46.04199542960899,-46.67354189773293,-41.719419116861374,-49.06969374677325,-37.82861834326371 +9683,-46.331654570137644,-53.43804887064367,-44.97313070211317,-47.2632475951891,-48.52563844708742 +9684,-44.4247269502204,-42.56919397184796,-43.76317592315665,-50.7851050237094,-37.6667001383494 +9685,-42.94338401252661,-47.93509905572409,-52.09757124303197,-39.692208366589554,-42.48561971176251 +9686,-42.906769909133395,-49.74957025535332,-39.93591948807442,-40.78679086354618,-34.53927537509915 +9687,-53.43943728907534,-40.00168521711289,-40.542136145708504,-38.82706276999236,-41.69227718124357 +9688,-42.000458388141716,-44.180341005051886,-50.77327528847721,-39.807761300795505,-40.08692272667147 +9689,-42.48099732620623,-45.12542433843136,-52.385278677386154,-40.26021413632875,-46.381303466338565 +9690,-44.5263833453458,-55.1043624035284,-54.07815668021309,-44.5178015719873,-40.67916527675759 +9691,-37.137354236953655,-40.35768115047268,-38.4274621631584,-37.768083683722224,-43.39347803289179 +9692,-37.26062848290695,-49.44405389352817,-55.372963154230675,-41.133034808418486,-45.98172637415948 +9693,-42.47848920339077,-44.0776710941639,-39.86698430325214,-42.297689728297506,-40.6064585222603 +9694,-44.84891312028754,-49.548314301383,-35.19978987379404,-39.76454487273462,-44.13772577917409 +9695,-53.76929890494643,-50.12980424260327,-51.27882673727088,-49.60613507974035,-45.28279559645278 +9696,-41.39449490504632,-40.548209597499664,-49.441161388907204,-43.82002191025661,-43.818171714757334 +9697,-45.88546506689964,-42.08180078327298,-43.152083583752606,-48.15309021098215,-51.64708853683046 +9698,-39.49743937482193,-39.43066850512738,-45.082278023150224,-40.40666359658692,-49.102426286190884 +9699,-50.430935830465714,-44.816731963566994,-43.43152260269174,-41.88129592618959,-37.916882272594286 +9700,-39.08686275503851,-42.014662929183714,-45.768238979981824,-44.39319841698781,-41.22612231751466 +9701,-45.47404900180472,-45.487199772861956,-48.81493838403467,-40.832735292433405,-42.81411636856232 +9702,-40.70408569624198,-43.97110885925971,-39.158984266093725,-51.95936158689798,-41.68127262949647 +9703,-42.71460243023802,-43.60312609723418,-43.64968807187685,-45.450974590070246,-48.03146177139506 +9704,-45.539120578310396,-34.23779457942264,-47.44801643376754,-46.489012066213824,-36.26705245507499 +9705,-43.62392039907613,-45.981735145678336,-39.232287674258295,-44.40289376653668,-40.570495944454834 +9706,-37.43727893666167,-41.79478670849183,-50.201410572337245,-45.04964356935954,-38.83944848910731 +9707,-53.782169846965644,-48.51256884460273,-39.86350275381592,-38.09033956438229,-37.15568164776512 +9708,-47.71574372658094,-49.01780819731636,-40.27359076743583,-50.53531552982726,-52.45884618921627 +9709,-50.36858466063174,-50.07331529209427,-39.107911911483406,-44.73079176285088,-43.390326998273075 +9710,-46.43182414022402,-37.12775293670695,-54.01220469897027,-54.30196929174394,-55.53175230943076 +9711,-44.66850497791035,-38.912404287454265,-43.87351226977512,-44.673020552210815,-42.08748368962239 +9712,-42.878944808243915,-53.89548655088641,-45.0064587555078,-42.66355689524753,-47.69816144394367 +9713,-42.153284218350194,-47.97110828899927,-48.32048265767534,-40.47473995616237,-55.45180465668907 +9714,-42.478001375397504,-44.68369499562489,-44.53800650277167,-45.68462667680976,-41.86377841833458 +9715,-48.466313494725966,-51.22320886862106,-45.93312239746718,-46.86082543412252,-44.489509808936376 +9716,-40.3195739550983,-40.9783518382622,-44.647182378605606,-47.180776926777234,-42.20149562543427 +9717,-47.79260151918661,-43.96160633655519,-37.89173971208061,-40.232472863770724,-45.21823808579908 +9718,-42.334545243441305,-42.549023802763344,-46.94286202170376,-44.821893932281384,-38.885677389077 +9719,-53.55603069096131,-40.50323906266284,-44.48986427487563,-51.97293538873447,-49.17680297603764 +9720,-45.40162401193616,-36.21868152674373,-45.405208051885644,-46.656711622657554,-39.34084913287874 +9721,-42.5504364934148,-57.14795225169858,-50.26920367842122,-58.09859114080044,-43.46182810736245 +9722,-42.803609816686006,-46.12715511642436,-48.98875191885183,-45.791050530276046,-39.244952610604344 +9723,-48.41579488456508,-52.384519522026025,-48.042689211784655,-37.08798608929772,-43.76712906690967 +9724,-41.16312314121298,-42.79961839578237,-46.2285803561842,-37.188757094618005,-41.41976285583886 +9725,-43.48918800274314,-36.50917315091954,-41.27904752922134,-47.288951502794276,-47.90056298732373 +9726,-51.35644652331058,-47.67797670521098,-49.958402242676925,-49.74808940512014,-38.74012239894661 +9727,-50.99468124972376,-40.0240110938482,-39.69157702406352,-37.340053832050124,-49.69422368091882 +9728,-44.84794734629591,-43.81270200247143,-50.81770368719389,-39.53100840791481,-41.22786061837962 +9729,-44.37433623689653,-42.24479421012814,-34.99565468696558,-41.76384266254824,-50.77023264141609 +9730,-38.35008326140177,-53.030006488747695,-35.9126115811827,-49.19182214960248,-46.46031727199605 +9731,-46.60279409803418,-36.372712315325565,-53.695900039647995,-45.21650472756674,-41.4478029517442 +9732,-46.85295937799176,-50.84050474792203,-47.530555474150184,-45.85796669106256,-44.999397901752126 +9733,-39.15728872537647,-49.35714572676897,-46.84873948879735,-41.223686548246675,-50.27301431033614 +9734,-41.51858957150094,-41.83371510819242,-38.3930977650876,-47.331472536387864,-38.397618198730314 +9735,-44.723719628207256,-40.409747720513074,-41.94564724906069,-38.843939666144855,-48.35608784907484 +9736,-36.97992803039355,-43.8805920356742,-45.7447941644751,-44.39544234497685,-46.61400735172102 +9737,-38.414813587062596,-48.795853896839034,-46.460996483763594,-43.303764279692125,-50.47793752407437 +9738,-37.12791253924413,-50.577146670929636,-46.16803671288893,-48.75498448674395,-49.791951753695436 +9739,-47.29039504668728,-47.90555545483699,-43.79334827234845,-40.85339856338615,-47.43437279347989 +9740,-46.579289669124805,-53.98348986010917,-50.99251052375752,-43.51989968230243,-42.22970981032035 +9741,-43.443523536693455,-45.66630795976398,-50.30467446648511,-49.387503454327465,-50.99212936270282 +9742,-38.81934926384206,-40.035164643655,-38.30348293994639,-45.94618606060424,-45.1477308938207 +9743,-40.55642899681624,-48.101012227902416,-41.38116440336937,-48.67905231491121,-55.87011236470586 +9744,-44.839791394533364,-46.68859313967894,-46.14110022070303,-47.516839235646835,-37.86773807910397 +9745,-45.438218466233856,-38.90229723570105,-41.13296442340514,-42.62220055920659,-41.30634947970579 +9746,-51.466631429863675,-51.032386118714676,-39.14211869535817,-52.311405989398224,-40.25395255949854 +9747,-45.01350494109857,-56.444592003875,-42.732208464358564,-58.60820200337132,-53.728836657259635 +9748,-47.06815199616591,-41.6788737142589,-46.96152817759164,-51.78982421606932,-47.1256838859664 +9749,-43.44650489215247,-57.170295847816995,-39.29418199550086,-43.90935599067083,-48.050833701716954 +9750,-52.36958153521358,-34.317975231658274,-49.90355458124265,-43.75500122943312,-47.506572227222875 +9751,-41.30094142130164,-36.66957995237927,-48.09429103169468,-49.59605454340578,-44.18325680078301 +9752,-50.393258811447915,-39.09642930250187,-44.630884631799546,-44.87289186309623,-49.19525539176405 +9753,-57.18975266904243,-40.39596431134981,-39.04023605592289,-56.104798294740554,-52.07159803157009 +9754,-56.51819869014539,-39.00772630497209,-46.35099959523834,-49.952577039401994,-47.62000374152703 +9755,-48.18632973857788,-46.18530347604554,-46.31297487546358,-45.59460631731035,-43.362418650755565 +9756,-37.24272767267329,-49.733523598046986,-43.364178327766304,-38.681398136275625,-43.018802416252186 +9757,-42.45955335746804,-40.81149105999243,-49.95310592735985,-49.378446617467084,-49.32465882178185 +9758,-52.40381284557645,-47.07209941481092,-49.97319863512348,-50.9359542363738,-42.241550549843254 +9759,-47.67037600786543,-37.56462793085561,-44.736132622602305,-47.15322341233195,-43.26565416408652 +9760,-36.52542658866034,-45.118156792092144,-36.4893245380252,-48.45559452562113,-44.580723931230686 +9761,-47.68326754508922,-45.89986134030333,-45.09482382142132,-37.66487262391343,-50.83446137565263 +9762,-43.520102023401286,-39.9642952610351,-47.09211391738259,-54.7849702500979,-56.08251200528139 +9763,-42.827062550389975,-47.60879818877799,-52.0818896122126,-42.762462983081775,-45.923901826565206 +9764,-42.06982315116564,-39.22415709251972,-34.19228345652661,-47.474980545327824,-41.5900536934918 +9765,-42.07066147214629,-48.16883354482511,-50.76558409373047,-48.235395516294595,-41.21172345019753 +9766,-45.98474744269205,-42.309287595538244,-48.42876072648948,-39.398943480392944,-50.0841617535871 +9767,-44.14927200894031,-43.92213496808423,-44.22198314752625,-52.023696094683864,-48.582226695239754 +9768,-33.48084829776248,-39.28631474000409,-46.19280428320637,-46.794827524898075,-41.73222304836104 +9769,-46.00866937487819,-40.31324492516279,-54.16526568120232,-40.260148461073705,-48.65435674300812 +9770,-45.4900578871029,-39.6190486772861,-50.50573477158567,-39.63976940740076,-48.32895597451876 +9771,-52.987813560508336,-43.95431284224389,-42.176711334148784,-39.716256815052446,-46.965327502424536 +9772,-40.37412277962154,-44.7426775608967,-47.33395535642827,-49.68200759803053,-41.96525088548833 +9773,-38.53587878330887,-39.46891988391461,-41.82911935334332,-39.70245037742156,-39.94455603987229 +9774,-42.27502439506176,-41.74311086454746,-47.37482747527022,-47.81380067136645,-41.63161945977322 +9775,-50.16495048464437,-48.335647924484185,-38.793817339183775,-56.89349321613678,-42.642120293718946 +9776,-39.236652150559856,-55.51741873044127,-46.64325652444295,-41.72479883050761,-42.55756629300071 +9777,-41.856684706958475,-43.200687223331414,-39.792469916066246,-50.926433091764956,-49.673697604013626 +9778,-53.728008171393355,-37.375923123281275,-41.45060104759298,-51.5985067161791,-42.17735806062204 +9779,-43.33431829099054,-53.26553988227632,-41.45522291884238,-48.83241126872278,-37.31248756040739 +9780,-51.295570019924234,-51.27347748449827,-49.30910093764367,-37.01223337018564,-39.07406875265991 +9781,-43.95173284213155,-45.79203406741243,-40.687140328027574,-59.70884199130275,-34.98523569064589 +9782,-44.059820728439625,-43.90762768923936,-46.70819596663149,-40.86041027800962,-43.60581283333515 +9783,-43.834888961052876,-50.61742781682839,-43.02412113537774,-43.76724830347647,-41.662094560513914 +9784,-45.078877518464786,-46.212086136205706,-52.42538441090074,-37.89305486963806,-42.037589542218655 +9785,-39.96763179623564,-43.85917929930197,-43.47768317714765,-44.693041323819685,-39.566091781991844 +9786,-47.519680701868154,-41.644005138913506,-48.99317378606481,-35.9823262969747,-52.18534009147582 +9787,-47.0416131110772,-39.69917502010626,-46.814021366892604,-47.17631770101143,-42.66347117519501 +9788,-42.11531460963173,-42.330412898704594,-44.07821691693968,-39.90445738783346,-49.159228125263695 +9789,-43.126300457717086,-56.16938660261268,-43.520867941678226,-53.11352867617966,-46.86238769803628 +9790,-40.90350363358714,-49.433951906398676,-46.38596720048309,-41.886904551566026,-44.2876058283332 +9791,-43.94502729902717,-46.179087907547945,-44.531613022675884,-47.90817238479681,-53.078161260070345 +9792,-41.236554946951124,-47.04328637489357,-43.699145179527356,-54.36434463138783,-48.53739371222295 +9793,-46.67570590052755,-37.37252904988009,-48.900964572111455,-42.649085585495406,-44.544613571458335 +9794,-45.42069199846744,-39.14679811899669,-45.7931317232806,-47.069939485282035,-47.339308970603675 +9795,-52.30076390941311,-43.577682746131565,-42.75907389285246,-58.95979646571616,-47.62994081454022 +9796,-46.08405622350524,-44.025531546271715,-39.69776674807487,-50.00717369791509,-43.20906435942041 +9797,-39.41415285153031,-46.455967740214305,-49.67417975891757,-41.34795463806882,-39.8938604080924 +9798,-51.89868209713304,-45.174994804031016,-53.22078615246935,-53.82599158434066,-39.67540707721788 +9799,-54.63003935329273,-52.25580563107516,-43.35347637506594,-51.2755411042524,-43.07039758399003 +9800,-42.54139010693767,-58.94825941189444,-39.26061146109251,-44.26185953084905,-43.71817429706732 +9801,-41.03837358871208,-37.688347723722934,-49.5095753892851,-48.21562627851229,-38.3744356400699 +9802,-47.475345483899254,-49.5158373478229,-36.470456173279786,-37.954029892553585,-49.55999472752043 +9803,-38.87079485242995,-50.55989033345889,-41.74921323990596,-49.62164635638717,-47.11209980962171 +9804,-55.036334873505886,-39.04786672770085,-34.69884454163109,-47.990656945241824,-37.09515647300729 +9805,-44.18799146713304,-46.64446621569005,-42.405028279685745,-40.32688114685046,-43.113169836064 +9806,-46.02211045326414,-43.96970784848628,-53.74124278403213,-38.994035190553916,-40.65408848252236 +9807,-46.90071309857033,-36.00805886777384,-42.08276172719506,-36.52459719819244,-48.355249287642245 +9808,-44.12825350158387,-40.60997595152938,-47.21446389133799,-42.47128073456627,-45.470302601691834 +9809,-42.52314224004018,-39.37748249929525,-47.01409046847229,-45.79513534414101,-49.7524876842887 +9810,-46.08185268197087,-37.680874990794294,-46.49869195993651,-43.459661825874306,-48.66888516239558 +9811,-42.46300698520559,-44.87863858966412,-51.2148467746509,-42.00918511458856,-47.63394989527616 +9812,-44.828150098666015,-35.572644859406495,-42.77313628333734,-46.31898230032208,-44.19852208516907 +9813,-47.8255679388267,-51.52454133541699,-46.85531744747126,-55.95948934808547,-45.604728642216806 +9814,-41.467379537822374,-49.55634189032149,-44.74285548093916,-36.725682077258625,-43.17655729342848 +9815,-54.75904994961617,-43.567299468954516,-47.172916156010885,-50.24477730370528,-42.47451159163857 +9816,-45.923103343085586,-49.250849168725416,-45.639492202390166,-37.54639762061635,-48.414557816069376 +9817,-35.710916578262236,-45.86843372407002,-49.23636268691715,-43.77980543472224,-48.95081079470226 +9818,-43.78697665291947,-56.76648228519224,-43.037879665026246,-56.10709105639355,-41.60788730972586 +9819,-56.70618059370986,-46.933507248656944,-45.52320425398431,-42.39616604824461,-44.343623086970716 +9820,-41.578784874074486,-37.850170094963694,-49.843823317083796,-42.69484645821442,-47.269241360571996 +9821,-41.74310885287761,-35.96292513216337,-46.88264462553119,-52.483242668814206,-44.737694607613754 +9822,-49.379244333518095,-41.45931303793886,-48.56116158789987,-40.83893723876997,-37.56394255651978 +9823,-48.61912340296876,-39.97701930994862,-42.90042232086933,-39.68275444321413,-46.72522480257494 +9824,-43.56611683663901,-37.89019099553137,-46.015785774782515,-38.800187130013946,-38.23578153177662 +9825,-46.496040249746834,-38.362443935465755,-43.47092024002109,-38.95442116017757,-39.420279875730245 +9826,-44.7953574817925,-45.81180730283972,-45.32335453533768,-44.72027792719849,-41.26776108037978 +9827,-45.249683066519474,-44.52666556360583,-40.9477507161291,-44.282799373240195,-42.03925067168903 +9828,-44.87802440777027,-35.996827390119286,-39.57134182511211,-41.95595906625638,-38.50040285019033 +9829,-39.958501647518496,-43.68803239947571,-39.296796569776134,-36.21504775353806,-41.62676047970705 +9830,-42.930437917414146,-45.5922438681359,-46.461926647969186,-50.01779998789749,-38.868267840538074 +9831,-45.10191564891426,-38.495674515718406,-44.45577892419875,-40.38117863509949,-42.98778156524347 +9832,-49.35091396032708,-35.368792725279796,-51.098543729427064,-57.495285976214475,-49.702693977376086 +9833,-52.90661225599545,-42.22017092889118,-38.75200051569192,-41.874282005112924,-36.70641218286281 +9834,-52.99439114139552,-42.98290330431219,-46.853976196490095,-38.11497418926736,-40.70154968320304 +9835,-36.19142533858846,-47.598544525987585,-50.01745134243534,-50.25789677015098,-39.56655342367212 +9836,-45.55458742242771,-45.748731239704924,-47.09364680746771,-38.05563113829467,-40.72375104746551 +9837,-37.27624536944531,-38.64426815107902,-45.515318354495385,-42.850611967887694,-41.68060258087291 +9838,-45.814357410394024,-42.95715185063933,-44.72136983528072,-46.68332654718495,-36.6418004716022 +9839,-52.5886212393204,-48.42535526048633,-43.5776025287813,-40.93504487522677,-39.68003129256276 +9840,-43.63180846306448,-50.105163034569216,-41.50703301725735,-41.48893115864381,-36.95664861527233 +9841,-46.625383830265115,-47.16553935103485,-42.35292707834729,-38.92423580272022,-46.48982356604009 +9842,-45.71813006202389,-42.81735528752112,-43.13023206764012,-43.10455863570891,-42.84874212907507 +9843,-39.192840394551595,-42.21924669367763,-39.239958494002735,-49.83587118763179,-44.79843660366848 +9844,-41.82503690044167,-43.42369474938243,-39.85281674352236,-41.66695983676333,-37.90321258957225 +9845,-40.17721332164455,-51.692369193860806,-40.02294473750075,-39.35025754958809,-47.00545435171162 +9846,-43.343343536120344,-54.7107880542749,-44.32665042142731,-48.79453700526879,-39.21591430031139 +9847,-43.75268231187499,-45.17264953459663,-50.961945868789165,-60.96808583482927,-39.70237952811725 +9848,-46.44628520150864,-37.656977062190876,-42.085503180500396,-55.475906411614666,-38.51925787612024 +9849,-45.2979391433332,-47.13747094358377,-50.423975070719074,-54.532691779359396,-44.086668971062004 +9850,-46.822903617058884,-43.659942553488825,-43.21305489077624,-43.32910073477609,-37.02327666831148 +9851,-42.2304730557457,-48.93525223211615,-41.25553219470036,-35.802330462438206,-44.19847694439721 +9852,-46.925814756866345,-43.263567026528676,-38.27075524987238,-54.498575189644,-42.47970870007876 +9853,-41.28893391084795,-38.186742672116054,-42.72049282650832,-51.09968927447547,-45.34270340280705 +9854,-51.93634371368517,-36.73941451120559,-44.44980998134413,-48.55491548480849,-46.19606384509811 +9855,-45.34743609866769,-44.01287698475772,-47.16108754359361,-37.77472443885239,-40.043586571703514 +9856,-44.1554951318174,-44.717309783545744,-44.11355077730534,-44.08889352929554,-50.216888807113776 +9857,-42.80128881774024,-43.92920397473833,-41.31979615042693,-36.36226524319174,-49.58880102433082 +9858,-42.02276855227886,-42.827233312023836,-46.2314096884334,-40.91464817256972,-49.827100978319876 +9859,-51.13125193367091,-39.87590661067864,-49.62705324054918,-48.44324364920499,-37.60255112717068 +9860,-52.7483827133641,-52.316005700139684,-42.25102992393359,-39.3590005886726,-48.594860018820334 +9861,-45.125318058198815,-50.498709479504136,-47.775287923838306,-42.776991514893105,-49.77112007532306 +9862,-41.91275857806275,-53.96174366450716,-41.22071987130376,-43.611880945830805,-50.02204408270331 +9863,-53.11806075647089,-43.46219815286206,-40.633625270312585,-45.432868026227446,-54.59596556554158 +9864,-43.17090544889626,-44.232152187143505,-46.683600075745495,-57.29387548003603,-45.932914165087475 +9865,-48.81385927743967,-42.45385678488113,-46.81801718221325,-36.66741053113847,-53.99840702245937 +9866,-40.66232112249196,-39.23638894860871,-50.28556030807649,-39.62134315373703,-39.88308466218235 +9867,-54.826492152659974,-37.808702164228784,-41.48107795396261,-43.278591029876125,-37.53893197102768 +9868,-46.88555317848711,-50.607892728064066,-45.75719796619492,-45.050833819595965,-44.55674536845851 +9869,-41.24545975061002,-40.52785749937772,-37.28743578485782,-39.7966243597304,-49.14892607095147 +9870,-37.85110292535498,-47.29744242533734,-46.82463101562786,-40.44212015939458,-41.21840173730187 +9871,-44.76557676859152,-40.285523900155255,-37.3629532990502,-42.2163382962514,-39.69545869399485 +9872,-41.087979831306825,-46.68726011354526,-41.523400395466545,-40.37903203648312,-36.78854252687026 +9873,-51.84981446804107,-51.33716707618093,-47.6822699578854,-50.337451018506336,-38.73830235533389 +9874,-43.59814436621291,-38.974278617017156,-37.9870395445265,-45.065830612189664,-42.87755186259225 +9875,-44.34443695106262,-45.77479502809508,-37.288251674802694,-36.03242626752563,-42.27842009876011 +9876,-47.37574117037714,-48.72175442411458,-42.29996358206837,-42.91903430069183,-38.63371716339086 +9877,-39.66884956448864,-41.15240472169631,-46.23074054997733,-40.67532085826802,-38.08386766062865 +9878,-46.63946857594139,-40.31300714450194,-40.25503739590997,-40.38915040547568,-35.49049468449061 +9879,-37.86216535023753,-38.2898274091383,-47.20433343513609,-35.71462381627255,-43.76329257410804 +9880,-35.151363004600086,-51.87463696442877,-47.23533016597781,-44.90161065464175,-42.06184657443829 +9881,-41.08263027923383,-47.49584021803224,-45.725311976460226,-40.57207973006939,-39.35804379242922 +9882,-39.9116357028445,-43.4086926659549,-48.27723450805813,-36.38398897578008,-41.7114490166357 +9883,-46.5515465372578,-44.74519756888978,-44.262699136898554,-45.71243332425464,-45.52557548171869 +9884,-44.622115928965776,-42.87500412120038,-43.96057469644248,-36.44946842419772,-39.668313920888835 +9885,-41.10438274869359,-45.84378336856984,-47.11453715850903,-48.693354549671824,-40.84949591435558 +9886,-39.052571000446086,-41.7819040214731,-48.612544710641956,-43.889389222201316,-47.67261588856904 +9887,-38.63881213243655,-52.368202996621534,-46.437536911002404,-41.79205316114301,-44.44589376290445 +9888,-39.15668917683482,-39.07125657839776,-47.66086890239285,-41.07651492296731,-42.818823085170614 +9889,-46.02664594246271,-47.20172737710372,-40.65749303445168,-55.492346705382,-43.23944509333865 +9890,-41.599220442433165,-45.75334309920566,-51.088682228993676,-38.085735737291955,-43.59649687983356 +9891,-44.69960691705152,-41.62618172239844,-46.52537189794827,-49.90096137059401,-41.78705386088981 +9892,-42.48131283407169,-51.96456545211029,-46.61218199273926,-42.93518053889838,-51.6497355113377 +9893,-47.02935527175588,-41.625321962662895,-39.1854408363729,-34.67994123084028,-43.28639236956417 +9894,-38.50400320680757,-44.529352662160946,-48.98305457249765,-41.019746334982955,-44.43786471611133 +9895,-44.93618230318147,-47.54427872752245,-47.193814335782115,-51.09125290673327,-46.00175742470543 +9896,-43.455547592981844,-46.47912058761734,-47.816884616436,-38.66247312841266,-47.567349711399764 +9897,-41.32054550066908,-42.320448842888474,-44.31452424743448,-39.470623412134756,-33.54257089226095 +9898,-49.67548299435085,-45.7888731449201,-42.35682600937501,-44.7063152411157,-45.63614400396495 +9899,-53.38611224340377,-41.86397801525457,-41.5094277684642,-48.723296145686334,-49.72644214650073 +9900,-37.95963456690176,-45.99520197192769,-46.426820779180936,-45.214819901598375,-42.66067841432343 +9901,-43.58281837490587,-49.62619618400158,-45.93977942310505,-44.08008860420379,-47.34380613560606 +9902,-44.92739459529727,-40.135426658924004,-43.74683632108426,-40.85016803044405,-38.27543422337855 +9903,-42.73322926049926,-38.59579640412976,-41.160313345237505,-43.763433656170626,-43.50029916292292 +9904,-34.87687108428441,-40.25689755915852,-39.543929444508734,-47.51532252968918,-46.00940978308323 +9905,-38.90505101383764,-49.3603401829739,-51.749568408736394,-48.76004727180172,-44.3616132505391 +9906,-47.986802630563794,-54.52460336242379,-40.91108132518762,-40.7614162565552,-39.945512934064695 +9907,-44.91287711025512,-45.500827043348394,-47.86207631868604,-39.602416908924994,-45.268415084602466 +9908,-44.28056869254807,-48.17947890014237,-40.008988728237604,-42.515133666353584,-42.03745095455213 +9909,-44.75652702467405,-47.55970093669549,-42.77495836855917,-47.833117507609344,-47.46641133157646 +9910,-42.796039821341346,-44.83716724131083,-41.29313518208787,-43.703168858249576,-38.08806461173461 +9911,-40.38228991707354,-37.2949735125997,-39.32305746032464,-41.8794130829599,-43.380787266330344 +9912,-43.51708616707586,-41.41150029446915,-48.6083708972136,-47.83312946952924,-44.369856920268056 +9913,-40.924474613043515,-47.51694101620198,-36.046265929785484,-58.60299260793032,-38.890573702385026 +9914,-39.51041828661029,-46.07599942509755,-37.91868572214845,-37.23066609801988,-47.166537753202874 +9915,-46.646253349824,-45.280740551794636,-45.60269021719388,-47.315685172971506,-40.857861942557804 +9916,-41.310561287322585,-44.44351495054582,-47.96398432350501,-40.85079723262694,-46.13107577432316 +9917,-48.90591537947238,-47.56905802323131,-45.056553299740095,-49.780491014619756,-40.01951360424564 +9918,-44.91009799982026,-38.05620450104339,-40.39688492726568,-40.39438243459361,-43.749827745527874 +9919,-43.871101845344285,-44.52401499748309,-43.30198220960946,-47.252496374021206,-44.71564661533817 +9920,-48.2646846103694,-37.52622616974439,-38.62885461674093,-36.975719874984065,-47.43593703626066 +9921,-38.26149989645653,-48.22469771998391,-43.40578072387307,-38.46010670747418,-45.712900871195714 +9922,-36.54885693958224,-47.80886542553843,-42.53503829345937,-45.033172471179164,-44.67128064888595 +9923,-47.07822894775192,-45.49276572269975,-45.848918058933144,-55.88425959770962,-45.951493891864786 +9924,-38.76742596905962,-46.10646486849794,-44.061686580417884,-43.977284271089026,-44.798278384384616 +9925,-42.73567381845994,-46.00911210704136,-41.834508107932415,-44.827115649569954,-51.71631197816054 +9926,-36.759535783680626,-34.521110076722024,-35.88315286380091,-41.28665189286065,-52.27261854902077 +9927,-40.329120980569414,-45.742438479717485,-47.36170547568408,-35.858483941360284,-42.14323285084604 +9928,-51.45455006236651,-36.325423691413576,-47.367800967724015,-47.52439424294503,-48.13246076480744 +9929,-45.83907674673217,-49.77003350139034,-43.040250721315445,-41.68704788755396,-44.27316267639133 +9930,-40.69901487793791,-37.787662212775416,-36.92436870670584,-46.29100356806277,-42.25642710309486 +9931,-38.986377108647936,-37.59375481131718,-37.75825175219202,-49.275895478838954,-48.314495542484735 +9932,-43.367771976528644,-36.597316091154255,-49.45914342221641,-45.05564763875753,-49.86603237127332 +9933,-39.37971097774548,-42.060438563266416,-36.65272186446641,-43.14969185732641,-52.50362523954086 +9934,-47.844822469001166,-47.96863093876803,-42.18851369613829,-35.61207708295019,-44.24447294046796 +9935,-42.63722034680903,-41.233272727580825,-41.46186356207663,-53.019130212464916,-44.122789656991365 +9936,-39.07546425430189,-43.12135941757235,-42.788933353348504,-47.337893659601406,-54.637747124945946 +9937,-41.08722446704783,-39.35380863804913,-47.49789781319257,-49.67416038324333,-41.02234224464549 +9938,-40.30108668668291,-37.49850088691006,-35.880337484413594,-45.86652167123657,-46.399639475675386 +9939,-44.82814075717957,-42.63077585733551,-39.486116877122775,-58.67053110683846,-44.295242086929264 +9940,-37.803756342198426,-41.83631516722648,-39.49997998713108,-49.81288796903181,-49.777148731732 +9941,-39.59383754676399,-43.15660076905673,-44.10936001195897,-48.8172301930786,-42.31123118401401 +9942,-37.711789856859134,-45.95856552170092,-40.3828451071357,-41.70270412362305,-44.95605286858007 +9943,-44.7218970527888,-41.68139625229915,-41.100268693996156,-37.256045864093885,-54.47017106101973 +9944,-44.207546451859315,-49.78831412569283,-38.16686015550296,-44.87962049344907,-46.93768909433899 +9945,-43.4408554004303,-44.28519373875809,-34.550680456491115,-46.75269203303713,-37.52576027988064 +9946,-54.41825430788702,-52.37523557395166,-40.5675354610693,-47.3158546481493,-37.8269924521841 +9947,-36.57979890909455,-43.47026110378745,-38.60118023433659,-40.23761211520651,-39.261594119839586 +9948,-45.59337038049556,-43.45574223631042,-45.9593284662828,-52.00280404825088,-41.44501377118381 +9949,-46.43042056847585,-54.076510089298765,-41.438193665513026,-49.97061415699868,-41.44398052475617 +9950,-44.36608034933557,-52.428674502130576,-41.45058878951246,-46.6911850902017,-57.949885839024525 +9951,-46.48476251997319,-44.19851237320835,-42.11168622506299,-37.58461474621821,-44.31695508636501 +9952,-44.31593714871682,-47.27645213405116,-41.652503549636144,-45.24967397703197,-46.5673342465747 +9953,-45.452469988028,-43.61693334626733,-52.70125190303259,-51.42970488347322,-37.67007982666168 +9954,-47.25643258623621,-49.88258972915818,-44.53953056551859,-38.273744529097186,-52.36645502283769 +9955,-43.26439629227921,-35.84802643984101,-46.816082246187044,-35.18544819696134,-39.78834394899549 +9956,-44.48576579086788,-44.66609505584347,-46.664196609642474,-39.06632121861122,-50.24844632724041 +9957,-51.77476924480756,-46.987934626931775,-45.380386294861474,-39.70033695565149,-49.37808978805824 +9958,-44.363068681590335,-46.84374193257897,-47.9700207717673,-44.111201459628916,-47.409448438337805 +9959,-37.14061336101831,-43.48549861375679,-46.498823359005506,-47.844613615861846,-55.21902994287481 +9960,-36.766751934632346,-47.36516015152778,-38.92754761513825,-50.04629512776312,-46.03333024747531 +9961,-43.94483145871948,-37.55947612018699,-52.593127778823415,-39.12005878800491,-43.28768667692313 +9962,-41.70820551495585,-46.012968330798415,-40.49469538392064,-42.19144977465876,-51.16527792564414 +9963,-34.52275011446877,-44.991386715942596,-43.54303830837164,-37.83479938645038,-49.789606029375896 +9964,-41.48363114459859,-38.19988149310833,-36.78287633476955,-39.83459655804498,-38.68406728975563 +9965,-44.510655696014915,-49.04768694896635,-40.14200514754167,-45.34495764567384,-38.1358567054316 +9966,-41.3995313005125,-46.79495865300057,-41.75340117692434,-42.65755854867119,-50.527645965111404 +9967,-39.152244726483616,-41.57363843129712,-40.30756429974897,-41.37971603459039,-46.49512369106861 +9968,-42.423594060012185,-47.76524894279185,-44.12219935816557,-40.70100352955517,-38.518943049126484 +9969,-53.06386127606446,-37.51204086775126,-40.45237624536843,-41.51576285630081,-44.59839390711635 +9970,-43.17249177223436,-48.958709018333764,-46.17637476795386,-43.894700693082925,-36.04874121007624 +9971,-48.97817696167183,-41.04261824485249,-39.903267233650844,-38.774034568923135,-44.7992548775754 +9972,-37.65177427871315,-40.48626204296332,-55.37640317924489,-44.2740551066125,-38.86987057041502 +9973,-49.70805110712169,-41.141876839680734,-44.18870732915525,-41.846397777566196,-45.59682012733854 +9974,-36.08853301545301,-36.34131263444458,-43.581958032776306,-54.75054867405919,-49.7142383078987 +9975,-42.88323707079604,-43.23445170546335,-48.68628173605032,-53.68166308911035,-49.985644035127606 +9976,-39.47204542232435,-38.11352076221502,-50.42712282041953,-49.37488829899257,-44.465088606933016 +9977,-38.117818567884946,-41.8088371948529,-45.19293412112099,-51.488224684899535,-47.74143909062402 +9978,-46.01075348370448,-37.94008005454176,-46.77496485016962,-38.68902910246028,-45.09189857594886 +9979,-53.61826909660315,-37.464523776792056,-47.12800404032195,-46.78532072645923,-44.06468627974642 +9980,-44.19178738054338,-41.310340134193105,-49.139215507903366,-40.65995429165815,-38.05398198834682 +9981,-52.19039263610785,-42.03446768793415,-54.44637580009325,-45.179226970735925,-51.427457438649135 +9982,-41.66839083843246,-40.30476511254723,-41.57504240985993,-46.39277495892828,-38.2862289001051 +9983,-46.544021137146906,-44.06462615302424,-39.12748845906774,-50.71889401231897,-32.16933937066202 +9984,-43.69424007458886,-49.69762377915458,-47.828849029797404,-51.224368192939025,-53.60890010511 +9985,-41.381292616057856,-53.074640321760675,-40.627128131221355,-38.04706143342266,-39.90663414585352 +9986,-48.618839000928794,-44.451741791896325,-42.43599372119377,-53.45342933613095,-52.185863245659164 +9987,-45.13042898881615,-50.44615796741811,-42.566564117103894,-48.695344643254074,-43.77469815080533 +9988,-55.080411938259424,-38.48282487963502,-48.765354194772186,-50.02877919853733,-42.00312391081247 +9989,-40.98768298026096,-53.60658978783859,-37.79131464440691,-39.64433779982401,-53.60918298062716 +9990,-48.95976701479086,-44.57484648334199,-37.01328667238758,-37.28960207210411,-52.35998188115141 +9991,-42.922409063075996,-46.782203231058176,-41.55982669354543,-42.99398613529473,-46.092000125423354 +9992,-45.421781118560354,-37.72427142655698,-35.982316302311226,-40.94996864354772,-46.807961319852204 +9993,-55.941137790981585,-43.32677858928533,-47.417275107552044,-40.21699031760448,-47.714715335326936 +9994,-47.31491059522944,-44.86830679081945,-42.11897884465176,-39.00127664720786,-48.12210171240781 +9995,-46.31825712212613,-56.63146897635923,-42.22710269842452,-46.78306349041908,-54.77005312920872 +9996,-40.96188555629359,-39.114699557734816,-40.525229523561045,-40.74408297108615,-46.7515312971139 +9997,-40.08064432137435,-53.341582760982156,-42.63045637955898,-51.1046283854389,-42.82071929862782 +9998,-52.61801065353593,-50.359813462026914,-42.019681327801514,-50.42237179585998,-43.890982732331835 +9999,-46.64837819647931,-51.33132453926974,-52.99788786110392,-49.11093767084525,-45.953030427156925 +10000,-40.461746807948515,-40.25091653256184,-42.535273417533325,-39.296767300335226,-47.946690570447956 diff --git a/data/a2c_pusher_run0.pth b/data/a2c_pusher_run0.pth new file mode 100644 index 0000000..168712e Binary files /dev/null and b/data/a2c_pusher_run0.pth differ diff --git a/data/a2c_pusher_run1.pth b/data/a2c_pusher_run1.pth new file mode 100644 index 0000000..9271c74 Binary files /dev/null and b/data/a2c_pusher_run1.pth differ diff --git a/data/a2c_pusher_run2.pth b/data/a2c_pusher_run2.pth new file mode 100644 index 0000000..605b5b2 Binary files /dev/null and b/data/a2c_pusher_run2.pth differ diff --git a/data/a2c_pusher_run3.pth b/data/a2c_pusher_run3.pth new file mode 100644 index 0000000..b148d5b Binary files /dev/null and b/data/a2c_pusher_run3.pth differ diff --git a/data/a2c_pusher_run4.pth b/data/a2c_pusher_run4.pth new file mode 100644 index 0000000..cb072f9 Binary files /dev/null and b/data/a2c_pusher_run4.pth differ diff --git a/data/a2c_pusher_test_returns.csv b/data/a2c_pusher_test_returns.csv new file mode 100644 index 0000000..f05c78b --- /dev/null +++ b/data/a2c_pusher_test_returns.csv @@ -0,0 +1,101 @@ +episode,run0,run1,run2,run3,run4 +1,-33.56027914843476,-46.42596150948143,-40.98783405154793,-35.777869178441065,-39.78705865286211 +2,-37.41494643584674,-33.23016189164186,-36.21309970298281,-33.29437753135245,-40.77560945098275 +3,-37.914464070071595,-37.147598534966995,-38.24450840305618,-49.28041785238071,-39.68000746142502 +4,-35.85457983132821,-38.319854073285825,-37.423979327068764,-37.98024843255886,-33.79923382770801 +5,-39.89189211095808,-43.948864699962506,-42.22268195314641,-35.222073571111046,-37.25909268210548 +6,-40.73663653690999,-31.570428968874797,-37.99096025506411,-39.026067190920806,-41.533455699741566 +7,-39.22731360804644,-44.81319055039962,-48.152221679278696,-42.94218334098717,-36.943722029455316 +8,-31.936760142289334,-49.95353731625022,-39.45070519857276,-46.25875724178703,-41.08515467997554 +9,-41.165013965063366,-32.456013922843056,-47.01183874232026,-36.51816648005646,-40.23554088358506 +10,-44.4282574710542,-38.13186328304981,-51.42776685814365,-32.614147873877926,-38.32224509127386 +11,-36.52438261544408,-33.94941395612554,-35.65826925437239,-35.72637521873152,-38.46688856040137 +12,-34.11644346034217,-41.78234472503442,-35.7135654183311,-37.17453528501472,-33.96760430707783 +13,-39.38984705038017,-36.232773387712975,-32.76870621062834,-49.46711967997667,-51.56469258720021 +14,-44.22098888010744,-43.565212929179914,-38.38041157307705,-47.94546241609111,-34.142435967328886 +15,-35.54965821639053,-32.80405639324882,-32.71439006107297,-40.183911088010554,-33.65766928140529 +16,-35.65451013523774,-49.630281392335434,-33.36205120583527,-42.87062611993131,-33.69513793486815 +17,-39.05246672010845,-39.81813140128,-39.92398878159753,-38.3102358734313,-41.25609201647631 +18,-34.61192409219497,-38.26775062454003,-41.17831469953498,-38.532679149423004,-33.37092385580317 +19,-39.4013197907153,-29.600732244659728,-36.11336320221176,-31.848192811922665,-36.01765965635005 +20,-40.47405799149428,-29.56602091390127,-40.85384286602606,-35.503972988025716,-39.636981961006555 +21,-47.517014454570656,-48.41034415005061,-42.16977572093983,-32.526697212946075,-35.69139106038923 +22,-37.18796545408235,-40.097794779598814,-40.30142318655499,-30.716762792602804,-34.00910887498798 +23,-35.11044078843453,-36.97660295779214,-43.8331318223221,-45.88432327127385,-33.47808165924921 +24,-32.3341084520925,-41.204101384430494,-36.66366687402477,-30.194255096933954,-36.46661752557736 +25,-39.45509034837161,-29.29212986934703,-43.18207279724339,-31.19084076153142,-39.37729955177383 +26,-42.746041715690176,-32.90232011167547,-47.045921216369365,-40.08551454782475,-36.7771262929675 +27,-37.19580388151987,-32.81289074005284,-36.94154378394666,-41.22401053166254,-36.06337346992915 +28,-30.230598160799108,-33.44832309612652,-38.31959780452639,-35.57717104372101,-48.60841536505901 +29,-32.50347871274798,-40.27095000182641,-48.31987180411599,-51.21249566506798,-42.6262738494022 +30,-31.239474928768036,-49.60985214981648,-46.28403151803131,-30.34521403315396,-42.62145437189198 +31,-36.59245158361737,-47.11892630542418,-44.96467434882353,-33.99475585390148,-45.980367415490726 +32,-44.13094925216956,-31.99669111200363,-35.207360515376955,-37.669935099994525,-35.14550872721116 +33,-41.822970058753754,-30.841181665795492,-47.50290467493796,-34.57560732878132,-33.4726403597623 +34,-32.31615929353502,-41.209438694013734,-44.06564682879631,-40.6497197579236,-38.376800275597354 +35,-35.8975326598915,-47.869819053435414,-41.0957975235138,-34.13291205749584,-51.03588600350356 +36,-42.014453143215235,-33.934883093009724,-33.533792978355486,-45.69541818549119,-37.310981427125554 +37,-34.65273842524267,-32.68971372794037,-36.504433428750644,-44.96452808677352,-36.189840738219864 +38,-31.018906600591123,-36.9263158201049,-36.33281157057185,-31.446506718203864,-39.65575652439294 +39,-36.53025196888563,-36.986633626201,-47.414284144911306,-31.44807248568234,-36.92616285919665 +40,-39.03405680308873,-34.379459836055794,-50.86400692195883,-35.93418758591562,-39.993434540475846 +41,-44.17260103873507,-45.62621868504261,-40.30310186390165,-44.08293693138208,-37.162490598347595 +42,-38.75364209832771,-45.239656266083585,-39.84458485482922,-34.15677408013906,-44.85748491156008 +43,-40.19237623924464,-35.380417886016346,-39.14329945340577,-32.851583398894746,-42.61888271042194 +44,-42.934704433359315,-39.077925916590154,-32.380965299074894,-35.53460188647006,-33.77687542207255 +45,-41.47386520405394,-38.90985462541563,-38.89318131687388,-36.486175150072185,-40.20918354578719 +46,-37.30321694693541,-33.21871682399024,-31.92169390333413,-35.58468296691869,-43.31911416217184 +47,-37.53095638448856,-37.9005340883534,-39.77810977810297,-36.6118123930729,-38.72067742708061 +48,-36.06937865872689,-33.87854647243897,-45.28238674666497,-31.50438612261761,-43.473589189149955 +49,-37.6190135170805,-29.827468923240758,-36.97325592406955,-41.98995339526655,-42.27870126002082 +50,-38.09774473966815,-35.39416929907756,-36.019643826573756,-36.58631324060717,-41.39037992210192 +51,-35.797227060471066,-32.46283472998303,-34.39533727320553,-39.37305487368214,-50.270104911301736 +52,-31.959704224636965,-36.969448988585974,-34.133828761055206,-39.952208367210204,-37.417030579726394 +53,-39.222380119321784,-32.836497793945206,-44.902493708715966,-34.267918825037924,-34.11634477355337 +54,-36.32374076794285,-43.5860049609415,-40.67512709999589,-43.02228700829451,-38.79539952555593 +55,-38.355589090200816,-37.932955625808376,-40.090982240948,-37.94957877394171,-33.94248978765622 +56,-37.71948582526298,-38.28236530599889,-43.949284748715506,-42.04600172143554,-35.89439316736364 +57,-36.60857701262146,-32.54102246090342,-42.86432409578216,-39.71273826928641,-47.01734034133295 +58,-37.21099221509265,-51.46618320617657,-41.734015816918806,-34.07007671205176,-44.48118820990839 +59,-38.00472850954557,-42.090862046773836,-35.006746776792454,-32.62549746506969,-41.61277544121119 +60,-29.42222325985513,-41.734248516044396,-31.340994168138025,-30.77946833893686,-36.12496874535137 +61,-41.93389294290243,-34.178344293212724,-36.94165170019673,-47.23502943078691,-43.936839795799685 +62,-40.310053356150945,-32.16262538622046,-38.395198688898056,-38.49243676685233,-42.38197533584067 +63,-31.597336467592484,-31.712993805478902,-32.87402877672021,-38.90631028538125,-41.84079600902539 +64,-39.57066104105965,-40.07285346259428,-34.96462975019961,-42.483967883483885,-45.61135288917523 +65,-38.581127935691015,-37.61865717125236,-41.055237302735954,-36.07994942249633,-37.657043469805 +66,-35.08329457826227,-32.0592049559888,-35.26381236865881,-33.901531434481136,-41.180036687592924 +67,-31.819474237816586,-32.94332621778689,-47.532585173686854,-44.20312675779457,-42.63266872656377 +68,-34.645643948691344,-47.28383524061116,-48.887477858698844,-51.067177148186566,-33.94842246122002 +69,-37.0499330936647,-35.32091413411598,-37.512937917626864,-38.57009310137142,-44.52630328184847 +70,-34.393817438816136,-37.534850588751084,-37.19113852165249,-34.974373159864314,-40.089093045605914 +71,-34.40941022743628,-43.998136715842335,-38.30568423401869,-33.500044417993315,-35.37895984307249 +72,-31.897728815211565,-29.733393273406882,-32.894834949292466,-29.88898383024516,-39.94396505152851 +73,-39.7869430063134,-43.43690649741753,-37.30105088435724,-39.90877530103322,-36.61334702581368 +74,-41.26494737016029,-45.77114500369049,-43.05159120727572,-38.30045536948253,-38.603422202764406 +75,-44.34798530271181,-34.48043102310168,-31.958465385680814,-44.60131362375719,-36.73014321043734 +76,-36.617692519651705,-40.75867645405274,-35.58056854619561,-36.17664558760695,-42.046112574303635 +77,-35.82575557468329,-36.67623750410403,-52.44842048183563,-42.12150465586019,-35.78828065226797 +78,-29.358593795060273,-33.18796207883317,-34.79609999242107,-36.16335672620699,-35.538474479487164 +79,-41.19267935884628,-39.69962202739678,-33.000718102868575,-33.42744687535492,-42.087738258644706 +80,-32.51665757787325,-32.47325292838889,-37.20075204351463,-45.569845571840794,-36.52173829707568 +81,-42.56031029776809,-35.882060021325785,-34.34289299822752,-32.56531646138574,-35.469929776485976 +82,-35.16600746166819,-45.01297447586902,-36.21348342604408,-38.83739863983367,-42.750848870380125 +83,-37.8223460998546,-46.701154941068616,-33.14574156905708,-37.40575413624834,-36.5180359727771 +84,-36.39062381526583,-40.979876905774354,-42.74734328093778,-35.63141791536105,-43.75825233118833 +85,-35.495860081817646,-45.123422370423874,-42.215310575941004,-33.27750336292096,-35.725566398034225 +86,-40.269770260393756,-28.854408535876015,-53.032483222237396,-33.08833806237863,-35.55600512909608 +87,-40.67122268979962,-26.403744037274937,-35.65110689050981,-35.12877436232036,-37.87615067330024 +88,-43.69206238942356,-28.981686424670176,-45.29735127992874,-31.66734369851823,-36.12504426265933 +89,-38.43259466470331,-48.63113315121669,-42.874265873056856,-48.215262115728216,-43.70971479899455 +90,-39.94386808265369,-36.519057184780785,-33.86561205321031,-32.90461741030542,-43.33704262985551 +91,-37.74367499444168,-33.536538947724814,-38.64122609848532,-37.120489310695795,-35.21970801854328 +92,-39.2902590563692,-31.593744395201114,-36.552494450699065,-38.01346600245005,-45.10064464180297 +93,-39.22456648469969,-36.082628906943256,-46.04315355304255,-33.8198113209738,-36.072010254272044 +94,-46.23571880532374,-33.909893893143675,-35.10619777467193,-39.28113815533113,-41.80716660853057 +95,-35.33405053820462,-50.088164451581264,-42.0802220194236,-44.94825050521065,-38.90607117591628 +96,-48.97173575037648,-51.93727995779388,-35.338400031314166,-38.766261506595974,-40.23874008910782 +97,-45.62101835576952,-36.171078656399175,-41.924347058707994,-35.5908878152368,-44.79533301021783 +98,-38.87398356999342,-36.488495325745106,-35.453399402127424,-40.52843383327438,-43.4239091264725 +99,-39.497423989177626,-45.185798788801364,-36.876269650092595,-32.75384545730755,-31.602211199059113 +100,-36.30961520809499,-42.55575831368763,-41.81442723444959,-35.266488746141626,-33.06490365337119 diff --git a/data/a2c_pusher_train_plot.png b/data/a2c_pusher_train_plot.png new file mode 100644 index 0000000..e1796f2 Binary files /dev/null and b/data/a2c_pusher_train_plot.png differ diff --git a/data/pusher_hyperparam_sweep.csv b/data/pusher_hyperparam_sweep.csv new file mode 100644 index 0000000..04c7899 --- /dev/null +++ b/data/pusher_hyperparam_sweep.csv @@ -0,0 +1,13 @@ +lr,gamma,last_100_avg_reward +5e-05,0.98,-95.18641489068114 +5e-05,0.99,-98.38394564047141 +5e-05,0.995,-95.7692395922398 +0.0001,0.98,-80.57088401539781 +0.0001,0.99,-83.4098455977892 +0.0001,0.995,-101.38014558057833 +0.0002,0.98,-83.71739061379952 +0.0002,0.99,-83.4197581197559 +0.0002,0.995,-120.60551849486049 +0.0003,0.98,-85.68462376799913 +0.0003,0.99,-125.7948496324621 +0.0003,0.995,-119.35535098498028 diff --git a/data/pusher_hyperparam_sweep.png b/data/pusher_hyperparam_sweep.png new file mode 100644 index 0000000..2893d6b Binary files /dev/null and b/data/pusher_hyperparam_sweep.png differ diff --git a/graph_plotting.py b/graph_plotting.py new file mode 100644 index 0000000..163182c --- /dev/null +++ b/graph_plotting.py @@ -0,0 +1,102 @@ +"""Plot learning curves and compute simple run-level statistics. + +This script expects CSVs produced by ``src/main.py`` in the local ``data/`` +folder. It plots *episode return*, not cumulative return over all episodes, +because episode return is the quantity that shows whether the policy is improving. +""" + +from __future__ import annotations + +import os + +import matplotlib +matplotlib.use("Agg") +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +from scipy import stats + +PROJECT_DIR = os.path.dirname(os.path.abspath(__file__)) +DATA_DIR = os.path.join(PROJECT_DIR, "data") +RESULTS_DIR = os.path.join(PROJECT_DIR, "results") +ROLLING_WINDOW = 100 + + +def load_rewards(path: str) -> tuple[np.ndarray, np.ndarray]: + df = pd.read_csv(path) + run_cols = [col for col in df.columns if col.startswith("run")] + if not run_cols: + raise ValueError(f"No run columns found in {path}") + return df["episode"].to_numpy(), df[run_cols].to_numpy(dtype=float) + + +def rolling_mean(values: np.ndarray, window: int = ROLLING_WINDOW) -> np.ndarray: + return pd.Series(values).rolling(window, min_periods=1).mean().to_numpy() + + +def plot_training_curve(env_short: str, env_full: str) -> None: + path = os.path.join(DATA_DIR, f"a2c_{env_short}_returns.csv") + episodes, rewards = load_rewards(path) + + mean = rewards.mean(axis=1) + std = rewards.std(axis=1) + smooth = rolling_mean(mean, min(ROLLING_WINDOW, len(mean))) + + os.makedirs(RESULTS_DIR, exist_ok=True) + fig, ax = plt.subplots(figsize=(10, 6)) + ax.plot(episodes, smooth, label="A2C mean episode return") + ax.fill_between(episodes, mean - std, mean + std, alpha=0.25, label="±1 std across runs") + ax.set_title(f"A2C training performance on {env_full}") + ax.set_xlabel("Episode") + ax.set_ylabel("Episode return") + ax.grid(True, alpha=0.4) + ax.legend() + fig.tight_layout() + out_path = os.path.join(RESULTS_DIR, f"{env_short}_training_curve.png") + fig.savefig(out_path, dpi=150) + plt.close(fig) + print(f"Saved: {out_path}") + + +def compute_statistics() -> None: + envs = [ + ("invertedpendulum", "InvertedPendulum-v5"), + ("pusher", "Pusher-v5"), + ] + lines: list[str] = [] + + for env_short, env_full in envs: + a2c_path = os.path.join(DATA_DIR, f"a2c_{env_short}_test_returns.csv") + random_path = os.path.join(DATA_DIR, f"random_{env_short}_test_returns.csv") + if not (os.path.exists(a2c_path) and os.path.exists(random_path)): + lines.append(f"{env_full}: missing test CSVs; run `python src/main.py --env {env_full} --mode analysis` first.") + lines.append("") + continue + + _, a2c_rewards = load_rewards(a2c_path) + _, random_rewards = load_rewards(random_path) + a2c_run_means = a2c_rewards.mean(axis=0) + random_run_means = random_rewards.mean(axis=0) + + t_stat, p_value = stats.ttest_ind(a2c_run_means, random_run_means, equal_var=False) + + lines.append(f"--- {env_full} ---") + lines.append(f"A2C mean ± std : {a2c_run_means.mean():.2f} ± {a2c_run_means.std(ddof=1):.2f}") + lines.append(f"Random mean ± std : {random_run_means.mean():.2f} ± {random_run_means.std(ddof=1):.2f}") + lines.append(f"Welch t-statistic : {t_stat:.4f}") + lines.append(f"Welch p-value : {p_value:.4f}") + lines.append("") + + os.makedirs(RESULTS_DIR, exist_ok=True) + out_path = os.path.join(RESULTS_DIR, "statistics.txt") + with open(out_path, "w", encoding="utf-8") as file: + file.write("\n".join(lines)) + print(f"Saved: {out_path}") + + +if __name__ == "__main__": + for short, full in [("invertedpendulum", "InvertedPendulum-v5"), ("pusher", "Pusher-v5")]: + csv_path = os.path.join(DATA_DIR, f"a2c_{short}_returns.csv") + if os.path.exists(csv_path): + plot_training_curve(short, full) + compute_statistics() diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 63f8e5e..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,8 +0,0 @@ -[project] -name = "final-assignment" -version = "0.1.0" -requires-python = ">=3.13" -dependencies = [ - "numpy", - "torch", -] diff --git a/requirements.txt b/requirements.txt index 7284d83..3614355 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,8 @@ -# Specify your requirements here (do NOT use pip freeze) +torch +numpy +pandas +matplotlib +scipy +tqdm +gymnasium[mujoco] +mujoco diff --git a/src/__pycache__/agent.cpython-311.pyc b/src/__pycache__/agent.cpython-311.pyc new file mode 100644 index 0000000..c9c6e60 Binary files /dev/null and b/src/__pycache__/agent.cpython-311.pyc differ diff --git a/src/__pycache__/main.cpython-311.pyc b/src/__pycache__/main.cpython-311.pyc new file mode 100644 index 0000000..6010ee9 Binary files /dev/null and b/src/__pycache__/main.cpython-311.pyc differ diff --git a/src/__pycache__/network.cpython-311.pyc b/src/__pycache__/network.cpython-311.pyc new file mode 100644 index 0000000..5da8001 Binary files /dev/null and b/src/__pycache__/network.cpython-311.pyc differ diff --git a/src/agent.py b/src/agent.py index 72a6e51..717410f 100644 --- a/src/agent.py +++ b/src/agent.py @@ -1,20 +1,298 @@ -"""Base class for a RL agent""" +"""Agents used in the assignment. + +The main agent is an Advantage Actor-Critic (A2C) implementation for continuous +MuJoCo control. It includes several practical stabilizers: + +* tanh-squashed Gaussian actions instead of post-hoc clipping; +* observation normalization with saved/restored running statistics; +* n-step bootstrapping with Generalized Advantage Estimation (GAE); +* advantage normalization, entropy regularization, Huber value loss, and gradient + clipping. +""" + +from __future__ import annotations from abc import ABC, abstractmethod +from dataclasses import dataclass +from typing import Any + import numpy as np +import torch +import torch.nn.functional as F +import torch.optim as optim -class Agent(ABC): - def __init__( - self, # ... +try: + from network import ActorCriticNetwork +except ImportError: + from .network import ActorCriticNetwork + + +LOG_STD_EPS = 1e-6 + + +@dataclass +class RunningMeanStd: + """Running mean and variance for observation normalization.""" + + shape: tuple[int, ...] + epsilon: float = 1e-4 + + def __post_init__(self) -> None: + self.mean = np.zeros(self.shape, dtype=np.float64) + self.var = np.ones(self.shape, dtype=np.float64) + self.count = float(self.epsilon) + + def update(self, x: np.ndarray) -> None: + x = np.asarray(x, dtype=np.float64) + if x.ndim == len(self.shape): + x = x.reshape(1, *self.shape) + batch_mean = x.mean(axis=0) + batch_var = x.var(axis=0) + batch_count = x.shape[0] + self._update_from_moments(batch_mean, batch_var, batch_count) + + def _update_from_moments( + self, batch_mean: np.ndarray, batch_var: np.ndarray, batch_count: int ) -> None: - pass - + delta = batch_mean - self.mean + total_count = self.count + batch_count + new_mean = self.mean + delta * batch_count / total_count + + m_a = self.var * self.count + m_b = batch_var * batch_count + m_2 = m_a + m_b + delta**2 * self.count * batch_count / total_count + new_var = m_2 / total_count + + self.mean = new_mean + self.var = np.maximum(new_var, 1e-12) + self.count = total_count + + def normalize(self, x: np.ndarray | torch.Tensor, clip: float = 10.0): + if isinstance(x, torch.Tensor): + mean = torch.as_tensor(self.mean, dtype=torch.float32, device=x.device) + std = torch.as_tensor(np.sqrt(self.var), dtype=torch.float32, device=x.device) + return torch.clamp((x - mean) / (std + 1e-8), -clip, clip) + + x = np.asarray(x, dtype=np.float32) + return np.clip((x - self.mean) / (np.sqrt(self.var) + 1e-8), -clip, clip).astype( + np.float32 + ) + + def state_dict(self) -> dict[str, Any]: + return {"mean": self.mean, "var": self.var, "count": self.count} + + def load_state_dict(self, state: dict[str, Any]) -> None: + self.mean = np.asarray(state["mean"], dtype=np.float64) + self.var = np.asarray(state["var"], dtype=np.float64) + self.count = float(state["count"]) + + +class Agent(ABC): + def __init__(self, env) -> None: + self.env = env + @abstractmethod - def choose_action( - self, observation: np.ndarray, # ... - ) -> int: # Is this always an int? + def choose_action(self, observation: np.ndarray, deterministic: bool = False) -> np.ndarray: pass @abstractmethod - def learn(self) -> None: + def learn(self, last_state: np.ndarray, last_done: bool) -> dict[str, float]: pass + + +class A2CAgent(Agent): + """Advantage Actor-Critic agent for bounded continuous action spaces.""" + + def __init__( + self, + env, + learning_rate: float = 1e-4, + gamma: float = 0.99, + gae_lambda: float = 0.95, + entropy_coef: float = 0.005, + value_loss_coef: float = 0.5, + grad_clip: float = 0.5, + hidden_size: int = 256, + initial_log_std: float = -0.5, + normalize_obs: bool = True, + device: str | torch.device | None = None, + ) -> None: + super().__init__(env) + self.gamma = gamma + self.gae_lambda = gae_lambda + self.entropy_coef = entropy_coef + self.value_loss_coef = value_loss_coef + self.grad_clip = grad_clip + self.normalize_obs = normalize_obs + self.device = torch.device(device or ("cuda" if torch.cuda.is_available() else "cpu")) + + obs_dim = int(env.observation_space.shape[0]) + action_dim = int(env.action_space.shape[0]) + self.obs_rms = RunningMeanStd((obs_dim,)) + + self.action_low = torch.as_tensor(env.action_space.low, dtype=torch.float32, device=self.device) + self.action_high = torch.as_tensor(env.action_space.high, dtype=torch.float32, device=self.device) + self.action_scale = (self.action_high - self.action_low) / 2.0 + self.action_bias = (self.action_high + self.action_low) / 2.0 + + self.network = ActorCriticNetwork( + obs_dim, + action_dim, + hidden_size=hidden_size, + initial_log_std=initial_log_std, + ).to(self.device) + self.optimizer = optim.Adam(self.network.parameters(), lr=learning_rate, eps=1e-5) + + self.states: list[np.ndarray] = [] + self.raw_actions: list[torch.Tensor] = [] + self.rewards: list[float] = [] + self.dones: list[bool] = [] + + def _prepare_observation(self, observation: np.ndarray, update_stats: bool) -> torch.Tensor: + observation = np.asarray(observation, dtype=np.float32) + if self.normalize_obs: + if update_stats: + self.obs_rms.update(observation) + observation = self.obs_rms.normalize(observation) + return torch.as_tensor(observation, dtype=torch.float32, device=self.device) + + def _scale_action(self, raw_action: torch.Tensor) -> torch.Tensor: + return torch.tanh(raw_action) * self.action_scale + self.action_bias + + def _log_prob_from_raw_action(self, dist, raw_action: torch.Tensor) -> torch.Tensor: + """Log probability of a tanh-squashed action with change-of-variables.""" + log_prob = dist.log_prob(raw_action).sum(dim=-1) + squash_correction = torch.log(1.0 - torch.tanh(raw_action).pow(2) + LOG_STD_EPS).sum(dim=-1) + return log_prob - squash_correction + + def choose_action(self, observation: np.ndarray, deterministic: bool = False) -> np.ndarray: + """Select an action. + + During training, the agent samples from the policy and stores the raw + Gaussian action for the later policy-gradient update. During evaluation, + it uses the policy mean. + """ + obs_tensor = self._prepare_observation(observation, update_stats=not deterministic) + + self.network.eval() + with torch.no_grad(): + dist, _ = self.network(obs_tensor) + raw_action = dist.mean if deterministic else dist.rsample() + scaled_action = self._scale_action(raw_action) + + if not deterministic: + self.states.append(np.asarray(observation, dtype=np.float32)) + self.raw_actions.append(raw_action.detach().cpu()) + + return scaled_action.squeeze(0).cpu().numpy() + + def store_outcome(self, reward: float, done: bool) -> None: + """Store reward and termination flag for the latest transition.""" + self.rewards.append(float(reward)) + self.dones.append(bool(done)) + + def learn(self, last_state: np.ndarray, last_done: bool) -> dict[str, float]: + """Update actor and critic from the currently stored rollout.""" + if len(self.rewards) == 0: + return {} + + self.network.train() + + states_np = np.asarray(self.states, dtype=np.float32) + if self.normalize_obs: + states_np = self.obs_rms.normalize(states_np) + states = torch.as_tensor(states_np, dtype=torch.float32, device=self.device) + raw_actions = torch.cat(self.raw_actions, dim=0).to(self.device) + rewards = torch.as_tensor(self.rewards, dtype=torch.float32, device=self.device) + dones = torch.as_tensor(self.dones, dtype=torch.float32, device=self.device) + + dist, values = self.network(states) + values = values.squeeze(-1) + log_probs = self._log_prob_from_raw_action(dist, raw_actions) + entropy = dist.entropy().sum(dim=-1).mean() + + with torch.no_grad(): + last_obs = self._prepare_observation(last_state, update_stats=False) + if last_done: + next_value = torch.tensor(0.0, dtype=torch.float32, device=self.device) + else: + _, next_value = self.network(last_obs) + next_value = next_value.squeeze() + + advantages = torch.zeros_like(rewards) + gae = torch.tensor(0.0, dtype=torch.float32, device=self.device) + for t in reversed(range(len(rewards))): + bootstrap_value = next_value if t == len(rewards) - 1 else values[t + 1] + nonterminal = 1.0 - dones[t] + delta = rewards[t] + self.gamma * bootstrap_value * nonterminal - values[t] + gae = delta + self.gamma * self.gae_lambda * nonterminal * gae + advantages[t] = gae + returns = advantages + values + + if advantages.numel() > 1: + advantages = (advantages - advantages.mean()) / (advantages.std(unbiased=False) + 1e-8) + + policy_loss = -(log_probs * advantages.detach()).mean() + value_loss = F.smooth_l1_loss(values, returns.detach()) + loss = policy_loss + self.value_loss_coef * value_loss - self.entropy_coef * entropy + + self.optimizer.zero_grad(set_to_none=True) + loss.backward() + torch.nn.utils.clip_grad_norm_(self.network.parameters(), self.grad_clip) + self.optimizer.step() + + self.clear_memory() + return { + "total_loss": float(loss.item()), + "policy_loss": float(policy_loss.item()), + "value_loss": float(value_loss.item()), + "entropy": float(entropy.item()), + } + + def clear_memory(self) -> None: + self.states.clear() + self.raw_actions.clear() + self.rewards.clear() + self.dones.clear() + + def save(self, path: str) -> None: + checkpoint = { + "network": self.network.state_dict(), + "optimizer": self.optimizer.state_dict(), + "obs_rms": self.obs_rms.state_dict(), + "normalize_obs": self.normalize_obs, + "gamma": self.gamma, + "gae_lambda": self.gae_lambda, + "entropy_coef": self.entropy_coef, + "value_loss_coef": self.value_loss_coef, + } + torch.save(checkpoint, path) + + def load(self, path: str) -> None: + checkpoint = torch.load( + path, + map_location=self.device, + weights_only=False + ) + if isinstance(checkpoint, dict) and "network" in checkpoint: + self.network.load_state_dict(checkpoint["network"]) + + if "obs_rms" in checkpoint: + self.obs_rms.load_state_dict(checkpoint["obs_rms"]) + + self.normalize_obs = bool( + checkpoint.get("normalize_obs", self.normalize_obs) + ) + elif isinstance(checkpoint, dict) and "network_state_dict" in checkpoint: + self.network.load_state_dict(checkpoint["network_state_dict"]) + + if "obs_rms" in checkpoint: + self.obs_rms.load_state_dict(checkpoint["obs_rms"]) + + self.normalize_obs = bool( + checkpoint.get("normalize_obs", self.normalize_obs) + ) + else: + self.network.load_state_dict(checkpoint) + + self.network.eval() \ No newline at end of file diff --git a/src/hyperparam_tune.py b/src/hyperparam_tune.py new file mode 100644 index 0000000..5f5748a --- /dev/null +++ b/src/hyperparam_tune.py @@ -0,0 +1,95 @@ +from __future__ import annotations + +import os +import sys + +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) + +import gymnasium as gym +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import torch +from tqdm import tqdm + +from agent import A2CAgent +from main import EnvConfig, run_training_episode, seed_everything + + +LEARNING_RATES = [5e-5, 1e-4, 2e-4, 3e-4] +GAMMAS = [0.98, 0.99, 0.995] +EPISODES = 1000 +RUNS_PER_SETTING = 2 + + +def evaluate_setting(lr: float, gamma: float) -> float: + run_scores = [] + cfg = EnvConfig( + episodes=EPISODES, + lr=lr, + gamma=gamma, + rollout_steps=32, + gae_lambda=0.95, + entropy_coef=0.002, + value_loss_coef=0.5, + grad_clip=0.5, + hidden_size=256, + initial_log_std=-1.0, + ) + + for run in range(RUNS_PER_SETTING): + seed = 1000 + run + seed_everything(seed) + env = gym.make("Pusher-v5") + env.action_space.seed(seed) + agent = A2CAgent( + env, + learning_rate=lr, + gamma=gamma, + gae_lambda=cfg.gae_lambda, + entropy_coef=cfg.entropy_coef, + value_loss_coef=cfg.value_loss_coef, + grad_clip=cfg.grad_clip, + hidden_size=cfg.hidden_size, + initial_log_std=cfg.initial_log_std, + normalize_obs=True, + ) + + rewards = [] + for episode in tqdm(range(EPISODES), desc=f"lr={lr:g}, gamma={gamma:g}, run={run + 1}"): + rewards.append(run_training_episode(env, agent, cfg, reset_seed=seed + episode)) + env.close() + run_scores.append(np.mean(rewards[-100:])) + + return float(np.mean(run_scores)) + + +def main() -> None: + records = [] + for lr in LEARNING_RATES: + for gamma in GAMMAS: + score = evaluate_setting(lr, gamma) + records.append({"lr": lr, "gamma": gamma, "last_100_avg_reward": score}) + print(f"lr={lr:g}, gamma={gamma:g}, score={score:.2f}") + + os.makedirs("data", exist_ok=True) + df = pd.DataFrame(records) + df.to_csv("data/pusher_hyperparam_sweep.csv", index=False) + print(df.pivot(index="lr", columns="gamma", values="last_100_avg_reward")) + + pivot = df.pivot(index="lr", columns="gamma", values="last_100_avg_reward") + plt.figure(figsize=(8, 5)) + plt.imshow(pivot.values, aspect="auto") + plt.xticks(range(len(pivot.columns)), pivot.columns) + plt.yticks(range(len(pivot.index)), pivot.index) + plt.colorbar(label="Mean reward over last 100 episodes") + plt.xlabel("Gamma") + plt.ylabel("Learning rate") + plt.title("Pusher-v5 A2C hyperparameter sweep") + plt.tight_layout() + plt.savefig("data/pusher_hyperparam_sweep.png", dpi=150) + plt.close() + + +if __name__ == "__main__": + main() diff --git a/src/main.py b/src/main.py index 2ad8b3b..9cdbce9 100644 --- a/src/main.py +++ b/src/main.py @@ -1,4 +1,375 @@ -"""Main entrypoint of your program""" +"""Train and evaluate an A2C agent on Gymnasium MuJoCo environments. + +Recommended commands: + + python src/main.py --env InvertedPendulum-v5 --mode train_and_test + python src/main.py --env Pusher-v5 --mode train_and_test + python src/main.py --env Pusher-v5 --mode analysis + +The implementation is intentionally conservative: Pusher-v5 is much harder than +InvertedPendulum-v5, so it uses a smaller learning rate, lower exploration noise, +and many more training episodes. +""" + +from __future__ import annotations + +import argparse +import os +import random +from dataclasses import dataclass + +import gymnasium as gym +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import torch +from scipy import stats +from tqdm import tqdm + +try: + from agent import A2CAgent +except ImportError: + from .agent import A2CAgent + + +@dataclass(frozen=True) +class EnvConfig: + episodes: int + lr: float + gamma: float + rollout_steps: int + gae_lambda: float + entropy_coef: float + value_loss_coef: float + grad_clip: float + hidden_size: int + initial_log_std: float + + +ENV_CONFIGS: dict[str, EnvConfig] = { + "InvertedPendulum-v5": EnvConfig( + episodes=1500, + lr=7e-4, + gamma=0.99, + rollout_steps=64, + gae_lambda=0.95, + entropy_coef=0.001, + value_loss_coef=0.5, + grad_clip=0.5, + hidden_size=128, + initial_log_std=-0.5, + ), + "Pusher-v5": EnvConfig( + episodes=20000, + lr=1e-4, + gamma=0.98, + rollout_steps=32, + gae_lambda=0.95, + entropy_coef=0.002, + value_loss_coef=0.5, + grad_clip=0.5, + hidden_size=256, + initial_log_std=-1.0, + ), +} + +RESULTS_DIR = "data" +PLOT_DIR = "data" +BASE_SEED = 42 +BEST_MODEL_WINDOW = 100 + + +def env_slug(env_name: str) -> str: + return env_name.lower().split("-v")[0] + + +def seed_everything(seed: int) -> None: + random.seed(seed) + np.random.seed(seed) + torch.manual_seed(seed) + os.environ["PYTHONHASHSEED"] = str(seed) + if torch.cuda.is_available(): + torch.cuda.manual_seed_all(seed) + + +def make_env(env_name: str, seed: int | None = None): + env = gym.make(env_name) + if seed is not None: + env.action_space.seed(seed) + env.observation_space.seed(seed) + return env + + +def make_agent(env, cfg: EnvConfig, lr: float | None = None) -> A2CAgent: + return A2CAgent( + env, + learning_rate=cfg.lr if lr is None else lr, + gamma=cfg.gamma, + gae_lambda=cfg.gae_lambda, + entropy_coef=cfg.entropy_coef, + value_loss_coef=cfg.value_loss_coef, + grad_clip=cfg.grad_clip, + hidden_size=cfg.hidden_size, + initial_log_std=cfg.initial_log_std, + normalize_obs=True, + ) + + +def run_training_episode(env, agent: A2CAgent, cfg: EnvConfig, reset_seed: int | None) -> float: + """Run one episode and update the agent every cfg.rollout_steps steps.""" + state, _ = env.reset(seed=reset_seed) + terminated = False + truncated = False + episode_reward = 0.0 + rollout_len = 0 + + while not (terminated or truncated): + action = agent.choose_action(state, deterministic=False) + next_state, reward, terminated, truncated, _ = env.step(action) + + agent.store_outcome(reward, done=terminated) + + state = next_state + episode_reward += float(reward) + rollout_len += 1 + + should_update = rollout_len >= cfg.rollout_steps or terminated or truncated + if should_update: + agent.learn(last_state=state, last_done=terminated) + rollout_len = 0 + + return episode_reward + + +def train( + env_name: str, + total_episodes: int, + cfg: EnvConfig, + num_runs: int = 5, +) -> list[str]: + """Train several independent A2C agents and save the best checkpoint per run.""" + os.makedirs(RESULTS_DIR, exist_ok=True) + os.makedirs(PLOT_DIR, exist_ok=True) + + all_rewards: list[list[float]] = [] + model_paths: list[str] = [] + slug = env_slug(env_name) + + for run in range(num_runs): + run_seed = BASE_SEED + 1000 * run + seed_everything(run_seed) + + env = make_env(env_name, seed=run_seed) + agent = make_agent(env, cfg) + episode_rewards: list[float] = [] + + model_path = os.path.join(RESULTS_DIR, f"a2c_{slug}_run{run}.pth") + best_score = -float("inf") + + for episode in tqdm(range(total_episodes), desc=f"Training {env_name} run {run + 1}/{num_runs}"): + reset_seed = run_seed + episode + reward = run_training_episode(env, agent, cfg, reset_seed=reset_seed) + episode_rewards.append(reward) + + if len(episode_rewards) >= BEST_MODEL_WINDOW: + rolling_score = float(np.mean(episode_rewards[-BEST_MODEL_WINDOW:])) + if rolling_score > best_score: + best_score = rolling_score + agent.save(model_path) + + if not os.path.exists(model_path): + agent.save(model_path) + best_score = float(np.mean(episode_rewards)) + + all_rewards.append(episode_rewards) + model_paths.append(model_path) + env.close() + print(f"Run {run + 1} complete. Best rolling reward: {best_score:.2f}. Saved: {model_path}") + + rewards_array = np.asarray(all_rewards, dtype=float) + save_training_outputs(env_name, rewards_array) + return model_paths + + +def save_training_outputs(env_name: str, all_rewards: np.ndarray) -> None: + """Save training rewards as CSV and plot mean episode return ± one std.""" + slug = env_slug(env_name) + episodes = np.arange(1, all_rewards.shape[1] + 1) + + df = pd.DataFrame({"episode": episodes}) + for run in range(all_rewards.shape[0]): + df[f"run{run}"] = all_rewards[run] + csv_path = os.path.join(RESULTS_DIR, f"a2c_{slug}_returns.csv") + df.to_csv(csv_path, index=False) + + mean_rewards = all_rewards.mean(axis=0) + std_rewards = all_rewards.std(axis=0) + smooth_window = min(100, len(mean_rewards)) + smooth_mean = pd.Series(mean_rewards).rolling(smooth_window, min_periods=1).mean().to_numpy() + + plt.figure(figsize=(12, 7)) + plt.plot(episodes, smooth_mean, label=f"A2C mean episode return ({smooth_window}-episode moving average)") + plt.fill_between(episodes, mean_rewards - std_rewards, mean_rewards + std_rewards, alpha=0.25, label="±1 std across runs") + plt.title(f"A2C Training on {env_name} ({all_rewards.shape[0]} runs)") + plt.xlabel("Episode") + plt.ylabel("Episode return") + plt.legend() + plt.grid(True, alpha=0.4) + plot_path = os.path.join(PLOT_DIR, f"a2c_{slug}_train_plot.png") + plt.tight_layout() + plt.savefig(plot_path, dpi=150) + plt.close() + + print(f"Training rewards saved to {csv_path}") + print(f"Training plot saved to {plot_path}") + + +def test(env_name: str, model_paths: list[str], cfg: EnvConfig, test_episodes: int = 100) -> list[float]: + """Evaluate trained agents using deterministic actions.""" + run_means: list[float] = [] + slug = env_slug(env_name) + all_test_rewards: list[list[float]] = [] + + for run, model_path in enumerate(model_paths): + env = make_env(env_name, seed=BASE_SEED + 10000 + run) + agent = make_agent(env, cfg) + agent.load(model_path) + + run_rewards: list[float] = [] + for episode in range(test_episodes): + state, _ = env.reset(seed=BASE_SEED + 100000 + run * test_episodes + episode) + terminated = False + truncated = False + episode_reward = 0.0 + + while not (terminated or truncated): + action = agent.choose_action(state, deterministic=True) + state, reward, terminated, truncated, _ = env.step(action) + episode_reward += float(reward) + + run_rewards.append(episode_reward) + + avg_reward = float(np.mean(run_rewards)) + run_means.append(avg_reward) + all_test_rewards.append(run_rewards) + env.close() + print(f"Avg deterministic test reward for run {run + 1}: {avg_reward:.2f}") + + mean_score = float(np.mean(run_means)) + std_score = float(np.std(run_means, ddof=1)) if len(run_means) > 1 else 0.0 + print(f"Mean deterministic performance across {len(model_paths)} runs: {mean_score:.2f} +/- {std_score:.2f}") + + df = pd.DataFrame({"episode": np.arange(1, test_episodes + 1)}) + for run, rewards in enumerate(all_test_rewards): + df[f"run{run}"] = rewards + df.to_csv(os.path.join(RESULTS_DIR, f"a2c_{slug}_test_returns.csv"), index=False) + + return run_means + + +def evaluate_random_agent(env_name: str, num_runs: int = 5, test_episodes: int = 100) -> list[float]: + """Evaluate a random policy and return one mean score per run.""" + run_means: list[float] = [] + slug = env_slug(env_name) + all_rewards: list[list[float]] = [] + + for run in range(num_runs): + seed = BASE_SEED + 200000 + run + env = make_env(env_name, seed=seed) + run_rewards: list[float] = [] + + for episode in tqdm(range(test_episodes), desc=f"Random {env_name} run {run + 1}/{num_runs}"): + state, _ = env.reset(seed=seed + episode) + terminated = False + truncated = False + episode_reward = 0.0 + + while not (terminated or truncated): + action = env.action_space.sample() + state, reward, terminated, truncated, _ = env.step(action) + episode_reward += float(reward) + + run_rewards.append(episode_reward) + + run_mean = float(np.mean(run_rewards)) + run_means.append(run_mean) + all_rewards.append(run_rewards) + env.close() + print(f"Random agent average reward for run {run + 1}: {run_mean:.2f}") + + df = pd.DataFrame({"episode": np.arange(1, test_episodes + 1)}) + for run, rewards in enumerate(all_rewards): + df[f"run{run}"] = rewards + df.to_csv(os.path.join(RESULTS_DIR, f"random_{slug}_test_returns.csv"), index=False) + + mean_score = float(np.mean(run_means)) + std_score = float(np.std(run_means, ddof=1)) if len(run_means) > 1 else 0.0 + print(f"Random agent mean reward across {num_runs} runs: {mean_score:.2f} +/- {std_score:.2f}") + return run_means + + +def existing_model_paths(env_name: str, num_runs: int) -> list[str]: + slug = env_slug(env_name) + return [os.path.join(RESULTS_DIR, f"a2c_{slug}_run{run}.pth") for run in range(num_runs)] + + +def main() -> None: + parser = argparse.ArgumentParser(description="Train/test an improved A2C agent.") + parser.add_argument("--env", type=str, default="InvertedPendulum-v5", choices=list(ENV_CONFIGS)) + parser.add_argument("--mode", type=str, default="train_and_test", choices=["train", "test", "train_and_test", "analysis"]) + parser.add_argument("--num-runs", type=int, default=5) + parser.add_argument("--episodes", type=int, default=None) + parser.add_argument("--test-episodes", type=int, default=100) + parser.add_argument("--lr", type=float, default=None) + parser.add_argument("--gamma", type=float, default=None) + parser.add_argument("--rollout-steps", type=int, default=None) + args = parser.parse_args() + + base_cfg = ENV_CONFIGS[args.env] + cfg = EnvConfig( + episodes=args.episodes if args.episodes is not None else base_cfg.episodes, + lr=args.lr if args.lr is not None else base_cfg.lr, + gamma=args.gamma if args.gamma is not None else base_cfg.gamma, + rollout_steps=args.rollout_steps if args.rollout_steps is not None else base_cfg.rollout_steps, + gae_lambda=base_cfg.gae_lambda, + entropy_coef=base_cfg.entropy_coef, + value_loss_coef=base_cfg.value_loss_coef, + grad_clip=base_cfg.grad_clip, + hidden_size=base_cfg.hidden_size, + initial_log_std=base_cfg.initial_log_std, + ) + + print(f"Environment: {args.env}") + print(f"Config: {cfg}") + + if args.mode == "train": + train(args.env, cfg.episodes, cfg, args.num_runs) + + elif args.mode == "test": + paths = existing_model_paths(args.env, args.num_runs) + missing = [p for p in paths if not os.path.exists(p)] + if missing: + raise FileNotFoundError(f"Missing model files: {missing}") + test(args.env, paths, cfg, args.test_episodes) + + elif args.mode == "train_and_test": + paths = train(args.env, cfg.episodes, cfg, args.num_runs) + test(args.env, paths, cfg, args.test_episodes) + + elif args.mode == "analysis": + paths = existing_model_paths(args.env, args.num_runs) + missing = [p for p in paths if not os.path.exists(p)] + if missing: + raise FileNotFoundError("Train the models first; missing: " + ", ".join(missing)) + + a2c_scores = test(args.env, paths, cfg, args.test_episodes) + random_scores = evaluate_random_agent(args.env, args.num_runs, args.test_episodes) + t_statistic, p_value = stats.ttest_ind(a2c_scores, random_scores, equal_var=False) + + print("\nWelch t-test on run-level mean test rewards") + print(f"T-statistic: {t_statistic:.4f}") + print(f"P-value: {p_value:.4f}") + if __name__ == "__main__": - pass \ No newline at end of file + main() diff --git a/src/network.py b/src/network.py index fdcada5..50d7bc3 100644 --- a/src/network.py +++ b/src/network.py @@ -1,17 +1,84 @@ -"""PyTorch neural network used in RL architectures""" +"""Neural network components for the A2C agent. +The policy is a tanh-squashed Gaussian. The network predicts the mean and +standard deviation of an unconstrained Gaussian, samples an unconstrained action +z, and the agent maps tanh(z) to the environment's bounded action range. This is +more stable for MuJoCo tasks than sampling an unbounded Gaussian and clipping the +action afterwards. +""" + +from __future__ import annotations + +import numpy as np import torch import torch.nn as nn -import numpy as np +from torch.distributions import Normal + + +class ActorCriticNetwork(nn.Module): + """Shared-body actor-critic network for continuous-control A2C. + + Parameters + ---------- + n_inputs: + Observation dimensionality. + n_outputs: + Action dimensionality. + hidden_size: + Width of the two hidden layers. + initial_log_std: + Initial log standard deviation of the Gaussian policy. A negative value + reduces initial exploration noise, which is important for Pusher-v5. + """ -class NeuralNetwork(nn.Module): def __init__( - self, # ... - ): - super(NeuralNetwork, self).__init__() + self, + n_inputs: int, + n_outputs: int, + hidden_size: int = 256, + initial_log_std: float = -0.5, + ) -> None: + super().__init__() + + self.shared_body = nn.Sequential( + nn.Linear(n_inputs, hidden_size), + nn.Tanh(), + nn.Linear(hidden_size, hidden_size), + nn.Tanh(), + ) + self.actor_head = nn.Linear(hidden_size, n_outputs) + self.critic_head = nn.Linear(hidden_size, 1) + self.log_std = nn.Parameter(torch.full((1, n_outputs), initial_log_std)) + + self._orthogonal_init() + + def _orthogonal_init(self) -> None: + """Use orthogonal initialization, a common stabilizer for actor-critic.""" + for module in self.modules(): + if isinstance(module, nn.Linear): + gain = nn.init.calculate_gain("tanh") + nn.init.orthogonal_(module.weight, gain=gain) + nn.init.constant_(module.bias, 0.0) + + nn.init.orthogonal_(self.actor_head.weight, gain=0.01) + nn.init.constant_(self.actor_head.bias, 0.0) + nn.init.orthogonal_(self.critic_head.weight, gain=1.0) + nn.init.constant_(self.critic_head.bias, 0.0) + + def forward(self, state: np.ndarray | torch.Tensor) -> tuple[Normal, torch.Tensor]: + """Return the Gaussian policy distribution and state value.""" + if isinstance(state, np.ndarray): + state = torch.as_tensor(state, dtype=torch.float32) + else: + state = state.float() + + if state.dim() == 1: + state = state.unsqueeze(0) + features = self.shared_body(state) + mu = self.actor_head(features) + value = self.critic_head(features) - def forward( - self, state: np.ndarray, # ... - ) -> torch.Tensor: - pass + log_std = torch.clamp(self.log_std, min=-5.0, max=1.0) + std = log_std.exp().expand_as(mu) + return Normal(mu, std), value diff --git a/src/random_agent.py b/src/random_agent.py new file mode 100644 index 0000000..ba97005 --- /dev/null +++ b/src/random_agent.py @@ -0,0 +1,54 @@ +import numpy as np +import torch +import torch.nn as nn +from torch.distributions import Normal + + +class RandomNetwork(nn.Module): + def __init__(self, n_inputs: int, n_outputs: int): + super().__init__() + # Keep one trainable parameter so state_dict isn't empty + self.log_std = nn.Parameter(torch.zeros(1, n_outputs)) + + def forward(self, state: np.ndarray): + if isinstance(state, np.ndarray): + state = torch.tensor(state, dtype=torch.float32) + + if state.dim() == 1: + state = state.unsqueeze(0) + + batch_size = state.shape[0] + # Mean of the policy is zero; RandomAgent will sample from env.action_space + mu = torch.zeros(batch_size, self.log_std.shape[1]) + std = self.log_std.exp().expand_as(mu) + dist = Normal(mu, std) + # Random policy has no value estimate; return zeros + value = torch.zeros(batch_size, 1) + return dist, value + + +class RandomAgent: + """A minimal agent that selects random actions from the environment's + action space. Implements the same interface used by A2CAgent so it can be + integrated into training/evaluation pipelines. + """ + + def __init__(self, env): + self.env = env + obs_dim = env.observation_space.shape[0] + action_dim = env.action_space.shape[0] + self.network = RandomNetwork(obs_dim, action_dim) + + # Keep buffers so the API mirrors A2CAgent + self.states = [] + self.actions = [] + self.rewards = [] + self.dones = [] + + def choose_action(self, observation: np.ndarray, deterministic: bool = False): + # Random action drawn from the environment's action space + return self.env.action_space.sample() + + def learn(self, *args, **kwargs): + # Random agent has no learning + return {} diff --git a/test.sh b/test.sh index 51e033d..09ba3b1 100755 --- a/test.sh +++ b/test.sh @@ -1,13 +1,10 @@ #!/bin/bash # Install the required Python dependencies -if command -v uv &> /dev/null; then - uv sync - uv run src/main.py & -else - python3 -m pip install -r requirements.txt - python3 src/main.py & -fi +python3 -m pip install -r requirements.txt + +# Run the Python script in the background +python3 src/main.py & # Get the process ID of the Python script PID=$! diff --git a/uv.lock b/uv.lock deleted file mode 100644 index 28a7362..0000000 --- a/uv.lock +++ /dev/null @@ -1,468 +0,0 @@ -version = 1 -revision = 2 -requires-python = ">=3.13" - -[[package]] -name = "cuda-bindings" -version = "13.2.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "cuda-pathfinder" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/df/93/eef988860a3ca985f82c4f3174fc0cdd94e07331ba9a92e8e064c260337f/cuda_bindings-13.2.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6629ca2df6f795b784752409bcaedbd22a7a651b74b56a165ebc0c9dcbd504d0", size = 5614610, upload-time = "2026-03-11T00:12:50.337Z" }, - { url = "https://files.pythonhosted.org/packages/18/23/6db3aba46864aee357ab2415135b3fe3da7e9f1fa0221fa2a86a5968099c/cuda_bindings-13.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7dca0da053d3b4cc4869eff49c61c03f3c5dbaa0bcd712317a358d5b8f3f385d", size = 6149914, upload-time = "2026-03-11T00:12:52.374Z" }, - { url = "https://files.pythonhosted.org/packages/c0/87/87a014f045b77c6de5c8527b0757fe644417b184e5367db977236a141602/cuda_bindings-13.2.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a6464b30f46692d6c7f65d4a0e0450d81dd29de3afc1bb515653973d01c2cd6e", size = 5685673, upload-time = "2026-03-11T00:12:56.371Z" }, - { url = "https://files.pythonhosted.org/packages/ee/5e/c0fe77a73aaefd3fff25ffaccaac69c5a63eafdf8b9a4c476626ef0ac703/cuda_bindings-13.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f4af9f3e1be603fa12d5ad6cfca7844c9d230befa9792b5abdf7dd79979c3626", size = 6191386, upload-time = "2026-03-11T00:12:58.965Z" }, - { url = "https://files.pythonhosted.org/packages/5f/58/ed2c3b39c8dd5f96aa7a4abef0d47a73932c7a988e30f5fa428f00ed0da1/cuda_bindings-13.2.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df850a1ff8ce1b3385257b08e47b70e959932f5f432d0a4e46a355962b4e4771", size = 5507469, upload-time = "2026-03-11T00:13:04.063Z" }, - { url = "https://files.pythonhosted.org/packages/1f/01/0c941b112ceeb21439b05895eace78ca1aa2eaaf695c8521a068fd9b4c00/cuda_bindings-13.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8a16384c6494e5485f39314b0b4afb04bee48d49edb16d5d8593fd35bbd231b", size = 6059693, upload-time = "2026-03-11T00:13:06.003Z" }, -] - -[[package]] -name = "cuda-pathfinder" -version = "1.5.4" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/11/d0/c177e29701cf1d3008d7d2b16b5fc626592ce13bd535f8795c5f57187e0e/cuda_pathfinder-1.5.4-py3-none-any.whl", hash = "sha256:9563d3175ce1828531acf4b94e1c1c7d67208c347ca002493e2654878b26f4b7", size = 51657, upload-time = "2026-04-27T22:42:07.712Z" }, -] - -[[package]] -name = "cuda-toolkit" -version = "13.0.2" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/57/b2/453099f5f3b698d7d0eab38916aac44c7f76229f451709e2eb9db6615dcd/cuda_toolkit-13.0.2-py2.py3-none-any.whl", hash = "sha256:b198824cf2f54003f50d64ada3a0f184b42ca0846c1c94192fa269ecd97a66eb", size = 2364, upload-time = "2025-12-19T23:24:07.328Z" }, -] - -[package.optional-dependencies] -cublas = [ - { name = "nvidia-cublas", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -cudart = [ - { name = "nvidia-cuda-runtime", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -cufft = [ - { name = "nvidia-cufft", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -cufile = [ - { name = "nvidia-cufile", marker = "sys_platform == 'linux'" }, -] -cupti = [ - { name = "nvidia-cuda-cupti", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -curand = [ - { name = "nvidia-curand", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -cusolver = [ - { name = "nvidia-cusolver", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -cusparse = [ - { name = "nvidia-cusparse", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -nvjitlink = [ - { name = "nvidia-nvjitlink", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -nvrtc = [ - { name = "nvidia-cuda-nvrtc", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] -nvtx = [ - { name = "nvidia-nvtx", marker = "sys_platform == 'linux' or sys_platform == 'win32'" }, -] - -[[package]] -name = "filelock" -version = "3.29.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b5/fe/997687a931ab51049acce6fa1f23e8f01216374ea81374ddee763c493db5/filelock-3.29.0.tar.gz", hash = "sha256:69974355e960702e789734cb4871f884ea6fe50bd8404051a3530bc07809cf90", size = 57571, upload-time = "2026-04-19T15:39:10.068Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/81/47/dd9a212ef6e343a6857485ffe25bba537304f1913bdbed446a23f7f592e1/filelock-3.29.0-py3-none-any.whl", hash = "sha256:96f5f6344709aa1572bbf631c640e4ebeeb519e08da902c39a001882f30ac258", size = 39812, upload-time = "2026-04-19T15:39:08.752Z" }, -] - -[[package]] -name = "final-assignment" -version = "0.1.0" -source = { virtual = "." } -dependencies = [ - { name = "numpy" }, - { name = "torch" }, -] - -[package.metadata] -requires-dist = [ - { name = "numpy" }, - { name = "torch" }, -] - -[[package]] -name = "fsspec" -version = "2026.4.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d5/8d/1c51c094345df128ca4a990d633fe1a0ff28726c9e6b3c41ba65087bba1d/fsspec-2026.4.0.tar.gz", hash = "sha256:301d8ac70ae90ef3ad05dcf94d6c3754a097f9b5fe4667d2787aa359ec7df7e4", size = 312760, upload-time = "2026-04-29T20:42:38.635Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/0c/043d5e551459da400957a1395e0febbf771446ff34291afcbe3d8be2a279/fsspec-2026.4.0-py3-none-any.whl", hash = "sha256:11ef7bb35dab8a394fde6e608221d5cf3e8499401c249bebaeaad760a1a8dec2", size = 203402, upload-time = "2026-04-29T20:42:36.842Z" }, -] - -[[package]] -name = "jinja2" -version = "3.1.6" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markupsafe" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, -] - -[[package]] -name = "markupsafe" -version = "3.0.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" }, - { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" }, - { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" }, - { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" }, - { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" }, - { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" }, - { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" }, - { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" }, - { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" }, - { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" }, - { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" }, - { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" }, - { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" }, - { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" }, - { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" }, - { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" }, - { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" }, - { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" }, - { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" }, - { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" }, - { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" }, - { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" }, - { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" }, - { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" }, - { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" }, - { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" }, - { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" }, - { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" }, - { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" }, - { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" }, - { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" }, - { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" }, - { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" }, - { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" }, - { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" }, - { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" }, - { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" }, - { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" }, - { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" }, - { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" }, - { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" }, - { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, - { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, - { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, -] - -[[package]] -name = "mpmath" -version = "1.3.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, -] - -[[package]] -name = "networkx" -version = "3.6.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, -] - -[[package]] -name = "numpy" -version = "2.4.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d7/9f/b8cef5bffa569759033adda9481211426f12f53299629b410340795c2514/numpy-2.4.4.tar.gz", hash = "sha256:2d390634c5182175533585cc89f3608a4682ccb173cc9bb940b2881c8d6f8fa0", size = 20731587, upload-time = "2026-03-29T13:22:01.298Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/14/1d/d0a583ce4fefcc3308806a749a536c201ed6b5ad6e1322e227ee4848979d/numpy-2.4.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:08f2e31ed5e6f04b118e49821397f12767934cfdd12a1ce86a058f91e004ee50", size = 16684933, upload-time = "2026-03-29T13:19:22.47Z" }, - { url = "https://files.pythonhosted.org/packages/c1/62/2b7a48fbb745d344742c0277f01286dead15f3f68e4f359fbfcf7b48f70f/numpy-2.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e823b8b6edc81e747526f70f71a9c0a07ac4e7ad13020aa736bb7c9d67196115", size = 14694532, upload-time = "2026-03-29T13:19:25.581Z" }, - { url = "https://files.pythonhosted.org/packages/e5/87/499737bfba066b4a3bebff24a8f1c5b2dee410b209bc6668c9be692580f0/numpy-2.4.4-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:4a19d9dba1a76618dd86b164d608566f393f8ec6ac7c44f0cc879011c45e65af", size = 5199661, upload-time = "2026-03-29T13:19:28.31Z" }, - { url = "https://files.pythonhosted.org/packages/cd/da/464d551604320d1491bc345efed99b4b7034143a85787aab78d5691d5a0e/numpy-2.4.4-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:d2a8490669bfe99a233298348acc2d824d496dee0e66e31b66a6022c2ad74a5c", size = 6547539, upload-time = "2026-03-29T13:19:30.97Z" }, - { url = "https://files.pythonhosted.org/packages/7d/90/8d23e3b0dafd024bf31bdec225b3bb5c2dbfa6912f8a53b8659f21216cbf/numpy-2.4.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:45dbed2ab436a9e826e302fcdcbe9133f9b0006e5af7168afb8963a6520da103", size = 15668806, upload-time = "2026-03-29T13:19:33.887Z" }, - { url = "https://files.pythonhosted.org/packages/d1/73/a9d864e42a01896bb5974475438f16086be9ba1f0d19d0bb7a07427c4a8b/numpy-2.4.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c901b15172510173f5cb310eae652908340f8dede90fff9e3bf6c0d8dfd92f83", size = 16632682, upload-time = "2026-03-29T13:19:37.336Z" }, - { url = "https://files.pythonhosted.org/packages/34/fb/14570d65c3bde4e202a031210475ae9cde9b7686a2e7dc97ee67d2833b35/numpy-2.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:99d838547ace2c4aace6c4f76e879ddfe02bb58a80c1549928477862b7a6d6ed", size = 17019810, upload-time = "2026-03-29T13:19:40.963Z" }, - { url = "https://files.pythonhosted.org/packages/8a/77/2ba9d87081fd41f6d640c83f26fb7351e536b7ce6dd9061b6af5904e8e46/numpy-2.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0aec54fd785890ecca25a6003fd9a5aed47ad607bbac5cd64f836ad8666f4959", size = 18357394, upload-time = "2026-03-29T13:19:44.859Z" }, - { url = "https://files.pythonhosted.org/packages/a2/23/52666c9a41708b0853fa3b1a12c90da38c507a3074883823126d4e9d5b30/numpy-2.4.4-cp313-cp313-win32.whl", hash = "sha256:07077278157d02f65c43b1b26a3886bce886f95d20aabd11f87932750dfb14ed", size = 5959556, upload-time = "2026-03-29T13:19:47.661Z" }, - { url = "https://files.pythonhosted.org/packages/57/fb/48649b4971cde70d817cf97a2a2fdc0b4d8308569f1dd2f2611959d2e0cf/numpy-2.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:5c70f1cc1c4efbe316a572e2d8b9b9cc44e89b95f79ca3331553fbb63716e2bf", size = 12317311, upload-time = "2026-03-29T13:19:50.67Z" }, - { url = "https://files.pythonhosted.org/packages/ba/d8/11490cddd564eb4de97b4579ef6bfe6a736cc07e94c1598590ae25415e01/numpy-2.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:ef4059d6e5152fa1a39f888e344c73fdc926e1b2dd58c771d67b0acfbf2aa67d", size = 10222060, upload-time = "2026-03-29T13:19:54.229Z" }, - { url = "https://files.pythonhosted.org/packages/99/5d/dab4339177a905aad3e2221c915b35202f1ec30d750dd2e5e9d9a72b804b/numpy-2.4.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4bbc7f303d125971f60ec0aaad5e12c62d0d2c925f0ab1273debd0e4ba37aba5", size = 14822302, upload-time = "2026-03-29T13:19:57.585Z" }, - { url = "https://files.pythonhosted.org/packages/eb/e4/0564a65e7d3d97562ed6f9b0fd0fb0a6f559ee444092f105938b50043876/numpy-2.4.4-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:4d6d57903571f86180eb98f8f0c839fa9ebbfb031356d87f1361be91e433f5b7", size = 5327407, upload-time = "2026-03-29T13:20:00.601Z" }, - { url = "https://files.pythonhosted.org/packages/29/8d/35a3a6ce5ad371afa58b4700f1c820f8f279948cca32524e0a695b0ded83/numpy-2.4.4-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:4636de7fd195197b7535f231b5de9e4b36d2c440b6e566d2e4e4746e6af0ca93", size = 6647631, upload-time = "2026-03-29T13:20:02.855Z" }, - { url = "https://files.pythonhosted.org/packages/f4/da/477731acbd5a58a946c736edfdabb2ac5b34c3d08d1ba1a7b437fa0884df/numpy-2.4.4-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ad2e2ef14e0b04e544ea2fa0a36463f847f113d314aa02e5b402fdf910ef309e", size = 15727691, upload-time = "2026-03-29T13:20:06.004Z" }, - { url = "https://files.pythonhosted.org/packages/e6/db/338535d9b152beabeb511579598418ba0212ce77cf9718edd70262cc4370/numpy-2.4.4-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5a285b3b96f951841799528cd1f4f01cd70e7e0204b4abebac9463eecfcf2a40", size = 16681241, upload-time = "2026-03-29T13:20:09.417Z" }, - { url = "https://files.pythonhosted.org/packages/e2/a9/ad248e8f58beb7a0219b413c9c7d8151c5d285f7f946c3e26695bdbbe2df/numpy-2.4.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:f8474c4241bc18b750be2abea9d7a9ec84f46ef861dbacf86a4f6e043401f79e", size = 17085767, upload-time = "2026-03-29T13:20:13.126Z" }, - { url = "https://files.pythonhosted.org/packages/b5/1a/3b88ccd3694681356f70da841630e4725a7264d6a885c8d442a697e1146b/numpy-2.4.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:4e874c976154687c1f71715b034739b45c7711bec81db01914770373d125e392", size = 18403169, upload-time = "2026-03-29T13:20:17.096Z" }, - { url = "https://files.pythonhosted.org/packages/c2/c9/fcfd5d0639222c6eac7f304829b04892ef51c96a75d479214d77e3ce6e33/numpy-2.4.4-cp313-cp313t-win32.whl", hash = "sha256:9c585a1790d5436a5374bac930dad6ed244c046ed91b2b2a3634eb2971d21008", size = 6083477, upload-time = "2026-03-29T13:20:20.195Z" }, - { url = "https://files.pythonhosted.org/packages/d5/e3/3938a61d1c538aaec8ed6fd6323f57b0c2d2d2219512434c5c878db76553/numpy-2.4.4-cp313-cp313t-win_amd64.whl", hash = "sha256:93e15038125dc1e5345d9b5b68aa7f996ec33b98118d18c6ca0d0b7d6198b7e8", size = 12457487, upload-time = "2026-03-29T13:20:22.946Z" }, - { url = "https://files.pythonhosted.org/packages/97/6a/7e345032cc60501721ef94e0e30b60f6b0bd601f9174ebd36389a2b86d40/numpy-2.4.4-cp313-cp313t-win_arm64.whl", hash = "sha256:0dfd3f9d3adbe2920b68b5cd3d51444e13a10792ec7154cd0a2f6e74d4ab3233", size = 10292002, upload-time = "2026-03-29T13:20:25.909Z" }, - { url = "https://files.pythonhosted.org/packages/6e/06/c54062f85f673dd5c04cbe2f14c3acb8c8b95e3384869bb8cc9bff8cb9df/numpy-2.4.4-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:f169b9a863d34f5d11b8698ead99febeaa17a13ca044961aa8e2662a6c7766a0", size = 16684353, upload-time = "2026-03-29T13:20:29.504Z" }, - { url = "https://files.pythonhosted.org/packages/4c/39/8a320264a84404c74cc7e79715de85d6130fa07a0898f67fb5cd5bd79908/numpy-2.4.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2483e4584a1cb3092da4470b38866634bafb223cbcd551ee047633fd2584599a", size = 14704914, upload-time = "2026-03-29T13:20:33.547Z" }, - { url = "https://files.pythonhosted.org/packages/91/fb/287076b2614e1d1044235f50f03748f31fa287e3dbe6abeb35cdfa351eca/numpy-2.4.4-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:2d19e6e2095506d1736b7d80595e0f252d76b89f5e715c35e06e937679ea7d7a", size = 5210005, upload-time = "2026-03-29T13:20:36.45Z" }, - { url = "https://files.pythonhosted.org/packages/63/eb/fcc338595309910de6ecabfcef2419a9ce24399680bfb149421fa2df1280/numpy-2.4.4-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:6a246d5914aa1c820c9443ddcee9c02bec3e203b0c080349533fae17727dfd1b", size = 6544974, upload-time = "2026-03-29T13:20:39.014Z" }, - { url = "https://files.pythonhosted.org/packages/44/5d/e7e9044032a716cdfaa3fba27a8e874bf1c5f1912a1ddd4ed071bf8a14a6/numpy-2.4.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:989824e9faf85f96ec9c7761cd8d29c531ad857bfa1daa930cba85baaecf1a9a", size = 15684591, upload-time = "2026-03-29T13:20:42.146Z" }, - { url = "https://files.pythonhosted.org/packages/98/7c/21252050676612625449b4807d6b695b9ce8a7c9e1c197ee6216c8a65c7c/numpy-2.4.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:27a8d92cd10f1382a67d7cf4db7ce18341b66438bdd9f691d7b0e48d104c2a9d", size = 16637700, upload-time = "2026-03-29T13:20:46.204Z" }, - { url = "https://files.pythonhosted.org/packages/b1/29/56d2bbef9465db24ef25393383d761a1af4f446a1df9b8cded4fe3a5a5d7/numpy-2.4.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e44319a2953c738205bf3354537979eaa3998ed673395b964c1176083dd46252", size = 17035781, upload-time = "2026-03-29T13:20:50.242Z" }, - { url = "https://files.pythonhosted.org/packages/e3/2b/a35a6d7589d21f44cea7d0a98de5ddcbb3d421b2622a5c96b1edf18707c3/numpy-2.4.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e892aff75639bbef0d2a2cfd55535510df26ff92f63c92cd84ef8d4ba5a5557f", size = 18362959, upload-time = "2026-03-29T13:20:54.019Z" }, - { url = "https://files.pythonhosted.org/packages/64/c9/d52ec581f2390e0f5f85cbfd80fb83d965fc15e9f0e1aec2195faa142cde/numpy-2.4.4-cp314-cp314-win32.whl", hash = "sha256:1378871da56ca8943c2ba674530924bb8ca40cd228358a3b5f302ad60cf875fc", size = 6008768, upload-time = "2026-03-29T13:20:56.912Z" }, - { url = "https://files.pythonhosted.org/packages/fa/22/4cc31a62a6c7b74a8730e31a4274c5dc80e005751e277a2ce38e675e4923/numpy-2.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:715d1c092715954784bc79e1174fc2a90093dc4dc84ea15eb14dad8abdcdeb74", size = 12449181, upload-time = "2026-03-29T13:20:59.548Z" }, - { url = "https://files.pythonhosted.org/packages/70/2e/14cda6f4d8e396c612d1bf97f22958e92148801d7e4f110cabebdc0eef4b/numpy-2.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:2c194dd721e54ecad9ad387c1d35e63dce5c4450c6dc7dd5611283dda239aabb", size = 10496035, upload-time = "2026-03-29T13:21:02.524Z" }, - { url = "https://files.pythonhosted.org/packages/b1/e8/8fed8c8d848d7ecea092dc3469643f9d10bc3a134a815a3b033da1d2039b/numpy-2.4.4-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2aa0613a5177c264ff5921051a5719d20095ea586ca88cc802c5c218d1c67d3e", size = 14824958, upload-time = "2026-03-29T13:21:05.671Z" }, - { url = "https://files.pythonhosted.org/packages/05/1a/d8007a5138c179c2bf33ef44503e83d70434d2642877ee8fbb230e7c0548/numpy-2.4.4-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:42c16925aa5a02362f986765f9ebabf20de75cdefdca827d14315c568dcab113", size = 5330020, upload-time = "2026-03-29T13:21:08.635Z" }, - { url = "https://files.pythonhosted.org/packages/99/64/ffb99ac6ae93faf117bcbd5c7ba48a7f45364a33e8e458545d3633615dda/numpy-2.4.4-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:874f200b2a981c647340f841730fc3a2b54c9d940566a3c4149099591e2c4c3d", size = 6650758, upload-time = "2026-03-29T13:21:10.949Z" }, - { url = "https://files.pythonhosted.org/packages/6e/6e/795cc078b78a384052e73b2f6281ff7a700e9bf53bcce2ee579d4f6dd879/numpy-2.4.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c9b39d38a9bd2ae1becd7eac1303d031c5c110ad31f2b319c6e7d98b135c934d", size = 15729948, upload-time = "2026-03-29T13:21:14.047Z" }, - { url = "https://files.pythonhosted.org/packages/5f/86/2acbda8cc2af5f3d7bfc791192863b9e3e19674da7b5e533fded124d1299/numpy-2.4.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b268594bccac7d7cf5844c7732e3f20c50921d94e36d7ec9b79e9857694b1b2f", size = 16679325, upload-time = "2026-03-29T13:21:17.561Z" }, - { url = "https://files.pythonhosted.org/packages/bc/59/cafd83018f4aa55e0ac6fa92aa066c0a1877b77a615ceff1711c260ffae8/numpy-2.4.4-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:ac6b31e35612a26483e20750126d30d0941f949426974cace8e6b5c58a3657b0", size = 17084883, upload-time = "2026-03-29T13:21:21.106Z" }, - { url = "https://files.pythonhosted.org/packages/f0/85/a42548db84e65ece46ab2caea3d3f78b416a47af387fcbb47ec28e660dc2/numpy-2.4.4-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:8e3ed142f2728df44263aaf5fb1f5b0b99f4070c553a0d7f033be65338329150", size = 18403474, upload-time = "2026-03-29T13:21:24.828Z" }, - { url = "https://files.pythonhosted.org/packages/ed/ad/483d9e262f4b831000062e5d8a45e342166ec8aaa1195264982bca267e62/numpy-2.4.4-cp314-cp314t-win32.whl", hash = "sha256:dddbbd259598d7240b18c9d87c56a9d2fb3b02fe266f49a7c101532e78c1d871", size = 6155500, upload-time = "2026-03-29T13:21:28.205Z" }, - { url = "https://files.pythonhosted.org/packages/c7/03/2fc4e14c7bd4ff2964b74ba90ecb8552540b6315f201df70f137faa5c589/numpy-2.4.4-cp314-cp314t-win_amd64.whl", hash = "sha256:a7164afb23be6e37ad90b2f10426149fd75aee07ca55653d2aa41e66c4ef697e", size = 12637755, upload-time = "2026-03-29T13:21:31.107Z" }, - { url = "https://files.pythonhosted.org/packages/58/78/548fb8e07b1a341746bfbecb32f2c268470f45fa028aacdbd10d9bc73aab/numpy-2.4.4-cp314-cp314t-win_arm64.whl", hash = "sha256:ba203255017337d39f89bdd58417f03c4426f12beed0440cfd933cb15f8669c7", size = 10566643, upload-time = "2026-03-29T13:21:34.339Z" }, -] - -[[package]] -name = "nvidia-cublas" -version = "13.1.0.3" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/a5/fce49e2ae977e0ccc084e5adafceb4f0ac0c8333cb6863501618a7277f67/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c86fc7f7ae36d7528288c5d88098edcb7b02c633d262e7ddbb86b0ad91be5df2", size = 542851226, upload-time = "2025-10-09T08:59:04.818Z" }, - { url = "https://files.pythonhosted.org/packages/e7/44/423ac00af4dd95a5aeb27207e2c0d9b7118702149bf4704c3ddb55bb7429/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:ee8722c1f0145ab246bccb9e452153b5e0515fd094c3678df50b2a0888b8b171", size = 423133236, upload-time = "2025-10-09T08:59:32.536Z" }, -] - -[[package]] -name = "nvidia-cuda-cupti" -version = "13.0.85" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/2a/80353b103fc20ce05ef51e928daed4b6015db4aaa9162ed0997090fe2250/nvidia_cuda_cupti-13.0.85-py3-none-manylinux_2_25_aarch64.whl", hash = "sha256:796bd679890ee55fb14a94629b698b6db54bcfd833d391d5e94017dd9d7d3151", size = 10310827, upload-time = "2025-09-04T08:26:42.012Z" }, - { url = "https://files.pythonhosted.org/packages/33/6d/737d164b4837a9bbd202f5ae3078975f0525a55730fe871d8ed4e3b952b0/nvidia_cuda_cupti-13.0.85-py3-none-manylinux_2_25_x86_64.whl", hash = "sha256:4eb01c08e859bf924d222250d2e8f8b8ff6d3db4721288cf35d14252a4d933c8", size = 10715597, upload-time = "2025-09-04T08:26:51.312Z" }, -] - -[[package]] -name = "nvidia-cuda-nvrtc" -version = "13.0.88" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c3/68/483a78f5e8f31b08fb1bb671559968c0ca3a065ac7acabfc7cee55214fd6/nvidia_cuda_nvrtc-13.0.88-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:ad9b6d2ead2435f11cbb6868809d2adeeee302e9bb94bcf0539c7a40d80e8575", size = 90215200, upload-time = "2025-09-04T08:28:44.204Z" }, - { url = "https://files.pythonhosted.org/packages/b7/dc/6bb80850e0b7edd6588d560758f17e0550893a1feaf436807d64d2da040f/nvidia_cuda_nvrtc-13.0.88-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d27f20a0ca67a4bb34268a5e951033496c5b74870b868bacd046b1b8e0c3267b", size = 43015449, upload-time = "2025-09-04T08:28:20.239Z" }, -] - -[[package]] -name = "nvidia-cuda-runtime" -version = "13.0.96" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/87/4f/17d7b9b8e285199c58ce28e31b5c5bbaa4d8271af06a89b6405258245de2/nvidia_cuda_runtime-13.0.96-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef9bcbe90493a2b9d810e43d249adb3d02e98dd30200d86607d8d02687c43f55", size = 2261060, upload-time = "2025-10-09T08:55:15.78Z" }, - { url = "https://files.pythonhosted.org/packages/2e/24/d1558f3b68b1d26e706813b1d10aa1d785e4698c425af8db8edc3dced472/nvidia_cuda_runtime-13.0.96-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7f82250d7782aa23b6cfe765ecc7db554bd3c2870c43f3d1821f1d18aebf0548", size = 2243632, upload-time = "2025-10-09T08:55:36.117Z" }, -] - -[[package]] -name = "nvidia-cudnn-cu13" -version = "9.19.0.56" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "nvidia-cublas" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/f1/84/26025437c1e6b61a707442184fa0c03d083b661adf3a3eecfd6d21677740/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:6ed29ffaee1176c612daf442e4dd6cfeb6a0caa43ddcbeb59da94953030b1be4", size = 433781201, upload-time = "2026-02-03T20:40:53.805Z" }, - { url = "https://files.pythonhosted.org/packages/a3/22/0b4b932655d17a6da1b92fa92ab12844b053bb2ac2475e179ba6f043da1e/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:d20e1734305e9d68889a96e3f35094d733ff1f83932ebe462753973e53a572bf", size = 366066321, upload-time = "2026-02-03T20:44:52.837Z" }, -] - -[[package]] -name = "nvidia-cufft" -version = "12.0.0.61" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "nvidia-nvjitlink" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/8b/ae/f417a75c0259e85c1d2f83ca4e960289a5f814ed0cea74d18c353d3e989d/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2708c852ef8cd89d1d2068bdbece0aa188813a0c934db3779b9b1faa8442e5f5", size = 214053554, upload-time = "2025-09-04T08:31:38.196Z" }, - { url = "https://files.pythonhosted.org/packages/a8/2f/7b57e29836ea8714f81e9898409196f47d772d5ddedddf1592eadb8ab743/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6c44f692dce8fd5ffd3e3df134b6cdb9c2f72d99cf40b62c32dde45eea9ddad3", size = 214085489, upload-time = "2025-09-04T08:31:56.044Z" }, -] - -[[package]] -name = "nvidia-cufile" -version = "1.15.1.6" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3f/70/4f193de89a48b71714e74602ee14d04e4019ad36a5a9f20c425776e72cd6/nvidia_cufile-1.15.1.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:08a3ecefae5a01c7f5117351c64f17c7c62efa5fffdbe24fc7d298da19cd0b44", size = 1223672, upload-time = "2025-09-04T08:32:22.779Z" }, - { url = "https://files.pythonhosted.org/packages/ab/73/cc4a14c9813a8a0d509417cf5f4bdaba76e924d58beb9864f5a7baceefbf/nvidia_cufile-1.15.1.6-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:bdc0deedc61f548bddf7733bdc216456c2fdb101d020e1ab4b88d232d5e2f6d1", size = 1136992, upload-time = "2025-09-04T08:32:14.119Z" }, -] - -[[package]] -name = "nvidia-curand" -version = "10.4.0.35" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/72/7c2ae24fb6b63a32e6ae5d241cc65263ea18d08802aaae087d9f013335a2/nvidia_curand-10.4.0.35-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:133df5a7509c3e292aaa2b477afd0194f06ce4ea24d714d616ff36439cee349a", size = 61962106, upload-time = "2025-08-04T10:21:41.128Z" }, - { url = "https://files.pythonhosted.org/packages/a5/9f/be0a41ca4a4917abf5cb9ae0daff1a6060cc5de950aec0396de9f3b52bc5/nvidia_curand-10.4.0.35-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:1aee33a5da6e1db083fe2b90082def8915f30f3248d5896bcec36a579d941bfc", size = 59544258, upload-time = "2025-08-04T10:22:03.992Z" }, -] - -[[package]] -name = "nvidia-cusolver" -version = "12.0.4.66" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "nvidia-cublas" }, - { name = "nvidia-cusparse" }, - { name = "nvidia-nvjitlink" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/c8/c3/b30c9e935fc01e3da443ec0116ed1b2a009bb867f5324d3f2d7e533e776b/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:02c2457eaa9e39de20f880f4bd8820e6a1cfb9f9a34f820eb12a155aa5bc92d2", size = 223467760, upload-time = "2025-09-04T08:33:04.222Z" }, - { url = "https://files.pythonhosted.org/packages/5f/67/cba3777620cdacb99102da4042883709c41c709f4b6323c10781a9c3aa34/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:0a759da5dea5c0ea10fd307de75cdeb59e7ea4fcb8add0924859b944babf1112", size = 200941980, upload-time = "2025-09-04T08:33:22.767Z" }, -] - -[[package]] -name = "nvidia-cusparse" -version = "12.6.3.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "nvidia-nvjitlink" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/f8/94/5c26f33738ae35276672f12615a64bd008ed5be6d1ebcb23579285d960a9/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:80bcc4662f23f1054ee334a15c72b8940402975e0eab63178fc7e670aa59472c", size = 162155568, upload-time = "2025-09-04T08:33:42.864Z" }, - { url = "https://files.pythonhosted.org/packages/fa/18/623c77619c31d62efd55302939756966f3ecc8d724a14dab2b75f1508850/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2b3c89c88d01ee0e477cb7f82ef60a11a4bcd57b6b87c33f789350b59759360b", size = 145942937, upload-time = "2025-09-04T08:33:58.029Z" }, -] - -[[package]] -name = "nvidia-cusparselt-cu13" -version = "0.8.0" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/46/10/8dcd1175260706a2fc92a16a52e306b71d4c1ea0b0cc4a9484183399818a/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:400c6ed1cf6780fc6efedd64ec9f1345871767e6a1a0a552a1ea0578117ea77c", size = 220791277, upload-time = "2025-08-13T19:22:40.982Z" }, - { url = "https://files.pythonhosted.org/packages/fd/53/43b0d71f4e702fa9733f8b4571fdca50a8813f1e450b656c239beff12315/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:25e30a8a7323935d4ad0340b95a0b69926eee755767e8e0b1cf8dd85b197d3fd", size = 169884119, upload-time = "2025-08-13T19:23:41.967Z" }, -] - -[[package]] -name = "nvidia-nccl-cu13" -version = "2.28.9" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/39/55/1920646a2e43ffd4fc958536b276197ed740e9e0c54105b4bb3521591fc7/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_aarch64.whl", hash = "sha256:01c873ba1626b54caa12272ed228dc5b2781545e0ae8ba3f432a8ef1c6d78643", size = 196561677, upload-time = "2025-11-18T05:49:03.45Z" }, - { url = "https://files.pythonhosted.org/packages/b0/b4/878fefaad5b2bcc6fcf8d474a25e3e3774bc5133e4b58adff4d0bca238bc/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_x86_64.whl", hash = "sha256:e4553a30f34195f3fa1da02a6da3d6337d28f2003943aa0a3d247bbc25fefc42", size = 196493177, upload-time = "2025-11-18T05:49:17.677Z" }, -] - -[[package]] -name = "nvidia-nvjitlink" -version = "13.0.88" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/56/7a/123e033aaff487c77107195fa5a2b8686795ca537935a24efae476c41f05/nvidia_nvjitlink-13.0.88-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:13a74f429e23b921c1109976abefacc69835f2f433ebd323d3946e11d804e47b", size = 40713933, upload-time = "2025-09-04T08:35:43.553Z" }, - { url = "https://files.pythonhosted.org/packages/ab/2c/93c5250e64df4f894f1cbb397c6fd71f79813f9fd79d7cd61de3f97b3c2d/nvidia_nvjitlink-13.0.88-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e931536ccc7d467a98ba1d8b89ff7fa7f1fa3b13f2b0069118cd7f47bff07d0c", size = 38768748, upload-time = "2025-09-04T08:35:20.008Z" }, -] - -[[package]] -name = "nvidia-nvshmem-cu13" -version = "3.4.5" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/dc/0f/05cc9c720236dcd2db9c1ab97fff629e96821be2e63103569da0c9b72f19/nvidia_nvshmem_cu13-3.4.5-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6dc2a197f38e5d0376ad52cd1a2a3617d3cdc150fd5966f4aee9bcebb1d68fe9", size = 60215947, upload-time = "2025-09-06T00:32:20.022Z" }, - { url = "https://files.pythonhosted.org/packages/3c/35/a9bf80a609e74e3b000fef598933235c908fcefcef9026042b8e6dfde2a9/nvidia_nvshmem_cu13-3.4.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:290f0a2ee94c9f3687a02502f3b9299a9f9fe826e6d0287ee18482e78d495b80", size = 60412546, upload-time = "2025-09-06T00:32:41.564Z" }, -] - -[[package]] -name = "nvidia-nvtx" -version = "13.0.85" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c2/f3/d86c845465a2723ad7e1e5c36dcd75ddb82898b3f53be47ebd429fb2fa5d/nvidia_nvtx-13.0.85-py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:4936d1d6780fbe68db454f5e72a42ff64d1fd6397df9f363ae786930fd5c1cd4", size = 148047, upload-time = "2025-09-04T08:29:01.761Z" }, - { url = "https://files.pythonhosted.org/packages/a8/64/3708a90d1ebe202ffdeb7185f878a3c84d15c2b2c31858da2ce0583e2def/nvidia_nvtx-13.0.85-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cb7780edb6b14107373c835bf8b72e7a178bac7367e23da7acb108f973f157a6", size = 148878, upload-time = "2025-09-04T08:28:53.627Z" }, -] - -[[package]] -name = "setuptools" -version = "81.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0d/1c/73e719955c59b8e424d015ab450f51c0af856ae46ea2da83eba51cc88de1/setuptools-81.0.0.tar.gz", hash = "sha256:487b53915f52501f0a79ccfd0c02c165ffe06631443a886740b91af4b7a5845a", size = 1198299, upload-time = "2026-02-06T21:10:39.601Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/e3/c164c88b2e5ce7b24d667b9bd83589cf4f3520d97cad01534cd3c4f55fdb/setuptools-81.0.0-py3-none-any.whl", hash = "sha256:fdd925d5c5d9f62e4b74b30d6dd7828ce236fd6ed998a08d81de62ce5a6310d6", size = 1062021, upload-time = "2026-02-06T21:10:37.175Z" }, -] - -[[package]] -name = "sympy" -version = "1.14.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mpmath" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, -] - -[[package]] -name = "torch" -version = "2.11.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "cuda-bindings", marker = "sys_platform == 'linux'" }, - { name = "cuda-toolkit", extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], marker = "sys_platform == 'linux'" }, - { name = "filelock" }, - { name = "fsspec" }, - { name = "jinja2" }, - { name = "networkx" }, - { name = "nvidia-cudnn-cu13", marker = "sys_platform == 'linux'" }, - { name = "nvidia-cusparselt-cu13", marker = "sys_platform == 'linux'" }, - { name = "nvidia-nccl-cu13", marker = "sys_platform == 'linux'" }, - { name = "nvidia-nvshmem-cu13", marker = "sys_platform == 'linux'" }, - { name = "setuptools" }, - { name = "sympy" }, - { name = "triton", marker = "sys_platform == 'linux'" }, - { name = "typing-extensions" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/87/89/5ea6722763acee56b045435fb84258db7375c48165ec8be7880ab2b281c5/torch-2.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1e6debd97ccd3205bbb37eb806a9d8219e1139d15419982c09e23ef7d4369d18", size = 80606801, upload-time = "2026-03-23T18:10:18.649Z" }, - { url = "https://files.pythonhosted.org/packages/32/d1/8ed2173589cbfe744ed54e5a73efc107c0085ba5777ee93a5f4c1ab90553/torch-2.11.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:63a68fa59de8f87acc7e85a5478bb2dddbb3392b7593ec3e78827c793c4b73fd", size = 419732382, upload-time = "2026-03-23T18:08:30.835Z" }, - { url = "https://files.pythonhosted.org/packages/3d/e1/b73f7c575a4b8f87a5928f50a1e35416b5e27295d8be9397d5293e7e8d4c/torch-2.11.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:cc89b9b173d9adfab59fd227f0ab5e5516d9a52b658ae41d64e59d2e55a418db", size = 530711509, upload-time = "2026-03-23T18:08:47.213Z" }, - { url = "https://files.pythonhosted.org/packages/66/82/3e3fcdd388fbe54e29fd3f991f36846ff4ac90b0d0181e9c8f7236565f82/torch-2.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:4dda3b3f52d121063a731ddb835f010dc137b920d7fec2778e52f60d8e4bf0cd", size = 114555842, upload-time = "2026-03-23T18:09:52.111Z" }, - { url = "https://files.pythonhosted.org/packages/db/38/8ac78069621b8c2b4979c2f96dc8409ef5e9c4189f6aac629189a78677ca/torch-2.11.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8b394322f49af4362d4f80e424bcaca7efcd049619af03a4cf4501520bdf0fb4", size = 80959574, upload-time = "2026-03-23T18:10:14.214Z" }, - { url = "https://files.pythonhosted.org/packages/6d/6c/56bfb37073e7136e6dd86bfc6af7339946dd684e0ecf2155ac0eee687ae1/torch-2.11.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2658f34ce7e2dabf4ec73b45e2ca68aedad7a5be87ea756ad656eaf32bf1e1ea", size = 419732324, upload-time = "2026-03-23T18:09:36.604Z" }, - { url = "https://files.pythonhosted.org/packages/07/f4/1b666b6d61d3394cca306ea543ed03a64aad0a201b6cd159f1d41010aeb1/torch-2.11.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:98bb213c3084cfe176302949bdc360074b18a9da7ab59ef2edc9d9f742504778", size = 530596026, upload-time = "2026-03-23T18:09:20.842Z" }, - { url = "https://files.pythonhosted.org/packages/48/6b/30d1459fa7e4b67e9e3fe1685ca1d8bb4ce7c62ef436c3a615963c6c866c/torch-2.11.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a97b94bbf62992949b4730c6cd2cc9aee7b335921ee8dc207d930f2ed09ae2db", size = 114793702, upload-time = "2026-03-23T18:09:47.304Z" }, - { url = "https://files.pythonhosted.org/packages/26/0d/8603382f61abd0db35841148ddc1ffd607bf3100b11c6e1dab6d2fc44e72/torch-2.11.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:01018087326984a33b64e04c8cb5c2795f9120e0d775ada1f6638840227b04d7", size = 80573442, upload-time = "2026-03-23T18:09:10.117Z" }, - { url = "https://files.pythonhosted.org/packages/c7/86/7cd7c66cb9cec6be330fff36db5bd0eef386d80c031b581ec81be1d4b26c/torch-2.11.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:2bb3cc54bd0dea126b0060bb1ec9de0f9c7f7342d93d436646516b0330cd5be7", size = 419749385, upload-time = "2026-03-23T18:07:33.77Z" }, - { url = "https://files.pythonhosted.org/packages/47/e8/b98ca2d39b2e0e4730c0ee52537e488e7008025bc77ca89552ff91021f7c/torch-2.11.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:4dc8b3809469b6c30b411bb8c4cad3828efd26236153d9beb6a3ec500f211a60", size = 530716756, upload-time = "2026-03-23T18:07:50.02Z" }, - { url = "https://files.pythonhosted.org/packages/78/88/d4a4cda8362f8a30d1ed428564878c3cafb0d87971fbd3947d4c84552095/torch-2.11.0-cp314-cp314-win_amd64.whl", hash = "sha256:2b4e811728bd0cc58fb2b0948fe939a1ee2bf1422f6025be2fca4c7bd9d79718", size = 114552300, upload-time = "2026-03-23T18:09:05.617Z" }, - { url = "https://files.pythonhosted.org/packages/bf/46/4419098ed6d801750f26567b478fc185c3432e11e2cad712bc6b4c2ab0d0/torch-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:8245477871c3700d4370352ffec94b103cfcb737229445cf9946cddb7b2ca7cd", size = 80959460, upload-time = "2026-03-23T18:09:00.818Z" }, - { url = "https://files.pythonhosted.org/packages/fd/66/54a56a4a6ceaffb567231994a9745821d3af922a854ed33b0b3a278e0a99/torch-2.11.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:ab9a8482f475f9ba20e12db84b0e55e2f58784bdca43a854a6ccd3fd4b9f75e6", size = 419735835, upload-time = "2026-03-23T18:07:18.974Z" }, - { url = "https://files.pythonhosted.org/packages/b1/e7/0b6665f533aa9e337662dc190425abc0af1fe3234088f4454c52393ded61/torch-2.11.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:563ed3d25542d7e7bbc5b235ccfacfeb97fb470c7fee257eae599adb8005c8a2", size = 530613405, upload-time = "2026-03-23T18:08:07.014Z" }, - { url = "https://files.pythonhosted.org/packages/cf/bf/c8d12a2c86dbfd7f40fb2f56fbf5a505ccf2d9ce131eb559dfc7c51e1a04/torch-2.11.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b2a43985ff5ef6ddd923bbcf99943e5f58059805787c5c9a2622bf05ca2965b0", size = 114792991, upload-time = "2026-03-23T18:08:19.216Z" }, -] - -[[package]] -name = "triton" -version = "3.6.0" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/12/34d71b350e89a204c2c7777a9bba0dcf2f19a5bfdd70b57c4dbc5ffd7154/triton-3.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:448e02fe6dc898e9e5aa89cf0ee5c371e99df5aa5e8ad976a80b93334f3494fd", size = 176133521, upload-time = "2026-01-20T16:16:13.321Z" }, - { url = "https://files.pythonhosted.org/packages/f9/0b/37d991d8c130ce81a8728ae3c25b6e60935838e9be1b58791f5997b24a54/triton-3.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10c7f76c6e72d2ef08df639e3d0d30729112f47a56b0c81672edc05ee5116ac9", size = 188289450, upload-time = "2026-01-20T16:00:49.136Z" }, - { url = "https://files.pythonhosted.org/packages/ce/4e/41b0c8033b503fd3cfcd12392cdd256945026a91ff02452bef40ec34bee7/triton-3.6.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1722e172d34e32abc3eb7711d0025bb69d7959ebea84e3b7f7a341cd7ed694d6", size = 176276087, upload-time = "2026-01-20T16:16:18.989Z" }, - { url = "https://files.pythonhosted.org/packages/35/f8/9c66bfc55361ec6d0e4040a0337fb5924ceb23de4648b8a81ae9d33b2b38/triton-3.6.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d002e07d7180fd65e622134fbd980c9a3d4211fb85224b56a0a0efbd422ab72f", size = 188400296, upload-time = "2026-01-20T16:00:56.042Z" }, - { url = "https://files.pythonhosted.org/packages/49/55/5ecf0dcaa0f2fbbd4420f7ef227ee3cb172e91e5fede9d0ecaddc43363b4/triton-3.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef5523241e7d1abca00f1d240949eebdd7c673b005edbbce0aca95b8191f1d43", size = 176138577, upload-time = "2026-01-20T16:16:25.426Z" }, - { url = "https://files.pythonhosted.org/packages/df/3d/9e7eee57b37c80cec63322c0231bb6da3cfe535a91d7a4d64896fcb89357/triton-3.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a17a5d5985f0ac494ed8a8e54568f092f7057ef60e1b0fa09d3fd1512064e803", size = 188273063, upload-time = "2026-01-20T16:01:07.278Z" }, - { url = "https://files.pythonhosted.org/packages/48/db/56ee649cab5eaff4757541325aca81f52d02d4a7cd3506776cad2451e060/triton-3.6.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0b3a97e8ed304dfa9bd23bb41ca04cdf6b2e617d5e782a8653d616037a5d537d", size = 176274804, upload-time = "2026-01-20T16:16:31.528Z" }, - { url = "https://files.pythonhosted.org/packages/f6/56/6113c23ff46c00aae423333eb58b3e60bdfe9179d542781955a5e1514cb3/triton-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46bd1c1af4b6704e554cad2eeb3b0a6513a980d470ccfa63189737340c7746a7", size = 188397994, upload-time = "2026-01-20T16:01:14.236Z" }, -] - -[[package]] -name = "typing-extensions" -version = "4.15.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, -]