├── .github └── workflows │ ├── pr-tests.yml │ ├── publish_jupyterbook.yml │ └── sync_jupyterbook.yml ├── .gitignore ├── .idea ├── csv-plugin.xml └── workspace.xml ├── CITATION.cff ├── LICENSE ├── README.md ├── data ├── Crystal.McCabe-Glynn.2013.lpd ├── EPICA_Dome_C_CO2.csv ├── Euro2k │ ├── Arc-AkademiiNaukIceCap.Opel.2013.lpd │ ├── Arc-Forfjorddalen.McCarroll.2013.lpd │ ├── Arc-GulfofAlaska.Wilson.2014.lpd │ ├── Arc-Indigirka.Hughes.1999.lpd │ ├── Arc-Jamtland.Wilson.2016.lpd │ ├── Arc-Kittelfjall.Bjorklund.2012.lpd │ ├── Arc-PolarUrals.Wilson.2015.lpd │ ├── Arc-Tjeggelvas.Bjorklund.2012.lpd │ ├── Arc-Tornetrask.Melvin.2012.lpd │ ├── Eur-CentralEurope.Dobrovoln.2009.lpd │ ├── Eur-CentralandEasternPyrenees.Pla.2004.lpd │ ├── Eur-CoastofPortugal.Abrantes.2011.lpd │ ├── Eur-EasternCarpathianMountains.Popa.2008.lpd │ ├── Eur-EuropeanAlps.Bntgen.2011.lpd │ ├── Eur-FinnishLakelands.Helama.2014.lpd │ ├── Eur-LakeSilvaplana.Larocque-Tobler.2010.lpd │ ├── Eur-LakeSilvaplana.Trachsel.2010.lpd │ ├── Eur-Ltschental.Bntgen.2006.lpd │ ├── Eur-MaritimeFrenchAlps.Bntgen.2012.lpd │ ├── Eur-NorthernScandinavia.Esper.2012.lpd │ ├── Eur-NorthernSpain.Martn-Chivelet.2011.lpd │ ├── Eur-RAPiD-17-5P.Moffa-Sanchez.2014.lpd │ ├── Eur-Seebergsee.Larocque-Tobler.2012.lpd │ ├── Eur-SpanishPyrenees.Dorado-Linan.2012.lpd │ ├── Eur-SpannagelCave.Mangini.2005.lpd │ ├── Eur-Stockholm.Leijonhufvud.2009.lpd │ ├── Eur-Tallinn.Tarand.2001.lpd │ ├── Eur-TatraMountains.Bntgen.2013.lpd │ ├── Ocn-AqabaJordanAQ18.Heiss.1999.lpd │ ├── Ocn-AqabaJordanAQ19.Heiss.1999.lpd │ └── Ocn-RedSea.Felis.2000.lpd ├── LR04.csv ├── MD982181.Khider.2014.lpd ├── ODP846.Lawrence.2006.lpd ├── Ocn-Palmyra.Nurhati.2011.lpd ├── Pages2k │ ├── Ant-WAIS-Divide.Severinghaus.2012.lpd │ ├── Arc-Kongressvatnet.D'Andrea.2012.lpd │ ├── Asi-SourthAndMiddleUrals.Demezhko.2007.lpd │ ├── Eur-CoastofPortugal.Abrantes.2011.lpd │ ├── Eur-FinnishLakelands.Helama.2014.lpd │ ├── Eur-LakeSilvaplana.Trachsel.2010.lpd │ ├── Eur-NorthernScandinavia.Esper.2012.lpd │ ├── Eur-NorthernSpain.Martin-Chivelet.2011.lpd │ ├── Eur-SpanishPyrenees.Dorado-Linan.2012.lpd │ ├── Eur-SpannagelCave.Mangini.2005.lpd │ ├── Eur-Stockholm.Leijonhufvud.2009.lpd │ ├── Ocn-AlboranSea436B.Nieto-Moreno.2013.lpd │ ├── Ocn-FeniDrift.Richter.2009.lpd │ ├── Ocn-PedradeLume-CapeVerdeIslands.Moses.2006.lpd │ ├── Ocn-RedSea.Felis.2000.lpd │ └── Ocn-SinaiPeninsula,RedSea.Moustafa.2000.lpd ├── df_senzor2_cvetkovic.xlsx ├── edc3deuttemp2007.csv ├── hulu_ensemble.pkl ├── p2k_ngeo19_recons.nc └── wtc_test_data_nino_even.csv ├── environment.yml └── notebooks ├── L0_a_quickstart.ipynb ├── L0_basic_MSES_manipulation.ipynb ├── L0_basic_ts_manipulation.ipynb ├── L0_loading_to_series.ipynb ├── L0_paleopandas.ipynb ├── L0_working_with_geoseries.ipynb ├── L1_figures_with_multiple_panels.ipynb ├── L1_filtering_and_detrending.ipynb ├── L1_surrogates.ipynb ├── L1_time_semanics.ipynb ├── L1_uniform_time_sampling.ipynb ├── L1_working_with_age_ensembles.ipynb ├── L2_correlations.ipynb ├── L2_outlier_detection.ipynb ├── L2_principal_component_analysis.ipynb ├── L2_singular_spectrum_analysis.ipynb ├── L2_spectral_analysis.ipynb ├── L2_tracing_transformations.ipynb └── L2_wavelet_analysis.ipynb /.github/workflows/pr-tests.yml: -------------------------------------------------------------------------------- 1 | name: PR Tests 2 | on: 3 | pull_request: 4 | branches: [ main ] 5 | workflow_dispatch: 6 | 7 | jobs: 8 | test: 9 | runs-on: ubuntu-latest 10 | defaults: 11 | run: 12 | shell: bash -l {0} 13 | steps: 14 | - uses: actions/checkout@v3 15 | - uses: conda-incubator/setup-miniconda@v2 16 | with: 17 | activate-environment: pyleo 18 | environment-file: environment.yml 19 | auto-activate-base: false 20 | - name: Install test dependencies 21 | run: | 22 | conda activate pyleo 23 | pip install pytest-xdist nbmake 24 | conda list 25 | - name: Test notebooks 26 | run: | 27 | conda activate pyleo 28 | pytest --nbmake -n=auto --nbmake-timeout=3600 notebooks/*ipynb 29 | -------------------------------------------------------------------------------- /.github/workflows/publish_jupyterbook.yml: -------------------------------------------------------------------------------- 1 | name: Publish JupyterBook to GitHub Pages 2 | 3 | on: 4 | workflow_run: 5 | workflows: ["Sync JupyterBook"] # Must match the exact name of your sync workflow 6 | types: [completed] 7 | workflow_dispatch: 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | # 1) Check out the jupyterbook branch to build from 15 | - uses: actions/checkout@v2 16 | with: 17 | ref: jupyterbook 18 | 19 | # 2) Set up Python 20 | - name: Set up Python 21 | uses: actions/setup-python@v1 22 | with: 23 | python-version: 3.9 24 | 25 | # 3) Install Python dependencies 26 | - name: Install Python dependencies 27 | run: | 28 | sudo apt-get update 29 | sudo apt-get install -y python3-pip 30 | pip install jupyter-book ghp-import pyleoclim 31 | # This ensures ~/.local/bin is on PATH: 32 | PATH="${PATH}:${HOME}/.local/bin" 33 | 34 | # 4) (Optional) Build the TOC (only needed if you rely on jupyter-book toc .) 35 | - name: Build book TOC file 36 | run: | 37 | jupyter-book toc . 38 | 39 | # 5) Build book HTML 40 | - name: Build book HTML 41 | run: | 42 | jupyter-book build . 43 | 44 | # 6) Deploy _build/html to gh-pages 45 | - name: Push _build/html to gh-pages 46 | run: | 47 | # Fix any permissions issues 48 | sudo chown -R $(whoami):$(whoami) . 49 | # Configure git 50 | git config --global user.email "${{ github.actor }}@users.noreply.github.com" 51 | git config --global user.name "${{ github.actor }}" 52 | git remote set-url origin "https://$GITHUB_ACTOR:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY" 53 | # Use ghp-import to push the HTML build to gh-pages branch 54 | ghp-import ./_build/html -f -p -n 55 | -------------------------------------------------------------------------------- /.github/workflows/sync_jupyterbook.yml: -------------------------------------------------------------------------------- 1 | name: Sync JupyterBook 2 | on: 3 | push: 4 | branches: [ main ] 5 | workflow_dispatch: 6 | 7 | jobs: 8 | sync-jupyterbook: 9 | runs-on: ubuntu-latest 10 | permissions: 11 | contents: write 12 | defaults: 13 | run: 14 | shell: bash -l {0} 15 | steps: 16 | - uses: actions/checkout@v4 17 | with: 18 | fetch-depth: 0 19 | - uses: conda-incubator/setup-miniconda@v2 20 | with: 21 | activate-environment: pyleo 22 | environment-file: environment.yml 23 | auto-activate-base: false 24 | - name: Install dependencies 25 | run: | 26 | conda activate pyleo 27 | pip install pyyaml 28 | - name: Configure Git 29 | run: | 30 | git config --global user.name 'github-actions[bot]' 31 | git config --global user.email 'github-actions[bot]@users.noreply.github.com' 32 | - name: Copy Files and Update TOC 33 | env: 34 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 35 | run: | 36 | git checkout jupyterbook 37 | rm -rf notebooks/ data/ 38 | git checkout main -- notebooks/ data/ 39 | 40 | cat << 'EOF' > update_toc.py 41 | import yaml 42 | import glob 43 | import os 44 | 45 | toc = { 46 | 'format': 'jb-book', 47 | 'root': 'intro.md', 48 | 'parts': [ 49 | { 50 | 'caption': 'Getting Started', 51 | 'chapters': [] 52 | }, 53 | { 54 | 'caption': 'Manipulating Data and Graphics', 55 | 'chapters': [] 56 | }, 57 | { 58 | 'caption': 'Data Analysis with Pyleoclim', 59 | 'chapters': [] 60 | } 61 | ] 62 | } 63 | 64 | notebooks = glob.glob('notebooks/L[0-2]*.ipynb') 65 | notebooks.sort() 66 | 67 | level_map = {'L0': 0, 'L1': 1, 'L2': 2} 68 | 69 | for nb in notebooks: 70 | level = os.path.basename(nb)[:2] 71 | if level in level_map: 72 | part_index = level_map[level] 73 | toc['parts'][part_index]['chapters'].append({'file': nb}) 74 | 75 | with open('_toc.yml', 'w') as f: 76 | yaml.dump(toc, f, sort_keys=False) 77 | EOF 78 | 79 | conda activate pyleo 80 | python update_toc.py 81 | 82 | git add notebooks/ data/ _toc.yml 83 | if ! git diff --staged --quiet; then 84 | git commit -m "Auto-sync notebooks, data, and update TOC" 85 | git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}" 86 | git push origin jupyterbook 87 | fi -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | .jupyter 80 | .virtual_documents 81 | 82 | # IPython 83 | profile_default/ 84 | ipython_config.py 85 | 86 | # pyenv 87 | .python-version 88 | 89 | # pipenv 90 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 91 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 92 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 93 | # install all needed dependencies. 94 | #Pipfile.lock 95 | 96 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 97 | __pypackages__/ 98 | 99 | # Celery stuff 100 | celerybeat-schedule 101 | celerybeat.pid 102 | 103 | # SageMath parsed files 104 | *.sage.py 105 | 106 | # Environments 107 | .env 108 | .venv 109 | env/ 110 | venv/ 111 | ENV/ 112 | env.bak/ 113 | venv.bak/ 114 | 115 | # Spyder project settings 116 | .spyderproject 117 | .spyproject 118 | 119 | # Rope project settings 120 | .ropeproject 121 | 122 | # mkdocs documentation 123 | /site 124 | 125 | # mypy 126 | .mypy_cache/ 127 | .dmypy.json 128 | dmypy.json 129 | 130 | # Pyre type checker 131 | .pyre/ 132 | 133 | # Large data file types 134 | *.nc 135 | .DS_Store 136 | notebooks/.jupyter/desktop-workspaces/default-37a8.jupyterlab-workspace 137 | notebooks/.jupyter/desktop-workspaces/auto-3-a57e.jupyterlab-workspace 138 | notebooks/.jupyter/desktop-workspaces/default-37a8.jupyterlab-workspace 139 | notebooks/.jupyter/desktop-workspaces/default-37a8.jupyterlab-workspace 140 | notebooks/.jupyter/desktop-workspaces/default-37a8.jupyterlab-workspace 141 | *.jupyterlab-workspace 142 | *.jupyterlab-workspace 143 | -------------------------------------------------------------------------------- /.idea/csv-plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 29 | 30 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 13 | 14 | 16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 57 | 58 | 59 | 60 | 61 | 62 | 1660235325810 63 | 80 | 81 | 82 | 83 | 85 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- 1 | cff-version: 1.1.0.0 2 | message: "If you use this software, please cite it as below." 3 | authors: 4 | - family-names: "Khider" 5 | given-names: "Deborah" 6 | orcid: "https://orcid.org/0000-0001-7501-8430" 7 | - family-names: "Emile-Geay" 8 | given-names: "Julien" 9 | orcid: "https://orcid.org/0000-0001-5920-4751" 10 | - family-names: "James" 11 | given-names: "Alexander" 12 | orcid: "https://orcid.org/0000-0001-8561-3188" 13 | - family-names: "Landers" 14 | given-names: "Jordan" 15 | orcid: "https://orcid.org/0000-0001-9772-7617" 16 | - family-names: "Zhu" 17 | given-names: "Feng" 18 | orcid: "https://orcid.org/0000-0002-9969-2953" 19 | - family-names: "Lee" 20 | given-names: "Pin-Tzu" 21 | orchid: "https://orcid.org/0009-0001-7891-1715" 22 | title: "PyleoTutorials: A gentle introduction to the Pyleoclim package." 23 | version: v1.1.0 24 | doi: 10.5281/zenodo.8291177 25 | date-released: 2025-01-31 26 | url: "https://github.com/LinkedEarth/PyleoTutorials" 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/LinkedEarth/PyleoTutorials/HEAD) 2 | [![PyPI version](https://badge.fury.io/py/pyleoclim.svg)](https://badge.fury.io/py/pyleoclim) 3 | [![license](https://img.shields.io/github/license/linkedearth/PyleoTutorials.svg)]() 4 | [![NSF-2126510](https://img.shields.io/badge/NSF-2126510-blue.svg)](https://nsf.gov/awardsearch/showAward?AWD_ID=2126510) 5 | [![DOI](https://zenodo.org/badge/509538632.svg)](https://zenodo.org/badge/latestdoi/509538632) 6 | 7 | # PyleoTutorials: A Gentle Introduction to the Pyleoclim Package. 8 | 9 | A collection of science-driven tutorials for using the [Pyleoclim](https://github.com/LinkedEarth/Pyleoclim_util) Python package. Contributed by: 10 | [Deborah Khider](https://orcid.org/0000-0001-7501-8430), [Julien Emile-Geay](https://orcid.org/0000-0001-5920-4751), [Alexander James](https://orcid.org/0000-0001-8561-3188), [Feng Zhu](https://orcid.org/0000-0002-9969-2953), [Jordan Landers](0000-0001-9772-7617), [Pin-Tzu Lee](https://orcid.org/0009-0001-7891-1715) 11 | 12 | 13 | ## Contents 14 | The _notebooks_ folder contains [Jupyter Notebooks](https://jupyter.org) that illustrate the main classes of the [Pyleoclim user interface](https://pyleoclim-util.readthedocs.io/en/master/core/api.html), using data hosted either in the Cloud or in the _data_ directory. 15 | 16 | The notebooks are organized in three levels: 17 | - **Level 0**: basic tutorials to understand the main classes and their uses, requiring minimal knowledge of Python 18 | - **Level 1**: more advanced tutorials involving customization and more knowledge of Python 19 | - **Level 2**: tutorials involving more advanced data analysis techniques, requiring some domain knowledge to apply and interpret properly. 20 | 21 | ## Read-only 22 | 23 | You may start by browsing this repository to consult its notebooks, which are rendered by the Github website. If you like what you see, we encourage you to experiment with them, as per the following section. 24 | 25 | ## How to run these notebooks 26 | 27 | ### Using myBinder 28 | 29 | [myBinder](https://mybinder.org) allows you to run the notebooks in a no-install cloud container. This is the best solution if you just want to get you feet wet with the code. Simply click on the "launch Binder" badge at the top of the page. The notebooks will be automatically pulled into your workspace. Beware: it takes a few minutes for the BinderHub to be spun up the first time around. After repeated uses (not just by you) it becomes much faster, but the first time you launch might need to coincide with a coffee break, a run around the nearest park, or catching up on the literature. 30 | 31 | 32 | ### Local installation 33 | If it's love at first sight and you want to take Pyleoclim home with you, you may use the `environment.yml` file with `conda` to install the required packages within an [anaconda](https://anaconda.org) or [miniconda](https://docs.conda.io/en/latest/miniconda.html) installation. That is, open a terminal, navigate to a folder containing `environment.yml` , then run the command : 34 | 35 | `conda env create -f environment.yml` 36 | 37 | This will install all the required packages and their dependencies. It may take a few minutes the first time, but after that you will have the power of Pyleoclim at your local disposal. 38 | 39 | If you are new to conda, just know that it is an environment manager for Python. What is an environment, you may ask? Think of it as a piece on your computer where all the Python libraries that you need for a specific application live in perfect harmony. To access this paradise, you need to activate the environment. If you used the `environment.yml` file: 40 | 41 | `conda activate pyleo` 42 | 43 | ### Using the LinkedEarth JupyterHub 44 | 45 | **Coming Soon (September 2022)** 46 | 47 | If you have access to a decent internet connection and do not want to install Python and Pyleoclim on your machine, you can also run these (and your own) notebooks on the [LinkedEarth JupyterHub](https://linkedearth.2i2c.cloud/). To do so, please contact [LinkedEarth](mailto:linkedearth@gmail.com) to obtain an account, which may take 1-2 business days to review. Use of the LinkedEarth Hub implies that you subscribe to the LinkedEarth [code of conduct](https://github.com/LinkedEarth/governance/blob/main/code-of-conduct.md) which pretty much amounts to being a decent human being. This is a good solution if you intend on using Pyleoclim in your own work, particularly for [paleoclimate data-model comparisons](https://medium.com/cyberpaleo/announcing-the-next-linkedearth-chapter-paleocube-790778b6ffb0). 48 | 49 | If you choose this route, know that the PyleoTutorials notebooks will not be directly pulled to the hub (unlike the myBinder solution). You will first need to download, clone or fork this repository onto your local machine. You can do so by clicking on the green 'code' button at the top (right above the list of files in the repository): 50 | 51 | image 52 | 53 | To learn more about cloning/forking, see [this post](https://www.theserverside.com/answer/Git-fork-vs-clone-Whats-the-difference). Downloading is just a one time action. 54 | 55 | Once the notebooks and data are on your local machine, you can upload them to your private instance on the hub using [this tutorial](https://foundations.projectpythia.org/foundations/jupyterlab.html). 56 | 57 | Please note that the notebooks use specific paths that you will either need to correct in the cells or reproduce on the hub (i.e., the notebooks and data folders). 58 | 59 | Whichever path you choose, happy Pyleocliming, and please consider joining our user community on [Discourse](https://discourse.linked.earth). It is the best place to provide feedback on any of this, and make requests for new tutorials. 60 | 61 | ## Acknowledgements 62 | This work was supported by NSF Grant [ICER 2126510](https://nsf.gov/awardsearch/showAward?AWD_ID=2126510&HistoricalAwards=false). 63 | -------------------------------------------------------------------------------- /data/Crystal.McCabe-Glynn.2013.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Crystal.McCabe-Glynn.2013.lpd -------------------------------------------------------------------------------- /data/EPICA_Dome_C_CO2.csv: -------------------------------------------------------------------------------- 1 | ###,Series metadata 2 | written by,Pyleoclim 1.0.0b0 3 | time_unit,ky BP 4 | time_name,Age 5 | value_unit,ppm 6 | value_name,$CO_2$ 7 | label,EPICA Dome C CO2 8 | archiveType,GlacierIce 9 | importedFrom,https://www.ncei.noaa.gov/pub/data/paleo/icecore/antarctica/antarctica2015co2composite.txt 10 | log, 11 | ###,end metadata 12 | Age [ky BP],$CO_2$ [ppm] 13 | -0.05103,368.02 14 | -0.048,361.78 15 | -0.04628,359.65 16 | -0.04441,357.11 17 | -0.04308,353.95 18 | -0.04231,353.72 19 | -0.04113,352.42 20 | -0.03997,350.81 21 | -0.0394099999999999,349.8 22 | -0.03897,349.28 23 | -0.03807,347.6 24 | -0.03721,345.44 25 | -0.03662,344.72 26 | -0.03614,343.97 27 | -0.03576,343.11 28 | -0.03492,342.05 29 | -0.03308,341.33 30 | -0.03303,339.46 31 | -0.02914,334.85 32 | -0.0268,335.55 33 | -0.02667,332.37 34 | -0.02557,332.37 35 | -0.02413,331.55 36 | -0.02209,328.42 37 | -0.02204,330.35 38 | -0.02087,326.31 39 | -0.02066,326.65 40 | -0.02064,324.91 41 | -0.02022,324.56 42 | -0.01942,324.71 43 | -0.01898,325.08 44 | -0.01881,324.09 45 | -0.0185399999999999,320.38 46 | -0.01679,320.49 47 | -0.01655,322.17 48 | -0.01587,320.98 49 | -0.0153,319.2 50 | -0.01523,319.89 51 | -0.01356,319.12 52 | -0.0132,319.07 53 | -0.01262,318.61 54 | -0.0125399999999999,317.45 55 | -0.0124,319.14 56 | -0.01232,317.52 57 | -0.01172,316.59 58 | -0.01057,318.21 59 | -0.01031,313.09 60 | -0.0090899999999999,311.98 61 | -0.00856,316.33 62 | -0.0081,316.1 63 | -0.00787,314.57 64 | -0.00726,315.27 65 | -0.0072,316.33 66 | -0.0070999999999999,314.44 67 | -0.00616,315.34 68 | -0.0048,314.71 69 | -0.00379,313.17 70 | -0.0037099999999999,312.8 71 | -0.00356,312.22 72 | -0.0023799999999999,312.18 73 | -0.00025,312.0 74 | 0.00033,313.66 75 | 0.00123,309.69 76 | 0.00229,311.57 77 | 0.0033399999999999,310.36 78 | 0.00337,312.87 79 | 0.00438,312.56 80 | 0.00444,311.97 81 | 0.00461,311.81 82 | 0.00504,310.44 83 | 0.00524,311.28 84 | 0.00549,310.22 85 | 0.00643,312.36 86 | 0.00779,311.88 87 | 0.00796,312.84 88 | 0.00822,312.39 89 | 0.00916,311.8 90 | 0.00925,307.74 91 | 0.0100299999999999,309.8 92 | 0.01041,310.95 93 | 0.01078,311.21 94 | 0.01103,310.46 95 | 0.01184,308.48 96 | 0.0118699999999999,311.94 97 | 0.01213,311.52 98 | 0.01223,312.33 99 | 0.01314,307.41 100 | 0.01413,309.34 101 | 0.0142899999999999,307.26 102 | 0.01494,306.32 103 | 0.01612,309.63 104 | 0.01641,307.08 105 | 0.01722,305.94 106 | 0.01746,308.28 107 | 0.01771,308.26 108 | 0.01917,305.74 109 | 0.02061,305.38 110 | 0.02126,305.78 111 | 0.02146,305.71 112 | 0.02184,305.67 113 | 0.0222,308.02 114 | 0.02469,304.97 115 | 0.02525,304.72 116 | 0.02716,306.2 117 | 0.0274899999999999,303.18 118 | 0.0302899999999999,301.88 119 | 0.03133,304.61 120 | 0.03213,303.85 121 | 0.03421,301.92 122 | 0.03561,300.7 123 | 0.03748,301.3 124 | 0.03871,299.26 125 | 0.0389,297.73 126 | 0.03928,298.11 127 | 0.04024,297.87 128 | 0.0414799999999999,301.5 129 | 0.04423,299.63 130 | 0.04446,297.33 131 | 0.0446499999999999,299.02 132 | 0.04609,295.99 133 | 0.0482999999999999,295.61 134 | 0.04982,294.22 135 | 0.05106,297.05 136 | 0.05134,295.28 137 | 0.05624,293.81 138 | 0.05634,293.17 139 | 0.05694,295.32 140 | 0.05712,294.86 141 | 0.05761,295.17 142 | 0.06013,290.92 143 | 0.06099,292.34 144 | 0.06261,294.34 145 | 0.0644,288.12 146 | 0.0658199999999999,289.23 147 | 0.0662099999999999,289.76 148 | 0.06708,292.46 149 | 0.07005,287.77 150 | 0.07309,289.33 151 | 0.07626,291.56 152 | 0.07717,286.66 153 | 0.0799599999999999,286.33 154 | 0.08034,287.99 155 | 0.08159,289.54 156 | 0.08227,287.99 157 | 0.08326,285.05 158 | 0.08587,286.65 159 | 0.08702,285.35 160 | 0.08817,287.17 161 | 0.0911599999999999,286.63 162 | 0.0933799999999999,283.16 163 | 0.09528,285.57 164 | 0.09629,288.05 165 | 0.09889,285.47 166 | 0.09917,288.79 167 | 0.09974,284.0 168 | 0.10268,286.84 169 | 0.1041,283.62 170 | 0.10535,283.18 171 | 0.10554,283.53 172 | 0.10671,281.58 173 | 0.10917,283.65 174 | 0.1133,284.15 175 | 0.11682,283.82 176 | 0.11713,285.09 177 | 0.12308,285.91 178 | 0.12526,281.36 179 | 0.13634,284.43 180 | 0.15066,282.8 181 | 0.15353,280.4 182 | 0.15406,282.3 183 | 0.1559,281.62 184 | 0.1697,273.07 185 | 0.17051,280.24 186 | 0.17654,277.86 187 | 0.1863,276.4 188 | 0.18712,277.16 189 | 0.19787,278.0 190 | 0.19807,276.46 191 | 0.20088,277.6 192 | 0.20874,276.81 193 | 0.21613,278.31 194 | 0.22699,277.01 195 | 0.2271399999999999,278.27 196 | 0.25593,277.36 197 | 0.26026,276.32 198 | 0.26811,276.66 199 | 0.3009,278.02 200 | 0.31019,276.69 201 | 0.3213999999999999,273.78 202 | 0.34054,271.11 203 | 0.34658,275.07 204 | 0.35901,279.36 205 | 0.36182,281.11 206 | 0.37699,282.57 207 | 0.39014,281.83 208 | 0.40035,283.53 209 | 0.4203199999999999,283.95 210 | 0.44847,283.12 211 | 0.4806,280.31 212 | 0.50084,282.23 213 | 0.5212,279.73 214 | 0.53914,279.7 215 | 0.55967,280.91 216 | 0.60115,278.36 217 | 0.61988,284.07 218 | 0.64255,281.58 219 | 0.6718,278.43 220 | 0.69049,282.2 221 | 0.6987300000000001,282.41 222 | 0.73905,283.69 223 | 0.75019,284.54 224 | 0.7840199999999999,283.97 225 | 0.80371,284.51 226 | 0.83439,282.84 227 | 0.8505900000000001,283.09 228 | 0.8797999999999999,282.84 229 | 0.90082,280.97 230 | 0.90992,280.92 231 | 0.93073,280.06 232 | 0.93242,279.8 233 | 0.96735,278.74 234 | 0.99235,277.41 235 | 1.0358699999999998,280.11 236 | 1.07459,279.42 237 | 1.1276700000000002,278.62 238 | 1.1569,279.72 239 | 1.1877,279.29 240 | 1.21957,279.99 241 | 1.24875,277.1 242 | 1.2808199999999998,278.45 243 | 1.313,279.59 244 | 1.33548,277.87 245 | 1.36759,276.2 246 | 1.39253,278.46 247 | 1.3983800000000002,276.56 248 | 1.43204,276.79 249 | 1.4618699999999998,277.11 250 | 1.5130599999999998,280.0 251 | 1.54364,279.13 252 | 1.56577,277.25 253 | 1.59267,277.8 254 | 1.63245,281.69 255 | 1.6544,280.91 256 | 1.67556,280.24 257 | 1.6839000000000002,278.31 258 | 1.7094,280.25 259 | 1.77547,277.56 260 | 1.79647,278.07 261 | 1.814,278.1 262 | 1.846,277.5 263 | 1.894,277.4 264 | 1.92,277.9 265 | 1.949,276.7 266 | 1.99971,278.0 267 | 2.09336,276.9 268 | 2.23424,276.7 269 | 2.26555,276.7 270 | 2.41432,277.6 271 | 2.52612,277.9 272 | 2.62802,273.9 273 | 2.70848,278.9 274 | 2.8017600000000003,275.3 275 | 2.90455,274.7 276 | 2.94882,276.3 277 | 3.0566,274.6 278 | 3.25573,276.3 279 | 3.28366,273.1 280 | 3.43112,274.0 281 | 3.52829,275.0 282 | 3.64446,273.4 283 | 3.69341,273.0 284 | 3.80686,271.5 285 | 3.85617,275.4 286 | 3.96895,274.9 287 | 4.10867,271.7 288 | 4.20584,271.6 289 | 4.27508,272.8 290 | 4.34282,271.5 291 | 4.49436,271.1 292 | 4.59282,269.1 293 | 4.64746,269.8 294 | 4.773,271.5 295 | 4.9212,270.7 296 | 4.98158,269.3 297 | 5.08679,268.6 298 | 5.21857,269.8 299 | 5.31118,267.6 300 | 5.35755,265.3 301 | 5.53329,265.2 302 | 5.581300000000001,267.6 303 | 5.75761,265.9 304 | 5.85226,265.5 305 | 5.93409,260.7 306 | 5.99938,266.7 307 | 6.089810000000001,265.5 308 | 6.30196,263.2 309 | 6.33721,262.7 310 | 6.40124,261.2 311 | 6.57229,261.1 312 | 6.68255,259.4 313 | 6.76965,262.1 314 | 6.880310000000001,262.9 315 | 6.97008,258.1 316 | 7.038270000000001,257.6 317 | 7.18807,262.3 318 | 7.27401,263.0 319 | 7.40532,260.7 320 | 7.49787,258.4 321 | 7.66137,260.1 322 | 7.71959,260.4 323 | 7.860180000000001,259.7 324 | 7.926369999999999,259.2 325 | 7.97585,260.8 326 | 8.11628,259.6 327 | 8.194799999999999,259.3 328 | 8.35188,258.3 329 | 8.45968,261.3 330 | 8.54658,260.7 331 | 8.71068,261.8 332 | 8.78128,259.0 333 | 8.911850000000001,260.9 334 | 8.992989999999999,260.4 335 | 9.06017,259.3 336 | 9.14301,262.0 337 | 9.29531,263.7 338 | 9.36112,263.8 339 | 9.4367,265.2 340 | 9.51806,260.6 341 | 9.52444,260.9 342 | 9.55586,263.0 343 | 9.57327,263.8 344 | 9.90104,264.4 345 | 9.99261,264.2 346 | 10.1345,264.0 347 | 10.192950000000002,263.4 348 | 10.29955,265.7 349 | 10.36656,264.9 350 | 10.50555,267.5 351 | 10.68048,266.9 352 | 10.80181,266.0 353 | 10.83574,265.1 354 | 10.95448,267.6 355 | 11.08962,264.8 356 | 11.16106,264.8 357 | 11.18587,265.0 358 | 11.20058,265.3 359 | 11.25657,264.4 360 | 11.31698,264.1 361 | 11.33937,264.81 362 | 11.38316,264.84 363 | 11.39986,268.16 364 | 11.41745,264.48 365 | 11.43593,270.14 366 | 11.45306,268.87 367 | 11.4728,269.1 368 | 11.49045,267.17 369 | 11.50723,267.66 370 | 11.52393,269.51 371 | 11.5436,266.9 372 | 11.55961,262.74 373 | 11.57641,267.09 374 | 11.59224,260.7 375 | 11.61131,261.3 376 | 11.62897,266.22 377 | 11.64792,257.13 378 | 11.66454,247.55 379 | 11.68282,254.62 380 | 11.70144,253.99 381 | 11.71972,256.04 382 | 11.74065,255.89 383 | 11.75921,258.74 384 | 11.78072,258.25 385 | 11.802790000000002,258.53 386 | 11.8205,257.17 387 | 11.84333,254.31 388 | 11.86312,253.63 389 | 11.88317,251.56 390 | 11.90491,255.9 391 | 11.92696,258.57 392 | 11.94809,248.92 393 | 11.96955,253.99 394 | 11.99069,255.39 395 | 12.0159,247.85 396 | 12.03732,248.41 397 | 12.0588,253.1 398 | 12.07985,251.03 399 | 12.10525,255.66 400 | 12.12458,253.02 401 | 12.1465,251.14 402 | 12.16848,251.42 403 | 12.19041,250.97 404 | 12.21134,249.65 405 | 12.23292,249.23 406 | 12.25648,248.95 407 | 12.28077,249.38 408 | 12.30104,248.92 409 | 12.32128,250.73 410 | 12.34312,246.97 411 | 12.36528,244.31 412 | 12.38831,243.0 413 | 12.40938,246.4 414 | 12.43193,247.67 415 | 12.45482,245.83 416 | 12.47539,246.18 417 | 12.49584,244.42 418 | 12.52135,246.74 419 | 12.54372,249.92 420 | 12.56462,244.27 421 | 12.5866,247.02 422 | 12.60764,248.09 423 | 12.62985,246.94 424 | 12.65364,243.95 425 | 12.6739,242.53 426 | 12.69714,244.24 427 | 12.7198,241.59 428 | 12.73991,247.3 429 | 12.76258,240.02 430 | 12.78563,241.5 431 | 12.80927,242.23 432 | 12.83015,242.15 433 | 12.852709999999998,239.35 434 | 12.87398,241.24 435 | 12.89338,239.44 436 | 12.91711,238.79 437 | 12.93923,238.18 438 | 12.95975,240.71 439 | 12.98088,237.15 440 | 13.00106,239.42 441 | 13.02192,234.68 442 | 13.04369,238.86 443 | 13.06659,237.91 444 | 13.08822,241.56 445 | 13.12845,234.82 446 | 13.17267,236.91 447 | 13.2162,239.41 448 | 13.26697,240.42 449 | 13.30415,236.86 450 | 13.4181,237.83 451 | 13.48674,240.25 452 | 13.53175,235.83 453 | 13.60081,243.86 454 | 13.64535,238.55 455 | 13.71283,241.59 456 | 13.75873,241.11 457 | 13.8272,239.08 458 | 13.87157,237.95 459 | 13.94023,240.57 460 | 14.001790000000002,235.92 461 | 14.02286,237.87 462 | 14.06009,241.27 463 | 14.08447,232.88 464 | 14.12006,236.4 465 | 14.1566,239.24 466 | 14.17955,239.36 467 | 14.20556,238.36 468 | 14.23745,236.6 469 | 14.27302,240.21 470 | 14.29872,239.04 471 | 14.30861,235.8 472 | 14.34316,242.08 473 | 14.35448,238.39 474 | 14.37499,240.33 475 | 14.4106,242.55 476 | 14.42223,242.6 477 | 14.44328,240.95 478 | 14.46358,238.61 479 | 14.49721,242.06 480 | 14.52085,241.14 481 | 14.5313,243.17 482 | 14.54166,235.83 483 | 14.55293,241.73 484 | 14.56352,239.86 485 | 14.57593,239.77 486 | 14.58619,237.97 487 | 14.59547,235.31 488 | 14.60621,237.59 489 | 14.61939,237.97 490 | 14.62999,240.1 491 | 14.6452,238.12 492 | 14.65226,234.62 493 | 14.66409,233.42 494 | 14.67512,234.34 495 | 14.68637,237.49 496 | 14.69669,228.91 497 | 14.70696,228.18 498 | 14.71812,230.53 499 | 14.73088,234.54 500 | 14.74319,231.48 501 | 14.75852,227.9 502 | 14.76341,224.64 503 | 14.77628,227.39 504 | 14.78783,227.79 505 | 14.79914,228.5 506 | 14.81061,227.58 507 | 14.82239,226.51 508 | 14.83475,228.4 509 | 14.84477,227.87 510 | 14.85753,233.17 511 | 14.86918,232.22 512 | 14.88066,227.85 513 | 14.89246,230.63 514 | 14.90421,228.72 515 | 14.91591,228.36 516 | 14.92902,228.47 517 | 14.95366,228.89 518 | 14.97648,229.79 519 | 14.98726,227.65 520 | 15.01148,228.37 521 | 15.03478,225.38 522 | 15.07253,228.99 523 | 15.09581,234.47 524 | 15.13353,229.67 525 | 15.15652,228.81 526 | 15.18111,227.84 527 | 15.21888,230.18 528 | 15.24344,228.27 529 | 15.28074,225.77 530 | 15.32094,227.64 531 | 15.34524,228.92 532 | 15.38285,225.39 533 | 15.41008,224.74 534 | 15.46293,223.27 535 | 15.5464,223.53 536 | 15.64943,222.76 537 | 15.70479,222.16 538 | 15.76768,224.86 539 | 15.84495,222.36 540 | 15.92025,223.51 541 | 15.93652,223.77 542 | 15.99549,223.72 543 | 15.99898,224.41 544 | 16.01467,222.39 545 | 16.03378,224.48 546 | 16.083,224.24 547 | 16.11414,222.41 548 | 16.15121,224.86 549 | 16.16671,226.19 550 | 16.187459999999998,221.49 551 | 16.20871,227.32 552 | 16.22296,223.24 553 | 16.24056,220.49 554 | 16.26073,218.56 555 | 16.27874,214.22 556 | 16.29696,212.84 557 | 16.31743,214.6 558 | 16.33725,212.43 559 | 16.35423,214.83 560 | 16.37489,211.21 561 | 16.39189,209.51 562 | 16.410709999999998,212.95 563 | 16.43132,211.79 564 | 16.458380000000002,217.19 565 | 16.47203,213.94 566 | 16.50993,207.95 567 | 16.55351,208.65 568 | 16.59001,208.46 569 | 16.65588,213.15 570 | 16.73353,210.25 571 | 16.797549999999998,205.53 572 | 16.86932,205.19 573 | 16.92883,202.93 574 | 16.99477,204.32 575 | 17.091849999999997,202.1 576 | 17.163700000000002,198.63 577 | 17.23625,198.29 578 | 17.2879,195.88 579 | 17.31187,194.65 580 | 17.3605,190.5 581 | 17.3853,193.02 582 | 17.41003,191.89 583 | 17.43497,190.76 584 | 17.460990000000002,193.0 585 | 17.48529,191.48 586 | 17.51087,191.59 587 | 17.53459,192.37 588 | 17.56146,192.62 589 | 17.58625,196.96 590 | 17.612,195.79 591 | 17.637880000000003,193.21 592 | 17.66506,194.38 593 | 17.691209999999998,191.52 594 | 17.71705,189.52 595 | 17.74375,190.41 596 | 17.76971,191.7 597 | 17.79757,187.25 598 | 17.82543,191.21 599 | 17.854599999999998,189.52 600 | 17.881,190.26 601 | 17.90716,191.72 602 | 17.93599,188.54 603 | 17.96583,188.66 604 | 17.99204,188.96 605 | 18.02445,187.79 606 | 18.05009,187.73 607 | 18.0816,188.64 608 | 18.11063,188.59 609 | 18.13976,184.88 610 | 18.17316,189.01 611 | 18.201790000000003,185.65 612 | 18.23218,188.88 613 | 18.26468,188.52 614 | 18.295810000000003,189.03 615 | 18.32439,187.12 616 | 18.36035,188.73 617 | 18.39116,188.21 618 | 18.42243,188.47 619 | 18.45783,187.45 620 | 18.48659,187.09 621 | 18.51999,187.67 622 | 18.58294,188.57 623 | 18.6774,193.9 624 | 18.74705,191.27 625 | 18.80364,192.97 626 | 18.83515,188.44 627 | 18.86691,188.5 628 | 18.99382,192.71 629 | 19.15279,191.09 630 | 19.28216,191.58 631 | 19.44273,191.52 632 | 19.568150000000003,188.95 633 | 19.62949,191.42 634 | 19.79119,193.6 635 | 19.88388,196.06 636 | 20.0187,193.72 637 | 20.21331,190.47 638 | 20.4076,189.99 639 | 20.5368,193.93 640 | 20.666490000000003,187.76 641 | 20.82839,192.66 642 | 20.96443,190.87 643 | 21.06769,188.4 644 | 21.2127,190.05 645 | 21.34518,187.24 646 | 21.56285,185.23 647 | 21.79059,187.96 648 | 21.91363,190.78 649 | 22.05559,187.38 650 | 22.23089,191.27 651 | 22.2922,187.22 652 | 22.3476,187.02 653 | 22.5501,184.68 654 | 22.6041,185.21 655 | 22.6508,188.49 656 | 22.7493,190.01 657 | 22.8336,186.13 658 | 22.994,189.4 659 | 23.0138,190.53 660 | 23.1073,190.08 661 | 23.185,188.6 662 | 23.2767,197.67 663 | 23.358400000000003,193.53 664 | 23.4452,186.78 665 | 23.6005,187.99 666 | 23.8738,183.13 667 | 24.0777,184.68 668 | 24.2698,186.73 669 | 24.6436,180.57 670 | 25.1636,180.69 671 | 25.3511,182.66 672 | 25.5436,183.38 673 | 25.786,186.54 674 | 26.016,184.52 675 | 26.2545,184.57 676 | 26.315,183.77 677 | 26.4607,186.01 678 | 26.5371,185.51 679 | 26.7037,185.44 680 | 26.8578,186.43 681 | 26.9549,188.08 682 | 27.042,187.39 683 | 27.0848,186.27 684 | 27.1702,194.93 685 | 27.2801,190.06 686 | 27.4419,191.95 687 | 27.5028,191.23 688 | 27.5497,191.53 689 | 27.5864,191.95 690 | 27.6613,191.46 691 | 27.687,192.71 692 | 27.7141,190.61 693 | 27.7186,189.3 694 | 27.8207,187.59 695 | 27.8664,190.58 696 | 27.885,189.28 697 | 27.9271,188.99 698 | 27.9732,189.29 699 | 28.0973,189.96 700 | 28.2141,191.82 701 | 28.2716,191.59 702 | 28.3697,192.63 703 | 28.4139,189.16 704 | 28.4269,189.65 705 | 28.5774,193.1 706 | 28.6264,192.82 707 | 28.7243,193.8 708 | 28.841900000000003,193.89 709 | 28.9027,192.69 710 | 28.9486,193.26 711 | 29.0089,192.87 712 | 29.1507,192.26 713 | 29.2053,188.1 714 | 29.2496,192.39 715 | 29.3239,191.01 716 | 29.3661,189.83 717 | 29.4102,189.21 718 | 29.6092,189.24 719 | 29.6812,189.77 720 | 29.7428,191.28 721 | 29.8378,190.97 722 | 29.9521,191.38 723 | 29.999,191.57 724 | 30.1015,188.25 725 | 30.1817,188.48 726 | 30.2779,186.52 727 | 30.3127,185.99 728 | 30.4005,184.3 729 | 30.5288,182.94 730 | 30.713,187.14 731 | 30.7757,190.33 732 | 31.1052,188.0 733 | 31.3564,188.48 734 | 31.5241,189.95 735 | 31.7921,193.71 736 | 31.8184,192.93 737 | 31.9339,192.51 738 | 32.026900000000005,193.33 739 | 32.0796,193.91 740 | 32.1475,196.42 741 | 32.1506,196.91 742 | 32.307900000000004,192.47 743 | 32.361200000000004,195.25 744 | 32.4348,194.11 745 | 32.5111,194.61 746 | 32.5946,194.43 747 | 32.6778,195.08 748 | 32.7141,195.94 749 | 32.8131,199.3 750 | 32.880900000000004,196.7 751 | 33.009,196.33 752 | 33.148300000000006,197.65 753 | 33.4175,196.9 754 | 33.4914,197.13 755 | 33.5553,197.8 756 | 33.7581,200.03 757 | 33.841,195.63 758 | 33.8857,195.27 759 | 33.9075,194.46 760 | 33.9259,194.47 761 | 33.957,196.47 762 | 33.9915,195.41 763 | 34.0642,195.93 764 | 34.1903,194.89 765 | 34.250800000000005,195.79 766 | 34.3128,196.27 767 | 34.3344,196.2 768 | 34.5569,199.65 769 | 34.602599999999995,199.49 770 | 34.62,200.29 771 | 34.647800000000004,198.89 772 | 34.7106,197.16 773 | 34.8256,202.8 774 | 34.866800000000005,203.09 775 | 35.0896,198.78 776 | 35.165800000000004,203.6 777 | 35.281699999999994,205.38 778 | 35.337,204.47 779 | 35.3594,203.62 780 | 35.383,201.36 781 | 35.445800000000006,200.3 782 | 35.4971,201.06 783 | 35.5085,202.04 784 | 35.5307,201.89 785 | 35.568,201.83 786 | 35.6725,201.81 787 | 35.7016,200.5 788 | 35.8546,203.29 789 | 35.9483,198.8 790 | 36.0865,204.12 791 | 36.1731,201.78 792 | 36.2618,200.09 793 | 36.5063,198.96 794 | 36.591800000000006,205.1 795 | 36.6696,203.77 796 | 36.7128,203.75 797 | 36.8202,202.76 798 | 36.939800000000005,203.51 799 | 37.0234,206.36 800 | 37.1186,210.16 801 | 37.1432,207.35 802 | 37.2965,208.25 803 | 37.302,209.66 804 | 37.3381,206.59 805 | 37.431,212.51 806 | 37.4613,209.84 807 | 37.6186,214.3 808 | 37.6475,212.14 809 | 37.7772,212.09 810 | 37.895,214.21 811 | 38.0003,211.21 812 | 38.0885,214.36 813 | 38.1656,208.34 814 | 38.1924,206.52 815 | 38.2842,207.41 816 | 38.3592,208.0 817 | 38.4128,210.79 818 | 38.4729,207.23 819 | 38.5332,210.08 820 | 38.5736,208.23 821 | 38.6218,204.79 822 | 38.6708,204.46 823 | 38.7234,206.54 824 | 38.8126,206.09 825 | 38.8747,205.65 826 | 38.9556,205.99 827 | 38.9768,202.34 828 | 39.0536,204.28 829 | 39.1205,207.32 830 | 39.2657,208.69 831 | 39.3032,209.5 832 | 39.3199,209.33 833 | 39.3398,207.87 834 | 39.3794,204.78 835 | 39.4029,191.53 836 | 39.4544,198.14 837 | 39.5154,200.4 838 | 39.621,195.7 839 | 39.7092,196.67 840 | 39.7571,193.58 841 | 39.885,193.87 842 | 39.9005,197.55 843 | 40.0427,192.6 844 | 40.1121,193.08 845 | 40.145300000000006,193.69 846 | 40.3084,197.9 847 | 40.48595,201.32 848 | 40.55344,201.48 849 | 40.7543,200.47 850 | 40.90739,200.97 851 | 41.1679,201.53 852 | 41.30359,204.19 853 | 41.60597,205.49 854 | 41.75921,201.12 855 | 41.90069,199.89 856 | 42.31582,200.9 857 | 42.6283,204.83 858 | 42.84987,206.35 859 | 42.96808,204.26 860 | 43.17189,203.16 861 | 43.350660000000005,201.66 862 | 43.51582,204.22 863 | 43.66116,203.18 864 | 43.80901,201.69 865 | 44.0952,204.31 866 | 44.20445,202.0 867 | 44.35047,206.22 868 | 44.4905,204.83 869 | 44.65554,212.29 870 | 44.81601,210.44 871 | 44.99616,211.49 872 | 45.14202,207.95 873 | 45.28039,213.92 874 | 45.46032,214.5 875 | 45.69606,217.51 876 | 45.87711,222.72 877 | 46.05733,221.77 878 | 46.18126,219.25 879 | 46.30855,218.35 880 | 46.6359,216.42 881 | 46.74644,214.18 882 | 46.88794,210.84 883 | 47.08628,210.27 884 | 47.314980000000006,207.6 885 | 47.52436,204.26 886 | 47.71039,203.79 887 | 47.94375,205.66 888 | 48.22318,206.18 889 | 48.42786,200.98 890 | 48.98795,201.58 891 | 49.302980000000005,200.12 892 | 49.46266000000001,204.06 893 | 49.72832,203.87 894 | 50.00651,204.38 895 | 50.22055,206.74 896 | 50.52741,207.41 897 | 51.02917,207.64 898 | 51.43145,211.57 899 | 51.77953,215.08 900 | 52.08682,213.82 901 | 52.38478,219.08 902 | 52.57368,220.72 903 | 52.80074,221.15 904 | 53.10825,223.72 905 | 53.40045,223.26 906 | 53.80625,221.14 907 | 54.1566,220.37 908 | 54.38713,217.96 909 | 54.69461,213.89 910 | 55.01449,216.86 911 | 55.29346,208.19 912 | 55.55313,214.78 913 | 55.90954,210.27 914 | 56.23713,207.67 915 | 56.50358,212.44 916 | 57.21094,215.7 917 | 57.47627,217.38 918 | 57.843720000000005,223.72 919 | 58.21701,224.35 920 | 58.43332,223.15 921 | 59.10507,231.29 922 | 59.380410000000005,226.35 923 | 59.73347,223.45 924 | 60.10988,216.66 925 | 60.37306,212.87 926 | 60.51663,217.25 927 | 60.817620000000005,213.78 928 | 61.06088,207.95 929 | 61.23484,210.57 930 | 61.55411,210.9 931 | 61.90072,206.38 932 | 62.55201,202.56 933 | 62.77457,202.71 934 | 62.9609,200.15 935 | 63.55579,197.4 936 | 63.89688,197.24 937 | 64.11378,199.73 938 | 64.65729,203.7 939 | 64.86742,201.67 940 | 65.04672000000001,199.17 941 | 65.54645,208.98 942 | 65.76451,198.17 943 | 65.93723,200.59 944 | 66.43930999999999,204.39 945 | 66.95971,207.21 946 | 67.31459,201.14 947 | 67.72967999999999,203.76 948 | 68.14619,200.17 949 | 68.61999,203.43 950 | 69.08153,205.42 951 | 69.59202,211.26 952 | 70.05216,215.55 953 | 70.42725999999999,220.33 954 | 70.92886999999999,225.17 955 | 71.27917,235.02 956 | 71.69364999999999,237.56 957 | 72.09281,239.46 958 | 72.49015,232.79 959 | 72.86604,232.33 960 | 73.21932000000001,230.89 961 | 73.75096,232.74 962 | 74.22148,231.33 963 | 74.52565,241.24 964 | 75.06795,243.27 965 | 75.54513,249.52 966 | 75.85064999999999,249.94 967 | 76.24747,239.34 968 | 76.69674,238.01 969 | 77.05648,231.68 970 | 77.61592,224.92 971 | 78.08075,226.65 972 | 78.50795,224.14 973 | 78.96954,227.3 974 | 79.41036,229.26 975 | 79.87776,234.74 976 | 80.33036,230.6 977 | 80.72179,233.92 978 | 81.20694,230.33 979 | 81.71143,234.13 980 | 82.06878999999999,238.89 981 | 82.52672,240.87 982 | 82.98826,246.32 983 | 83.55411,247.1 984 | 83.9409,250.79 985 | 84.35744,243.16 986 | 84.93677000000001,238.42 987 | 85.36747,234.69 988 | 85.89069,228.76 989 | 86.49832,223.38 990 | 87.02764,221.06 991 | 87.58117999999999,223.63 992 | 88.13618,217.8 993 | 88.70105000000001,223.99 994 | 89.24472,227.38 995 | 89.69626,228.88 996 | 90.31729,229.74 997 | 90.83402,231.56 998 | 91.44503,231.12 999 | 91.94974,233.74 1000 | 92.66782,232.46 1001 | 93.42471,235.16 1002 | 93.82321,238.21 1003 | 94.56855,242.41 1004 | 95.23411,242.91 1005 | 95.92148,246.2 1006 | 96.47488,245.76 1007 | 97.27089,242.35 1008 | 97.92746,239.86 1009 | 98.58372,243.18 1010 | 99.36142,242.99 1011 | 100.07685,245.63 1012 | 100.54318,247.87 1013 | 101.32568,244.76 1014 | 101.97189,240.07 1015 | 102.76478,237.07 1016 | 103.30874,240.68 1017 | 104.27433,247.76 1018 | 104.33123,238.88 1019 | 104.96645,242.36 1020 | 105.50715,248.78 1021 | 105.98987,257.58 1022 | 106.25638,241.4 1023 | 106.36825,244.83 1024 | 106.97482,240.34 1025 | 108.40191,236.43 1026 | 109.12942,244.44 1027 | 109.83997,244.13 1028 | 110.55536,246.69 1029 | 111.8768,257.93 1030 | 112.63606,256.79 1031 | 112.94173,263.12 1032 | 113.11927,264.75 1033 | 113.67864,260.58 1034 | 114.25,267.9 1035 | 114.81539,275.07 1036 | 115.44667,276.96 1037 | 115.90858,273.16 1038 | 116.47558,273.63 1039 | 117.18555,274.03 1040 | 117.61936,274.98 1041 | 118.65827,277.72 1042 | 119.24252,267.74 1043 | 119.7155,274.59 1044 | 120.14412,268.73 1045 | 120.54291,276.82 1046 | 121.42602,279.48 1047 | 121.84197,276.61 1048 | 122.1,278.25 1049 | 122.29236,279.0 1050 | 123.01395,279.16 1051 | 123.63091,274.6 1052 | 123.95948,275.87 1053 | 124.40452,281.54 1054 | 124.81745,275.52 1055 | 125.29263,276.81 1056 | 126.0137,275.15 1057 | 126.69991,273.02 1058 | 126.96203,274.93 1059 | 127.31383,275.78 1060 | 127.50355,276.88 1061 | 128.02447999999998,276.03 1062 | 128.17267,280.72 1063 | 128.46672999999998,285.76 1064 | 128.878,271.08 1065 | 129.07804,268.44 1066 | 129.65564,260.61 1067 | 130.37303,251.84 1068 | 130.81836,250.84 1069 | 131.3222,241.13 1070 | 131.97624,232.28 1071 | 132.70988,228.0 1072 | 132.93196,224.63 1073 | 133.77581,222.74 1074 | 134.52228,212.43 1075 | 136.56555,203.74 1076 | 137.76342000000002,199.18 1077 | 138.83429999999998,198.55 1078 | 139.94997,192.75 1079 | 142.36056,196.51 1080 | 143.6513,194.59 1081 | 144.79959,196.02 1082 | 146.10824,193.59 1083 | 148.23347,195.81 1084 | 149.46615,201.78 1085 | 150.59488000000002,202.51 1086 | 151.44485,202.35 1087 | 153.77466,198.78 1088 | 154.88913,196.3 1089 | 156.30682000000002,189.38 1090 | 158.666,189.0 1091 | 159.716,185.5 1092 | 160.155,187.5 1093 | 163.858,204.3 1094 | 164.33464999999998,196.5 1095 | 166.143,191.6 1096 | 166.784,190.1 1097 | 167.91410000000002,186.7 1098 | 168.7455,183.8 1099 | 169.5144,196.6 1100 | 171.939,197.8 1101 | 174.442,197.7 1102 | 175.83335,196.0 1103 | 176.853,190.3 1104 | 177.53393,189.4 1105 | 177.7295,190.1 1106 | 179.873,207.7 1107 | 181.302,213.2 1108 | 182.196,217.7 1109 | 183.258,198.1 1110 | 184.371,199.7 1111 | 186.411,203.4 1112 | 188.437,210.7 1113 | 189.8065,231.3 1114 | 191.2545,231.4 1115 | 191.96408,220.3 1116 | 193.0745,218.0 1117 | 195.1265,226.5 1118 | 195.7995,220.0 1119 | 197.58735,226.4 1120 | 198.32745,241.2 1121 | 198.938,242.6 1122 | 201.752,250.9 1123 | 202.7445,239.1 1124 | 203.842,247.6 1125 | 205.20328,244.4 1126 | 205.57576,231.9 1127 | 205.94458,232.2 1128 | 206.35994,228.6 1129 | 206.89685,226.3 1130 | 207.2403,229.4 1131 | 207.62289,231.4 1132 | 208.10878,238.1 1133 | 208.27453,237.2 1134 | 208.82157,230.0 1135 | 209.08226,240.5 1136 | 209.44504,242.2 1137 | 209.96609,244.6 1138 | 210.17517,243.9 1139 | 210.83207,247.2 1140 | 211.05847,252.0 1141 | 211.57784,246.9 1142 | 212.07875,239.5 1143 | 212.53308,257.4 1144 | 213.33035,243.4 1145 | 214.15881,251.2 1146 | 215.08075,241.4 1147 | 215.91234,240.3 1148 | 216.30615,242.6 1149 | 216.86497,247.5 1150 | 217.41564,251.7 1151 | 217.69496,251.1 1152 | 218.20079,245.3 1153 | 219.06761,240.5 1154 | 220.93562,214.1 1155 | 221.69746,216.1 1156 | 222.53958,207.1 1157 | 223.12904,208.8 1158 | 224.27151,205.6 1159 | 226.25983,203.3 1160 | 226.84984,215.7 1161 | 227.71998,235.5 1162 | 228.43942,234.5 1163 | 228.76699,233.1 1164 | 229.57205,224.5 1165 | 231.12966,232.4 1166 | 232.19177,233.9 1167 | 232.85606,241.6 1168 | 235.99086,245.2 1169 | 236.42601,252.1 1170 | 236.8508,241.4 1171 | 237.39166,247.4 1172 | 237.90553,243.1 1173 | 238.42534,239.1 1174 | 239.00826,245.6 1175 | 239.38704,245.8 1176 | 239.73866,247.4 1177 | 240.19037,252.8 1178 | 241.33305,259.7 1179 | 241.8554,263.2 1180 | 242.68546,279.0 1181 | 243.13852,280.2 1182 | 244.12177,263.7 1183 | 244.58234,252.3 1184 | 245.05701,249.9 1185 | 245.564,236.7 1186 | 246.18881,230.4 1187 | 246.87049,219.4 1188 | 249.09987,214.7 1189 | 251.39057,200.2 1190 | 252.13226,213.9 1191 | 252.95372,195.4 1192 | 253.75668,196.7 1193 | 254.58711,195.4 1194 | 256.29866,199.0 1195 | 257.06059,201.9 1196 | 257.90807,204.0 1197 | 259.3969,203.9 1198 | 260.89424,209.6 1199 | 261.29392,205.7 1200 | 262.05458,208.9 1201 | 262.8171,214.6 1202 | 264.58376,228.1 1203 | 266.13445,199.9 1204 | 267.007,211.7 1205 | 268.25783,188.7 1206 | 268.9955,187.2 1207 | 269.94046999999995,194.2 1208 | 271.03604,198.8 1209 | 272.14964000000003,184.7 1210 | 273.16583,190.4 1211 | 274.16408,193.9 1212 | 275.15464000000003,194.1 1213 | 276.25771999999995,198.4 1214 | 277.443,193.2 1215 | 278.59090999999995,202.2 1216 | 279.61905,204.5 1217 | 280.55895000000004,211.0 1218 | 281.40074,215.3 1219 | 282.59289,223.7 1220 | 284.43468,231.3 1221 | 285.93132,228.0 1222 | 286.60996,226.4 1223 | 287.44386,231.4 1224 | 287.82005,230.4 1225 | 288.28643,231.0 1226 | 290.1845,234.9 1227 | 290.86379,220.4 1228 | 291.56287,217.1 1229 | 292.81831,207.6 1230 | 293.65074,206.0 1231 | 294.45529,206.7 1232 | 295.36423,212.7 1233 | 296.82887,213.1 1234 | 298.70462,217.1 1235 | 299.37628,224.4 1236 | 300.11587,231.0 1237 | 301.02562,236.1 1238 | 302.08419,239.0 1239 | 303.116,236.0 1240 | 304.10092,240.2 1241 | 305.09981,240.7 1242 | 305.77815000000004,250.2 1243 | 306.58112,248.6 1244 | 307.46327,244.8 1245 | 308.3257,225.8 1246 | 309.42373,227.8 1247 | 310.01098,226.2 1248 | 310.7761,233.2 1249 | 311.67003000000005,237.8 1250 | 312.59343,239.0 1251 | 313.34313000000003,241.9 1252 | 314.05185,251.6 1253 | 314.83621,256.7 1254 | 315.65752000000003,257.1 1255 | 316.45072,246.8 1256 | 317.14987,272.6 1257 | 317.93255,251.6 1258 | 318.8526,245.2 1259 | 319.82966,233.4 1260 | 320.91634000000005,255.8 1261 | 321.81745,249.2 1262 | 323.38334999999995,257.2 1263 | 324.16692,260.4 1264 | 325.00741,260.3 1265 | 325.823,260.5 1266 | 326.59109,266.2 1267 | 327.43584000000004,264.0 1268 | 328.08681,266.1 1269 | 328.77075,270.1 1270 | 329.41429,271.9 1271 | 330.05333,275.1 1272 | 331.29355,265.0 1273 | 332.14412,271.7 1274 | 332.79862,272.6 1275 | 333.50009,273.1 1276 | 333.99756,282.4 1277 | 334.3495,289.1 1278 | 334.54389000000003,288.4 1279 | 335.10231,298.6 1280 | 335.70751,278.1 1281 | 336.37753999999995,285.8 1282 | 336.86782,278.6 1283 | 337.51667,270.5 1284 | 338.2135,255.7 1285 | 338.99144,241.9 1286 | 339.98389000000003,239.6 1287 | 340.73508000000004,234.2 1288 | 342.79156,250.1 1289 | 343.92359000000005,200.7 1290 | 345.00085,205.2 1291 | 346.32091,204.8 1292 | 347.54481,211.9 1293 | 349.13909,220.3 1294 | 351.67635,221.1 1295 | 353.1746,216.2 1296 | 354.41298,209.4 1297 | 355.81777,209.2 1298 | 359.01038,193.0 1299 | 360.68384,186.1 1300 | 362.5676,185.8 1301 | 365.19023,201.2 1302 | 368.0659,206.3 1303 | 371.38587,201.9 1304 | 373.45762,199.9 1305 | 375.2046,214.7 1306 | 377.03488,224.6 1307 | 378.76024,229.6 1308 | 382.93149,227.0 1309 | 384.55745,240.0 1310 | 386.28371,239.1 1311 | 387.82482,246.8 1312 | 389.41021,245.8 1313 | 392.28725,258.1 1314 | 392.9771500000001,259.5 1315 | 394.00369,273.6 1316 | 394.9061,260.7 1317 | 398.27513,276.3 1318 | 399.92616,277.1 1319 | 400.71008,283.2 1320 | 402.14092,283.1 1321 | 402.85984,275.7 1322 | 404.3133,276.5 1323 | 405.06263,280.5 1324 | 406.5428,279.6 1325 | 407.2825,285.6 1326 | 408.81872,284.5 1327 | 409.59824,274.7 1328 | 410.4538,282.6 1329 | 411.34797,283.5 1330 | 413.2586500000001,274.9 1331 | 414.21086,264.9 1332 | 415.17959,271.6 1333 | 415.94561,276.4 1334 | 416.42532,271.7 1335 | 417.44044,273.4 1336 | 417.95678,271.8 1337 | 418.5053,274.6 1338 | 419.57578,273.7 1339 | 420.13376,271.2 1340 | 420.70176,273.8 1341 | 421.91215,268.6 1342 | 422.5326500000001,266.4 1343 | 423.2255,270.6 1344 | 424.50775,267.7 1345 | 425.13226,268.3 1346 | 425.74091,270.8 1347 | 426.23727,270.0 1348 | 426.62156,265.4 1349 | 427.15496,255.3 1350 | 427.9414,252.1 1351 | 428.8402,248.2 1352 | 429.17836,242.5 1353 | 431.02376,219.7 1354 | 432.17931,227.2 1355 | 433.8503,211.5 1356 | 434.37907,207.6 1357 | 435.93969,209.8 1358 | 437.48542,207.5 1359 | 439.06342,200.3 1360 | 440.65958,201.7 1361 | 442.23078,201.3 1362 | 443.84465,202.0 1363 | 445.33173,199.1 1364 | 447.21918,201.1 1365 | 448.45918,203.5 1366 | 449.57104,208.1 1367 | 450.64289,201.7 1368 | 451.7472800000001,201.2 1369 | 452.73584000000005,204.9 1370 | 453.77564,201.9 1371 | 454.86431,198.4 1372 | 456.00161,193.3 1373 | 457.11444,192.5 1374 | 457.74513,199.1 1375 | 458.20829,204.3 1376 | 458.79401,203.3 1377 | 459.21155,208.3 1378 | 460.2522100000001,202.4 1379 | 461.28606,195.5 1380 | 462.4141,190.7 1381 | 463.52665,194.4 1382 | 464.59947,199.9 1383 | 465.26536,205.2 1384 | 465.60173,210.0 1385 | 466.6323,208.1 1386 | 467.70664,204.4 1387 | 468.87771,203.4 1388 | 470.04013,205.5 1389 | 470.72598,206.5 1390 | 471.20079,215.5 1391 | 471.82453,218.7 1392 | 472.26307,229.2 1393 | 472.86327,232.7 1394 | 473.21782,243.7 1395 | 473.80085,243.9 1396 | 474.09236,245.6 1397 | 474.97411,241.2 1398 | 475.9252,233.1 1399 | 476.9498,232.8 1400 | 477.941,236.6 1401 | 478.89246,239.1 1402 | 479.40295,236.5 1403 | 479.77569,231.3 1404 | 480.3283,220.8 1405 | 480.72668,218.8 1406 | 481.66296,223.8 1407 | 482.58096,223.4 1408 | 483.39538,227.3 1409 | 484.17979,231.4 1410 | 484.93618,231.4 1411 | 485.66752,231.2 1412 | 486.39867,233.0 1413 | 487.12925,232.9 1414 | 487.84807,231.3 1415 | 488.56545,237.1 1416 | 489.30209,242.0 1417 | 489.71979,240.9 1418 | 490.02629,252.8 1419 | 490.49491,249.3 1420 | 490.73395,242.6 1421 | 491.45108,243.3 1422 | 492.15455,246.7 1423 | 492.86378,243.7 1424 | 493.59311,239.7 1425 | 494.30039,239.1 1426 | 495.02413,238.3 1427 | 495.72569,238.5 1428 | 496.44407,237.6 1429 | 497.18763,236.4 1430 | 497.96598,236.5 1431 | 498.73742,232.8 1432 | 499.52678,230.6 1433 | 500.3047800000001,230.8 1434 | 501.0839600000001,228.2 1435 | 501.86142,230.8 1436 | 502.63764,231.2 1437 | 503.41893,232.0 1438 | 504.17719,232.2 1439 | 504.91178,234.1 1440 | 505.68424,233.9 1441 | 506.48373,235.5 1442 | 507.3124,236.0 1443 | 508.11772,238.2 1444 | 508.94098,237.0 1445 | 509.78498,240.3 1446 | 510.65233,233.4 1447 | 511.51245,236.4 1448 | 512.36378,235.2 1449 | 513.20474,242.0 1450 | 514.0331199999999,238.2 1451 | 514.8477800000001,239.2 1452 | 515.65078,241.5 1453 | 516.42098,243.0 1454 | 517.15498,247.2 1455 | 517.8760100000001,246.2 1456 | 518.60046,245.5 1457 | 519.32913,245.3 1458 | 520.07336,247.7 1459 | 520.82181,245.5 1460 | 521.57447,243.5 1461 | 523.80182,241.9 1462 | 524.57087,236.8 1463 | 525.337,235.8 1464 | 526.107,233.7 1465 | 526.8958100000001,230.3 1466 | 527.6986899999999,227.8 1467 | 528.5166899999999,224.7 1468 | 529.4034300000001,222.7 1469 | 530.29051,221.2 1470 | 531.20138,220.3 1471 | 532.07876,220.7 1472 | 532.59253,214.5 1473 | 532.98757,211.4 1474 | 533.55437,204.4 1475 | 533.93224,200.0 1476 | 534.66818,195.1 1477 | 535.0435600000001,193.8 1478 | 535.69505,190.5 1479 | 536.17847,199.8 1480 | 537.33447,199.4 1481 | 538.44076,205.0 1482 | 539.5138199999999,206.4 1483 | 540.58382,212.9 1484 | 541.65382,211.2 1485 | 542.7402099999999,205.0 1486 | 543.84487,203.6 1487 | 544.88599,208.1 1488 | 545.86491,210.3 1489 | 546.83015,209.6 1490 | 547.80668,209.7 1491 | 548.7707800000001,204.6 1492 | 549.72011,202.5 1493 | 550.23073,208.8 1494 | 550.5825500000001,213.6 1495 | 551.38109,215.2 1496 | 552.11109,219.9 1497 | 552.6815600000001,221.7 1498 | 553.02092,222.3 1499 | 553.24599,226.3 1500 | 553.6193900000001,222.1 1501 | 553.8086500000001,220.3 1502 | 554.47962,223.6 1503 | 555.1583499999999,224.3 1504 | 555.84235,226.7 1505 | 556.40702,233.9 1506 | 556.9232900000001,241.0 1507 | 557.19865,243.0 1508 | 557.3850500000001,249.1 1509 | 557.65714,244.0 1510 | 557.83821,250.5 1511 | 558.1545600000001,245.6 1512 | 558.30602,240.4 1513 | 558.7776899999999,238.1 1514 | 559.31601,234.5 1515 | 559.63676,229.7 1516 | 559.87262,230.2 1517 | 560.43662,230.3 1518 | 560.9656,228.3 1519 | 561.45074,231.6 1520 | 561.88807,231.9 1521 | 562.31049,234.6 1522 | 562.6555999999999,234.1 1523 | 563.13485,240.1 1524 | 563.53574,242.3 1525 | 563.9279,245.7 1526 | 564.31056,245.8 1527 | 564.7243599999999,247.6 1528 | 565.1343,251.4 1529 | 565.53896,252.4 1530 | 565.89564,252.6 1531 | 566.2453,251.4 1532 | 566.58864,253.7 1533 | 566.91835,254.3 1534 | 567.23949,253.9 1535 | 567.5486500000001,254.5 1536 | 567.88489,253.2 1537 | 568.20414,253.9 1538 | 568.53424,252.8 1539 | 568.93015,253.0 1540 | 569.31459,250.2 1541 | 569.68393,251.3 1542 | 570.06725,250.0 1543 | 570.4634599999999,251.3 1544 | 570.86213,251.8 1545 | 571.26144,251.8 1546 | 571.63336,249.6 1547 | 571.9746899999999,251.6 1548 | 572.3155,250.3 1549 | 572.66987,246.31 1550 | 573.05352,247.66 1551 | 573.47575,249.19 1552 | 573.9130200000001,248.72 1553 | 574.36465,251.77 1554 | 574.806,251.86 1555 | 575.2339599999999,252.08 1556 | 575.65453,248.86 1557 | 576.11285,252.54 1558 | 576.5991,252.9 1559 | 577.1151,251.3 1560 | 577.6538499999999,251.34 1561 | 578.1963499999999,251.08 1562 | 578.74235,249.06 1563 | 579.2805500000001,252.92 1564 | 579.83312,251.47 1565 | 580.2105,244.14 1566 | 580.40178,243.81 1567 | 580.814,236.17 1568 | 581.11865,230.26 1569 | 581.5465300000001,225.21 1570 | 581.9283,219.41 1571 | 582.45453,215.45 1572 | 582.8363,209.88 1573 | 583.57425,206.68 1574 | 583.9588,210.64 1575 | 586.72084,223.96 1576 | 587.17185,225.99 1577 | 587.88867,234.4 1578 | 588.27935,238.78 1579 | 588.9409,246.35 1580 | 589.42535,250.2 1581 | 590.04015,248.1 1582 | 590.4888000000001,243.56 1583 | 591.01947,237.38 1584 | 592.38347,225.68 1585 | 592.78552,229.39 1586 | 593.56125,233.16 1587 | 594.04675,238.15 1588 | 594.8638100000001,237.98 1589 | 595.43647,232.92 1590 | 596.2215600000001,221.22 1591 | 596.79113,216.44 1592 | 597.8036099999999,216.27 1593 | 598.32975,219.02 1594 | 599.21822,225.97 1595 | 599.81463,229.38 1596 | 601.2551500000001,232.45 1597 | 602.60075,237.86 1598 | 603.94915,239.14 1599 | 605.3031500000001,244.53 1600 | 606.62591,248.48 1601 | 607.9793000000001,254.58 1602 | 609.2473,259.22 1603 | 610.4295,257.74 1604 | 611.55101,257.82 1605 | 611.60063,259.68 1606 | 612.76197,258.14 1607 | 613.9428,256.19 1608 | 615.1406,252.75 1609 | 616.29912,252.9 1610 | 616.3566,252.73 1611 | 617.60957,252.64 1612 | 618.95375,248.29 1613 | 620.28375,245.89 1614 | 621.65145,243.53 1615 | 622.95073,243.89 1616 | 623.05495,239.19 1617 | 624.49695,237.93 1618 | 625.39792,235.02 1619 | 626.0475,228.51 1620 | 626.9694300000001,215.71 1621 | 627.8301,205.76 1622 | 629.13962,199.52 1623 | 629.76985,205.27 1624 | 629.8661,200.78 1625 | 631.5263199999999,200.46 1626 | 632.3569399999999,196.5 1627 | 634.07754,193.1 1628 | 634.88114,195.95 1629 | 635.00903,194.86 1630 | 636.52156,194.0 1631 | 637.71437,195.33 1632 | 639.41827,188.85 1633 | 640.37225,190.18 1634 | 642.0746,191.38 1635 | 642.8566500000001,191.56 1636 | 644.3008299999999,195.31 1637 | 645.15065,195.82 1638 | 646.37695,189.89 1639 | 647.25485,191.85 1640 | 648.61242,193.48 1641 | 649.1911,196.17 1642 | 650.3484599999999,189.25 1643 | 650.9471,193.44 1644 | 652.10426,187.27 1645 | 652.70895,186.79 1646 | 653.73025,192.87 1647 | 654.43865,194.82 1648 | 655.52435,200.0 1649 | 656.13265,200.35 1650 | 657.1810899999999,192.93 1651 | 657.6542099999999,189.23 1652 | 657.722,190.88 1653 | 658.7641,184.1 1654 | 659.29382,187.38 1655 | 659.4119000000001,185.68 1656 | 660.46355,188.43 1657 | 661.1183199999999,193.97 1658 | 661.2159,191.59 1659 | 662.28218,189.69 1660 | 662.79661,193.91 1661 | 662.87755,190.86 1662 | 663.9375200000001,191.02 1663 | 664.3204000000001,192.55 1664 | 664.40809,187.77 1665 | 665.3219399999999,180.17 1666 | 665.8365200000001,180.54 1667 | 666.7533599999999,174.77 1668 | 667.40986,173.71 1669 | 668.41526,177.71 1670 | 668.9155400000001,180.67 1671 | 669.8193,187.66 1672 | 670.2963199999999,191.51 1673 | 671.07075,194.88 1674 | 671.45793,196.83 1675 | 672.15088,194.79 1676 | 672.76138,197.13 1677 | 673.69611,201.12 1678 | 674.22938,204.67 1679 | 675.0284,211.69 1680 | 675.40653,216.12 1681 | 676.53074,222.57 1682 | 677.15231,219.96 1683 | 677.60074,216.59 1684 | 678.3281800000001,218.21 1685 | 678.74162,220.09 1686 | 679.45537,229.16 1687 | 679.73517,232.7 1688 | 680.3125799999999,233.61 1689 | 680.62761,233.11 1690 | 681.22567,225.81 1691 | 681.66993,227.9 1692 | 682.34371,221.31 1693 | 682.74009,219.14 1694 | 683.45786,220.24 1695 | 683.82875,222.7 1696 | 684.4236800000001,225.64 1697 | 684.75806,224.36 1698 | 685.29484,221.82 1699 | 685.67987,220.62 1700 | 686.26911,220.63 1701 | 686.58181,222.62 1702 | 687.15404,222.7 1703 | 687.4455,222.97 1704 | 688.00038,226.73 1705 | 688.30013,227.65 1706 | 688.80987,227.64 1707 | 689.15783,230.67 1708 | 689.69326,232.07 1709 | 689.9514499999999,232.27 1710 | 690.47465,235.8 1711 | 690.73639,236.45 1712 | 691.22183,239.29 1713 | 691.46767,238.42 1714 | 691.96796,239.38 1715 | 692.3183399999999,243.56 1716 | 692.83246,239.3 1717 | 693.07709,238.47 1718 | 693.5740400000001,243.7 1719 | 693.8212900000001,237.76 1720 | 694.28035,239.34 1721 | 694.5368199999999,240.46 1722 | 694.94914,239.31 1723 | 695.25926,239.8 1724 | 695.7323100000001,236.8 1725 | 695.98188,238.74 1726 | 696.43489,238.05 1727 | 696.64483,238.13 1728 | 697.09029,239.44 1729 | 697.34245,238.42 1730 | 697.7466800000001,239.88 1731 | 698.039,241.03 1732 | 698.50554,240.9 1733 | 698.75323,241.83 1734 | 699.21575,238.86 1735 | 699.43902,239.01 1736 | 699.86471,239.73 1737 | 700.1036899999999,237.21 1738 | 700.48502,236.72 1739 | 700.81484,236.61 1740 | 701.26853,235.42 1741 | 701.52452,232.46 1742 | 701.99315,230.88 1743 | 702.20092,232.16 1744 | 702.73427,232.18 1745 | 703.0099799999999,230.59 1746 | 703.46852,233.35 1747 | 703.79607,232.28 1748 | 704.25052,232.83 1749 | 704.58181,233.54 1750 | 705.0533399999999,234.04 1751 | 705.24391,235.09 1752 | 705.72695,237.18 1753 | 706.0532,237.66 1754 | 706.49295,236.05 1755 | 706.71074,236.05 1756 | 707.3107,238.85 1757 | 707.64373,233.51 1758 | 708.1996800000001,233.58 1759 | 708.4134499999999,233.11 1760 | 708.95915,234.84 1761 | 709.45379,231.43 1762 | 709.9095500000001,230.51 1763 | 710.4564499999999,227.03 1764 | 710.98336,224.9 1765 | 711.39904,225.39 1766 | 712.02147,224.12 1767 | 712.24373,224.0 1768 | 713.3125,223.89 1769 | 714.06558,227.64 1770 | 714.4038,227.08 1771 | 715.11573,223.14 1772 | 715.56538,227.58 1773 | 716.31016,213.6 1774 | 716.58591,210.51 1775 | 717.3482700000001,198.43 1776 | 717.95548,189.88 1777 | 718.7783499999999,193.46 1778 | 719.28718,200.82 1779 | 720.08729,212.03 1780 | 720.59076,217.04 1781 | 721.40752,219.2 1782 | 721.68986,218.96 1783 | 722.5058100000001,216.1 1784 | 722.99459,212.11 1785 | 723.78023,212.55 1786 | 724.142,214.01 1787 | 724.97536,210.48 1788 | 725.4744300000001,211.49 1789 | 726.24959,211.08 1790 | 726.57686,211.43 1791 | 727.8985,210.07 1792 | 728.5939000000001,210.24 1793 | 728.98753,211.08 1794 | 729.8369399999999,210.01 1795 | 730.26031,212.17 1796 | 730.90831,210.16 1797 | 731.18423,210.7 1798 | 731.861,211.62 1799 | 732.32175,213.73 1800 | 732.9935,208.11 1801 | 733.329,207.72 1802 | 734.02223,210.6 1803 | 734.46262,216.15 1804 | 735.1345699999999,214.66 1805 | 735.4099100000001,217.88 1806 | 736.1073100000001,217.19 1807 | 736.52222,213.14 1808 | 737.26982,206.92 1809 | 737.66012,204.52 1810 | 738.58099,191.74 1811 | 739.17456,185.61 1812 | 740.10645,185.4 1813 | 740.46092,183.39 1814 | 741.3299000000001,184.77 1815 | 741.87413,189.14 1816 | 742.64475,188.65 1817 | 743.06217,187.33 1818 | 743.95908,188.18 1819 | 744.52314,188.97 1820 | 745.67105,187.29 1821 | 746.6199300000001,190.24 1822 | 747.17704,187.92 1823 | 747.9402,187.95 1824 | 748.33688,187.54 1825 | 749.2629300000001,188.68 1826 | 749.8141800000001,190.17 1827 | 750.7064399999999,192.08 1828 | 751.03625,191.3 1829 | 751.97387,193.55 1830 | 752.56588,197.5 1831 | 753.48907,195.43 1832 | 753.93465,203.9 1833 | 755.1145799999999,199.05 1834 | 755.58683,203.3 1835 | 756.56617,208.1 1836 | 756.85068,209.45 1837 | 757.78545,213.61 1838 | 758.36242,218.35 1839 | 759.13569,222.72 1840 | 759.56188,226.94 1841 | 759.87821,223.02 1842 | 760.1082700000001,225.37 1843 | 760.51606,225.62 1844 | 760.93994,222.71 1845 | 761.86449,216.64 1846 | 762.1660400000001,214.69 1847 | 763.1018,214.0 1848 | 763.77058,219.95 1849 | 764.67688,223.89 1850 | 765.1818199999999,222.93 1851 | 765.58664,233.66 1852 | 765.85148,229.41 1853 | 766.1885,232.12 1854 | 766.8089100000001,230.62 1855 | 767.74716,224.86 1856 | 768.11726,223.82 1857 | 769.06138,221.64 1858 | 769.65142,225.87 1859 | 770.59915,230.63 1860 | 771.02067,229.56 1861 | 771.51933,236.32 1862 | 771.81267,234.24 1863 | 772.17526,239.71 1864 | 772.4745600000001,243.89 1865 | 772.7379599999999,246.49 1866 | 772.99564,243.85 1867 | 773.24982,246.03 1868 | 773.6844699999999,237.78 1869 | 774.04414,239.23 1870 | 774.9588100000001,238.39 1871 | 775.53801,241.74 1872 | 776.33226,245.32 1873 | 776.7827,248.92 1874 | 777.68175,247.3 1875 | 778.23279,252.46 1876 | 779.0579799999999,254.93 1877 | 779.36755,254.69 1878 | 780.18892,254.43 1879 | 780.71944,252.52 1880 | 781.56283,257.21 1881 | 781.8866800000001,251.51 1882 | 782.72845,257.44 1883 | 783.19853,255.02 1884 | 784.26176,260.92 1885 | 785.0340799999999,255.85 1886 | 785.51905,259.66 1887 | 786.1895999999999,262.23 1888 | 786.56326,264.35 1889 | 787.35551,269.36 1890 | 787.8035699999999,266.0 1891 | 788.47924,257.2 1892 | 788.69187,257.02 1893 | 789.49404,238.64 1894 | 789.9530100000001,235.49 1895 | 790.63941,227.38 1896 | 791.05688,230.55 1897 | 792.03078,224.69 1898 | 792.6173,214.45 1899 | 793.51939,213.36 1900 | 793.85276,218.39 1901 | 795.12245,208.79 1902 | 795.68732,204.62 1903 | 796.85259,198.79 1904 | 797.3788199999999,197.91 1905 | 798.6813000000001,200.49 1906 | 801.2360600000001,198.68 1907 | 802.87209,198.66 1908 | 803.70925,202.65 1909 | 803.92528,202.92 1910 | 804.00987,207.5 1911 | 804.5226700000001,204.86 1912 | 805.13244,202.23 1913 | 805.66887,207.29 1914 | -------------------------------------------------------------------------------- /data/Euro2k/Arc-AkademiiNaukIceCap.Opel.2013.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-AkademiiNaukIceCap.Opel.2013.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-Forfjorddalen.McCarroll.2013.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-Forfjorddalen.McCarroll.2013.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-GulfofAlaska.Wilson.2014.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-GulfofAlaska.Wilson.2014.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-Indigirka.Hughes.1999.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-Indigirka.Hughes.1999.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-Jamtland.Wilson.2016.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-Jamtland.Wilson.2016.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-Kittelfjall.Bjorklund.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-Kittelfjall.Bjorklund.2012.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-PolarUrals.Wilson.2015.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-PolarUrals.Wilson.2015.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-Tjeggelvas.Bjorklund.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-Tjeggelvas.Bjorklund.2012.lpd -------------------------------------------------------------------------------- /data/Euro2k/Arc-Tornetrask.Melvin.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Arc-Tornetrask.Melvin.2012.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-CentralEurope.Dobrovoln.2009.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-CentralEurope.Dobrovoln.2009.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-CentralandEasternPyrenees.Pla.2004.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-CentralandEasternPyrenees.Pla.2004.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-CoastofPortugal.Abrantes.2011.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-CoastofPortugal.Abrantes.2011.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-EasternCarpathianMountains.Popa.2008.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-EasternCarpathianMountains.Popa.2008.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-EuropeanAlps.Bntgen.2011.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-EuropeanAlps.Bntgen.2011.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-FinnishLakelands.Helama.2014.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-FinnishLakelands.Helama.2014.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-LakeSilvaplana.Larocque-Tobler.2010.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-LakeSilvaplana.Larocque-Tobler.2010.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-LakeSilvaplana.Trachsel.2010.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-LakeSilvaplana.Trachsel.2010.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-Ltschental.Bntgen.2006.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-Ltschental.Bntgen.2006.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-MaritimeFrenchAlps.Bntgen.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-MaritimeFrenchAlps.Bntgen.2012.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-NorthernScandinavia.Esper.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-NorthernScandinavia.Esper.2012.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-NorthernSpain.Martn-Chivelet.2011.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-NorthernSpain.Martn-Chivelet.2011.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-RAPiD-17-5P.Moffa-Sanchez.2014.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-RAPiD-17-5P.Moffa-Sanchez.2014.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-Seebergsee.Larocque-Tobler.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-Seebergsee.Larocque-Tobler.2012.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-SpanishPyrenees.Dorado-Linan.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-SpanishPyrenees.Dorado-Linan.2012.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-SpannagelCave.Mangini.2005.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-SpannagelCave.Mangini.2005.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-Stockholm.Leijonhufvud.2009.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-Stockholm.Leijonhufvud.2009.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-Tallinn.Tarand.2001.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-Tallinn.Tarand.2001.lpd -------------------------------------------------------------------------------- /data/Euro2k/Eur-TatraMountains.Bntgen.2013.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Eur-TatraMountains.Bntgen.2013.lpd -------------------------------------------------------------------------------- /data/Euro2k/Ocn-AqabaJordanAQ18.Heiss.1999.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Ocn-AqabaJordanAQ18.Heiss.1999.lpd -------------------------------------------------------------------------------- /data/Euro2k/Ocn-AqabaJordanAQ19.Heiss.1999.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Ocn-AqabaJordanAQ19.Heiss.1999.lpd -------------------------------------------------------------------------------- /data/Euro2k/Ocn-RedSea.Felis.2000.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Euro2k/Ocn-RedSea.Felis.2000.lpd -------------------------------------------------------------------------------- /data/LR04.csv: -------------------------------------------------------------------------------- 1 | Please,cite:,"Lisiecki, L. E., and M. E. Raymo (2005), A Pliocene-" 2 | Pleist,ocene,"stack of 57 globally distributed benthic d18O records," 3 | Paleoc,eanogr,"aphy,20, PA1003, doi:10.1029/2004PA001071." 4 | ,, 5 | Time (ka),Benthic d18O (per mil) ,Standard error (per mil) 6 | 0,3.23,0.03 7 | 1,3.23,0.04 8 | 2,3.18,0.03 9 | 3,3.29,0.03 10 | 4,3.3,0.03 11 | 5,3.26,0.03 12 | 6,3.33,0.04 13 | 7,3.37,0.04 14 | 8,3.42,0.03 15 | 9,3.38,0.04 16 | 10,3.52,0.04 17 | 11,3.6,0.04 18 | 12,3.92,0.05 19 | 13,4.06,0.04 20 | 14,4.28,0.03 21 | 15,4.49,0.04 22 | 16,4.75,0.03 23 | 17,4.88,0.04 24 | 18,5.02,0.03 25 | 19,4.96,0.03 26 | 20,4.99,0.04 27 | 21,4.91,0.03 28 | 22,4.88,0.03 29 | 23,4.86,0.03 30 | 24,4.81,0.04 31 | 25,4.82,0.02 32 | 26,4.67,0.04 33 | 27,4.75,0.04 34 | 28,4.75,0.03 35 | 29,4.73,0.03 36 | 30,4.62,0.04 37 | 31,4.62,0.03 38 | 32,4.6,0.03 39 | 33,4.58,0.03 40 | 34,4.59,0.03 41 | 35,4.54,0.02 42 | 36,4.45,0.03 43 | 37,4.46,0.03 44 | 38,4.41,0.03 45 | 39,4.55,0.03 46 | 40,4.55,0.03 47 | 41,4.51,0.05 48 | 42,4.5,0.03 49 | 43,4.46,0.04 50 | 44,4.48,0.03 51 | 45,4.33,0.04 52 | 46,4.36,0.05 53 | 47,4.38,0.04 54 | 48,4.45,0.04 55 | 49,4.46,0.03 56 | 50,4.34,0.04 57 | 51,4.33,0.05 58 | 52,4.31,0.04 59 | 53,4.44,0.03 60 | 54,4.38,0.04 61 | 55,4.31,0.03 62 | 56,4.35,0.04 63 | 57,4.43,0.04 64 | 58,4.49,0.06 65 | 59,4.43,0.04 66 | 60,4.6,0.04 67 | 61,4.51,0.05 68 | 62,4.6,0.04 69 | 63,4.53,0.04 70 | 64,4.36,0.06 71 | 65,4.48,0.05 72 | 66,4.57,0.04 73 | 67,4.44,0.05 74 | 68,4.42,0.06 75 | 69,4.47,0.05 76 | 70,4.32,0.04 77 | 71,4.22,0.05 78 | 72,4.21,0.04 79 | 73,4.23,0.04 80 | 74,4.03,0.04 81 | 75,3.95,0.04 82 | 76,4.06,0.04 83 | 77,4.08,0.05 84 | 78,4.05,0.03 85 | 79,4.05,0.05 86 | 80,3.9,0.04 87 | 81,3.82,0.04 88 | 82,3.8,0.04 89 | 83,3.83,0.04 90 | 84,3.82,0.04 91 | 85,3.95,0.06 92 | 86,4.06,0.05 93 | 87,4.18,0.05 94 | 88,4.11,0.05 95 | 89,4.08,0.04 96 | 90,4.06,0.05 97 | 91,4.03,0.04 98 | 92,3.98,0.04 99 | 93,3.9,0.03 100 | 94,3.84,0.04 101 | 95,3.77,0.05 102 | 96,3.75,0.03 103 | 97,3.83,0.04 104 | 98,3.9,0.04 105 | 99,3.78,0.06 106 | 100,3.81,0.06 107 | 101,3.92,0.05 108 | 102,3.86,0.05 109 | 103,3.88,0.04 110 | 104,3.92,0.05 111 | 105,3.85,0.06 112 | 106,4,0.04 113 | 107,4.04,0.05 114 | 108,4.11,0.04 115 | 109,4.12,0.05 116 | 110,4.04,0.05 117 | 111,4.02,0.05 118 | 112,4.03,0.04 119 | 113,3.93,0.05 120 | 114,3.81,0.05 121 | 115,3.71,0.04 122 | 116,3.58,0.04 123 | 117,3.54,0.05 124 | 118,3.44,0.06 125 | 119,3.3,0.03 126 | 120,3.27,0.04 127 | 121,3.26,0.04 128 | 122,3.18,0.03 129 | 123,3.1,0.05 130 | 124,3.27,0.04 131 | 125,3.14,0.06 132 | 126,3.16,0.04 133 | 127,3.37,0.05 134 | 128,3.71,0.07 135 | 129,3.9,0.08 136 | 130,3.67,0.09 137 | 131,3.81,0.09 138 | 132,4.2,0.06 139 | 133,4.41,0.05 140 | 134,4.7,0.05 141 | 135,4.86,0.04 142 | 136,4.82,0.05 143 | 137,4.8,0.05 144 | 138,4.89,0.04 145 | 139,4.87,0.05 146 | 140,4.98,0.05 147 | 141,4.81,0.05 148 | 142,4.75,0.06 149 | 143,4.78,0.05 150 | 144,4.82,0.05 151 | 145,4.74,0.05 152 | 146,4.77,0.05 153 | 147,4.82,0.05 154 | 148,4.71,0.05 155 | 149,4.75,0.04 156 | 150,4.75,0.06 157 | 151,4.66,0.06 158 | 152,4.64,0.05 159 | 153,4.62,0.04 160 | 154,4.66,0.04 161 | 155,4.51,0.04 162 | 156,4.78,0.04 163 | 157,4.74,0.04 164 | 158,4.69,0.03 165 | 159,4.66,0.05 166 | 160,4.69,0.05 167 | 161,4.65,0.04 168 | 162,4.66,0.05 169 | 163,4.7,0.06 170 | 164,4.68,0.05 171 | 165,4.68,0.05 172 | 166,4.48,0.04 173 | 167,4.41,0.06 174 | 168,4.48,0.04 175 | 169,4.5,0.04 176 | 170,4.5,0.03 177 | 171,4.53,0.04 178 | 172,4.46,0.03 179 | 173,4.38,0.03 180 | 174,4.28,0.04 181 | 175,4.32,0.05 182 | 176,4.39,0.04 183 | 177,4.46,0.04 184 | 178,4.44,0.03 185 | 179,4.48,0.05 186 | 180,4.39,0.06 187 | 181,4.46,0.03 188 | 182,4.48,0.05 189 | 183,4.37,0.04 190 | 184,4.4,0.06 191 | 185,4.59,0.06 192 | 186,4.47,0.04 193 | 187,4.4,0.05 194 | 188,4.46,0.05 195 | 189,4.39,0.04 196 | 190,4.28,0.05 197 | 191,4.13,0.05 198 | 192,3.76,0.05 199 | 193,3.92,0.05 200 | 194,3.84,0.07 201 | 195,3.91,0.05 202 | 196,3.82,0.04 203 | 197,3.74,0.06 204 | 198,3.82,0.04 205 | 199,3.57,0.05 206 | 200,3.53,0.07 207 | 201,3.53,0.03 208 | 202,3.63,0.06 209 | 203,3.61,0.07 210 | 204,3.78,0.05 211 | 205,3.82,0.06 212 | 206,3.77,0.07 213 | 207,3.78,0.08 214 | 208,3.71,0.07 215 | 209,3.64,0.06 216 | 210,3.57,0.07 217 | 211,3.6,0.06 218 | 212,3.61,0.06 219 | 213,3.65,0.06 220 | 214,3.56,0.07 221 | 215,3.54,0.05 222 | 216,3.53,0.04 223 | 217,3.48,0.09 224 | 218,3.72,0.05 225 | 219,3.94,0.05 226 | 220,3.98,0.06 227 | 221,4.23,0.06 228 | 222,4.38,0.09 229 | 223,4.44,0.07 230 | 224,4.39,0.07 231 | 225,4.28,0.06 232 | 226,4.29,0.05 233 | 227,4.19,0.05 234 | 228,4.19,0.12 235 | 229,4.02,0.08 236 | 230,4.3,0.06 237 | 231,4.22,0.07 238 | 232,4.17,0.07 239 | 233,3.97,0.06 240 | 234,3.84,0.05 241 | 235,3.71,0.06 242 | 236,3.66,0.05 243 | 237,3.47,0.04 244 | 238,3.51,0.06 245 | 239,3.44,0.04 246 | 240,3.44,0.06 247 | 241,3.54,0.08 248 | 242,3.68,0.06 249 | 243,3.78,0.08 250 | 244,4.05,0.06 251 | 245,4.17,0.06 252 | 246,4.38,0.05 253 | 247,4.31,0.04 254 | 248,4.38,0.07 255 | 249,4.36,0.05 256 | 250,4.5,0.05 257 | 251,4.58,0.04 258 | 252,4.63,0.04 259 | 253,4.52,0.06 260 | 254,4.57,0.04 261 | 255,4.37,0.05 262 | 256,4.43,0.06 263 | 257,4.55,0.05 264 | 258,4.51,0.05 265 | 259,4.52,0.04 266 | 260,4.46,0.06 267 | 261,4.52,0.03 268 | 262,4.45,0.05 269 | 263,4.46,0.05 270 | 264,4.42,0.04 271 | 265,4.44,0.05 272 | 266,4.5,0.05 273 | 267,4.5,0.05 274 | 268,4.33,0.06 275 | 269,4.52,0.06 276 | 270,4.51,0.06 277 | 271,4.5,0.05 278 | 272,4.44,0.06 279 | 273,4.44,0.03 280 | 274,4.38,0.04 281 | 275,4.38,0.05 282 | 276,4.3,0.06 283 | 277,4.44,0.05 284 | 278,4.31,0.05 285 | 279,4.23,0.07 286 | 280,4.14,0.05 287 | 281,4.21,0.04 288 | 282,3.98,0.05 289 | 283,3.87,0.06 290 | 284,3.86,0.04 291 | 285,3.84,0.04 292 | 286,3.82,0.05 293 | 287,3.89,0.04 294 | 288,4.02,0.06 295 | 289,4.06,0.05 296 | 290,4.1,0.06 297 | 291,4.11,0.04 298 | 292,4.27,0.07 299 | 293,4.22,0.06 300 | 294,4.33,0.05 301 | 295,4.31,0.03 302 | 296,4.23,0.04 303 | 297,4.3,0.06 304 | 298,4.17,0.04 305 | 299,4.23,0.04 306 | 300,4.02,0.07 307 | 301,4.06,0.07 308 | 302,4.06,0.07 309 | 303,4,0.06 310 | 304,4.07,0.04 311 | 305,4.07,0.07 312 | 306,4.05,0.06 313 | 307,4,0.04 314 | 308,3.85,0.04 315 | 309,3.86,0.06 316 | 310,3.8,0.06 317 | 311,3.7,0.04 318 | 312,3.79,0.05 319 | 313,3.69,0.06 320 | 314,3.77,0.06 321 | 315,3.62,0.06 322 | 316,3.69,0.07 323 | 317,3.89,0.05 324 | 318,3.76,0.04 325 | 319,3.58,0.05 326 | 320,3.66,0.05 327 | 321,3.53,0.05 328 | 322,3.53,0.05 329 | 323,3.47,0.05 330 | 324,3.21,0.05 331 | 325,3.31,0.04 332 | 326,3.23,0.04 333 | 327,3.22,0.04 334 | 328,3.23,0.05 335 | 329,3.19,0.04 336 | 330,3.3,0.04 337 | 331,3.29,0.06 338 | 332,3.39,0.08 339 | 333,3.38,0.07 340 | 334,3.51,0.08 341 | 335,3.75,0.08 342 | 336,4.08,0.08 343 | 337,4.23,0.08 344 | 338,4.17,0.07 345 | 339,4.42,0.07 346 | 340,4.6,0.06 347 | 341,4.84,0.06 348 | 342,4.83,0.05 349 | 343,4.8,0.07 350 | 344,4.76,0.07 351 | 345,4.79,0.05 352 | 346,4.68,0.06 353 | 347,4.53,0.07 354 | 348,4.49,0.1 355 | 349,4.62,0.04 356 | 350,4.67,0.05 357 | 351,4.64,0.05 358 | 352,4.47,0.09 359 | 353,4.47,0.05 360 | 354,4.4,0.06 361 | 355,4.59,0.04 362 | 356,4.46,0.07 363 | 357,4.55,0.07 364 | 358,4.58,0.04 365 | 359,4.49,0.08 366 | 360,4.54,0.04 367 | 361,4.5,0.06 368 | 362,4.5,0.04 369 | 363,4.53,0.05 370 | 364,4.36,0.04 371 | 365,4.46,0.05 372 | 366,4.32,0.06 373 | 367,4.37,0.04 374 | 368,4.4,0.05 375 | 369,4.38,0.04 376 | 370,4.36,0.05 377 | 371,4.27,0.05 378 | 372,4.42,0.04 379 | 373,4.29,0.07 380 | 374,4.34,0.06 381 | 375,4.2,0.05 382 | 376,4.21,0.05 383 | 377,4.2,0.04 384 | 378,4.19,0.03 385 | 379,4.17,0.05 386 | 380,4.19,0.05 387 | 381,4.15,0.03 388 | 382,4.05,0.06 389 | 383,4.12,0.03 390 | 384,4.08,0.05 391 | 385,4.14,0.03 392 | 386,4.02,0.07 393 | 387,3.99,0.04 394 | 388,3.92,0.04 395 | 389,3.89,0.04 396 | 390,3.96,0.06 397 | 391,4,0.05 398 | 392,3.97,0.03 399 | 393,3.86,0.05 400 | 394,3.92,0.05 401 | 395,3.76,0.05 402 | 396,3.72,0.04 403 | 397,3.47,0.09 404 | 398,3.54,0.04 405 | 399,3.48,0.06 406 | 400,3.32,0.04 407 | 401,3.2,0.05 408 | 402,3.17,0.05 409 | 403,3.15,0.04 410 | 404,3.2,0.05 411 | 405,3.11,0.04 412 | 406,3.19,0.04 413 | 407,3.21,0.05 414 | 408,3.17,0.06 415 | 409,3.22,0.06 416 | 410,3.15,0.06 417 | 411,3.29,0.05 418 | 412,3.31,0.04 419 | 413,3.38,0.03 420 | 414,3.41,0.04 421 | 415,3.41,0.05 422 | 416,3.51,0.06 423 | 417,3.57,0.05 424 | 418,3.75,0.05 425 | 419,3.81,0.03 426 | 420,3.77,0.06 427 | 421,3.85,0.07 428 | 422,3.94,0.05 429 | 423,4.02,0.07 430 | 424,3.92,0.07 431 | 425,4.3,0.14 432 | 426,4.5,0.07 433 | 427,4.3,0.1 434 | 428,4.72,0.06 435 | 429,4.91,0.07 436 | 430,4.98,0.07 437 | 431,5.05,0.05 438 | 432,5.05,0.08 439 | 433,5.08,0.05 440 | 434,5.08,0.05 441 | 435,5.02,0.1 442 | 436,5.07,0.04 443 | 437,4.9,0.08 444 | 438,4.79,0.1 445 | 439,4.87,0.06 446 | 440,4.76,0.09 447 | 441,4.95,0.07 448 | 442,4.96,0.05 449 | 443,4.91,0.04 450 | 444,4.82,0.07 451 | 445,4.91,0.05 452 | 446,4.82,0.05 453 | 447,4.51,0.08 454 | 448,4.77,0.06 455 | 449,4.73,0.06 456 | 450,4.75,0.06 457 | 451,4.58,0.06 458 | 452,4.73,0.05 459 | 453,4.56,0.09 460 | 454,4.6,0.04 461 | 455,4.41,0.09 462 | 456,4.62,0.05 463 | 457,4.63,0.08 464 | 458,4.55,0.05 465 | 459,4.63,0.06 466 | 460,4.56,0.07 467 | 461,4.59,0.04 468 | 462,4.61,0.05 469 | 463,4.61,0.05 470 | 464,4.44,0.05 471 | 465,4.57,0.04 472 | 466,4.46,0.03 473 | 467,4.44,0.06 474 | 468,4.38,0.04 475 | 469,4.51,0.04 476 | 470,4.33,0.05 477 | 471,4.25,0.07 478 | 472,4.32,0.05 479 | 473,4.36,0.05 480 | 474,4.39,0.06 481 | 475,4.35,0.03 482 | 476,4.3,0.05 483 | 477,4.27,0.03 484 | 478,4.22,0.04 485 | 479,4.12,0.04 486 | 480,4.12,0.04 487 | 481,4.17,0.05 488 | 482,4.01,0.03 489 | 483,3.97,0.03 490 | 484,3.79,0.05 491 | 485,3.81,0.07 492 | 486,3.76,0.05 493 | 487,3.72,0.06 494 | 488,3.67,0.04 495 | 489,3.6,0.04 496 | 490,3.54,0.06 497 | 491,3.47,0.07 498 | 492,3.63,0.05 499 | 493,3.72,0.04 500 | 494,3.83,0.07 501 | 495,3.83,0.07 502 | 496,3.83,0.05 503 | 497,3.68,0.06 504 | 498,3.82,0.04 505 | 499,3.75,0.06 506 | 500,3.84,0.04 507 | 501,3.78,0.05 508 | 502,3.75,0.06 509 | 503,3.81,0.04 510 | 504,3.91,0.05 511 | 505,3.86,0.07 512 | 506,4.01,0.04 513 | 507,3.93,0.07 514 | 508,4.16,0.09 515 | 509,4.06,0.04 516 | 510,4.14,0.05 517 | 511,4.06,0.06 518 | 512,4.22,0.07 519 | 513,4.25,0.03 520 | 514,4.1,0.05 521 | 515,4.1,0.06 522 | 516,4.01,0.05 523 | 517,3.96,0.08 524 | 518,4.07,0.06 525 | 519,3.96,0.05 526 | 520,3.95,0.05 527 | 521,3.91,0.08 528 | 522,3.88,0.04 529 | 523,3.93,0.05 530 | 524,3.83,0.06 531 | 525,3.92,0.06 532 | 526,3.97,0.09 533 | 527,3.96,0.07 534 | 528,3.92,0.08 535 | 529,3.99,0.05 536 | 530,3.97,0.08 537 | 531,3.92,0.07 538 | 532,4.01,0.07 539 | 533,4.11,0.07 540 | 534,4.27,0.06 541 | 535,4.29,0.07 542 | 536,4.55,0.06 543 | 537,4.43,0.06 544 | 538,4.54,0.05 545 | 539,4.48,0.08 546 | 540,4.53,0.06 547 | 541,4.5,0.06 548 | 542,4.45,0.05 549 | 543,4.45,0.09 550 | 544,4.46,0.08 551 | 545,4.43,0.05 552 | 546,4.51,0.07 553 | 547,4.53,0.07 554 | 548,4.55,0.04 555 | 549,4.53,0.05 556 | 550,4.5,0.06 557 | 551,4.45,0.07 558 | 552,4.52,0.06 559 | 553,4.46,0.05 560 | 554,4.29,0.08 561 | 555,4.25,0.05 562 | 556,4.39,0.06 563 | 557,4.35,0.04 564 | 558,4.25,0.05 565 | 559,4.17,0.05 566 | 560,4.14,0.03 567 | 561,4.21,0.05 568 | 562,4.14,0.08 569 | 563,4.17,0.06 570 | 564,4.01,0.05 571 | 565,3.96,0.03 572 | 566,3.86,0.06 573 | 567,3.94,0.04 574 | 568,4,0.04 575 | 569,3.97,0.07 576 | 570,3.91,0.04 577 | 571,3.89,0.06 578 | 572,3.59,0.05 579 | 573,3.65,0.05 580 | 574,3.73,0.07 581 | 575,3.39,0.06 582 | 576,3.46,0.05 583 | 577,3.48,0.04 584 | 578,3.5,0.07 585 | 579,3.57,0.06 586 | 580,3.69,0.05 587 | 581,4,0.06 588 | 582,4.13,0.14 589 | 583,4.29,0.1 590 | 584,4.31,0.1 591 | 585,4.33,0.07 592 | 586,4.18,0.08 593 | 587,4.11,0.13 594 | 588,4.19,0.04 595 | 589,4.07,0.08 596 | 590,4.09,0.05 597 | 591,4.07,0.04 598 | 592,4.02,0.08 599 | 593,3.99,0.09 600 | 594,3.9,0.06 601 | 595,3.88,0.08 602 | 596,3.89,0.08 603 | 597,3.8,0.07 604 | 598,3.99,0.05 605 | 599,4.02,0.07 606 | 600,4.07,0 607 | 602,3.97,0.05 608 | 604,3.77,0.06 609 | 606,3.8,0.07 610 | 608,3.8,0.05 611 | 610,3.49,0.04 612 | 612,3.52,0.06 613 | 614,3.53,0.05 614 | 616,3.66,0.05 615 | 618,3.81,0.08 616 | 620,4.09,0.09 617 | 622,4.31,0.08 618 | 624,4.63,0.07 619 | 626,4.9,0.06 620 | 628,5.01,0.07 621 | 630,5.08,0.06 622 | 632,5.05,0.05 623 | 634,4.93,0.06 624 | 636,5,0.04 625 | 638,4.8,0.05 626 | 640,5.01,0.06 627 | 642,4.75,0.05 628 | 644,4.68,0.08 629 | 646,4.72,0.05 630 | 648,4.75,0.05 631 | 650,4.71,0.06 632 | 652,4.79,0.05 633 | 654,4.77,0.05 634 | 656,4.57,0.05 635 | 658,4.58,0.04 636 | 660,4.64,0.05 637 | 662,4.8,0.07 638 | 664,4.58,0.04 639 | 666,4.5,0.05 640 | 668,4.65,0.04 641 | 670,4.42,0.05 642 | 672,4.52,0.06 643 | 674,4.46,0.04 644 | 676,4.4,0.05 645 | 678,4.26,0.05 646 | 680,4.14,0.06 647 | 682,4.15,0.06 648 | 684,4.03,0.07 649 | 686,4.13,0.05 650 | 688,3.95,0.06 651 | 690,3.7,0.05 652 | 692,3.71,0.06 653 | 694,3.64,0.06 654 | 696,3.5,0.04 655 | 698,3.57,0.04 656 | 700,3.65,0.05 657 | 702,3.76,0.05 658 | 704,3.84,0.05 659 | 706,3.93,0.05 660 | 708,4.03,0.07 661 | 710,3.98,0.07 662 | 712,4.06,0.09 663 | 714,4.29,0.06 664 | 716,4.61,0.08 665 | 718,4.75,0.07 666 | 720,4.66,0.09 667 | 722,4.65,0.06 668 | 724,4.44,0.06 669 | 726,4.32,0.05 670 | 728,4.16,0.05 671 | 730,4.16,0.04 672 | 732,4.02,0.07 673 | 734,4.15,0.04 674 | 736,4.19,0.06 675 | 738,4.21,0.06 676 | 740,4.11,0.08 677 | 742,4.17,0.05 678 | 744,4.48,0.06 679 | 746,4.67,0.11 680 | 748,4.59,0.06 681 | 750,4.6,0.07 682 | 752,4.48,0.05 683 | 754,4.55,0.06 684 | 756,4.59,0.06 685 | 758,4.26,0.06 686 | 760,4.33,0.05 687 | 762,4.11,0.06 688 | 764,4.28,0.06 689 | 766,4.11,0.06 690 | 768,4.07,0.05 691 | 770,3.99,0.05 692 | 772,3.87,0.05 693 | 774,3.76,0.05 694 | 776,3.64,0.05 695 | 778,3.56,0.04 696 | 780,3.48,0.05 697 | 782,3.54,0.05 698 | 784,3.55,0.07 699 | 786,3.68,0.05 700 | 788,3.7,0.1 701 | 790,4.16,0.06 702 | 792,4.27,0.06 703 | 794,4.74,0.09 704 | 796,4.67,0.07 705 | 798,4.68,0.08 706 | 800,4.68,0.07 707 | 802,4.73,0.06 708 | 804,4.55,0.07 709 | 806,4.53,0.04 710 | 808,4.49,0.06 711 | 810,4.31,0.05 712 | 812,4.38,0.06 713 | 814,4.12,0.05 714 | 816,4.08,0.08 715 | 818,3.9,0.07 716 | 820,3.96,0.06 717 | 822,3.9,0.05 718 | 824,3.92,0.08 719 | 826,4.11,0.06 720 | 828,3.95,0.06 721 | 830,4.04,0.05 722 | 832,4.07,0.05 723 | 834,3.95,0.06 724 | 836,3.82,0.04 725 | 838,3.99,0.06 726 | 840,4.02,0.07 727 | 842,3.81,0.05 728 | 844,3.67,0.05 729 | 846,3.58,0.04 730 | 848,3.63,0.07 731 | 850,3.5,0.04 732 | 852,3.65,0.05 733 | 854,3.63,0.05 734 | 856,3.46,0.05 735 | 858,3.42,0.05 736 | 860,3.45,0.07 737 | 862,3.68,0.09 738 | 864,3.58,0.06 739 | 866,4.06,0.07 740 | 868,4.32,0.06 741 | 870,4.51,0.07 742 | 872,4.67,0.06 743 | 874,4.68,0.07 744 | 876,4.69,0.08 745 | 878,4.59,0.08 746 | 880,4.68,0.04 747 | 882,4.42,0.07 748 | 884,4.47,0.05 749 | 886,4.47,0.07 750 | 888,4.45,0.04 751 | 890,4.39,0.06 752 | 892,4.32,0.07 753 | 894,4.41,0.07 754 | 896,4.4,0.05 755 | 898,4.33,0.04 756 | 900,4.29,0.05 757 | 902,4.17,0.04 758 | 904,4.14,0.06 759 | 906,4.12,0.04 760 | 908,3.99,0.06 761 | 910,3.99,0.05 762 | 912,4.09,0.04 763 | 914,4.03,0.05 764 | 916,4.06,0.06 765 | 918,4.37,0.06 766 | 920,4.51,0.06 767 | 922,4.55,0.06 768 | 924,4.43,0.06 769 | 926,4.38,0.04 770 | 928,4.26,0.05 771 | 930,4.1,0.05 772 | 932,4.07,0.05 773 | 934,3.98,0.06 774 | 936,4.02,0.05 775 | 938,3.86,0.04 776 | 940,3.89,0.04 777 | 942,3.69,0.04 778 | 944,3.57,0.04 779 | 946,3.63,0.06 780 | 948,3.48,0.05 781 | 950,3.44,0.04 782 | 952,3.3,0.04 783 | 954,3.39,0.07 784 | 956,3.33,0.05 785 | 958,3.73,0.08 786 | 960,4.16,0.08 787 | 962,4.42,0.06 788 | 964,4.58,0.08 789 | 966,4.3,0.05 790 | 968,4.21,0.06 791 | 970,4.09,0.05 792 | 972,3.98,0.06 793 | 974,3.87,0.05 794 | 976,3.77,0.06 795 | 978,3.72,0.05 796 | 980,3.76,0.06 797 | 982,3.99,0.07 798 | 984,4.15,0.06 799 | 986,4.24,0.07 800 | 988,4.21,0.07 801 | 990,4.11,0.05 802 | 992,4.06,0.06 803 | 994,3.94,0.05 804 | 996,3.84,0.06 805 | 998,3.84,0.04 806 | 1000,3.94,0.06 807 | 1002,4.15,0.07 808 | 1004,4.28,0.08 809 | 1006,4.22,0.07 810 | 1008,4.22,0.05 811 | 1010,4.12,0.06 812 | 1012,4.13,0.07 813 | 1014,3.99,0.06 814 | 1016,3.73,0.05 815 | 1018,3.78,0.04 816 | 1020,3.83,0.05 817 | 1022,3.57,0.08 818 | 1024,3.64,0.05 819 | 1026,3.87,0.06 820 | 1028,3.84,0.06 821 | 1030,3.95,0.08 822 | 1032,4.08,0.04 823 | 1034,4.36,0.05 824 | 1036,4.33,0.07 825 | 1038,4.54,0.09 826 | 1040,4.33,0.08 827 | 1042,4.23,0.09 828 | 1044,4.38,0.06 829 | 1046,4.22,0.06 830 | 1048,4.29,0.07 831 | 1050,4.18,0.05 832 | 1052,4.27,0.06 833 | 1054,4.25,0.06 834 | 1056,4.12,0.06 835 | 1058,4.23,0.06 836 | 1060,4.08,0.04 837 | 1062,3.94,0.06 838 | 1064,3.66,0.07 839 | 1066,3.48,0.05 840 | 1068,3.33,0.05 841 | 1070,3.34,0.05 842 | 1072,3.21,0.08 843 | 1074,3.42,0.06 844 | 1076,3.48,0.06 845 | 1078,3.54,0.04 846 | 1080,3.61,0.04 847 | 1082,3.81,0.06 848 | 1084,3.7,0.07 849 | 1086,3.89,0.04 850 | 1088,3.91,0.05 851 | 1090,3.95,0.05 852 | 1092,4.01,0.04 853 | 1094,4,0.06 854 | 1096,4.03,0.04 855 | 1098,4.29,0.05 856 | 1100,4.08,0.07 857 | 1102,4.03,0.06 858 | 1104,3.93,0.06 859 | 1106,3.83,0.05 860 | 1108,3.67,0.06 861 | 1110,3.85,0.06 862 | 1112,3.84,0.05 863 | 1114,4.12,0.05 864 | 1116,4.14,0.05 865 | 1118,4.2,0.05 866 | 1120,4.09,0.08 867 | 1122,4.47,0.06 868 | 1124,4.34,0.09 869 | 1126,4.5,0.03 870 | 1128,4.38,0.06 871 | 1130,4.32,0.08 872 | 1132,4.05,0.07 873 | 1134,4.22,0.06 874 | 1136,4.24,0.05 875 | 1138,4.02,0.04 876 | 1140,4.02,0.06 877 | 1142,3.97,0.06 878 | 1144,3.99,0.05 879 | 1146,3.86,0.04 880 | 1148,4.02,0.06 881 | 1150,3.82,0.05 882 | 1152,3.75,0.05 883 | 1154,3.76,0.04 884 | 1156,3.79,0.04 885 | 1158,3.68,0.05 886 | 1160,3.6,0.06 887 | 1162,3.6,0.05 888 | 1164,3.66,0.06 889 | 1166,3.53,0.05 890 | 1168,3.56,0.05 891 | 1170,3.6,0.07 892 | 1172,3.73,0.05 893 | 1174,3.76,0.06 894 | 1176,3.74,0.06 895 | 1178,3.8,0.04 896 | 1180,3.6,0.06 897 | 1182,3.84,0.04 898 | 1184,3.65,0.05 899 | 1186,3.77,0.05 900 | 1188,3.67,0.08 901 | 1190,4.05,0.03 902 | 1192,4.14,0.08 903 | 1194,4.27,0.06 904 | 1196,4.28,0.07 905 | 1198,4.43,0.06 906 | 1200,4.42,0.06 907 | 1202,4.2,0.09 908 | 1204,4.34,0.06 909 | 1206,4.16,0.07 910 | 1208,4.32,0.06 911 | 1210,4.2,0.07 912 | 1212,4.08,0.07 913 | 1214,4.1,0.06 914 | 1216,3.82,0.09 915 | 1218,3.73,0.11 916 | 1220,3.97,0.07 917 | 1222,3.94,0.07 918 | 1224,3.74,0.06 919 | 1226,3.63,0.09 920 | 1228,3.55,0.08 921 | 1230,3.42,0.06 922 | 1232,3.41,0.05 923 | 1234,3.34,0.1 924 | 1236,3.38,0.07 925 | 1238,3.35,0.07 926 | 1240,3.33,0.05 927 | 1242,3.47,0.1 928 | 1244,3.85,0.07 929 | 1246,4.1,0.07 930 | 1248,4.36,0.03 931 | 1250,4.31,0.06 932 | 1252,4.25,0.05 933 | 1254,4.27,0.05 934 | 1256,4.11,0.05 935 | 1258,3.9,0.08 936 | 1260,3.87,0.05 937 | 1262,4.07,0.07 938 | 1264,3.96,0.07 939 | 1266,3.91,0.07 940 | 1268,3.91,0.08 941 | 1270,3.84,0.07 942 | 1272,3.81,0.07 943 | 1274,3.84,0.05 944 | 1276,3.71,0.07 945 | 1278,3.67,0.04 946 | 1280,3.56,0.05 947 | 1282,3.65,0.05 948 | 1284,3.84,0.04 949 | 1286,3.97,0.04 950 | 1288,4.26,0.05 951 | 1290,4.35,0.05 952 | 1292,4.14,0.07 953 | 1294,3.94,0.08 954 | 1296,4.2,0.03 955 | 1298,4.15,0.05 956 | 1300,4.07,0.03 957 | 1302,4.06,0.06 958 | 1304,3.97,0.04 959 | 1306,3.9,0.08 960 | 1308,3.8,0.04 961 | 1310,3.65,0.06 962 | 1312,3.69,0.03 963 | 1314,3.71,0.05 964 | 1316,3.59,0.05 965 | 1318,3.73,0.06 966 | 1320,3.95,0.03 967 | 1322,3.94,0.05 968 | 1324,3.99,0.06 969 | 1326,4,0.06 970 | 1328,4.09,0.07 971 | 1330,4.06,0.07 972 | 1332,4.02,0.07 973 | 1334,4.19,0.07 974 | 1336,4.19,0.05 975 | 1338,4.1,0.08 976 | 1340,4.19,0.05 977 | 1342,4.07,0.07 978 | 1344,3.88,0.08 979 | 1346,3.86,0.07 980 | 1348,3.67,0.08 981 | 1350,3.59,0.06 982 | 1352,3.49,0.06 983 | 1354,3.41,0.06 984 | 1356,3.5,0.05 985 | 1358,3.55,0.05 986 | 1360,3.63,0.07 987 | 1362,3.8,0.06 988 | 1364,3.98,0.08 989 | 1366,3.99,0.07 990 | 1368,4.2,0.04 991 | 1370,4.04,0.06 992 | 1372,4.26,0.04 993 | 1374,4.21,0.05 994 | 1376,4.08,0.06 995 | 1378,4.2,0.08 996 | 1380,4.05,0.06 997 | 1382,3.96,0.06 998 | 1384,3.82,0.05 999 | 1386,3.72,0.08 1000 | 1388,3.61,0.07 1001 | 1390,3.73,0.06 1002 | 1392,3.59,0.04 1003 | 1394,3.7,0.11 1004 | 1396,3.54,0.04 1005 | 1398,3.49,0.05 1006 | 1400,3.56,0.08 1007 | 1402,3.63,0.05 1008 | 1404,3.74,0.08 1009 | 1406,3.97,0.06 1010 | 1408,3.97,0.12 1011 | 1410,4.2,0.07 1012 | 1412,4.4,0.08 1013 | 1414,4.22,0.08 1014 | 1416,3.96,0.12 1015 | 1418,3.84,0.07 1016 | 1420,3.96,0.06 1017 | 1422,3.83,0.09 1018 | 1424,3.72,0.07 1019 | 1426,3.72,0.06 1020 | 1428,3.61,0.06 1021 | 1430,3.52,0.05 1022 | 1432,3.38,0.05 1023 | 1434,3.38,0.06 1024 | 1436,3.24,0.09 1025 | 1438,3.24,0.07 1026 | 1440,3.28,0.07 1027 | 1442,3.34,0.04 1028 | 1444,3.33,0.05 1029 | 1446,3.36,0.05 1030 | 1448,3.35,0.06 1031 | 1450,3.49,0.06 1032 | 1452,3.8,0.13 1033 | 1454,4.2,0.13 1034 | 1456,4.31,0.07 1035 | 1458,4.24,0.06 1036 | 1460,4.1,0.08 1037 | 1462,4.07,0.06 1038 | 1464,4.22,0.09 1039 | 1466,3.99,0.09 1040 | 1468,3.87,0.13 1041 | 1470,3.62,0.07 1042 | 1472,3.45,0.07 1043 | 1474,3.38,0.08 1044 | 1476,3.31,0.08 1045 | 1478,3.42,0.07 1046 | 1480,3.39,0.08 1047 | 1482,3.44,0.07 1048 | 1484,3.57,0.1 1049 | 1486,3.42,0.05 1050 | 1488,3.42,0.05 1051 | 1490,3.51,0.05 1052 | 1492,3.77,0.1 1053 | 1494,4.05,0.09 1054 | 1496,4.36,0.05 1055 | 1498,4.24,0.07 1056 | 1500,4.21,0 1057 | 1502.5,4.29,0.06 1058 | 1505,4.16,0.1 1059 | 1507.5,4.15,0.06 1060 | 1510,4.02,0.06 1061 | 1512.5,3.74,0.08 1062 | 1515,3.69,0.08 1063 | 1517.5,3.79,0.11 1064 | 1520,3.64,0.07 1065 | 1522.5,3.67,0.05 1066 | 1525,3.7,0.07 1067 | 1527.5,3.89,0.08 1068 | 1530,3.96,0.07 1069 | 1532.5,4.2,0.11 1070 | 1535,4.41,0.09 1071 | 1537.5,4.35,0.07 1072 | 1540,4.38,0.07 1073 | 1542.5,4.3,0.06 1074 | 1545,4.07,0.06 1075 | 1547.5,3.97,0.05 1076 | 1550,3.82,0.08 1077 | 1552.5,3.68,0.07 1078 | 1555,3.72,0.08 1079 | 1557.5,3.79,0.06 1080 | 1560,3.76,0.05 1081 | 1562.5,3.58,0.06 1082 | 1565,3.56,0.05 1083 | 1567.5,3.73,0.05 1084 | 1570,3.85,0.07 1085 | 1572.5,4.17,0.05 1086 | 1575,4.24,0.06 1087 | 1577.5,4.18,0.07 1088 | 1580,3.99,0.07 1089 | 1582.5,3.99,0.07 1090 | 1585,3.8,0.1 1091 | 1587.5,3.66,0.07 1092 | 1590,3.72,0.04 1093 | 1592.5,3.86,0.07 1094 | 1595,3.71,0.05 1095 | 1597.5,3.61,0.04 1096 | 1600,3.53,0.06 1097 | 1602.5,3.37,0.04 1098 | 1605,3.55,0.05 1099 | 1607.5,3.66,0.08 1100 | 1610,3.66,0.07 1101 | 1612.5,3.88,0.05 1102 | 1615,3.84,0.06 1103 | 1617.5,3.9,0.05 1104 | 1620,3.65,0.05 1105 | 1622.5,3.68,0.05 1106 | 1625,3.76,0.04 1107 | 1627.5,4.01,0.07 1108 | 1630,3.55,0.06 1109 | 1632.5,3.57,0.07 1110 | 1635,3.56,0.07 1111 | 1637.5,3.6,0.08 1112 | 1640,3.68,0.08 1113 | 1642.5,3.88,0.06 1114 | 1645,4.05,0.07 1115 | 1647.5,4.17,0.08 1116 | 1650,4.18,0.06 1117 | 1652.5,4.25,0.06 1118 | 1655,4.28,0.06 1119 | 1657.5,4.11,0.06 1120 | 1660,4.13,0.06 1121 | 1662.5,4.08,0.07 1122 | 1665,4.13,0.06 1123 | 1667.5,3.91,0.06 1124 | 1670,3.88,0.08 1125 | 1672.5,3.86,0.06 1126 | 1675,3.55,0.08 1127 | 1677.5,3.72,0.05 1128 | 1680,3.65,0.06 1129 | 1682.5,3.57,0.07 1130 | 1685,3.59,0.05 1131 | 1687.5,3.74,0.05 1132 | 1690,3.72,0.06 1133 | 1692.5,3.75,0.06 1134 | 1695,3.82,0.05 1135 | 1697.5,3.77,0.09 1136 | 1700,4.09,0.06 1137 | 1702.5,4.15,0.06 1138 | 1705,4.12,0.07 1139 | 1707.5,4.17,0.06 1140 | 1710,3.93,0.06 1141 | 1712.5,3.86,0.07 1142 | 1715,3.83,0.06 1143 | 1717.5,3.57,0.06 1144 | 1720,3.52,0.06 1145 | 1722.5,3.72,0.07 1146 | 1725,3.79,0.07 1147 | 1727.5,3.8,0.07 1148 | 1730,3.74,0.1 1149 | 1732.5,3.86,0.08 1150 | 1735,3.6,0.07 1151 | 1737.5,3.6,0.06 1152 | 1740,3.71,0.08 1153 | 1742.5,3.69,0.1 1154 | 1745,4.13,0.07 1155 | 1747.5,4.21,0.08 1156 | 1750,4.16,0.05 1157 | 1752.5,3.85,0.07 1158 | 1755,3.74,0.04 1159 | 1757.5,3.83,0.08 1160 | 1760,3.53,0.09 1161 | 1762.5,3.63,0.08 1162 | 1765,3.49,0.08 1163 | 1767.5,3.52,0.08 1164 | 1770,3.48,0.06 1165 | 1772.5,3.38,0.08 1166 | 1775,3.53,0.06 1167 | 1777.5,3.57,0.05 1168 | 1780,3.65,0.06 1169 | 1782.5,3.8,0.09 1170 | 1785,3.77,0.07 1171 | 1787.5,3.85,0.07 1172 | 1790,3.99,0.08 1173 | 1792.5,4.06,0.06 1174 | 1795,4.09,0.05 1175 | 1797.5,3.89,0.1 1176 | 1800,3.95,0.04 1177 | 1802.5,3.8,0.05 1178 | 1805,3.68,0.04 1179 | 1807.5,3.66,0.07 1180 | 1810,3.52,0.06 1181 | 1812.5,3.68,0.06 1182 | 1815,3.61,0.06 1183 | 1817.5,3.98,0.06 1184 | 1820,3.82,0.08 1185 | 1822.5,3.73,0.08 1186 | 1825,3.72,0.07 1187 | 1827.5,3.65,0.04 1188 | 1830,3.42,0.08 1189 | 1832.5,3.63,0.07 1190 | 1835,3.68,0.07 1191 | 1837.5,3.57,0.06 1192 | 1840,3.57,0.06 1193 | 1842.5,3.57,0.1 1194 | 1845,3.61,0.1 1195 | 1847.5,3.8,0.08 1196 | 1850,3.62,0.11 1197 | 1852.5,3.61,0.06 1198 | 1855,3.56,0.07 1199 | 1857.5,3.64,0.07 1200 | 1860,3.89,0.05 1201 | 1862.5,4.19,0.06 1202 | 1865,4.16,0.07 1203 | 1867.5,3.97,0.06 1204 | 1870,3.95,0.11 1205 | 1872.5,3.83,0.09 1206 | 1875,3.84,0.07 1207 | 1877.5,3.73,0.11 1208 | 1880,3.77,0.09 1209 | 1882.5,3.69,0.06 1210 | 1885,3.75,0.05 1211 | 1887.5,3.59,0.06 1212 | 1890,3.68,0.06 1213 | 1892.5,3.61,0.05 1214 | 1895,3.74,0.07 1215 | 1897.5,3.69,0.08 1216 | 1900,4.02,0.05 1217 | 1902.5,3.93,0.12 1218 | 1905,4.01,0.06 1219 | 1907.5,3.83,0.09 1220 | 1910,3.81,0.11 1221 | 1912.5,3.81,0.07 1222 | 1915,3.7,0.06 1223 | 1917.5,3.64,0.07 1224 | 1920,3.7,0.06 1225 | 1922.5,3.65,0.08 1226 | 1925,3.5,0.07 1227 | 1927.5,3.48,0.09 1228 | 1930,3.51,0.08 1229 | 1932.5,3.45,0.09 1230 | 1935,3.52,0.05 1231 | 1937.5,3.58,0.09 1232 | 1940,3.51,0.08 1233 | 1942.5,4.02,0.05 1234 | 1945,4.03,0.1 1235 | 1947.5,4.17,0.07 1236 | 1950,4.1,0.07 1237 | 1952.5,4.02,0.06 1238 | 1955,3.89,0.07 1239 | 1957.5,3.77,0.11 1240 | 1960,3.86,0.09 1241 | 1962.5,3.9,0.05 1242 | 1965,3.74,0.07 1243 | 1967.5,3.61,0.1 1244 | 1970,3.75,0.07 1245 | 1972.5,3.5,0.07 1246 | 1975,3.55,0.06 1247 | 1977.5,3.45,0.04 1248 | 1980,3.33,0.04 1249 | 1982.5,3.38,0.07 1250 | 1985,3.36,0.07 1251 | 1987.5,3.52,0.07 1252 | 1990,3.65,0.08 1253 | 1992.5,3.68,0.1 1254 | 1995,3.58,0.09 1255 | 1997.5,3.69,0.08 1256 | 2000,3.85,0.06 1257 | 2002.5,3.81,0.09 1258 | 2005,3.92,0.07 1259 | 2007.5,3.89,0.07 1260 | 2010,3.55,0.06 1261 | 2012.5,3.63,0.09 1262 | 2015,3.81,0.08 1263 | 2017.5,3.54,0.07 1264 | 2020,3.57,0.07 1265 | 2022.5,3.46,0.08 1266 | 2025,3.24,0.07 1267 | 2027.5,3.44,0.07 1268 | 2030,3.34,0.08 1269 | 2032.5,3.36,0.06 1270 | 2035,3.56,0.05 1271 | 2037.5,3.63,0.07 1272 | 2040,3.67,0.06 1273 | 2042.5,3.62,0.07 1274 | 2045,3.92,0.07 1275 | 2047.5,3.78,0.07 1276 | 2050,3.71,0.08 1277 | 2052.5,3.62,0.09 1278 | 2055,3.6,0.06 1279 | 2057.5,3.72,0.08 1280 | 2060,3.74,0.08 1281 | 2062.5,3.88,0.05 1282 | 2065,4.18,0.07 1283 | 2067.5,4.18,0.06 1284 | 2070,4.21,0.07 1285 | 2072.5,4.28,0.05 1286 | 2075,4.16,0.06 1287 | 2077.5,4.15,0.05 1288 | 2080,3.96,0.06 1289 | 2082.5,3.99,0.09 1290 | 2085,3.85,0.07 1291 | 2087.5,3.88,0.08 1292 | 2090,3.7,0.07 1293 | 2092.5,3.63,0.06 1294 | 2095,3.49,0.07 1295 | 2097.5,3.46,0.07 1296 | 2100,3.44,0.1 1297 | 2102.5,3.55,0.07 1298 | 2105,3.66,0.07 1299 | 2107.5,3.63,0.08 1300 | 2110,3.51,0.06 1301 | 2112.5,3.5,0.06 1302 | 2115,3.5,0.1 1303 | 2117.5,3.72,0.08 1304 | 2120,3.68,0.1 1305 | 2122.5,3.68,0.08 1306 | 2125,3.5,0.1 1307 | 2127.5,3.47,0.09 1308 | 2130,3.32,0.09 1309 | 2132.5,3.29,0.07 1310 | 2135,3.29,0.12 1311 | 2137.5,3.34,0.1 1312 | 2140,3.23,0.07 1313 | 2142.5,3.44,0.07 1314 | 2145,3.6,0.07 1315 | 2147.5,4,0.06 1316 | 2150,4.15,0.06 1317 | 2152.5,4.22,0.07 1318 | 2155,4.23,0.06 1319 | 2157.5,4.1,0.05 1320 | 2160,4.15,0.06 1321 | 2162.5,3.94,0.07 1322 | 2165,3.88,0.04 1323 | 2167.5,3.77,0.06 1324 | 2170,3.69,0.03 1325 | 2172.5,3.67,0.07 1326 | 2175,3.56,0.06 1327 | 2177.5,3.5,0.05 1328 | 2180,3.36,0.08 1329 | 2182.5,3.41,0.08 1330 | 2185,3.42,0.04 1331 | 2187.5,3.38,0.09 1332 | 2190,3.56,0.05 1333 | 2192.5,3.68,0.05 1334 | 2195,3.77,0.07 1335 | 2197.5,3.83,0.05 1336 | 2200,3.86,0.07 1337 | 2202.5,3.83,0.06 1338 | 2205,3.74,0.05 1339 | 2207.5,3.6,0.06 1340 | 2210,3.59,0.05 1341 | 2212.5,3.46,0.06 1342 | 2215,3.59,0.06 1343 | 2217.5,3.61,0.06 1344 | 2220,3.57,0.05 1345 | 2222.5,3.49,0.04 1346 | 2225,3.39,0.04 1347 | 2227.5,3.42,0.04 1348 | 2230,3.46,0.06 1349 | 2232.5,3.49,0.06 1350 | 2235,3.56,0.07 1351 | 2237.5,3.8,0.05 1352 | 2240,4.01,0.07 1353 | 2242.5,3.87,0.06 1354 | 2245,3.8,0.06 1355 | 2247.5,3.72,0.05 1356 | 2250,3.61,0.06 1357 | 2252.5,3.45,0.09 1358 | 2255,3.39,0.06 1359 | 2257.5,3.32,0.07 1360 | 2260,3.21,0.08 1361 | 2262.5,3.3,0.06 1362 | 2265,3.45,0.1 1363 | 2267.5,3.37,0.12 1364 | 2270,3.48,0.06 1365 | 2272.5,3.5,0.05 1366 | 2275,3.87,0.07 1367 | 2277.5,3.8,0.05 1368 | 2280,3.84,0.04 1369 | 2282.5,3.91,0.09 1370 | 2285,3.8,0.05 1371 | 2287.5,3.69,0.08 1372 | 2290,3.68,0.05 1373 | 2292.5,3.46,0.08 1374 | 2295,3.45,0.06 1375 | 2297.5,3.27,0.07 1376 | 2300,3.28,0.11 1377 | 2302.5,3.36,0.07 1378 | 2305,3.35,0.06 1379 | 2307.5,3.43,0.08 1380 | 2310,3.61,0.04 1381 | 2312.5,3.7,0.06 1382 | 2315,3.74,0.08 1383 | 2317.5,3.75,0.07 1384 | 2320,3.76,0.04 1385 | 2322.5,3.6,0.08 1386 | 2325,3.52,0.04 1387 | 2327.5,3.64,0.06 1388 | 2330,3.64,0.07 1389 | 2332.5,3.52,0.08 1390 | 2335,3.39,0.07 1391 | 2337.5,3.29,0.06 1392 | 2340,3.2,0.09 1393 | 2342.5,3.33,0.07 1394 | 2345,3.37,0.06 1395 | 2347.5,3.25,0.07 1396 | 2350,3.58,0.06 1397 | 2352.5,3.72,0.05 1398 | 2355,3.8,0.05 1399 | 2357.5,3.96,0.06 1400 | 2360,3.92,0.03 1401 | 2362.5,3.76,0.05 1402 | 2365,3.87,0.04 1403 | 2367.5,3.63,0.07 1404 | 2370,3.72,0.05 1405 | 2372.5,3.63,0.07 1406 | 2375,3.39,0.07 1407 | 2377.5,3.38,0.06 1408 | 2380,3.37,0.05 1409 | 2382.5,3.24,0.1 1410 | 2385,3.33,0.07 1411 | 2387.5,3.48,0.06 1412 | 2390,3.54,0.08 1413 | 2392.5,3.6,0.08 1414 | 2395,3.41,0.09 1415 | 2397.5,3.46,0.07 1416 | 2400,3.48,0.09 1417 | 2402.5,3.67,0.07 1418 | 2405,3.69,0.07 1419 | 2407.5,3.41,0.07 1420 | 2410,3.29,0.08 1421 | 2412.5,3.37,0.06 1422 | 2415,3.37,0.06 1423 | 2417.5,3.33,0.06 1424 | 2420,3.35,0.07 1425 | 2422.5,3.53,0.06 1426 | 2425,3.49,0.08 1427 | 2427.5,3.66,0.05 1428 | 2430,3.93,0.06 1429 | 2432.5,4.17,0.06 1430 | 2435,4.09,0.06 1431 | 2437.5,4.14,0.05 1432 | 2440,4.01,0.04 1433 | 2442.5,4,0.07 1434 | 2445,3.95,0.07 1435 | 2447.5,3.91,0.06 1436 | 2450,3.73,0.06 1437 | 2452.5,3.69,0.05 1438 | 2455,3.45,0.05 1439 | 2457.5,3.39,0.05 1440 | 2460,3.39,0.06 1441 | 2462.5,3.21,0.07 1442 | 2465,3.25,0.06 1443 | 2467.5,3.31,0.06 1444 | 2470,3.32,0.06 1445 | 2472.5,3.43,0.07 1446 | 2475,3.57,0.08 1447 | 2477.5,3.7,0.07 1448 | 2480,3.7,0.05 1449 | 2482.5,3.96,0.05 1450 | 2485,3.99,0.1 1451 | 2487.5,4.16,0.06 1452 | 2490,3.83,0.08 1453 | 2492.5,3.65,0.09 1454 | 2495,3.62,0.05 1455 | 2497.5,3.43,0.06 1456 | 2500,3.18,0.08 1457 | 2502.5,3.35,0.05 1458 | 2505,3.48,0.05 1459 | 2507.5,3.42,0.06 1460 | 2510,3.65,0.05 1461 | 2512.5,3.76,0.09 1462 | 2515,3.89,0.07 1463 | 2517.5,4.12,0.07 1464 | 2520,4.13,0.07 1465 | 2522.5,4.06,0.06 1466 | 2525,4.13,0.03 1467 | 2527.5,4.03,0.04 1468 | 2530,3.89,0.06 1469 | 2532.5,3.93,0.04 1470 | 2535,3.73,0.09 1471 | 2537.5,3.74,0.05 1472 | 2540,3.63,0.07 1473 | 2542.5,3.35,0.08 1474 | 2545,3.27,0.06 1475 | 2547.5,3.18,0.07 1476 | 2550,3.21,0.06 1477 | 2552.5,3.28,0.08 1478 | 2555,3.43,0.06 1479 | 2557.5,3.39,0.07 1480 | 2560,3.37,0.06 1481 | 2562.5,3.38,0.07 1482 | 2565,3.63,0.05 1483 | 2567.5,3.53,0.06 1484 | 2570,3.47,0.05 1485 | 2572.5,3.47,0.06 1486 | 2575,3.41,0.07 1487 | 2577.5,3.32,0.06 1488 | 2580,3.23,0.05 1489 | 2582.5,3.26,0.05 1490 | 2585,3.16,0.08 1491 | 2587.5,3.27,0.07 1492 | 2590,3.43,0.06 1493 | 2592.5,3.45,0.07 1494 | 2595,3.47,0.05 1495 | 2597.5,3.74,0.05 1496 | 2600,3.9,0.05 1497 | 2602.5,3.86,0.06 1498 | 2605,3.81,0.06 1499 | 2607.5,3.85,0.05 1500 | 2610,3.62,0.07 1501 | 2612.5,3.64,0.05 1502 | 2615,3.44,0.08 1503 | 2617.5,3.45,0.07 1504 | 2620,3.27,0.05 1505 | 2622.5,3.24,0.05 1506 | 2625,3.31,0.08 1507 | 2627.5,3.26,0.08 1508 | 2630,3.23,0.06 1509 | 2632.5,3.44,0.05 1510 | 2635,3.45,0.07 1511 | 2637.5,3.48,0.06 1512 | 2640,3.66,0.04 1513 | 2642.5,3.72,0.05 1514 | 2645,3.84,0.06 1515 | 2647.5,3.69,0.05 1516 | 2650,3.51,0.09 1517 | 2652.5,3.41,0.06 1518 | 2655,3.35,0.07 1519 | 2657.5,3.14,0.09 1520 | 2660,3.23,0.08 1521 | 2662.5,3.05,0.08 1522 | 2665,3.25,0.05 1523 | 2667.5,3.24,0.09 1524 | 2670,3.19,0.06 1525 | 2672.5,3.2,0.07 1526 | 2675,3.22,0.08 1527 | 2677.5,3.36,0.07 1528 | 2680,3.37,0.07 1529 | 2682.5,3.54,0.08 1530 | 2685,3.68,0.06 1531 | 2687.5,3.75,0.03 1532 | 2690,3.61,0.06 1533 | 2692.5,3.53,0.06 1534 | 2695,3.61,0.08 1535 | 2697.5,3.57,0.07 1536 | 2700,3.61,0.05 1537 | 2702.5,3.48,0.07 1538 | 2705,3.79,0.04 1539 | 2707.5,3.76,0.07 1540 | 2710,3.7,0.05 1541 | 2712.5,3.76,0.06 1542 | 2715,3.87,0.04 1543 | 2717.5,3.8,0.05 1544 | 2720,3.8,0.06 1545 | 2722.5,3.77,0.06 1546 | 2725,3.66,0.08 1547 | 2727.5,3.61,0.07 1548 | 2730,3.47,0.05 1549 | 2732.5,3.39,0.05 1550 | 2735,3.27,0.06 1551 | 2737.5,3.12,0.04 1552 | 2740,3.18,0.05 1553 | 2742.5,3.04,0.06 1554 | 2745,3.15,0.05 1555 | 2747.5,3.09,0.04 1556 | 2750,3.13,0.05 1557 | 2752.5,3.21,0.04 1558 | 2755,3.19,0.05 1559 | 2757.5,3.16,0.05 1560 | 2760,3.27,0.05 1561 | 2762.5,3.24,0.04 1562 | 2765,3.24,0.05 1563 | 2767.5,3.15,0.05 1564 | 2770,3.13,0.04 1565 | 2772.5,3.28,0.05 1566 | 2775,3.31,0.04 1567 | 2777.5,3.23,0.05 1568 | 2780,3.18,0.05 1569 | 2782.5,3.16,0.05 1570 | 2785,3.19,0.05 1571 | 2787.5,3.24,0.06 1572 | 2790,3.21,0.06 1573 | 2792.5,3.26,0.05 1574 | 2795,3.41,0.07 1575 | 2797.5,3.4,0.05 1576 | 2800,3.5,0.06 1577 | 2802.5,3.74,0.05 1578 | 2805,3.78,0.05 1579 | 2807.5,3.73,0.06 1580 | 2810,3.65,0.07 1581 | 2812.5,3.66,0.05 1582 | 2815,3.63,0.05 1583 | 2817.5,3.45,0.05 1584 | 2820,3.38,0.06 1585 | 2822.5,3.26,0.05 1586 | 2825,3.15,0.08 1587 | 2827.5,3.12,0.06 1588 | 2830,3.16,0.06 1589 | 2832.5,3.11,0.04 1590 | 2835,3.17,0.08 1591 | 2837.5,3.27,0.08 1592 | 2840,3.34,0.05 1593 | 2842.5,3.42,0.06 1594 | 2845,3.38,0.07 1595 | 2847.5,3.5,0.07 1596 | 2850,3.4,0.06 1597 | 2852.5,3.42,0.05 1598 | 2855,3.44,0.06 1599 | 2857.5,3.33,0.06 1600 | 2860,3.19,0.08 1601 | 2862.5,3.25,0.06 1602 | 2865,3.37,0.05 1603 | 2867.5,3.31,0.06 1604 | 2870,3.3,0.09 1605 | 2872.5,3.23,0.06 1606 | 2875,3.23,0.05 1607 | 2877.5,3.47,0.06 1608 | 2880,3.48,0.06 1609 | 2882.5,3.45,0.04 1610 | 2885,3.5,0.08 1611 | 2887.5,3.46,0.06 1612 | 2890,3.49,0.04 1613 | 2892.5,3.34,0.07 1614 | 2895,3.29,0.05 1615 | 2897.5,3.14,0.05 1616 | 2900,3.22,0.06 1617 | 2902.5,3.21,0.07 1618 | 2905,3.32,0.05 1619 | 2907.5,3.28,0.08 1620 | 2910,3.27,0.04 1621 | 2912.5,3.3,0.05 1622 | 2915,3.49,0.08 1623 | 2917.5,3.41,0.05 1624 | 2920,3.51,0.05 1625 | 2922.5,3.5,0.06 1626 | 2925,3.5,0.04 1627 | 2927.5,3.33,0.09 1628 | 2930,3.43,0.1 1629 | 2932.5,3.51,0.07 1630 | 2935,3.31,0.06 1631 | 2937.5,3.18,0.06 1632 | 2940,3.09,0.08 1633 | 2942.5,2.95,0.07 1634 | 2945,2.95,0.04 1635 | 2947.5,3.06,0.06 1636 | 2950,2.93,0.06 1637 | 2952.5,2.92,0.07 1638 | 2955,3.16,0.05 1639 | 2957.5,3.23,0.06 1640 | 2960,3.08,0.08 1641 | 2962.5,3.18,0.06 1642 | 2965,3.16,0.05 1643 | 2967.5,3.35,0.06 1644 | 2970,3.3,0.06 1645 | 2972.5,3.33,0.04 1646 | 2975,3.48,0.06 1647 | 2977.5,3.43,0.04 1648 | 2980,3.45,0.07 1649 | 2982.5,3.26,0.06 1650 | 2985,3.07,0.06 1651 | 2987.5,3.15,0.06 1652 | 2990,3.18,0.07 1653 | 2992.5,3.21,0.04 1654 | 2995,3.2,0.07 1655 | 2997.5,3.22,0.06 1656 | 3000,3.36,0 1657 | 3005,3.44,0.04 1658 | 3010,3.46,0.04 1659 | 3015,3.52,0.04 1660 | 3020,3.49,0.04 1661 | 3025,3.32,0.04 1662 | 3030,3.13,0.04 1663 | 3035,3.09,0.06 1664 | 3040,3.23,0.05 1665 | 3045,3.31,0.04 1666 | 3050,3.33,0.06 1667 | 3055,3.14,0.04 1668 | 3060,2.95,0.06 1669 | 3065,3.05,0.06 1670 | 3070,3.09,0.06 1671 | 3075,3.1,0.04 1672 | 3080,3.09,0.05 1673 | 3085,2.94,0.06 1674 | 3090,3.18,0.05 1675 | 3095,3.18,0.05 1676 | 3100,3.08,0.05 1677 | 3105,3.06,0.06 1678 | 3110,3.13,0.04 1679 | 3115,3.22,0.04 1680 | 3120,3.26,0.03 1681 | 3125,3.34,0.04 1682 | 3130,3.38,0.03 1683 | 3135,3.45,0.05 1684 | 3140,3.38,0.05 1685 | 3145,3.35,0.05 1686 | 3150,3.16,0.05 1687 | 3155,2.95,0.04 1688 | 3160,3.01,0.05 1689 | 3165,3.04,0.05 1690 | 3170,3.14,0.04 1691 | 3175,3.19,0.04 1692 | 3180,3.16,0.05 1693 | 3185,3.08,0.05 1694 | 3190,2.95,0.05 1695 | 3195,3.09,0.04 1696 | 3200,3.02,0.07 1697 | 3205,3,0.05 1698 | 3210,3.02,0.05 1699 | 3215,3.2,0.04 1700 | 3220,3.13,0.04 1701 | 3225,3.21,0.04 1702 | 3230,3.13,0.03 1703 | 3235,3.24,0.05 1704 | 3240,3.04,0.05 1705 | 3245,3.04,0.06 1706 | 3250,3.03,0.04 1707 | 3255,3.17,0.04 1708 | 3260,3.16,0.04 1709 | 3265,3.32,0.05 1710 | 3270,3.27,0.05 1711 | 3275,3.33,0.05 1712 | 3280,3.26,0.04 1713 | 3285,3.4,0.04 1714 | 3290,3.65,0.04 1715 | 3295,3.74,0.04 1716 | 3300,3.71,0.03 1717 | 3305,3.42,0.04 1718 | 3310,3.37,0.05 1719 | 3315,3.22,0.05 1720 | 3320,3.1,0.04 1721 | 3325,3.2,0.05 1722 | 3330,3.21,0.05 1723 | 3335,3.25,0.04 1724 | 3340,3.41,0.04 1725 | 3345,3.31,0.04 1726 | 3350,3.18,0.04 1727 | 3355,3.22,0.05 1728 | 3360,3.17,0.04 1729 | 3365,3.11,0.03 1730 | 3370,3.15,0.04 1731 | 3375,3.35,0.03 1732 | 3380,3.35,0.03 1733 | 3385,3.25,0.04 1734 | 3390,3.16,0.05 1735 | 3395,3.08,0.04 1736 | 3400,3.13,0.04 1737 | 3405,3.14,0.04 1738 | 3410,3.08,0.05 1739 | 3415,2.99,0.05 1740 | 3420,3.1,0.05 1741 | 3425,3.2,0.05 1742 | 3430,3.11,0.04 1743 | 3435,2.9,0.04 1744 | 3440,2.9,0.03 1745 | 3445,3.04,0.03 1746 | 3450,3.12,0.03 1747 | 3455,3.03,0.04 1748 | 3460,3.07,0.06 1749 | 3465,3.23,0.05 1750 | 3470,3.09,0.04 1751 | 3475,2.92,0.04 1752 | 3480,2.89,0.05 1753 | 3485,3,0.04 1754 | 3490,2.98,0.04 1755 | 3495,3.06,0.04 1756 | 3500,2.93,0.05 1757 | 3505,2.95,0.05 1758 | 3510,2.97,0.06 1759 | 3515,3.04,0.05 1760 | 3520,3.11,0.04 1761 | 3525,3.18,0.05 1762 | 3530,3.14,0.04 1763 | 3535,3.01,0.04 1764 | 3540,2.92,0.04 1765 | 3545,3.01,0.03 1766 | 3550,3.11,0.04 1767 | 3555,3.12,0.03 1768 | 3560,3.14,0.03 1769 | 3565,3.05,0.04 1770 | 3570,2.89,0.04 1771 | 3575,2.94,0.04 1772 | 3580,3.18,0.03 1773 | 3585,3.16,0.03 1774 | 3590,3.15,0.05 1775 | 3595,2.99,0.06 1776 | 3600,3,0.04 1777 | 3605,3.09,0.05 1778 | 3610,2.93,0.04 1779 | 3615,3.04,0.04 1780 | 3620,3.2,0.05 1781 | 3625,3.33,0.04 1782 | 3630,3.41,0.04 1783 | 3635,3.29,0.04 1784 | 3640,3.05,0.05 1785 | 3645,2.98,0.04 1786 | 3650,2.96,0.03 1787 | 3655,3.14,0.04 1788 | 3660,3.18,0.05 1789 | 3665,3.4,0.03 1790 | 3670,3.45,0.03 1791 | 3675,3.21,0.04 1792 | 3680,3.05,0.03 1793 | 3685,2.98,0.04 1794 | 3690,2.92,0.04 1795 | 3695,3.02,0.04 1796 | 3700,3.05,0.05 1797 | 3705,3.1,0.04 1798 | 3710,3.28,0.05 1799 | 3715,3.29,0.04 1800 | 3720,2.97,0.04 1801 | 3725,2.83,0.06 1802 | 3730,3,0.04 1803 | 3735,2.93,0.04 1804 | 3740,2.96,0.04 1805 | 3745,3.2,0.05 1806 | 3750,3.08,0.05 1807 | 3755,2.98,0.05 1808 | 3760,2.93,0.04 1809 | 3765,2.89,0.03 1810 | 3770,3.09,0.03 1811 | 3775,3.08,0.04 1812 | 3780,3.05,0.04 1813 | 3785,2.97,0.04 1814 | 3790,3.06,0.06 1815 | 3795,3.21,0.07 1816 | 3800,3,0.06 1817 | 3805,3.1,0.05 1818 | 3810,3.05,0.04 1819 | 3815,3,0.06 1820 | 3820,2.99,0.05 1821 | 3825,3.22,0.04 1822 | 3830,3.26,0.04 1823 | 3835,3.05,0.04 1824 | 3840,2.86,0.04 1825 | 3845,2.88,0.05 1826 | 3850,2.9,0.05 1827 | 3855,2.89,0.05 1828 | 3860,2.89,0.04 1829 | 3865,3.17,0.05 1830 | 3870,3.16,0.05 1831 | 3875,3.25,0.04 1832 | 3880,3.01,0.06 1833 | 3885,2.95,0.04 1834 | 3890,2.89,0.04 1835 | 3895,3.06,0.04 1836 | 3900,2.92,0.04 1837 | 3905,2.92,0.03 1838 | 3910,2.87,0.03 1839 | 3915,3.07,0.04 1840 | 3920,3.08,0.03 1841 | 3925,2.91,0.04 1842 | 3930,2.89,0.04 1843 | 3935,2.83,0.05 1844 | 3940,2.97,0.05 1845 | 3945,3.04,0.03 1846 | 3950,3.02,0.04 1847 | 3955,2.9,0.06 1848 | 3960,2.89,0.05 1849 | 3965,2.94,0.04 1850 | 3970,3.01,0.05 1851 | 3975,3.01,0.06 1852 | 3980,3.06,0.05 1853 | 3985,3.06,0.08 1854 | 3990,3.24,0.06 1855 | 3995,3.3,0.04 1856 | 4000,3.23,0.05 1857 | 4005,3.16,0.06 1858 | 4010,2.96,0.06 1859 | 4015,2.95,0.05 1860 | 4020,3.07,0.05 1861 | 4025,3.02,0.04 1862 | 4030,3.12,0.04 1863 | 4035,3.17,0.05 1864 | 4040,3.2,0.05 1865 | 4045,3.16,0.04 1866 | 4050,3.06,0.04 1867 | 4055,3.06,0.06 1868 | 4060,3.1,0.04 1869 | 4065,3.01,0.04 1870 | 4070,3.08,0.05 1871 | 4075,3.02,0.07 1872 | 4080,3.01,0.04 1873 | 4085,3.03,0.06 1874 | 4090,3.07,0.04 1875 | 4095,3.07,0.05 1876 | 4100,2.87,0.05 1877 | 4105,2.88,0.05 1878 | 4110,2.87,0.04 1879 | 4115,2.91,0.04 1880 | 4120,2.94,0.04 1881 | 4125,3,0.05 1882 | 4130,2.82,0.03 1883 | 4135,2.98,0.04 1884 | 4140,2.92,0.04 1885 | 4145,2.98,0.04 1886 | 4150,3.11,0.05 1887 | 4155,3.16,0.06 1888 | 4160,3.11,0.05 1889 | 4165,3,0.05 1890 | 4170,3.06,0.09 1891 | 4175,2.99,0.05 1892 | 4180,2.87,0.09 1893 | 4185,2.86,0.04 1894 | 4190,2.95,0.06 1895 | 4195,3.04,0.05 1896 | 4200,3.11,0.04 1897 | 4205,3.04,0.06 1898 | 4210,3,0.04 1899 | 4215,2.85,0.04 1900 | 4220,3,0.04 1901 | 4225,2.98,0.05 1902 | 4230,2.91,0.04 1903 | 4235,3.03,0.04 1904 | 4240,3.03,0.04 1905 | 4245,3.06,0.04 1906 | 4250,2.99,0.03 1907 | 4255,3.1,0.08 1908 | 4260,2.95,0.06 1909 | 4265,2.96,0.04 1910 | 4270,2.88,0.09 1911 | 4275,3.06,0.07 1912 | 4280,2.9,0.04 1913 | 4285,2.95,0.06 1914 | 4290,3.02,0.04 1915 | 4295,3.03,0.05 1916 | 4300,3.04,0.05 1917 | 4305,2.88,0.04 1918 | 4310,2.86,0.05 1919 | 4315,2.85,0.05 1920 | 4320,2.84,0.06 1921 | 4325,2.83,0.05 1922 | 4330,3,0.05 1923 | 4335,2.85,0.06 1924 | 4340,2.73,0.05 1925 | 4345,2.87,0.04 1926 | 4350,2.84,0.08 1927 | 4355,2.89,0.07 1928 | 4360,3.03,0.04 1929 | 4365,3.07,0.05 1930 | 4370,2.95,0.05 1931 | 4375,2.89,0.06 1932 | 4380,2.98,0.04 1933 | 4385,2.76,0.06 1934 | 4390,2.83,0.06 1935 | 4395,2.94,0.06 1936 | 4400,2.99,0.04 1937 | 4405,3.08,0.03 1938 | 4410,3.03,0.05 1939 | 4415,3.13,0.04 1940 | 4420,2.97,0.05 1941 | 4425,2.94,0.04 1942 | 4430,2.88,0.05 1943 | 4435,2.92,0.06 1944 | 4440,2.88,0.05 1945 | 4445,2.9,0.05 1946 | 4450,3.03,0.05 1947 | 4455,2.95,0.05 1948 | 4460,2.85,0.04 1949 | 4465,2.85,0.05 1950 | 4470,2.87,0.06 1951 | 4475,2.86,0.06 1952 | 4480,2.95,0.05 1953 | 4485,2.92,0.04 1954 | 4490,3.1,0.07 1955 | 4495,3.1,0.06 1956 | 4500,3.12,0.06 1957 | 4505,3.07,0.06 1958 | 4510,2.93,0.05 1959 | 4515,2.99,0.07 1960 | 4520,2.79,0.07 1961 | 4525,3.01,0.05 1962 | 4530,3.04,0.05 1963 | 4535,3.09,0.05 1964 | 4540,2.87,0.04 1965 | 4545,2.81,0.08 1966 | 4550,2.88,0.05 1967 | 4555,2.9,0.04 1968 | 4560,3.02,0.05 1969 | 4565,2.93,0.05 1970 | 4570,2.98,0.04 1971 | 4575,3.16,0.05 1972 | 4580,3.11,0.04 1973 | 4585,3.1,0.04 1974 | 4590,3,0.04 1975 | 4595,3,0.03 1976 | 4600,2.98,0.04 1977 | 4605,3.09,0.04 1978 | 4610,3.14,0.06 1979 | 4615,3.05,0.05 1980 | 4620,3.04,0.05 1981 | 4625,3.01,0.04 1982 | 4630,3.02,0.06 1983 | 4635,2.95,0.05 1984 | 4640,2.95,0.06 1985 | 4645,2.93,0.05 1986 | 4650,3.09,0.05 1987 | 4655,3.13,0.06 1988 | 4660,2.88,0.05 1989 | 4665,2.97,0.06 1990 | 4670,2.86,0.05 1991 | 4675,2.92,0.06 1992 | 4680,2.86,0.06 1993 | 4685,3.06,0.07 1994 | 4690,3.17,0.05 1995 | 4695,3.08,0.04 1996 | 4700,3.13,0.04 1997 | 4705,2.97,0.05 1998 | 4710,2.92,0.06 1999 | 4715,3.03,0.04 2000 | 4720,2.95,0.06 2001 | 4725,3.13,0.04 2002 | 4730,3.14,0.05 2003 | 4735,3.09,0.04 2004 | 4740,2.91,0.04 2005 | 4745,2.96,0.04 2006 | 4750,3.04,0.04 2007 | 4755,2.86,0.07 2008 | 4760,2.92,0.05 2009 | 4765,3,0.03 2010 | 4770,3.2,0.06 2011 | 4775,3.17,0.06 2012 | 4780,3,0.04 2013 | 4785,2.99,0.05 2014 | 4790,2.93,0.05 2015 | 4795,2.96,0.05 2016 | 4800,2.99,0.03 2017 | 4805,2.99,0.08 2018 | 4810,3.15,0.05 2019 | 4815,3.15,0.04 2020 | 4820,3.03,0.05 2021 | 4825,2.83,0.05 2022 | 4830,2.85,0.06 2023 | 4835,2.96,0.06 2024 | 4840,3.04,0.06 2025 | 4845,3.24,0.05 2026 | 4850,3.3,0.05 2027 | 4855,3.08,0.06 2028 | 4860,3.06,0.05 2029 | 4865,2.98,0.05 2030 | 4870,2.88,0.06 2031 | 4875,2.86,0.05 2032 | 4880,2.91,0.06 2033 | 4885,3.18,0.06 2034 | 4890,3.27,0.1 2035 | 4895,3.3,0.07 2036 | 4900,3.15,0.06 2037 | 4905,3.03,0.05 2038 | 4910,2.85,0.06 2039 | 4915,2.85,0.04 2040 | 4920,2.96,0.05 2041 | 4925,2.77,0.07 2042 | 4930,2.91,0.04 2043 | 4935,3.03,0.06 2044 | 4940,3.07,0.05 2045 | 4945,3.03,0.07 2046 | 4950,3.05,0.06 2047 | 4955,2.84,0.12 2048 | 4960,2.86,0.07 2049 | 4965,2.91,0.08 2050 | 4970,2.93,0.09 2051 | 4975,2.94,0.06 2052 | 4980,3.17,0.06 2053 | 4985,2.95,0.07 2054 | 4990,2.74,0.05 2055 | 4995,2.85,0.05 2056 | 5000,2.79,0.04 2057 | 5005,2.95,0.06 2058 | 5010,2.94,0.06 2059 | 5015,2.87,0.07 2060 | 5020,2.74,0.07 2061 | 5025,2.74,0.1 2062 | 5030,2.77,0.06 2063 | 5035,2.79,0.08 2064 | 5040,3.06,0.06 2065 | 5045,3.17,0.05 2066 | 5050,3.04,0.07 2067 | 5055,3.06,0.08 2068 | 5060,2.85,0.06 2069 | 5065,2.9,0.1 2070 | 5070,2.93,0.08 2071 | 5075,2.69,0.07 2072 | 5080,2.78,0.09 2073 | 5085,2.81,0.07 2074 | 5090,2.66,0.06 2075 | 5095,2.88,0.06 2076 | 5100,3,0.11 2077 | 5105,3.04,0.05 2078 | 5110,2.92,0.04 2079 | 5115,2.86,0.07 2080 | 5120,2.8,0.08 2081 | 5125,2.72,0.02 2082 | 5130,2.68,0.06 2083 | 5135,2.65,0.08 2084 | 5140,2.94,0.07 2085 | 5145,2.9,0.05 2086 | 5150,2.89,0.09 2087 | 5155,2.91,0.07 2088 | 5160,2.82,0.13 2089 | 5165,2.95,0.05 2090 | 5170,3.02,0.09 2091 | 5175,3.21,0.1 2092 | 5180,3.11,0.08 2093 | 5185,3.02,0.08 2094 | 5190,3,0.07 2095 | 5195,2.82,0.11 2096 | 5200,2.86,0.08 2097 | 5205,3,0.11 2098 | 5210,2.96,0.06 2099 | 5215,2.87,0.06 2100 | 5220,2.84,0.09 2101 | 5225,2.93,0.07 2102 | 5230,2.98,0.05 2103 | 5235,2.77,0.08 2104 | 5240,2.92,0.07 2105 | 5245,2.97,0.09 2106 | 5250,3.06,0.09 2107 | 5255,3.09,0.12 2108 | 5260,3.01,0.07 2109 | 5265,2.98,0.08 2110 | 5270,2.8,0.07 2111 | 5275,2.89,0.11 2112 | 5280,2.89,0.08 2113 | 5285,2.8,0.06 2114 | 5290,2.92,0.03 2115 | 5295,2.97,0.06 2116 | 5300,2.91,0.06 2117 | 5305,2.79,0.04 2118 | 5310,2.79,0.09 2119 | 5315,2.84,0.07 2120 | 5320,2.91,0.09 -------------------------------------------------------------------------------- /data/MD982181.Khider.2014.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/MD982181.Khider.2014.lpd -------------------------------------------------------------------------------- /data/ODP846.Lawrence.2006.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/ODP846.Lawrence.2006.lpd -------------------------------------------------------------------------------- /data/Ocn-Palmyra.Nurhati.2011.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Ocn-Palmyra.Nurhati.2011.lpd -------------------------------------------------------------------------------- /data/Pages2k/Ant-WAIS-Divide.Severinghaus.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Ant-WAIS-Divide.Severinghaus.2012.lpd -------------------------------------------------------------------------------- /data/Pages2k/Arc-Kongressvatnet.D'Andrea.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Arc-Kongressvatnet.D'Andrea.2012.lpd -------------------------------------------------------------------------------- /data/Pages2k/Asi-SourthAndMiddleUrals.Demezhko.2007.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Asi-SourthAndMiddleUrals.Demezhko.2007.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-CoastofPortugal.Abrantes.2011.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-CoastofPortugal.Abrantes.2011.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-FinnishLakelands.Helama.2014.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-FinnishLakelands.Helama.2014.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-LakeSilvaplana.Trachsel.2010.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-LakeSilvaplana.Trachsel.2010.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-NorthernScandinavia.Esper.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-NorthernScandinavia.Esper.2012.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-NorthernSpain.Martin-Chivelet.2011.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-NorthernSpain.Martin-Chivelet.2011.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-SpanishPyrenees.Dorado-Linan.2012.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-SpanishPyrenees.Dorado-Linan.2012.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-SpannagelCave.Mangini.2005.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-SpannagelCave.Mangini.2005.lpd -------------------------------------------------------------------------------- /data/Pages2k/Eur-Stockholm.Leijonhufvud.2009.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Eur-Stockholm.Leijonhufvud.2009.lpd -------------------------------------------------------------------------------- /data/Pages2k/Ocn-AlboranSea436B.Nieto-Moreno.2013.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Ocn-AlboranSea436B.Nieto-Moreno.2013.lpd -------------------------------------------------------------------------------- /data/Pages2k/Ocn-FeniDrift.Richter.2009.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Ocn-FeniDrift.Richter.2009.lpd -------------------------------------------------------------------------------- /data/Pages2k/Ocn-PedradeLume-CapeVerdeIslands.Moses.2006.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Ocn-PedradeLume-CapeVerdeIslands.Moses.2006.lpd -------------------------------------------------------------------------------- /data/Pages2k/Ocn-RedSea.Felis.2000.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Ocn-RedSea.Felis.2000.lpd -------------------------------------------------------------------------------- /data/Pages2k/Ocn-SinaiPeninsula,RedSea.Moustafa.2000.lpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/Pages2k/Ocn-SinaiPeninsula,RedSea.Moustafa.2000.lpd -------------------------------------------------------------------------------- /data/df_senzor2_cvetkovic.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/df_senzor2_cvetkovic.xlsx -------------------------------------------------------------------------------- /data/hulu_ensemble.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/hulu_ensemble.pkl -------------------------------------------------------------------------------- /data/p2k_ngeo19_recons.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedEarth/PyleoTutorials/10df2a71613ade41b6a20a9b8907d5b4061fa5ab/data/p2k_ngeo19_recons.nc -------------------------------------------------------------------------------- /data/wtc_test_data_nino_even.csv: -------------------------------------------------------------------------------- 1 | t,air,nino 2 | 1871.0,87.3609,-0.35825 3 | 1871.0833333333333,-21.8346,-0.2924584 4 | 1871.1666666666665,-5.52632,-0.1435833 5 | 1871.2499999999998,75.7368,-0.149625 6 | 1871.333333333333,105.82,-0.27425 7 | 1871.4166666666663,437.85,-0.3724167 8 | 1871.4999999999995,54.3684,-0.2715 9 | 1871.5833333333328,-631.038,-0.3378333 10 | 1871.666666666666,133.902,-0.175625 11 | 1871.7499999999993,-411.759,-0.052208334 12 | 1871.8333333333326,12.3383,-0.0050000013 13 | 1871.9166666666658,-52.9549,-0.218875 14 | 1871.999999999999,-33.6391,-0.5075001 15 | 1872.0833333333323,-53.8346,-0.533375 16 | 1872.1666666666656,-77.5263,-0.5465834 17 | 1872.2499999999989,-23.2632,-0.598875 18 | 1872.3333333333321,-92.1805,-0.6535 19 | 1872.4166666666654,249.85,-0.5886667 20 | 1872.4999999999986,189.368,-0.5147501 21 | 1872.583333333332,26.9624,-0.6217501 22 | 1872.6666666666652,176.902,-1.00625 23 | 1872.7499999999984,5.2406,-0.9237084 24 | 1872.8333333333317,-35.6617,-0.8687084 25 | 1872.916666666665,71.0451,-0.783375 26 | 1872.9999999999982,-72.6391,-0.7317083 27 | 1873.0833333333314,6.16541,-0.8480834 28 | 1873.1666666666647,-0.526316,-0.8297084 29 | 1873.249999999998,-20.2632,-0.6962501 30 | 1873.3333333333312,-102.18,-0.4467084 31 | 1873.4166666666645,-512.15,-0.3306667 32 | 1873.4999999999977,-78.6316,-0.151875 33 | 1873.583333333331,-283.038,-0.3927917 34 | 1873.6666666666642,-46.0977,-0.3576667 35 | 1873.7499999999975,-172.759,-0.6431251 36 | 1873.8333333333308,-196.662,-1.021875 37 | 1873.916666666664,-29.9549,-1.1575 38 | 1873.9999999999973,-23.6391,-0.977125 39 | 1874.0833333333305,29.1654,-1.094875 40 | 1874.1666666666638,-43.5263,-0.9694167 41 | 1874.249999999997,-94.2632,-0.838 42 | 1874.3333333333303,152.82,-0.7487084 43 | 1874.4166666666636,636.85,-0.7400834 44 | 1874.4999999999968,346.368,-0.8526251 45 | 1874.58333333333,-90.0376,-1.169375 46 | 1874.6666666666633,359.902,-1.00825 47 | 1874.7499999999966,153.241,-1.027667 48 | 1874.8333333333298,-124.662,-1.241292 49 | 1874.916666666663,-79.9549,-0.78575 50 | 1874.9999999999964,-10.6391,-0.5002084 51 | 1875.0833333333296,-14.8346,-0.7718334 52 | 1875.1666666666629,-19.5263,-0.4692917 53 | 1875.2499999999961,-31.2632,-0.7503334 54 | 1875.3333333333294,-24.1805,-0.6111667 55 | 1875.4166666666626,284.85,-0.5960833 56 | 1875.499999999996,355.368,-0.4154584 57 | 1875.5833333333292,-238.038,-0.7095 58 | 1875.6666666666624,402.902,-0.5875417 59 | 1875.7499999999957,-213.759,-0.87975 60 | 1875.833333333329,-248.662,-0.7973334 61 | 1875.9166666666622,-48.9549,-0.64225 62 | 1875.9999999999955,-100.639,-0.9426667 63 | 1876.0833333333287,-107.835,-0.9870834 64 | 1876.166666666662,9.47368,-0.9531251 65 | 1876.2499999999952,-98.2632,-0.9444584 66 | 1876.3333333333285,-104.18,-0.48925 67 | 1876.4166666666617,-409.15,-0.2585834 68 | 1876.499999999995,244.368,-0.022625001 69 | 1876.5833333333283,-469.038,-0.039333332 70 | 1876.6666666666615,-82.0977,-0.065291673 71 | 1876.7499999999948,-315.759,0.4621667 72 | 1876.833333333328,-216.662,0.44225 73 | 1876.9166666666613,-94.9549,0.3955834 74 | 1876.9999999999945,182.361,0.6929584 75 | 1877.0833333333278,106.165,0.644125 76 | 1877.166666666661,89.4737,0.7826667 77 | 1877.2499999999943,89.7368,1.152708 78 | 1877.3333333333276,143.82,1.144458 79 | 1877.4166666666608,-218.15,1.700083 80 | 1877.499999999994,-1159.63,1.855333 81 | 1877.5833333333273,-856.038,2.149458 82 | 1877.6666666666606,-219.098,2.492959 83 | 1877.7499999999939,298.241,2.531792 84 | 1877.8333333333271,-122.662,2.617208 85 | 1877.9166666666604,245.045,2.767667 86 | 1877.9999999999936,-1.6391,2.706458 87 | 1878.083333333327,-37.8346,2.489792 88 | 1878.1666666666601,-48.5263,2.063375 89 | 1878.2499999999934,97.7368,1.616333 90 | 1878.3333333333267,134.82,1.422458 91 | 1878.41666666666,-338.15,1.187625 92 | 1878.4999999999932,216.368,0.8755417 93 | 1878.5833333333264,968.962,0.4312917 94 | 1878.6666666666597,421.902,-0.079916663 95 | 1878.749999999993,18.2406,-0.3452917 96 | 1878.8333333333262,-38.6617,-0.3299583 97 | 1878.9166666666595,20.0451,-0.3771667 98 | 1878.9999999999927,-87.6391,-0.085000001 99 | 1879.083333333326,-21.8346,0.125875 100 | 1879.1666666666592,-70.5263,-0.037000004 101 | 1879.2499999999925,-181.263,-0.050875004 102 | 1879.3333333333258,346.82,-0.064750001 103 | 1879.416666666659,258.85,-0.211625 104 | 1879.4999999999923,-482.632,-0.340875 105 | 1879.5833333333255,795.962,-0.7759584 106 | 1879.6666666666588,-86.0977,-0.5237917 107 | 1879.749999999992,86.2406,-0.5384583 108 | 1879.8333333333253,-106.662,-0.6566667 109 | 1879.9166666666586,-48.9549,-0.9757084 110 | 1879.9999999999918,-70.6391,-1.141333 111 | 1880.083333333325,36.1654,-0.3616667 112 | 1880.1666666666583,0.473684,-0.1692917 113 | 1880.2499999999916,-52.2632,-0.081583336 114 | 1880.3333333333248,-34.1805,-0.120875 115 | 1880.416666666658,233.85,-0.2335833 116 | 1880.4999999999914,-5.63158,-0.4069167 117 | 1880.5833333333246,-657.038,-0.106875 118 | 1880.6666666666579,138.902,0.198125 119 | 1880.7499999999911,97.2406,0.4769167 120 | 1880.8333333333244,216.338,0.3572083 121 | 1880.9166666666576,-8.95489,0.441 122 | 1880.999999999991,-96.6391,0.424375 123 | 1881.0833333333242,-96.8346,0.2991667 124 | 1881.1666666666574,180.474,0.3142917 125 | 1881.2499999999907,-26.2632,0.4110417 126 | 1881.333333333324,0.819549,0.3185 127 | 1881.4166666666572,-35.1504,0.120375 128 | 1881.4999999999905,203.368,-0.039375 129 | 1881.5833333333237,220.962,0.093166672 130 | 1881.666666666657,-268.098,0.010208331 131 | 1881.7499999999902,-286.759,-0.1216667 132 | 1881.8333333333235,35.3383,-0.3246667 133 | 1881.9166666666567,-57.9549,-0.3718334 134 | 1881.99999999999,-9.6391,-0.4365 135 | 1882.0833333333233,-34.8346,-0.3974583 136 | 1882.1666666666565,-60.5263,-0.2572917 137 | 1882.2499999999898,-75.2632,-0.1872917 138 | 1882.333333333323,65.8195,-0.3114583 139 | 1882.4166666666563,487.85,-0.772375 140 | 1882.4999999999895,587.368,-0.9150833 141 | 1882.5833333333228,-522.038,-0.6934167 142 | 1882.666666666656,-16.0977,-0.3923334 143 | 1882.7499999999893,-40.7594,-0.5960417 144 | 1882.8333333333226,284.338,-0.71075 145 | 1882.9166666666558,-58.9549,-0.63225 146 | 1882.999999999989,69.3609,-0.5949167 147 | 1883.0833333333223,-92.8346,-0.4695417 148 | 1883.1666666666556,38.4737,-0.059458334 149 | 1883.2499999999889,-98.2632,0.1316667 150 | 1883.3333333333221,90.8195,0.1386667 151 | 1883.4166666666554,400.85,0.1852083 152 | 1883.4999999999886,-33.6316,0.232125 153 | 1883.583333333322,-546.038,0.2109167 154 | 1883.6666666666551,178.902,0.088708334 155 | 1883.7499999999884,50.2406,-0.1018333 156 | 1883.8333333333217,-29.6617,0.052208338 157 | 1883.916666666655,35.0451,-0.172625 158 | 1883.9999999999882,-38.6391,-0.2718334 159 | 1884.0833333333214,-54.8346,-0.246375 160 | 1884.1666666666547,-68.5263,0.100625 161 | 1884.249999999988,-60.2632,0.518 162 | 1884.3333333333212,-147.18,0.463625 163 | 1884.4166666666545,-49.1504,0.2621667 164 | 1884.4999999999877,200.368,0.2916667 165 | 1884.583333333321,0.962406,0.4677917 166 | 1884.6666666666542,683.902,0.4278334 167 | 1884.7499999999875,87.2406,0.7608334 168 | 1884.8333333333208,-41.6617,0.751875 169 | 1884.916666666654,185.045,0.8725833 170 | 1884.9999999999873,-13.6391,0.7250001 171 | 1885.0833333333205,-29.8346,0.2949167 172 | 1885.1666666666538,-14.5263,0.4200417 173 | 1885.249999999987,-63.2632,0.3786667 174 | 1885.3333333333203,-2.18045,0.16825 175 | 1885.4166666666536,297.85,0.1327917 176 | 1885.4999999999868,5.36842,-0.04025 177 | 1885.58333333332,54.9624,0.1744583 178 | 1885.6666666666533,-375.098,0.5649583 179 | 1885.7499999999866,-42.7594,0.7364167 180 | 1885.8333333333198,9.33835,0.7877501 181 | 1885.916666666653,382.045,0.6388751 182 | 1885.9999999999864,-60.6391,0.071375005 183 | 1886.0833333333196,-116.835,-0.4070834 184 | 1886.1666666666529,71.4737,-0.3071667 185 | 1886.2499999999861,-139.263,-0.3339584 186 | 1886.3333333333194,181.82,-0.5292084 187 | 1886.4166666666526,334.85,-0.9582917 188 | 1886.499999999986,435.368,-0.9317084 189 | 1886.5833333333192,-207.038,-0.8658334 190 | 1886.6666666666524,-312.098,-0.66 191 | 1886.7499999999857,540.241,-0.9444167 192 | 1886.833333333319,-97.6617,-0.9131667 193 | 1886.9166666666522,51.0451,-1.1235 194 | 1886.9999999999854,66.3609,-0.9293334 195 | 1887.0833333333187,-122.835,-0.8668334 196 | 1887.166666666652,-2.52632,-0.668875 197 | 1887.2499999999852,-54.2632,-0.5621667 198 | 1887.3333333333185,21.8195,-0.1482917 199 | 1887.4166666666517,255.85,-0.018666666 200 | 1887.499999999985,289.368,-0.0044166646 201 | 1887.5833333333183,149.962,-0.3265834 202 | 1887.6666666666515,-194.098,-0.013166666 203 | 1887.7499999999848,99.2406,0.0032916653 204 | 1887.833333333318,99.3383,0.2019167 205 | 1887.9166666666513,10.0451,0.29225 206 | 1887.9999999999845,87.3609,0.5075834 207 | 1888.0833333333178,7.16541,0.6724584 208 | 1888.166666666651,-31.5263,0.5879584 209 | 1888.2499999999843,-4.26316,0.4784167 210 | 1888.3333333333176,0.819549,0.8720834 211 | 1888.4166666666508,-319.15,0.8656251 212 | 1888.499999999984,19.3684,0.8955417 213 | 1888.5833333333173,374.962,0.9285834 214 | 1888.6666666666506,-452.098,1.491667 215 | 1888.7499999999839,-397.759,1.800875 216 | 1888.8333333333171,219.338,1.976417 217 | 1888.9166666666504,-47.9549,2.133417 218 | 1888.9999999999836,-3.6391,2.080333 219 | 1889.083333333317,5.16541,1.609333 220 | 1889.1666666666501,-83.5263,1.285208 221 | 1889.2499999999834,-20.2632,0.9745001 222 | 1889.3333333333167,-82.1805,0.7251667 223 | 1889.41666666665,392.85,0.213875 224 | 1889.4999999999832,74.3684,-0.2727083 225 | 1889.5833333333164,355.962,-0.9476667 226 | 1889.6666666666497,-9.09774,-0.734125 227 | 1889.749999999983,161.241,-1.057833 228 | 1889.8333333333162,-57.6617,-1.149708 229 | 1889.9166666666495,-51.9549,-1.107625 230 | 1889.9999999999827,-83.6391,-1.387458 231 | 1890.083333333316,-117.835,-0.8440834 232 | 1890.1666666666492,22.4737,-0.8429584 233 | 1890.2499999999825,-2.26316,-0.5572917 234 | 1890.3333333333157,-171.18,-0.4417084 235 | 1890.416666666649,636.85,-0.573 236 | 1890.4999999999823,285.368,-0.6245 237 | 1890.5833333333155,-284.038,-0.6909584 238 | 1890.6666666666488,-76.0977,-0.630625 239 | 1890.749999999982,-132.759,-0.972875 240 | 1890.8333333333153,39.3383,-0.8632084 241 | 1890.9166666666486,16.0451,-0.2230833 242 | 1890.9999999999818,5.3609,0.0080833323 243 | 1891.083333333315,5.16541,0.1995 244 | 1891.1666666666483,197.474,0.1517917 245 | 1891.2499999999816,-56.2632,0.5333334 246 | 1891.3333333333148,64.8195,0.6607917 247 | 1891.416666666648,-808.15,0.6017917 248 | 1891.4999999999814,-152.632,0.4714167 249 | 1891.5833333333146,-127.038,0.3405834 250 | 1891.6666666666479,519.902,-0.080291674 251 | 1891.7499999999811,-177.759,0.081125006 252 | 1891.8333333333144,-138.662,0.1595833 253 | 1891.9166666666476,-48.9549,-0.014874998 254 | 1891.999999999981,-56.6391,0.016916668 255 | 1892.0833333333142,-22.8346,-0.042416666 256 | 1892.1666666666474,-93.5263,-0.1315833 257 | 1892.2499999999807,65.7368,-0.3770834 258 | 1892.333333333314,10.8195,-0.427375 259 | 1892.4166666666472,-62.1504,-0.6754584 260 | 1892.4999999999804,415.368,-0.8216251 261 | 1892.5833333333137,637.962,-0.9602084 262 | 1892.666666666647,432.902,-1.269583 263 | 1892.7499999999802,213.241,-1.720042 264 | 1892.8333333333135,-185.662,-1.53575 265 | 1892.9166666666467,-49.9549,-1.372083 266 | 1892.99999999998,115.361,-1.338 267 | 1893.0833333333132,155.165,-1.46625 268 | 1893.1666666666465,316.474,-1.1235 269 | 1893.2499999999798,-11.2632,-1.090375 270 | 1893.333333333313,415.82,-1.163208 271 | 1893.4166666666463,773.85,-1.078 272 | 1893.4999999999795,-155.632,-0.8739167 273 | 1893.5833333333128,-116.038,-0.8139584 274 | 1893.666666666646,553.902,-0.7962084 275 | 1893.7499999999793,190.241,-0.8024583 276 | 1893.8333333333126,330.338,-0.787375 277 | 1893.9166666666458,-97.9549,-0.6128334 278 | 1893.999999999979,5.3609,-0.7223334 279 | 1894.0833333333123,15.1654,-0.7022917 280 | 1894.1666666666456,30.4737,-0.7405417 281 | 1894.2499999999789,-15.2632,-0.544875 282 | 1894.333333333312,-170.18,-0.5567917 283 | 1894.4166666666454,525.85,-0.2485417 284 | 1894.4999999999786,390.368,-0.1227083 285 | 1894.5833333333119,-10.0376,-0.3525833 286 | 1894.6666666666451,315.902,-0.19175 287 | 1894.7499999999784,608.241,-0.3084584 288 | 1894.8333333333117,73.3383,-0.257 289 | 1894.916666666645,17.0451,-0.4374584 290 | 1894.9999999999782,-0.639098,-0.29525 291 | 1895.0833333333114,-51.8346,-0.3299583 292 | 1895.1666666666447,-31.5263,-0.036875002 293 | 1895.249999999978,112.737,0.1225417 294 | 1895.3333333333112,-115.18,0.2082084 295 | 1895.4166666666445,340.85,0.071833342 296 | 1895.4999999999777,-156.632,0.034249999 297 | 1895.583333333311,-126.038,0.1906667 298 | 1895.6666666666442,-314.098,0.5338334 299 | 1895.7499999999775,13.2406,0.4949583 300 | 1895.8333333333107,-177.662,0.8026667 301 | 1895.916666666644,-0.954887,0.6525834 302 | 1895.9999999999773,-78.6391,0.4958333 303 | 1896.0833333333105,-67.8346,0.4000417 304 | 1896.1666666666438,-82.5263,0.4307083 305 | 1896.249999999977,-93.2632,0.3883334 306 | 1896.3333333333103,-118.18,0.3617917 307 | 1896.4166666666436,391.85,0.4791667 308 | 1896.4999999999768,122.368,0.8193334 309 | 1896.58333333331,208.962,1.329792 310 | 1896.6666666666433,-929.098,1.171667 311 | 1896.7499999999766,-630.759,1.297125 312 | 1896.8333333333098,123.338,1.748625 313 | 1896.916666666643,55.0451,2.118833 314 | 1896.9999999999764,-17.6391,1.829625 315 | 1897.0833333333096,-4.83459,1.48775 316 | 1897.1666666666429,57.4737,0.8815417 317 | 1897.2499999999761,-47.2632,0.4305 318 | 1897.3333333333094,-95.1805,0.2119583 319 | 1897.4166666666426,-216.15,0.096708342 320 | 1897.499999999976,-124.632,0.053416669 321 | 1897.5833333333092,479.962,-0.176 322 | 1897.6666666666424,278.902,-0.033958334 323 | 1897.7499999999757,76.2406,-0.2251667 324 | 1897.833333333309,-181.662,-0.44 325 | 1897.9166666666422,-101.955,-0.3957084 326 | 1897.9999999999754,-88.6391,-0.2940833 327 | 1898.0833333333087,178.165,-0.4296667 328 | 1898.166666666642,-122.526,-0.491375 329 | 1898.2499999999752,-52.2632,-0.1282083 330 | 1898.3333333333085,-155.18,-0.178375 331 | 1898.4166666666417,74.8496,-0.2380833 332 | 1898.499999999975,205.368,-0.38575 333 | 1898.5833333333082,-217.038,-0.5320417 334 | 1898.6666666666415,289.902,-0.4879167 335 | 1898.7499999999748,-124.759,-0.5490834 336 | 1898.833333333308,81.3383,-0.6995834 337 | 1898.9166666666413,5.04511,-0.7157084 338 | 1898.9999999999745,-51.6391,-0.5652917 339 | 1899.0833333333078,-62.8346,-0.3799584 340 | 1899.166666666641,-76.5263,-0.1103333 341 | 1899.2499999999743,259.737,0.2863334 342 | 1899.3333333333076,-3.18045,0.5398334 343 | 1899.4166666666408,309.85,0.604625 344 | 1899.499999999974,-845.632,0.7571667 345 | 1899.5833333333073,-984.038,1.064542 346 | 1899.6666666666406,-682.098,1.128333 347 | 1899.7499999999739,-272.759,1.298375 348 | 1899.833333333307,-270.662,1.327333 349 | 1899.9166666666404,-93.9549,1.540083 350 | 1899.9999999999736,43.3609,1.431417 351 | 1900.0833333333069,-61.8346,1.351583 352 | 1900.1666666666401,-47.5263,1.038333 353 | 1900.2499999999734,121.737,1.026667 354 | 1900.3333333333067,-124.18,0.9553334 355 | 1900.41666666664,-355.15,0.8507084 356 | 1900.4999999999732,-202.632,0.7727084 357 | 1900.5833333333064,288.962,0.622875 358 | 1900.6666666666397,669.902,0.4963334 359 | 1900.749999999973,-289.759,0.5059167 360 | 1900.8333333333062,-207.662,0.2985 361 | 1900.9166666666395,21.0451,0.5063334 362 | 1900.9999999999727,164.361,0.327375 363 | 1901.083333333306,208.165,0.136125 364 | 1901.1666666666392,-37.5263,-0.112375 365 | 1901.2499999999725,52.7368,0.012583335 366 | 1901.3333333333057,-139.18,-0.098666668 367 | 1901.416666666639,-493.15,-0.2424167 368 | 1901.4999999999723,-497.632,-0.394125 369 | 1901.5833333333055,164.962,-0.31425 370 | 1901.6666666666388,-446.098,-0.2810833 371 | 1901.749999999972,-239.759,-0.098124996 372 | 1901.8333333333053,119.338,-0.093250006 373 | 1901.9166666666385,-24.9549,-0.0016250025 374 | 1901.9999999999718,-42.6391,0.2580833 375 | 1902.083333333305,-103.835,0.4116667 376 | 1902.1666666666383,-48.5263,0.491125 377 | 1902.2499999999716,90.7368,0.6415 378 | 1902.3333333333048,-112.18,0.8915833 379 | 1902.416666666638,-604.15,1.180208 380 | 1902.4999999999714,73.3684,1.549333 381 | 1902.5833333333046,-453.038,1.597583 382 | 1902.6666666666379,409.902,1.634208 383 | 1902.7499999999711,-81.7594,1.550208 384 | 1902.8333333333044,-33.6617,1.778667 385 | 1902.9166666666376,149.045,1.554833 386 | 1902.999999999971,-24.6391,1.133708 387 | 1903.0833333333042,-73.8346,0.8522917 388 | 1903.1666666666374,-48.5263,0.5903333 389 | 1903.2499999999707,-142.263,0.23875 390 | 1903.333333333304,32.8195,-0.022041667 391 | 1903.4166666666372,-373.15,-0.297875 392 | 1903.4999999999704,65.3684,-0.4165 393 | 1903.5833333333037,167.962,-0.4931667 394 | 1903.666666666637,254.902,-0.570875 395 | 1903.7499999999702,508.241,-0.5977917 396 | 1903.8333333333035,122.338,-0.7731667 397 | 1903.9166666666367,32.0451,-0.9750417 398 | 1903.99999999997,-50.6391,-0.6440833 399 | 1904.0833333333032,-42.8346,-0.428 400 | 1904.1666666666365,52.4737,-0.2572083 401 | 1904.2499999999698,47.7368,0.010875 402 | 1904.333333333303,155.82,0.2477084 403 | 1904.4166666666363,152.85,0.3547917 404 | 1904.4999999999695,-247.632,0.6286667 405 | 1904.5833333333028,-455.038,0.7090834 406 | 1904.666666666636,-440.098,0.5278333 407 | 1904.7499999999693,-72.7594,0.7075 408 | 1904.8333333333026,-221.662,0.7598334 409 | 1904.9166666666358,-20.9549,0.9316251 410 | 1904.999999999969,18.3609,1.019167 411 | 1905.0833333333023,16.1654,0.8944167 412 | 1905.1666666666356,135.474,1.034833 413 | 1905.2499999999688,7.73684,1.164208 414 | 1905.333333333302,-54.1805,1.537708 415 | 1905.4166666666354,-734.15,1.602917 416 | 1905.4999999999686,-267.632,1.505667 417 | 1905.5833333333019,-373.038,1.491333 418 | 1905.6666666666351,45.9023,1.676708 419 | 1905.7499999999684,-169.759,1.574875 420 | 1905.8333333333017,-213.662,1.520417 421 | 1905.916666666635,-94.9549,1.506417 422 | 1905.9999999999682,41.3609,1.362167 423 | 1906.0833333333014,256.165,0.9341251 424 | 1906.1666666666347,69.4737,0.4799584 425 | 1906.249999999968,-128.263,0.6007917 426 | 1906.3333333333012,-202.18,0.1574167 427 | 1906.4166666666345,175.85,0.054291662 428 | 1906.4999999999677,152.368,-0.241875 429 | 1906.583333333301,-7.03759,-0.7842917 430 | 1906.6666666666342,36.9023,-0.5009583 431 | 1906.7499999999675,-235.759,-0.559125 432 | 1906.8333333333007,-112.662,-0.5752917 433 | 1906.916666666634,144.045,-0.4164167 434 | 1906.9999999999673,-46.6391,-0.406125 435 | 1907.0833333333005,195.165,-0.383875 436 | 1907.1666666666338,105.474,-0.182625 437 | 1907.249999999967,259.737,0.027749997 438 | 1907.3333333333003,-266.18,0.195625 439 | 1907.4166666666335,-101.15,0.424625 440 | 1907.4999999999668,-506.632,0.414 441 | 1907.5833333333,588.962,0.16975 442 | 1907.6666666666333,-699.098,0.093208335 443 | 1907.7499999999666,-574.759,-0.013416667 444 | 1907.8333333332998,-73.6617,-0.2274167 445 | 1907.916666666633,8.04511,0.1665833 446 | 1907.9999999999663,46.3609,-0.076125003 447 | 1908.0833333332996,-2.83459,-0.1080833 448 | 1908.1666666666329,-82.5263,-0.3264167 449 | 1908.2499999999661,-107.263,-0.5873333 450 | 1908.3333333332994,-140.18,-0.5269583 451 | 1908.4166666666326,-364.15,-0.3969167 452 | 1908.499999999966,441.368,-0.6345834 453 | 1908.5833333332992,529.962,-0.4517917 454 | 1908.6666666666324,-129.098,-0.597125 455 | 1908.7499999999657,-355.759,-0.6689584 456 | 1908.833333333299,-252.662,-0.84425 457 | 1908.9166666666322,-101.955,-1.075167 458 | 1908.9999999999654,52.3609,-0.8266667 459 | 1909.0833333332987,-70.8346,-0.6670001 460 | 1909.166666666632,-120.526,-0.511 461 | 1909.2499999999652,341.737,-0.3935 462 | 1909.3333333332985,-11.1805,-0.331875 463 | 1909.4166666666317,455.85,-0.4347917 464 | 1909.499999999965,237.368,-0.4260834 465 | 1909.5833333332982,-199.038,-0.4435417 466 | 1909.6666666666315,-94.0977,-0.5923334 467 | 1909.7499999999648,-410.759,-0.9321667 468 | 1909.833333333298,-210.662,-1.226875 469 | 1909.9166666666313,125.045,-1.02675 470 | 1909.9999999999645,-55.6391,-0.9135417 471 | 1910.0833333332978,-86.8346,-0.9789167 472 | 1910.166666666631,-71.5263,-0.96975 473 | 1910.2499999999643,-52.2632,-1.154583 474 | 1910.3333333332976,-172.18,-1.004042 475 | 1910.4166666666308,474.85,-0.649875 476 | 1910.499999999964,-345.632,-0.61075 477 | 1910.5833333332973,401.962,-0.8955 478 | 1910.6666666666306,325.902,-0.5580417 479 | 1910.7499999999638,305.241,-0.5992084 480 | 1910.833333333297,67.3383,-0.6202917 481 | 1910.9166666666304,-116.955,-0.5151667 482 | 1910.9999999999636,52.3609,-0.4992917 483 | 1911.0833333332969,-115.835,-0.835375 484 | 1911.1666666666301,90.4737,-0.7784167 485 | 1911.2499999999634,-67.2632,-0.6631667 486 | 1911.3333333332967,-89.1805,-0.213125 487 | 1911.41666666663,283.85,0.1304583 488 | 1911.4999999999632,-1189.63,0.3517084 489 | 1911.5833333332964,-315.038,0.5590417 490 | 1911.6666666666297,91.9023,0.7210833 491 | 1911.749999999963,-54.7594,0.984875 492 | 1911.8333333332962,103.338,1.256125 493 | 1911.9166666666295,-5.95489,1.547542 494 | 1911.9999999999627,-39.6391,1.391042 495 | 1912.083333333296,58.1654,1.138958 496 | 1912.1666666666292,-21.5263,0.8085417 497 | 1912.2499999999625,45.7368,0.7455834 498 | 1912.3333333332957,-168.18,0.471375 499 | 1912.416666666629,-584.15,0.2027917 500 | 1912.4999999999623,482.368,-0.159 501 | 1912.5833333332955,153.962,-0.2946667 502 | 1912.6666666666288,-487.098,-0.1462917 503 | 1912.749999999962,-119.759,-0.017583333 504 | 1912.8333333332953,248.338,0.027333332 505 | 1912.9166666666285,-94.9549,-0.034875002 506 | 1912.9999999999618,-97.6391,0.33625 507 | 1913.083333333295,181.165,0.3775834 508 | 1913.1666666666283,12.4737,-0.047041669 509 | 1913.2499999999616,-59.2632,-0.2415833 510 | 1913.3333333332948,171.82,-0.1526667 511 | 1913.416666666628,508.85,0.1026667 512 | 1913.4999999999613,-81.6316,0.2762917 513 | 1913.5833333332946,-544.038,0.3826667 514 | 1913.6666666666279,-532.098,0.4737084 515 | 1913.7499999999611,-48.7594,0.6095001 516 | 1913.8333333332944,-132.662,0.827 517 | 1913.9166666666276,88.0451,1.058167 518 | 1913.999999999961,-97.6391,1.061042 519 | 1914.0833333332941,-7.83459,0.7104584 520 | 1914.1666666666274,-2.52632,0.7070417 521 | 1914.2499999999607,81.7368,1.0035 522 | 1914.333333333294,103.82,0.8069584 523 | 1914.4166666666272,-26.1504,0.4959167 524 | 1914.4999999999604,484.368,0.7023751 525 | 1914.5833333332937,-96.0376,1.031 526 | 1914.666666666627,126.902,1.057417 527 | 1914.7499999999602,-369.759,1.202125 528 | 1914.8333333332935,-105.662,1.358708 529 | 1914.9166666666267,36.0451,1.464042 530 | 1914.99999999996,74.3609,1.508792 531 | 1915.0833333332932,128.165,1.496 532 | 1915.1666666666265,239.474,1.468292 533 | 1915.2499999999598,-4.26316,1.344417 534 | 1915.333333333293,100.82,1.323167 535 | 1915.4166666666263,-75.1504,1.216 536 | 1915.4999999999595,-425.632,1.066542 537 | 1915.5833333332928,-294.038,0.5688334 538 | 1915.666666666626,107.902,0.2486667 539 | 1915.7499999999593,107.241,0.1170833 540 | 1915.8333333332926,233.338,-0.058958333 541 | 1915.9166666666258,-58.9549,-0.317 542 | 1915.999999999959,-97.6391,-0.5287501 543 | 1916.0833333332923,-35.8346,-0.6020417 544 | 1916.1666666666256,-116.526,-0.582625 545 | 1916.2499999999588,-30.2632,-0.6352084 546 | 1916.333333333292,-49.1805,-0.8247917 547 | 1916.4166666666254,348.85,-0.9106667 548 | 1916.4999999999586,-141.632,-0.9301667 549 | 1916.5833333332919,472.962,-1.302542 550 | 1916.6666666666251,333.902,-1.20875 551 | 1916.7499999999584,693.241,-1.114375 552 | 1916.8333333332916,196.338,-1.212958 553 | 1916.916666666625,-90.9549,-1.279917 554 | 1916.9999999999582,-77.6391,-1.413417 555 | 1917.0833333332914,217.165,-1.187125 556 | 1917.1666666666247,-4.52632,-1.308708 557 | 1917.249999999958,-30.2632,-0.6171667 558 | 1917.3333333332912,183.82,-0.2916667 559 | 1917.4166666666245,500.85,0.1084167 560 | 1917.4999999999577,-257.632,0.1105 561 | 1917.583333333291,329.962,-0.1784167 562 | 1917.6666666666242,975.902,-0.4289167 563 | 1917.7499999999575,815.241,-0.7699167 564 | 1917.8333333332907,4.33835,-1.043167 565 | 1917.916666666624,-73.9549,-1.0985 566 | 1917.9999999999573,-3.6391,-1.100208 567 | 1918.0833333332905,-108.835,-0.776625 568 | 1918.1666666666238,-4.52632,-0.2953333 569 | 1918.249999999957,-77.2632,0.1034167 570 | 1918.3333333332903,349.82,0.5635417 571 | 1918.4166666666235,170.85,0.841 572 | 1918.4999999999568,-1288.63,1.06325 573 | 1918.58333333329,-220.038,1.173333 574 | 1918.6666666666233,-646.098,1.415042 575 | 1918.7499999999566,-632.759,1.760667 576 | 1918.8333333332898,161.338,1.932667 577 | 1918.916666666623,-8.95489,1.797208 578 | 1918.9999999999563,264.361,1.730833 579 | 1919.0833333332896,-6.83459,1.558167 580 | 1919.1666666666229,-35.5263,1.312458 581 | 1919.2499999999561,-60.2632,1.159042 582 | 1919.3333333332894,-17.1805,0.8925417 583 | 1919.4166666666226,151.85,0.599875 584 | 1919.499999999956,-11.6316,0.3899584 585 | 1919.5833333332891,382.962,0.6140833 586 | 1919.6666666666224,-171.098,0.5985417 587 | 1919.7499999999557,-72.7594,0.4863333 588 | 1919.833333333289,278.338,0.589 589 | 1919.9166666666222,17.0451,0.9495417 590 | 1919.9999999999554,97.3609,1.106708 591 | 1920.0833333332887,-41.8346,1.144208 592 | 1920.166666666622,104.474,0.9491251 593 | 1920.2499999999552,-35.2632,0.964875 594 | 1920.3333333332885,-76.1805,1.019875 595 | 1920.4166666666217,-216.15,0.74275 596 | 1920.499999999955,193.368,0.2820417 597 | 1920.5833333332882,-797.038,0.163 598 | 1920.6666666666215,-482.098,0.142375 599 | 1920.7499999999548,-295.759,-0.1117083 600 | 1920.833333333288,-8.66165,-0.144125 601 | 1920.9166666666213,-114.955,-0.055499997 602 | 1920.9999999999545,186.361,-0.188375 603 | 1921.0833333332878,-105.835,-0.5710417 604 | 1921.166666666621,-40.5263,-1.287125 605 | 1921.2499999999543,55.7368,-0.5607083 606 | 1921.3333333332876,-234.18,-0.2544583 607 | 1921.4166666666208,29.8496,-0.1210417 608 | 1921.499999999954,-57.6316,-0.1094583 609 | 1921.5833333332873,-63.0376,-0.1855417 610 | 1921.6666666666206,256.902,-0.072791673 611 | 1921.7499999999538,-115.759,-0.08754167 612 | 1921.833333333287,-120.662,-0.1747083 613 | 1921.9166666666204,-73.9549,-0.3365 614 | 1921.9999999999536,118.361,-0.425 615 | 1922.0833333332869,-81.8346,0.2158334 616 | 1922.1666666666201,-108.526,0.3493333 617 | 1922.2499999999534,-94.2632,0.214 618 | 1922.3333333332866,-159.18,0.1818333 619 | 1922.41666666662,160.85,-0.095083341 620 | 1922.4999999999532,186.368,-0.6167084 621 | 1922.5833333332864,-397.038,-1.315792 622 | 1922.6666666666197,247.902,-0.9475417 623 | 1922.749999999953,-261.759,-0.644 624 | 1922.8333333332862,336.338,-0.5449584 625 | 1922.9166666666194,-27.9549,-0.4859584 626 | 1922.9999999999527,-2.6391,-0.4077083 627 | 1923.083333333286,134.165,-0.2070834 628 | 1923.1666666666192,8.47368,0.021666668 629 | 1923.2499999999525,-55.2632,0.3290834 630 | 1923.3333333332857,-132.18,0.6767917 631 | 1923.416666666619,-705.15,0.7594167 632 | 1923.4999999999523,246.368,0.5658334 633 | 1923.5833333332855,179.962,0.8487917 634 | 1923.6666666666188,17.9023,0.7702084 635 | 1923.749999999952,-171.759,0.5781251 636 | 1923.8333333332853,-104.662,0.94575 637 | 1923.9166666666185,19.0451,1.034917 638 | 1923.9999999999518,31.3609,0.7594167 639 | 1924.083333333285,-58.8346,0.6881667 640 | 1924.1666666666183,-95.5263,0.6669584 641 | 1924.2499999999516,-37.2632,0.1530417 642 | 1924.3333333332848,-124.18,-0.5044584 643 | 1924.416666666618,-534.15,-0.7379584 644 | 1924.4999999999513,275.368,-0.7727084 645 | 1924.5833333332846,-175.038,-0.8528334 646 | 1924.6666666666179,566.902,-0.8373334 647 | 1924.7499999999511,-162.759,-0.6697917 648 | 1924.8333333332844,316.338,-0.798375 649 | 1924.9166666666176,-13.9549,-0.691 650 | 1924.999999999951,-66.6391,-1.075708 651 | 1925.0833333332841,-104.835,-0.4490834 652 | 1925.1666666666174,-56.5263,0.1318333 653 | 1925.2499999999507,41.7368,0.4714167 654 | 1925.333333333284,275.82,0.315 655 | 1925.4166666666172,228.85,0.572375 656 | 1925.4999999999504,135.368,0.8339167 657 | 1925.5833333332837,-292.038,0.920375 658 | 1925.666666666617,-528.098,0.904375 659 | 1925.7499999999502,-59.7594,0.822625 660 | 1925.8333333332835,122.338,1.438417 661 | 1925.9166666666167,56.0451,1.619417 662 | 1925.99999999995,157.361,1.501083 663 | 1926.0833333332832,-78.8346,1.119333 664 | 1926.1666666666165,267.474,1.224417 665 | 1926.2499999999498,7.73684,1.195833 666 | 1926.333333333283,-12.1805,0.8802084 667 | 1926.4166666666163,-827.15,0.5204583 668 | 1926.4999999999495,152.368,0.6054584 669 | 1926.5833333332828,810.962,0.3292917 670 | 1926.666666666616,396.902,-0.116875 671 | 1926.7499999999493,-248.759,-0.1063333 672 | 1926.8333333332826,-202.662,0.03804167 673 | 1926.9166666666158,-62.9549,-0.005708335 674 | 1926.999999999949,-29.6391,-0.058333337 675 | 1927.0833333332823,103.165,0.49525 676 | 1927.1666666666156,12.4737,0.1548333 677 | 1927.2499999999488,-30.2632,-0.094208337 678 | 1927.333333333282,-89.1805,0.17325 679 | 1927.4166666666154,-31.1504,0.126875 680 | 1927.4999999999486,471.368,-0.3045 681 | 1927.5833333332819,-207.038,-0.1492917 682 | 1927.6666666666151,-194.098,0.1732083 683 | 1927.7499999999484,-166.759,0.379625 684 | 1927.8333333332816,299.338,0.34025 685 | 1927.916666666615,-25.9549,0.17675 686 | 1927.9999999999482,-10.6391,-0.018541668 687 | 1928.0833333332814,153.165,-0.050083335 688 | 1928.1666666666147,-64.5263,-0.0068750014 689 | 1928.249999999948,-34.2632,0.1599583 690 | 1928.3333333332812,-121.18,0.4234167 691 | 1928.4166666666144,-101.15,0.0044166646 692 | 1928.4999999999477,110.368,0.029791664 693 | 1928.583333333281,-443.038,0.039375003 694 | 1928.6666666666142,-382.098,0.072374992 695 | 1928.7499999999475,459.241,-0.184 696 | 1928.8333333332807,-142.662,-0.2445417 697 | 1928.916666666614,48.0451,-0.1870833 698 | 1928.9999999999472,68.3609,-0.2834584 699 | 1929.0833333332805,23.1654,0.093500003 700 | 1929.1666666666138,-53.5263,0.081500001 701 | 1929.249999999947,142.737,0.3543333 702 | 1929.3333333332803,-72.1805,0.3577917 703 | 1929.4166666666135,185.85,0.41175 704 | 1929.4999999999468,146.368,0.3048334 705 | 1929.58333333328,-213.038,0.4515 706 | 1929.6666666666133,-401.098,0.5615833 707 | 1929.7499999999466,139.241,0.531375 708 | 1929.8333333332798,-111.662,0.7834167 709 | 1929.916666666613,144.045,0.5436251 710 | 1929.9999999999463,-20.6391,0.1510833 711 | 1930.0833333332796,-12.8346,0.0036666652 712 | 1930.1666666666129,-37.5263,0.193 713 | 1930.249999999946,-14.2632,0.6871667 714 | 1930.3333333332794,6.81955,0.378375 715 | 1930.4166666666126,88.8496,0.4411667 716 | 1930.4999999999459,77.3684,1.203583 717 | 1930.5833333332791,-642.038,1.197708 718 | 1930.6666666666124,26.9023,1.299667 719 | 1930.7499999999457,193.241,1.549375 720 | 1930.833333333279,281.338,2.141167 721 | 1930.9166666666122,-21.9549,1.91975 722 | 1930.9999999999454,-67.6391,1.941167 723 | 1931.0833333332787,45.1654,1.566542 724 | 1931.166666666612,-53.5263,1.207333 725 | 1931.2499999999452,-51.2632,1.125583 726 | 1931.3333333332785,-99.1805,0.715 727 | 1931.4166666666117,-494.15,0.23675 728 | 1931.499999999945,103.368,0.0052499999 729 | 1931.5833333332782,472.962,-0.313125 730 | 1931.6666666666115,196.902,-0.603875 731 | 1931.7499999999447,503.241,-0.6668751 732 | 1931.833333333278,152.338,-0.601875 733 | 1931.9166666666113,125.045,-0.4265417 734 | 1931.9999999999445,-95.6391,-0.2193334 735 | 1932.0833333332778,31.1654,0.043583337 736 | 1932.166666666611,-37.5263,0.4449167 737 | 1932.2499999999443,-41.2632,0.5001251 738 | 1932.3333333332776,125.82,0.700875 739 | 1932.4166666666108,-521.15,0.5854167 740 | 1932.499999999944,412.368,0.2077083 741 | 1932.5833333332773,-384.038,-0.089750007 742 | 1932.6666666666106,33.9023,0.025875002 743 | 1932.7499999999438,-76.7594,0.010749999 744 | 1932.833333333277,294.338,0.081208333 745 | 1932.9166666666104,-40.9549,-0.118625 746 | 1932.9999999999436,-31.6391,-0.2709167 747 | 1933.0833333332769,73.1654,0.150875 748 | 1933.1666666666101,-43.5263,0.194625 749 | 1933.2499999999434,96.7368,0.1936667 750 | 1933.3333333332766,480.82,-0.293375 751 | 1933.41666666661,380.85,-0.5236667 752 | 1933.4999999999432,-151.632,-0.5617501 753 | 1933.5833333332764,677.962,-0.8795 754 | 1933.6666666666097,357.902,-0.8390834 755 | 1933.749999999943,133.241,-0.9021251 756 | 1933.8333333332762,-114.662,-1.059958 757 | 1933.9166666666094,55.0451,-0.8913334 758 | 1933.9999999999427,37.3609,-0.4659583 759 | 1934.083333333276,-53.8346,-0.4307917 760 | 1934.1666666666092,-62.5263,-0.5059584 761 | 1934.2499999999425,-6.26316,0.1855417 762 | 1934.3333333332757,-198.18,0.154875 763 | 1934.416666666609,392.85,0.322875 764 | 1934.4999999999422,-175.632,0.1207083 765 | 1934.5833333332755,412.962,0.213625 766 | 1934.6666666666088,10.9023,0.1159583 767 | 1934.749999999942,-86.7594,-0.1340833 768 | 1934.8333333332753,30.3383,0.094125003 769 | 1934.9166666666085,-68.9549,-0.2142917 770 | 1934.9999999999418,37.3609,-0.5080417 771 | 1935.083333333275,-23.8346,-0.566875 772 | 1935.1666666666083,-85.5263,-0.3685 773 | 1935.2499999999416,19.7368,-0.24025 774 | 1935.3333333332748,-324.18,-0.2174167 775 | 1935.416666666608,-240.15,-0.101625 776 | 1935.4999999999413,323.368,-0.1764583 777 | 1935.5833333332746,-207.038,0.35125 778 | 1935.6666666666079,65.9023,0.2804584 779 | 1935.749999999941,-235.759,0.294125 780 | 1935.8333333332744,-203.662,0.181875 781 | 1935.9166666666076,-29.9549,0.048250005 782 | 1935.9999999999409,-49.6391,0.30975 783 | 1936.0833333332741,163.165,0.3025417 784 | 1936.1666666666074,31.4737,0.029625 785 | 1936.2499999999407,-76.2632,0.217 786 | 1936.333333333274,306.82,0.138125 787 | 1936.4166666666072,751.85,-0.258625 788 | 1936.4999999999404,-119.632,-0.1512083 789 | 1936.5833333332737,-236.038,-0.082041658 790 | 1936.666666666607,192.902,0.0098333359 791 | 1936.7499999999402,-77.7594,0.4034167 792 | 1936.8333333332735,313.338,0.2052917 793 | 1936.9166666666067,-16.9549,0.131 794 | 1936.99999999994,-99.6391,0.1172083 795 | 1937.0833333332732,281.165,0.1554583 796 | 1937.1666666666065,-31.5263,0.2308334 797 | 1937.2499999999397,221.737,0.4564167 798 | 1937.333333333273,-60.1805,-0.17975 799 | 1937.4166666666063,-84.1504,-0.3534167 800 | 1937.4999999999395,559.368,-0.290375 801 | 1937.5833333332728,-534.038,-0.4097084 802 | 1937.666666666606,-14.0977,0.017625 803 | 1937.7499999999393,167.241,-0.2217083 804 | 1937.8333333332725,-97.6617,-0.26075 805 | 1937.9166666666058,-19.9549,-0.3933333 806 | 1937.999999999939,5.3609,-0.4881667 807 | 1938.0833333332723,17.1654,-0.47075 808 | 1938.1666666666056,3.47368,-0.4057083 809 | 1938.2499999999388,-70.2632,-0.323125 810 | 1938.333333333272,114.82,-0.4740833 811 | 1938.4166666666054,745.85,-0.8281251 812 | 1938.4999999999386,-45.6316,-1.143958 813 | 1938.5833333332719,-5.03759,-0.8866667 814 | 1938.6666666666051,-106.098,-0.7235417 815 | 1938.7499999999384,3.2406,-0.6121667 816 | 1938.8333333332716,-144.662,-0.8842917 817 | 1938.916666666605,-86.9549,-0.8051667 818 | 1938.9999999999382,-36.6391,-0.768125 819 | 1939.0833333332714,32.1654,-0.8232084 820 | 1939.1666666666047,28.4737,-0.6046667 821 | 1939.249999999938,24.7368,-0.088916674 822 | 1939.3333333332712,-243.18,0.060333334 823 | 1939.4166666666044,-167.15,0.141125 824 | 1939.4999999999377,-194.632,0.087000005 825 | 1939.583333333271,-57.0376,0.2357917 826 | 1939.6666666666042,-177.098,-0.00054166716 827 | 1939.7499999999375,155.241,-0.1009583 828 | 1939.8333333332707,21.3383,0.2470417 829 | 1939.916666666604,-106.955,0.61475 830 | 1939.9999999999372,-34.6391,0.9335834 831 | 1940.0833333332705,42.1654,1.164458 832 | 1940.1666666666038,190.474,1.63275 833 | 1940.249999999937,-70.2632,1.513167 834 | 1940.3333333332703,142.82,1.353583 835 | 1940.4166666666035,50.8496,0.936875 836 | 1940.4999999999368,160.368,0.7663333 837 | 1940.58333333327,417.962,0.6572917 838 | 1940.6666666666033,-590.098,0.5510833 839 | 1940.7499999999366,-57.7594,0.5604167 840 | 1940.8333333332698,143.338,0.988375 841 | 1940.916666666603,30.0451,1.370958 842 | 1940.9999999999363,86.3609,1.946417 843 | 1941.0833333332696,-24.8346,2.049917 844 | 1941.1666666666029,-80.5263,2.080167 845 | 1941.249999999936,-32.2632,2.095625 846 | 1941.3333333332694,77.8195,1.883542 847 | 1941.4166666666026,0.849624,1.587375 848 | 1941.4999999999359,-541.632,0.6562501 849 | 1941.5833333332691,-327.038,0.4623333 850 | 1941.6666666666024,-342.098,0.6121667 851 | 1941.7499999999357,-98.7594,0.9626251 852 | 1941.833333333269,-39.6617,1.7065 853 | 1941.9166666666022,6.04511,1.835417 854 | 1941.9999999999354,23.3609,0.9143334 855 | 1942.0833333332687,145.165,0.3991667 856 | 1942.166666666602,-57.5263,0.1945417 857 | 1942.2499999999352,77.7368,0.2915833 858 | 1942.3333333332685,-105.18,0.1094167 859 | 1942.4166666666017,95.8496,-0.5429167 860 | 1942.499999999935,501.368,-0.9152501 861 | 1942.5833333332682,382.962,-1.450417 862 | 1942.6666666666015,104.902,-1.467042 863 | 1942.7499999999347,-397.759,-1.700417 864 | 1942.833333333268,-105.662,-1.704708 865 | 1942.9166666666013,102.045,-1.435208 866 | 1942.9999999999345,295.361,-1.313917 867 | 1943.0833333332678,-53.8346,-1.302083 868 | 1943.166666666601,-37.5263,-0.8265833 869 | 1943.2499999999343,88.7368,-0.3650833 870 | 1943.3333333332675,234.82,0.3725 871 | 1943.4166666666008,-109.15,0.3801667 872 | 1943.499999999934,247.368,0.268125 873 | 1943.5833333332673,-288.038,0.018874999 874 | 1943.6666666666006,338.902,-0.437625 875 | 1943.7499999999338,205.241,-0.4134584 876 | 1943.833333333267,-125.662,-0.3527917 877 | 1943.9166666666003,-84.9549,-0.4010417 878 | 1943.9999999999336,79.3609,-0.5440417 879 | 1944.0833333332669,151.165,0.1988333 880 | 1944.1666666666001,355.474,0.0056666653 881 | 1944.2499999999334,-24.2632,0.031125005 882 | 1944.3333333332666,-130.18,0.1789167 883 | 1944.4166666666,-270.15,0.328 884 | 1944.4999999999332,736.368,0.1750834 885 | 1944.5833333332664,548.962,0.067708336 886 | 1944.6666666665997,-304.098,-0.4274584 887 | 1944.749999999933,174.241,-0.4665834 888 | 1944.8333333332662,-11.6617,-0.7762083 889 | 1944.9166666665994,-31.9549,-0.5870417 890 | 1944.9999999999327,126.361,-0.6265834 891 | 1945.083333333266,-72.8346,-0.3135417 892 | 1945.1666666665992,-103.526,-0.432125 893 | 1945.2499999999325,76.7368,-0.055083331 894 | 1945.3333333332657,-125.18,0.2042917 895 | 1945.416666666599,-54.1504,0.058791671 896 | 1945.4999999999322,413.368,-0.37225 897 | 1945.5833333332655,-168.038,-0.2225 898 | 1945.6666666665988,423.902,-0.1917083 899 | 1945.749999999932,49.2406,-0.166 900 | 1945.8333333332653,-111.662,-0.1162083 901 | 1945.9166666665985,-91.9549,0.044583336 902 | 1945.9999999999318,-99.6391,-0.065458335 903 | 1946.083333333265,-17.8346,-0.2592917 904 | 1946.1666666665983,0.473684,-0.448 905 | 1946.2499999999316,167.737,-0.3714167 906 | 1946.3333333332648,-3.18045,-0.1468333 907 | 1946.416666666598,432.85,-0.30325 908 | 1946.4999999999313,99.3684,-0.202 909 | 1946.5833333332646,341.962,-1.166583 910 | 1946.6666666665978,-330.098,-0.5346251 911 | 1946.749999999931,105.241,-0.2429167 912 | 1946.8333333332644,538.338,0.012999999 913 | 1946.9166666665976,196.045,-0.03604167 914 | 1946.9999999999309,59.3609,0.089333341 915 | 1947.0833333332641,-19.8346,0.0061666672 916 | 1947.1666666665974,11.4737,0.099500008 917 | 1947.2499999999307,42.7368,0.068000004 918 | 1947.333333333264,-135.18,0.144375 919 | 1947.4166666665972,-414.15,0.176125 920 | 1947.4999999999304,185.368,0.048125003 921 | 1947.5833333332637,535.962,-0.2539167 922 | 1947.666666666597,655.902,-0.448125 923 | 1947.7499999999302,-91.7594,-0.4247083 924 | 1947.8333333332635,-244.662,-0.3174167 925 | 1947.9166666665967,74.0451,-0.1245417 926 | 1947.99999999993,144.361,-0.186 927 | 1948.0833333332632,12.1654,0.261625 928 | 1948.1666666665965,-32.5263,0.428125 929 | 1948.2499999999297,12.7368,0.1349583 930 | 1948.333333333263,121.82,0.1329167 931 | 1948.4166666665963,-137.15,-0.039875001 932 | 1948.4999999999295,70.3684,-0.3564167 933 | 1948.5833333332628,182.962,-0.3035834 934 | 1948.666666666596,129.902,-0.51975 935 | 1948.7499999999293,-120.759,-0.79225 936 | 1948.8333333332625,503.338,-0.337 937 | 1948.9166666665958,-84.9549,-0.1490417 938 | 1948.999999999929,-68.6391,-0.3777917 939 | 1949.0833333332623,-19.8346,0.119625 940 | 1949.1666666665956,-97.5263,-0.41575 941 | 1949.2499999999288,106.737,0.37075 942 | 1949.333333333262,274.82,0.2958333 943 | 1949.4166666665953,-262.15,-0.4814167 944 | 1949.4999999999286,223.368,-0.8129584 945 | 1949.5833333332619,-43.0376,-0.6470417 946 | 1949.6666666665951,626.902,-0.9257084 947 | 1949.7499999999284,217.241,-1.08475 948 | 1949.8333333332616,-205.662,-1.513708 949 | 1949.916666666595,-108.955,-1.293167 950 | 1949.9999999999281,-51.6391,-1.264958 951 | 1950.0833333332614,49.1654,-1.398792 952 | 1950.1666666665947,73.4737,-0.5907917 953 | 1950.249999999928,-183.263,-0.6573334 954 | 1950.3333333332612,-90.1805,-1.079458 955 | 1950.4166666665944,-174.15,-0.561375 956 | 1950.4999999999277,505.368,-0.4275833 957 | 1950.583333333261,-188.038,-0.3512084 958 | 1950.6666666665942,132.902,-0.9217501 959 | 1950.7499999999275,-259.759,-0.6642917 960 | 1950.8333333332607,19.3383,-0.69525 961 | 1950.916666666594,-47.9549,-0.4615 962 | 1950.9999999999272,-50.6391,-0.2005417 963 | 1951.0833333332605,-107.835,-0.113 964 | 1951.1666666665938,128.474,-0.08070834 965 | 1951.249999999927,98.7368,0.12925 966 | 1951.3333333332603,-60.1805,0.3492084 967 | 1951.4166666665935,-91.1504,0.6534584 968 | 1951.4999999999268,-180.632,0.9438334 969 | 1951.58333333326,-349.038,0.9537084 970 | 1951.6666666665933,-484.098,0.8770834 971 | 1951.7499999999266,15.2406,0.9367084 972 | 1951.8333333332598,27.3383,1.058167 973 | 1951.916666666593,-110.955,0.7833334 974 | 1951.9999999999263,-87.6391,0.6069583 975 | 1952.0833333332596,-13.8346,0.437875 976 | 1952.1666666665928,3.47368,0.2175417 977 | 1952.249999999926,9.73684,0.4243334 978 | 1952.3333333332594,116.82,0.1422917 979 | 1952.4166666665926,-25.1504,-0.265125 980 | 1952.4999999999259,42.3684,-0.4897917 981 | 1952.5833333332591,-58.0376,-0.2794583 982 | 1952.6666666665924,-523.098,-0.1289583 983 | 1952.7499999999256,31.2406,-0.074583337 984 | 1952.833333333259,-248.662,-0.4577917 985 | 1952.9166666665922,60.0451,-0.22925 986 | 1952.9999999999254,82.3609,0.15475 987 | 1953.0833333332587,-85.8346,0.37275 988 | 1953.166666666592,-49.5263,0.2254584 989 | 1953.2499999999252,9.73684,0.6130417 990 | 1953.3333333332585,-164.18,0.4869584 991 | 1953.4166666665917,-79.1504,0.5982917 992 | 1953.499999999925,276.368,0.40175 993 | 1953.5833333332582,442.962,0.422375 994 | 1953.6666666665915,95.9023,1.030625 995 | 1953.7499999999247,153.241,0.535 996 | 1953.833333333258,-174.662,0.3735417 997 | 1953.9166666665913,-101.955,0.428875 998 | 1953.9999999999245,19.3609,0.2042917 999 | 1954.0833333332578,33.1654,-0.031291667 1000 | 1954.166666666591,-32.5263,-0.1205417 1001 | 1954.2499999999243,-66.2632,-0.767 1002 | 1954.3333333332575,-88.1805,-0.76675 1003 | 1954.4166666665908,-260.15,-0.6817917 1004 | 1954.499999999924,114.368,-0.7750834 1005 | 1954.5833333332573,-196.038,-0.7529167 1006 | 1954.6666666665906,703.902,-0.9442918 1007 | 1954.7499999999238,18.2406,-0.8057501 1008 | 1954.833333333257,-292.662,-0.5814584 1009 | 1954.9166666665903,14.0451,-0.8240417 1010 | 1954.9999999999236,46.3609,-0.4450417 1011 | 1955.0833333332569,-99.8346,-0.393625 1012 | 1955.1666666665901,-25.5263,-0.3714584 1013 | 1955.2499999999234,21.7368,-0.4055 1014 | 1955.3333333332566,128.82,-0.9582501 1015 | 1955.41666666659,154.85,-0.8116667 1016 | 1955.4999999999231,-484.632,-0.5105417 1017 | 1955.5833333332564,613.962,-0.5210417 1018 | 1955.6666666665897,523.902,-0.9434167 1019 | 1955.749999999923,672.241,-1.259667 1020 | 1955.8333333332562,3.33835,-1.72825 1021 | 1955.9166666665894,-13.9549,-1.362417 1022 | 1955.9999999999227,-23.6391,-0.8777917 1023 | 1956.083333333256,-56.8346,-0.29675 1024 | 1956.1666666665892,11.4737,-0.335875 1025 | 1956.2499999999225,-37.2632,-0.3919167 1026 | 1956.3333333332557,339.82,-0.2565417 1027 | 1956.416666666589,436.85,-0.31225 1028 | 1956.4999999999222,691.368,-0.3865417 1029 | 1956.5833333332555,112.962,-0.459 1030 | 1956.6666666665888,97.9023,-0.5269583 1031 | 1956.749999999922,745.241,-0.61125 1032 | 1956.8333333332553,172.338,-0.9212084 1033 | 1956.9166666665885,-29.9549,-0.5896667 1034 | 1956.9999999999218,134.361,-0.548875 1035 | 1957.083333333255,-58.8346,0.134125 1036 | 1957.1666666665883,109.474,0.5798751 1037 | 1957.2499999999216,-72.2632,0.6876667 1038 | 1957.3333333332548,-36.1805,0.7767917 1039 | 1957.416666666588,-189.15,0.9380417 1040 | 1957.4999999999213,-104.632,1.17175 1041 | 1957.5833333332546,177.962,1.39425 1042 | 1957.6666666665878,-492.098,0.8230417 1043 | 1957.749999999921,-182.759,0.8654584 1044 | 1957.8333333332544,-50.6617,1.295542 1045 | 1957.9166666665876,-54.9549,1.24575 1046 | 1957.9999999999209,-39.6391,1.454958 1047 | 1958.0833333332541,-22.8346,1.122625 1048 | 1958.1666666665874,-53.5263,0.6045001 1049 | 1958.2499999999206,18.7368,0.3869167 1050 | 1958.333333333254,71.8195,0.5602916 1051 | 1958.4166666665872,-490.15,0.3310834 1052 | 1958.4999999999204,175.368,0.2275833 1053 | 1958.5833333332537,275.962,0.1564583 1054 | 1958.666666666587,439.902,-0.0017916639 1055 | 1958.7499999999202,241.241,-0.021416668 1056 | 1958.8333333332534,38.3383,0.1468333 1057 | 1958.9166666665867,-70.9549,0.1662917 1058 | 1958.99999999992,93.3609,-0.010083335 1059 | 1959.0833333332532,-26.8346,-0.028083334 1060 | 1959.1666666665865,-54.5263,-0.1025 1061 | 1959.2499999999197,-35.2632,0.3557083 1062 | 1959.333333333253,54.8195,0.3619167 1063 | 1959.4166666665863,-69.1504,-0.042000003 1064 | 1959.4999999999195,487.368,-0.3919584 1065 | 1959.5833333332528,75.9624,-0.5303334 1066 | 1959.666666666586,453.902,-0.255875 1067 | 1959.7499999999193,553.241,0.050375003 1068 | 1959.8333333332525,-97.6617,-0.0043750014 1069 | 1959.9166666665858,-75.9549,-0.039875001 1070 | 1959.999999999919,-20.6391,0.065375 1071 | 1960.0833333332523,-117.835,-0.1235 1072 | 1960.1666666665856,81.4737,0.2257917 1073 | 1960.2499999999188,-133.263,0.056375004 1074 | 1960.333333333252,24.8195,-0.039416671 1075 | 1960.4166666665853,-181.15,-0.289125 1076 | 1960.4999999999186,53.3684,-0.17875 1077 | 1960.5833333332519,76.9624,0.1907917 1078 | 1960.6666666665851,-44.0977,0.1380417 1079 | 1960.7499999999184,-18.7594,-0.5229583 1080 | 1960.8333333332516,79.3383,-0.4422917 1081 | 1960.916666666585,-69.9549,-0.3513333 1082 | 1960.9999999999181,56.3609,-0.34575 1083 | 1961.0833333332514,116.165,0.1231667 1084 | 1961.1666666665847,13.4737,0.027375001 1085 | 1961.249999999918,-88.2632,0.5303333 1086 | 1961.3333333332512,144.82,0.3475417 1087 | 1961.4166666665844,227.85,0.6330834 1088 | 1961.4999999999177,439.368,-0.2915834 1089 | 1961.583333333251,311.962,-0.6474167 1090 | 1961.6666666665842,730.902,-0.969 1091 | 1961.7499999999175,477.241,-0.6770417 1092 | 1961.8333333332507,-125.662,-0.2874167 1093 | 1961.916666666584,-48.9549,-0.089416675 1094 | 1961.9999999999172,-18.6391,-0.2354583 1095 | 1962.0833333332505,-18.8346,-0.083666667 1096 | 1962.1666666665838,-35.5263,-0.4315417 1097 | 1962.249999999917,82.7368,-0.6563751 1098 | 1962.3333333332503,50.8195,-0.4654167 1099 | 1962.4166666665835,-583.15,-0.2419167 1100 | 1962.4999999999168,-129.632,-0.1547083 1101 | 1962.58333333325,-62.0376,-0.078333341 1102 | 1962.6666666665833,379.902,-0.4087084 1103 | 1962.7499999999166,64.2406,-0.4275417 1104 | 1962.8333333332498,-159.662,-0.600375 1105 | 1962.916666666583,168.045,-0.7388334 1106 | 1962.9999999999163,-36.6391,-0.4727083 1107 | 1963.0833333332496,-76.8346,-0.3284583 1108 | 1963.1666666665828,-9.52632,0.059791666 1109 | 1963.249999999916,57.7368,0.2882083 1110 | 1963.3333333332494,-58.1805,0.4530833 1111 | 1963.4166666665826,-117.15,0.5908334 1112 | 1963.4999999999159,-327.632,0.9572917 1113 | 1963.5833333332491,603.962,1.027917 1114 | 1963.6666666665824,-73.0977,0.9019167 1115 | 1963.7499999999156,209.241,1.025583 1116 | 1963.833333333249,-82.6617,0.8132917 1117 | 1963.9166666665822,-19.9549,1.148458 1118 | 1963.9999999999154,-95.6391,0.5010417 1119 | 1964.0833333332487,-70.8346,0.1721667 1120 | 1964.166666666582,-67.5263,-0.3676667 1121 | 1964.2499999999152,-14.2632,-0.65725 1122 | 1964.3333333332484,-92.1805,-1.065667 1123 | 1964.4166666665817,-204.15,-1.141208 1124 | 1964.499999999915,406.368,-0.8432084 1125 | 1964.5833333332482,211.962,-1.017333 1126 | 1964.6666666665815,318.902,-0.8000417 1127 | 1964.7499999999147,-45.7594,-0.6323751 1128 | 1964.833333333248,-53.6617,-0.817625 1129 | 1964.9166666665812,-54.9549,-1.11775 1130 | 1964.9999999999145,-54.6391,-0.6389583 1131 | 1965.0833333332478,-36.8346,-0.1990833 1132 | 1965.166666666581,-1.52632,-0.1632083 1133 | 1965.2499999999143,-20.2632,0.2124167 1134 | 1965.3333333332475,-184.18,0.9646251 1135 | 1965.4166666665808,-538.15,0.92475 1136 | 1965.499999999914,-54.6316,1.028125 1137 | 1965.5833333332473,-531.038,1.262 1138 | 1965.6666666665806,-275.098,1.471042 1139 | 1965.7499999999138,-417.759,1.46025 1140 | 1965.833333333247,-153.662,1.617833 1141 | 1965.9166666665803,101.045,1.512708 1142 | 1965.9999999999136,37.3609,1.333667 1143 | 1966.0833333332469,-76.8346,0.7800834 1144 | 1966.16666666658,-99.5263,0.2234583 1145 | 1966.2499999999134,-102.263,0.2398333 1146 | 1966.3333333332466,-10.1805,-0.4439167 1147 | 1966.4166666665799,15.8496,0.02541667 1148 | 1966.4999999999131,-348.632,0.2542084 1149 | 1966.5833333332464,-443.038,-0.1462917 1150 | 1966.6666666665797,-318.098,-0.250125 1151 | 1966.749999999913,-199.759,-0.1090417 1152 | 1966.8333333332462,300.338,-0.3313333 1153 | 1966.9166666665794,59.0451,-0.4881667 1154 | 1966.9999999999127,-17.6391,-0.2909583 1155 | 1967.083333333246,-101.835,-0.095416673 1156 | 1967.1666666665792,377.474,-0.2873333 1157 | 1967.2499999999125,-38.2632,-0.5887083 1158 | 1967.3333333332457,-197.18,-0.2104584 1159 | 1967.416666666579,-228.15,0.1040417 1160 | 1967.4999999999122,200.368,-0.2443333 1161 | 1967.5833333332455,148.962,-0.7592917 1162 | 1967.6666666665787,-13.0977,-0.9951667 1163 | 1967.749999999912,-359.759,-0.9199584 1164 | 1967.8333333332453,-179.662,-0.9175001 1165 | 1967.9166666665785,376.045,-0.871125 1166 | 1967.9999999999118,40.3609,-1.018083 1167 | 1968.083333333245,-7.83459,-1.241583 1168 | 1968.1666666665783,50.4737,-1.086333 1169 | 1968.2499999999116,5.73684,-0.6218334 1170 | 1968.3333333332448,-213.18,-0.5748333 1171 | 1968.416666666578,-277.15,0.093333334 1172 | 1968.4999999999113,162.368,0.5954583 1173 | 1968.5833333332446,-478.038,0.4332917 1174 | 1968.6666666665778,-354.098,0.3615417 1175 | 1968.749999999911,-76.7594,0.30025 1176 | 1968.8333333332444,-73.6617,0.56225 1177 | 1968.9166666665776,-49.9549,0.6919167 1178 | 1968.9999999999109,-69.6391,0.953875 1179 | 1969.0833333332441,-100.835,0.5150834 1180 | 1969.1666666665774,-54.5263,0.52825 1181 | 1969.2499999999106,-21.2632,0.5159167 1182 | 1969.333333333244,26.8195,1.1275 1183 | 1969.4166666665772,-432.15,0.9589584 1184 | 1969.4999999999104,280.368,0.4381667 1185 | 1969.5833333332437,-38.0376,0.5562917 1186 | 1969.666666666577,6.90226,1.054083 1187 | 1969.7499999999102,-183.759,1.008292 1188 | 1969.8333333332434,127.338,1.065292 1189 | 1969.9166666665767,19.0451,1.118542 1190 | 1969.99999999991,59.3609,1.108375 1191 | 1970.0833333332432,79.1654,0.6450834 1192 | 1970.1666666665765,33.4737,0.3089584 1193 | 1970.2499999999097,-23.2632,0.245375 1194 | 1970.333333333243,49.8195,-0.2194584 1195 | 1970.4166666665762,465.85,-0.7600001 1196 | 1970.4999999999095,-495.632,-1.693625 1197 | 1970.5833333332428,563.962,-1.713375 1198 | 1970.666666666576,370.902,-1.241958 1199 | 1970.7499999999093,-17.7594,-1.112875 1200 | 1970.8333333332425,-117.662,-1.270458 1201 | 1970.9166666665758,-111.955,-1.647375 1202 | 1970.999999999909,4.3609,-1.5305 1203 | 1971.0833333332423,-25.8346,-1.316417 1204 | 1971.1666666665756,-56.5263,-1.174458 1205 | 1971.2499999999088,196.737,-0.46425 1206 | 1971.333333333242,171.82,-0.6747917 1207 | 1971.4166666665753,551.85,-0.5715 1208 | 1971.4999999999086,-230.632,-0.373 1209 | 1971.5833333332419,162.962,-0.6012917 1210 | 1971.666666666575,-109.098,-0.5732501 1211 | 1971.7499999999084,272.241,-0.782625 1212 | 1971.8333333332416,-173.662,-0.8493334 1213 | 1971.9166666665749,-19.9549,-0.9325417 1214 | 1971.9999999999081,-84.6391,-0.33425 1215 | 1972.0833333332414,2.16541,-0.1992917 1216 | 1972.1666666665747,-102.526,-0.026458334 1217 | 1972.249999999908,-57.2632,0.4203333 1218 | 1972.3333333332412,-82.1805,0.8338751 1219 | 1972.4166666665744,-416.15,1.061708 1220 | 1972.4999999999077,-884.632,1.456083 1221 | 1972.583333333241,-253.038,1.941125 1222 | 1972.6666666665742,-410.098,1.839542 1223 | 1972.7499999999075,-145.759,2.044333 1224 | 1972.8333333332407,-3.66165,2.290125 1225 | 1972.916666666574,40.0451,2.321167 1226 | 1972.9999999999072,-62.6391,1.636292 1227 | 1973.0833333332405,-9.83459,1.2655 1228 | 1973.1666666665737,-72.5263,0.785625 1229 | 1973.249999999907,-68.2632,0.1032083 1230 | 1973.3333333332403,-42.1805,-0.8864584 1231 | 1973.4166666665735,-230.15,-0.9628751 1232 | 1973.4999999999068,63.3684,-1.038542 1233 | 1973.58333333324,649.962,-1.399625 1234 | 1973.6666666665733,157.902,-1.241917 1235 | 1973.7499999999065,479.241,-1.424875 1236 | 1973.8333333332398,-115.662,-1.562292 1237 | 1973.916666666573,58.0451,-1.525208 1238 | 1973.9999999999063,-90.6391,-1.394792 1239 | 1974.0833333332396,-89.8346,-1.156375 1240 | 1974.1666666665728,-11.5263,-0.441875 1241 | 1974.249999999906,-41.2632,-0.2852083 1242 | 1974.3333333332394,75.8195,0.1253333 1243 | 1974.4166666665726,-582.15,0.2641667 1244 | 1974.4999999999059,13.3684,-0.09070833 1245 | 1974.5833333332391,-143.038,0.078291677 1246 | 1974.6666666665724,-299.098,-0.2987083 1247 | 1974.7499999999056,286.241,-0.2244584 1248 | 1974.833333333239,-192.662,-0.55025 1249 | 1974.9166666665722,-77.9549,-0.4072917 1250 | 1974.9999999999054,-42.6391,-0.1984583 1251 | 1975.0833333332387,-32.8346,-0.3962917 1252 | 1975.166666666572,-13.5263,-0.4005 1253 | 1975.2499999999052,-99.2632,-0.043125 1254 | 1975.3333333332384,-124.18,-0.4488333 1255 | 1975.4166666665717,159.85,-0.8572917 1256 | 1975.499999999905,177.368,-0.8129584 1257 | 1975.5833333332382,221.962,-0.503375 1258 | 1975.6666666665715,576.902,-0.8416667 1259 | 1975.7499999999047,437.241,-1.100583 1260 | 1975.833333333238,-61.6617,-1.127542 1261 | 1975.9166666665712,-91.9549,-1.465 1262 | 1975.9999999999045,-62.6391,-1.739667 1263 | 1976.0833333332378,-47.8346,-1.0405 1264 | 1976.166666666571,-25.5263,-0.2500834 1265 | 1976.2499999999043,35.7368,-0.051666666 1266 | 1976.3333333332375,-163.18,0.1636667 1267 | 1976.4166666665708,-223.15,0.7459584 1268 | 1976.499999999904,158.368,0.6729584 1269 | 1976.5833333332373,360.962,1.182292 1270 | 1976.6666666665706,-221.098,1.214958 1271 | 1976.7499999999038,-460.759,1.315208 1272 | 1976.833333333237,305.338,1.123917 1273 | 1976.9166666665703,-79.9549,1.025167 1274 | 1976.9999999999036,-38.6391,1.211042 1275 | 1977.0833333332369,-70.8346,0.6994584 1276 | 1977.16666666657,-66.5263,0.583625 1277 | 1977.2499999999034,225.737,-0.2445417 1278 | 1977.3333333332366,188.82,0.309875 1279 | 1977.4166666665699,240.85,0.32825 1280 | 1977.4999999999031,382.368,0.090666674 1281 | 1977.5833333332364,-30.0376,-0.3710417 1282 | 1977.6666666665697,-254.098,-0.054500002 1283 | 1977.749999999903,113.241,0.39225 1284 | 1977.8333333332362,402.338,0.6213334 1285 | 1977.9166666665694,-33.9549,0.4562083 1286 | 1977.9999999999027,-36.6391,0.5896667 1287 | 1978.083333333236,87.1654,0.2877083 1288 | 1978.1666666665692,44.4737,0.050124999 1289 | 1978.2499999999025,-29.2632,-0.4830833 1290 | 1978.3333333332357,-27.1805,-0.2818334 1291 | 1978.416666666569,353.85,-0.6512501 1292 | 1978.4999999999022,37.3684,-0.6697084 1293 | 1978.5833333332355,309.962,-0.7621251 1294 | 1978.6666666665687,-101.098,-0.5003334 1295 | 1978.749999999902,-228.759,-0.32825 1296 | 1978.8333333332353,130.338,-0.044791669 1297 | 1978.9166666665685,110.045,0.2444167 1298 | 1978.9999999999018,36.3609,-0.1144167 1299 | 1979.083333333235,144.165,0.0057500014 1300 | 1979.1666666665683,-51.5263,0.2442917 1301 | 1979.2499999999015,-105.263,0.4585834 1302 | 1979.3333333332348,-125.18,0.5518333 1303 | 1979.416666666568,-207.15,0.4878334 1304 | 1979.4999999999013,-465.632,0.098583341 1305 | 1979.5833333332346,-435.038,0.515875 1306 | 1979.6666666665678,-307.098,1.07025 1307 | 1979.749999999901,-318.759,0.5534167 1308 | 1979.8333333332343,571.338,0.3419167 1309 | 1979.9166666665676,0.0451128,0.5520417 1310 | 1979.9999999999009,-65.6391,0.4616667 1311 | 1980.0833333332341,-74.8346,0.2633334 1312 | 1980.1666666665674,18.4737,0.1430833 1313 | 1980.2499999999006,-17.2632,0.294375 1314 | 1980.333333333234,-89.1805,0.390875 1315 | 1980.4166666665672,508.85,0.5747917 1316 | 1980.4999999999004,59.3684,0.012124998 1317 | 1980.5833333332337,108.962,-0.078000002 1318 | 1980.666666666567,-342.098,-0.1484583 1319 | 1980.7499999999002,-261.759,-0.3381667 1320 | 1980.8333333332334,-69.6617,0.1805 1321 | 1980.9166666665667,58.0451,0.4969167 1322 | 1980.9999999999,53.3609,-0.5247084 1323 | 1981.0833333332332,-55.8346,-0.6013334 1324 | 1981.1666666665665,97.4737,-0.2345833 1325 | 1981.2499999998997,12.7368,-0.5125417 1326 | 1981.333333333233,53.8195,-0.034958337 1327 | 1981.4166666665662,-255.15,0.0083333347 1328 | 1981.4999999998995,165.368,-0.3842917 1329 | 1981.5833333332328,-162.038,-0.6066667 1330 | 1981.666666666566,280.902,-0.078625001 1331 | 1981.7499999998993,-269.759,0.055041667 1332 | 1981.8333333332325,-19.6617,-0.1394436 1333 | 1981.9166666665658,8.04511,0.245679 1334 | 1981.999999999899,57.3609,0.4787224 1335 | 1982.0833333332323,-17.8346,0.1933715 1336 | 1982.1666666665656,98.4737,0.049264032 1337 | 1982.2499999998988,102.737,0.4472539 1338 | 1982.333333333232,-26.1805,1.045563 1339 | 1982.4166666665653,-346.15,1.211087 1340 | 1982.4999999998986,-560.632,0.8999302 1341 | 1982.5833333332318,259.962,1.261593 1342 | 1982.666666666565,-492.098,1.899197 1343 | 1982.7499999998984,-292.759,2.35988 1344 | 1982.8333333332316,192.338,2.720195 1345 | 1982.9166666665649,-62.9549,3.343411 1346 | 1982.9999999998981,-36.6391,3.443757 1347 | 1983.0833333332314,-22.8346,2.87916 1348 | 1983.1666666665647,-23.5263,2.217402 1349 | 1983.249999999898,90.7368,1.970927 1350 | 1983.3333333332312,18.8195,2.329366 1351 | 1983.4166666665644,-264.15,2.062147 1352 | 1983.4999999998977,13.3684,1.356797 1353 | 1983.583333333231,508.962,1.187653 1354 | 1983.6666666665642,805.902,0.7677793 1355 | 1983.7499999998975,120.241,0.07111416 1356 | 1983.8333333332307,-189.662,-0.2986768 1357 | 1983.916666666564,142.045,-0.2742858 1358 | 1983.9999999998972,51.3609,-0.4900808 1359 | 1984.0833333332305,137.165,-0.093203679 1360 | 1984.1666666665637,-28.5263,0.1046514 1361 | 1984.249999999897,15.7368,0.097652987 1362 | 1984.3333333332303,-140.18,-0.1839782 1363 | 1984.4166666665635,96.8496,-0.6828744 1364 | 1984.4999999998968,-111.632,-0.4949481 1365 | 1984.58333333323,165.962,-0.3552837 1366 | 1984.6666666665633,-277.098,-0.1610741 1367 | 1984.7499999998965,-178.759,-0.5522128 1368 | 1984.8333333332298,-179.662,-0.5852469 1369 | 1984.916666666563,-41.9549,-1.072721 1370 | 1984.9999999998963,61.3609,-0.7977945 1371 | 1985.0833333332296,-59.8346,-0.9878023 1372 | 1985.1666666665628,-54.5263,-0.6982444 1373 | 1985.249999999896,-26.2632,-0.4904598 1374 | 1985.3333333332293,-91.1805,-0.4573462 1375 | 1985.4166666665626,-238.15,-0.6342896 1376 | 1985.4999999998959,-189.632,-0.6949093 1377 | 1985.5833333332291,-240.038,-0.6211753 1378 | 1985.6666666665624,-227.098,-0.5324952 1379 | 1985.7499999998956,358.241,-0.5369645 1380 | 1985.833333333229,-118.662,-0.5141952 1381 | 1985.9166666665622,11.0451,-0.5429232 1382 | 1985.9999999998954,38.3609,-0.6772506 1383 | 1986.0833333332287,152.165,-0.4032578 1384 | 1986.166666666562,-75.5263,-0.1076584 1385 | 1986.2499999998952,46.7368,-0.015625795 1386 | 1986.3333333332284,-95.1805,0.036354978 1387 | 1986.4166666665617,133.85,0.058384735 1388 | 1986.499999999895,-339.632,0.1436919 1389 | 1986.5833333332282,-290.038,0.2002011 1390 | 1986.6666666665615,-567.098,0.7306641 1391 | 1986.7499999998947,-72.7594,0.8307792 1392 | 1986.833333333228,74.3383,1.11288 1393 | 1986.9166666665612,49.0451,1.032658 1394 | 1986.9999999998945,3.3609,1.206627 1395 | 1987.0833333332278,-35.8346,1.236719 1396 | 1987.166666666561,16.4737,1.319378 1397 | 1987.2499999998943,-47.2632,1.291177 1398 | 1987.3333333332275,-82.1805,1.465812 1399 | 1987.4166666665608,-484.15,1.450272 1400 | 1987.499999999894,-654.632,1.562424 1401 | 1987.5833333332273,-54.0376,1.671488 1402 | 1987.6666666665606,-327.098,1.973287 1403 | 1987.7499999998938,87.2406,1.563092 1404 | 1987.833333333227,230.338,1.410939 1405 | 1987.9166666665603,115.045,1.312021 1406 | 1987.9999999998936,-84.6391,0.770139 1407 | 1988.0833333332268,-16.8346,0.4307343 1408 | 1988.16666666656,37.4737,0.3418088 1409 | 1988.2499999998934,55.7368,-0.2554331 1410 | 1988.3333333332266,-27.1805,-0.9647219 1411 | 1988.4166666665599,-77.1504,-1.567755 1412 | 1988.4999999998931,508.368,-1.692774 1413 | 1988.5833333332264,336.962,-1.452004 1414 | 1988.6666666665596,353.902,-0.8992996 1415 | 1988.749999999893,-277.759,-1.339106 1416 | 1988.8333333332262,-86.6617,-1.521344 1417 | 1988.9166666665594,-17.9549,-1.56684 1418 | 1988.9999999998927,-48.6391,-1.299349 1419 | 1989.083333333226,-90.8346,-0.6468049 1420 | 1989.1666666665592,40.4737,-0.8288125 1421 | 1989.2499999998925,-97.2632,-0.4289884 1422 | 1989.3333333332257,-104.18,-0.1921278 1423 | 1989.416666666559,193.85,-0.091809563 1424 | 1989.4999999998922,138.368,-0.136659 1425 | 1989.5833333332255,-114.038,-0.2793966 1426 | 1989.6666666665587,-44.0977,-0.1443113 1427 | 1989.749999999892,-293.759,-0.1283587 1428 | 1989.8333333332253,-162.662,-0.1327569 1429 | 1989.9166666665585,1.04511,-0.1622639 1430 | 1989.9999999998918,-57.6391,-0.1544882 1431 | 1990.083333333225,128.165,0.1561754 1432 | 1990.1666666665583,86.4737,0.1196446 1433 | 1990.2499999998915,36.7368,0.4925371 1434 | 1990.3333333332248,546.82,0.6210604 1435 | 1990.416666666558,78.8496,0.3083963 1436 | 1990.4999999998913,-92.6316,0.029720167 1437 | 1990.5833333332246,408.962,0.1911423 1438 | 1990.6666666665578,198.902,0.3149866 1439 | 1990.749999999891,227.241,0.1848168 1440 | 1990.8333333332243,23.3383,0.097667642 1441 | 1990.9166666665576,-31.9549,0.2242653 1442 | 1990.9999999998909,-27.6391,0.2793717 1443 | 1991.0833333332241,-50.8346,0.1684127 1444 | 1991.1666666665574,-24.5263,0.2148169 1445 | 1991.2499999998906,17.7368,0.2318955 1446 | 1991.333333333224,-26.1805,0.924937 1447 | 1991.4166666665571,149.85,1.19877 1448 | 1991.4999999998904,-176.632,1.076829 1449 | 1991.5833333332237,-137.038,0.6549006 1450 | 1991.666666666557,-484.098,0.4541135 1451 | 1991.7499999998902,-170.759,0.9030719 1452 | 1991.8333333332234,45.3383,1.287249 1453 | 1991.9166666665567,6.04511,1.559261 1454 | 1991.99999999989,-49.6391,1.562361 1455 | 1992.0833333332232,-35.8346,1.454479 1456 | 1992.1666666665565,-111.526,1.367549 1457 | 1992.2499999998897,-105.263,1.581219 1458 | 1992.333333333223,-70.1805,1.656618 1459 | 1992.4166666665562,-417.15,0.7269766 1460 | 1992.4999999998895,-403.632,0.2436432 1461 | 1992.5833333332228,274.962,-0.023825595 1462 | 1992.666666666556,-115.098,-0.017980186 1463 | 1992.7499999998893,-127.759,-0.040174477 1464 | 1992.8333333332225,178.338,-0.0079594171 1465 | 1992.9166666665558,-46.9549,0.049429875 1466 | 1992.999999999889,-82.6391,0.033455979 1467 | 1993.0833333332223,29.1654,0.3503805 1468 | 1993.1666666665556,23.4737,0.5832611 1469 | 1993.2499999998888,11.7368,1.173008 1470 | 1993.333333333222,125.82,1.403829 1471 | 1993.4166666665553,144.85,0.8243058 1472 | 1993.4999999998886,66.3684,0.3868412 1473 | 1993.5833333332218,-459.038,0.2405857 1474 | 1993.666666666555,342.902,0.4521553 1475 | 1993.7499999998884,114.241,0.5291239 1476 | 1993.8333333332216,-19.6617,0.3899363 1477 | 1993.9166666665549,98.0451,0.4125022 1478 | 1993.9999999998881,20.3609,0.2741834 1479 | 1994.0833333332214,63.1654,-0.087564394 1480 | 1994.1666666665546,-10.5263,0.0024894834 1481 | 1994.249999999888,88.7368,-0.068991773 1482 | 1994.3333333332212,-149.18,0.3881823 1483 | 1994.4166666665544,504.85,0.3140596 1484 | 1994.4999999998877,492.368,-0.200651 1485 | 1994.583333333221,275.962,-0.1455645 1486 | 1994.6666666665542,-269.098,0.2675676 1487 | 1994.7499999998875,93.2406,0.7593633 1488 | 1994.8333333332207,20.3383,1.045656 1489 | 1994.916666666554,-83.9549,1.129236 1490 | 1994.9999999998872,160.361,0.937923 1491 | 1995.0833333332205,-4.83459,0.6835793 1492 | 1995.1666666665537,18.4737,0.2343409 1493 | 1995.249999999887,-79.2632,0.014058105 1494 | 1995.3333333332203,323.82,-0.1218222 1495 | 1995.4166666665535,-355.15,0.011198606 1496 | 1995.4999999998868,8.36842,-0.054928906 1497 | 1995.58333333322,-86.0376,-0.3730626 1498 | 1995.6666666665533,-54.0977,-0.4147711 1499 | 1995.7499999998865,71.2406,-0.5710534 1500 | 1995.8333333332198,89.3383,-0.7022923 1501 | 1995.916666666553,-62.9549,-0.6446774 1502 | 1995.9999999998863,19.3609,-0.5400862 1503 | 1996.0833333332196,47.1654,-0.4814011 1504 | 1996.1666666665528,-14.5263,-0.1030336 1505 | 1996.249999999886,-0.263158,-0.3715828 1506 | 1996.3333333332193,-137.18,-0.3292112 1507 | 1996.4166666665526,263.85,-0.2382723 1508 | 1996.4999999998859,-280.632,-0.1316241 1509 | 1996.5833333332191,329.962,-0.1635223 1510 | 1996.6666666665524,-183.098,-0.1646935 1511 | 1996.7499999998856,169.241,-0.2054505 1512 | 1996.833333333219,-149.662,-0.2535642 1513 | 1996.9166666665521,39.0451,-0.6168354 1514 | 1996.9999999998854,-5.6391,-0.6102584 1515 | 1997.0833333332187,-91.8346,-0.303581 1516 | 1997.166666666552,-0.526316,0.1707174 1517 | 1997.2499999998852,161.737,0.5996162 1518 | 1997.3333333332184,-99.1805,1.449097 1519 | 1997.4166666665517,136.85,1.983257 1520 | 1997.499999999885,-82.6316,2.408996 1521 | 1997.5833333332182,208.962,2.915967 1522 | 1997.6666666665515,-3.09774,3.122397 1523 | 1997.7499999998847,-30.7594,3.308315 1524 | 1997.833333333218,282.338,3.547784 1525 | 1997.9166666665512,450.045,3.724903 1526 | 1997.9999999998845,35.3609,3.43036 1527 | 1998.0833333332178,18.1654,2.761615 1528 | 1998.166666666551,112.474,2.229913 1529 | 1998.2499999998843,23.7368,1.896097 1530 | 1998.3333333332175,-47.1805,1.568013 1531 | 1998.4166666665508,-177.15,0.1962749 1532 | 1998.499999999884,-161.632,-0.022825558 1533 | 1998.5833333332173,-25.0376,0.079480097 1534 | 1998.6666666665506,389.902,-0.1270769 1535 | 1998.7499999998838,373.241,-0.4242516 1536 | 1998.833333333217,187.338,-0.4510868 1537 | 1998.9166666665503,-12.9549,-0.7682984 1538 | 1998.9999999998836,-67.6391,-0.8359101 1539 | 1999.0833333332168,-12.8346,-0.5222874 1540 | 1999.16666666655,-117.526,-0.1487616 1541 | 1999.2499999998834,-146.263,-0.4309283 1542 | 1999.3333333332166,460.82,-0.084772326 1543 | 1999.4166666665499,106.85,-0.3957591 1544 | 1999.4999999998831,-250.632,-0.4942223 1545 | 1999.5833333332164,-292.038,-0.6333401 1546 | 1999.6666666665496,153.902,-0.7109451 1547 | 1999.749999999883,436.241,-0.8085802 1548 | 1999.8333333332162,-142.662,-1.138787 1549 | 1999.9166666665494,-80.9549,-1.251376 1550 | 1999.9999999998827,-54.6391,-1.432551 1551 | 2000.083333333216,125.165,-0.92368 1552 | 2000.1666666665492,-61.5263,-0.4545587 1553 | 2000.2499999998824,37.7368,0.060650181 1554 | 2000.3333333332157,338.82,0.028873539 1555 | 2000.416666666549,217.85,-0.4213194 1556 | 2000.4999999998822,-253.632,-0.537641 1557 | 2000.5833333332155,-335.038,-0.5081417 1558 | 2000.6666666665487,-412.098,-0.2256393 1559 | 2000.749999999882,-327.759,-0.2572685 1560 | 2000.8333333332153,-183.662,-0.5338784 1561 | 2000.9166666665485,-48.9549,-0.3640887 1562 | 2000.9999999998818,-62.6391,-0.3958249 1563 | 2001.083333333215,-61.8346,-0.182546 1564 | 2001.1666666665483,-31.5263,0.2835068 1565 | 2001.2499999998815,106.737,0.3611216 1566 | 2001.3333333332148,123.82,0.2217147 1567 | 2001.416666666548,712.85,0.1750913 1568 | 2001.4999999998813,-114.632,-0.038524158 1569 | 2001.5833333332146,-526.038,-0.1522177 1570 | 2001.6666666665478,-553.098,-0.2743973 1571 | 2001.749999999881,355.241,-0.266176 1572 | 2001.8333333332143,-76.6617,-0.4197773 1573 | 2001.9166666665476,-54.9549,-0.2828763 1574 | 2001.9999999998809,1.3609,-0.2653425 1575 | 2002.0833333332141,54.1654,0.015816124 1576 | 2002.1666666665474,-45.5263,0.2507458 1577 | 2002.2499999998806,-5.26316,0.3834586 1578 | 2002.333333333214,98.8195,0.6018103 1579 | 2002.4166666665471,65.8496,0.8766004 1580 | 2002.4999999998804,-1534.63,0.563215 1581 | 2002.5833333332137,1.96241,0.5706242 1582 | 2002.666666666547,-355.098,0.9055965 1583 | 2002.7499999998802,-126.759,1.16279 1584 | 2002.8333333332134,-67.6617,1.528841 1585 | 2002.9166666665467,-69.9549,1.504215 1586 | 2002.99999999988,-63.6391,0.940943 1587 | 2003.0833333332132,138.165,0.5549844 1588 | 2003.1666666665465,28.4737,0.4025691 1589 | 2003.2499999998797,4.73684,0.02793373 1590 | 2003.333333333213,-187.18,-0.388851 1591 | 2003.4166666665462,38.8496,-0.2685696 1592 | 2003.4999999998795,134.368,0.1682665 1593 | 2003.5833333332127,-206.038,0.2384973 1594 | 2003.666666666546,103.902,0.4114488 1595 | 2003.7499999998793,218.241,0.5927562 1596 | 2003.8333333332125,-154.662,0.6641306 1597 | 2003.9166666665458,15.0451,0.6043244 1598 | -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- 1 | name: pyleo 2 | channels: 3 | - conda-forge 4 | - defaults 5 | dependencies: 6 | - python==3.11.9 7 | - cartopy 8 | - xarray=2023.6 9 | - Bottleneck 10 | - dask=2023.4.0 11 | - climlab 12 | - pip 13 | - jupyter 14 | - jupyterlab 15 | - pip: 16 | - pangaeapy 17 | - git+https://github.com/LinkedEarth/Pyleoclim_util.git@master 18 | - git+https://github.com/LinkedEarth/pylipd.git@main 19 | - watermark 20 | - openpyxl 21 | --------------------------------------------------------------------------------