diff --git a/.codecov.yml b/.codecov.yml index 5a94096e..4af5eb24 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -1,14 +1,14 @@ coverage: status: - project: # more options at https://docs.codecov.com/docs/commit-status + project: # more options at https://docs.codecov.com/docs/commit-status default: target: auto # use the coverage from the base commit, fail if coverage is lower - threshold: 0% # allow the coverage to drop by + threshold: 0% # allow the coverage to drop by comment: layout: " diff, flags, files" behavior: default require_changes: false - require_base: false # [true :: must have a base report to post] - require_head: false # [true :: must have a head report to post] + require_base: false # [true :: must have a base report to post] + require_head: false # [true :: must have a head report to post] hide_project_coverage: false # [true :: only show coverage on the git diff aka patch coverage] diff --git a/.flake8 b/.flake8 index 5a56eddd..88077af0 100644 --- a/.flake8 +++ b/.flake8 @@ -1,10 +1,12 @@ +# As of now, flake8 does not natively support configuration via pyproject.toml +# https://github.com/microsoft/vscode-flake8/issues/135 [flake8] exclude = .git, __pycache__, build, dist, - doc/source/conf.py + docs/source/conf.py max-line-length = 79 # Ignore some style 'errors' produced while formatting by 'black' # https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#labels-why-pycodestyle-warnings diff --git a/.github/ISSUE_TEMPLATE/release_checklist.md b/.github/ISSUE_TEMPLATE/release_checklist.md index 0f560278..6107962c 100644 --- a/.github/ISSUE_TEMPLATE/release_checklist.md +++ b/.github/ISSUE_TEMPLATE/release_checklist.md @@ -6,30 +6,41 @@ labels: "release" assignees: "" --- -### PyPI/GitHub release checklist: +### PyPI/GitHub rc-release preparation checklist: - [ ] All PRs/issues attached to the release are merged. - [ ] All the badges on the README are passing. - [ ] License information is verified as correct. If you are unsure, please comment below. - [ ] Locally rendered documentation contains all appropriate pages, including API references (check no modules are - missing), tutorials, and other human written text is up-to-date with any changes in the code. -- [ ] Installation instructions in the README, documentation and on the website (e.g., diffpy.org) are updated. + missing), tutorials, and other human-written text is up-to-date with any changes in the code. +- [ ] Installation instructions in the README, documentation, and the website are updated. - [ ] Successfully run any tutorial examples or do functional testing with the latest Python version. - [ ] Grammar and writing quality are checked (no typos). +- [ ] Install `pip install build twine`, run `python -m build` and `twine check dist/*` to ensure that the package can be built and is correctly formatted for PyPI release. -Please mention @sbillinge here when you are ready for PyPI/GitHub release. Include any additional comments necessary, such as -version information and details about the pre-release here: +Please tag the maintainer (e.g., @username) in the comment here when you are ready for the PyPI/GitHub release. Include any additional comments necessary, such as version information and details about the pre-release here: -### conda-forge release checklist: +### PyPI/GitHub full-release preparation checklist: - +- [ ] Create a new conda environment and install the rc from PyPI (`pip install ==??`) +- [ ] License information on PyPI is correct. +- [ ] Docs are deployed successfully to `https:///`. +- [ ] Successfully run all tests, tutorial examples or do functional testing. +Please let the maintainer know that all checks are done and the package is ready for full release. + +### conda-forge release preparation checklist: + + + +- [ ] Ensure that the full release has appeared on PyPI successfully. - [ ] New package dependencies listed in `conda.txt` and `test.txt` are added to `meta.yaml` in the feedstock. -- [ ] All relevant issues in the feedstock are addressed in the release PR. +- [ ] Close any open issues on the feedstock. Reach out to the maintainer if you have questions. +- [ ] Tag the maintainer for conda-forge release. ### Post-release checklist -- [ ] Run tutorial examples and conduct functional testing using the installation guide in the README. Attach screenshots/results as comments. -- [ ] Documentation (README, tutorials, API references, and websites) is deployed without broken links or missing figures. +- [ ] Run tutorial examples and conduct functional testing using the installation guide in the README. Attach screenshots/results as comments. +- [ ] Documentation (README, tutorials, API references, and websites) is deployed without broken links or missing figures. diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 00000000..1099d862 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,15 @@ +### What problem does this PR address? + + + +### What should the reviewer(s) do? + + + + diff --git a/.github/workflows/build-wheel-release-upload.yml b/.github/workflows/build-wheel-release-upload.yml index cd49342e..27fe04c1 100644 --- a/.github/workflows/build-wheel-release-upload.yml +++ b/.github/workflows/build-wheel-release-upload.yml @@ -4,15 +4,15 @@ on: workflow_dispatch: push: tags: - - '*' # Trigger on all tags initially, but tag and release privilege are verified in _build-wheel-release-upload.yml + - "*" # Trigger on all tags initially, but tag and release privilege are verified in _build-wheel-release-upload.yml jobs: release: - uses: Billingegroup/release-scripts/.github/workflows/_build-wheel-release-upload.yml@v0 + uses: scikit-package/release-scripts/.github/workflows/_build-wheel-release-upload.yml@v0 with: project: diffpy.morph - github_admin_username: sbillinge - + c_extension: false + maintainer_GITHUB_username: sbillinge secrets: PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} PAT_TOKEN: ${{ secrets.PAT_TOKEN }} diff --git a/.github/workflows/check-news-item.yml b/.github/workflows/check-news-item.yml index d672d34d..b999887f 100644 --- a/.github/workflows/check-news-item.yml +++ b/.github/workflows/check-news-item.yml @@ -3,10 +3,10 @@ name: Check for News on: pull_request_target: branches: - - main + - main jobs: check-news-item: - uses: Billingegroup/release-scripts/.github/workflows/_check-news-item.yml@v0 + uses: scikit-package/release-scripts/.github/workflows/_check-news-item.yml@v0 with: project: diffpy.morph diff --git a/.github/workflows/matrix-and-codecov-on-merge-to-main.yml b/.github/workflows/matrix-and-codecov-on-merge-to-main.yml index 4a5af435..cc9611df 100644 --- a/.github/workflows/matrix-and-codecov-on-merge-to-main.yml +++ b/.github/workflows/matrix-and-codecov-on-merge-to-main.yml @@ -12,7 +12,7 @@ on: jobs: matrix-coverage: - uses: Billingegroup/release-scripts/.github/workflows/_matrix-and-codecov-on-merge-to-main.yml@v0 + uses: scikit-package/release-scripts/.github/workflows/_matrix-and-codecov-on-merge-to-main.yml@v0 with: project: diffpy.morph c_extension: false diff --git a/.github/workflows/publish-docs-on-release.yml b/.github/workflows/publish-docs-on-release.yml new file mode 100644 index 00000000..f58afea8 --- /dev/null +++ b/.github/workflows/publish-docs-on-release.yml @@ -0,0 +1,12 @@ +name: Deploy Documentation on Release + +on: + workflow_dispatch: + +jobs: + docs: + uses: scikit-package/release-scripts/.github/workflows/_publish-docs-on-release.yml@v0 + with: + project: diffpy.morph + c_extension: false + headless: false diff --git a/.github/workflows/tests-on-pr.yml b/.github/workflows/tests-on-pr.yml index 8d0a909f..9d7879ea 100644 --- a/.github/workflows/tests-on-pr.yml +++ b/.github/workflows/tests-on-pr.yml @@ -1,15 +1,12 @@ name: Tests on PR on: - push: - branches: - - main pull_request: workflow_dispatch: jobs: tests-on-pr: - uses: Billingegroup/release-scripts/.github/workflows/_tests-on-pr.yml@v0 + uses: scikit-package/release-scripts/.github/workflows/_tests-on-pr.yml@v0 with: project: diffpy.morph c_extension: false diff --git a/.gitignore b/.gitignore index a25212ea..099e2948 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ __pycache__/ .Python env/ build/ +_build/ develop-eggs/ dist/ downloads/ @@ -90,10 +91,3 @@ target/ # Ipython Notebook .ipynb_checkpoints - -# version information -setup.cfg -/src/diffpy/*/version.cfg - -# Rever -rever/ diff --git a/.isort.cfg b/.isort.cfg index 6d831957..86f162b8 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -1,4 +1,5 @@ [settings] +# Keep import statement below line_length character limit line_length = 79 multi_line_output = 3 include_trailing_comma = True diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9cf0556f..0e4a84d1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,14 +1,14 @@ default_language_version: - python: python3 + python: python3 ci: - autofix_commit_msg: | - [pre-commit.ci] auto fixes from pre-commit hooks - autofix_prs: true - autoupdate_branch: 'pre-commit-autoupdate' - autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate' - autoupdate_schedule: monthly - skip: [no-commit-to-branch] - submodules: false + autofix_commit_msg: | + [pre-commit.ci] auto fixes from pre-commit hooks + autofix_prs: true + autoupdate_branch: "pre-commit-autoupdate" + autoupdate_commit_msg: "[pre-commit.ci] pre-commit autoupdate" + autoupdate_schedule: monthly + skip: [no-commit-to-branch] + submodules: false repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.6.0 @@ -47,6 +47,20 @@ repos: - repo: https://github.com/codespell-project/codespell rev: v2.3.0 hooks: - - id: codespell - additional_dependencies: - - tomli + - id: codespell + additional_dependencies: + - tomli + # prettier - multi formatter for .json, .yml, and .md files + - repo: https://github.com/pre-commit/mirrors-prettier + rev: f12edd9c7be1c20cfa42420fd0e6df71e42b51ea # frozen: v4.0.0-alpha.8 + hooks: + - id: prettier + additional_dependencies: + - "prettier@^3.2.4" + # docformatter - PEP 257 compliant docstring formatter + - repo: https://github.com/s-weigand/docformatter + rev: 5757c5190d95e5449f102ace83df92e7d3b06c6c + hooks: + - id: docformatter + additional_dependencies: [tomli] + args: [--in-place, --config, ./pyproject.toml] diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..aaa88895 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,13 @@ +version: 2 + +build: + os: "ubuntu-22.04" + tools: + python: "latest" + +python: + install: + - requirements: requirements/docs.txt + +sphinx: + configuration: docs/source/conf.py diff --git a/AUTHORS.rst b/AUTHORS.rst index d9f94cb0..f7aca6d3 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -1,5 +1,5 @@ Authors -======== +======= Billinge Group and community contributors. diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ab9d9273..81011da6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ ============= -Release Notes +Release notes ============= .. current developments diff --git a/CODE_OF_CONDUCT.rst b/CODE_OF_CONDUCT.rst index ff9c3561..e8199ca5 100644 --- a/CODE_OF_CONDUCT.rst +++ b/CODE_OF_CONDUCT.rst @@ -8,7 +8,7 @@ Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, +identity and expression, level of experience, education, socioeconomic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation. diff --git a/LICENSE.rst b/LICENSE.rst index 95a04ac9..748d7e06 100644 --- a/LICENSE.rst +++ b/LICENSE.rst @@ -1,7 +1,6 @@ BSD 3-Clause License -Copyright (c) 2024, The Trustees of Columbia University -in the City of New York. +Copyright (c) 2024-2025, The Trustees of Columbia University in the City of New York. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.rst b/README.rst index 4c54d9b6..0260c281 100644 --- a/README.rst +++ b/README.rst @@ -1,11 +1,14 @@ -|Icon| `diffpy.morph `_ -============================================================== +|Icon| |title|_ +=============== + +.. |title| replace:: diffpy.morph +.. _title: https://diffpy.github.io/diffpy.morph .. |Icon| image:: https://avatars.githubusercontent.com/diffpy :target: https://diffpy.github.io/diffpy.morph :height: 100px -|PyPi| |Forge| |PythonVersion| |PR| +|PyPI| |Forge| |PythonVersion| |PR| |CI| |Codecov| |Black| |Tracking| @@ -23,7 +26,7 @@ .. |PR| image:: https://img.shields.io/badge/PR-Welcome-29ab47ff -.. |PyPi| image:: https://img.shields.io/pypi/v/diffpy.morph +.. |PyPI| image:: https://img.shields.io/pypi/v/diffpy.morph :target: https://pypi.org/project/diffpy.morph/ .. |PythonVersion| image:: https://img.shields.io/pypi/pyversions/diffpy.morph @@ -32,7 +35,7 @@ .. |Tracking| image:: https://img.shields.io/badge/issue_tracking-github-blue :target: https://github.com/diffpy/diffpy.morph/issues -Tools for manipulating and comparing PDF profiles +Python package for manipulating and comparing PDF profiles ``diffpy.morph`` is a Python software package designed to increase the insight researchers can obtain from measured atomic pair distribution functions @@ -79,7 +82,7 @@ and typing into a terminal window or Windows command prompt. It is recommended that you consult online resources and become somewhat familiar before using ``diffpy.morph``. -``diffpy.morph`` can be run with Python 3.10 or higher. It makes use of several third party +``diffpy.morph`` can be run with Python 3.11 or higher. It makes use of several third party libraries that you'll need to run the app and its components. * `NumPy` - library for scientific computing with Python @@ -107,11 +110,11 @@ The following creates and activates a new environment named ``diffpy.morph_env`` conda create -n diffpy.morph_env diffpy.morph conda activate diffpy.morph_env -To confirm that the installation was successful, type:: +To confirm that the installation was successful, type :: python -c "import diffpy.morph; print(diffpy.morph.__version__)" - The output should print the latest version displayed on the badges above. +The output should print the latest version displayed on the badges above. If the above does not work, you can use ``pip`` to download and install the latest release from `Python Package Index `_. @@ -137,8 +140,7 @@ You may consult our `online documentation `. +For detailed instructions and full tutorial, see our `website `. Once the required software, including ``diffpy.morph`` is all installed, open up a terminal and check installation has worked properly by running :: @@ -155,9 +157,8 @@ of ``diffpy.morph`` that you have installed on your system. To begin using where both PDFs file are text files which contain PDF data, such as ``.gr`` or ``.cgr`` files that are produced by ``PDFgetX2``, ``PDFgetX3``, -or ``PDFgui``. Though some file extensions other than ``.gr`` or ``.cgr``, -but with the same content structure, have been shown to work with -``diffpy.morph``, it is recommended to stick with ``.gr`` files. +or ``PDFgui``. File extensions other than ``.gr`` or ``.cgr``, +but with the same content structure, also work with ``diffpy.morph``. Enjoy! @@ -174,7 +175,7 @@ in a development mode, with its sources being directly used by Python rather than copied to a package directory, use the following in the root directory :: - pip install -e . + pip install -e . To ensure code quality and to prevent accidental commits into the default branch, please set up the use of our pre-commit hooks. @@ -195,4 +196,9 @@ Before contributing, please read our `Code of Conduct `_ or email Prof. Simon Billinge at sb2896@columbia.edu. +For more information on diffpy.morph please visit the project `web-page `_ or email Simon J.L. Billinge group at sb2896@columbia.edu. + +Acknowledgements +---------------- + +``diffpy.morph`` is built and maintained with `scikit-package `_. diff --git a/doc/manual/images/morph_ex1.png b/doc/manual/images/morph_ex1.png deleted file mode 100644 index 76b59b3d..00000000 Binary files a/doc/manual/images/morph_ex1.png and /dev/null differ diff --git a/doc/manual/images/nacl_example.agr b/doc/manual/images/nacl_example.agr deleted file mode 100644 index 95f6b17b..00000000 --- a/doc/manual/images/nacl_example.agr +++ /dev/null @@ -1,67934 +0,0 @@ -# Grace project file -# -@version 50122 -@page size 792, 612 -@page scroll 5% -@page inout 5% -@link page off -@map font 28 to "AvantGarde-Book", "AvantGarde-Book" -@map font 8 to "Courier", "Courier" -@map font 10 to "Courier-Bold", "Courier-Bold" -@map font 11 to "Courier-BoldOblique", "Courier-BoldOblique" -@map font 9 to "Courier-Oblique", "Courier-Oblique" -@map font 4 to "Helvetica", "Helvetica" -@map font 6 to "Helvetica-Bold", "Helvetica-Bold" -@map font 7 to "Helvetica-BoldOblique", "Helvetica-BoldOblique" -@map font 15 to "Helvetica-Narrow", "Helvetica-Narrow" -@map font 16 to "Helvetica-Narrow-Bold", "Helvetica-Narrow-Bold" -@map font 17 to "Helvetica-Narrow-BoldOblique", "Helvetica-Narrow-BoldOblique" -@map font 18 to "Helvetica-Narrow-Oblique", "Helvetica-Narrow-Oblique" -@map font 5 to "Helvetica-Oblique", "Helvetica-Oblique" -@map font 20 to "NewCenturySchlbk-Bold", "NewCenturySchlbk-Bold" -@map font 21 to "NewCenturySchlbk-BoldItalic", "NewCenturySchlbk-BoldItalic" -@map font 22 to "NewCenturySchlbk-Italic", "NewCenturySchlbk-Italic" -@map font 23 to "NewCenturySchlbk-Roman", "NewCenturySchlbk-Roman" -@map font 24 to "Palatino-Bold", "Palatino-Bold" -@map font 25 to "Palatino-BoldItalic", "Palatino-BoldItalic" -@map font 26 to "Palatino-Italic", "Palatino-Italic" -@map font 27 to "Palatino-Roman", "Palatino-Roman" -@map font 75 to "Symbol", "Symbol" -@map font 2 to "Times-Bold", "Times-Bold" -@map font 3 to "Times-BoldItalic", "Times-BoldItalic" -@map font 1 to "Times-Italic", "Times-Italic" -@map font 0 to "Times-Roman", "Times-Roman" -@map font 33 to "ZapfChancery-MediumItalic", "ZapfChancery-MediumItalic" -@map font 13 to "ZapfDingbats", "ZapfDingbats" -@map font 35 to "LMRoman10-Bold", "LMRoman10-Bold" -@map font 36 to "LMRoman10-BoldItalic", "LMRoman10-BoldItalic" -@map font 37 to "LMRoman10-BoldOblique", "LMRoman10-BoldOblique" -@map font 38 to "LMRoman10-CapsOblique", "LMRoman10-CapsOblique" -@map font 39 to "LMRoman10-CapsRegular", "LMRoman10-CapsRegular" -@map font 40 to "LMRoman10-Demi", "LMRoman10-Demi" -@map font 41 to "LMRoman10-DemiOblique", "LMRoman10-DemiOblique" -@map font 42 to "LMRoman10-Dunhill", "LMRoman10-Dunhill" -@map font 43 to "LMRoman10-DunhillOblique", "LMRoman10-DunhillOblique" -@map font 44 to "LMRoman10-Italic", "LMRoman10-Italic" -@map font 45 to "LMRoman10-Oblique", "LMRoman10-Oblique" -@map font 46 to "LMRoman10-Regular", "LMRoman10-Regular" -@map font 47 to "LMRoman10-Unslanted", "LMRoman10-Unslanted" -@map font 48 to "LMSans10-Bold", "LMSans10-Bold" -@map font 49 to "LMSans10-BoldOblique", "LMSans10-BoldOblique" -@map font 50 to "LMSans10-DemiCondensed", "LMSans10-DemiCondensed" -@map font 51 to "LMSans10-DemiCondensedOblique", "LMSans10-DemiCondensedOblique" -@map font 52 to "LMSans10-Oblique", "LMSans10-Oblique" -@map font 53 to "LMSans10-Regular", "LMSans10-Regular" -@map font 54 to "LMSansQuotation8-Bold", "LMSansQuotation8-Bold" -@map font 55 to "LMSansQuotation8-BoldOblique", "LMSansQuotation8-BoldOblique" -@map font 56 to "LMSansQuotation8-Oblique", "LMSansQuotation8-Oblique" -@map font 57 to "LMSansQuotation8-Regular", "LMSansQuotation8-Regular" -@map font 58 to "LMTypewriter10-CapsOblique", "LMTypewriter10-CapsOblique" -@map font 59 to "LMTypewriter10-CapsRegular", "LMTypewriter10-CapsRegular" -@map font 60 to "LMTypewriter10-Dark", "LMTypewriter10-Dark" -@map font 61 to "LMTypewriter10-DarkOblique", "LMTypewriter10-DarkOblique" -@map font 62 to "LMTypewriter10-Italic", "LMTypewriter10-Italic" -@map font 63 to "LMTypewriter10-Light", "LMTypewriter10-Light" -@map font 64 to "LMTypewriter10-LightCondensed", "LMTypewriter10-LightCondensed" -@map font 65 to "LMTypewriter10-LightCondensedOblique", "LMTypewriter10-LightCondensedOblique" -@map font 66 to "LMTypewriter10-LightOblique", "LMTypewriter10-LightOblique" -@map font 67 to "LMTypewriter10-Oblique", "LMTypewriter10-Oblique" -@map font 68 to "LMTypewriter10-Regular", "LMTypewriter10-Regular" -@map font 69 to "LMTypewriterVarWd10-Dark", "LMTypewriterVarWd10-Dark" -@map font 70 to "LMTypewriterVarWd10-DarkOblique", "LMTypewriterVarWd10-DarkOblique" -@map font 71 to "LMTypewriterVarWd10-Light", "LMTypewriterVarWd10-Light" -@map font 72 to "LMTypewriterVarWd10-LightOblique", "LMTypewriterVarWd10-LightOblique" -@map font 73 to "LMTypewriterVarWd10-Oblique", "LMTypewriterVarWd10-Oblique" -@map font 74 to "LMTypewriterVarWd10-Regular", "LMTypewriterVarWd10-Regular" -@map color 0 to (255, 255, 255), "white" -@map color 1 to (0, 0, 0), "black" -@map color 2 to (0, 0, 255), "blue" -@map color 3 to (255, 0, 0), "red" -@map color 4 to (0, 255, 0), "green" -@map color 5 to (188, 143, 143), "brown" -@map color 6 to (255, 165, 0), "orange" -@map color 7 to (148, 0, 211), "violet" -@map color 8 to (0, 255, 255), "cyan" -@map color 9 to (255, 0, 255), "magenta" -@map color 10 to (255, 255, 0), "yellow" -@map color 11 to (114, 33, 188), "indigo" -@map color 12 to (103, 7, 72), "maroon" -@map color 13 to (64, 224, 208), "turquoise" -@map color 14 to (0, 139, 0), "green4" -@map color 15 to (220, 220, 220), "grey 1" -@map color 16 to (195, 195, 195), "grey 2" -@map color 17 to (160, 160, 160), "grey 3" -@map color 18 to (125, 125, 125), "grey 4" -@map color 19 to (90, 90, 90), "grey 5" -@reference date 0 -@date wrap off -@date wrap year 1950 -@default linewidth 3.0 -@default linestyle 1 -@default color 1 -@default pattern 1 -@default font 4 -@default char size 1.000000 -@default symbol size 1.000000 -@default sformat "%.8g" -@background color 0 -@page background fill on -@timestamp off -@timestamp 0.03, 0.03 -@timestamp color 1 -@timestamp rot 0 -@timestamp font 4 -@timestamp char size 1.000000 -@timestamp def "Wed Apr 21 14:44:14 2010" -@r0 off -@link r0 to g0 -@r0 type above -@r0 linestyle 1 -@r0 linewidth 1.0 -@r0 color 1 -@r0 line 0, 0, 0, 0 -@r1 off -@link r1 to g0 -@r1 type above -@r1 linestyle 1 -@r1 linewidth 1.0 -@r1 color 1 -@r1 line 0, 0, 0, 0 -@r2 off -@link r2 to g0 -@r2 type above -@r2 linestyle 1 -@r2 linewidth 1.0 -@r2 color 1 -@r2 line 0, 0, 0, 0 -@r3 off -@link r3 to g0 -@r3 type above -@r3 linestyle 1 -@r3 linewidth 1.0 -@r3 color 1 -@r3 line 0, 0, 0, 0 -@r4 off -@link r4 to g0 -@r4 type above -@r4 linestyle 1 -@r4 linewidth 1.0 -@r4 color 1 -@r4 line 0, 0, 0, 0 -@g0 on -@g0 hidden false -@g0 type XY -@g0 stacked false -@g0 bar hgap 0.000000 -@g0 fixedpoint off -@g0 fixedpoint type 0 -@g0 fixedpoint xy 0.000000, 0.000000 -@g0 fixedpoint format general general -@g0 fixedpoint prec 6, 6 -@with g0 -@ world 0, -3.5, 27, 2.5 -@ stack world 0, 0, 0, 0 -@ znorm 1 -@ view 0.150000, 0.503465, 0.642137, 0.850000 -@ title "" -@ title font 4 -@ title size 1.500000 -@ title color 1 -@ subtitle "" -@ subtitle font 4 -@ subtitle size 1.000000 -@ subtitle color 1 -@ xaxes scale Normal -@ yaxes scale Normal -@ xaxes invert off -@ yaxes invert off -@ xaxis on -@ xaxis type zero false -@ xaxis offset 0.000000 , 0.000000 -@ xaxis bar on -@ xaxis bar color 1 -@ xaxis bar linestyle 1 -@ xaxis bar linewidth 3.0 -@ xaxis label "r (Å)" -@ xaxis label layout para -@ xaxis label place spec -@ xaxis label place 0.250000, 0.420000 -@ xaxis label char size 1.390000 -@ xaxis label font 4 -@ xaxis label color 1 -@ xaxis label place normal -@ xaxis tick on -@ xaxis tick major 5 -@ xaxis tick minor ticks 4 -@ xaxis tick default 6 -@ xaxis tick place rounded true -@ xaxis tick in -@ xaxis tick major size 1.000000 -@ xaxis tick major color 1 -@ xaxis tick major linewidth 3.0 -@ xaxis tick major linestyle 1 -@ xaxis tick major grid off -@ xaxis tick minor color 1 -@ xaxis tick minor linewidth 2.5 -@ xaxis tick minor linestyle 1 -@ xaxis tick minor grid off -@ xaxis tick minor size 0.500000 -@ xaxis ticklabel off -@ xaxis ticklabel format general -@ xaxis ticklabel prec 5 -@ xaxis ticklabel formula "" -@ xaxis ticklabel append "" -@ xaxis ticklabel prepend "" -@ xaxis ticklabel angle 0 -@ xaxis ticklabel skip 0 -@ xaxis ticklabel stagger 0 -@ xaxis ticklabel place normal -@ xaxis ticklabel offset spec -@ xaxis ticklabel offset 0.000000 , 0.020000 -@ xaxis ticklabel start type auto -@ xaxis ticklabel start 0.000000 -@ xaxis ticklabel stop type auto -@ xaxis ticklabel stop 0.000000 -@ xaxis ticklabel char size 1.800000 -@ xaxis ticklabel font 4 -@ xaxis ticklabel color 1 -@ xaxis tick place normal -@ xaxis tick spec type none -@ yaxis on -@ yaxis type zero false -@ yaxis offset 0.000000 , 0.000000 -@ yaxis bar off -@ yaxis bar color 1 -@ yaxis bar linestyle 0 -@ yaxis bar linewidth 3.0 -@ yaxis label "G (Å\S-2\N)" -@ yaxis label layout para -@ yaxis label place spec -@ yaxis label place -0.200000, 0.080000 -@ yaxis label char size 1.390000 -@ yaxis label font 4 -@ yaxis label color 1 -@ yaxis label place normal -@ yaxis tick on -@ yaxis tick major 1 -@ yaxis tick minor ticks 1 -@ yaxis tick default 6 -@ yaxis tick place rounded true -@ yaxis tick in -@ yaxis tick major size 1.000000 -@ yaxis tick major color 1 -@ yaxis tick major linewidth 3.0 -@ yaxis tick major linestyle 1 -@ yaxis tick major grid off -@ yaxis tick minor color 1 -@ yaxis tick minor linewidth 2.5 -@ yaxis tick minor linestyle 1 -@ yaxis tick minor grid off -@ yaxis tick minor size 0.500000 -@ yaxis ticklabel on -@ yaxis ticklabel format general -@ yaxis ticklabel prec 5 -@ yaxis ticklabel formula "" -@ yaxis ticklabel append "" -@ yaxis ticklabel prepend "" -@ yaxis ticklabel angle 0 -@ yaxis ticklabel skip 0 -@ yaxis ticklabel stagger 0 -@ yaxis ticklabel place normal -@ yaxis ticklabel offset auto -@ yaxis ticklabel offset 0.000000 , 0.010000 -@ yaxis ticklabel start type auto -@ yaxis ticklabel start 0.000000 -@ yaxis ticklabel stop type auto -@ yaxis ticklabel stop 0.000000 -@ yaxis ticklabel char size 1.050000 -@ yaxis ticklabel font 4 -@ yaxis ticklabel color 1 -@ yaxis tick place normal -@ yaxis tick spec type none -@ altxaxis off -@ altyaxis off -@ legend on -@ legend loctype view -@ legend 0.85, 0.8 -@ legend box color 1 -@ legend box pattern 1 -@ legend box linewidth 3.0 -@ legend box linestyle 1 -@ legend box fill color 0 -@ legend box fill pattern 1 -@ legend font 4 -@ legend char size 1.000000 -@ legend color 1 -@ legend length 4 -@ legend vgap 1 -@ legend hgap 1 -@ legend invert false -@ frame type 0 -@ frame linestyle 1 -@ frame linewidth 3.0 -@ frame color 1 -@ frame pattern 1 -@ frame background color 0 -@ frame background pattern 0 -@ s0 hidden false -@ s0 type xy -@ s0 symbol 0 -@ s0 symbol size 1.000000 -@ s0 symbol color 15 -@ s0 symbol pattern 1 -@ s0 symbol fill color 15 -@ s0 symbol fill pattern 0 -@ s0 symbol linewidth 3.0 -@ s0 symbol linestyle 1 -@ s0 symbol char 65 -@ s0 symbol char font 4 -@ s0 symbol skip 0 -@ s0 line type 1 -@ s0 line linestyle 1 -@ s0 line linewidth 2.0 -@ s0 line color 15 -@ s0 line pattern 1 -@ s0 baseline type 0 -@ s0 baseline off -@ s0 dropline off -@ s0 fill type 0 -@ s0 fill rule 0 -@ s0 fill color 1 -@ s0 fill pattern 1 -@ s0 avalue off -@ s0 avalue type 2 -@ s0 avalue char size 1.000000 -@ s0 avalue font 4 -@ s0 avalue color 1 -@ s0 avalue rot 0 -@ s0 avalue format general -@ s0 avalue prec 3 -@ s0 avalue prepend "" -@ s0 avalue append "" -@ s0 avalue offset 0.000000 , 0.000000 -@ s0 errorbar on -@ s0 errorbar place both -@ s0 errorbar color 15 -@ s0 errorbar pattern 1 -@ s0 errorbar size 1.000000 -@ s0 errorbar linewidth 3.0 -@ s0 errorbar linestyle 1 -@ s0 errorbar riser linewidth 3.0 -@ s0 errorbar riser linestyle 1 -@ s0 errorbar riser clip off -@ s0 errorbar riser clip length 0.100000 -@ s0 comment "copy of setdata G0.S0" -@ s0 legend "" -@ s1 hidden false -@ s1 type xy -@ s1 symbol 1 -@ s1 symbol size 0.730000 -@ s1 symbol color 2 -@ s1 symbol pattern 1 -@ s1 symbol fill color 2 -@ s1 symbol fill pattern 0 -@ s1 symbol linewidth 2.0 -@ s1 symbol linestyle 1 -@ s1 symbol char 65 -@ s1 symbol char font 4 -@ s1 symbol skip 3 -@ s1 line type 0 -@ s1 line linestyle 1 -@ s1 line linewidth 3.0 -@ s1 line color 2 -@ s1 line pattern 1 -@ s1 baseline type 0 -@ s1 baseline off -@ s1 dropline off -@ s1 fill type 0 -@ s1 fill rule 0 -@ s1 fill color 1 -@ s1 fill pattern 1 -@ s1 avalue off -@ s1 avalue type 2 -@ s1 avalue char size 1.000000 -@ s1 avalue font 4 -@ s1 avalue color 1 -@ s1 avalue rot 0 -@ s1 avalue format general -@ s1 avalue prec 3 -@ s1 avalue prepend "" -@ s1 avalue append "" -@ s1 avalue offset 0.000000 , 0.000000 -@ s1 errorbar on -@ s1 errorbar place both -@ s1 errorbar color 2 -@ s1 errorbar pattern 1 -@ s1 errorbar size 1.000000 -@ s1 errorbar linewidth 3.0 -@ s1 errorbar linestyle 1 -@ s1 errorbar riser linewidth 3.0 -@ s1 errorbar riser linestyle 1 -@ s1 errorbar riser clip off -@ s1 errorbar riser clip length 0.100000 -@ s1 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_1149.gr" -@ s1 legend "" -@ s2 hidden false -@ s2 type xy -@ s2 symbol 0 -@ s2 symbol size 1.000000 -@ s2 symbol color 3 -@ s2 symbol pattern 1 -@ s2 symbol fill color 3 -@ s2 symbol fill pattern 0 -@ s2 symbol linewidth 3.0 -@ s2 symbol linestyle 1 -@ s2 symbol char 65 -@ s2 symbol char font 4 -@ s2 symbol skip 0 -@ s2 line type 1 -@ s2 line linestyle 1 -@ s2 line linewidth 3.0 -@ s2 line color 3 -@ s2 line pattern 1 -@ s2 baseline type 0 -@ s2 baseline off -@ s2 dropline off -@ s2 fill type 0 -@ s2 fill rule 0 -@ s2 fill color 1 -@ s2 fill pattern 1 -@ s2 avalue off -@ s2 avalue type 2 -@ s2 avalue char size 1.000000 -@ s2 avalue font 4 -@ s2 avalue color 1 -@ s2 avalue rot 0 -@ s2 avalue format general -@ s2 avalue prec 3 -@ s2 avalue prepend "" -@ s2 avalue append "" -@ s2 avalue offset 0.000000 , 0.000000 -@ s2 errorbar on -@ s2 errorbar place both -@ s2 errorbar color 3 -@ s2 errorbar pattern 1 -@ s2 errorbar size 1.000000 -@ s2 errorbar linewidth 3.0 -@ s2 errorbar linestyle 1 -@ s2 errorbar riser linewidth 3.0 -@ s2 errorbar riser linestyle 1 -@ s2 errorbar riser clip off -@ s2 errorbar riser clip length 0.100000 -@ s2 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_0969.gr" -@ s2 legend "" -@ s3 hidden false -@ s3 type xy -@ s3 symbol 0 -@ s3 symbol size 1.000000 -@ s3 symbol color 4 -@ s3 symbol pattern 1 -@ s3 symbol fill color 4 -@ s3 symbol fill pattern 0 -@ s3 symbol linewidth 3.0 -@ s3 symbol linestyle 1 -@ s3 symbol char 65 -@ s3 symbol char font 4 -@ s3 symbol skip 0 -@ s3 line type 1 -@ s3 line linestyle 1 -@ s3 line linewidth 2.0 -@ s3 line color 4 -@ s3 line pattern 1 -@ s3 baseline type 0 -@ s3 baseline off -@ s3 dropline off -@ s3 fill type 0 -@ s3 fill rule 0 -@ s3 fill color 1 -@ s3 fill pattern 1 -@ s3 avalue off -@ s3 avalue type 2 -@ s3 avalue char size 1.000000 -@ s3 avalue font 4 -@ s3 avalue color 1 -@ s3 avalue rot 0 -@ s3 avalue format general -@ s3 avalue prec 3 -@ s3 avalue prepend "" -@ s3 avalue append "" -@ s3 avalue offset 0.000000 , 0.000000 -@ s3 errorbar on -@ s3 errorbar place both -@ s3 errorbar color 4 -@ s3 errorbar pattern 1 -@ s3 errorbar size 1.000000 -@ s3 errorbar linewidth 3.0 -@ s3 errorbar linestyle 1 -@ s3 errorbar riser linewidth 3.0 -@ s3 errorbar riser linestyle 1 -@ s3 errorbar riser clip off -@ s3 errorbar riser clip length 0.100000 -@ s3 comment "copy of setdata G0.S0" -@ s3 legend "" -@g1 on -@g1 hidden false -@g1 type XY -@g1 stacked false -@g1 bar hgap 0.000000 -@g1 fixedpoint off -@g1 fixedpoint type 0 -@g1 fixedpoint xy 0.000000, 0.000000 -@g1 fixedpoint format general general -@g1 fixedpoint prec 6, 6 -@with g1 -@ world 0, -3.5, 27, 2.5 -@ stack world 0, 0, 0, 0 -@ znorm 1 -@ view 0.651980, 0.503465, 1.144118, 0.850000 -@ title "" -@ title font 4 -@ title size 1.500000 -@ title color 1 -@ subtitle "" -@ subtitle font 4 -@ subtitle size 1.000000 -@ subtitle color 1 -@ xaxes scale Normal -@ yaxes scale Normal -@ xaxes invert off -@ yaxes invert off -@ xaxis on -@ xaxis type zero false -@ xaxis offset 0.000000 , 0.000000 -@ xaxis bar on -@ xaxis bar color 1 -@ xaxis bar linestyle 1 -@ xaxis bar linewidth 3.0 -@ xaxis label "" -@ xaxis label layout para -@ xaxis label place auto -@ xaxis label char size 1.000000 -@ xaxis label font 4 -@ xaxis label color 1 -@ xaxis label place normal -@ xaxis tick on -@ xaxis tick major 5 -@ xaxis tick minor ticks 4 -@ xaxis tick default 6 -@ xaxis tick place rounded true -@ xaxis tick in -@ xaxis tick major size 1.000000 -@ xaxis tick major color 1 -@ xaxis tick major linewidth 3.0 -@ xaxis tick major linestyle 1 -@ xaxis tick major grid off -@ xaxis tick minor color 1 -@ xaxis tick minor linewidth 3.0 -@ xaxis tick minor linestyle 1 -@ xaxis tick minor grid off -@ xaxis tick minor size 0.500000 -@ xaxis ticklabel off -@ xaxis ticklabel format general -@ xaxis ticklabel prec 5 -@ xaxis ticklabel formula "" -@ xaxis ticklabel append "" -@ xaxis ticklabel prepend "" -@ xaxis ticklabel angle 0 -@ xaxis ticklabel skip 0 -@ xaxis ticklabel stagger 0 -@ xaxis ticklabel place normal -@ xaxis ticklabel offset auto -@ xaxis ticklabel offset 0.000000 , 0.010000 -@ xaxis ticklabel start type auto -@ xaxis ticklabel start 0.000000 -@ xaxis ticklabel stop type auto -@ xaxis ticklabel stop 0.000000 -@ xaxis ticklabel char size 1.000000 -@ xaxis ticklabel font 4 -@ xaxis ticklabel color 1 -@ xaxis tick place normal -@ xaxis tick spec type none -@ yaxis on -@ yaxis type zero false -@ yaxis offset 0.000000 , 0.000000 -@ yaxis bar on -@ yaxis bar color 1 -@ yaxis bar linestyle 1 -@ yaxis bar linewidth 3.0 -@ yaxis label "" -@ yaxis label layout para -@ yaxis label place auto -@ yaxis label char size 1.000000 -@ yaxis label font 4 -@ yaxis label color 1 -@ yaxis label place normal -@ yaxis tick on -@ yaxis tick major 1 -@ yaxis tick minor ticks 1 -@ yaxis tick default 6 -@ yaxis tick place rounded true -@ yaxis tick in -@ yaxis tick major size 1.000000 -@ yaxis tick major color 1 -@ yaxis tick major linewidth 3.0 -@ yaxis tick major linestyle 1 -@ yaxis tick major grid off -@ yaxis tick minor color 1 -@ yaxis tick minor linewidth 3.0 -@ yaxis tick minor linestyle 1 -@ yaxis tick minor grid off -@ yaxis tick minor size 0.500000 -@ yaxis ticklabel off -@ yaxis ticklabel format general -@ yaxis ticklabel prec 5 -@ yaxis ticklabel formula "" -@ yaxis ticklabel append "" -@ yaxis ticklabel prepend "" -@ yaxis ticklabel angle 0 -@ yaxis ticklabel skip 0 -@ yaxis ticklabel stagger 0 -@ yaxis ticklabel place normal -@ yaxis ticklabel offset auto -@ yaxis ticklabel offset 0.000000 , 0.010000 -@ yaxis ticklabel start type auto -@ yaxis ticklabel start 0.000000 -@ yaxis ticklabel stop type auto -@ yaxis ticklabel stop 0.000000 -@ yaxis ticklabel char size 1.000000 -@ yaxis ticklabel font 4 -@ yaxis ticklabel color 1 -@ yaxis tick place normal -@ yaxis tick spec type none -@ altxaxis off -@ altyaxis off -@ legend on -@ legend loctype view -@ legend 0.5, 0.8 -@ legend box color 1 -@ legend box pattern 1 -@ legend box linewidth 3.0 -@ legend box linestyle 1 -@ legend box fill color 0 -@ legend box fill pattern 1 -@ legend font 4 -@ legend char size 1.000000 -@ legend color 1 -@ legend length 4 -@ legend vgap 1 -@ legend hgap 1 -@ legend invert false -@ frame type 0 -@ frame linestyle 1 -@ frame linewidth 3.0 -@ frame color 1 -@ frame pattern 1 -@ frame background color 0 -@ frame background pattern 0 -@ s0 hidden false -@ s0 type xy -@ s0 symbol 0 -@ s0 symbol size 1.000000 -@ s0 symbol color 15 -@ s0 symbol pattern 1 -@ s0 symbol fill color 15 -@ s0 symbol fill pattern 0 -@ s0 symbol linewidth 3.0 -@ s0 symbol linestyle 1 -@ s0 symbol char 65 -@ s0 symbol char font 4 -@ s0 symbol skip 0 -@ s0 line type 1 -@ s0 line linestyle 1 -@ s0 line linewidth 2.0 -@ s0 line color 15 -@ s0 line pattern 1 -@ s0 baseline type 0 -@ s0 baseline off -@ s0 dropline off -@ s0 fill type 0 -@ s0 fill rule 0 -@ s0 fill color 1 -@ s0 fill pattern 1 -@ s0 avalue off -@ s0 avalue type 2 -@ s0 avalue char size 1.000000 -@ s0 avalue font 4 -@ s0 avalue color 1 -@ s0 avalue rot 0 -@ s0 avalue format general -@ s0 avalue prec 3 -@ s0 avalue prepend "" -@ s0 avalue append "" -@ s0 avalue offset 0.000000 , 0.000000 -@ s0 errorbar on -@ s0 errorbar place both -@ s0 errorbar color 15 -@ s0 errorbar pattern 1 -@ s0 errorbar size 1.000000 -@ s0 errorbar linewidth 3.0 -@ s0 errorbar linestyle 1 -@ s0 errorbar riser linewidth 3.0 -@ s0 errorbar riser linestyle 1 -@ s0 errorbar riser clip off -@ s0 errorbar riser clip length 0.100000 -@ s0 comment "copy of set G0.S3" -@ s0 legend "" -@ s1 hidden false -@ s1 type xy -@ s1 symbol 1 -@ s1 symbol size 0.730000 -@ s1 symbol color 2 -@ s1 symbol pattern 1 -@ s1 symbol fill color 2 -@ s1 symbol fill pattern 0 -@ s1 symbol linewidth 2.0 -@ s1 symbol linestyle 1 -@ s1 symbol char 65 -@ s1 symbol char font 4 -@ s1 symbol skip 3 -@ s1 line type 0 -@ s1 line linestyle 1 -@ s1 line linewidth 3.0 -@ s1 line color 2 -@ s1 line pattern 1 -@ s1 baseline type 0 -@ s1 baseline off -@ s1 dropline off -@ s1 fill type 0 -@ s1 fill rule 0 -@ s1 fill color 1 -@ s1 fill pattern 1 -@ s1 avalue off -@ s1 avalue type 2 -@ s1 avalue char size 1.000000 -@ s1 avalue font 4 -@ s1 avalue color 1 -@ s1 avalue rot 0 -@ s1 avalue format general -@ s1 avalue prec 3 -@ s1 avalue prepend "" -@ s1 avalue append "" -@ s1 avalue offset 0.000000 , 0.000000 -@ s1 errorbar on -@ s1 errorbar place both -@ s1 errorbar color 2 -@ s1 errorbar pattern 1 -@ s1 errorbar size 1.000000 -@ s1 errorbar linewidth 3.0 -@ s1 errorbar linestyle 1 -@ s1 errorbar riser linewidth 3.0 -@ s1 errorbar riser linestyle 1 -@ s1 errorbar riser clip off -@ s1 errorbar riser clip length 0.100000 -@ s1 comment "copy of set G0.S0" -@ s1 legend "" -@ s2 hidden true -@ s2 type xy -@ s2 symbol 0 -@ s2 symbol size 1.000000 -@ s2 symbol color 3 -@ s2 symbol pattern 1 -@ s2 symbol fill color 3 -@ s2 symbol fill pattern 0 -@ s2 symbol linewidth 3.0 -@ s2 symbol linestyle 1 -@ s2 symbol char 65 -@ s2 symbol char font 4 -@ s2 symbol skip 0 -@ s2 line type 1 -@ s2 line linestyle 1 -@ s2 line linewidth 3.0 -@ s2 line color 3 -@ s2 line pattern 1 -@ s2 baseline type 0 -@ s2 baseline off -@ s2 dropline off -@ s2 fill type 0 -@ s2 fill rule 0 -@ s2 fill color 1 -@ s2 fill pattern 1 -@ s2 avalue off -@ s2 avalue type 2 -@ s2 avalue char size 1.000000 -@ s2 avalue font 4 -@ s2 avalue color 1 -@ s2 avalue rot 0 -@ s2 avalue format general -@ s2 avalue prec 3 -@ s2 avalue prepend "" -@ s2 avalue append "" -@ s2 avalue offset 0.000000 , 0.000000 -@ s2 errorbar on -@ s2 errorbar place both -@ s2 errorbar color 3 -@ s2 errorbar pattern 1 -@ s2 errorbar size 1.000000 -@ s2 errorbar linewidth 3.0 -@ s2 errorbar linestyle 1 -@ s2 errorbar riser linewidth 3.0 -@ s2 errorbar riser linestyle 1 -@ s2 errorbar riser clip off -@ s2 errorbar riser clip length 0.100000 -@ s2 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_0969_expand0.007538.gr" -@ s2 legend "" -@ s3 hidden true -@ s3 type xy -@ s3 symbol 0 -@ s3 symbol size 1.000000 -@ s3 symbol color 4 -@ s3 symbol pattern 1 -@ s3 symbol fill color 4 -@ s3 symbol fill pattern 0 -@ s3 symbol linewidth 3.0 -@ s3 symbol linestyle 1 -@ s3 symbol char 65 -@ s3 symbol char font 4 -@ s3 symbol skip 0 -@ s3 line type 1 -@ s3 line linestyle 1 -@ s3 line linewidth 2.0 -@ s3 line color 4 -@ s3 line pattern 1 -@ s3 baseline type 0 -@ s3 baseline off -@ s3 dropline off -@ s3 fill type 0 -@ s3 fill rule 0 -@ s3 fill color 1 -@ s3 fill pattern 1 -@ s3 avalue off -@ s3 avalue type 2 -@ s3 avalue char size 1.000000 -@ s3 avalue font 4 -@ s3 avalue color 1 -@ s3 avalue rot 0 -@ s3 avalue format general -@ s3 avalue prec 3 -@ s3 avalue prepend "" -@ s3 avalue append "" -@ s3 avalue offset 0.000000 , 0.000000 -@ s3 errorbar on -@ s3 errorbar place both -@ s3 errorbar color 4 -@ s3 errorbar pattern 1 -@ s3 errorbar size 1.000000 -@ s3 errorbar linewidth 3.0 -@ s3 errorbar linestyle 1 -@ s3 errorbar riser linewidth 3.0 -@ s3 errorbar riser linestyle 1 -@ s3 errorbar riser clip off -@ s3 errorbar riser clip length 0.100000 -@ s3 comment "copy of setdata G1.S0" -@ s3 legend "" -@ s4 hidden false -@ s4 type xy -@ s4 symbol 0 -@ s4 symbol size 1.000000 -@ s4 symbol color 3 -@ s4 symbol pattern 1 -@ s4 symbol fill color 3 -@ s4 symbol fill pattern 0 -@ s4 symbol linewidth 3.0 -@ s4 symbol linestyle 1 -@ s4 symbol char 65 -@ s4 symbol char font 4 -@ s4 symbol skip 0 -@ s4 line type 1 -@ s4 line linestyle 1 -@ s4 line linewidth 3.0 -@ s4 line color 3 -@ s4 line pattern 1 -@ s4 baseline type 0 -@ s4 baseline off -@ s4 dropline off -@ s4 fill type 0 -@ s4 fill rule 0 -@ s4 fill color 1 -@ s4 fill pattern 1 -@ s4 avalue off -@ s4 avalue type 2 -@ s4 avalue char size 1.000000 -@ s4 avalue font 4 -@ s4 avalue color 1 -@ s4 avalue rot 0 -@ s4 avalue format general -@ s4 avalue prec 3 -@ s4 avalue prepend "" -@ s4 avalue append "" -@ s4 avalue offset 0.000000 , 0.000000 -@ s4 errorbar on -@ s4 errorbar place both -@ s4 errorbar color 3 -@ s4 errorbar pattern 1 -@ s4 errorbar size 1.000000 -@ s4 errorbar linewidth 3.0 -@ s4 errorbar linestyle 1 -@ s4 errorbar riser linewidth 3.0 -@ s4 errorbar riser linestyle 1 -@ s4 errorbar riser clip off -@ s4 errorbar riser clip length 0.100000 -@ s4 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_0969_scale0.729643.gr" -@ s4 legend "" -@ s5 hidden false -@ s5 type xy -@ s5 symbol 0 -@ s5 symbol size 1.000000 -@ s5 symbol color 4 -@ s5 symbol pattern 1 -@ s5 symbol fill color 4 -@ s5 symbol fill pattern 0 -@ s5 symbol linewidth 3.0 -@ s5 symbol linestyle 1 -@ s5 symbol char 65 -@ s5 symbol char font 4 -@ s5 symbol skip 0 -@ s5 line type 1 -@ s5 line linestyle 1 -@ s5 line linewidth 2.0 -@ s5 line color 4 -@ s5 line pattern 1 -@ s5 baseline type 0 -@ s5 baseline off -@ s5 dropline off -@ s5 fill type 0 -@ s5 fill rule 0 -@ s5 fill color 1 -@ s5 fill pattern 1 -@ s5 avalue off -@ s5 avalue type 2 -@ s5 avalue char size 1.000000 -@ s5 avalue font 4 -@ s5 avalue color 1 -@ s5 avalue rot 0 -@ s5 avalue format general -@ s5 avalue prec 3 -@ s5 avalue prepend "" -@ s5 avalue append "" -@ s5 avalue offset 0.000000 , 0.000000 -@ s5 errorbar on -@ s5 errorbar place both -@ s5 errorbar color 4 -@ s5 errorbar pattern 1 -@ s5 errorbar size 1.000000 -@ s5 errorbar linewidth 3.0 -@ s5 errorbar linestyle 1 -@ s5 errorbar riser linewidth 3.0 -@ s5 errorbar riser linestyle 1 -@ s5 errorbar riser clip off -@ s5 errorbar riser clip length 0.100000 -@ s5 comment "copy of setdata G1.S1" -@ s5 legend "" -@g2 on -@g2 hidden false -@g2 type XY -@g2 stacked false -@g2 bar hgap 0.000000 -@g2 fixedpoint off -@g2 fixedpoint type 0 -@g2 fixedpoint xy 0.000000, 0.000000 -@g2 fixedpoint format general general -@g2 fixedpoint prec 6, 6 -@with g2 -@ world 0, -3.5, 27, 2.5 -@ stack world 0, 0, 0, 0 -@ znorm 1 -@ view 0.150000, 0.150000, 0.642137, 0.496535 -@ title "" -@ title font 4 -@ title size 1.500000 -@ title color 1 -@ subtitle "" -@ subtitle font 4 -@ subtitle size 1.000000 -@ subtitle color 1 -@ xaxes scale Normal -@ yaxes scale Normal -@ xaxes invert off -@ yaxes invert off -@ xaxis on -@ xaxis type zero false -@ xaxis offset 0.000000 , 0.000000 -@ xaxis bar on -@ xaxis bar color 1 -@ xaxis bar linestyle 1 -@ xaxis bar linewidth 3.0 -@ xaxis label "" -@ xaxis label layout para -@ xaxis label place auto -@ xaxis label char size 1.000000 -@ xaxis label font 4 -@ xaxis label color 1 -@ xaxis label place normal -@ xaxis tick on -@ xaxis tick major 5 -@ xaxis tick minor ticks 4 -@ xaxis tick default 6 -@ xaxis tick place rounded true -@ xaxis tick in -@ xaxis tick major size 1.000000 -@ xaxis tick major color 1 -@ xaxis tick major linewidth 3.0 -@ xaxis tick major linestyle 1 -@ xaxis tick major grid off -@ xaxis tick minor color 1 -@ xaxis tick minor linewidth 3.0 -@ xaxis tick minor linestyle 1 -@ xaxis tick minor grid off -@ xaxis tick minor size 0.500000 -@ xaxis ticklabel on -@ xaxis ticklabel format general -@ xaxis ticklabel prec 5 -@ xaxis ticklabel formula "" -@ xaxis ticklabel append "" -@ xaxis ticklabel prepend "" -@ xaxis ticklabel angle 0 -@ xaxis ticklabel skip 0 -@ xaxis ticklabel stagger 0 -@ xaxis ticklabel place normal -@ xaxis ticklabel offset auto -@ xaxis ticklabel offset 0.000000 , 0.010000 -@ xaxis ticklabel start type auto -@ xaxis ticklabel start 0.000000 -@ xaxis ticklabel stop type auto -@ xaxis ticklabel stop 0.000000 -@ xaxis ticklabel char size 1.050000 -@ xaxis ticklabel font 4 -@ xaxis ticklabel color 1 -@ xaxis tick place normal -@ xaxis tick spec type none -@ yaxis on -@ yaxis type zero false -@ yaxis offset 0.000000 , 0.000000 -@ yaxis bar on -@ yaxis bar color 1 -@ yaxis bar linestyle 1 -@ yaxis bar linewidth 3.0 -@ yaxis label "" -@ yaxis label layout para -@ yaxis label place auto -@ yaxis label char size 1.000000 -@ yaxis label font 4 -@ yaxis label color 1 -@ yaxis label place normal -@ yaxis tick on -@ yaxis tick major 1 -@ yaxis tick minor ticks 1 -@ yaxis tick default 6 -@ yaxis tick place rounded true -@ yaxis tick in -@ yaxis tick major size 1.000000 -@ yaxis tick major color 1 -@ yaxis tick major linewidth 3.0 -@ yaxis tick major linestyle 1 -@ yaxis tick major grid off -@ yaxis tick minor color 1 -@ yaxis tick minor linewidth 3.0 -@ yaxis tick minor linestyle 1 -@ yaxis tick minor grid off -@ yaxis tick minor size 0.500000 -@ yaxis ticklabel on -@ yaxis ticklabel format general -@ yaxis ticklabel prec 5 -@ yaxis ticklabel formula "" -@ yaxis ticklabel append "" -@ yaxis ticklabel prepend "" -@ yaxis ticklabel angle 0 -@ yaxis ticklabel skip 0 -@ yaxis ticklabel stagger 0 -@ yaxis ticklabel place normal -@ yaxis ticklabel offset auto -@ yaxis ticklabel offset 0.000000 , 0.010000 -@ yaxis ticklabel start type auto -@ yaxis ticklabel start 0.000000 -@ yaxis ticklabel stop type auto -@ yaxis ticklabel stop 0.000000 -@ yaxis ticklabel char size 1.050000 -@ yaxis ticklabel font 4 -@ yaxis ticklabel color 1 -@ yaxis tick place normal -@ yaxis tick spec type none -@ altxaxis off -@ altyaxis off -@ legend on -@ legend loctype view -@ legend 0.5, 0.8 -@ legend box color 1 -@ legend box pattern 1 -@ legend box linewidth 3.0 -@ legend box linestyle 1 -@ legend box fill color 0 -@ legend box fill pattern 1 -@ legend font 4 -@ legend char size 1.000000 -@ legend color 1 -@ legend length 4 -@ legend vgap 1 -@ legend hgap 1 -@ legend invert false -@ frame type 0 -@ frame linestyle 1 -@ frame linewidth 3.0 -@ frame color 1 -@ frame pattern 1 -@ frame background color 0 -@ frame background pattern 0 -@ s0 hidden false -@ s0 type xy -@ s0 symbol 0 -@ s0 symbol size 1.000000 -@ s0 symbol color 15 -@ s0 symbol pattern 1 -@ s0 symbol fill color 15 -@ s0 symbol fill pattern 0 -@ s0 symbol linewidth 3.0 -@ s0 symbol linestyle 1 -@ s0 symbol char 65 -@ s0 symbol char font 4 -@ s0 symbol skip 0 -@ s0 line type 1 -@ s0 line linestyle 1 -@ s0 line linewidth 2.0 -@ s0 line color 15 -@ s0 line pattern 1 -@ s0 baseline type 0 -@ s0 baseline off -@ s0 dropline off -@ s0 fill type 0 -@ s0 fill rule 0 -@ s0 fill color 1 -@ s0 fill pattern 1 -@ s0 avalue off -@ s0 avalue type 2 -@ s0 avalue char size 1.000000 -@ s0 avalue font 4 -@ s0 avalue color 1 -@ s0 avalue rot 0 -@ s0 avalue format general -@ s0 avalue prec 3 -@ s0 avalue prepend "" -@ s0 avalue append "" -@ s0 avalue offset 0.000000 , 0.000000 -@ s0 errorbar on -@ s0 errorbar place both -@ s0 errorbar color 15 -@ s0 errorbar pattern 1 -@ s0 errorbar size 1.000000 -@ s0 errorbar linewidth 3.0 -@ s0 errorbar linestyle 1 -@ s0 errorbar riser linewidth 3.0 -@ s0 errorbar riser linestyle 1 -@ s0 errorbar riser clip off -@ s0 errorbar riser clip length 0.100000 -@ s0 comment "copy of set G0.S3" -@ s0 legend "" -@ s1 hidden false -@ s1 type xy -@ s1 symbol 1 -@ s1 symbol size 0.730000 -@ s1 symbol color 2 -@ s1 symbol pattern 1 -@ s1 symbol fill color 2 -@ s1 symbol fill pattern 0 -@ s1 symbol linewidth 2.0 -@ s1 symbol linestyle 1 -@ s1 symbol char 65 -@ s1 symbol char font 4 -@ s1 symbol skip 3 -@ s1 line type 0 -@ s1 line linestyle 1 -@ s1 line linewidth 3.0 -@ s1 line color 2 -@ s1 line pattern 1 -@ s1 baseline type 0 -@ s1 baseline off -@ s1 dropline off -@ s1 fill type 0 -@ s1 fill rule 0 -@ s1 fill color 1 -@ s1 fill pattern 1 -@ s1 avalue off -@ s1 avalue type 2 -@ s1 avalue char size 1.000000 -@ s1 avalue font 4 -@ s1 avalue color 1 -@ s1 avalue rot 0 -@ s1 avalue format general -@ s1 avalue prec 3 -@ s1 avalue prepend "" -@ s1 avalue append "" -@ s1 avalue offset 0.000000 , 0.000000 -@ s1 errorbar on -@ s1 errorbar place both -@ s1 errorbar color 2 -@ s1 errorbar pattern 1 -@ s1 errorbar size 1.000000 -@ s1 errorbar linewidth 3.0 -@ s1 errorbar linestyle 1 -@ s1 errorbar riser linewidth 3.0 -@ s1 errorbar riser linestyle 1 -@ s1 errorbar riser clip off -@ s1 errorbar riser clip length 0.100000 -@ s1 comment "copy of set G0.S0" -@ s1 legend "" -@ s2 hidden true -@ s2 type xy -@ s2 symbol 0 -@ s2 symbol size 1.000000 -@ s2 symbol color 3 -@ s2 symbol pattern 1 -@ s2 symbol fill color 3 -@ s2 symbol fill pattern 0 -@ s2 symbol linewidth 3.0 -@ s2 symbol linestyle 1 -@ s2 symbol char 65 -@ s2 symbol char font 4 -@ s2 symbol skip 0 -@ s2 line type 1 -@ s2 line linestyle 1 -@ s2 line linewidth 3.0 -@ s2 line color 3 -@ s2 line pattern 1 -@ s2 baseline type 0 -@ s2 baseline off -@ s2 dropline off -@ s2 fill type 0 -@ s2 fill rule 0 -@ s2 fill color 1 -@ s2 fill pattern 1 -@ s2 avalue off -@ s2 avalue type 2 -@ s2 avalue char size 1.000000 -@ s2 avalue font 4 -@ s2 avalue color 1 -@ s2 avalue rot 0 -@ s2 avalue format general -@ s2 avalue prec 3 -@ s2 avalue prepend "" -@ s2 avalue append "" -@ s2 avalue offset 0.000000 , 0.000000 -@ s2 errorbar on -@ s2 errorbar place both -@ s2 errorbar color 3 -@ s2 errorbar pattern 1 -@ s2 errorbar size 1.000000 -@ s2 errorbar linewidth 3.0 -@ s2 errorbar linestyle 1 -@ s2 errorbar riser linewidth 3.0 -@ s2 errorbar riser linestyle 1 -@ s2 errorbar riser clip off -@ s2 errorbar riser clip length 0.100000 -@ s2 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_0969_expand0.007538_broaden0.111775.gr" -@ s2 legend "" -@ s3 hidden true -@ s3 type xy -@ s3 symbol 0 -@ s3 symbol size 1.000000 -@ s3 symbol color 4 -@ s3 symbol pattern 1 -@ s3 symbol fill color 4 -@ s3 symbol fill pattern 0 -@ s3 symbol linewidth 3.0 -@ s3 symbol linestyle 1 -@ s3 symbol char 65 -@ s3 symbol char font 4 -@ s3 symbol skip 0 -@ s3 line type 1 -@ s3 line linestyle 1 -@ s3 line linewidth 2.0 -@ s3 line color 4 -@ s3 line pattern 1 -@ s3 baseline type 0 -@ s3 baseline off -@ s3 dropline off -@ s3 fill type 0 -@ s3 fill rule 0 -@ s3 fill color 1 -@ s3 fill pattern 1 -@ s3 avalue off -@ s3 avalue type 2 -@ s3 avalue char size 1.000000 -@ s3 avalue font 4 -@ s3 avalue color 1 -@ s3 avalue rot 0 -@ s3 avalue format general -@ s3 avalue prec 3 -@ s3 avalue prepend "" -@ s3 avalue append "" -@ s3 avalue offset 0.000000 , 0.000000 -@ s3 errorbar on -@ s3 errorbar place both -@ s3 errorbar color 4 -@ s3 errorbar pattern 1 -@ s3 errorbar size 1.000000 -@ s3 errorbar linewidth 3.0 -@ s3 errorbar linestyle 1 -@ s3 errorbar riser linewidth 3.0 -@ s3 errorbar riser linestyle 1 -@ s3 errorbar riser clip off -@ s3 errorbar riser clip length 0.100000 -@ s3 comment "copy of setdata G2.S0" -@ s3 legend "" -@ s4 hidden true -@ s4 type xy -@ s4 symbol 0 -@ s4 symbol size 1.000000 -@ s4 symbol color 3 -@ s4 symbol pattern 1 -@ s4 symbol fill color 3 -@ s4 symbol fill pattern 0 -@ s4 symbol linewidth 3.0 -@ s4 symbol linestyle 1 -@ s4 symbol char 65 -@ s4 symbol char font 4 -@ s4 symbol skip 0 -@ s4 line type 1 -@ s4 line linestyle 1 -@ s4 line linewidth 3.0 -@ s4 line color 3 -@ s4 line pattern 1 -@ s4 baseline type 0 -@ s4 baseline off -@ s4 dropline off -@ s4 fill type 0 -@ s4 fill rule 0 -@ s4 fill color 1 -@ s4 fill pattern 1 -@ s4 avalue off -@ s4 avalue type 2 -@ s4 avalue char size 1.000000 -@ s4 avalue font 4 -@ s4 avalue color 1 -@ s4 avalue rot 0 -@ s4 avalue format general -@ s4 avalue prec 3 -@ s4 avalue prepend "" -@ s4 avalue append "" -@ s4 avalue offset 0.000000 , 0.000000 -@ s4 errorbar on -@ s4 errorbar place both -@ s4 errorbar color 3 -@ s4 errorbar pattern 1 -@ s4 errorbar size 1.000000 -@ s4 errorbar linewidth 3.0 -@ s4 errorbar linestyle 1 -@ s4 errorbar riser linewidth 3.0 -@ s4 errorbar riser linestyle 1 -@ s4 errorbar riser clip off -@ s4 errorbar riser clip length 0.100000 -@ s4 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_0969_scale0.729643_expand0.007538.gr" -@ s4 legend "" -@ s5 hidden true -@ s5 type xy -@ s5 symbol 0 -@ s5 symbol size 1.000000 -@ s5 symbol color 4 -@ s5 symbol pattern 1 -@ s5 symbol fill color 4 -@ s5 symbol fill pattern 0 -@ s5 symbol linewidth 3.0 -@ s5 symbol linestyle 1 -@ s5 symbol char 65 -@ s5 symbol char font 4 -@ s5 symbol skip 0 -@ s5 line type 1 -@ s5 line linestyle 1 -@ s5 line linewidth 2.0 -@ s5 line color 4 -@ s5 line pattern 1 -@ s5 baseline type 0 -@ s5 baseline off -@ s5 dropline off -@ s5 fill type 0 -@ s5 fill rule 0 -@ s5 fill color 1 -@ s5 fill pattern 1 -@ s5 avalue off -@ s5 avalue type 2 -@ s5 avalue char size 1.000000 -@ s5 avalue font 4 -@ s5 avalue color 1 -@ s5 avalue rot 0 -@ s5 avalue format general -@ s5 avalue prec 3 -@ s5 avalue prepend "" -@ s5 avalue append "" -@ s5 avalue offset 0.000000 , 0.000000 -@ s5 errorbar on -@ s5 errorbar place both -@ s5 errorbar color 4 -@ s5 errorbar pattern 1 -@ s5 errorbar size 1.000000 -@ s5 errorbar linewidth 3.0 -@ s5 errorbar linestyle 1 -@ s5 errorbar riser linewidth 3.0 -@ s5 errorbar riser linestyle 1 -@ s5 errorbar riser clip off -@ s5 errorbar riser clip length 0.100000 -@ s5 comment "copy of setdata G2.S1" -@ s5 legend "" -@ s6 hidden false -@ s6 type xy -@ s6 symbol 0 -@ s6 symbol size 1.000000 -@ s6 symbol color 3 -@ s6 symbol pattern 1 -@ s6 symbol fill color 3 -@ s6 symbol fill pattern 0 -@ s6 symbol linewidth 3.0 -@ s6 symbol linestyle 1 -@ s6 symbol char 65 -@ s6 symbol char font 4 -@ s6 symbol skip 0 -@ s6 line type 1 -@ s6 line linestyle 1 -@ s6 line linewidth 3.0 -@ s6 line color 3 -@ s6 line pattern 1 -@ s6 baseline type 0 -@ s6 baseline off -@ s6 dropline off -@ s6 fill type 0 -@ s6 fill rule 0 -@ s6 fill color 1 -@ s6 fill pattern 1 -@ s6 avalue off -@ s6 avalue type 2 -@ s6 avalue char size 1.000000 -@ s6 avalue font 4 -@ s6 avalue color 1 -@ s6 avalue rot 0 -@ s6 avalue format general -@ s6 avalue prec 3 -@ s6 avalue prepend "" -@ s6 avalue append "" -@ s6 avalue offset 0.000000 , 0.000000 -@ s6 errorbar on -@ s6 errorbar place both -@ s6 errorbar color 3 -@ s6 errorbar pattern 1 -@ s6 errorbar size 1.000000 -@ s6 errorbar linewidth 3.0 -@ s6 errorbar linestyle 1 -@ s6 errorbar riser linewidth 3.0 -@ s6 errorbar riser linestyle 1 -@ s6 errorbar riser clip off -@ s6 errorbar riser clip length 0.100000 -@ s6 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_0969_broaden0.111775_scale0.729643.gr" -@ s6 legend "" -@ s7 hidden false -@ s7 type xy -@ s7 symbol 0 -@ s7 symbol size 1.000000 -@ s7 symbol color 4 -@ s7 symbol pattern 1 -@ s7 symbol fill color 4 -@ s7 symbol fill pattern 0 -@ s7 symbol linewidth 3.0 -@ s7 symbol linestyle 1 -@ s7 symbol char 65 -@ s7 symbol char font 4 -@ s7 symbol skip 0 -@ s7 line type 1 -@ s7 line linestyle 1 -@ s7 line linewidth 2.0 -@ s7 line color 4 -@ s7 line pattern 1 -@ s7 baseline type 0 -@ s7 baseline off -@ s7 dropline off -@ s7 fill type 0 -@ s7 fill rule 0 -@ s7 fill color 1 -@ s7 fill pattern 1 -@ s7 avalue off -@ s7 avalue type 2 -@ s7 avalue char size 1.000000 -@ s7 avalue font 4 -@ s7 avalue color 1 -@ s7 avalue rot 0 -@ s7 avalue format general -@ s7 avalue prec 3 -@ s7 avalue prepend "" -@ s7 avalue append "" -@ s7 avalue offset 0.000000 , 0.000000 -@ s7 errorbar on -@ s7 errorbar place both -@ s7 errorbar color 4 -@ s7 errorbar pattern 1 -@ s7 errorbar size 1.000000 -@ s7 errorbar linewidth 3.0 -@ s7 errorbar linestyle 1 -@ s7 errorbar riser linewidth 3.0 -@ s7 errorbar riser linestyle 1 -@ s7 errorbar riser clip off -@ s7 errorbar riser clip length 0.100000 -@ s7 comment "copy of setdata G2.S1" -@ s7 legend "" -@g3 on -@g3 hidden false -@g3 type XY -@g3 stacked false -@g3 bar hgap 0.000000 -@g3 fixedpoint off -@g3 fixedpoint type 0 -@g3 fixedpoint xy 0.000000, 0.000000 -@g3 fixedpoint format general general -@g3 fixedpoint prec 6, 6 -@with g3 -@ world 0, -3.5, 27, 2.5 -@ stack world 0, 0, 0, 0 -@ znorm 1 -@ view 0.651980, 0.150000, 1.144118, 0.496535 -@ title "" -@ title font 4 -@ title size 1.500000 -@ title color 1 -@ subtitle "" -@ subtitle font 4 -@ subtitle size 1.000000 -@ subtitle color 1 -@ xaxes scale Normal -@ yaxes scale Normal -@ xaxes invert off -@ yaxes invert off -@ xaxis on -@ xaxis type zero false -@ xaxis offset 0.000000 , 0.000000 -@ xaxis bar on -@ xaxis bar color 1 -@ xaxis bar linestyle 1 -@ xaxis bar linewidth 3.0 -@ xaxis label "" -@ xaxis label layout para -@ xaxis label place auto -@ xaxis label char size 1.000000 -@ xaxis label font 4 -@ xaxis label color 1 -@ xaxis label place normal -@ xaxis tick on -@ xaxis tick major 5 -@ xaxis tick minor ticks 4 -@ xaxis tick default 6 -@ xaxis tick place rounded true -@ xaxis tick in -@ xaxis tick major size 1.000000 -@ xaxis tick major color 1 -@ xaxis tick major linewidth 3.0 -@ xaxis tick major linestyle 1 -@ xaxis tick major grid off -@ xaxis tick minor color 1 -@ xaxis tick minor linewidth 3.0 -@ xaxis tick minor linestyle 1 -@ xaxis tick minor grid off -@ xaxis tick minor size 0.500000 -@ xaxis ticklabel on -@ xaxis ticklabel format general -@ xaxis ticklabel prec 5 -@ xaxis ticklabel formula "" -@ xaxis ticklabel append "" -@ xaxis ticklabel prepend "" -@ xaxis ticklabel angle 0 -@ xaxis ticklabel skip 0 -@ xaxis ticklabel stagger 0 -@ xaxis ticklabel place normal -@ xaxis ticklabel offset auto -@ xaxis ticklabel offset 0.000000 , 0.010000 -@ xaxis ticklabel start type auto -@ xaxis ticklabel start 0.000000 -@ xaxis ticklabel stop type auto -@ xaxis ticklabel stop 0.000000 -@ xaxis ticklabel char size 1.050000 -@ xaxis ticklabel font 4 -@ xaxis ticklabel color 1 -@ xaxis tick place normal -@ xaxis tick spec type none -@ yaxis on -@ yaxis type zero false -@ yaxis offset 0.000000 , 0.000000 -@ yaxis bar on -@ yaxis bar color 1 -@ yaxis bar linestyle 1 -@ yaxis bar linewidth 3.0 -@ yaxis label "" -@ yaxis label layout para -@ yaxis label place auto -@ yaxis label char size 1.000000 -@ yaxis label font 4 -@ yaxis label color 1 -@ yaxis label place normal -@ yaxis tick on -@ yaxis tick major 1 -@ yaxis tick minor ticks 1 -@ yaxis tick default 6 -@ yaxis tick place rounded true -@ yaxis tick in -@ yaxis tick major size 1.000000 -@ yaxis tick major color 1 -@ yaxis tick major linewidth 3.0 -@ yaxis tick major linestyle 1 -@ yaxis tick major grid off -@ yaxis tick minor color 1 -@ yaxis tick minor linewidth 3.0 -@ yaxis tick minor linestyle 1 -@ yaxis tick minor grid off -@ yaxis tick minor size 0.500000 -@ yaxis ticklabel off -@ yaxis ticklabel format general -@ yaxis ticklabel prec 5 -@ yaxis ticklabel formula "" -@ yaxis ticklabel append "" -@ yaxis ticklabel prepend "" -@ yaxis ticklabel angle 0 -@ yaxis ticklabel skip 0 -@ yaxis ticklabel stagger 0 -@ yaxis ticklabel place normal -@ yaxis ticklabel offset auto -@ yaxis ticklabel offset 0.000000 , 0.010000 -@ yaxis ticklabel start type auto -@ yaxis ticklabel start 0.000000 -@ yaxis ticklabel stop type auto -@ yaxis ticklabel stop 0.000000 -@ yaxis ticklabel char size 1.000000 -@ yaxis ticklabel font 4 -@ yaxis ticklabel color 1 -@ yaxis tick place normal -@ yaxis tick spec type none -@ altxaxis off -@ altyaxis off -@ legend on -@ legend loctype view -@ legend 0.5, 0.8 -@ legend box color 1 -@ legend box pattern 1 -@ legend box linewidth 3.0 -@ legend box linestyle 1 -@ legend box fill color 0 -@ legend box fill pattern 1 -@ legend font 4 -@ legend char size 1.000000 -@ legend color 1 -@ legend length 4 -@ legend vgap 1 -@ legend hgap 1 -@ legend invert false -@ frame type 0 -@ frame linestyle 1 -@ frame linewidth 3.0 -@ frame color 1 -@ frame pattern 1 -@ frame background color 0 -@ frame background pattern 0 -@ s0 hidden false -@ s0 type xy -@ s0 symbol 0 -@ s0 symbol size 1.000000 -@ s0 symbol color 15 -@ s0 symbol pattern 1 -@ s0 symbol fill color 15 -@ s0 symbol fill pattern 0 -@ s0 symbol linewidth 3.0 -@ s0 symbol linestyle 1 -@ s0 symbol char 65 -@ s0 symbol char font 4 -@ s0 symbol skip 0 -@ s0 line type 1 -@ s0 line linestyle 1 -@ s0 line linewidth 2.0 -@ s0 line color 15 -@ s0 line pattern 1 -@ s0 baseline type 0 -@ s0 baseline off -@ s0 dropline off -@ s0 fill type 0 -@ s0 fill rule 0 -@ s0 fill color 1 -@ s0 fill pattern 1 -@ s0 avalue off -@ s0 avalue type 2 -@ s0 avalue char size 1.000000 -@ s0 avalue font 4 -@ s0 avalue color 1 -@ s0 avalue rot 0 -@ s0 avalue format general -@ s0 avalue prec 3 -@ s0 avalue prepend "" -@ s0 avalue append "" -@ s0 avalue offset 0.000000 , 0.000000 -@ s0 errorbar on -@ s0 errorbar place both -@ s0 errorbar color 15 -@ s0 errorbar pattern 1 -@ s0 errorbar size 1.000000 -@ s0 errorbar linewidth 3.0 -@ s0 errorbar linestyle 1 -@ s0 errorbar riser linewidth 3.0 -@ s0 errorbar riser linestyle 1 -@ s0 errorbar riser clip off -@ s0 errorbar riser clip length 0.100000 -@ s0 comment "copy of set G0.S3" -@ s0 legend "" -@ s1 hidden false -@ s1 type xy -@ s1 symbol 1 -@ s1 symbol size 0.730000 -@ s1 symbol color 2 -@ s1 symbol pattern 1 -@ s1 symbol fill color 2 -@ s1 symbol fill pattern 0 -@ s1 symbol linewidth 2.0 -@ s1 symbol linestyle 1 -@ s1 symbol char 65 -@ s1 symbol char font 4 -@ s1 symbol skip 3 -@ s1 line type 0 -@ s1 line linestyle 1 -@ s1 line linewidth 3.0 -@ s1 line color 2 -@ s1 line pattern 1 -@ s1 baseline type 0 -@ s1 baseline off -@ s1 dropline off -@ s1 fill type 0 -@ s1 fill rule 0 -@ s1 fill color 1 -@ s1 fill pattern 1 -@ s1 avalue off -@ s1 avalue type 2 -@ s1 avalue char size 1.000000 -@ s1 avalue font 4 -@ s1 avalue color 1 -@ s1 avalue rot 0 -@ s1 avalue format general -@ s1 avalue prec 3 -@ s1 avalue prepend "" -@ s1 avalue append "" -@ s1 avalue offset 0.000000 , 0.000000 -@ s1 errorbar on -@ s1 errorbar place both -@ s1 errorbar color 2 -@ s1 errorbar pattern 1 -@ s1 errorbar size 1.000000 -@ s1 errorbar linewidth 3.0 -@ s1 errorbar linestyle 1 -@ s1 errorbar riser linewidth 3.0 -@ s1 errorbar riser linestyle 1 -@ s1 errorbar riser clip off -@ s1 errorbar riser clip length 0.100000 -@ s1 comment "copy of set G0.S0" -@ s1 legend "" -@ s2 hidden false -@ s2 type xy -@ s2 symbol 0 -@ s2 symbol size 1.000000 -@ s2 symbol color 3 -@ s2 symbol pattern 1 -@ s2 symbol fill color 3 -@ s2 symbol fill pattern 0 -@ s2 symbol linewidth 3.0 -@ s2 symbol linestyle 1 -@ s2 symbol char 65 -@ s2 symbol char font 4 -@ s2 symbol skip 0 -@ s2 line type 1 -@ s2 line linestyle 1 -@ s2 line linewidth 3.0 -@ s2 line color 3 -@ s2 line pattern 1 -@ s2 baseline type 0 -@ s2 baseline off -@ s2 dropline off -@ s2 fill type 0 -@ s2 fill rule 0 -@ s2 fill color 1 -@ s2 fill pattern 1 -@ s2 avalue off -@ s2 avalue type 2 -@ s2 avalue char size 1.000000 -@ s2 avalue font 4 -@ s2 avalue color 1 -@ s2 avalue rot 0 -@ s2 avalue format general -@ s2 avalue prec 3 -@ s2 avalue prepend "" -@ s2 avalue append "" -@ s2 avalue offset 0.000000 , 0.000000 -@ s2 errorbar on -@ s2 errorbar place both -@ s2 errorbar color 3 -@ s2 errorbar pattern 1 -@ s2 errorbar size 1.000000 -@ s2 errorbar linewidth 3.0 -@ s2 errorbar linestyle 1 -@ s2 errorbar riser linewidth 3.0 -@ s2 errorbar riser linestyle 1 -@ s2 errorbar riser clip off -@ s2 errorbar riser clip length 0.100000 -@ s2 comment "/home/chris/Research/bgsandbox/10PDFMorph/diffpy.pdfmorph/trunk/doc/images/NaCl_ramp01_10f_200ms_0969_automorph.gr" -@ s2 legend "" -@ s3 hidden false -@ s3 type xy -@ s3 symbol 0 -@ s3 symbol size 1.000000 -@ s3 symbol color 4 -@ s3 symbol pattern 1 -@ s3 symbol fill color 4 -@ s3 symbol fill pattern 0 -@ s3 symbol linewidth 3.0 -@ s3 symbol linestyle 1 -@ s3 symbol char 65 -@ s3 symbol char font 4 -@ s3 symbol skip 0 -@ s3 line type 1 -@ s3 line linestyle 1 -@ s3 line linewidth 2.0 -@ s3 line color 4 -@ s3 line pattern 1 -@ s3 baseline type 0 -@ s3 baseline off -@ s3 dropline off -@ s3 fill type 0 -@ s3 fill rule 0 -@ s3 fill color 1 -@ s3 fill pattern 1 -@ s3 avalue off -@ s3 avalue type 2 -@ s3 avalue char size 1.000000 -@ s3 avalue font 4 -@ s3 avalue color 1 -@ s3 avalue rot 0 -@ s3 avalue format general -@ s3 avalue prec 3 -@ s3 avalue prepend "" -@ s3 avalue append "" -@ s3 avalue offset 0.000000 , 0.000000 -@ s3 errorbar on -@ s3 errorbar place both -@ s3 errorbar color 4 -@ s3 errorbar pattern 1 -@ s3 errorbar size 1.000000 -@ s3 errorbar linewidth 3.0 -@ s3 errorbar linestyle 1 -@ s3 errorbar riser linewidth 3.0 -@ s3 errorbar riser linestyle 1 -@ s3 errorbar riser clip off -@ s3 errorbar riser clip length 0.100000 -@ s3 comment "copy of setdata G3.S0" -@ s3 legend "" -@target G0.S0 -@type xy -0 -2 -0.01 -2 -0.02 -2 -0.03 -2 -0.04 -2 -0.05 -2 -0.06 -2 -0.07 -2 -0.08 -2 -0.09 -2 -0.1 -2 -0.11 -2 -0.12 -2 -0.13 -2 -0.14 -2 -0.15 -2 -0.16 -2 -0.17 -2 -0.18 -2 -0.19 -2 -0.2 -2 -0.21 -2 -0.22 -2 -0.23 -2 -0.24 -2 -0.25 -2 -0.26 -2 -0.27 -2 -0.28 -2 -0.29 -2 -0.3 -2 -0.31 -2 -0.32 -2 -0.33 -2 -0.34 -2 -0.35 -2 -0.36 -2 -0.37 -2 -0.38 -2 -0.39 -2 -0.4 -2 -0.41 -2 -0.42 -2 -0.43 -2 -0.44 -2 -0.45 -2 -0.46 -2 -0.47 -2 -0.48 -2 -0.49 -2 -0.5 -2 -0.51 -2 -0.52 -2 -0.53 -2 -0.54 -2 -0.55 -2 -0.56 -2 -0.57 -2 -0.58 -2 -0.59 -2 -0.6 -2 -0.61 -2 -0.62 -2 -0.63 -2 -0.64 -2 -0.65 -2 -0.66 -2 -0.67 -2 -0.68 -2 -0.69 -2 -0.7 -2 -0.71 -2 -0.72 -2 -0.73 -2 -0.74 -2 -0.75 -2 -0.76 -2 -0.77 -2 -0.78 -2 -0.79 -2 -0.8 -2 -0.81 -2 -0.82 -2 -0.83 -2 -0.84 -2 -0.85 -2 -0.86 -2 -0.87 -2 -0.88 -2 -0.89 -2 -0.9 -2 -0.91 -2 -0.92 -2 -0.93 -2 -0.94 -2 -0.95 -2 -0.96 -2 -0.97 -2 -0.98 -2 -0.99 -2 -1 -2 -1.01 -2 -1.02 -2 -1.03 -2 -1.04 -2 -1.05 -2 -1.06 -2 -1.07 -2 -1.08 -2 -1.09 -2 -1.1 -2 -1.11 -2 -1.12 -2 -1.13 -2 -1.14 -2 -1.15 -2 -1.16 -2 -1.17 -2 -1.18 -2 -1.19 -2 -1.2 -2 -1.21 -2 -1.22 -2 -1.23 -2 -1.24 -2 -1.25 -2 -1.26 -2 -1.27 -2 -1.28 -2 -1.29 -2 -1.3 -2 -1.31 -2 -1.32 -2 -1.33 -2 -1.34 -2 -1.35 -2 -1.36 -2 -1.37 -2 -1.38 -2 -1.39 -2 -1.4 -2 -1.41 -2 -1.42 -2 -1.43 -2 -1.44 -2 -1.45 -2 -1.46 -2 -1.47 -2 -1.48 -2 -1.49 -2 -1.5 -2 -1.51 -2 -1.52 -2 -1.53 -2 -1.54 -2 -1.55 -2 -1.56 -2 -1.57 -2 -1.58 -2 -1.59 -2 -1.6 -2 -1.61 -2 -1.62 -2 -1.63 -2 -1.64 -2 -1.65 -2 -1.66 -2 -1.67 -2 -1.68 -2 -1.69 -2 -1.7 -2 -1.71 -2 -1.72 -2 -1.73 -2 -1.74 -2 -1.75 -2 -1.76 -2 -1.77 -2 -1.78 -2 -1.79 -2 -1.8 -2 -1.81 -2 -1.82 -2 -1.83 -2 -1.84 -2 -1.85 -2 -1.86 -2 -1.87 -2 -1.88 -2 -1.89 -2 -1.9 -2 -1.91 -2 -1.92 -2 -1.93 -2 -1.94 -2 -1.95 -2 -1.96 -2 -1.97 -2 -1.98 -2 -1.99 -2 -2 -2 -2.01 -2 -2.02 -2 -2.03 -2 -2.04 -2 -2.05 -2 -2.06 -2 -2.07 -2 -2.08 -2 -2.09 -2 -2.1 -2 -2.11 -2 -2.12 -2 -2.13 -2 -2.14 -2 -2.15 -2 -2.16 -2 -2.17 -2 -2.18 -2 -2.19 -2 -2.2 -2 -2.21 -2 -2.22 -2 -2.23 -2 -2.24 -2 -2.25 -2 -2.26 -2 -2.27 -2 -2.28 -2 -2.29 -2 -2.3 -2 -2.31 -2 -2.32 -2 -2.33 -2 -2.34 -2 -2.35 -2 -2.36 -2 -2.37 -2 -2.38 -2 -2.39 -2 -2.4 -2 -2.41 -2 -2.42 -2 -2.43 -2 -2.44 -2 -2.45 -2 -2.46 -2 -2.47 -2 -2.48 -2 -2.49 -2 -2.5 -2 -2.51 -2 -2.52 -2 -2.53 -2 -2.54 -2 -2.55 -2 -2.56 -2 -2.57 -2 -2.58 -2 -2.59 -2 -2.6 -2 -2.61 -2 -2.62 -2 -2.63 -2 -2.64 -2 -2.65 -2 -2.66 -2 -2.67 -2 -2.68 -2 -2.69 -2 -2.7 -2 -2.71 -2 -2.72 -2 -2.73 -2 -2.74 -2 -2.75 -2 -2.76 -2 -2.77 -2 -2.78 -2 -2.79 -2 -2.8 -2 -2.81 -2 -2.82 -2 -2.83 -2 -2.84 -2 -2.85 -2 -2.86 -2 -2.87 -2 -2.88 -2 -2.89 -2 -2.9 -2 -2.91 -2 -2.92 -2 -2.93 -2 -2.94 -2 -2.95 -2 -2.96 -2 -2.97 -2 -2.98 -2 -2.99 -2 -3 -2 -3.01 -2 -3.02 -2 -3.03 -2 -3.04 -2 -3.05 -2 -3.06 -2 -3.07 -2 -3.08 -2 -3.09 -2 -3.1 -2 -3.11 -2 -3.12 -2 -3.13 -2 -3.14 -2 -3.15 -2 -3.16 -2 -3.17 -2 -3.18 -2 -3.19 -2 -3.2 -2 -3.21 -2 -3.22 -2 -3.23 -2 -3.24 -2 -3.25 -2 -3.26 -2 -3.27 -2 -3.28 -2 -3.29 -2 -3.3 -2 -3.31 -2 -3.32 -2 -3.33 -2 -3.34 -2 -3.35 -2 -3.36 -2 -3.37 -2 -3.38 -2 -3.39 -2 -3.4 -2 -3.41 -2 -3.42 -2 -3.43 -2 -3.44 -2 -3.45 -2 -3.46 -2 -3.47 -2 -3.48 -2 -3.49 -2 -3.5 -2 -3.51 -2 -3.52 -2 -3.53 -2 -3.54 -2 -3.55 -2 -3.56 -2 -3.57 -2 -3.58 -2 -3.59 -2 -3.6 -2 -3.61 -2 -3.62 -2 -3.63 -2 -3.64 -2 -3.65 -2 -3.66 -2 -3.67 -2 -3.68 -2 -3.69 -2 -3.7 -2 -3.71 -2 -3.72 -2 -3.73 -2 -3.74 -2 -3.75 -2 -3.76 -2 -3.77 -2 -3.78 -2 -3.79 -2 -3.8 -2 -3.81 -2 -3.82 -2 -3.83 -2 -3.84 -2 -3.85 -2 -3.86 -2 -3.87 -2 -3.88 -2 -3.89 -2 -3.9 -2 -3.91 -2 -3.92 -2 -3.93 -2 -3.94 -2 -3.95 -2 -3.96 -2 -3.97 -2 -3.98 -2 -3.99 -2 -4 -2 -4.01 -2 -4.02 -2 -4.03 -2 -4.04 -2 -4.05 -2 -4.06 -2 -4.07 -2 -4.08 -2 -4.09 -2 -4.1 -2 -4.11 -2 -4.12 -2 -4.13 -2 -4.14 -2 -4.15 -2 -4.16 -2 -4.17 -2 -4.18 -2 -4.19 -2 -4.2 -2 -4.21 -2 -4.22 -2 -4.23 -2 -4.24 -2 -4.25 -2 -4.26 -2 -4.27 -2 -4.28 -2 -4.29 -2 -4.3 -2 -4.31 -2 -4.32 -2 -4.33 -2 -4.34 -2 -4.35 -2 -4.36 -2 -4.37 -2 -4.38 -2 -4.39 -2 -4.4 -2 -4.41 -2 -4.42 -2 -4.43 -2 -4.44 -2 -4.45 -2 -4.46 -2 -4.47 -2 -4.48 -2 -4.49 -2 -4.5 -2 -4.51 -2 -4.52 -2 -4.53 -2 -4.54 -2 -4.55 -2 -4.56 -2 -4.57 -2 -4.58 -2 -4.59 -2 -4.6 -2 -4.61 -2 -4.62 -2 -4.63 -2 -4.64 -2 -4.65 -2 -4.66 -2 -4.67 -2 -4.68 -2 -4.69 -2 -4.7 -2 -4.71 -2 -4.72 -2 -4.73 -2 -4.74 -2 -4.75 -2 -4.76 -2 -4.77 -2 -4.78 -2 -4.79 -2 -4.8 -2 -4.81 -2 -4.82 -2 -4.83 -2 -4.84 -2 -4.85 -2 -4.86 -2 -4.87 -2 -4.88 -2 -4.89 -2 -4.9 -2 -4.91 -2 -4.92 -2 -4.93 -2 -4.94 -2 -4.95 -2 -4.96 -2 -4.97 -2 -4.98 -2 -4.99 -2 -5 -2 -5.01 -2 -5.02 -2 -5.03 -2 -5.04 -2 -5.05 -2 -5.06 -2 -5.07 -2 -5.08 -2 -5.09 -2 -5.1 -2 -5.11 -2 -5.12 -2 -5.13 -2 -5.14 -2 -5.15 -2 -5.16 -2 -5.17 -2 -5.18 -2 -5.19 -2 -5.2 -2 -5.21 -2 -5.22 -2 -5.23 -2 -5.24 -2 -5.25 -2 -5.26 -2 -5.27 -2 -5.28 -2 -5.29 -2 -5.3 -2 -5.31 -2 -5.32 -2 -5.33 -2 -5.34 -2 -5.35 -2 -5.36 -2 -5.37 -2 -5.38 -2 -5.39 -2 -5.4 -2 -5.41 -2 -5.42 -2 -5.43 -2 -5.44 -2 -5.45 -2 -5.46 -2 -5.47 -2 -5.48 -2 -5.49 -2 -5.5 -2 -5.51 -2 -5.52 -2 -5.53 -2 -5.54 -2 -5.55 -2 -5.56 -2 -5.57 -2 -5.58 -2 -5.59 -2 -5.6 -2 -5.61 -2 -5.62 -2 -5.63 -2 -5.64 -2 -5.65 -2 -5.66 -2 -5.67 -2 -5.68 -2 -5.69 -2 -5.7 -2 -5.71 -2 -5.72 -2 -5.73 -2 -5.74 -2 -5.75 -2 -5.76 -2 -5.77 -2 -5.78 -2 -5.79 -2 -5.8 -2 -5.81 -2 -5.82 -2 -5.83 -2 -5.84 -2 -5.85 -2 -5.86 -2 -5.87 -2 -5.88 -2 -5.89 -2 -5.9 -2 -5.91 -2 -5.92 -2 -5.93 -2 -5.94 -2 -5.95 -2 -5.96 -2 -5.97 -2 -5.98 -2 -5.99 -2 -6 -2 -6.01 -2 -6.02 -2 -6.03 -2 -6.04 -2 -6.05 -2 -6.06 -2 -6.07 -2 -6.08 -2 -6.09 -2 -6.1 -2 -6.11 -2 -6.12 -2 -6.13 -2 -6.14 -2 -6.15 -2 -6.16 -2 -6.17 -2 -6.18 -2 -6.19 -2 -6.2 -2 -6.21 -2 -6.22 -2 -6.23 -2 -6.24 -2 -6.25 -2 -6.26 -2 -6.27 -2 -6.28 -2 -6.29 -2 -6.3 -2 -6.31 -2 -6.32 -2 -6.33 -2 -6.34 -2 -6.35 -2 -6.36 -2 -6.37 -2 -6.38 -2 -6.39 -2 -6.4 -2 -6.41 -2 -6.42 -2 -6.43 -2 -6.44 -2 -6.45 -2 -6.46 -2 -6.47 -2 -6.48 -2 -6.49 -2 -6.5 -2 -6.51 -2 -6.52 -2 -6.53 -2 -6.54 -2 -6.55 -2 -6.56 -2 -6.57 -2 -6.58 -2 -6.59 -2 -6.6 -2 -6.61 -2 -6.62 -2 -6.63 -2 -6.64 -2 -6.65 -2 -6.66 -2 -6.67 -2 -6.68 -2 -6.69 -2 -6.7 -2 -6.71 -2 -6.72 -2 -6.73 -2 -6.74 -2 -6.75 -2 -6.76 -2 -6.77 -2 -6.78 -2 -6.79 -2 -6.8 -2 -6.81 -2 -6.82 -2 -6.83 -2 -6.84 -2 -6.85 -2 -6.86 -2 -6.87 -2 -6.88 -2 -6.89 -2 -6.9 -2 -6.91 -2 -6.92 -2 -6.93 -2 -6.94 -2 -6.95 -2 -6.96 -2 -6.97 -2 -6.98 -2 -6.99 -2 -7 -2 -7.01 -2 -7.02 -2 -7.03 -2 -7.04 -2 -7.05 -2 -7.06 -2 -7.07 -2 -7.08 -2 -7.09 -2 -7.1 -2 -7.11 -2 -7.12 -2 -7.13 -2 -7.14 -2 -7.15 -2 -7.16 -2 -7.17 -2 -7.18 -2 -7.19 -2 -7.2 -2 -7.21 -2 -7.22 -2 -7.23 -2 -7.24 -2 -7.25 -2 -7.26 -2 -7.27 -2 -7.28 -2 -7.29 -2 -7.3 -2 -7.31 -2 -7.32 -2 -7.33 -2 -7.34 -2 -7.35 -2 -7.36 -2 -7.37 -2 -7.38 -2 -7.39 -2 -7.4 -2 -7.41 -2 -7.42 -2 -7.43 -2 -7.44 -2 -7.45 -2 -7.46 -2 -7.47 -2 -7.48 -2 -7.49 -2 -7.5 -2 -7.51 -2 -7.52 -2 -7.53 -2 -7.54 -2 -7.55 -2 -7.56 -2 -7.57 -2 -7.58 -2 -7.59 -2 -7.6 -2 -7.61 -2 -7.62 -2 -7.63 -2 -7.64 -2 -7.65 -2 -7.66 -2 -7.67 -2 -7.68 -2 -7.69 -2 -7.7 -2 -7.71 -2 -7.72 -2 -7.73 -2 -7.74 -2 -7.75 -2 -7.76 -2 -7.77 -2 -7.78 -2 -7.79 -2 -7.8 -2 -7.81 -2 -7.82 -2 -7.83 -2 -7.84 -2 -7.85 -2 -7.86 -2 -7.87 -2 -7.88 -2 -7.89 -2 -7.9 -2 -7.91 -2 -7.92 -2 -7.93 -2 -7.94 -2 -7.95 -2 -7.96 -2 -7.97 -2 -7.98 -2 -7.99 -2 -8 -2 -8.01 -2 -8.02 -2 -8.03 -2 -8.04 -2 -8.05 -2 -8.06 -2 -8.07 -2 -8.08 -2 -8.09 -2 -8.1 -2 -8.11 -2 -8.12 -2 -8.13 -2 -8.14 -2 -8.15 -2 -8.16 -2 -8.17 -2 -8.18 -2 -8.19 -2 -8.2 -2 -8.21 -2 -8.22 -2 -8.23 -2 -8.24 -2 -8.25 -2 -8.26 -2 -8.27 -2 -8.28 -2 -8.29 -2 -8.3 -2 -8.31 -2 -8.32 -2 -8.33 -2 -8.34 -2 -8.35 -2 -8.36 -2 -8.37 -2 -8.38 -2 -8.39 -2 -8.4 -2 -8.41 -2 -8.42 -2 -8.43 -2 -8.44 -2 -8.45 -2 -8.46 -2 -8.47 -2 -8.48 -2 -8.49 -2 -8.5 -2 -8.51 -2 -8.52 -2 -8.53 -2 -8.54 -2 -8.55 -2 -8.56 -2 -8.57 -2 -8.58 -2 -8.59 -2 -8.6 -2 -8.61 -2 -8.62 -2 -8.63 -2 -8.64 -2 -8.65 -2 -8.66 -2 -8.67 -2 -8.68 -2 -8.69 -2 -8.7 -2 -8.71 -2 -8.72 -2 -8.73 -2 -8.74 -2 -8.75 -2 -8.76 -2 -8.77 -2 -8.78 -2 -8.79 -2 -8.8 -2 -8.81 -2 -8.82 -2 -8.83 -2 -8.84 -2 -8.85 -2 -8.86 -2 -8.87 -2 -8.88 -2 -8.89 -2 -8.9 -2 -8.91 -2 -8.92 -2 -8.93 -2 -8.94 -2 -8.95 -2 -8.96 -2 -8.97 -2 -8.98 -2 -8.99 -2 -9 -2 -9.01 -2 -9.02 -2 -9.03 -2 -9.04 -2 -9.05 -2 -9.06 -2 -9.07 -2 -9.08 -2 -9.09 -2 -9.1 -2 -9.11 -2 -9.12 -2 -9.13 -2 -9.14 -2 -9.15 -2 -9.16 -2 -9.17 -2 -9.18 -2 -9.19 -2 -9.2 -2 -9.21 -2 -9.22 -2 -9.23 -2 -9.24 -2 -9.25 -2 -9.26 -2 -9.27 -2 -9.28 -2 -9.29 -2 -9.3 -2 -9.31 -2 -9.32 -2 -9.33 -2 -9.34 -2 -9.35 -2 -9.36 -2 -9.37 -2 -9.38 -2 -9.39 -2 -9.4 -2 -9.41 -2 -9.42 -2 -9.43 -2 -9.44 -2 -9.45 -2 -9.46 -2 -9.47 -2 -9.48 -2 -9.49 -2 -9.5 -2 -9.51 -2 -9.52 -2 -9.53 -2 -9.54 -2 -9.55 -2 -9.56 -2 -9.57 -2 -9.58 -2 -9.59 -2 -9.6 -2 -9.61 -2 -9.62 -2 -9.63 -2 -9.64 -2 -9.65 -2 -9.66 -2 -9.67 -2 -9.68 -2 -9.69 -2 -9.7 -2 -9.71 -2 -9.72 -2 -9.73 -2 -9.74 -2 -9.75 -2 -9.76 -2 -9.77 -2 -9.78 -2 -9.79 -2 -9.8 -2 -9.81 -2 -9.82 -2 -9.83 -2 -9.84 -2 -9.85 -2 -9.86 -2 -9.87 -2 -9.88 -2 -9.89 -2 -9.9 -2 -9.91 -2 -9.92 -2 -9.93 -2 -9.94 -2 -9.95 -2 -9.96 -2 -9.97 -2 -9.98 -2 -9.99 -2 -10 -2 -10.01 -2 -10.02 -2 -10.03 -2 -10.04 -2 -10.05 -2 -10.06 -2 -10.07 -2 -10.08 -2 -10.09 -2 -10.1 -2 -10.11 -2 -10.12 -2 -10.13 -2 -10.14 -2 -10.15 -2 -10.16 -2 -10.17 -2 -10.18 -2 -10.19 -2 -10.2 -2 -10.21 -2 -10.22 -2 -10.23 -2 -10.24 -2 -10.25 -2 -10.26 -2 -10.27 -2 -10.28 -2 -10.29 -2 -10.3 -2 -10.31 -2 -10.32 -2 -10.33 -2 -10.34 -2 -10.35 -2 -10.36 -2 -10.37 -2 -10.38 -2 -10.39 -2 -10.4 -2 -10.41 -2 -10.42 -2 -10.43 -2 -10.44 -2 -10.45 -2 -10.46 -2 -10.47 -2 -10.48 -2 -10.49 -2 -10.5 -2 -10.51 -2 -10.52 -2 -10.53 -2 -10.54 -2 -10.55 -2 -10.56 -2 -10.57 -2 -10.58 -2 -10.59 -2 -10.6 -2 -10.61 -2 -10.62 -2 -10.63 -2 -10.64 -2 -10.65 -2 -10.66 -2 -10.67 -2 -10.68 -2 -10.69 -2 -10.7 -2 -10.71 -2 -10.72 -2 -10.73 -2 -10.74 -2 -10.75 -2 -10.76 -2 -10.77 -2 -10.78 -2 -10.79 -2 -10.8 -2 -10.81 -2 -10.82 -2 -10.83 -2 -10.84 -2 -10.85 -2 -10.86 -2 -10.87 -2 -10.88 -2 -10.89 -2 -10.9 -2 -10.91 -2 -10.92 -2 -10.93 -2 -10.94 -2 -10.95 -2 -10.96 -2 -10.97 -2 -10.98 -2 -10.99 -2 -11 -2 -11.01 -2 -11.02 -2 -11.03 -2 -11.04 -2 -11.05 -2 -11.06 -2 -11.07 -2 -11.08 -2 -11.09 -2 -11.1 -2 -11.11 -2 -11.12 -2 -11.13 -2 -11.14 -2 -11.15 -2 -11.16 -2 -11.17 -2 -11.18 -2 -11.19 -2 -11.2 -2 -11.21 -2 -11.22 -2 -11.23 -2 -11.24 -2 -11.25 -2 -11.26 -2 -11.27 -2 -11.28 -2 -11.29 -2 -11.3 -2 -11.31 -2 -11.32 -2 -11.33 -2 -11.34 -2 -11.35 -2 -11.36 -2 -11.37 -2 -11.38 -2 -11.39 -2 -11.4 -2 -11.41 -2 -11.42 -2 -11.43 -2 -11.44 -2 -11.45 -2 -11.46 -2 -11.47 -2 -11.48 -2 -11.49 -2 -11.5 -2 -11.51 -2 -11.52 -2 -11.53 -2 -11.54 -2 -11.55 -2 -11.56 -2 -11.57 -2 -11.58 -2 -11.59 -2 -11.6 -2 -11.61 -2 -11.62 -2 -11.63 -2 -11.64 -2 -11.65 -2 -11.66 -2 -11.67 -2 -11.68 -2 -11.69 -2 -11.7 -2 -11.71 -2 -11.72 -2 -11.73 -2 -11.74 -2 -11.75 -2 -11.76 -2 -11.77 -2 -11.78 -2 -11.79 -2 -11.8 -2 -11.81 -2 -11.82 -2 -11.83 -2 -11.84 -2 -11.85 -2 -11.86 -2 -11.87 -2 -11.88 -2 -11.89 -2 -11.9 -2 -11.91 -2 -11.92 -2 -11.93 -2 -11.94 -2 -11.95 -2 -11.96 -2 -11.97 -2 -11.98 -2 -11.99 -2 -12 -2 -12.01 -2 -12.02 -2 -12.03 -2 -12.04 -2 -12.05 -2 -12.06 -2 -12.07 -2 -12.08 -2 -12.09 -2 -12.1 -2 -12.11 -2 -12.12 -2 -12.13 -2 -12.14 -2 -12.15 -2 -12.16 -2 -12.17 -2 -12.18 -2 -12.19 -2 -12.2 -2 -12.21 -2 -12.22 -2 -12.23 -2 -12.24 -2 -12.25 -2 -12.26 -2 -12.27 -2 -12.28 -2 -12.29 -2 -12.3 -2 -12.31 -2 -12.32 -2 -12.33 -2 -12.34 -2 -12.35 -2 -12.36 -2 -12.37 -2 -12.38 -2 -12.39 -2 -12.4 -2 -12.41 -2 -12.42 -2 -12.43 -2 -12.44 -2 -12.45 -2 -12.46 -2 -12.47 -2 -12.48 -2 -12.49 -2 -12.5 -2 -12.51 -2 -12.52 -2 -12.53 -2 -12.54 -2 -12.55 -2 -12.56 -2 -12.57 -2 -12.58 -2 -12.59 -2 -12.6 -2 -12.61 -2 -12.62 -2 -12.63 -2 -12.64 -2 -12.65 -2 -12.66 -2 -12.67 -2 -12.68 -2 -12.69 -2 -12.7 -2 -12.71 -2 -12.72 -2 -12.73 -2 -12.74 -2 -12.75 -2 -12.76 -2 -12.77 -2 -12.78 -2 -12.79 -2 -12.8 -2 -12.81 -2 -12.82 -2 -12.83 -2 -12.84 -2 -12.85 -2 -12.86 -2 -12.87 -2 -12.88 -2 -12.89 -2 -12.9 -2 -12.91 -2 -12.92 -2 -12.93 -2 -12.94 -2 -12.95 -2 -12.96 -2 -12.97 -2 -12.98 -2 -12.99 -2 -13 -2 -13.01 -2 -13.02 -2 -13.03 -2 -13.04 -2 -13.05 -2 -13.06 -2 -13.07 -2 -13.08 -2 -13.09 -2 -13.1 -2 -13.11 -2 -13.12 -2 -13.13 -2 -13.14 -2 -13.15 -2 -13.16 -2 -13.17 -2 -13.18 -2 -13.19 -2 -13.2 -2 -13.21 -2 -13.22 -2 -13.23 -2 -13.24 -2 -13.25 -2 -13.26 -2 -13.27 -2 -13.28 -2 -13.29 -2 -13.3 -2 -13.31 -2 -13.32 -2 -13.33 -2 -13.34 -2 -13.35 -2 -13.36 -2 -13.37 -2 -13.38 -2 -13.39 -2 -13.4 -2 -13.41 -2 -13.42 -2 -13.43 -2 -13.44 -2 -13.45 -2 -13.46 -2 -13.47 -2 -13.48 -2 -13.49 -2 -13.5 -2 -13.51 -2 -13.52 -2 -13.53 -2 -13.54 -2 -13.55 -2 -13.56 -2 -13.57 -2 -13.58 -2 -13.59 -2 -13.6 -2 -13.61 -2 -13.62 -2 -13.63 -2 -13.64 -2 -13.65 -2 -13.66 -2 -13.67 -2 -13.68 -2 -13.69 -2 -13.7 -2 -13.71 -2 -13.72 -2 -13.73 -2 -13.74 -2 -13.75 -2 -13.76 -2 -13.77 -2 -13.78 -2 -13.79 -2 -13.8 -2 -13.81 -2 -13.82 -2 -13.83 -2 -13.84 -2 -13.85 -2 -13.86 -2 -13.87 -2 -13.88 -2 -13.89 -2 -13.9 -2 -13.91 -2 -13.92 -2 -13.93 -2 -13.94 -2 -13.95 -2 -13.96 -2 -13.97 -2 -13.98 -2 -13.99 -2 -14 -2 -14.01 -2 -14.02 -2 -14.03 -2 -14.04 -2 -14.05 -2 -14.06 -2 -14.07 -2 -14.08 -2 -14.09 -2 -14.1 -2 -14.11 -2 -14.12 -2 -14.13 -2 -14.14 -2 -14.15 -2 -14.16 -2 -14.17 -2 -14.18 -2 -14.19 -2 -14.2 -2 -14.21 -2 -14.22 -2 -14.23 -2 -14.24 -2 -14.25 -2 -14.26 -2 -14.27 -2 -14.28 -2 -14.29 -2 -14.3 -2 -14.31 -2 -14.32 -2 -14.33 -2 -14.34 -2 -14.35 -2 -14.36 -2 -14.37 -2 -14.38 -2 -14.39 -2 -14.4 -2 -14.41 -2 -14.42 -2 -14.43 -2 -14.44 -2 -14.45 -2 -14.46 -2 -14.47 -2 -14.48 -2 -14.49 -2 -14.5 -2 -14.51 -2 -14.52 -2 -14.53 -2 -14.54 -2 -14.55 -2 -14.56 -2 -14.57 -2 -14.58 -2 -14.59 -2 -14.6 -2 -14.61 -2 -14.62 -2 -14.63 -2 -14.64 -2 -14.65 -2 -14.66 -2 -14.67 -2 -14.68 -2 -14.69 -2 -14.7 -2 -14.71 -2 -14.72 -2 -14.73 -2 -14.74 -2 -14.75 -2 -14.76 -2 -14.77 -2 -14.78 -2 -14.79 -2 -14.8 -2 -14.81 -2 -14.82 -2 -14.83 -2 -14.84 -2 -14.85 -2 -14.86 -2 -14.87 -2 -14.88 -2 -14.89 -2 -14.9 -2 -14.91 -2 -14.92 -2 -14.93 -2 -14.94 -2 -14.95 -2 -14.96 -2 -14.97 -2 -14.98 -2 -14.99 -2 -15 -2 -15.01 -2 -15.02 -2 -15.03 -2 -15.04 -2 -15.05 -2 -15.06 -2 -15.07 -2 -15.08 -2 -15.09 -2 -15.1 -2 -15.11 -2 -15.12 -2 -15.13 -2 -15.14 -2 -15.15 -2 -15.16 -2 -15.17 -2 -15.18 -2 -15.19 -2 -15.2 -2 -15.21 -2 -15.22 -2 -15.23 -2 -15.24 -2 -15.25 -2 -15.26 -2 -15.27 -2 -15.28 -2 -15.29 -2 -15.3 -2 -15.31 -2 -15.32 -2 -15.33 -2 -15.34 -2 -15.35 -2 -15.36 -2 -15.37 -2 -15.38 -2 -15.39 -2 -15.4 -2 -15.41 -2 -15.42 -2 -15.43 -2 -15.44 -2 -15.45 -2 -15.46 -2 -15.47 -2 -15.48 -2 -15.49 -2 -15.5 -2 -15.51 -2 -15.52 -2 -15.53 -2 -15.54 -2 -15.55 -2 -15.56 -2 -15.57 -2 -15.58 -2 -15.59 -2 -15.6 -2 -15.61 -2 -15.62 -2 -15.63 -2 -15.64 -2 -15.65 -2 -15.66 -2 -15.67 -2 -15.68 -2 -15.69 -2 -15.7 -2 -15.71 -2 -15.72 -2 -15.73 -2 -15.74 -2 -15.75 -2 -15.76 -2 -15.77 -2 -15.78 -2 -15.79 -2 -15.8 -2 -15.81 -2 -15.82 -2 -15.83 -2 -15.84 -2 -15.85 -2 -15.86 -2 -15.87 -2 -15.88 -2 -15.89 -2 -15.9 -2 -15.91 -2 -15.92 -2 -15.93 -2 -15.94 -2 -15.95 -2 -15.96 -2 -15.97 -2 -15.98 -2 -15.99 -2 -16 -2 -16.01 -2 -16.02 -2 -16.03 -2 -16.04 -2 -16.05 -2 -16.06 -2 -16.07 -2 -16.08 -2 -16.09 -2 -16.1 -2 -16.11 -2 -16.12 -2 -16.13 -2 -16.14 -2 -16.15 -2 -16.16 -2 -16.17 -2 -16.18 -2 -16.19 -2 -16.2 -2 -16.21 -2 -16.22 -2 -16.23 -2 -16.24 -2 -16.25 -2 -16.26 -2 -16.27 -2 -16.28 -2 -16.29 -2 -16.3 -2 -16.31 -2 -16.32 -2 -16.33 -2 -16.34 -2 -16.35 -2 -16.36 -2 -16.37 -2 -16.38 -2 -16.39 -2 -16.4 -2 -16.41 -2 -16.42 -2 -16.43 -2 -16.44 -2 -16.45 -2 -16.46 -2 -16.47 -2 -16.48 -2 -16.49 -2 -16.5 -2 -16.51 -2 -16.52 -2 -16.53 -2 -16.54 -2 -16.55 -2 -16.56 -2 -16.57 -2 -16.58 -2 -16.59 -2 -16.6 -2 -16.61 -2 -16.62 -2 -16.63 -2 -16.64 -2 -16.65 -2 -16.66 -2 -16.67 -2 -16.68 -2 -16.69 -2 -16.7 -2 -16.71 -2 -16.72 -2 -16.73 -2 -16.74 -2 -16.75 -2 -16.76 -2 -16.77 -2 -16.78 -2 -16.79 -2 -16.8 -2 -16.81 -2 -16.82 -2 -16.83 -2 -16.84 -2 -16.85 -2 -16.86 -2 -16.87 -2 -16.88 -2 -16.89 -2 -16.9 -2 -16.91 -2 -16.92 -2 -16.93 -2 -16.94 -2 -16.95 -2 -16.96 -2 -16.97 -2 -16.98 -2 -16.99 -2 -17 -2 -17.01 -2 -17.02 -2 -17.03 -2 -17.04 -2 -17.05 -2 -17.06 -2 -17.07 -2 -17.08 -2 -17.09 -2 -17.1 -2 -17.11 -2 -17.12 -2 -17.13 -2 -17.14 -2 -17.15 -2 -17.16 -2 -17.17 -2 -17.18 -2 -17.19 -2 -17.2 -2 -17.21 -2 -17.22 -2 -17.23 -2 -17.24 -2 -17.25 -2 -17.26 -2 -17.27 -2 -17.28 -2 -17.29 -2 -17.3 -2 -17.31 -2 -17.32 -2 -17.33 -2 -17.34 -2 -17.35 -2 -17.36 -2 -17.37 -2 -17.38 -2 -17.39 -2 -17.4 -2 -17.41 -2 -17.42 -2 -17.43 -2 -17.44 -2 -17.45 -2 -17.46 -2 -17.47 -2 -17.48 -2 -17.49 -2 -17.5 -2 -17.51 -2 -17.52 -2 -17.53 -2 -17.54 -2 -17.55 -2 -17.56 -2 -17.57 -2 -17.58 -2 -17.59 -2 -17.6 -2 -17.61 -2 -17.62 -2 -17.63 -2 -17.64 -2 -17.65 -2 -17.66 -2 -17.67 -2 -17.68 -2 -17.69 -2 -17.7 -2 -17.71 -2 -17.72 -2 -17.73 -2 -17.74 -2 -17.75 -2 -17.76 -2 -17.77 -2 -17.78 -2 -17.79 -2 -17.8 -2 -17.81 -2 -17.82 -2 -17.83 -2 -17.84 -2 -17.85 -2 -17.86 -2 -17.87 -2 -17.88 -2 -17.89 -2 -17.9 -2 -17.91 -2 -17.92 -2 -17.93 -2 -17.94 -2 -17.95 -2 -17.96 -2 -17.97 -2 -17.98 -2 -17.99 -2 -18 -2 -18.01 -2 -18.02 -2 -18.03 -2 -18.04 -2 -18.05 -2 -18.06 -2 -18.07 -2 -18.08 -2 -18.09 -2 -18.1 -2 -18.11 -2 -18.12 -2 -18.13 -2 -18.14 -2 -18.15 -2 -18.16 -2 -18.17 -2 -18.18 -2 -18.19 -2 -18.2 -2 -18.21 -2 -18.22 -2 -18.23 -2 -18.24 -2 -18.25 -2 -18.26 -2 -18.27 -2 -18.28 -2 -18.29 -2 -18.3 -2 -18.31 -2 -18.32 -2 -18.33 -2 -18.34 -2 -18.35 -2 -18.36 -2 -18.37 -2 -18.38 -2 -18.39 -2 -18.4 -2 -18.41 -2 -18.42 -2 -18.43 -2 -18.44 -2 -18.45 -2 -18.46 -2 -18.47 -2 -18.48 -2 -18.49 -2 -18.5 -2 -18.51 -2 -18.52 -2 -18.53 -2 -18.54 -2 -18.55 -2 -18.56 -2 -18.57 -2 -18.58 -2 -18.59 -2 -18.6 -2 -18.61 -2 -18.62 -2 -18.63 -2 -18.64 -2 -18.65 -2 -18.66 -2 -18.67 -2 -18.68 -2 -18.69 -2 -18.7 -2 -18.71 -2 -18.72 -2 -18.73 -2 -18.74 -2 -18.75 -2 -18.76 -2 -18.77 -2 -18.78 -2 -18.79 -2 -18.8 -2 -18.81 -2 -18.82 -2 -18.83 -2 -18.84 -2 -18.85 -2 -18.86 -2 -18.87 -2 -18.88 -2 -18.89 -2 -18.9 -2 -18.91 -2 -18.92 -2 -18.93 -2 -18.94 -2 -18.95 -2 -18.96 -2 -18.97 -2 -18.98 -2 -18.99 -2 -19 -2 -19.01 -2 -19.02 -2 -19.03 -2 -19.04 -2 -19.05 -2 -19.06 -2 -19.07 -2 -19.08 -2 -19.09 -2 -19.1 -2 -19.11 -2 -19.12 -2 -19.13 -2 -19.14 -2 -19.15 -2 -19.16 -2 -19.17 -2 -19.18 -2 -19.19 -2 -19.2 -2 -19.21 -2 -19.22 -2 -19.23 -2 -19.24 -2 -19.25 -2 -19.26 -2 -19.27 -2 -19.28 -2 -19.29 -2 -19.3 -2 -19.31 -2 -19.32 -2 -19.33 -2 -19.34 -2 -19.35 -2 -19.36 -2 -19.37 -2 -19.38 -2 -19.39 -2 -19.4 -2 -19.41 -2 -19.42 -2 -19.43 -2 -19.44 -2 -19.45 -2 -19.46 -2 -19.47 -2 -19.48 -2 -19.49 -2 -19.5 -2 -19.51 -2 -19.52 -2 -19.53 -2 -19.54 -2 -19.55 -2 -19.56 -2 -19.57 -2 -19.58 -2 -19.59 -2 -19.6 -2 -19.61 -2 -19.62 -2 -19.63 -2 -19.64 -2 -19.65 -2 -19.66 -2 -19.67 -2 -19.68 -2 -19.69 -2 -19.7 -2 -19.71 -2 -19.72 -2 -19.73 -2 -19.74 -2 -19.75 -2 -19.76 -2 -19.77 -2 -19.78 -2 -19.79 -2 -19.8 -2 -19.81 -2 -19.82 -2 -19.83 -2 -19.84 -2 -19.85 -2 -19.86 -2 -19.87 -2 -19.88 -2 -19.89 -2 -19.9 -2 -19.91 -2 -19.92 -2 -19.93 -2 -19.94 -2 -19.95 -2 -19.96 -2 -19.97 -2 -19.98 -2 -19.99 -2 -20 -2 -20.01 -2 -20.02 -2 -20.03 -2 -20.04 -2 -20.05 -2 -20.06 -2 -20.07 -2 -20.08 -2 -20.09 -2 -20.1 -2 -20.11 -2 -20.12 -2 -20.13 -2 -20.14 -2 -20.15 -2 -20.16 -2 -20.17 -2 -20.18 -2 -20.19 -2 -20.2 -2 -20.21 -2 -20.22 -2 -20.23 -2 -20.24 -2 -20.25 -2 -20.26 -2 -20.27 -2 -20.28 -2 -20.29 -2 -20.3 -2 -20.31 -2 -20.32 -2 -20.33 -2 -20.34 -2 -20.35 -2 -20.36 -2 -20.37 -2 -20.38 -2 -20.39 -2 -20.4 -2 -20.41 -2 -20.42 -2 -20.43 -2 -20.44 -2 -20.45 -2 -20.46 -2 -20.47 -2 -20.48 -2 -20.49 -2 -20.5 -2 -20.51 -2 -20.52 -2 -20.53 -2 -20.54 -2 -20.55 -2 -20.56 -2 -20.57 -2 -20.58 -2 -20.59 -2 -20.6 -2 -20.61 -2 -20.62 -2 -20.63 -2 -20.64 -2 -20.65 -2 -20.66 -2 -20.67 -2 -20.68 -2 -20.69 -2 -20.7 -2 -20.71 -2 -20.72 -2 -20.73 -2 -20.74 -2 -20.75 -2 -20.76 -2 -20.77 -2 -20.78 -2 -20.79 -2 -20.8 -2 -20.81 -2 -20.82 -2 -20.83 -2 -20.84 -2 -20.85 -2 -20.86 -2 -20.87 -2 -20.88 -2 -20.89 -2 -20.9 -2 -20.91 -2 -20.92 -2 -20.93 -2 -20.94 -2 -20.95 -2 -20.96 -2 -20.97 -2 -20.98 -2 -20.99 -2 -21 -2 -21.01 -2 -21.02 -2 -21.03 -2 -21.04 -2 -21.05 -2 -21.06 -2 -21.07 -2 -21.08 -2 -21.09 -2 -21.1 -2 -21.11 -2 -21.12 -2 -21.13 -2 -21.14 -2 -21.15 -2 -21.16 -2 -21.17 -2 -21.18 -2 -21.19 -2 -21.2 -2 -21.21 -2 -21.22 -2 -21.23 -2 -21.24 -2 -21.25 -2 -21.26 -2 -21.27 -2 -21.28 -2 -21.29 -2 -21.3 -2 -21.31 -2 -21.32 -2 -21.33 -2 -21.34 -2 -21.35 -2 -21.36 -2 -21.37 -2 -21.38 -2 -21.39 -2 -21.4 -2 -21.41 -2 -21.42 -2 -21.43 -2 -21.44 -2 -21.45 -2 -21.46 -2 -21.47 -2 -21.48 -2 -21.49 -2 -21.5 -2 -21.51 -2 -21.52 -2 -21.53 -2 -21.54 -2 -21.55 -2 -21.56 -2 -21.57 -2 -21.58 -2 -21.59 -2 -21.6 -2 -21.61 -2 -21.62 -2 -21.63 -2 -21.64 -2 -21.65 -2 -21.66 -2 -21.67 -2 -21.68 -2 -21.69 -2 -21.7 -2 -21.71 -2 -21.72 -2 -21.73 -2 -21.74 -2 -21.75 -2 -21.76 -2 -21.77 -2 -21.78 -2 -21.79 -2 -21.8 -2 -21.81 -2 -21.82 -2 -21.83 -2 -21.84 -2 -21.85 -2 -21.86 -2 -21.87 -2 -21.88 -2 -21.89 -2 -21.9 -2 -21.91 -2 -21.92 -2 -21.93 -2 -21.94 -2 -21.95 -2 -21.96 -2 -21.97 -2 -21.98 -2 -21.99 -2 -22 -2 -22.01 -2 -22.02 -2 -22.03 -2 -22.04 -2 -22.05 -2 -22.06 -2 -22.07 -2 -22.08 -2 -22.09 -2 -22.1 -2 -22.11 -2 -22.12 -2 -22.13 -2 -22.14 -2 -22.15 -2 -22.16 -2 -22.17 -2 -22.18 -2 -22.19 -2 -22.2 -2 -22.21 -2 -22.22 -2 -22.23 -2 -22.24 -2 -22.25 -2 -22.26 -2 -22.27 -2 -22.28 -2 -22.29 -2 -22.3 -2 -22.31 -2 -22.32 -2 -22.33 -2 -22.34 -2 -22.35 -2 -22.36 -2 -22.37 -2 -22.38 -2 -22.39 -2 -22.4 -2 -22.41 -2 -22.42 -2 -22.43 -2 -22.44 -2 -22.45 -2 -22.46 -2 -22.47 -2 -22.48 -2 -22.49 -2 -22.5 -2 -22.51 -2 -22.52 -2 -22.53 -2 -22.54 -2 -22.55 -2 -22.56 -2 -22.57 -2 -22.58 -2 -22.59 -2 -22.6 -2 -22.61 -2 -22.62 -2 -22.63 -2 -22.64 -2 -22.65 -2 -22.66 -2 -22.67 -2 -22.68 -2 -22.69 -2 -22.7 -2 -22.71 -2 -22.72 -2 -22.73 -2 -22.74 -2 -22.75 -2 -22.76 -2 -22.77 -2 -22.78 -2 -22.79 -2 -22.8 -2 -22.81 -2 -22.82 -2 -22.83 -2 -22.84 -2 -22.85 -2 -22.86 -2 -22.87 -2 -22.88 -2 -22.89 -2 -22.9 -2 -22.91 -2 -22.92 -2 -22.93 -2 -22.94 -2 -22.95 -2 -22.96 -2 -22.97 -2 -22.98 -2 -22.99 -2 -23 -2 -23.01 -2 -23.02 -2 -23.03 -2 -23.04 -2 -23.05 -2 -23.06 -2 -23.07 -2 -23.08 -2 -23.09 -2 -23.1 -2 -23.11 -2 -23.12 -2 -23.13 -2 -23.14 -2 -23.15 -2 -23.16 -2 -23.17 -2 -23.18 -2 -23.19 -2 -23.2 -2 -23.21 -2 -23.22 -2 -23.23 -2 -23.24 -2 -23.25 -2 -23.26 -2 -23.27 -2 -23.28 -2 -23.29 -2 -23.3 -2 -23.31 -2 -23.32 -2 -23.33 -2 -23.34 -2 -23.35 -2 -23.36 -2 -23.37 -2 -23.38 -2 -23.39 -2 -23.4 -2 -23.41 -2 -23.42 -2 -23.43 -2 -23.44 -2 -23.45 -2 -23.46 -2 -23.47 -2 -23.48 -2 -23.49 -2 -23.5 -2 -23.51 -2 -23.52 -2 -23.53 -2 -23.54 -2 -23.55 -2 -23.56 -2 -23.57 -2 -23.58 -2 -23.59 -2 -23.6 -2 -23.61 -2 -23.62 -2 -23.63 -2 -23.64 -2 -23.65 -2 -23.66 -2 -23.67 -2 -23.68 -2 -23.69 -2 -23.7 -2 -23.71 -2 -23.72 -2 -23.73 -2 -23.74 -2 -23.75 -2 -23.76 -2 -23.77 -2 -23.78 -2 -23.79 -2 -23.8 -2 -23.81 -2 -23.82 -2 -23.83 -2 -23.84 -2 -23.85 -2 -23.86 -2 -23.87 -2 -23.88 -2 -23.89 -2 -23.9 -2 -23.91 -2 -23.92 -2 -23.93 -2 -23.94 -2 -23.95 -2 -23.96 -2 -23.97 -2 -23.98 -2 -23.99 -2 -24 -2 -24.01 -2 -24.02 -2 -24.03 -2 -24.04 -2 -24.05 -2 -24.06 -2 -24.07 -2 -24.08 -2 -24.09 -2 -24.1 -2 -24.11 -2 -24.12 -2 -24.13 -2 -24.14 -2 -24.15 -2 -24.16 -2 -24.17 -2 -24.18 -2 -24.19 -2 -24.2 -2 -24.21 -2 -24.22 -2 -24.23 -2 -24.24 -2 -24.25 -2 -24.26 -2 -24.27 -2 -24.28 -2 -24.29 -2 -24.3 -2 -24.31 -2 -24.32 -2 -24.33 -2 -24.34 -2 -24.35 -2 -24.36 -2 -24.37 -2 -24.38 -2 -24.39 -2 -24.4 -2 -24.41 -2 -24.42 -2 -24.43 -2 -24.44 -2 -24.45 -2 -24.46 -2 -24.47 -2 -24.48 -2 -24.49 -2 -24.5 -2 -24.51 -2 -24.52 -2 -24.53 -2 -24.54 -2 -24.55 -2 -24.56 -2 -24.57 -2 -24.58 -2 -24.59 -2 -24.6 -2 -24.61 -2 -24.62 -2 -24.63 -2 -24.64 -2 -24.65 -2 -24.66 -2 -24.67 -2 -24.68 -2 -24.69 -2 -24.7 -2 -24.71 -2 -24.72 -2 -24.73 -2 -24.74 -2 -24.75 -2 -24.76 -2 -24.77 -2 -24.78 -2 -24.79 -2 -24.8 -2 -24.81 -2 -24.82 -2 -24.83 -2 -24.84 -2 -24.85 -2 -24.86 -2 -24.87 -2 -24.88 -2 -24.89 -2 -24.9 -2 -24.91 -2 -24.92 -2 -24.93 -2 -24.94 -2 -24.95 -2 -24.96 -2 -24.97 -2 -24.98 -2 -24.99 -2 -25 -2 -25.01 -2 -25.02 -2 -25.03 -2 -25.04 -2 -25.05 -2 -25.06 -2 -25.07 -2 -25.08 -2 -25.09 -2 -25.1 -2 -25.11 -2 -25.12 -2 -25.13 -2 -25.14 -2 -25.15 -2 -25.16 -2 -25.17 -2 -25.18 -2 -25.19 -2 -25.2 -2 -25.21 -2 -25.22 -2 -25.23 -2 -25.24 -2 -25.25 -2 -25.26 -2 -25.27 -2 -25.28 -2 -25.29 -2 -25.3 -2 -25.31 -2 -25.32 -2 -25.33 -2 -25.34 -2 -25.35 -2 -25.36 -2 -25.37 -2 -25.38 -2 -25.39 -2 -25.4 -2 -25.41 -2 -25.42 -2 -25.43 -2 -25.44 -2 -25.45 -2 -25.46 -2 -25.47 -2 -25.48 -2 -25.49 -2 -25.5 -2 -25.51 -2 -25.52 -2 -25.53 -2 -25.54 -2 -25.55 -2 -25.56 -2 -25.57 -2 -25.58 -2 -25.59 -2 -25.6 -2 -25.61 -2 -25.62 -2 -25.63 -2 -25.64 -2 -25.65 -2 -25.66 -2 -25.67 -2 -25.68 -2 -25.69 -2 -25.7 -2 -25.71 -2 -25.72 -2 -25.73 -2 -25.74 -2 -25.75 -2 -25.76 -2 -25.77 -2 -25.78 -2 -25.79 -2 -25.8 -2 -25.81 -2 -25.82 -2 -25.83 -2 -25.84 -2 -25.85 -2 -25.86 -2 -25.87 -2 -25.88 -2 -25.89 -2 -25.9 -2 -25.91 -2 -25.92 -2 -25.93 -2 -25.94 -2 -25.95 -2 -25.96 -2 -25.97 -2 -25.98 -2 -25.99 -2 -26 -2 -26.01 -2 -26.02 -2 -26.03 -2 -26.04 -2 -26.05 -2 -26.06 -2 -26.07 -2 -26.08 -2 -26.09 -2 -26.1 -2 -26.11 -2 -26.12 -2 -26.13 -2 -26.14 -2 -26.15 -2 -26.16 -2 -26.17 -2 -26.18 -2 -26.19 -2 -26.2 -2 -26.21 -2 -26.22 -2 -26.23 -2 -26.24 -2 -26.25 -2 -26.26 -2 -26.27 -2 -26.28 -2 -26.29 -2 -26.3 -2 -26.31 -2 -26.32 -2 -26.33 -2 -26.34 -2 -26.35 -2 -26.36 -2 -26.37 -2 -26.38 -2 -26.39 -2 -26.4 -2 -26.41 -2 -26.42 -2 -26.43 -2 -26.44 -2 -26.45 -2 -26.46 -2 -26.47 -2 -26.48 -2 -26.49 -2 -26.5 -2 -26.51 -2 -26.52 -2 -26.53 -2 -26.54 -2 -26.55 -2 -26.56 -2 -26.57 -2 -26.58 -2 -26.59 -2 -26.6 -2 -26.61 -2 -26.62 -2 -26.63 -2 -26.64 -2 -26.65 -2 -26.66 -2 -26.67 -2 -26.68 -2 -26.69 -2 -26.7 -2 -26.71 -2 -26.72 -2 -26.73 -2 -26.74 -2 -26.75 -2 -26.76 -2 -26.77 -2 -26.78 -2 -26.79 -2 -26.8 -2 -26.81 -2 -26.82 -2 -26.83 -2 -26.84 -2 -26.85 -2 -26.86 -2 -26.87 -2 -26.88 -2 -26.89 -2 -26.9 -2 -26.91 -2 -26.92 -2 -26.93 -2 -26.94 -2 -26.95 -2 -26.96 -2 -26.97 -2 -26.98 -2 -26.99 -2 -27 -2 -27.01 -2 -27.02 -2 -27.03 -2 -27.04 -2 -27.05 -2 -27.06 -2 -27.07 -2 -27.08 -2 -27.09 -2 -27.1 -2 -27.11 -2 -27.12 -2 -27.13 -2 -27.14 -2 -27.15 -2 -27.16 -2 -27.17 -2 -27.18 -2 -27.19 -2 -27.2 -2 -27.21 -2 -27.22 -2 -27.23 -2 -27.24 -2 -27.25 -2 -27.26 -2 -27.27 -2 -27.28 -2 -27.29 -2 -27.3 -2 -27.31 -2 -27.32 -2 -27.33 -2 -27.34 -2 -27.35 -2 -27.36 -2 -27.37 -2 -27.38 -2 -27.39 -2 -27.4 -2 -27.41 -2 -27.42 -2 -27.43 -2 -27.44 -2 -27.45 -2 -27.46 -2 -27.47 -2 -27.48 -2 -27.49 -2 -27.5 -2 -27.51 -2 -27.52 -2 -27.53 -2 -27.54 -2 -27.55 -2 -27.56 -2 -27.57 -2 -27.58 -2 -27.59 -2 -27.6 -2 -27.61 -2 -27.62 -2 -27.63 -2 -27.64 -2 -27.65 -2 -27.66 -2 -27.67 -2 -27.68 -2 -27.69 -2 -27.7 -2 -27.71 -2 -27.72 -2 -27.73 -2 -27.74 -2 -27.75 -2 -27.76 -2 -27.77 -2 -27.78 -2 -27.79 -2 -27.8 -2 -27.81 -2 -27.82 -2 -27.83 -2 -27.84 -2 -27.85 -2 -27.86 -2 -27.87 -2 -27.88 -2 -27.89 -2 -27.9 -2 -27.91 -2 -27.92 -2 -27.93 -2 -27.94 -2 -27.95 -2 -27.96 -2 -27.97 -2 -27.98 -2 -27.99 -2 -28 -2 -28.01 -2 -28.02 -2 -28.03 -2 -28.04 -2 -28.05 -2 -28.06 -2 -28.07 -2 -28.08 -2 -28.09 -2 -28.1 -2 -28.11 -2 -28.12 -2 -28.13 -2 -28.14 -2 -28.15 -2 -28.16 -2 -28.17 -2 -28.18 -2 -28.19 -2 -28.2 -2 -28.21 -2 -28.22 -2 -28.23 -2 -28.24 -2 -28.25 -2 -28.26 -2 -28.27 -2 -28.28 -2 -28.29 -2 -28.3 -2 -28.31 -2 -28.32 -2 -28.33 -2 -28.34 -2 -28.35 -2 -28.36 -2 -28.37 -2 -28.38 -2 -28.39 -2 -28.4 -2 -28.41 -2 -28.42 -2 -28.43 -2 -28.44 -2 -28.45 -2 -28.46 -2 -28.47 -2 -28.48 -2 -28.49 -2 -28.5 -2 -28.51 -2 -28.52 -2 -28.53 -2 -28.54 -2 -28.55 -2 -28.56 -2 -28.57 -2 -28.58 -2 -28.59 -2 -28.6 -2 -28.61 -2 -28.62 -2 -28.63 -2 -28.64 -2 -28.65 -2 -28.66 -2 -28.67 -2 -28.68 -2 -28.69 -2 -28.7 -2 -28.71 -2 -28.72 -2 -28.73 -2 -28.74 -2 -28.75 -2 -28.76 -2 -28.77 -2 -28.78 -2 -28.79 -2 -28.8 -2 -28.81 -2 -28.82 -2 -28.83 -2 -28.84 -2 -28.85 -2 -28.86 -2 -28.87 -2 -28.88 -2 -28.89 -2 -28.9 -2 -28.91 -2 -28.92 -2 -28.93 -2 -28.94 -2 -28.95 -2 -28.96 -2 -28.97 -2 -28.98 -2 -28.99 -2 -29 -2 -29.01 -2 -29.02 -2 -29.03 -2 -29.04 -2 -29.05 -2 -29.06 -2 -29.07 -2 -29.08 -2 -29.09 -2 -29.1 -2 -29.11 -2 -29.12 -2 -29.13 -2 -29.14 -2 -29.15 -2 -29.16 -2 -29.17 -2 -29.18 -2 -29.19 -2 -29.2 -2 -29.21 -2 -29.22 -2 -29.23 -2 -29.24 -2 -29.25 -2 -29.26 -2 -29.27 -2 -29.28 -2 -29.29 -2 -29.3 -2 -29.31 -2 -29.32 -2 -29.33 -2 -29.34 -2 -29.35 -2 -29.36 -2 -29.37 -2 -29.38 -2 -29.39 -2 -29.4 -2 -29.41 -2 -29.42 -2 -29.43 -2 -29.44 -2 -29.45 -2 -29.46 -2 -29.47 -2 -29.48 -2 -29.49 -2 -29.5 -2 -29.51 -2 -29.52 -2 -29.53 -2 -29.54 -2 -29.55 -2 -29.56 -2 -29.57 -2 -29.58 -2 -29.59 -2 -29.6 -2 -29.61 -2 -29.62 -2 -29.63 -2 -29.64 -2 -29.65 -2 -29.66 -2 -29.67 -2 -29.68 -2 -29.69 -2 -29.7 -2 -29.71 -2 -29.72 -2 -29.73 -2 -29.74 -2 -29.75 -2 -29.76 -2 -29.77 -2 -29.78 -2 -29.79 -2 -29.8 -2 -29.81 -2 -29.82 -2 -29.83 -2 -29.84 -2 -29.85 -2 -29.86 -2 -29.87 -2 -29.88 -2 -29.89 -2 -29.9 -2 -29.91 -2 -29.92 -2 -29.93 -2 -29.94 -2 -29.95 -2 -29.96 -2 -29.97 -2 -29.98 -2 -29.99 -2 -30 -2 -& -@target G0.S1 -@type xy -0 0 -0.01 -0.00163006 -0.02 -0.00314664 -0.03 -0.0044514 -0.04 -0.0054598 -0.05 -0.00610652 -0.06 -0.0063496 -0.07 -0.00617312 -0.08 -0.00558817 -0.09 -0.00463223 -0.1 -0.00336677 -0.11 -0.00187339 -0.12 -0.00024718 -0.13 0.00139186 -0.14 0.0029351 -0.15 0.00428218 -0.16 0.00534551 -0.17 0.00605582 -0.18 0.00636653 -0.19 0.00625684 -0.2 0.00573299 -0.21 0.00482799 -0.22 0.00359955 -0.23 0.0021201 -0.24 0.000498006 -0.25 -0.00115308 -0.26 -0.00272522 -0.27 -0.00411539 -0.28 -0.00523204 -0.29 -0.0060008 -0.3 -0.00636922 -0.31 -0.00631004 -0.32 -0.00582294 -0.33 -0.00493455 -0.34 -0.00368936 -0.35 -0.00216465 -0.36 -0.000471089 -0.37 0.00128688 -0.38 0.00300088 -0.39 0.00456524 -0.4 0.00588331 -0.41 0.00687308 -0.42 0.00747184 -0.43 0.00763941 -0.44 0.00735992 -0.45 0.00663733 -0.46 0.005486 -0.47 0.00398872 -0.48 0.00221461 -0.49 0.000241712 -0.5 -0.00184891 -0.51 -0.00397911 -0.52 -0.00607925 -0.53 -0.0080929 -0.54 -0.00998045 -0.55 -0.0117212 -0.56 -0.0133138 -0.57 -0.0147681 -0.58 -0.0161286 -0.59 -0.0174398 -0.6 -0.0187493 -0.61 -0.0201015 -0.62 -0.0215309 -0.63 -0.0230556 -0.64 -0.0246713 -0.65 -0.0263468 -0.66 -0.028021 -0.67 -0.0296022 -0.68 -0.0309494 -0.69 -0.0319079 -0.7 -0.032313 -0.71 -0.0319858 -0.72 -0.0307474 -0.73 -0.0284299 -0.74 -0.0248878 -0.75 -0.0200084 -0.76 -0.0137228 -0.77 -0.00601333 -0.78 0.00307943 -0.79 0.0134966 -0.8 0.0250478 -0.81 0.037452 -0.82 0.0504235 -0.83 0.0636352 -0.84 0.076731 -0.85 0.0893401 -0.86 0.101093 -0.87 0.111638 -0.88 0.120657 -0.89 0.12788 -0.9 0.13305 -0.91 0.135963 -0.92 0.136683 -0.93 0.135254 -0.94 0.131795 -0.95 0.126505 -0.96 0.119643 -0.97 0.111523 -0.98 0.102497 -0.99 0.0929355 -1 0.0832105 -1.01 0.073683 -1.02 0.064731 -1.03 0.0566024 -1.04 0.0494992 -1.05 0.0435525 -1.06 0.0388192 -1.07 0.0352821 -1.08 0.0328539 -1.09 0.0313858 -1.1 0.0306782 -1.11 0.0304955 -1.12 0.0305815 -1.13 0.0306597 -1.14 0.030467 -1.15 0.0297917 -1.16 0.0284652 -1.17 0.0263724 -1.18 0.0234569 -1.19 0.0197235 -1.2 0.0152354 -1.21 0.0101091 -1.22 0.00450444 -1.23 -0.00138742 -1.24 -0.00735146 -1.25 -0.0131584 -1.26 -0.0186161 -1.27 -0.023566 -1.28 -0.0278926 -1.29 -0.0315334 -1.3 -0.0344834 -1.31 -0.0367966 -1.32 -0.0385826 -1.33 -0.0400001 -1.34 -0.0412451 -1.35 -0.0425469 -1.36 -0.0441564 -1.37 -0.0462819 -1.38 -0.0491024 -1.39 -0.052748 -1.4 -0.0572872 -1.41 -0.0627163 -1.42 -0.0689542 -1.43 -0.0758418 -1.44 -0.0831468 -1.45 -0.0905735 -1.46 -0.0977667 -1.47 -0.104296 -1.48 -0.109798 -1.49 -0.113919 -1.5 -0.116354 -1.51 -0.116868 -1.52 -0.11532 -1.53 -0.111679 -1.54 -0.106033 -1.55 -0.0985954 -1.56 -0.0897008 -1.57 -0.0797968 -1.58 -0.0694419 -1.59 -0.0593322 -1.6 -0.05013 -1.61 -0.0424988 -1.62 -0.0370681 -1.63 -0.034396 -1.64 -0.0349358 -1.65 -0.039005 -1.66 -0.0467605 -1.67 -0.0581809 -1.68 -0.0730574 -1.69 -0.0911475 -1.7 -0.111667 -1.71 -0.133819 -1.72 -0.156729 -1.73 -0.179445 -1.74 -0.200978 -1.75 -0.220352 -1.76 -0.236654 -1.77 -0.249082 -1.78 -0.256988 -1.79 -0.259918 -1.8 -0.257405 -1.81 -0.249574 -1.82 -0.236892 -1.83 -0.219919 -1.84 -0.199432 -1.85 -0.176404 -1.86 -0.151958 -1.87 -0.127314 -1.88 -0.103737 -1.89 -0.082472 -1.9 -0.0646866 -1.91 -0.0515696 -1.92 -0.0441078 -1.93 -0.0426392 -1.94 -0.0474392 -1.95 -0.0584893 -1.96 -0.075473 -1.97 -0.0977865 -1.98 -0.124563 -1.99 -0.154712 -2 -0.186967 -2.01 -0.219944 -2.02 -0.252181 -2.03 -0.282042 -2.04 -0.308281 -2.05 -0.329758 -2.06 -0.345559 -2.07 -0.355035 -2.08 -0.357838 -2.09 -0.353939 -2.1 -0.34363 -2.11 -0.32751 -2.12 -0.306462 -2.13 -0.281605 -2.14 -0.254165 -2.15 -0.225849 -2.16 -0.198138 -2.17 -0.172469 -2.18 -0.150169 -2.19 -0.132393 -2.2 -0.120064 -2.21 -0.113828 -2.22 -0.114024 -2.23 -0.120665 -2.24 -0.133434 -2.25 -0.151967 -2.26 -0.175033 -2.27 -0.201345 -2.28 -0.229544 -2.29 -0.258169 -2.3 -0.285722 -2.31 -0.310741 -2.32 -0.331864 -2.33 -0.347896 -2.34 -0.357855 -2.35 -0.361021 -2.36 -0.356656 -2.37 -0.344687 -2.38 -0.325585 -2.39 -0.299842 -2.4 -0.26819 -2.41 -0.231559 -2.42 -0.19102 -2.43 -0.147728 -2.44 -0.102859 -2.45 -0.0575495 -2.46 -0.0128415 -2.47 0.0303157 -2.48 0.0711116 -2.49 0.109181 -2.5 0.14431 -2.51 0.176516 -2.52 0.206033 -2.53 0.233282 -2.54 0.258836 -2.55 0.283369 -2.56 0.307609 -2.57 0.332277 -2.58 0.358049 -2.59 0.385605 -2.6 0.415224 -2.61 0.447063 -2.62 0.481058 -2.63 0.516913 -2.64 0.554107 -2.65 0.591907 -2.66 0.6294 -2.67 0.665534 -2.68 0.699165 -2.69 0.729114 -2.7 0.753821 -2.71 0.77245 -2.72 0.784138 -2.73 0.788187 -2.74 0.784138 -2.75 0.771797 -2.76 0.75125 -2.77 0.72287 -2.78 0.687297 -2.79 0.645419 -2.8 0.598333 -2.81 0.547168 -2.82 0.493534 -2.83 0.43894 -2.84 0.384775 -2.85 0.332346 -2.86 0.28282 -2.87 0.237174 -2.88 0.196167 -2.89 0.160304 -2.9 0.129829 -2.91 0.104723 -2.92 0.0848813 -2.93 0.0697485 -2.94 0.0584037 -2.95 0.0499883 -2.96 0.0435559 -2.97 0.0381262 -2.98 0.032737 -2.99 0.0264951 -3 0.0186212 -3.01 0.00848747 -3.02 -0.00435354 -3.03 -0.0202116 -3.04 -0.0392207 -3.05 -0.0610193 -3.06 -0.0852295 -3.07 -0.111318 -3.08 -0.138631 -3.09 -0.166432 -3.1 -0.193944 -3.11 -0.220398 -3.12 -0.245068 -3.13 -0.267315 -3.14 -0.286602 -3.15 -0.302311 -3.16 -0.31447 -3.17 -0.323063 -3.18 -0.328236 -3.19 -0.330289 -3.2 -0.329651 -3.21 -0.326854 -3.22 -0.322502 -3.23 -0.317237 -3.24 -0.311699 -3.25 -0.306494 -3.26 -0.302243 -3.27 -0.299365 -3.28 -0.298149 -3.29 -0.298765 -3.3 -0.301242 -3.31 -0.305476 -3.32 -0.311239 -3.33 -0.318195 -3.34 -0.325921 -3.35 -0.333939 -3.36 -0.341736 -3.37 -0.348743 -3.38 -0.35445 -3.39 -0.358462 -3.4 -0.360439 -3.41 -0.360136 -3.42 -0.357409 -3.43 -0.352217 -3.44 -0.344618 -3.45 -0.334759 -3.46 -0.322858 -3.47 -0.309188 -3.48 -0.294011 -3.49 -0.277648 -3.5 -0.26044 -3.51 -0.242619 -3.52 -0.224351 -3.53 -0.205722 -3.54 -0.18673 -3.55 -0.167283 -3.56 -0.147198 -3.57 -0.126218 -3.58 -0.10402 -3.59 -0.0802034 -3.6 -0.0542593 -3.61 -0.0259048 -3.62 0.00520484 -3.63 0.0393535 -3.64 0.0767417 -3.65 0.117468 -3.66 0.161514 -3.67 0.208738 -3.68 0.258868 -3.69 0.311509 -3.7 0.366153 -3.71 0.422241 -3.72 0.478925 -3.73 0.535451 -3.74 0.591038 -3.75 0.644908 -3.76 0.696311 -3.77 0.744547 -3.78 0.78899 -3.79 0.829105 -3.8 0.864459 -3.81 0.89473 -3.82 0.919389 -3.83 0.938563 -3.84 0.95236 -3.85 0.960882 -3.86 0.964303 -3.87 0.962849 -3.88 0.956779 -3.89 0.946369 -3.9 0.931895 -3.91 0.913618 -3.92 0.891776 -3.93 0.866439 -3.94 0.837829 -3.95 0.806188 -3.96 0.771628 -3.97 0.734242 -3.98 0.694123 -3.99 0.65137 -4 0.606108 -4.01 0.558497 -4.02 0.508745 -4.03 0.457119 -4.04 0.403915 -4.05 0.349547 -4.06 0.294553 -4.07 0.239453 -4.08 0.184808 -4.09 0.131202 -4.1 0.0792293 -4.11 0.0294679 -4.12 -0.0175368 -4.13 -0.0612949 -4.14 -0.101391 -4.15 -0.137457 -4.16 -0.169037 -4.17 -0.196313 -4.18 -0.219323 -4.19 -0.238219 -4.2 -0.253266 -4.21 -0.264822 -4.22 -0.273326 -4.23 -0.279274 -4.24 -0.283199 -4.25 -0.285643 -4.26 -0.287137 -4.27 -0.288167 -4.28 -0.289214 -4.29 -0.290613 -4.3 -0.292601 -4.31 -0.295311 -4.32 -0.298767 -4.33 -0.30289 -4.34 -0.307506 -4.35 -0.312353 -4.36 -0.317106 -4.37 -0.321389 -4.38 -0.324736 -4.39 -0.326743 -4.4 -0.327058 -4.41 -0.325359 -4.42 -0.32139 -4.43 -0.314978 -4.44 -0.306036 -4.45 -0.294579 -4.46 -0.280715 -4.47 -0.264645 -4.48 -0.246651 -4.49 -0.227043 -4.5 -0.206272 -4.51 -0.184834 -4.52 -0.163176 -4.53 -0.141732 -4.54 -0.120903 -4.55 -0.101039 -4.56 -0.0824265 -4.57 -0.0652796 -4.58 -0.0497315 -4.59 -0.0358344 -4.6 -0.0235973 -4.61 -0.0129578 -4.62 -0.00366583 -4.63 0.00448234 -4.64 0.0117136 -4.65 0.0182601 -4.66 0.0243406 -4.67 0.0301444 -4.68 0.0358159 -4.69 0.0414428 -4.7 0.0470479 -4.71 0.0525834 -4.72 0.0579074 -4.73 0.062833 -4.74 0.0671146 -4.75 0.0704661 -4.76 0.0725772 -4.77 0.0731307 -4.78 0.0718218 -4.79 0.0683763 -4.8 0.0625685 -4.81 0.0542368 -4.82 0.0432964 -4.83 0.0295821 -4.84 0.0133501 -4.85 -0.00517487 -4.86 -0.0257094 -4.87 -0.0478956 -4.88 -0.0713147 -4.89 -0.095504 -4.9 -0.119976 -4.91 -0.144241 -4.92 -0.167824 -4.93 -0.19029 -4.94 -0.21117 -4.95 -0.230174 -4.96 -0.247139 -4.97 -0.261959 -4.98 -0.274624 -4.99 -0.28522 -5 -0.293921 -5.01 -0.300979 -5.02 -0.30671 -5.03 -0.311473 -5.04 -0.315651 -5.05 -0.319635 -5.06 -0.323827 -5.07 -0.328547 -5.08 -0.334047 -5.09 -0.340503 -5.1 -0.347997 -5.11 -0.35652 -5.12 -0.365963 -5.13 -0.376123 -5.14 -0.386713 -5.15 -0.39737 -5.16 -0.407657 -5.17 -0.417042 -5.18 -0.425073 -5.19 -0.431285 -5.2 -0.435249 -5.21 -0.436593 -5.22 -0.435016 -5.23 -0.430313 -5.24 -0.422377 -5.25 -0.411216 -5.26 -0.396949 -5.27 -0.379803 -5.28 -0.359964 -5.29 -0.338085 -5.3 -0.314685 -5.31 -0.290333 -5.32 -0.265631 -5.33 -0.24119 -5.34 -0.217604 -5.35 -0.195432 -5.36 -0.175173 -5.37 -0.157254 -5.38 -0.14201 -5.39 -0.129866 -5.4 -0.120814 -5.41 -0.114817 -5.42 -0.111781 -5.43 -0.111519 -5.44 -0.113766 -5.45 -0.118193 -5.46 -0.124428 -5.47 -0.13207 -5.48 -0.140712 -5.49 -0.14996 -5.5 -0.159446 -5.51 -0.16882 -5.52 -0.177827 -5.53 -0.186283 -5.54 -0.194073 -5.55 -0.201155 -5.56 -0.207551 -5.57 -0.213339 -5.58 -0.218645 -5.59 -0.223627 -5.6 -0.228461 -5.61 -0.233328 -5.62 -0.238405 -5.63 -0.243812 -5.64 -0.249622 -5.65 -0.255849 -5.66 -0.262443 -5.67 -0.269283 -5.68 -0.276178 -5.69 -0.282871 -5.7 -0.289047 -5.71 -0.294343 -5.72 -0.298338 -5.73 -0.300497 -5.74 -0.300489 -5.75 -0.297922 -5.76 -0.292442 -5.77 -0.283751 -5.78 -0.27162 -5.79 -0.255898 -5.8 -0.236526 -5.81 -0.213533 -5.82 -0.187042 -5.83 -0.157266 -5.84 -0.124305 -5.85 -0.0887644 -5.86 -0.0510801 -5.87 -0.0117167 -5.88 0.0288421 -5.89 0.0701108 -5.9 0.111619 -5.91 0.152929 -5.92 0.193644 -5.93 0.233428 -5.94 0.272002 -5.95 0.309071 -5.96 0.344542 -5.97 0.378375 -5.98 0.410559 -5.99 0.441128 -6 0.470148 -6.01 0.497701 -6.02 0.523876 -6.03 0.548747 -6.04 0.572369 -6.05 0.594755 -6.06 0.615824 -6.07 0.635488 -6.08 0.653648 -6.09 0.670109 -6.1 0.684632 -6.11 0.696939 -6.12 0.706729 -6.13 0.713694 -6.14 0.717529 -6.15 0.717956 -6.16 0.714737 -6.17 0.707595 -6.18 0.696315 -6.19 0.681089 -6.2 0.662004 -6.21 0.639249 -6.22 0.613108 -6.23 0.58396 -6.24 0.552269 -6.25 0.518574 -6.26 0.483467 -6.27 0.447585 -6.28 0.411584 -6.29 0.376202 -6.3 0.342063 -6.31 0.309747 -6.32 0.279766 -6.33 0.25256 -6.34 0.228477 -6.35 0.207774 -6.36 0.190606 -6.37 0.177037 -6.38 0.167039 -6.39 0.160502 -6.4 0.157455 -6.41 0.157449 -6.42 0.160185 -6.43 0.165373 -6.44 0.172725 -6.45 0.181965 -6.46 0.192848 -6.47 0.205166 -6.48 0.218755 -6.49 0.2335 -6.5 0.249332 -6.51 0.266281 -6.52 0.284331 -6.53 0.303491 -6.54 0.323805 -6.55 0.345308 -6.56 0.368013 -6.57 0.391898 -6.58 0.416888 -6.59 0.44285 -6.6 0.469579 -6.61 0.4968 -6.62 0.524151 -6.63 0.551163 -6.64 0.577337 -6.65 0.602134 -6.66 0.624985 -6.67 0.645303 -6.68 0.662514 -6.69 0.676067 -6.7 0.685464 -6.71 0.69027 -6.72 0.690139 -6.73 0.684721 -6.74 0.673684 -6.75 0.657329 -6.76 0.63578 -6.77 0.60928 -6.78 0.578182 -6.79 0.542931 -6.8 0.504057 -6.81 0.462149 -6.82 0.417836 -6.83 0.371769 -6.84 0.324593 -6.85 0.276943 -6.86 0.229459 -6.87 0.182645 -6.88 0.136927 -6.89 0.0926464 -6.9 0.0500517 -6.91 0.00930097 -6.92 -0.0295364 -6.93 -0.0664719 -6.94 -0.101588 -6.95 -0.135026 -6.96 -0.166886 -6.97 -0.197475 -6.98 -0.22703 -6.99 -0.255764 -7 -0.283867 -7.01 -0.311494 -7.02 -0.338758 -7.03 -0.365722 -7.04 -0.392398 -7.05 -0.418746 -7.06 -0.444675 -7.07 -0.470019 -7.08 -0.494605 -7.09 -0.518255 -7.1 -0.540765 -7.11 -0.561933 -7.12 -0.581571 -7.13 -0.599513 -7.14 -0.615625 -7.15 -0.629813 -7.16 -0.642029 -7.17 -0.652269 -7.18 -0.66052 -7.19 -0.666859 -7.2 -0.671505 -7.21 -0.674624 -7.22 -0.676406 -7.23 -0.677051 -7.24 -0.676768 -7.25 -0.675758 -7.26 -0.674207 -7.27 -0.672283 -7.28 -0.670123 -7.29 -0.667832 -7.3 -0.665481 -7.31 -0.663104 -7.32 -0.660693 -7.33 -0.658208 -7.34 -0.655583 -7.35 -0.65273 -7.36 -0.649544 -7.37 -0.645912 -7.38 -0.64172 -7.39 -0.636857 -7.4 -0.631222 -7.41 -0.624658 -7.42 -0.617159 -7.43 -0.608681 -7.44 -0.599204 -7.45 -0.588727 -7.46 -0.577271 -7.47 -0.564874 -7.48 -0.551589 -7.49 -0.537485 -7.5 -0.522635 -7.51 -0.507122 -7.52 -0.491 -7.53 -0.474385 -7.54 -0.457369 -7.55 -0.440031 -7.56 -0.422447 -7.57 -0.40469 -7.58 -0.386829 -7.59 -0.368933 -7.6 -0.351069 -7.61 -0.333304 -7.62 -0.315709 -7.63 -0.29837 -7.64 -0.281368 -7.65 -0.264772 -7.66 -0.248662 -7.67 -0.233118 -7.68 -0.218219 -7.69 -0.204038 -7.7 -0.190641 -7.71 -0.178086 -7.72 -0.166417 -7.73 -0.155663 -7.74 -0.14586 -7.75 -0.13702 -7.76 -0.129067 -7.77 -0.12195 -7.78 -0.1156 -7.79 -0.109932 -7.8 -0.104846 -7.81 -0.100228 -7.82 -0.0959576 -7.83 -0.0919098 -7.84 -0.0879575 -7.85 -0.0839745 -7.86 -0.0798243 -7.87 -0.0754008 -7.88 -0.0706054 -7.89 -0.0653512 -7.9 -0.0595635 -7.91 -0.0531793 -7.92 -0.0461469 -7.93 -0.0384243 -7.94 -0.0299776 -7.95 -0.0207795 -7.96 -0.0108074 -7.97 1.4324e-05 -7.98 0.011652 -7.99 0.0241148 -8 0.0374133 -8.01 0.051554 -8.02 0.066537 -8.03 0.0823533 -8.04 0.0989818 -8.05 0.116386 -8.06 0.134509 -8.07 0.153275 -8.08 0.1726 -8.09 0.192323 -8.1 0.212269 -8.11 0.232246 -8.12 0.252039 -8.13 0.271411 -8.14 0.290107 -8.15 0.307862 -8.16 0.324412 -8.17 0.339495 -8.18 0.352866 -8.19 0.364223 -8.2 0.373363 -8.21 0.380224 -8.22 0.384718 -8.23 0.386815 -8.24 0.386544 -8.25 0.383992 -8.26 0.379308 -8.27 0.372694 -8.28 0.364404 -8.29 0.354736 -8.3 0.344005 -8.31 0.332574 -8.32 0.320862 -8.33 0.309229 -8.34 0.298017 -8.35 0.287542 -8.36 0.278082 -8.37 0.269868 -8.38 0.263078 -8.39 0.257834 -8.4 0.254199 -8.41 0.252187 -8.42 0.251838 -8.43 0.252931 -8.44 0.255316 -8.45 0.258809 -8.46 0.263206 -8.47 0.26829 -8.48 0.273841 -8.49 0.279646 -8.5 0.285509 -8.51 0.291255 -8.52 0.296735 -8.53 0.301804 -8.54 0.306396 -8.55 0.310466 -8.56 0.313995 -8.57 0.316986 -8.58 0.319459 -8.59 0.321447 -8.6 0.322984 -8.61 0.324104 -8.62 0.32483 -8.63 0.325173 -8.64 0.325104 -8.65 0.324598 -8.66 0.323613 -8.67 0.322076 -8.68 0.319898 -8.69 0.316979 -8.7 0.313213 -8.71 0.308498 -8.72 0.302737 -8.73 0.295853 -8.74 0.287789 -8.75 0.27848 -8.76 0.26793 -8.77 0.256243 -8.78 0.243514 -8.79 0.229877 -8.8 0.215503 -8.81 0.200591 -8.82 0.185371 -8.83 0.170087 -8.84 0.154993 -8.85 0.140342 -8.86 0.126393 -8.87 0.113426 -8.88 0.101587 -8.89 0.0910259 -8.9 0.0818508 -8.91 0.0741216 -8.92 0.0678485 -8.93 0.0629928 -8.94 0.0594682 -8.95 0.0571451 -8.96 0.0558558 -8.97 0.0554028 -8.98 0.0555921 -8.99 0.0561267 -9 0.0567672 -9.01 0.0572795 -9.02 0.0574434 -9.03 0.0570594 -9.04 0.0559545 -9.05 0.0539866 -9.06 0.0510472 -9.07 0.0470627 -9.08 0.0419941 -9.09 0.0357703 -9.1 0.0284698 -9.11 0.0201625 -9.12 0.0109218 -9.13 0.000835564 -9.14 -0.00999868 -9.15 -0.021479 -9.16 -0.0335036 -9.17 -0.0459744 -9.18 -0.0588001 -9.19 -0.0718986 -9.2 -0.0852037 -9.21 -0.0986458 -9.22 -0.112169 -9.23 -0.12573 -9.24 -0.139293 -9.25 -0.152826 -9.26 -0.166299 -9.27 -0.179679 -9.28 -0.192936 -9.29 -0.20603 -9.3 -0.218921 -9.31 -0.231552 -9.32 -0.243861 -9.33 -0.255804 -9.34 -0.26732 -9.35 -0.278349 -9.36 -0.288833 -9.37 -0.298715 -9.38 -0.307944 -9.39 -0.316476 -9.4 -0.324274 -9.41 -0.331312 -9.42 -0.337563 -9.43 -0.342979 -9.44 -0.347613 -9.45 -0.351475 -9.46 -0.354583 -9.47 -0.356958 -9.48 -0.358626 -9.49 -0.35961 -9.5 -0.359935 -9.51 -0.359622 -9.52 -0.358688 -9.53 -0.357146 -9.54 -0.354959 -9.55 -0.352171 -9.56 -0.34878 -9.57 -0.344781 -9.58 -0.340165 -9.59 -0.334923 -9.6 -0.329049 -9.61 -0.322538 -9.62 -0.315391 -9.63 -0.307611 -9.64 -0.299212 -9.65 -0.29018 -9.66 -0.280563 -9.67 -0.270405 -9.68 -0.259743 -9.69 -0.248616 -9.7 -0.237067 -9.71 -0.225136 -9.72 -0.212862 -9.73 -0.200281 -9.74 -0.187423 -9.75 -0.174311 -9.76 -0.160954 -9.77 -0.14736 -9.78 -0.133537 -9.79 -0.119478 -9.8 -0.105169 -9.81 -0.0905918 -9.82 -0.075724 -9.83 -0.0605421 -9.84 -0.0450219 -9.85 -0.0291406 -9.86 -0.012877 -9.87 0.00379658 -9.88 0.0209077 -9.89 0.0384463 -9.9 0.0564207 -9.91 0.0748373 -9.92 0.0937015 -9.93 0.113019 -9.94 0.132799 -9.95 0.153049 -9.96 0.173783 -9.97 0.195018 -9.98 0.216777 -9.99 0.239114 -10 0.262015 -10.01 0.285496 -10.02 0.309568 -10.03 0.33423 -10.04 0.359467 -10.05 0.385244 -10.06 0.411504 -10.07 0.438161 -10.08 0.4651 -10.09 0.492172 -10.1 0.519175 -10.11 0.545873 -10.12 0.57201 -10.13 0.597299 -10.14 0.621428 -10.15 0.644066 -10.16 0.664869 -10.17 0.683493 -10.18 0.699594 -10.19 0.712845 -10.2 0.722943 -10.21 0.729427 -10.22 0.732143 -10.23 0.731 -10.24 0.725877 -10.25 0.71671 -10.26 0.703494 -10.27 0.686281 -10.28 0.66518 -10.29 0.640351 -10.3 0.612003 -10.31 0.580382 -10.32 0.545673 -10.33 0.508197 -10.34 0.468392 -10.35 0.426582 -10.36 0.383085 -10.37 0.338208 -10.38 0.292245 -10.39 0.245466 -10.4 0.198118 -10.41 0.150424 -10.42 0.102581 -10.43 0.0547676 -10.44 0.00715589 -10.45 -0.040122 -10.46 -0.0869436 -10.47 -0.133193 -10.48 -0.178758 -10.49 -0.223524 -10.5 -0.267373 -10.51 -0.310181 -10.52 -0.351816 -10.53 -0.392137 -10.54 -0.430994 -10.55 -0.468114 -10.56 -0.503455 -10.57 -0.536871 -10.58 -0.568227 -10.59 -0.5974 -10.6 -0.624289 -10.61 -0.648813 -10.62 -0.670918 -10.63 -0.690579 -10.64 -0.7078 -10.65 -0.722615 -10.66 -0.734945 -10.67 -0.745006 -10.68 -0.752942 -10.69 -0.758884 -10.7 -0.762971 -10.71 -0.765352 -10.72 -0.766171 -10.73 -0.765566 -10.74 -0.763666 -10.75 -0.760582 -10.76 -0.756407 -10.77 -0.751169 -10.78 -0.744938 -10.79 -0.737772 -10.8 -0.729678 -10.81 -0.720648 -10.82 -0.710665 -10.83 -0.699702 -10.84 -0.687732 -10.85 -0.674729 -10.86 -0.660673 -10.87 -0.645557 -10.88 -0.629353 -10.89 -0.612067 -10.9 -0.593786 -10.91 -0.574562 -10.92 -0.554461 -10.93 -0.533559 -10.94 -0.511939 -10.95 -0.489688 -10.96 -0.466891 -10.97 -0.44363 -10.98 -0.419973 -10.99 -0.395978 -11 -0.371677 -11.01 -0.347115 -11.02 -0.322303 -11.03 -0.297235 -11.04 -0.271892 -11.05 -0.246249 -11.06 -0.220273 -11.07 -0.193932 -11.08 -0.167199 -11.09 -0.140055 -11.1 -0.112495 -11.11 -0.0845068 -11.12 -0.0561584 -11.13 -0.027512 -11.14 0.00134747 -11.15 0.0303133 -11.16 0.0592592 -11.17 0.0880424 -11.18 0.116509 -11.19 0.144499 -11.2 0.171853 -11.21 0.198415 -11.22 0.223982 -11.23 0.248458 -11.24 0.271759 -11.25 0.293813 -11.26 0.314572 -11.27 0.334019 -11.28 0.352159 -11.29 0.369027 -11.3 0.384673 -11.31 0.399166 -11.32 0.412585 -11.33 0.424975 -11.34 0.436435 -11.35 0.447071 -11.36 0.456945 -11.37 0.466102 -11.38 0.474568 -11.39 0.482351 -11.4 0.48944 -11.41 0.495806 -11.42 0.501405 -11.43 0.506184 -11.44 0.51006 -11.45 0.512948 -11.46 0.514839 -11.47 0.515695 -11.48 0.515491 -11.49 0.514223 -11.5 0.511907 -11.51 0.508581 -11.52 0.504302 -11.53 0.499145 -11.54 0.493201 -11.55 0.48656 -11.56 0.479298 -11.57 0.471551 -11.58 0.463403 -11.59 0.454914 -11.6 0.446124 -11.61 0.437042 -11.62 0.427649 -11.63 0.417895 -11.64 0.407699 -11.65 0.396955 -11.66 0.385536 -11.67 0.373236 -11.68 0.359953 -11.69 0.345553 -11.7 0.329915 -11.71 0.312947 -11.72 0.29459 -11.73 0.274829 -11.74 0.253699 -11.75 0.231286 -11.76 0.207733 -11.77 0.183235 -11.78 0.158011 -11.79 0.132398 -11.8 0.106733 -11.81 0.0813574 -11.82 0.0566192 -11.83 0.0328585 -11.84 0.0103954 -11.85 -0.0104835 -11.86 -0.0295358 -11.87 -0.0465733 -11.88 -0.061469 -11.89 -0.0740796 -11.9 -0.0844157 -11.91 -0.0926447 -11.92 -0.098907 -11.93 -0.103393 -11.94 -0.106333 -11.95 -0.107983 -11.96 -0.108611 -11.97 -0.108486 -11.98 -0.107859 -11.99 -0.106956 -12 -0.105963 -12.01 -0.105027 -12.02 -0.104224 -12.03 -0.103569 -12.04 -0.103023 -12.05 -0.102491 -12.06 -0.101835 -12.07 -0.100884 -12.08 -0.0994386 -12.09 -0.0972924 -12.1 -0.0942401 -12.11 -0.0900864 -12.12 -0.0845802 -12.13 -0.0776902 -12.14 -0.0693571 -12.15 -0.0595779 -12.16 -0.0484085 -12.17 -0.0359627 -12.18 -0.0224085 -12.19 -0.00796127 -12.2 0.00712637 -12.21 0.0225757 -12.22 0.0380951 -12.23 0.053362 -12.24 0.0680959 -12.25 0.0820604 -12.26 0.0950592 -12.27 0.106947 -12.28 0.117639 -12.29 0.127107 -12.3 0.135388 -12.31 0.142574 -12.32 0.148812 -12.33 0.154287 -12.34 0.159205 -12.35 0.163834 -12.36 0.168429 -12.37 0.173216 -12.38 0.178391 -12.39 0.184118 -12.4 0.190506 -12.41 0.197614 -12.42 0.205438 -12.43 0.213916 -12.44 0.222925 -12.45 0.232296 -12.46 0.241785 -12.47 0.251118 -12.48 0.260019 -12.49 0.268204 -12.5 0.275398 -12.51 0.281349 -12.52 0.285836 -12.53 0.288684 -12.54 0.289769 -12.55 0.289022 -12.56 0.286404 -12.57 0.281899 -12.58 0.275726 -12.59 0.268043 -12.6 0.259045 -12.61 0.248949 -12.62 0.237987 -12.63 0.226389 -12.64 0.214375 -12.65 0.202139 -12.66 0.189843 -12.67 0.177608 -12.68 0.165519 -12.69 0.153586 -12.7 0.141775 -12.71 0.130004 -12.72 0.118156 -12.73 0.106077 -12.74 0.0935946 -12.75 0.0805212 -12.76 0.06667 -12.77 0.0518634 -12.78 0.0359441 -12.79 0.0187036 -12.8 0.000103478 -12.81 -0.0198776 -12.82 -0.0412351 -12.83 -0.0639187 -12.84 -0.0878345 -12.85 -0.112849 -12.86 -0.138795 -12.87 -0.165478 -12.88 -0.192688 -12.89 -0.220202 -12.9 -0.247792 -12.91 -0.275223 -12.92 -0.302296 -12.93 -0.328838 -12.94 -0.354701 -12.95 -0.379764 -12.96 -0.403936 -12.97 -0.427154 -12.98 -0.449379 -12.99 -0.470594 -13 -0.490798 -13.01 -0.509971 -13.02 -0.528109 -13.03 -0.545272 -13.04 -0.561463 -13.05 -0.576675 -13.06 -0.590889 -13.07 -0.604068 -13.08 -0.61616 -13.09 -0.627101 -13.1 -0.636812 -13.11 -0.645208 -13.12 -0.652183 -13.13 -0.657564 -13.14 -0.661362 -13.15 -0.663512 -13.16 -0.663964 -13.17 -0.662689 -13.18 -0.659684 -13.19 -0.654967 -13.2 -0.648587 -13.21 -0.640614 -13.22 -0.631142 -13.23 -0.620286 -13.24 -0.608096 -13.25 -0.594811 -13.26 -0.580587 -13.27 -0.565575 -13.28 -0.549928 -13.29 -0.533787 -13.3 -0.517287 -13.31 -0.500551 -13.32 -0.483689 -13.33 -0.466795 -13.34 -0.449953 -13.35 -0.433242 -13.36 -0.41672 -13.37 -0.400434 -13.38 -0.384423 -13.39 -0.368724 -13.4 -0.353369 -13.41 -0.338388 -13.42 -0.323807 -13.43 -0.30965 -13.44 -0.295936 -13.45 -0.28268 -13.46 -0.269906 -13.47 -0.257606 -13.48 -0.245743 -13.49 -0.234282 -13.5 -0.223166 -13.51 -0.212323 -13.52 -0.201659 -13.53 -0.191059 -13.54 -0.180394 -13.55 -0.169516 -13.56 -0.158265 -13.57 -0.146461 -13.58 -0.133898 -13.59 -0.120446 -13.6 -0.105953 -13.61 -0.0902876 -13.62 -0.07334 -13.63 -0.0550287 -13.64 -0.0353036 -13.65 -0.0141482 -13.66 0.00841948 -13.67 0.0323473 -13.68 0.0575597 -13.69 0.0840044 -13.7 0.111455 -13.71 0.139755 -13.72 0.168737 -13.73 0.198231 -13.74 0.228069 -13.75 0.258091 -13.76 0.28815 -13.77 0.318115 -13.78 0.347874 -13.79 0.377335 -13.8 0.406392 -13.81 0.435005 -13.82 0.463127 -13.83 0.490715 -13.84 0.517723 -13.85 0.544095 -13.86 0.569763 -13.87 0.594638 -13.88 0.618603 -13.89 0.641518 -13.9 0.663209 -13.91 0.683391 -13.92 0.701852 -13.93 0.718376 -13.94 0.732698 -13.95 0.744549 -13.96 0.753667 -13.97 0.759806 -13.98 0.762745 -13.99 0.762304 -14 0.758349 -14.01 0.750801 -14.02 0.739517 -14.03 0.724537 -14.04 0.706135 -14.05 0.684503 -14.06 0.659889 -14.07 0.632597 -14.08 0.602969 -14.09 0.571378 -14.1 0.538216 -14.11 0.503876 -14.12 0.468744 -14.13 0.43318 -14.14 0.397535 -14.15 0.362105 -14.16 0.327114 -14.17 0.292729 -14.18 0.259059 -14.19 0.226161 -14.2 0.194038 -14.21 0.162655 -14.22 0.13194 -14.23 0.101802 -14.24 0.0721388 -14.25 0.0428723 -14.26 0.0138887 -14.27 -0.0148634 -14.28 -0.0433981 -14.29 -0.0716855 -14.3 -0.0996482 -14.31 -0.127159 -14.32 -0.154045 -14.33 -0.180088 -14.34 -0.205036 -14.35 -0.22861 -14.36 -0.250394 -14.37 -0.27015 -14.38 -0.287615 -14.39 -0.302532 -14.4 -0.314677 -14.41 -0.323872 -14.42 -0.329993 -14.43 -0.332972 -14.44 -0.332804 -14.45 -0.329542 -14.46 -0.323296 -14.47 -0.314108 -14.48 -0.302254 -14.49 -0.288061 -14.5 -0.271793 -14.51 -0.253726 -14.52 -0.234132 -14.53 -0.213271 -14.54 -0.191383 -14.55 -0.168682 -14.56 -0.145345 -14.57 -0.121515 -14.58 -0.0972923 -14.59 -0.0727474 -14.6 -0.0479358 -14.61 -0.0228731 -14.62 0.00244032 -14.63 0.0280105 -14.64 0.0538422 -14.65 0.07993 -14.66 0.106252 -14.67 0.132763 -14.68 0.15939 -14.69 0.186031 -14.7 0.212534 -14.71 0.238734 -14.72 0.264444 -14.73 0.289459 -14.74 0.313563 -14.75 0.336539 -14.76 0.358173 -14.77 0.378268 -14.78 0.396645 -14.79 0.413154 -14.8 0.427675 -14.81 0.439965 -14.82 0.450126 -14.83 0.458152 -14.84 0.464064 -14.85 0.467906 -14.86 0.469744 -14.87 0.469653 -14.88 0.467713 -14.89 0.464 -14.9 0.458579 -14.91 0.451501 -14.92 0.442699 -14.93 0.432243 -14.94 0.420138 -14.95 0.40634 -14.96 0.39079 -14.97 0.373413 -14.98 0.354134 -14.99 0.33288 -15 0.309592 -15.01 0.284232 -15.02 0.256792 -15.03 0.227221 -15.04 0.195619 -15.05 0.162186 -15.06 0.1271 -15.07 0.0905823 -15.08 0.0529009 -15.09 0.0143571 -15.1 -0.0247195 -15.11 -0.0639822 -15.12 -0.103078 -15.13 -0.141658 -15.14 -0.179363 -15.15 -0.215836 -15.16 -0.250865 -15.17 -0.284241 -15.18 -0.315808 -15.19 -0.345465 -15.2 -0.373166 -15.21 -0.398916 -15.22 -0.42277 -15.23 -0.444819 -15.24 -0.465188 -15.25 -0.484007 -15.26 -0.50136 -15.27 -0.517493 -15.28 -0.532538 -15.29 -0.546596 -15.3 -0.55974 -15.31 -0.572002 -15.32 -0.583372 -15.33 -0.593801 -15.34 -0.6032 -15.35 -0.611446 -15.36 -0.618389 -15.37 -0.623749 -15.38 -0.627429 -15.39 -0.62927 -15.4 -0.629121 -15.41 -0.626855 -15.42 -0.622384 -15.43 -0.615661 -15.44 -0.606686 -15.45 -0.59551 -15.46 -0.582234 -15.47 -0.567006 -15.48 -0.549934 -15.49 -0.531319 -15.5 -0.511454 -15.51 -0.490604 -15.52 -0.469036 -15.53 -0.447008 -15.54 -0.424758 -15.55 -0.402496 -15.56 -0.380396 -15.57 -0.35859 -15.58 -0.337166 -15.59 -0.316184 -15.6 -0.29564 -15.61 -0.275475 -15.62 -0.255611 -15.63 -0.23595 -15.64 -0.21638 -15.65 -0.196785 -15.66 -0.177053 -15.67 -0.157086 -15.68 -0.136807 -15.69 -0.11617 -15.7 -0.095149 -15.71 -0.0737562 -15.72 -0.0520715 -15.73 -0.0301868 -15.74 -0.00822149 -15.75 0.0136824 -15.76 0.0353678 -15.77 0.0566697 -15.78 0.0774233 -15.79 0.0974717 -15.8 0.116672 -15.81 0.134899 -15.82 0.151978 -15.83 0.167918 -15.84 0.182685 -15.85 0.196274 -15.86 0.208705 -15.87 0.220021 -15.88 0.23028 -15.89 0.239552 -15.9 0.247911 -15.91 0.255429 -15.92 0.262174 -15.93 0.268157 -15.94 0.273455 -15.95 0.278097 -15.96 0.282083 -15.97 0.2854 -15.98 0.288019 -15.99 0.289901 -16 0.291001 -16.01 0.291276 -16.02 0.290684 -16.03 0.289195 -16.04 0.286749 -16.05 0.283368 -16.06 0.279101 -16.07 0.273994 -16.08 0.268111 -16.09 0.261532 -16.1 0.254353 -16.11 0.246675 -16.12 0.238603 -16.13 0.230238 -16.14 0.221673 -16.15 0.212982 -16.16 0.204225 -16.17 0.195439 -16.18 0.186627 -16.19 0.177771 -16.2 0.168827 -16.21 0.159734 -16.22 0.150418 -16.23 0.140797 -16.24 0.130788 -16.25 0.120317 -16.26 0.109318 -16.27 0.0977294 -16.28 0.0855838 -16.29 0.0729155 -16.3 0.0597955 -16.31 0.0463314 -16.32 0.0326648 -16.33 0.018967 -16.34 0.00543241 -16.35 -0.00773025 -16.36 -0.0203074 -16.37 -0.0320913 -16.38 -0.042804 -16.39 -0.0523506 -16.4 -0.0606124 -16.41 -0.0675165 -16.42 -0.0730407 -16.43 -0.0772157 -16.44 -0.0801247 -16.45 -0.0818994 -16.46 -0.0827141 -16.47 -0.0827762 -16.48 -0.0823151 -16.49 -0.0815667 -16.5 -0.0807937 -16.51 -0.080209 -16.52 -0.0799857 -16.53 -0.08025 -16.54 -0.0810714 -16.55 -0.0824567 -16.56 -0.0843463 -16.57 -0.0866153 -16.58 -0.0890774 -16.59 -0.0914926 -16.6 -0.0935506 -16.61 -0.0949124 -16.62 -0.0952677 -16.63 -0.0943048 -16.64 -0.0917401 -16.65 -0.0873353 -16.66 -0.0809134 -16.67 -0.072372 -16.68 -0.0616926 -16.69 -0.0489475 -16.7 -0.0343011 -16.71 -0.0179722 -16.72 -0.00031035 -16.73 0.0181861 -16.74 0.0370443 -16.75 0.0557572 -16.76 0.0738041 -16.77 0.0906715 -16.78 0.105874 -16.79 0.118976 -16.8 0.129605 -16.81 0.137471 -16.82 0.142339 -16.83 0.143946 -16.84 0.1425 -16.85 0.138113 -16.86 0.130984 -16.87 0.121385 -16.88 0.109647 -16.89 0.096142 -16.9 0.0812613 -16.91 0.0653983 -16.92 0.0489281 -16.93 0.0321902 -16.94 0.0154919 -16.95 -0.000934485 -16.96 -0.0169447 -16.97 -0.0324661 -16.98 -0.0474953 -16.99 -0.0620906 -17 -0.0763618 -17.01 -0.090456 -17.02 -0.104541 -17.03 -0.118789 -17.04 -0.133357 -17.05 -0.148398 -17.06 -0.163974 -17.07 -0.180078 -17.08 -0.196644 -17.09 -0.213527 -17.1 -0.23051 -17.11 -0.247304 -17.12 -0.263559 -17.13 -0.278879 -17.14 -0.292833 -17.15 -0.304981 -17.16 -0.314784 -17.17 -0.321803 -17.18 -0.325776 -17.19 -0.326424 -17.2 -0.323554 -17.21 -0.317066 -17.22 -0.306961 -17.23 -0.293339 -17.24 -0.276401 -17.25 -0.256435 -17.26 -0.233806 -17.27 -0.208903 -17.28 -0.182188 -17.29 -0.154267 -17.3 -0.125628 -17.31 -0.0967304 -17.32 -0.0679916 -17.33 -0.0397668 -17.34 -0.0123375 -17.35 0.0140965 -17.36 0.0394213 -17.37 0.0636081 -17.38 0.0867012 -17.39 0.108775 -17.4 0.130091 -17.41 0.150867 -17.42 0.171342 -17.43 0.191748 -17.44 0.212299 -17.45 0.233164 -17.46 0.254461 -17.47 0.276238 -17.48 0.298471 -17.49 0.321055 -17.5 0.343801 -17.51 0.366419 -17.52 0.388578 -17.53 0.409907 -17.54 0.430004 -17.55 0.448458 -17.56 0.464868 -17.57 0.478861 -17.58 0.490112 -17.59 0.498359 -17.6 0.503416 -17.61 0.505015 -17.62 0.503235 -17.63 0.498255 -17.64 0.490255 -17.65 0.479489 -17.66 0.466274 -17.67 0.450975 -17.68 0.433984 -17.69 0.415705 -17.7 0.396536 -17.71 0.376846 -17.72 0.35697 -17.73 0.337205 -17.74 0.317756 -17.75 0.298751 -17.76 0.280245 -17.77 0.262226 -17.78 0.244622 -17.79 0.227306 -17.8 0.210117 -17.81 0.192869 -17.82 0.17537 -17.83 0.157424 -17.84 0.138839 -17.85 0.119529 -17.86 0.0994338 -17.87 0.0785537 -17.88 0.0569512 -17.89 0.0347531 -17.9 0.0121463 -17.91 -0.0106287 -17.92 -0.033288 -17.93 -0.0555161 -17.94 -0.0769782 -17.95 -0.0972364 -17.96 -0.116034 -17.97 -0.133086 -17.98 -0.148151 -17.99 -0.161042 -18 -0.171635 -18.01 -0.179869 -18.02 -0.185752 -18.03 -0.189356 -18.04 -0.190812 -18.05 -0.190301 -18.06 -0.187951 -18.07 -0.184115 -18.08 -0.179078 -18.09 -0.1731 -18.1 -0.166424 -18.11 -0.159266 -18.12 -0.151807 -18.13 -0.144185 -18.14 -0.13649 -18.15 -0.128768 -18.16 -0.121016 -18.17 -0.113186 -18.18 -0.105193 -18.19 -0.0969371 -18.2 -0.088305 -18.21 -0.0791834 -18.22 -0.0694707 -18.23 -0.0590869 -18.24 -0.0479831 -18.25 -0.036148 -18.26 -0.0236125 -18.27 -0.0104526 -18.28 0.00322193 -18.29 0.0172363 -18.3 0.0313659 -18.31 0.0453827 -18.32 0.0590429 -18.33 0.0720968 -18.34 0.0842998 -18.35 0.0954229 -18.36 0.105262 -18.37 0.113646 -18.38 0.120443 -18.39 0.125542 -18.4 0.128817 -18.41 0.130379 -18.42 0.13028 -18.43 0.128601 -18.44 0.125452 -18.45 0.120959 -18.46 0.115258 -18.47 0.108482 -18.48 0.100755 -18.49 0.0921838 -18.5 0.0828486 -18.51 0.072751 -18.52 0.0619584 -18.53 0.050455 -18.54 0.0381944 -18.55 0.0251063 -18.56 0.0111029 -18.57 -0.00391297 -18.58 -0.0200387 -18.59 -0.0373628 -18.6 -0.0559555 -18.61 -0.0758601 -18.62 -0.0971597 -18.63 -0.119765 -18.64 -0.143568 -18.65 -0.168441 -18.66 -0.194212 -18.67 -0.220671 -18.68 -0.247574 -18.69 -0.274649 -18.7 -0.301611 -18.71 -0.328165 -18.72 -0.354022 -18.73 -0.378856 -18.74 -0.402398 -18.75 -0.424473 -18.76 -0.444908 -18.77 -0.463578 -18.78 -0.480401 -18.79 -0.495346 -18.8 -0.508423 -18.81 -0.51968 -18.82 -0.5292 -18.83 -0.53709 -18.84 -0.543439 -18.85 -0.548351 -18.86 -0.552025 -18.87 -0.55457 -18.88 -0.556074 -18.89 -0.556597 -18.9 -0.556168 -18.91 -0.55478 -18.92 -0.552395 -18.93 -0.548943 -18.94 -0.544326 -18.95 -0.538414 -18.96 -0.530982 -18.97 -0.521979 -18.98 -0.511275 -18.99 -0.498752 -19 -0.484316 -19.01 -0.467904 -19.02 -0.449488 -19.03 -0.42908 -19.04 -0.406734 -19.05 -0.382546 -19.06 -0.356655 -19.07 -0.329144 -19.08 -0.300333 -19.09 -0.270469 -19.1 -0.239803 -19.11 -0.208594 -19.12 -0.177101 -19.13 -0.145572 -19.14 -0.11424 -19.15 -0.0833156 -19.16 -0.0529813 -19.17 -0.0233893 -19.18 0.00529046 -19.19 0.0329909 -19.2 0.0596804 -19.21 0.0853328 -19.22 0.109944 -19.23 0.133525 -19.24 0.156097 -19.25 0.177685 -19.26 0.198313 -19.27 0.217996 -19.28 0.236736 -19.29 0.254487 -19.3 0.27121 -19.31 0.286891 -19.32 0.30146 -19.33 0.314832 -19.34 0.326911 -19.35 0.337591 -19.36 0.346765 -19.37 0.354329 -19.38 0.360186 -19.39 0.364253 -19.4 0.366429 -19.41 0.366603 -19.42 0.364869 -19.43 0.361246 -19.44 0.355783 -19.45 0.348558 -19.46 0.339676 -19.47 0.329269 -19.48 0.31749 -19.49 0.30451 -19.5 0.290512 -19.51 0.275689 -19.52 0.260211 -19.53 0.244331 -19.54 0.228242 -19.55 0.212123 -19.56 0.196147 -19.57 0.18047 -19.58 0.165234 -19.59 0.150565 -19.6 0.136576 -19.61 0.123361 -19.62 0.111006 -19.63 0.0996443 -19.64 0.0892923 -19.65 0.07999 -19.66 0.0717814 -19.67 0.064705 -19.68 0.0587946 -19.69 0.0540798 -19.7 0.0505863 -19.71 0.0483357 -19.72 0.0473448 -19.73 0.047625 -19.74 0.0492418 -19.75 0.0521664 -19.76 0.0563498 -19.77 0.0617695 -19.78 0.0683922 -19.79 0.0761738 -19.8 0.0850593 -19.81 0.0949829 -19.82 0.105869 -19.83 0.117631 -19.84 0.130176 -19.85 0.14342 -19.86 0.157254 -19.87 0.171537 -19.88 0.186155 -19.89 0.200993 -19.9 0.215935 -19.91 0.230869 -19.92 0.24568 -19.93 0.260258 -19.94 0.274493 -19.95 0.288277 -19.96 0.301492 -19.97 0.313994 -19.98 0.325713 -19.99 0.336543 -20 0.346382 -20.01 0.355125 -20.02 0.362669 -20.03 0.368916 -20.04 0.373767 -20.05 0.377132 -20.06 0.378926 -20.07 0.379072 -20.08 0.377374 -20.09 0.373909 -20.1 0.368646 -20.11 0.361574 -20.12 0.352701 -20.13 0.342058 -20.14 0.329699 -20.15 0.315701 -20.16 0.300164 -20.17 0.283208 -20.18 0.264976 -20.19 0.245572 -20.2 0.225234 -20.21 0.204167 -20.22 0.182567 -20.23 0.160631 -20.24 0.138556 -20.25 0.116534 -20.26 0.0947464 -20.27 0.0733648 -20.28 0.0525435 -20.29 0.0324195 -20.3 0.0131494 -20.31 -0.00517183 -20.32 -0.0225006 -20.33 -0.0387874 -20.34 -0.0540031 -20.35 -0.0681371 -20.36 -0.0811954 -20.37 -0.0931986 -20.38 -0.104179 -20.39 -0.114177 -20.4 -0.12324 -20.41 -0.131397 -20.42 -0.138685 -20.43 -0.145197 -20.44 -0.150978 -20.45 -0.156069 -20.46 -0.160506 -20.47 -0.164317 -20.48 -0.167524 -20.49 -0.170145 -20.5 -0.172192 -20.51 -0.173673 -20.52 -0.174591 -20.53 -0.174923 -20.54 -0.174714 -20.55 -0.173977 -20.56 -0.172731 -20.57 -0.171 -20.58 -0.168818 -20.59 -0.166226 -20.6 -0.163274 -20.61 -0.160022 -20.62 -0.156536 -20.63 -0.152892 -20.64 -0.149167 -20.65 -0.145455 -20.66 -0.141841 -20.67 -0.138404 -20.68 -0.135221 -20.69 -0.132359 -20.7 -0.129877 -20.71 -0.127817 -20.72 -0.12621 -20.73 -0.125068 -20.74 -0.124387 -20.75 -0.124164 -20.76 -0.12434 -20.77 -0.124843 -20.78 -0.125601 -20.79 -0.126528 -20.8 -0.127529 -20.81 -0.128508 -20.82 -0.129366 -20.83 -0.130012 -20.84 -0.130363 -20.85 -0.130349 -20.86 -0.129901 -20.87 -0.128989 -20.88 -0.127628 -20.89 -0.125843 -20.9 -0.123684 -20.91 -0.121229 -20.92 -0.118577 -20.93 -0.115849 -20.94 -0.113182 -20.95 -0.110724 -20.96 -0.108627 -20.97 -0.107056 -20.98 -0.106186 -20.99 -0.10611 -21 -0.106928 -21.01 -0.108707 -21.02 -0.111482 -21.03 -0.11525 -21.04 -0.119967 -21.05 -0.125549 -21.06 -0.131871 -21.07 -0.138771 -21.08 -0.146058 -21.09 -0.153501 -21.1 -0.160834 -21.11 -0.167804 -21.12 -0.174161 -21.13 -0.179661 -21.14 -0.184078 -21.15 -0.187216 -21.16 -0.188907 -21.17 -0.189028 -21.18 -0.187496 -21.19 -0.184277 -21.2 -0.179279 -21.21 -0.172665 -21.22 -0.164561 -21.23 -0.155115 -21.24 -0.144503 -21.25 -0.132924 -21.26 -0.120589 -21.27 -0.107713 -21.28 -0.0945053 -21.29 -0.0811629 -21.3 -0.0678603 -21.31 -0.0547603 -21.32 -0.0419808 -21.33 -0.029591 -21.34 -0.0176304 -21.35 -0.00610604 -21.36 0.0050041 -21.37 0.0157452 -21.38 0.0261785 -21.39 0.0363736 -21.4 0.0463997 -21.41 0.0563166 -21.42 0.0661652 -21.43 0.0759609 -21.44 0.0856855 -21.45 0.0952817 -21.46 0.104654 -21.47 0.113668 -21.48 0.122154 -21.49 0.129911 -21.5 0.136715 -21.51 0.142324 -21.52 0.146491 -21.53 0.148942 -21.54 0.149354 -21.55 0.147636 -21.56 0.143635 -21.57 0.137248 -21.58 0.128425 -21.59 0.11718 -21.6 0.103586 -21.61 0.0877812 -21.62 0.0699621 -21.63 0.0503801 -21.64 0.0293318 -21.65 0.00709907 -21.66 -0.0158471 -21.67 -0.0391295 -21.68 -0.0623721 -21.69 -0.0852122 -21.7 -0.107312 -21.71 -0.128368 -21.72 -0.14812 -21.73 -0.166358 -21.74 -0.182923 -21.75 -0.197711 -21.76 -0.210559 -21.77 -0.221557 -21.78 -0.230778 -21.79 -0.238304 -21.8 -0.24424 -21.81 -0.248707 -21.82 -0.251826 -21.83 -0.253715 -21.84 -0.254477 -21.85 -0.254191 -21.86 -0.252909 -21.87 -0.250605 -21.88 -0.247277 -21.89 -0.242901 -21.9 -0.237399 -21.91 -0.23067 -21.92 -0.222598 -21.93 -0.213061 -21.94 -0.20194 -21.95 -0.189132 -21.96 -0.174556 -21.97 -0.158161 -21.98 -0.139886 -21.99 -0.119744 -22 -0.0979152 -22.01 -0.0745473 -22.02 -0.0498366 -22.03 -0.0240263 -22.04 0.00259957 -22.05 0.029724 -22.06 0.057006 -22.07 0.0840911 -22.08 0.110622 -22.09 0.136234 -22.1 0.160513 -22.11 0.183224 -22.12 0.204117 -22.13 0.222988 -22.14 0.239683 -22.15 0.254105 -22.16 0.26621 -22.17 0.276008 -22.18 0.283559 -22.19 0.288967 -22.2 0.292374 -22.21 0.293829 -22.22 0.293669 -22.23 0.292101 -22.24 0.289334 -22.25 0.285565 -22.26 0.280983 -22.27 0.275754 -22.28 0.270025 -22.29 0.263915 -22.3 0.257517 -22.31 0.2509 -22.32 0.2441 -22.33 0.237147 -22.34 0.230048 -22.35 0.222796 -22.36 0.21538 -22.37 0.207786 -22.38 0.200006 -22.39 0.192038 -22.4 0.183891 -22.41 0.175589 -22.42 0.167168 -22.43 0.158683 -22.44 0.150207 -22.45 0.141825 -22.46 0.133626 -22.47 0.125707 -22.48 0.118166 -22.49 0.111099 -22.5 0.104599 -22.51 0.0987472 -22.52 0.0936157 -22.53 0.0892606 -22.54 0.0857422 -22.55 0.0831058 -22.56 0.0813097 -22.57 0.0803363 -22.58 0.0801506 -22.59 0.0807019 -22.6 0.0819249 -22.61 0.083742 -22.62 0.0860655 -22.63 0.0887991 -22.64 0.0918403 -22.65 0.0950831 -22.66 0.098414 -22.67 0.101709 -22.68 0.104858 -22.69 0.107751 -22.7 0.11028 -22.71 0.11234 -22.72 0.11383 -22.73 0.114654 -22.74 0.114719 -22.75 0.11394 -22.76 0.112242 -22.77 0.109485 -22.78 0.105669 -22.79 0.100758 -22.8 0.094725 -22.81 0.0875569 -22.82 0.0792574 -22.83 0.0698478 -22.84 0.0593673 -22.85 0.0478729 -22.86 0.0354384 -22.87 0.022154 -22.88 0.00809095 -22.89 -0.00660229 -22.9 -0.0217821 -22.91 -0.0373174 -22.92 -0.0530754 -22.93 -0.0689251 -22.94 -0.0847404 -22.95 -0.100403 -22.96 -0.115807 -22.97 -0.130856 -22.98 -0.14547 -22.99 -0.159562 -23 -0.173074 -23.01 -0.185988 -23.02 -0.198279 -23.03 -0.209928 -23.04 -0.220924 -23.05 -0.231255 -23.06 -0.24091 -23.07 -0.249875 -23.08 -0.258127 -23.09 -0.265637 -23.1 -0.272348 -23.11 -0.278172 -23.12 -0.283091 -23.13 -0.287033 -23.14 -0.289918 -23.15 -0.291664 -23.16 -0.292189 -23.17 -0.291414 -23.18 -0.289269 -23.19 -0.285694 -23.2 -0.280648 -23.21 -0.274102 -23.22 -0.265952 -23.23 -0.256332 -23.24 -0.245293 -23.25 -0.232907 -23.26 -0.21927 -23.27 -0.204493 -23.28 -0.188704 -23.29 -0.172043 -23.3 -0.154653 -23.31 -0.136681 -23.32 -0.118266 -23.33 -0.0995322 -23.34 -0.0806224 -23.35 -0.0616432 -23.36 -0.0426796 -23.37 -0.0237991 -23.38 -0.00505137 -23.39 0.0135291 -23.4 0.0319205 -23.41 0.0501101 -23.42 0.0680896 -23.43 0.0858504 -23.44 0.103367 -23.45 0.120616 -23.46 0.137564 -23.47 0.154153 -23.48 0.170304 -23.49 0.18592 -23.5 0.200884 -23.51 0.21506 -23.52 0.228302 -23.53 0.240451 -23.54 0.251349 -23.55 0.26079 -23.56 0.268595 -23.57 0.274704 -23.58 0.279019 -23.59 0.281474 -23.6 0.282037 -23.61 0.280718 -23.62 0.277565 -23.63 0.272668 -23.64 0.266156 -23.65 0.258192 -23.66 0.248954 -23.67 0.238631 -23.68 0.227531 -23.69 0.215892 -23.7 0.203951 -23.71 0.191929 -23.72 0.18003 -23.73 0.168429 -23.74 0.157273 -23.75 0.14667 -23.76 0.136691 -23.77 0.127369 -23.78 0.118749 -23.79 0.110741 -23.8 0.103278 -23.81 0.0962729 -23.82 0.0896272 -23.83 0.0832376 -23.84 0.0770036 -23.85 0.0708346 -23.86 0.0646564 -23.87 0.0584156 -23.88 0.0520836 -23.89 0.0456543 -23.9 0.0391607 -23.91 0.0326576 -23.92 0.0262179 -23.93 0.0199295 -23.94 0.0138885 -23.95 0.00819223 -23.96 0.00293198 -23.97 -0.00181432 -23.98 -0.00598887 -23.99 -0.00955967 -24 -0.0125007 -24.01 -0.0148561 -24.02 -0.0167182 -24.03 -0.0181923 -24.04 -0.0194129 -24.05 -0.0205396 -24.06 -0.0217498 -24.07 -0.0232315 -24.08 -0.0251749 -24.09 -0.0277635 -24.1 -0.0311651 -24.11 -0.0355525 -24.12 -0.0410702 -24.13 -0.0477385 -24.14 -0.0555831 -24.15 -0.0645861 -24.16 -0.0746854 -24.17 -0.085777 -24.18 -0.0977193 -24.19 -0.110338 -24.2 -0.123435 -24.21 -0.136792 -24.22 -0.150185 -24.23 -0.163361 -24.24 -0.176108 -24.25 -0.188234 -24.26 -0.199574 -24.27 -0.209991 -24.28 -0.219385 -24.29 -0.22769 -24.3 -0.234876 -24.31 -0.240948 -24.32 -0.245938 -24.33 -0.249905 -24.34 -0.252866 -24.35 -0.254977 -24.36 -0.256336 -24.37 -0.257034 -24.38 -0.257148 -24.39 -0.256743 -24.4 -0.255863 -24.41 -0.254531 -24.42 -0.252748 -24.43 -0.25049 -24.44 -0.247716 -24.45 -0.244332 -24.46 -0.24028 -24.47 -0.235496 -24.48 -0.229904 -24.49 -0.22344 -24.5 -0.21605 -24.51 -0.2077 -24.52 -0.198381 -24.53 -0.18811 -24.54 -0.176933 -24.55 -0.164923 -24.56 -0.152161 -24.57 -0.138787 -24.58 -0.124981 -24.59 -0.110905 -24.6 -0.0967337 -24.61 -0.0826401 -24.62 -0.068794 -24.63 -0.0553537 -24.64 -0.042461 -24.65 -0.0302367 -24.66 -0.0187768 -24.67 -0.00816981 -24.68 0.00151323 -24.69 0.0103079 -24.7 0.0182287 -24.71 0.0253111 -24.72 0.0316074 -24.73 0.0371814 -24.74 0.0421037 -24.75 0.0464463 -24.76 0.0502776 -24.77 0.0536587 -24.78 0.0566369 -24.79 0.0592268 -24.8 0.0614741 -24.81 0.0633824 -24.82 0.064942 -24.83 0.0661323 -24.84 0.066925 -24.85 0.0672882 -24.86 0.0671908 -24.87 0.0666063 -24.88 0.0655177 -24.89 0.0639203 -24.9 0.0617948 -24.91 0.0592019 -24.92 0.0561977 -24.93 0.0528507 -24.94 0.0492457 -24.95 0.0454808 -24.96 0.0416635 -24.97 0.0379063 -24.98 0.0343219 -24.99 0.031018 -25 0.0280925 -25.01 0.0256548 -25.02 0.0237629 -25.03 0.0224437 -25.04 0.0217133 -25.05 0.0215642 -25.06 0.0219662 -25.07 0.0228689 -25.08 0.0242047 -25.09 0.0258931 -25.1 0.0278454 -25.11 0.0299699 -25.12 0.0321775 -25.13 0.0343791 -25.14 0.036505 -25.15 0.0385045 -25.16 0.0403458 -25.17 0.0420168 -25.18 0.0435252 -25.19 0.0448963 -25.2 0.0461711 -25.21 0.0474017 -25.22 0.048647 -25.23 0.0499694 -25.24 0.0514344 -25.25 0.0530806 -25.26 0.054935 -25.27 0.0570046 -25.28 0.059273 -25.29 0.0616985 -25.3 0.0642142 -25.31 0.0667287 -25.32 0.0691293 -25.33 0.0712859 -25.34 0.0730562 -25.35 0.0742428 -25.36 0.0747319 -25.37 0.0743909 -25.38 0.0731058 -25.39 0.0707879 -25.4 0.06738 -25.41 0.0628611 -25.42 0.0572495 -25.43 0.0506045 -25.44 0.0430259 -25.45 0.0346523 -25.46 0.0256317 -25.47 0.0162143 -25.48 0.0066371 -25.49 -0.00285929 -25.5 -0.0120306 -25.51 -0.0206376 -25.52 -0.0284547 -25.53 -0.0352777 -25.54 -0.0409313 -25.55 -0.0452741 -25.56 -0.0482027 -25.57 -0.0495876 -25.58 -0.0494289 -25.59 -0.0477973 -25.6 -0.0447525 -25.61 -0.040384 -25.62 -0.0348051 -25.63 -0.0281458 -25.64 -0.020545 -25.65 -0.0121433 -25.66 -0.00307515 -25.67 0.00653699 -25.68 0.0165988 -25.69 0.0270286 -25.7 0.0377533 -25.71 0.0487448 -25.72 0.0599991 -25.73 0.0715331 -25.74 0.0833804 -25.75 0.0955855 -25.76 0.108197 -25.77 0.121263 -25.78 0.134819 -25.79 0.148892 -25.8 0.163503 -25.81 0.178584 -25.82 0.194064 -25.83 0.209841 -25.84 0.225774 -25.85 0.241691 -25.86 0.25739 -25.87 0.272642 -25.88 0.2872 -25.89 0.300805 -25.9 0.313195 -25.91 0.32399 -25.92 0.333033 -25.93 0.340117 -25.94 0.345061 -25.95 0.347721 -25.96 0.347998 -25.97 0.345841 -25.98 0.341247 -25.99 0.334262 -26 0.324977 -26.01 0.31353 -26.02 0.299995 -26.03 0.28467 -26.04 0.267831 -26.05 0.249727 -26.06 0.230615 -26.07 0.210753 -26.08 0.190388 -26.09 0.169755 -26.1 0.149067 -26.11 0.128515 -26.12 0.10826 -26.13 0.0884569 -26.14 0.0692168 -26.15 0.0505947 -26.16 0.0326372 -26.17 0.0153695 -26.18 -0.00120023 -26.19 -0.0170766 -26.2 -0.032272 -26.21 -0.046802 -26.22 -0.0606816 -26.23 -0.073921 -26.24 -0.0865077 -26.25 -0.0984159 -26.26 -0.10966 -26.27 -0.12021 -26.28 -0.13003 -26.29 -0.139074 -26.3 -0.147294 -26.31 -0.154639 -26.32 -0.161063 -26.33 -0.166526 -26.34 -0.170995 -26.35 -0.174447 -26.36 -0.17682 -26.37 -0.178203 -26.38 -0.178637 -26.39 -0.178183 -26.4 -0.176921 -26.41 -0.174948 -26.42 -0.172379 -26.43 -0.16934 -26.44 -0.165968 -26.45 -0.162403 -26.46 -0.15879 -26.47 -0.155284 -26.48 -0.15202 -26.49 -0.149118 -26.5 -0.146684 -26.51 -0.144806 -26.52 -0.143554 -26.53 -0.142976 -26.54 -0.143102 -26.55 -0.143942 -26.56 -0.145485 -26.57 -0.147705 -26.58 -0.15059 -26.59 -0.154062 -26.6 -0.15804 -26.61 -0.162452 -26.62 -0.167221 -26.63 -0.172272 -26.64 -0.177527 -26.65 -0.182912 -26.66 -0.188359 -26.67 -0.193802 -26.68 -0.19918 -26.69 -0.204432 -26.7 -0.209501 -26.71 -0.214345 -26.72 -0.21892 -26.73 -0.223182 -26.74 -0.227087 -26.75 -0.23059 -26.76 -0.233646 -26.77 -0.236206 -26.78 -0.238219 -26.79 -0.239633 -26.8 -0.24038 -26.81 -0.240375 -26.82 -0.239602 -26.83 -0.238013 -26.84 -0.235564 -26.85 -0.232219 -26.86 -0.22795 -26.87 -0.222741 -26.88 -0.216589 -26.89 -0.209504 -26.9 -0.201511 -26.91 -0.192647 -26.92 -0.182916 -26.93 -0.17245 -26.94 -0.161334 -26.95 -0.149659 -26.96 -0.137528 -26.97 -0.125047 -26.98 -0.112326 -26.99 -0.0994729 -27 -0.0865953 -27.01 -0.0737934 -27.02 -0.0611597 -27.03 -0.0487974 -27.04 -0.0367691 -27.05 -0.0251277 -27.06 -0.0139167 -27.07 -0.0031668 -27.08 0.00710326 -27.09 0.0168853 -27.1 0.0261803 -27.11 0.0349965 -27.12 0.0433473 -27.13 0.0512493 -27.14 0.0587011 -27.15 0.0657288 -27.16 0.0723592 -27.17 0.0786032 -27.18 0.0844677 -27.19 0.0899554 -27.2 0.0950651 -27.21 0.0997926 -27.22 0.104132 -27.23 0.108077 -27.24 0.111621 -27.25 0.114752 -27.26 0.117465 -27.27 0.119789 -27.28 0.121741 -27.29 0.123346 -27.3 0.124639 -27.31 0.12566 -27.32 0.126457 -27.33 0.127085 -27.34 0.1276 -27.35 0.12806 -27.36 0.128522 -27.37 0.129042 -27.38 0.129663 -27.39 0.130414 -27.4 0.131311 -27.41 0.132357 -27.42 0.133536 -27.43 0.134814 -27.44 0.136144 -27.45 0.137459 -27.46 0.138681 -27.47 0.13972 -27.48 0.140449 -27.49 0.140781 -27.5 0.140617 -27.51 0.139862 -27.52 0.138433 -27.53 0.136261 -27.54 0.133294 -27.55 0.129503 -27.56 0.124881 -27.57 0.119444 -27.58 0.113233 -27.59 0.106278 -27.6 0.0987003 -27.61 0.0906202 -27.62 0.0821574 -27.63 0.0734408 -27.64 0.0646037 -27.65 0.0557781 -27.66 0.0470905 -27.67 0.0386569 -27.68 0.0305791 -27.69 0.0229417 -27.7 0.0158324 -27.71 0.00929269 -27.72 0.00332415 -27.73 -0.00207426 -27.74 -0.00692101 -27.75 -0.0112489 -27.76 -0.0151014 -27.77 -0.0185281 -27.78 -0.0215807 -27.79 -0.0243081 -27.8 -0.0267527 -27.81 -0.0289401 -27.82 -0.0308838 -27.83 -0.0325962 -27.84 -0.0340613 -27.85 -0.0352475 -27.86 -0.0361094 -27.87 -0.03659 -27.88 -0.036625 -27.89 -0.0361464 -27.9 -0.0350877 -27.91 -0.0333891 -27.92 -0.0309946 -27.93 -0.0278305 -27.94 -0.0239341 -27.95 -0.0193208 -27.96 -0.0140315 -27.97 -0.00813249 -27.98 -0.00171528 -27.99 0.0051061 -28 0.0121984 -28.01 0.0194134 -28.02 0.0265939 -28.03 0.0335792 -28.04 0.0401768 -28.05 0.0462527 -28.06 0.0516808 -28.07 0.0563549 -28.08 0.0601955 -28.09 0.0631523 -28.1 0.0652061 -28.11 0.0663689 -28.12 0.0666826 -28.13 0.0662161 -28.14 0.0650614 -28.15 0.063304 -28.16 0.0610949 -28.17 0.0585736 -28.18 0.0558642 -28.19 0.0530815 -28.2 0.0503254 -28.21 0.0476764 -28.22 0.0451921 -28.23 0.0429048 -28.24 0.0408214 -28.25 0.038924 -28.26 0.037176 -28.27 0.0355118 -28.28 0.0338532 -28.29 0.0321219 -28.3 0.0302403 -28.31 0.0281385 -28.32 0.0257603 -28.33 0.0230689 -28.34 0.0200514 -28.35 0.0167218 -28.36 0.0131229 -28.37 0.00932394 -28.38 0.00543114 -28.39 0.00158007 -28.4 -0.00208715 -28.41 -0.00541824 -28.42 -0.0082583 -28.43 -0.0104579 -28.44 -0.0118812 -28.45 -0.0124138 -28.46 -0.0119698 -28.47 -0.0104976 -28.48 -0.00797901 -28.49 -0.00438239 -28.5 0.000140031 -28.51 0.00546931 -28.52 0.0114503 -28.53 0.0178974 -28.54 0.0246015 -28.55 0.0313389 -28.56 0.0378803 -28.57 0.0440001 -28.58 0.0494867 -28.59 0.0541505 -28.6 0.0577609 -28.61 0.0602447 -28.62 0.0615405 -28.63 0.0616205 -28.64 0.0605012 -28.65 0.0582409 -28.66 0.054936 -28.67 0.0507148 -28.68 0.0457296 -28.69 0.0401491 -28.7 0.0341482 -28.71 0.0278954 -28.72 0.0215697 -28.73 0.0153135 -28.74 0.00923498 -28.75 0.00340998 -28.76 -0.00212107 -28.77 -0.00735357 -28.78 -0.0123173 -28.79 -0.0170731 -28.8 -0.0217069 -28.81 -0.0263237 -28.82 -0.0310457 -28.83 -0.0360035 -28.84 -0.0412989 -28.85 -0.0470208 -28.86 -0.0532323 -28.87 -0.0599648 -28.88 -0.067213 -28.89 -0.0749323 -28.9 -0.083039 -28.91 -0.091411 -28.92 -0.0998926 -28.93 -0.108295 -28.94 -0.116382 -28.95 -0.123942 -28.96 -0.130759 -28.97 -0.136624 -28.98 -0.14135 -28.99 -0.14478 -29 -0.146791 -29.01 -0.147303 -29.02 -0.146283 -29.03 -0.143745 -29.04 -0.139752 -29.05 -0.134322 -29.06 -0.127716 -29.07 -0.120123 -29.08 -0.111751 -29.09 -0.102823 -29.1 -0.0935646 -29.11 -0.0841975 -29.12 -0.0749261 -29.13 -0.0659314 -29.14 -0.0573638 -29.15 -0.0493375 -29.16 -0.0419669 -29.17 -0.0352573 -29.18 -0.0291876 -29.19 -0.0237116 -29.2 -0.0187531 -29.21 -0.0142135 -29.22 -0.00997855 -29.23 -0.00592744 -29.24 -0.00194072 -29.25 0.00209154 -29.26 0.00626264 -29.27 0.0106544 -29.28 0.0153087 -29.29 0.0202263 -29.3 0.0253848 -29.31 0.0307327 -29.32 0.0361932 -29.33 0.0416691 -29.34 0.0470488 -29.35 0.0522131 -29.36 0.0570431 -29.37 0.0614273 -29.38 0.0652511 -29.39 0.0684209 -29.4 0.0709174 -29.41 0.0727244 -29.42 0.0738561 -29.43 0.0743566 -29.44 0.0742972 -29.45 0.0737724 -29.46 0.0728945 -29.47 0.0717868 -29.48 0.0705764 -29.49 0.0693878 -29.5 0.068347 -29.51 0.0675399 -29.52 0.0670286 -29.53 0.0668452 -29.54 0.0669891 -29.55 0.067426 -29.56 0.0680894 -29.57 0.0688831 -29.58 0.0696864 -29.59 0.07036 -29.6 0.0707532 -29.61 0.0706705 -29.62 0.069984 -29.63 0.0685645 -29.64 0.0663037 -29.65 0.0631222 -29.66 0.0589751 -29.67 0.0538541 -29.68 0.0477895 -29.69 0.0408495 -29.7 0.0331372 -29.71 0.0247864 -29.72 0.0159391 -29.73 0.00680459 -29.74 -0.00242173 -29.75 -0.011555 -29.76 -0.02042 -29.77 -0.0288582 -29.78 -0.0367355 -29.79 -0.0439468 -29.8 -0.0504199 -29.81 -0.0561177 -29.82 -0.0610378 -29.83 -0.0651838 -29.84 -0.068627 -29.85 -0.0714822 -29.86 -0.0738528 -29.87 -0.0758509 -29.88 -0.077589 -29.89 -0.0791726 -29.9 -0.0806927 -29.91 -0.0822199 -29.92 -0.0837995 -29.93 -0.0854481 -29.94 -0.0871522 -29.95 -0.0888617 -29.96 -0.0904975 -29.97 -0.0919607 -29.98 -0.0931356 -29.99 -0.0938965 -30 -0.0941156 -& -@target G0.S2 -@type xy -0 0 -0.01 0.0029745 -0.02 0.00574345 -0.03 0.00812855 -0.04 0.00997649 -0.05 0.0111686 -0.06 0.0116282 -0.07 0.0113257 -0.08 0.0102804 -0.09 0.00855905 -0.1 0.00627187 -0.11 0.00356562 -0.12 0.000611136 -0.13 -0.00237464 -0.14 -0.00519506 -0.15 -0.00766819 -0.16 -0.00963462 -0.17 -0.0109675 -0.18 -0.0115805 -0.19 -0.0114334 -0.2 -0.0105343 -0.21 -0.00893929 -0.22 -0.00674888 -0.23 -0.00408924 -0.24 -0.00115221 -0.25 0.00185976 -0.26 0.0047544 -0.27 0.00734741 -0.28 0.00947396 -0.29 0.0109987 -0.3 0.011824 -0.31 0.0118955 -0.32 0.0112048 -0.33 0.00978953 -0.34 0.00771538 -0.35 0.00510237 -0.36 0.00213006 -0.37 -0.00103718 -0.38 -0.00423099 -0.39 -0.00729047 -0.4 -0.010073 -0.41 -0.0124636 -0.42 -0.014382 -0.43 -0.0157874 -0.44 -0.0166803 -0.45 -0.0170958 -0.46 -0.0170965 -0.47 -0.0168185 -0.48 -0.0163831 -0.49 -0.0159145 -0.5 -0.015528 -0.51 -0.0153173 -0.52 -0.0153434 -0.53 -0.0156261 -0.54 -0.0161366 -0.55 -0.0167955 -0.56 -0.0174726 -0.57 -0.0179653 -0.58 -0.0180521 -0.59 -0.0174917 -0.6 -0.0160356 -0.61 -0.0134449 -0.62 -0.00950945 -0.63 -0.00406447 -0.64 0.00299256 -0.65 0.0116884 -0.66 0.0219641 -0.67 0.0336689 -0.68 0.0466065 -0.69 0.0603673 -0.7 0.0745064 -0.71 0.0885452 -0.72 0.101968 -0.73 0.114247 -0.74 0.124867 -0.75 0.133353 -0.76 0.139298 -0.77 0.142383 -0.78 0.142405 -0.79 0.139162 -0.8 0.13274 -0.81 0.123479 -0.82 0.111735 -0.83 0.0979842 -0.84 0.082801 -0.85 0.0668357 -0.86 0.0507819 -0.87 0.0353442 -0.88 0.0212033 -0.89 0.00898229 -0.9 -0.000720447 -0.91 -0.00737927 -0.92 -0.0108843 -0.93 -0.011152 -0.94 -0.00826421 -0.95 -0.00246522 -0.96 0.00584891 -0.97 0.0161494 -0.98 0.0278006 -0.99 0.040092 -1 0.052274 -1.01 0.0635854 -1.02 0.0731648 -1.03 0.0804614 -1.04 0.0849736 -1.05 0.0863414 -1.06 0.0843652 -1.07 0.0790161 -1.08 0.0704364 -1.09 0.0589327 -1.1 0.0449584 -1.11 0.0290896 -1.12 0.0119938 -1.13 -0.00559017 -1.14 -0.0228429 -1.15 -0.0390576 -1.16 -0.0536034 -1.17 -0.065955 -1.18 -0.0757212 -1.19 -0.0826654 -1.2 -0.0867177 -1.21 -0.0879778 -1.22 -0.0867085 -1.23 -0.0833196 -1.24 -0.0782967 -1.25 -0.0723681 -1.26 -0.0662568 -1.27 -0.0606523 -1.28 -0.0562085 -1.29 -0.0535048 -1.3 -0.0530113 -1.31 -0.0550591 -1.32 -0.0598198 -1.33 -0.0672922 -1.34 -0.0772997 -1.35 -0.0895551 -1.36 -0.10351 -1.37 -0.118434 -1.38 -0.133602 -1.39 -0.148246 -1.4 -0.161597 -1.41 -0.17293 -1.42 -0.181604 -1.43 -0.187103 -1.44 -0.189065 -1.45 -0.187308 -1.46 -0.18178 -1.47 -0.172588 -1.48 -0.160384 -1.49 -0.145774 -1.5 -0.129505 -1.51 -0.112431 -1.52 -0.0954668 -1.53 -0.0795436 -1.54 -0.0655628 -1.55 -0.0543479 -1.56 -0.046603 -1.57 -0.0428841 -1.58 -0.0438772 -1.59 -0.0493936 -1.6 -0.0593298 -1.61 -0.0733702 -1.62 -0.0910027 -1.63 -0.111543 -1.64 -0.134169 -1.65 -0.157961 -1.66 -0.181944 -1.67 -0.205142 -1.68 -0.226617 -1.69 -0.245318 -1.7 -0.260611 -1.71 -0.272011 -1.72 -0.279189 -1.73 -0.282019 -1.74 -0.280581 -1.75 -0.275154 -1.76 -0.266199 -1.77 -0.254328 -1.78 -0.240279 -1.79 -0.224865 -1.8 -0.208959 -1.81 -0.193498 -1.82 -0.179281 -1.83 -0.167004 -1.84 -0.157236 -1.85 -0.150401 -1.86 -0.146755 -1.87 -0.146387 -1.88 -0.149217 -1.89 -0.155012 -1.9 -0.1634 -1.91 -0.173949 -1.92 -0.186066 -1.93 -0.199052 -1.94 -0.212303 -1.95 -0.225249 -1.96 -0.237382 -1.97 -0.248289 -1.98 -0.257662 -1.99 -0.265316 -2 -0.27119 -2.01 -0.275347 -2.02 -0.277942 -2.03 -0.279209 -2.04 -0.27959 -2.05 -0.27947 -2.06 -0.279243 -2.07 -0.279281 -2.08 -0.279912 -2.09 -0.281392 -2.1 -0.283893 -2.11 -0.287482 -2.12 -0.292126 -2.13 -0.297685 -2.14 -0.303956 -2.15 -0.31055 -2.16 -0.317089 -2.17 -0.323171 -2.18 -0.328395 -2.19 -0.332389 -2.2 -0.334841 -2.21 -0.335516 -2.22 -0.334281 -2.23 -0.331118 -2.24 -0.326127 -2.25 -0.319458 -2.26 -0.311546 -2.27 -0.302866 -2.28 -0.293928 -2.29 -0.285282 -2.3 -0.277483 -2.31 -0.271055 -2.32 -0.266457 -2.33 -0.264049 -2.34 -0.264062 -2.35 -0.266572 -2.36 -0.27157 -2.37 -0.278713 -2.38 -0.287415 -2.39 -0.297001 -2.4 -0.306635 -2.41 -0.31535 -2.42 -0.322079 -2.43 -0.325693 -2.44 -0.325045 -2.45 -0.319012 -2.46 -0.306544 -2.47 -0.286499 -2.48 -0.257831 -2.49 -0.22037 -2.5 -0.173794 -2.51 -0.118026 -2.52 -0.0532459 -2.53 0.0201086 -2.54 0.101346 -2.55 0.189538 -2.56 0.283537 -2.57 0.382011 -2.58 0.483485 -2.59 0.586297 -2.6 0.688578 -2.61 0.788619 -2.62 0.884735 -2.63 0.975297 -2.64 1.05878 -2.65 1.13377 -2.66 1.19904 -2.67 1.25354 -2.68 1.2964 -2.69 1.32699 -2.7 1.34401 -2.71 1.34807 -2.72 1.33934 -2.73 1.31813 -2.74 1.28494 -2.75 1.24048 -2.76 1.18561 -2.77 1.12136 -2.78 1.04891 -2.79 0.969523 -2.8 0.884557 -2.81 0.795289 -2.82 0.703412 -2.83 0.610464 -2.84 0.517854 -2.85 0.426927 -2.86 0.338943 -2.87 0.255048 -2.88 0.176248 -2.89 0.103394 -2.9 0.0371599 -2.91 -0.0219662 -2.92 -0.0734218 -2.93 -0.117104 -2.94 -0.15345 -2.95 -0.182787 -2.96 -0.205618 -2.97 -0.22259 -2.98 -0.234479 -2.99 -0.242155 -3 -0.246547 -3.01 -0.248615 -3.02 -0.249308 -3.03 -0.249541 -3.04 -0.250223 -3.05 -0.252071 -3.06 -0.25565 -3.07 -0.261367 -3.08 -0.269466 -3.09 -0.280021 -3.1 -0.292942 -3.11 -0.307983 -3.12 -0.324764 -3.13 -0.342787 -3.14 -0.361474 -3.15 -0.380141 -3.16 -0.398096 -3.17 -0.414711 -3.18 -0.429414 -3.19 -0.44172 -3.2 -0.45125 -3.21 -0.457758 -3.22 -0.461134 -3.23 -0.461418 -3.24 -0.458791 -3.25 -0.453567 -3.26 -0.446074 -3.27 -0.437004 -3.28 -0.426987 -3.29 -0.416661 -3.3 -0.406664 -3.31 -0.397606 -3.32 -0.390037 -3.33 -0.384422 -3.34 -0.381124 -3.35 -0.380384 -3.36 -0.382315 -3.37 -0.387017 -3.38 -0.394263 -3.39 -0.403695 -3.4 -0.414927 -3.41 -0.427495 -3.42 -0.440879 -3.43 -0.454521 -3.44 -0.467855 -3.45 -0.48032 -3.46 -0.491385 -3.47 -0.500557 -3.48 -0.507307 -3.49 -0.51118 -3.5 -0.511954 -3.51 -0.509349 -3.52 -0.50312 -3.53 -0.493043 -3.54 -0.478901 -3.55 -0.460471 -3.56 -0.437508 -3.57 -0.409737 -3.58 -0.376845 -3.59 -0.338392 -3.6 -0.293696 -3.61 -0.242679 -3.62 -0.184934 -3.63 -0.120077 -3.64 -0.0477761 -3.65 0.0322109 -3.66 0.120008 -3.67 0.215582 -3.68 0.318716 -3.69 0.428975 -3.7 0.54569 -3.71 0.668268 -3.72 0.795004 -3.73 0.924424 -3.74 1.05483 -3.75 1.18431 -3.76 1.31082 -3.77 1.43219 -3.78 1.54621 -3.79 1.65068 -3.8 1.74348 -3.81 1.82262 -3.82 1.88534 -3.83 1.93071 -3.84 1.95788 -3.85 1.96613 -3.86 1.95511 -3.87 1.92493 -3.88 1.87607 -3.89 1.80944 -3.9 1.72632 -3.91 1.62835 -3.92 1.51741 -3.93 1.39529 -3.94 1.26464 -3.95 1.12821 -3.96 0.988405 -3.97 0.847571 -3.98 0.707931 -3.99 0.571524 -4 0.440162 -4.01 0.315394 -4.02 0.198481 -4.03 0.0903793 -4.04 -0.00799115 -4.05 -0.0960486 -4.06 -0.174221 -4.07 -0.24271 -4.08 -0.301918 -4.09 -0.35241 -4.1 -0.39487 -4.11 -0.430062 -4.12 -0.458787 -4.13 -0.481848 -4.14 -0.500021 -4.15 -0.513991 -4.16 -0.524265 -4.17 -0.531659 -4.18 -0.536637 -4.19 -0.539577 -4.2 -0.540784 -4.21 -0.540493 -4.22 -0.538892 -4.23 -0.536129 -4.24 -0.532331 -4.25 -0.527619 -4.26 -0.522112 -4.27 -0.515905 -4.28 -0.509198 -4.29 -0.502154 -4.3 -0.494942 -4.31 -0.487731 -4.32 -0.480681 -4.33 -0.473928 -4.34 -0.467578 -4.35 -0.461686 -4.36 -0.456255 -4.37 -0.451218 -4.38 -0.446446 -4.39 -0.441698 -4.4 -0.436684 -4.41 -0.431061 -4.42 -0.424438 -4.43 -0.416398 -4.44 -0.406511 -4.45 -0.394353 -4.46 -0.379532 -4.47 -0.361707 -4.48 -0.340604 -4.49 -0.315901 -4.5 -0.287517 -4.51 -0.255626 -4.52 -0.220387 -4.53 -0.182073 -4.54 -0.141063 -4.55 -0.0978323 -4.56 -0.0529414 -4.57 -0.00701493 -4.58 0.0392757 -4.59 0.0852333 -4.6 0.130117 -4.61 0.173125 -4.62 0.213675 -4.63 0.251176 -4.64 0.285104 -4.65 0.31501 -4.66 0.340523 -4.67 0.361355 -4.68 0.377299 -4.69 0.388224 -4.7 0.39407 -4.71 0.394809 -4.72 0.39019 -4.73 0.380679 -4.74 0.366429 -4.75 0.347623 -4.76 0.324474 -4.77 0.29722 -4.78 0.266123 -4.79 0.231473 -4.8 0.193587 -4.81 0.152812 -4.82 0.109529 -4.83 0.0640451 -4.84 0.0169689 -4.85 -0.0311856 -4.86 -0.0798941 -4.87 -0.128608 -4.88 -0.176763 -4.89 -0.223794 -4.9 -0.269145 -4.91 -0.312291 -4.92 -0.352747 -4.93 -0.390093 -4.94 -0.423802 -4.95 -0.453698 -4.96 -0.479748 -4.97 -0.501945 -4.98 -0.520399 -4.99 -0.535332 -5 -0.547074 -5.01 -0.556047 -5.02 -0.562749 -5.03 -0.567727 -5.04 -0.571554 -5.05 -0.574803 -5.06 -0.578058 -5.07 -0.581803 -5.08 -0.586404 -5.09 -0.592107 -5.1 -0.599028 -5.11 -0.607134 -5.12 -0.61624 -5.13 -0.626014 -5.14 -0.635986 -5.15 -0.645565 -5.16 -0.654031 -5.17 -0.660485 -5.18 -0.664208 -5.19 -0.664426 -5.2 -0.66042 -5.21 -0.651557 -5.22 -0.637332 -5.23 -0.617391 -5.24 -0.591559 -5.25 -0.559854 -5.26 -0.522501 -5.27 -0.479916 -5.28 -0.43245 -5.29 -0.381315 -5.3 -0.327488 -5.31 -0.272062 -5.32 -0.216205 -5.33 -0.161121 -5.34 -0.108012 -5.35 -0.0580312 -5.36 -0.0122495 -5.37 0.028383 -5.38 0.0630642 -5.39 0.0907342 -5.4 0.111247 -5.41 0.12449 -5.42 0.130448 -5.43 0.12929 -5.44 0.121352 -5.45 0.107117 -5.46 0.0871874 -5.47 0.062256 -5.48 0.0330767 -5.49 0.000432601 -5.5 -0.0349785 -5.51 -0.0722916 -5.52 -0.110731 -5.53 -0.14967 -5.54 -0.188564 -5.55 -0.226955 -5.56 -0.264475 -5.57 -0.30084 -5.58 -0.335841 -5.59 -0.369335 -5.6 -0.40123 -5.61 -0.431422 -5.62 -0.459841 -5.63 -0.486532 -5.64 -0.511452 -5.65 -0.534534 -5.66 -0.555681 -5.67 -0.574759 -5.68 -0.591598 -5.69 -0.605988 -5.7 -0.617686 -5.71 -0.626419 -5.72 -0.631845 -5.73 -0.633451 -5.74 -0.631127 -5.75 -0.624561 -5.76 -0.613453 -5.77 -0.597518 -5.78 -0.576497 -5.79 -0.550156 -5.8 -0.518293 -5.81 -0.480738 -5.82 -0.437358 -5.83 -0.388056 -5.84 -0.332342 -5.85 -0.270628 -5.86 -0.202981 -5.87 -0.129509 -5.88 -0.0503831 -5.89 0.0341497 -5.9 0.123758 -5.91 0.218018 -5.92 0.316398 -5.93 0.418257 -5.94 0.522832 -5.95 0.629285 -5.96 0.736439 -5.97 0.843114 -5.98 0.948059 -5.99 1.04993 -6 1.14734 -6.01 1.23883 -6.02 1.32296 -6.03 1.39831 -6.04 1.46355 -6.05 1.51743 -6.06 1.55834 -6.07 1.58537 -6.08 1.59833 -6.09 1.59685 -6.1 1.58083 -6.11 1.55046 -6.12 1.5062 -6.13 1.44882 -6.14 1.37932 -6.15 1.29896 -6.16 1.20917 -6.17 1.11144 -6.18 1.00747 -6.19 0.899446 -6.2 0.789147 -6.21 0.6783 -6.22 0.56853 -6.23 0.461323 -6.24 0.35799 -6.25 0.259644 -6.26 0.167182 -6.27 0.0812865 -6.28 0.0024881 -6.29 -0.0684987 -6.3 -0.132078 -6.31 -0.188306 -6.32 -0.237333 -6.33 -0.27936 -6.34 -0.314603 -6.35 -0.343249 -6.36 -0.365431 -6.37 -0.381191 -6.38 -0.390472 -6.39 -0.393101 -6.4 -0.388299 -6.41 -0.376061 -6.42 -0.355972 -6.43 -0.327526 -6.44 -0.290218 -6.45 -0.243592 -6.46 -0.187288 -6.47 -0.121088 -6.48 -0.0449638 -6.49 0.0408861 -6.5 0.136003 -6.51 0.240034 -6.52 0.351577 -6.53 0.469052 -6.54 0.590806 -6.55 0.714951 -6.56 0.839398 -6.57 0.961918 -6.58 1.0802 -6.59 1.19191 -6.6 1.29478 -6.61 1.38667 -6.62 1.4651 -6.63 1.52816 -6.64 1.57508 -6.65 1.60489 -6.66 1.61704 -6.67 1.61135 -6.68 1.58809 -6.69 1.54787 -6.7 1.4917 -6.71 1.42088 -6.72 1.337 -6.73 1.24168 -6.74 1.13671 -6.75 1.02476 -6.76 0.907873 -6.77 0.788045 -6.78 0.667157 -6.79 0.546936 -6.8 0.428913 -6.81 0.314398 -6.82 0.204465 -6.83 0.0999425 -6.84 0.00144627 -6.85 -0.0902068 -6.86 -0.175323 -6.87 -0.253937 -6.88 -0.326215 -6.89 -0.39242 -6.9 -0.452878 -6.91 -0.507949 -6.92 -0.557992 -6.93 -0.603347 -6.94 -0.644317 -6.95 -0.681155 -6.96 -0.713825 -6.97 -0.74268 -6.98 -0.767869 -6.99 -0.789462 -7 -0.807516 -7.01 -0.822093 -7.02 -0.833274 -7.03 -0.841178 -7.04 -0.845971 -7.05 -0.84788 -7.06 -0.847195 -7.07 -0.844183 -7.08 -0.839344 -7.09 -0.83321 -7.1 -0.826281 -7.11 -0.819073 -7.12 -0.812094 -7.13 -0.805826 -7.14 -0.800703 -7.15 -0.797091 -7.16 -0.795277 -7.17 -0.795449 -7.18 -0.79776 -7.19 -0.802205 -7.2 -0.808551 -7.21 -0.81656 -7.22 -0.825917 -7.23 -0.83624 -7.24 -0.847104 -7.25 -0.858058 -7.26 -0.868651 -7.27 -0.878448 -7.28 -0.887054 -7.29 -0.894099 -7.3 -0.899206 -7.31 -0.902282 -7.32 -0.903217 -7.33 -0.901973 -7.34 -0.898582 -7.35 -0.893127 -7.36 -0.885738 -7.37 -0.876566 -7.38 -0.865775 -7.39 -0.853515 -7.4 -0.839917 -7.41 -0.824979 -7.42 -0.808832 -7.43 -0.791453 -7.44 -0.772762 -7.45 -0.75263 -7.46 -0.73088 -7.47 -0.707309 -7.48 -0.681696 -7.49 -0.653824 -7.5 -0.6235 -7.51 -0.590574 -7.52 -0.5548 -7.53 -0.516296 -7.54 -0.475215 -7.55 -0.431771 -7.56 -0.386292 -7.57 -0.339212 -7.58 -0.291071 -7.59 -0.242502 -7.6 -0.194214 -7.61 -0.146975 -7.62 -0.101586 -7.63 -0.0590013 -7.64 -0.020063 -7.65 0.0145874 -7.66 0.0442926 -7.67 0.0684936 -7.68 0.0867485 -7.69 0.0987474 -7.7 0.104322 -7.71 0.103454 -7.72 0.0962705 -7.73 0.0830457 -7.74 0.0640552 -7.75 0.0397797 -7.76 0.011157 -7.77 -0.0210615 -7.78 -0.0560551 -7.79 -0.0929531 -7.8 -0.130853 -7.81 -0.16884 -7.82 -0.206 -7.83 -0.241441 -7.84 -0.274297 -7.85 -0.303706 -7.86 -0.328608 -7.87 -0.348537 -7.88 -0.362863 -7.89 -0.371032 -7.9 -0.372567 -7.91 -0.367076 -7.92 -0.354259 -7.93 -0.33391 -7.94 -0.305929 -7.95 -0.270322 -7.96 -0.227215 -7.97 -0.176374 -7.98 -0.118685 -7.99 -0.054725 -8 0.0148358 -8.01 0.0891946 -8.02 0.16742 -8.03 0.24846 -8.04 0.331157 -8.05 0.414263 -8.06 0.496458 -8.07 0.576382 -8.08 0.652384 -8.09 0.723104 -8.1 0.787323 -8.11 0.843832 -8.12 0.891539 -8.13 0.929507 -8.14 0.956981 -8.15 0.973405 -8.16 0.978451 -8.17 0.972021 -8.18 0.954262 -8.19 0.925169 -8.2 0.885452 -8.21 0.836401 -8.22 0.779089 -8.23 0.714752 -8.24 0.644763 -8.25 0.570597 -8.26 0.49379 -8.27 0.415909 -8.28 0.338509 -8.29 0.263103 -8.3 0.191233 -8.31 0.124495 -8.32 0.0638684 -8.33 0.0103753 -8.34 -0.0351297 -8.35 -0.0719668 -8.36 -0.0996362 -8.37 -0.117818 -8.38 -0.126367 -8.39 -0.125312 -8.4 -0.11484 -8.41 -0.0952404 -8.42 -0.0664891 -8.43 -0.0298482 -8.44 0.0139382 -8.45 0.0640249 -8.46 0.119476 -8.47 0.179277 -8.48 0.242345 -8.49 0.307542 -8.5 0.373685 -8.51 0.439558 -8.52 0.50393 -8.53 0.565311 -8.54 0.622548 -8.55 0.674501 -8.56 0.720067 -8.57 0.758227 -8.58 0.788073 -8.59 0.808834 -8.6 0.819894 -8.61 0.820818 -8.62 0.811371 -8.63 0.791532 -8.64 0.761026 -8.65 0.720588 -8.66 0.671197 -8.67 0.613784 -8.68 0.54948 -8.69 0.479598 -8.7 0.405602 -8.71 0.329069 -8.72 0.251652 -8.73 0.175034 -8.74 0.100883 -8.75 0.0309929 -8.76 -0.0329488 -8.77 -0.0898101 -8.78 -0.138475 -8.79 -0.178057 -8.8 -0.207921 -8.81 -0.227699 -8.82 -0.237298 -8.83 -0.236899 -8.84 -0.226944 -8.85 -0.208119 -8.86 -0.181211 -8.87 -0.147131 -8.88 -0.107595 -8.89 -0.0639545 -8.9 -0.0176112 -8.91 0.0300244 -8.92 0.0775751 -8.93 0.123734 -8.94 0.167299 -8.95 0.207201 -8.96 0.242521 -8.97 0.272506 -8.98 0.296119 -8.99 0.313405 -9 0.324176 -9.01 0.328401 -9.02 0.326194 -9.03 0.317792 -9.04 0.303539 -9.05 0.283858 -9.06 0.259239 -9.07 0.230207 -9.08 0.197316 -9.09 0.160962 -9.1 0.121896 -9.11 0.080708 -9.12 0.0379225 -9.13 -0.00595892 -9.14 -0.0504552 -9.15 -0.0951052 -9.16 -0.139465 -9.17 -0.183105 -9.18 -0.225609 -9.19 -0.266572 -9.2 -0.305497 -9.21 -0.341998 -9.22 -0.375783 -9.23 -0.406525 -9.24 -0.433937 -9.25 -0.457776 -9.26 -0.477858 -9.27 -0.494065 -9.28 -0.50636 -9.29 -0.514788 -9.3 -0.519487 -9.31 -0.520599 -9.32 -0.51843 -9.33 -0.513573 -9.34 -0.506532 -9.35 -0.497872 -9.36 -0.488205 -9.37 -0.478164 -9.38 -0.468383 -9.39 -0.459475 -9.4 -0.451999 -9.41 -0.446448 -9.42 -0.443248 -9.43 -0.442828 -9.44 -0.445165 -9.45 -0.450246 -9.46 -0.457914 -9.47 -0.467871 -9.48 -0.479685 -9.49 -0.492804 -9.5 -0.506578 -9.51 -0.520276 -9.52 -0.533119 -9.53 -0.544308 -9.54 -0.552823 -9.55 -0.558041 -9.56 -0.559316 -9.57 -0.556095 -9.58 -0.547956 -9.59 -0.534623 -9.6 -0.515979 -9.61 -0.492075 -9.62 -0.46313 -9.63 -0.429525 -9.64 -0.391794 -9.65 -0.350459 -9.66 -0.306509 -9.67 -0.260899 -9.68 -0.214572 -9.69 -0.168496 -9.7 -0.123635 -9.71 -0.0809134 -9.72 -0.0411945 -9.73 -0.00524924 -9.74 0.0262658 -9.75 0.052828 -9.76 0.0738428 -9.77 0.0891163 -9.78 0.0988282 -9.79 0.103135 -9.8 0.102358 -9.81 0.0969746 -9.82 0.0876099 -9.83 0.0750186 -9.84 0.0600691 -9.85 0.0437235 -9.86 0.0270158 -9.87 0.0110738 -9.88 -0.0028395 -9.89 -0.0136643 -9.9 -0.020327 -9.91 -0.0218091 -9.92 -0.0171704 -9.93 -0.00557244 -9.94 0.0137011 -9.95 0.0412238 -9.96 0.0774094 -9.97 0.122497 -9.98 0.176604 -9.99 0.240087 -10 0.311947 -10.01 0.39159 -10.02 0.47822 -10.03 0.570848 -10.04 0.668305 -10.05 0.769257 -10.06 0.872227 -10.07 0.975623 -10.08 1.07776 -10.09 1.17692 -10.1 1.27089 -10.11 1.35811 -10.12 1.43696 -10.13 1.50587 -10.14 1.56345 -10.15 1.60844 -10.16 1.63981 -10.17 1.65675 -10.18 1.65871 -10.19 1.64538 -10.2 1.61675 -10.21 1.57231 -10.22 1.51306 -10.23 1.44018 -10.24 1.3547 -10.25 1.25784 -10.26 1.15101 -10.27 1.03573 -10.28 0.913622 -10.29 0.786352 -10.3 0.655606 -10.31 0.523043 -10.32 0.390306 -10.33 0.259048 -10.34 0.130624 -10.35 0.00623675 -10.36 -0.113076 -10.37 -0.226453 -10.38 -0.333215 -10.39 -0.43286 -10.4 -0.525062 -10.41 -0.609656 -10.42 -0.686623 -10.43 -0.755938 -10.44 -0.817577 -10.45 -0.87229 -10.46 -0.920464 -10.47 -0.962526 -10.48 -0.998927 -10.49 -1.03012 -10.5 -1.05655 -10.51 -1.07865 -10.52 -1.0968 -10.53 -1.11136 -10.54 -1.12265 -10.55 -1.13073 -10.56 -1.13609 -10.57 -1.13891 -10.58 -1.13936 -10.59 -1.13759 -10.6 -1.13372 -10.61 -1.12787 -10.62 -1.12014 -10.63 -1.11066 -10.64 -1.09952 -10.65 -1.08686 -10.66 -1.07273 -10.67 -1.05734 -10.68 -1.04087 -10.69 -1.02347 -10.7 -1.00531 -10.71 -0.986565 -10.72 -0.9674 -10.73 -0.947984 -10.74 -0.928481 -10.75 -0.909043 -10.76 -0.889813 -10.77 -0.870939 -10.78 -0.85253 -10.79 -0.834659 -10.8 -0.817384 -10.81 -0.800733 -10.82 -0.784705 -10.83 -0.769265 -10.84 -0.754342 -10.85 -0.739827 -10.86 -0.725572 -10.87 -0.711387 -10.88 -0.69703 -10.89 -0.682192 -10.9 -0.666568 -10.91 -0.64981 -10.92 -0.631544 -10.93 -0.611376 -10.94 -0.588901 -10.95 -0.563716 -10.96 -0.535433 -10.97 -0.503688 -10.98 -0.468161 -10.99 -0.428527 -11 -0.384388 -11.01 -0.335909 -11.02 -0.283106 -11.03 -0.226107 -11.04 -0.16516 -11.05 -0.100637 -11.06 -0.0330316 -11.07 0.0370419 -11.08 0.10886 -11.09 0.1816 -11.1 0.25436 -11.11 0.326035 -11.12 0.395631 -11.13 0.462149 -11.14 0.524618 -11.15 0.582127 -11.16 0.633852 -11.17 0.679085 -11.18 0.717257 -11.19 0.747965 -11.2 0.77098 -11.21 0.786265 -11.22 0.79356 -11.23 0.793576 -11.24 0.787017 -11.25 0.774624 -11.26 0.757281 -11.27 0.735993 -11.28 0.71185 -11.29 0.685996 -11.3 0.659592 -11.31 0.633776 -11.32 0.609629 -11.33 0.588286 -11.34 0.570657 -11.35 0.557323 -11.36 0.548777 -11.37 0.54532 -11.38 0.547048 -11.39 0.553853 -11.4 0.565432 -11.41 0.581293 -11.42 0.60078 -11.43 0.623095 -11.44 0.647348 -11.45 0.672466 -11.46 0.697313 -11.47 0.72084 -11.48 0.742027 -11.49 0.759919 -11.5 0.773652 -11.51 0.78248 -11.52 0.785798 -11.53 0.783156 -11.54 0.774268 -11.55 0.758957 -11.56 0.736939 -11.57 0.708879 -11.58 0.675166 -11.59 0.636317 -11.6 0.592959 -11.61 0.545801 -11.62 0.495613 -11.63 0.443199 -11.64 0.389372 -11.65 0.334933 -11.66 0.280644 -11.67 0.227318 -11.68 0.17557 -11.69 0.125929 -11.7 0.0788344 -11.71 0.0346283 -11.72 -0.00644698 -11.73 -0.0442438 -11.74 -0.0787041 -11.75 -0.10985 -11.76 -0.137773 -11.77 -0.162622 -11.78 -0.184447 -11.79 -0.203581 -11.8 -0.220325 -11.81 -0.234919 -11.82 -0.247588 -11.83 -0.258538 -11.84 -0.267946 -11.85 -0.275953 -11.86 -0.282663 -11.87 -0.288137 -11.88 -0.292402 -11.89 -0.295396 -11.9 -0.297068 -11.91 -0.297391 -11.92 -0.296273 -11.93 -0.293616 -11.94 -0.28932 -11.95 -0.283294 -11.96 -0.275462 -11.97 -0.265773 -11.98 -0.254206 -11.99 -0.240776 -12 -0.225499 -12.01 -0.208426 -12.02 -0.189799 -12.03 -0.169804 -12.04 -0.148659 -12.05 -0.126617 -12.06 -0.103954 -12.07 -0.0809624 -12.08 -0.0579446 -12.09 -0.0352002 -12.1 -0.0130183 -12.11 0.00832696 -12.12 0.0285118 -12.13 0.0474067 -12.14 0.0648691 -12.15 0.0808103 -12.16 0.0951996 -12.17 0.108066 -12.18 0.1195 -12.19 0.129648 -12.2 0.138711 -12.21 0.146939 -12.22 0.154616 -12.23 0.162066 -12.24 0.16966 -12.25 0.177734 -12.26 0.18661 -12.27 0.196585 -12.28 0.207916 -12.29 0.220808 -12.3 0.235405 -12.31 0.25178 -12.32 0.26993 -12.33 0.289768 -12.34 0.31119 -12.35 0.333881 -12.36 0.357465 -12.37 0.381538 -12.38 0.405644 -12.39 0.429286 -12.4 0.451941 -12.41 0.473078 -12.42 0.492173 -12.43 0.508731 -12.44 0.522299 -12.45 0.532362 -12.46 0.538536 -12.47 0.540754 -12.48 0.538894 -12.49 0.532935 -12.5 0.52296 -12.51 0.509148 -12.52 0.491775 -12.53 0.471199 -12.54 0.447851 -12.55 0.422219 -12.56 0.39481 -12.57 0.36617 -12.58 0.336944 -12.59 0.307657 -12.6 0.278791 -12.61 0.250769 -12.62 0.223943 -12.63 0.198577 -12.64 0.174842 -12.65 0.15281 -12.66 0.132451 -12.67 0.113638 -12.68 0.0962238 -12.69 0.0797758 -12.7 0.0639066 -12.71 0.0481769 -12.72 0.0321131 -12.73 0.0152248 -12.74 -0.00297542 -12.75 -0.0229542 -12.76 -0.0451394 -12.77 -0.0699042 -12.78 -0.0975533 -12.79 -0.128507 -12.8 -0.162764 -12.81 -0.200299 -12.82 -0.241045 -12.83 -0.284837 -12.84 -0.331428 -12.85 -0.380487 -12.86 -0.431616 -12.87 -0.484356 -12.88 -0.538203 -12.89 -0.592621 -12.9 -0.647031 -12.91 -0.700816 -12.92 -0.753427 -12.93 -0.804331 -12.94 -0.853024 -12.95 -0.899039 -12.96 -0.941947 -12.97 -0.981368 -12.98 -1.01696 -12.99 -1.04844 -13 -1.07557 -13.01 -1.098 -13.02 -1.11549 -13.03 -1.12814 -13.04 -1.13588 -13.05 -1.13868 -13.06 -1.13653 -13.07 -1.12948 -13.08 -1.11758 -13.09 -1.10096 -13.1 -1.07975 -13.11 -1.05415 -13.12 -1.02433 -13.13 -0.990389 -13.14 -0.952932 -13.15 -0.912331 -13.16 -0.869011 -13.17 -0.823437 -13.18 -0.776116 -13.19 -0.727586 -13.2 -0.678414 -13.21 -0.629177 -13.22 -0.58046 -13.23 -0.532841 -13.24 -0.487031 -13.25 -0.44347 -13.26 -0.402617 -13.27 -0.364875 -13.28 -0.330576 -13.29 -0.299972 -13.3 -0.273231 -13.31 -0.250432 -13.32 -0.231567 -13.33 -0.21654 -13.34 -0.205178 -13.35 -0.197408 -13.36 -0.192771 -13.37 -0.190838 -13.38 -0.191218 -13.39 -0.193503 -13.4 -0.197285 -13.41 -0.202165 -13.42 -0.207767 -13.43 -0.213746 -13.44 -0.219797 -13.45 -0.225652 -13.46 -0.231066 -13.47 -0.235837 -13.48 -0.239833 -13.49 -0.242928 -13.5 -0.245005 -13.51 -0.245944 -13.52 -0.245612 -13.53 -0.243846 -13.54 -0.240447 -13.55 -0.235169 -13.56 -0.227714 -13.57 -0.217659 -13.58 -0.204472 -13.59 -0.187828 -13.6 -0.167237 -13.61 -0.142194 -13.62 -0.112198 -13.63 -0.0767733 -13.64 -0.0354991 -13.65 0.011969 -13.66 0.0658718 -13.67 0.126322 -13.68 0.193331 -13.69 0.267048 -13.7 0.346611 -13.71 0.431413 -13.72 0.520663 -13.73 0.613391 -13.74 0.708468 -13.75 0.804623 -13.76 0.900476 -13.77 0.994566 -13.78 1.0854 -13.79 1.17147 -13.8 1.25081 -13.81 1.32235 -13.82 1.3849 -13.83 1.43744 -13.84 1.47911 -13.85 1.5093 -13.86 1.52763 -13.87 1.53396 -13.88 1.5284 -13.89 1.51133 -13.9 1.48332 -13.91 1.44468 -13.92 1.39675 -13.93 1.34089 -13.94 1.2783 -13.95 1.21024 -13.96 1.13795 -13.97 1.06268 -13.98 0.98559 -13.99 0.907736 -14 0.830064 -14.01 0.753371 -14.02 0.678374 -14.03 0.6056 -14.04 0.535273 -14.05 0.467536 -14.06 0.4024 -14.07 0.339765 -14.08 0.279437 -14.09 0.221162 -14.1 0.164646 -14.11 0.109582 -14.12 0.0556755 -14.13 0.00267726 -14.14 -0.0496114 -14.15 -0.101374 -14.16 -0.152669 -14.17 -0.203482 -14.18 -0.253721 -14.19 -0.303225 -14.2 -0.351774 -14.21 -0.3991 -14.22 -0.444898 -14.23 -0.488844 -14.24 -0.530599 -14.25 -0.569639 -14.26 -0.605822 -14.27 -0.638871 -14.28 -0.668545 -14.29 -0.694634 -14.3 -0.716964 -14.31 -0.735392 -14.32 -0.749803 -14.33 -0.760097 -14.34 -0.766191 -14.35 -0.768002 -14.36 -0.765173 -14.37 -0.757817 -14.38 -0.745895 -14.39 -0.729295 -14.4 -0.707903 -14.41 -0.681607 -14.42 -0.650303 -14.43 -0.613911 -14.44 -0.572388 -14.45 -0.525741 -14.46 -0.474041 -14.47 -0.417226 -14.48 -0.355654 -14.49 -0.289831 -14.5 -0.220225 -14.51 -0.147411 -14.52 -0.0720618 -14.53 0.00505835 -14.54 0.0831107 -14.55 0.161201 -14.56 0.238404 -14.57 0.313787 -14.58 0.386335 -14.59 0.455057 -14.6 0.519329 -14.61 0.578505 -14.62 0.632077 -14.63 0.679686 -14.64 0.721135 -14.65 0.756391 -14.66 0.785586 -14.67 0.809007 -14.68 0.827074 -14.69 0.840267 -14.7 0.849071 -14.71 0.854462 -14.72 0.85714 -14.73 0.857779 -14.74 0.856999 -14.75 0.855328 -14.76 0.853181 -14.77 0.850834 -14.78 0.848409 -14.79 0.845868 -14.8 0.843012 -14.81 0.839404 -14.82 0.834554 -14.83 0.827841 -14.84 0.818565 -14.85 0.805982 -14.86 0.789342 -14.87 0.767923 -14.88 0.741072 -14.89 0.708238 -14.9 0.669001 -14.91 0.6231 -14.92 0.570066 -14.93 0.510299 -14.94 0.444248 -14.95 0.372425 -14.96 0.295505 -14.97 0.214313 -14.98 0.12979 -14.99 0.0429647 -15 -0.0450808 -15.01 -0.133249 -15.02 -0.220462 -15.03 -0.305572 -15.04 -0.387572 -15.05 -0.465728 -15.06 -0.53937 -15.07 -0.607975 -15.08 -0.671174 -15.09 -0.728746 -15.1 -0.780618 -15.11 -0.826843 -15.12 -0.867587 -15.13 -0.90311 -15.14 -0.933618 -15.15 -0.9594 -15.16 -0.98108 -15.17 -0.999027 -15.18 -1.01358 -15.19 -1.02502 -15.2 -1.03358 -15.21 -1.03943 -15.22 -1.04267 -15.23 -1.04334 -15.24 -1.04144 -15.25 -1.03687 -15.26 -1.02939 -15.27 -1.0191 -15.28 -1.00592 -15.29 -0.989778 -15.3 -0.970681 -15.31 -0.948665 -15.32 -0.923834 -15.33 -0.896357 -15.34 -0.866469 -15.35 -0.834464 -15.36 -0.800693 -15.37 -0.76548 -15.38 -0.729361 -15.39 -0.692772 -15.4 -0.656128 -15.41 -0.619817 -15.42 -0.58418 -15.43 -0.549498 -15.44 -0.515982 -15.45 -0.483764 -15.46 -0.45289 -15.47 -0.423328 -15.48 -0.395018 -15.49 -0.367719 -15.5 -0.341156 -15.51 -0.315039 -15.52 -0.28906 -15.53 -0.262907 -15.54 -0.23628 -15.55 -0.208914 -15.56 -0.180587 -15.57 -0.15114 -15.58 -0.12048 -15.59 -0.0885467 -15.6 -0.0554103 -15.61 -0.0212645 -15.62 0.0136792 -15.63 0.0491533 -15.64 0.0848476 -15.65 0.120423 -15.66 0.155528 -15.67 0.189813 -15.68 0.222946 -15.69 0.254627 -15.7 0.284557 -15.71 0.31245 -15.72 0.338264 -15.73 0.361917 -15.74 0.383387 -15.75 0.4027 -15.76 0.41993 -15.77 0.43518 -15.78 0.448581 -15.79 0.460269 -15.8 0.470382 -15.81 0.479037 -15.82 0.486253 -15.83 0.492194 -15.84 0.496887 -15.85 0.500321 -15.86 0.502447 -15.87 0.503184 -15.88 0.502425 -15.89 0.500045 -15.9 0.495914 -15.91 0.489908 -15.92 0.481917 -15.93 0.471731 -15.94 0.459422 -15.95 0.445037 -15.96 0.428653 -15.97 0.410409 -15.98 0.3905 -15.99 0.369181 -16 0.346755 -16.01 0.323564 -16.02 0.299983 -16.03 0.2764 -16.04 0.253243 -16.05 0.230913 -16.06 0.20974 -16.07 0.190017 -16.08 0.171982 -16.09 0.155806 -16.1 0.141587 -16.11 0.129343 -16.12 0.119018 -16.13 0.110478 -16.14 0.103521 -16.15 0.0979173 -16.16 0.0933303 -16.17 0.0893497 -16.18 0.0856015 -16.19 0.081707 -16.2 0.0772966 -16.21 0.0720236 -16.22 0.0655763 -16.23 0.0576882 -16.24 0.0481463 -16.25 0.0367969 -16.26 0.0235181 -16.27 0.00820198 -16.28 -0.00899084 -16.29 -0.0279557 -16.3 -0.0485356 -16.31 -0.070528 -16.32 -0.093692 -16.33 -0.117756 -16.34 -0.142427 -16.35 -0.167394 -16.36 -0.19234 -16.37 -0.216942 -16.38 -0.240806 -16.39 -0.263646 -16.4 -0.285153 -16.41 -0.305028 -16.42 -0.322978 -16.43 -0.338722 -16.44 -0.351984 -16.45 -0.362496 -16.46 -0.37 -16.47 -0.374248 -16.48 -0.375002 -16.49 -0.371805 -16.5 -0.364603 -16.51 -0.353282 -16.52 -0.337701 -16.53 -0.317757 -16.54 -0.293398 -16.55 -0.264623 -16.56 -0.231497 -16.57 -0.194153 -16.58 -0.152802 -16.59 -0.107735 -16.6 -0.0592025 -16.61 -0.0077581 -16.62 0.0459321 -16.63 0.101229 -16.64 0.157423 -16.65 0.213738 -16.66 0.269351 -16.67 0.323399 -16.68 0.374994 -16.69 0.423247 -16.7 0.467277 -16.71 0.506072 -16.72 0.538639 -16.73 0.564506 -16.74 0.583043 -16.75 0.593721 -16.76 0.596126 -16.77 0.589972 -16.78 0.57511 -16.79 0.551532 -16.8 0.519374 -16.81 0.478919 -16.82 0.430507 -16.83 0.374368 -16.84 0.311713 -16.85 0.243363 -16.86 0.170234 -16.87 0.0933208 -16.88 0.0136806 -16.89 -0.0675902 -16.9 -0.149375 -16.91 -0.23056 -16.92 -0.310052 -16.93 -0.386805 -16.94 -0.459502 -16.95 -0.527438 -16.96 -0.589843 -16.97 -0.646042 -16.98 -0.695484 -16.99 -0.737745 -17 -0.772533 -17.01 -0.799686 -17.02 -0.819173 -17.03 -0.831081 -17.04 -0.835611 -17.05 -0.832691 -17.06 -0.822989 -17.07 -0.807111 -17.08 -0.785563 -17.09 -0.758879 -17.1 -0.727601 -17.11 -0.692267 -17.12 -0.65339 -17.13 -0.611449 -17.14 -0.566878 -17.15 -0.520056 -17.16 -0.471238 -17.17 -0.420713 -17.18 -0.368743 -17.19 -0.315472 -17.2 -0.261001 -17.21 -0.205399 -17.22 -0.148716 -17.23 -0.0909981 -17.24 -0.0322959 -17.25 0.0273178 -17.26 0.0877383 -17.27 0.148829 -17.28 0.210381 -17.29 0.272096 -17.3 0.333653 -17.31 0.394674 -17.32 0.454733 -17.33 0.513361 -17.34 0.570059 -17.35 0.624312 -17.36 0.675604 -17.37 0.72343 -17.38 0.767286 -17.39 0.806445 -17.4 0.840824 -17.41 0.870143 -17.42 0.894203 -17.43 0.912891 -17.44 0.926188 -17.45 0.934159 -17.46 0.936958 -17.47 0.934809 -17.48 0.928005 -17.49 0.916888 -17.5 0.901603 -17.51 0.882803 -17.52 0.860927 -17.53 0.836361 -17.54 0.809464 -17.55 0.780555 -17.56 0.749903 -17.57 0.717727 -17.58 0.684186 -17.59 0.649387 -17.6 0.613386 -17.61 0.576135 -17.62 0.537639 -17.63 0.497888 -17.64 0.456833 -17.65 0.414438 -17.66 0.37069 -17.67 0.325608 -17.68 0.279258 -17.69 0.231761 -17.7 0.183291 -17.71 0.134087 -17.72 0.0844396 -17.73 0.0347373 -17.74 -0.014602 -17.75 -0.0631454 -17.76 -0.110441 -17.77 -0.156031 -17.78 -0.19947 -17.79 -0.240336 -17.8 -0.278248 -17.81 -0.312876 -17.82 -0.343949 -17.83 -0.3712 -17.84 -0.394347 -17.85 -0.413571 -17.86 -0.428912 -17.87 -0.440474 -17.88 -0.448422 -17.89 -0.452968 -17.9 -0.454362 -17.91 -0.452875 -17.92 -0.448789 -17.93 -0.442383 -17.94 -0.433916 -17.95 -0.423514 -17.96 -0.411521 -17.97 -0.398095 -17.98 -0.38335 -17.99 -0.367358 -18 -0.350153 -18.01 -0.331736 -18.02 -0.312081 -18.03 -0.291145 -18.04 -0.26888 -18.05 -0.245239 -18.06 -0.220102 -18.07 -0.193531 -18.08 -0.165573 -18.09 -0.136294 -18.1 -0.105802 -18.11 -0.0742448 -18.12 -0.0418139 -18.13 -0.00873697 -18.14 0.0247261 -18.15 0.0582905 -18.16 0.0916551 -18.17 0.124474 -18.18 0.15642 -18.19 0.187217 -18.2 0.216596 -18.21 0.244312 -18.22 0.270156 -18.23 0.293953 -18.24 0.315564 -18.25 0.334885 -18.26 0.351845 -18.27 0.3664 -18.28 0.378457 -18.29 0.387967 -18.3 0.395044 -18.31 0.399684 -18.32 0.40188 -18.33 0.401609 -18.34 0.398829 -18.35 0.393482 -18.36 0.385488 -18.37 0.374751 -18.38 0.361158 -18.39 0.344549 -18.4 0.324641 -18.41 0.301509 -18.42 0.275057 -18.43 0.24522 -18.44 0.211966 -18.45 0.175307 -18.46 0.135307 -18.47 0.0920859 -18.48 0.04582 -18.49 -0.00325311 -18.5 -0.0548379 -18.51 -0.108713 -18.52 -0.164294 -18.53 -0.221127 -18.54 -0.278735 -18.55 -0.33662 -18.56 -0.394278 -18.57 -0.451204 -18.58 -0.506908 -18.59 -0.560926 -18.6 -0.612823 -18.61 -0.662206 -18.62 -0.70855 -18.63 -0.751651 -18.64 -0.791331 -18.65 -0.827414 -18.66 -0.859774 -18.67 -0.888336 -18.68 -0.91307 -18.69 -0.933988 -18.7 -0.951135 -18.71 -0.964587 -18.72 -0.974441 -18.73 -0.980677 -18.74 -0.98346 -18.75 -0.983047 -18.76 -0.979578 -18.77 -0.973194 -18.78 -0.964032 -18.79 -0.952226 -18.8 -0.937904 -18.81 -0.921186 -18.82 -0.902186 -18.83 -0.88101 -18.84 -0.857706 -18.85 -0.832318 -18.86 -0.805028 -18.87 -0.7759 -18.88 -0.74499 -18.89 -0.71234 -18.9 -0.677978 -18.91 -0.641922 -18.92 -0.604177 -18.93 -0.564736 -18.94 -0.523583 -18.95 -0.480682 -18.96 -0.435905 -18.97 -0.389344 -18.98 -0.340989 -18.99 -0.290842 -19 -0.238926 -19.01 -0.185294 -19.02 -0.130033 -19.03 -0.0732721 -19.04 -0.0151857 -19.05 0.0440012 -19.06 0.104011 -19.07 0.16452 -19.08 0.225082 -19.09 0.285251 -19.1 0.344548 -19.11 0.402456 -19.12 0.458437 -19.13 0.511941 -19.14 0.562418 -19.15 0.609332 -19.16 0.652175 -19.17 0.690479 -19.18 0.72355 -19.19 0.751159 -19.2 0.773161 -19.21 0.789378 -19.22 0.799716 -19.23 0.804172 -19.24 0.802829 -19.25 0.795853 -19.26 0.783487 -19.27 0.766044 -19.28 0.743899 -19.29 0.717332 -19.3 0.68684 -19.31 0.653072 -19.32 0.616521 -19.33 0.577676 -19.34 0.537013 -19.35 0.494988 -19.36 0.452027 -19.37 0.408524 -19.38 0.364837 -19.39 0.321288 -19.4 0.278175 -19.41 0.235793 -19.42 0.194334 -19.43 0.153988 -19.44 0.114928 -19.45 0.0773135 -19.46 0.0412922 -19.47 0.00700853 -19.48 -0.0253953 -19.49 -0.0557763 -19.5 -0.0839901 -19.51 -0.10988 -19.52 -0.133122 -19.53 -0.153738 -19.54 -0.171588 -19.55 -0.186542 -19.56 -0.198481 -19.57 -0.207301 -19.58 -0.212918 -19.59 -0.215269 -19.6 -0.214313 -19.61 -0.210036 -19.62 -0.202444 -19.63 -0.191361 -19.64 -0.177016 -19.65 -0.15952 -19.66 -0.13896 -19.67 -0.115435 -19.68 -0.0890523 -19.69 -0.0599242 -19.7 -0.0281686 -19.71 0.00609324 -19.72 0.0427361 -19.73 0.0816287 -19.74 0.122725 -19.75 0.165813 -19.76 0.210661 -19.77 0.257069 -19.78 0.304806 -19.79 0.353603 -19.8 0.40315 -19.81 0.45309 -19.82 0.503015 -19.83 0.552466 -19.84 0.600933 -19.85 0.647792 -19.86 0.692355 -19.87 0.734059 -19.88 0.772251 -19.89 0.80627 -19.9 0.835471 -19.91 0.859231 -19.92 0.876974 -19.93 0.888185 -19.94 0.89243 -19.95 0.889365 -19.96 0.878641 -19.97 0.859804 -19.98 0.833352 -19.99 0.799459 -20 0.758437 -20.01 0.710728 -20.02 0.656896 -20.03 0.597621 -20.04 0.533681 -20.05 0.465938 -20.06 0.395318 -20.07 0.32279 -20.08 0.249349 -20.09 0.176115 -20.1 0.104051 -20.11 0.0340689 -20.12 -0.0329824 -20.13 -0.0963351 -20.14 -0.155315 -20.15 -0.209354 -20.16 -0.257991 -20.17 -0.300883 -20.18 -0.337803 -20.19 -0.368274 -20.2 -0.392562 -20.21 -0.410881 -20.22 -0.423434 -20.23 -0.430506 -20.24 -0.432446 -20.25 -0.42966 -20.26 -0.4226 -20.27 -0.411748 -20.28 -0.397608 -20.29 -0.380697 -20.3 -0.361459 -20.31 -0.340479 -20.32 -0.318326 -20.33 -0.295479 -20.34 -0.272391 -20.35 -0.249488 -20.36 -0.227167 -20.37 -0.205791 -20.38 -0.185688 -20.39 -0.167149 -20.4 -0.150428 -20.41 -0.135796 -20.42 -0.123485 -20.43 -0.113513 -20.44 -0.105956 -20.45 -0.100843 -20.46 -0.0981578 -20.47 -0.0978371 -20.48 -0.0997731 -20.49 -0.103814 -20.5 -0.109765 -20.51 -0.117394 -20.52 -0.126444 -20.53 -0.136652 -20.54 -0.147602 -20.55 -0.158955 -20.56 -0.170361 -20.57 -0.181471 -20.58 -0.191945 -20.59 -0.201457 -20.6 -0.209706 -20.61 -0.216423 -20.62 -0.221378 -20.63 -0.224382 -20.64 -0.225145 -20.65 -0.223719 -20.66 -0.220096 -20.67 -0.21431 -20.68 -0.206454 -20.69 -0.19667 -20.7 -0.185152 -20.71 -0.172137 -20.72 -0.157902 -20.73 -0.142757 -20.74 -0.12704 -20.75 -0.111114 -20.76 -0.0953862 -20.77 -0.0802298 -20.78 -0.0660098 -20.79 -0.0530779 -20.8 -0.0417664 -20.81 -0.0323819 -20.82 -0.0251993 -20.83 -0.0204573 -20.84 -0.0183534 -20.85 -0.0190407 -20.86 -0.0227382 -20.87 -0.0294988 -20.88 -0.0392083 -20.89 -0.051809 -20.9 -0.0671909 -20.91 -0.0851932 -20.92 -0.105605 -20.93 -0.128168 -20.94 -0.152579 -20.95 -0.178493 -20.96 -0.205528 -20.97 -0.233275 -20.98 -0.261258 -20.99 -0.288975 -21 -0.315946 -21.01 -0.341684 -21.02 -0.365701 -21.03 -0.38752 -21.04 -0.406676 -21.05 -0.422728 -21.06 -0.435264 -21.07 -0.443908 -21.08 -0.448302 -21.09 -0.447861 -21.1 -0.442665 -21.11 -0.432561 -21.12 -0.417459 -21.13 -0.397337 -21.14 -0.372244 -21.15 -0.342298 -21.16 -0.30769 -21.17 -0.268677 -21.18 -0.225588 -21.19 -0.178814 -21.2 -0.128627 -21.21 -0.0757612 -21.22 -0.0208161 -21.23 0.0355998 -21.24 0.0928429 -21.25 0.150243 -21.26 0.207111 -21.27 0.262749 -21.28 0.316461 -21.29 0.367556 -21.3 0.415365 -21.31 0.459022 -21.32 0.497965 -21.33 0.531754 -21.34 0.559898 -21.35 0.581974 -21.36 0.597631 -21.37 0.606594 -21.38 0.60867 -21.39 0.603755 -21.4 0.59183 -21.41 0.572967 -21.42 0.547105 -21.43 0.514468 -21.44 0.475684 -21.45 0.431172 -21.46 0.381418 -21.47 0.326972 -21.48 0.268435 -21.49 0.20645 -21.5 0.141694 -21.51 0.0748647 -21.52 0.0066736 -21.53 -0.0621656 -21.54 -0.130885 -21.55 -0.19877 -21.56 -0.265164 -21.57 -0.329446 -21.58 -0.391033 -21.59 -0.449388 -21.6 -0.504021 -21.61 -0.554493 -21.62 -0.600414 -21.63 -0.641448 -21.64 -0.6773 -21.65 -0.707327 -21.66 -0.731736 -21.67 -0.750394 -21.68 -0.763209 -21.69 -0.770133 -21.7 -0.771155 -21.71 -0.766304 -21.72 -0.755642 -21.73 -0.739267 -21.74 -0.717314 -21.75 -0.689947 -21.76 -0.657064 -21.77 -0.619164 -21.78 -0.576598 -21.79 -0.529672 -21.8 -0.478727 -21.81 -0.424136 -21.82 -0.366301 -21.83 -0.305654 -21.84 -0.242655 -21.85 -0.177784 -21.86 -0.111544 -21.87 -0.0444383 -21.88 0.0229392 -21.89 0.0900281 -21.9 0.156293 -21.91 0.221203 -21.92 0.284239 -21.93 0.344896 -21.94 0.402693 -21.95 0.45717 -21.96 0.5079 -21.97 0.554489 -21.98 0.596438 -21.99 0.633318 -22 0.665074 -22.01 0.691484 -22.02 0.712374 -22.03 0.727617 -22.04 0.737138 -22.05 0.74091 -22.06 0.73896 -22.07 0.731368 -22.08 0.718268 -22.09 0.69978 -22.1 0.675918 -22.11 0.647322 -22.12 0.614349 -22.13 0.577409 -22.14 0.53696 -22.15 0.493505 -22.16 0.447589 -22.17 0.39979 -22.18 0.350716 -22.19 0.300995 -22.2 0.251266 -22.21 0.202266 -22.22 0.154625 -22.23 0.108953 -22.24 0.0658291 -22.25 0.0257888 -22.26 -0.0106838 -22.27 -0.0431673 -22.28 -0.0713103 -22.29 -0.0948383 -22.3 -0.113559 -22.31 -0.127364 -22.32 -0.135956 -22.33 -0.139598 -22.34 -0.138544 -22.35 -0.133029 -22.36 -0.123354 -22.37 -0.109877 -22.38 -0.0930055 -22.39 -0.0731822 -22.4 -0.0508749 -22.41 -0.0265644 -22.42 -0.000733021 -22.43 0.0261691 -22.44 0.0536379 -22.45 0.0812166 -22.46 0.108518 -22.47 0.135194 -22.48 0.160939 -22.49 0.185486 -22.5 0.208614 -22.51 0.230135 -22.52 0.249901 -22.53 0.267789 -22.54 0.283652 -22.55 0.297352 -22.56 0.308925 -22.57 0.318313 -22.58 0.325459 -22.59 0.330304 -22.6 0.332785 -22.61 0.332832 -22.62 0.330374 -22.63 0.325332 -22.64 0.31763 -22.65 0.307171 -22.66 0.293721 -22.67 0.277419 -22.68 0.258237 -22.69 0.236178 -22.7 0.211275 -22.71 0.183598 -22.72 0.153259 -22.73 0.120413 -22.74 0.0852571 -22.75 0.048035 -22.76 0.00903162 -22.77 -0.031503 -22.78 -0.0730921 -22.79 -0.115333 -22.8 -0.157813 -22.81 -0.20011 -22.82 -0.241797 -22.83 -0.282453 -22.84 -0.321671 -22.85 -0.359069 -22.86 -0.394294 -22.87 -0.427032 -22.88 -0.456858 -22.89 -0.483616 -22.9 -0.507212 -22.91 -0.527545 -22.92 -0.544565 -22.93 -0.558277 -22.94 -0.568735 -22.95 -0.57604 -22.96 -0.580333 -22.97 -0.581787 -22.98 -0.580603 -22.99 -0.576922 -23 -0.570984 -23.01 -0.563112 -23.02 -0.553523 -23.03 -0.542415 -23.04 -0.52996 -23.05 -0.516298 -23.06 -0.501532 -23.07 -0.485726 -23.08 -0.468897 -23.09 -0.451021 -23.1 -0.432007 -23.11 -0.411691 -23.12 -0.38999 -23.13 -0.366732 -23.14 -0.341727 -23.15 -0.314778 -23.16 -0.285693 -23.17 -0.254294 -23.18 -0.220429 -23.19 -0.183986 -23.2 -0.144901 -23.21 -0.103163 -23.22 -0.0586717 -23.23 -0.0117727 -23.24 0.0372966 -23.25 0.0882176 -23.26 0.140591 -23.27 0.193939 -23.28 0.247717 -23.29 0.301319 -23.3 0.35409 -23.31 0.405344 -23.32 0.454376 -23.33 0.500251 -23.34 0.542385 -23.35 0.580176 -23.36 0.613044 -23.37 0.640483 -23.38 0.662077 -23.39 0.677513 -23.4 0.686585 -23.41 0.689205 -23.42 0.685403 -23.43 0.675327 -23.44 0.658973 -23.45 0.636864 -23.46 0.609649 -23.47 0.577882 -23.48 0.542181 -23.49 0.503209 -23.5 0.461653 -23.51 0.418216 -23.52 0.373588 -23.53 0.328442 -23.54 0.283412 -23.55 0.239124 -23.56 0.196172 -23.57 0.154976 -23.58 0.115925 -23.59 0.0793383 -23.6 0.0454731 -23.61 0.014524 -23.62 -0.0133689 -23.63 -0.038114 -23.64 -0.0596605 -23.65 -0.0779911 -23.66 -0.0930671 -23.67 -0.104777 -23.68 -0.113362 -23.69 -0.118882 -23.7 -0.121404 -23.71 -0.121009 -23.72 -0.117786 -23.73 -0.111843 -23.74 -0.103306 -23.75 -0.0923261 -23.76 -0.0790832 -23.77 -0.0637914 -23.78 -0.0465899 -23.79 -0.0279286 -23.8 -0.00815075 -23.81 0.0123622 -23.82 0.0331926 -23.83 0.0538921 -23.84 0.0739899 -23.85 0.0930017 -23.86 0.110441 -23.87 0.125832 -23.88 0.138722 -23.89 0.148499 -23.9 0.154894 -23.91 0.157661 -23.92 0.156576 -23.93 0.151492 -23.94 0.142347 -23.95 0.129163 -23.96 0.112044 -23.97 0.0911775 -23.98 0.0668224 -23.99 0.0393038 -24 0.00890147 -24.01 -0.0238897 -24.02 -0.0585222 -24.03 -0.0945251 -24.04 -0.131426 -24.05 -0.168763 -24.06 -0.206093 -24.07 -0.243002 -24.08 -0.27911 -24.09 -0.314076 -24.1 -0.347598 -24.11 -0.379363 -24.12 -0.409084 -24.13 -0.436662 -24.14 -0.461938 -24.15 -0.484778 -24.16 -0.50506 -24.17 -0.522675 -24.18 -0.537519 -24.19 -0.549494 -24.2 -0.5585 -24.21 -0.56444 -24.22 -0.567187 -24.23 -0.56647 -24.24 -0.562425 -24.25 -0.555 -24.26 -0.544171 -24.27 -0.529944 -24.28 -0.51237 -24.29 -0.491544 -24.3 -0.467611 -24.31 -0.440772 -24.32 -0.411282 -24.33 -0.379448 -24.34 -0.345518 -24.35 -0.310052 -24.36 -0.273503 -24.37 -0.236334 -24.38 -0.199016 -24.39 -0.162021 -24.4 -0.125801 -24.41 -0.0907821 -24.42 -0.057349 -24.43 -0.0258357 -24.44 0.00348276 -24.45 0.0302591 -24.46 0.0544256 -24.47 0.0759762 -24.48 0.0949178 -24.49 0.111318 -24.5 0.125297 -24.51 0.137018 -24.52 0.146678 -24.53 0.154492 -24.54 0.160685 -24.55 0.165482 -24.56 0.169054 -24.57 0.171605 -24.58 0.173332 -24.59 0.174353 -24.6 0.174749 -24.61 0.174564 -24.62 0.173809 -24.63 0.172467 -24.64 0.170496 -24.65 0.167838 -24.66 0.164429 -24.67 0.160183 -24.68 0.155012 -24.69 0.148919 -24.7 0.141887 -24.71 0.133921 -24.72 0.125055 -24.73 0.115347 -24.74 0.104882 -24.75 0.0937662 -24.76 0.0821225 -24.77 0.0700861 -24.78 0.0577979 -24.79 0.045403 -24.8 0.0330523 -24.81 0.0208696 -24.82 0.00896484 -24.83 -0.00256725 -24.84 -0.0136474 -24.85 -0.0242098 -24.86 -0.0341997 -24.87 -0.043568 -24.88 -0.052267 -24.89 -0.060244 -24.9 -0.0673794 -24.91 -0.0736288 -24.92 -0.0788967 -24.93 -0.0830565 -24.94 -0.085958 -24.95 -0.0874296 -24.96 -0.0872821 -24.97 -0.0853157 -24.98 -0.0813283 -24.99 -0.0751262 -25 -0.0665362 -25.01 -0.055289 -25.02 -0.0413467 -25.03 -0.0247547 -25.04 -0.0055637 -25.05 0.0160947 -25.06 0.0400023 -25.07 0.0658515 -25.08 0.0932464 -25.09 0.121708 -25.1 0.150681 -25.11 0.179551 -25.12 0.207604 -25.13 0.234064 -25.14 0.25827 -25.15 0.279545 -25.16 0.297253 -25.17 0.310823 -25.18 0.319764 -25.19 0.323688 -25.2 0.322319 -25.21 0.315506 -25.22 0.303227 -25.23 0.285505 -25.24 0.262397 -25.25 0.234595 -25.26 0.202583 -25.27 0.166937 -25.28 0.128301 -25.29 0.0873729 -25.3 0.0448808 -25.31 0.00156364 -25.32 -0.041848 -25.33 -0.0846498 -25.34 -0.126176 -25.35 -0.165637 -25.36 -0.2026 -25.37 -0.236598 -25.38 -0.267234 -25.39 -0.294182 -25.4 -0.317175 -25.41 -0.336008 -25.42 -0.350521 -25.43 -0.3606 -25.44 -0.366163 -25.45 -0.367153 -25.46 -0.363252 -25.47 -0.35465 -25.48 -0.34141 -25.49 -0.32354 -25.5 -0.301063 -25.51 -0.274025 -25.52 -0.242498 -25.53 -0.206591 -25.54 -0.166456 -25.55 -0.122296 -25.56 -0.0743746 -25.57 -0.022884 -25.58 0.0316848 -25.59 0.0887447 -25.6 0.147746 -25.61 0.208076 -25.62 0.269068 -25.63 0.330013 -25.64 0.390171 -25.65 0.448789 -25.66 0.505121 -25.67 0.558439 -25.68 0.607931 -25.69 0.652832 -25.7 0.692776 -25.71 0.727307 -25.72 0.756064 -25.73 0.778786 -25.74 0.795317 -25.75 0.8056 -25.76 0.809675 -25.77 0.80767 -25.78 0.79979 -25.79 0.786236 -25.8 0.767091 -25.81 0.743066 -25.82 0.714538 -25.83 0.68189 -25.84 0.6455 -25.85 0.605734 -25.86 0.562937 -25.87 0.517434 -25.88 0.469527 -25.89 0.419501 -25.9 0.367626 -25.91 0.314073 -25.92 0.259237 -25.93 0.203406 -25.94 0.146884 -25.95 0.0900029 -25.96 0.0331312 -25.97 -0.0233265 -25.98 -0.0789269 -25.99 -0.133191 -26 -0.18561 -26.01 -0.235653 -26.02 -0.282585 -26.03 -0.325933 -26.04 -0.365241 -26.05 -0.400036 -26.06 -0.429899 -26.07 -0.45448 -26.08 -0.473511 -26.09 -0.486821 -26.1 -0.49434 -26.11 -0.496104 -26.12 -0.492259 -26.13 -0.482856 -26.14 -0.468315 -26.15 -0.449282 -26.16 -0.426287 -26.17 -0.399918 -26.18 -0.370805 -26.19 -0.339599 -26.2 -0.306961 -26.21 -0.273538 -26.22 -0.239953 -26.23 -0.20679 -26.24 -0.174618 -26.25 -0.143994 -26.26 -0.115268 -26.27 -0.0887809 -26.28 -0.0648096 -26.29 -0.0435745 -26.3 -0.025243 -26.31 -0.00993685 -26.32 0.00226061 -26.33 0.0112974 -26.34 0.0171461 -26.35 0.0197734 -26.36 0.0189962 -26.37 0.0150533 -26.38 0.0079792 -26.39 -0.00217744 -26.4 -0.01535 -26.41 -0.0314497 -26.42 -0.0503601 -26.43 -0.0719314 -26.44 -0.0959756 -26.45 -0.122262 -26.46 -0.150514 -26.47 -0.180494 -26.48 -0.211703 -26.49 -0.243709 -26.5 -0.27606 -26.51 -0.308274 -26.52 -0.339859 -26.53 -0.370316 -26.54 -0.399157 -26.55 -0.425917 -26.56 -0.450169 -26.57 -0.471531 -26.58 -0.489502 -26.59 -0.503901 -26.6 -0.514637 -26.61 -0.521615 -26.62 -0.524816 -26.63 -0.524287 -26.64 -0.520136 -26.65 -0.512526 -26.66 -0.501658 -26.67 -0.487763 -26.68 -0.471088 -26.69 -0.451804 -26.7 -0.430167 -26.71 -0.406501 -26.72 -0.381004 -26.73 -0.353851 -26.74 -0.325185 -26.75 -0.295129 -26.76 -0.263785 -26.77 -0.231246 -26.78 -0.197608 -26.79 -0.162974 -26.8 -0.127462 -26.81 -0.0912269 -26.82 -0.0545355 -26.83 -0.0176585 -26.84 0.0190766 -26.85 0.0552858 -26.86 0.0905331 -26.87 0.124338 -26.88 0.15619 -26.89 0.185559 -26.9 0.211921 -26.91 0.234761 -26.92 0.253316 -26.93 0.267472 -26.94 0.276951 -26.95 0.281583 -26.96 0.281324 -26.97 0.276266 -26.98 0.266643 -26.99 0.252823 -27 0.235312 -27.01 0.214731 -27.02 0.191807 -27.03 0.1673 -27.04 0.142216 -27.05 0.11745 -27.06 0.0938686 -27.07 0.0722882 -27.08 0.0534519 -27.09 0.0380016 -27.1 0.0264553 -27.11 0.0191908 -27.12 0.0164338 -27.13 0.018253 -27.14 0.0247594 -27.15 0.0355994 -27.16 0.0502486 -27.17 0.0682013 -27.18 0.0888631 -27.19 0.111578 -27.2 0.135654 -27.21 0.160393 -27.22 0.185114 -27.23 0.209177 -27.24 0.232005 -27.25 0.253032 -27.26 0.271785 -27.27 0.288045 -27.28 0.301607 -27.29 0.312355 -27.3 0.320251 -27.31 0.325323 -27.32 0.32765 -27.33 0.327348 -27.34 0.324548 -27.35 0.319387 -27.36 0.311962 -27.37 0.302288 -27.38 0.290574 -27.39 0.276868 -27.4 0.261189 -27.41 0.243534 -27.42 0.223892 -27.43 0.20225 -27.44 0.178612 -27.45 0.153009 -27.46 0.125518 -27.47 0.0962702 -27.48 0.0653692 -27.49 0.03323 -27.5 0.000219715 -27.51 -0.0332228 -27.52 -0.0665919 -27.53 -0.0993271 -27.54 -0.130829 -27.55 -0.160481 -27.56 -0.187666 -27.57 -0.211798 -27.58 -0.232339 -27.59 -0.248568 -27.6 -0.260265 -27.61 -0.267269 -27.62 -0.269476 -27.63 -0.266916 -27.64 -0.259753 -27.65 -0.24828 -27.66 -0.232908 -27.67 -0.214153 -27.68 -0.192608 -27.69 -0.168926 -27.7 -0.143758 -27.71 -0.117866 -27.72 -0.0919469 -27.73 -0.0665918 -27.74 -0.042314 -27.75 -0.0195295 -27.76 0.00145479 -27.77 0.0204476 -27.78 0.0373743 -27.79 0.0522709 -27.8 0.0652736 -27.81 0.0765668 -27.82 0.0864326 -27.83 0.0952817 -27.84 0.103453 -27.85 0.111272 -27.86 0.119025 -27.87 0.126942 -27.88 0.135176 -27.89 0.143797 -27.9 0.15278 -27.91 0.162005 -27.92 0.171265 -27.93 0.180231 -27.94 0.188543 -27.95 0.195804 -27.96 0.201601 -27.97 0.205526 -27.98 0.207202 -27.99 0.206307 -28 0.20259 -28.01 0.19589 -28.02 0.186147 -28.03 0.173405 -28.04 0.157643 -28.05 0.139328 -28.06 0.11885 -28.07 0.0966534 -28.08 0.0732413 -28.09 0.0491524 -28.1 0.0249384 -28.11 0.00114134 -28.12 -0.0217281 -28.13 -0.0432101 -28.14 -0.0629117 -28.15 -0.0803949 -28.16 -0.0954884 -28.17 -0.108119 -28.18 -0.118249 -28.19 -0.125922 -28.2 -0.131241 -28.21 -0.134364 -28.22 -0.135477 -28.23 -0.134783 -28.24 -0.132482 -28.25 -0.128754 -28.26 -0.1237 -28.27 -0.117428 -28.28 -0.110027 -28.29 -0.101485 -28.3 -0.0917429 -28.31 -0.0807009 -28.32 -0.0682309 -28.33 -0.0541929 -28.34 -0.0384524 -28.35 -0.0208993 -28.36 -0.00146775 -28.37 0.0198846 -28.38 0.0431282 -28.39 0.0679771 -28.4 0.094148 -28.41 0.121256 -28.42 0.14882 -28.43 0.176268 -28.44 0.202956 -28.45 0.228184 -28.46 0.251221 -28.47 0.271329 -28.48 0.287771 -28.49 0.299556 -28.5 0.306378 -28.51 0.30778 -28.52 0.303432 -28.53 0.293152 -28.54 0.27691 -28.55 0.254842 -28.56 0.227238 -28.57 0.194544 -28.58 0.157339 -28.59 0.116325 -28.6 0.0721614 -28.61 0.0259485 -28.62 -0.0213694 -28.63 -0.0688743 -28.64 -0.11567 -28.65 -0.16091 -28.66 -0.203816 -28.67 -0.243703 -28.68 -0.279989 -28.69 -0.312208 -28.7 -0.340012 -28.71 -0.362939 -28.72 -0.380979 -28.73 -0.394267 -28.74 -0.402901 -28.75 -0.407056 -28.76 -0.406966 -28.77 -0.402906 -28.78 -0.395182 -28.79 -0.384112 -28.8 -0.370016 -28.81 -0.35321 -28.82 -0.333925 -28.83 -0.312454 -28.84 -0.289165 -28.85 -0.264315 -28.86 -0.238148 -28.87 -0.210909 -28.88 -0.182846 -28.89 -0.154216 -28.9 -0.125292 -28.91 -0.0963642 -28.92 -0.0677435 -28.93 -0.039776 -28.94 -0.0128791 -28.95 0.0126329 -28.96 0.0364073 -28.97 0.0581042 -28.98 0.0774087 -28.99 0.0940437 -29 0.107783 -29.01 0.118461 -29.02 0.125986 -29.03 0.130346 -29.04 0.131614 -29.05 0.129747 -29.06 0.125238 -29.07 0.118423 -29.08 0.109704 -29.09 0.0995374 -29.1 0.088415 -29.11 0.076849 -29.12 0.0653516 -29.13 0.0544169 -29.14 0.0445025 -29.15 0.036013 -29.16 0.0294075 -29.17 0.0248759 -29.18 0.0225454 -29.19 0.0224807 -29.2 0.0246581 -29.21 0.0289701 -29.22 0.0352343 -29.23 0.0432047 -29.24 0.0525859 -29.25 0.0630488 -29.26 0.0742462 -29.27 0.0858311 -29.28 0.0974337 -29.29 0.108742 -29.3 0.119495 -29.31 0.12948 -29.32 0.138535 -29.33 0.146552 -29.34 0.15347 -29.35 0.159277 -29.36 0.163992 -29.37 0.167666 -29.38 0.170337 -29.39 0.172063 -29.4 0.172949 -29.41 0.173033 -29.42 0.172328 -29.43 0.170814 -29.44 0.168434 -29.45 0.165098 -29.46 0.160682 -29.47 0.155038 -29.48 0.147999 -29.49 0.139371 -29.5 0.128884 -29.51 0.116496 -29.52 0.102097 -29.53 0.0856242 -29.54 0.0670687 -29.55 0.0464868 -29.56 0.024003 -29.57 -0.000187164 -29.58 -0.0258191 -29.59 -0.0525634 -29.6 -0.0800338 -29.61 -0.107785 -29.62 -0.135297 -29.63 -0.162084 -29.64 -0.187662 -29.65 -0.211563 -29.66 -0.233355 -29.67 -0.25265 -29.68 -0.269117 -29.69 -0.282497 -29.7 -0.292603 -29.71 -0.299326 -29.72 -0.302448 -29.73 -0.302149 -29.74 -0.298624 -29.75 -0.292058 -29.76 -0.282687 -29.77 -0.270781 -29.78 -0.256635 -29.79 -0.240555 -29.8 -0.222849 -29.81 -0.203815 -29.82 -0.183731 -29.83 -0.16283 -29.84 -0.14136 -29.85 -0.11954 -29.86 -0.097531 -29.87 -0.0754711 -29.88 -0.0534779 -29.89 -0.0316569 -29.9 -0.0101082 -29.91 0.0110653 -29.92 0.0317508 -29.93 0.0518192 -29.94 0.0710975 -29.95 0.0893641 -29.96 0.106454 -29.97 0.122135 -29.98 0.136158 -29.99 0.148257 -30 0.158161 -& -@target G0.S3 -@type xy -0 -2 -0.01 -2.0046046 -0.02 -2.0088901 -0.03 -2.01258 -0.04 -2.0154363 -0.05 -2.0172751 -0.06 -2.0179778 -0.07 -2.0174988 -0.08 -2.0158686 -0.09 -2.0131913 -0.1 -2.0096386 -0.11 -2.005439 -0.12 -2.0008583 -0.13 -1.9962335 -0.14 -1.9918698 -0.15 -1.9880496 -0.16 -1.9850199 -0.17 -1.9829767 -0.18 -1.982053 -0.19 -1.9823098 -0.2 -1.9837327 -0.21 -1.9862327 -0.22 -1.9896516 -0.23 -1.9937907 -0.24 -1.9983498 -0.25 -2.0030128 -0.26 -2.0074796 -0.27 -2.0114628 -0.28 -2.014706 -0.29 -2.0169995 -0.3 -2.0181932 -0.31 -2.0182055 -0.32 -2.0170277 -0.33 -2.0147241 -0.34 -2.0114047 -0.35 -2.007267 -0.36 -2.0026011 -0.37 -1.9976759 -0.38 -1.9927681 -0.39 -1.9881443 -0.4 -1.9840437 -0.41 -1.9806633 -0.42 -1.9781462 -0.43 -1.9765732 -0.44 -1.9759598 -0.45 -1.9762669 -0.46 -1.9774175 -0.47 -1.9791928 -0.48 -1.9814023 -0.49 -1.9838438 -0.5 -1.9863209 -0.51 -1.9886618 -0.52 -1.9907359 -0.53 -1.9924668 -0.54 -1.9938438 -0.55 -1.9949257 -0.56 -1.9958412 -0.57 -1.9968028 -0.58 -1.9980765 -0.59 -1.9999481 -0.6 -2.0027137 -0.61 -2.0066566 -0.62 -2.0120215 -0.63 -2.0189911 -0.64 -2.0276639 -0.65 -2.0380352 -0.66 -2.0499851 -0.67 -2.0632711 -0.68 -2.0775559 -0.69 -2.0922752 -0.7 -2.1068194 -0.71 -2.120531 -0.72 -2.1327154 -0.73 -2.1426769 -0.74 -2.1497548 -0.75 -2.1533614 -0.76 -2.1530208 -0.77 -2.1483963 -0.78 -2.1393256 -0.79 -2.1256654 -0.8 -2.1076922 -0.81 -2.086027 -0.82 -2.0613115 -0.83 -2.034349 -0.84 -2.00607 -0.85 -1.9774956 -0.86 -1.9496889 -0.87 -1.9237062 -0.88 -1.9005463 -0.89 -1.8811023 -0.9 -1.8662296 -0.91 -1.8566577 -0.92 -1.8524327 -0.93 -1.853594 -0.94 -1.8599408 -0.95 -1.8710298 -0.96 -1.8862059 -0.97 -1.9046264 -0.98 -1.9253036 -0.99 -1.9471565 -1 -1.9690635 -1.01 -1.9899024 -1.02 -2.0084338 -1.03 -2.023859 -1.04 -2.0354744 -1.05 -2.0427889 -1.06 -2.045546 -1.07 -2.043734 -1.08 -2.0375825 -1.09 -2.0275469 -1.1 -2.0142802 -1.11 -1.9985941 -1.12 -1.9814123 -1.13 -1.9637501 -1.14 -1.9466901 -1.15 -1.9311507 -1.16 -1.9179314 -1.17 -1.9076726 -1.18 -1.9008219 -1.19 -1.8976111 -1.2 -1.8980469 -1.21 -1.9019131 -1.22 -1.9087871 -1.23 -1.9180678 -1.24 -1.9290548 -1.25 -1.9407903 -1.26 -1.9523593 -1.27 -1.9629137 -1.28 -1.9716841 -1.29 -1.9780286 -1.3 -1.9814721 -1.31 -1.9817375 -1.32 -1.9787628 -1.33 -1.9727079 -1.34 -1.9639454 -1.35 -1.9529918 -1.36 -1.9406464 -1.37 -1.9278479 -1.38 -1.9155004 -1.39 -1.904502 -1.4 -1.8956902 -1.41 -1.8897863 -1.42 -1.8873502 -1.43 -1.8887388 -1.44 -1.8940818 -1.45 -1.9032655 -1.46 -1.9159867 -1.47 -1.931708 -1.48 -1.949414 -1.49 -1.968145 -1.5 -1.986849 -1.51 -2.004437 -1.52 -2.0198532 -1.53 -2.0321354 -1.54 -2.0404702 -1.55 -2.0442475 -1.56 -2.0430978 -1.57 -2.0369127 -1.58 -2.0255647 -1.59 -2.0099386 -1.6 -1.9908002 -1.61 -1.9691286 -1.62 -1.9460654 -1.63 -1.922853 -1.64 -1.9007668 -1.65 -1.881044 -1.66 -1.8648165 -1.67 -1.8530389 -1.68 -1.8464404 -1.69 -1.8458295 -1.7 -1.851056 -1.71 -1.861808 -1.72 -1.87754 -1.73 -1.897426 -1.74 -1.920397 -1.75 -1.945198 -1.76 -1.970455 -1.77 -1.994754 -1.78 -2.016709 -1.79 -2.035053 -1.8 -2.048446 -1.81 -2.056076 -1.82 -2.057611 -1.83 -2.052915 -1.84 -2.042196 -1.85 -2.026003 -1.86 -2.005203 -1.87 -1.980927 -1.88 -1.95452 -1.89 -1.92746 -1.9 -1.9012866 -1.91 -1.8776206 -1.92 -1.8580418 -1.93 -1.8435872 -1.94 -1.8351362 -1.95 -1.8332403 -1.96 -1.838091 -1.97 -1.8494975 -1.98 -1.866901 -1.99 -1.889396 -2 -1.915777 -2.01 -1.944597 -2.02 -1.974239 -2.03 -2.002833 -2.04 -2.028691 -2.05 -2.050288 -2.06 -2.066316 -2.07 -2.075754 -2.08 -2.077926 -2.09 -2.072547 -2.1 -2.059737 -2.11 -2.040028 -2.12 -2.014336 -2.13 -1.98392 -2.14 -1.950209 -2.15 -1.915299 -2.16 -1.881049 -2.17 -1.849298 -2.18 -1.821774 -2.19 -1.800004 -2.2 -1.785223 -2.21 -1.778312 -2.22 -1.779743 -2.23 -1.789547 -2.24 -1.807307 -2.25 -1.832509 -2.26 -1.863487 -2.27 -1.898479 -2.28 -1.935616 -2.29 -1.972887 -2.3 -2.008239 -2.31 -2.039686 -2.32 -2.065407 -2.33 -2.083847 -2.34 -2.093793 -2.35 -2.094449 -2.36 -2.085086 -2.37 -2.065974 -2.38 -2.03817 -2.39 -2.002841 -2.4 -1.961555 -2.41 -1.916209 -2.42 -1.868941 -2.43 -1.822035 -2.44 -1.777814 -2.45 -1.7385375 -2.46 -1.7062975 -2.47 -1.6831853 -2.48 -1.6710574 -2.49 -1.670449 -2.5 -1.681896 -2.51 -1.705458 -2.52 -1.7407211 -2.53 -1.7868266 -2.54 -1.84251 -2.55 -1.906169 -2.56 -1.975928 -2.57 -2.049734 -2.58 -2.125436 -2.59 -2.200692 -2.6 -2.273354 -2.61 -2.341556 -2.62 -2.403677 -2.63 -2.458384 -2.64 -2.504673 -2.65 -2.541863 -2.66 -2.56964 -2.67 -2.588006 -2.68 -2.597235 -2.69 -2.597876 -2.7 -2.590189 -2.71 -2.57562 -2.72 -2.555202 -2.73 -2.529943 -2.74 -2.500802 -2.75 -2.468683 -2.76 -2.43436 -2.77 -2.39849 -2.78 -2.361613 -2.79 -2.324104 -2.8 -2.286224 -2.81 -2.248121 -2.82 -2.209878 -2.83 -2.171524 -2.84 -2.133079 -2.85 -2.094581 -2.86 -2.056123 -2.87 -2.017874 -2.88 -1.980081 -2.89 -1.94309 -2.9 -1.9073309 -2.91 -1.8733108 -2.92 -1.8416969 -2.93 -1.8131475 -2.94 -1.7881463 -2.95 -1.7672247 -2.96 -1.7508261 -2.97 -1.7392838 -2.98 -1.732784 -2.99 -1.7313499 -3 -1.7348318 -3.01 -1.7428975 -3.02 -1.7550455 -3.03 -1.7706706 -3.04 -1.7889977 -3.05 -1.8089483 -3.06 -1.8295795 -3.07 -1.849951 -3.08 -1.869165 -3.09 -1.886411 -3.1 -1.901002 -3.11 -1.912415 -3.12 -1.920304 -3.13 -1.924528 -3.14 -1.925128 -3.15 -1.92217 -3.16 -1.916374 -3.17 -1.908352 -3.18 -1.898822 -3.19 -1.888569 -3.2 -1.878401 -3.21 -1.869096 -3.22 -1.861368 -3.23 -1.855819 -3.24 -1.852908 -3.25 -1.852927 -3.26 -1.856169 -3.27 -1.862361 -3.28 -1.871162 -3.29 -1.882104 -3.3 -1.894578 -3.31 -1.90787 -3.32 -1.921202 -3.33 -1.933773 -3.34 -1.944797 -3.35 -1.953555 -3.36 -1.959421 -3.37 -1.961726 -3.38 -1.960187 -3.39 -1.954767 -3.4 -1.945512 -3.41 -1.932641 -3.42 -1.91653 -3.43 -1.897696 -3.44 -1.876763 -3.45 -1.854439 -3.46 -1.831473 -3.47 -1.808631 -3.48 -1.786704 -3.49 -1.766468 -3.5 -1.748486 -3.51 -1.73327 -3.52 -1.721231 -3.53 -1.712679 -3.54 -1.707829 -3.55 -1.706812 -3.56 -1.70969 -3.57 -1.716481 -3.58 -1.727175 -3.59 -1.7418114 -3.6 -1.7605633 -3.61 -1.7832258 -3.62 -1.8098612 -3.63 -1.8405695 -3.64 -1.8754822 -3.65 -1.9147429 -3.66 -1.958494 -3.67 -2.006844 -3.68 -2.059848 -3.69 -2.117466 -3.7 -2.179537 -3.71 -2.246027 -3.72 -2.316079 -3.73 -2.388973 -3.74 -2.463792 -3.75 -2.539402 -3.76 -2.614509 -3.77 -2.687643 -3.78 -2.75722 -3.79 -2.821575 -3.8 -2.879021 -3.81 -2.92789 -3.82 -2.965951 -3.83 -2.992147 -3.84 -3.00552 -3.85 -3.005248 -3.86 -2.990807 -3.87 -2.962081 -3.88 -2.919291 -3.89 -2.863071 -3.9 -2.794425 -3.91 -2.714732 -3.92 -2.625634 -3.93 -2.528851 -3.94 -2.426811 -3.95 -2.322022 -3.96 -2.216777 -3.97 -2.113329 -3.98 -2.013808 -3.99 -1.920154 -4 -1.834054 -4.01 -1.756897 -4.02 -1.689736 -4.03 -1.6332603 -4.04 -1.5880938 -4.05 -1.5544044 -4.06 -1.531226 -4.07 -1.517837 -4.08 -1.513274 -4.09 -1.516388 -4.1 -1.5259007 -4.11 -1.5404701 -4.12 -1.5587498 -4.13 -1.5794469 -4.14 -1.60137 -4.15 -1.623466 -4.16 -1.644772 -4.17 -1.664654 -4.18 -1.682686 -4.19 -1.698642 -4.2 -1.712482 -4.21 -1.724329 -4.22 -1.734434 -4.23 -1.743145 -4.24 -1.750868 -4.25 -1.758024 -4.26 -1.765025 -4.27 -1.772262 -4.28 -1.780016 -4.29 -1.788459 -4.3 -1.797659 -4.31 -1.80758 -4.32 -1.818086 -4.33 -1.828962 -4.34 -1.839928 -4.35 -1.850667 -4.36 -1.860851 -4.37 -1.870171 -4.38 -1.87829 -4.39 -1.885045 -4.4 -1.890374 -4.41 -1.894298 -4.42 -1.896952 -4.43 -1.89858 -4.44 -1.899525 -4.45 -1.900226 -4.46 -1.901183 -4.47 -1.902938 -4.48 -1.906047 -4.49 -1.911142 -4.5 -1.918755 -4.51 -1.929208 -4.52 -1.942789 -4.53 -1.959659 -4.54 -1.97984 -4.55 -2.0032067 -4.56 -2.0294851 -4.57 -2.0582647 -4.58 -2.0890072 -4.59 -2.1210677 -4.6 -2.1537143 -4.61 -2.1860828 -4.62 -2.2173408 -4.63 -2.2466937 -4.64 -2.2733904 -4.65 -2.2967499 -4.66 -2.3161824 -4.67 -2.3312106 -4.68 -2.3414831 -4.69 -2.3467812 -4.7 -2.3470221 -4.71 -2.3422256 -4.72 -2.3322826 -4.73 -2.317846 -4.74 -2.2993144 -4.75 -2.2771569 -4.76 -2.2518968 -4.77 -2.2240893 -4.78 -2.1943012 -4.79 -2.1630967 -4.8 -2.1310185 -4.81 -2.0985752 -4.82 -2.0662326 -4.83 -2.034463 -4.84 -2.0036188 -4.85 -1.9739893 -4.86 -1.9458153 -4.87 -1.9192876 -4.88 -1.8945517 -4.89 -1.87171 -4.9 -1.850831 -4.91 -1.83195 -4.92 -1.815077 -4.93 -1.800197 -4.94 -1.787368 -4.95 -1.776476 -4.96 -1.767391 -4.97 -1.760014 -4.98 -1.754225 -4.99 -1.749888 -5 -1.746847 -5.01 -1.744932 -5.02 -1.743961 -5.03 -1.743746 -5.04 -1.744097 -5.05 -1.744832 -5.06 -1.745769 -5.07 -1.746744 -5.08 -1.747643 -5.09 -1.748396 -5.1 -1.748969 -5.11 -1.749386 -5.12 -1.749723 -5.13 -1.750109 -5.14 -1.750727 -5.15 -1.751805 -5.16 -1.753626 -5.17 -1.756557 -5.18 -1.760865 -5.19 -1.766859 -5.2 -1.774829 -5.21 -1.785036 -5.22 -1.797684 -5.23 -1.812922 -5.24 -1.830818 -5.25 -1.851362 -5.26 -1.874448 -5.27 -1.899887 -5.28 -1.927514 -5.29 -1.95677 -5.3 -1.987197 -5.31 -2.018271 -5.32 -2.049426 -5.33 -2.080069 -5.34 -2.109592 -5.35 -2.1374008 -5.36 -2.1629235 -5.37 -2.185637 -5.38 -2.2050742 -5.39 -2.2206002 -5.4 -2.232061 -5.41 -2.239307 -5.42 -2.242229 -5.43 -2.240809 -5.44 -2.235118 -5.45 -2.22531 -5.46 -2.2116154 -5.47 -2.194326 -5.48 -2.1737887 -5.49 -2.1503926 -5.5 -2.1244675 -5.51 -2.0965284 -5.52 -2.067096 -5.53 -2.036613 -5.54 -2.005509 -5.55 -1.9742 -5.56 -1.943076 -5.57 -1.912499 -5.58 -1.882804 -5.59 -1.854292 -5.6 -1.827231 -5.61 -1.801906 -5.62 -1.778564 -5.63 -1.75728 -5.64 -1.73817 -5.65 -1.721315 -5.66 -1.706762 -5.67 -1.694524 -5.68 -1.68458 -5.69 -1.676883 -5.7 -1.671361 -5.71 -1.667924 -5.72 -1.666493 -5.73 -1.667046 -5.74 -1.669362 -5.75 -1.673361 -5.76 -1.678989 -5.77 -1.686233 -5.78 -1.695123 -5.79 -1.705742 -5.8 -1.718233 -5.81 -1.732795 -5.82 -1.749684 -5.83 -1.76921 -5.84 -1.791963 -5.85 -1.8181364 -5.86 -1.8480991 -5.87 -1.8822077 -5.88 -1.9207748 -5.89 -1.9640389 -5.9 -2.012139 -5.91 -2.065089 -5.92 -2.122754 -5.93 -2.184829 -5.94 -2.25083 -5.95 -2.320214 -5.96 -2.391897 -5.97 -2.464739 -5.98 -2.5375 -5.99 -2.608802 -6 -2.677192 -6.01 -2.741129 -6.02 -2.799084 -6.03 -2.849563 -6.04 -2.891181 -6.05 -2.922675 -6.06 -2.942516 -6.07 -2.949882 -6.08 -2.944682 -6.09 -2.926741 -6.1 -2.896198 -6.11 -2.853521 -6.12 -2.799471 -6.13 -2.735126 -6.14 -2.661791 -6.15 -2.581004 -6.16 -2.494433 -6.17 -2.403845 -6.18 -2.311155 -6.19 -2.218357 -6.2 -2.127143 -6.21 -2.039051 -6.22 -1.955422 -6.23 -1.877363 -6.24 -1.805721 -6.25 -1.74107 -6.26 -1.683715 -6.27 -1.6337015 -6.28 -1.5909041 -6.29 -1.5552993 -6.3 -1.525859 -6.31 -1.501947 -6.32 -1.482901 -6.33 -1.46808 -6.34 -1.45692 -6.35 -1.448977 -6.36 -1.443963 -6.37 -1.441772 -6.38 -1.442489 -6.39 -1.446397 -6.4 -1.454246 -6.41 -1.46649 -6.42 -1.483843 -6.43 -1.507101 -6.44 -1.537057 -6.45 -1.574443 -6.46 -1.619864 -6.47 -1.673746 -6.48 -1.7362812 -6.49 -1.8073861 -6.5 -1.886671 -6.51 -1.973753 -6.52 -2.067246 -6.53 -2.165561 -6.54 -2.267001 -6.55 -2.369643 -6.56 -2.471385 -6.57 -2.57002 -6.58 -2.663312 -6.59 -2.74906 -6.6 -2.825201 -6.61 -2.88987 -6.62 -2.940949 -6.63 -2.976997 -6.64 -2.997743 -6.65 -3.002756 -6.66 -2.992055 -6.67 -2.966047 -6.68 -2.925576 -6.69 -2.871803 -6.7 -2.806236 -6.71 -2.73061 -6.72 -2.646861 -6.73 -2.556959 -6.74 -2.463026 -6.75 -2.367431 -6.76 -2.272093 -6.77 -2.178765 -6.78 -2.088975 -6.79 -2.004005 -6.8 -1.924856 -6.81 -1.852249 -6.82 -1.786629 -6.83 -1.7281735 -6.84 -1.6768533 -6.85 -1.6328502 -6.86 -1.595218 -6.87 -1.563418 -6.88 -1.536858 -6.89 -1.5149336 -6.9 -1.4970703 -6.91 -1.48275 -6.92 -1.4715444 -6.93 -1.4631249 -6.94 -1.457271 -6.95 -1.453871 -6.96 -1.453061 -6.97 -1.454795 -6.98 -1.459161 -6.99 -1.466302 -7 -1.476351 -7.01 -1.489401 -7.02 -1.505484 -7.03 -1.524544 -7.04 -1.546427 -7.05 -1.570866 -7.06 -1.59748 -7.07 -1.625836 -7.08 -1.655261 -7.09 -1.685045 -7.1 -1.714484 -7.11 -1.74286 -7.12 -1.769477 -7.13 -1.793687 -7.14 -1.814922 -7.15 -1.832722 -7.16 -1.846752 -7.17 -1.85682 -7.18 -1.86276 -7.19 -1.864654 -7.2 -1.862954 -7.21 -1.858064 -7.22 -1.850489 -7.23 -1.840811 -7.24 -1.829664 -7.25 -1.8177 -7.26 -1.805556 -7.27 -1.793835 -7.28 -1.783069 -7.29 -1.773733 -7.3 -1.766275 -7.31 -1.760822 -7.32 -1.757476 -7.33 -1.756235 -7.34 -1.757001 -7.35 -1.759603 -7.36 -1.763806 -7.37 -1.769346 -7.38 -1.775945 -7.39 -1.783342 -7.4 -1.791305 -7.41 -1.799679 -7.42 -1.808327 -7.43 -1.817228 -7.44 -1.826442 -7.45 -1.836097 -7.46 -1.846391 -7.47 -1.857565 -7.48 -1.869893 -7.49 -1.883661 -7.5 -1.899135 -7.51 -1.916548 -7.52 -1.9362 -7.53 -1.958089 -7.54 -1.982154 -7.55 -2.00826 -7.56 -2.036155 -7.57 -2.065478 -7.58 -2.095758 -7.59 -2.126431 -7.6 -2.156855 -7.61 -2.186329 -7.62 -2.214123 -7.63 -2.2393687 -7.64 -2.261305 -7.65 -2.2793594 -7.66 -2.2929546 -7.67 -2.3016116 -7.68 -2.3049675 -7.69 -2.3027854 -7.7 -2.294963 -7.71 -2.28154 -7.72 -2.2626875 -7.73 -2.2387087 -7.74 -2.2099152 -7.75 -2.1767997 -7.76 -2.140224 -7.77 -2.1008885 -7.78 -2.0595449 -7.79 -2.0169789 -7.8 -1.973993 -7.81 -1.931388 -7.82 -1.8899576 -7.83 -1.8504688 -7.84 -1.8136605 -7.85 -1.7802685 -7.86 -1.7512163 -7.87 -1.7268638 -7.88 -1.7077424 -7.89 -1.6943192 -7.9 -1.6869965 -7.91 -1.6861033 -7.92 -1.6918879 -7.93 -1.7045143 -7.94 -1.7240486 -7.95 -1.7504575 -7.96 -1.7835924 -7.97 -1.8236117 -7.98 -1.869663 -7.99 -1.9211602 -8 -1.9774225 -8.01 -2.0376406 -8.02 -2.100883 -8.03 -2.1661067 -8.04 -2.2321752 -8.05 -2.297877 -8.06 -2.361949 -8.07 -2.423107 -8.08 -2.479784 -8.09 -2.530781 -8.1 -2.575054 -8.11 -2.611586 -8.12 -2.6395 -8.13 -2.658096 -8.14 -2.666874 -8.15 -2.665543 -8.16 -2.654039 -8.17 -2.632526 -8.18 -2.601396 -8.19 -2.560946 -8.2 -2.512089 -8.21 -2.456177 -8.22 -2.394371 -8.23 -2.327937 -8.24 -2.258219 -8.25 -2.186605 -8.26 -2.114482 -8.27 -2.043215 -8.28 -1.974105 -8.29 -1.908367 -8.3 -1.847228 -8.31 -1.791921 -8.32 -1.7430064 -8.33 -1.7011463 -8.34 -1.6668533 -8.35 -1.6404912 -8.36 -1.6222818 -8.37 -1.612314 -8.38 -1.610555 -8.39 -1.616854 -8.4 -1.630961 -8.41 -1.6525726 -8.42 -1.6816729 -8.43 -1.7172208 -8.44 -1.7586222 -8.45 -1.8052159 -8.46 -1.85627 -8.47 -1.910987 -8.48 -1.968504 -8.49 -2.027896 -8.5 -2.088176 -8.51 -2.148303 -8.52 -2.207195 -8.53 -2.263507 -8.54 -2.316152 -8.55 -2.364035 -8.56 -2.406072 -8.57 -2.441241 -8.58 -2.468614 -8.59 -2.487387 -8.6 -2.49691 -8.61 -2.496714 -8.62 -2.486541 -8.63 -2.466359 -8.64 -2.435922 -8.65 -2.39599 -8.66 -2.347584 -8.67 -2.291708 -8.68 -2.229582 -8.69 -2.162619 -8.7 -2.092389 -8.71 -2.020571 -8.72 -1.948915 -8.73 -1.879181 -8.74 -1.813094 -8.75 -1.7525129 -8.76 -1.6991212 -8.77 -1.6539469 -8.78 -1.618011 -8.79 -1.592066 -8.8 -1.576576 -8.81 -1.57171 -8.82 -1.577331 -8.83 -1.593014 -8.84 -1.618063 -8.85 -1.651539 -8.86 -1.692396 -8.87 -1.739443 -8.88 -1.790818 -8.89 -1.8450196 -8.9 -1.900538 -8.91 -1.9559028 -8.92 -2.0097266 -8.93 -2.0607412 -8.94 -2.1078308 -8.95 -2.1500559 -8.96 -2.1866652 -8.97 -2.2171032 -8.98 -2.2405269 -8.99 -2.2572783 -9 -2.2674088 -9.01 -2.2711215 -9.02 -2.2687506 -9.03 -2.2607326 -9.04 -2.2475845 -9.05 -2.2298714 -9.06 -2.2081918 -9.07 -2.1831443 -9.08 -2.1553219 -9.09 -2.1251917 -9.1 -2.0934262 -9.11 -2.0605455 -9.12 -2.0270007 -9.13 -1.9932055 -9.14 -1.9595435 -9.15 -1.9263738 -9.16 -1.8940386 -9.17 -1.8628694 -9.18 -1.8331911 -9.19 -1.8053266 -9.2 -1.7797067 -9.21 -1.7566478 -9.22 -1.736386 -9.23 -1.719205 -9.24 -1.705356 -9.25 -1.69505 -9.26 -1.688441 -9.27 -1.685614 -9.28 -1.686576 -9.29 -1.691242 -9.3 -1.699434 -9.31 -1.710953 -9.32 -1.725431 -9.33 -1.742231 -9.34 -1.760788 -9.35 -1.780477 -9.36 -1.800628 -9.37 -1.820551 -9.38 -1.839561 -9.39 -1.857001 -9.4 -1.872275 -9.41 -1.884864 -9.42 -1.894315 -9.43 -1.900151 -9.44 -1.902448 -9.45 -1.901229 -9.46 -1.896669 -9.47 -1.889087 -9.48 -1.878941 -9.49 -1.866806 -9.5 -1.853357 -9.51 -1.839346 -9.52 -1.825569 -9.53 -1.812838 -9.54 -1.802136 -9.55 -1.79413 -9.56 -1.789464 -9.57 -1.788686 -9.58 -1.792209 -9.59 -1.8003 -9.6 -1.81307 -9.61 -1.830463 -9.62 -1.852261 -9.63 -1.878086 -9.64 -1.907418 -9.65 -1.939721 -9.66 -1.974054 -9.67 -2.009506 -9.68 -2.045171 -9.69 -2.08012 -9.7 -2.113432 -9.71 -2.1442226 -9.72 -2.1716675 -9.73 -2.1950318 -9.74 -2.2136888 -9.75 -2.227139 -9.76 -2.2347968 -9.77 -2.2364763 -9.78 -2.2323652 -9.79 -2.222613 -9.8 -2.207527 -9.81 -2.1875664 -9.82 -2.1633339 -9.83 -2.1355607 -9.84 -2.105091 -9.85 -2.0728641 -9.86 -2.0398928 -9.87 -2.0072772 -9.88 -1.9762528 -9.89 -1.9478894 -9.9 -1.9232523 -9.91 -1.9033536 -9.92 -1.8891281 -9.93 -1.8814086 -9.94 -1.8809021 -9.95 -1.8881748 -9.96 -1.9036264 -9.97 -1.927479 -9.98 -1.959827 -9.99 -2.000973 -10 -2.049932 -10.01 -2.106094 -10.02 -2.168652 -10.03 -2.236618 -10.04 -2.308838 -10.05 -2.384013 -10.06 -2.460723 -10.07 -2.537462 -10.08 -2.61266 -10.09 -2.684748 -10.1 -2.751715 -10.11 -2.812237 -10.12 -2.86495 -10.13 -2.908571 -10.14 -2.942022 -10.15 -2.964374 -10.16 -2.974941 -10.17 -2.973257 -10.18 -2.959116 -10.19 -2.932535 -10.2 -2.893807 -10.21 -2.842883 -10.22 -2.780917 -10.23 -2.70918 -10.24 -2.628823 -10.25 -2.54113 -10.26 -2.447516 -10.27 -2.349449 -10.28 -2.248442 -10.29 -2.146001 -10.3 -2.043603 -10.31 -1.942661 -10.32 -1.844633 -10.33 -1.750851 -10.34 -1.662232 -10.35 -1.5796547 -10.36 -1.503839 -10.37 -1.435339 -10.38 -1.37454 -10.39 -1.321674 -10.4 -1.27682 -10.41 -1.23992 -10.42 -1.210796 -10.43 -1.1892944 -10.44 -1.1752671 -10.45 -1.167832 -10.46 -1.1664796 -10.47 -1.170667 -10.48 -1.179831 -10.49 -1.193404 -10.5 -1.210823 -10.51 -1.231531 -10.52 -1.255016 -10.53 -1.280777 -10.54 -1.308344 -10.55 -1.337384 -10.56 -1.367365 -10.57 -1.397961 -10.58 -1.428867 -10.59 -1.45981 -10.6 -1.490569 -10.61 -1.520943 -10.62 -1.550778 -10.63 -1.579919 -10.64 -1.60828 -10.65 -1.635755 -10.66 -1.662215 -10.67 -1.687666 -10.68 -1.712072 -10.69 -1.735414 -10.7 -1.757661 -10.71 -1.778787 -10.72 -1.798771 -10.73 -1.817582 -10.74 -1.835185 -10.75 -1.851539 -10.76 -1.866594 -10.77 -1.88023 -10.78 -1.892408 -10.79 -1.903113 -10.8 -1.912294 -10.81 -1.919915 -10.82 -1.92596 -10.83 -1.930437 -10.84 -1.93339 -10.85 -1.934902 -10.86 -1.935101 -10.87 -1.93417 -10.88 -1.932323 -10.89 -1.929875 -10.9 -1.927218 -10.91 -1.924752 -10.92 -1.922917 -10.93 -1.922183 -10.94 -1.923038 -10.95 -1.925972 -10.96 -1.931458 -10.97 -1.939942 -10.98 -1.951812 -10.99 -1.967451 -11 -1.987289 -11.01 -2.011206 -11.02 -2.039197 -11.03 -2.071128 -11.04 -2.106732 -11.05 -2.145612 -11.06 -2.1872414 -11.07 -2.2309739 -11.08 -2.276059 -11.09 -2.321655 -11.1 -2.366855 -11.11 -2.4105418 -11.12 -2.4517894 -11.13 -2.489661 -11.14 -2.5232705 -11.15 -2.5518137 -11.16 -2.5745928 -11.17 -2.5910426 -11.18 -2.600748 -11.19 -2.603466 -11.2 -2.599127 -11.21 -2.58785 -11.22 -2.569578 -11.23 -2.545118 -11.24 -2.515258 -11.25 -2.480811 -11.26 -2.442709 -11.27 -2.401974 -11.28 -2.359691 -11.29 -2.316969 -11.3 -2.274919 -11.31 -2.23461 -11.32 -2.197044 -11.33 -2.163311 -11.34 -2.134222 -11.35 -2.110252 -11.36 -2.091832 -11.37 -2.079218 -11.38 -2.07248 -11.39 -2.071502 -11.4 -2.075992 -11.41 -2.085487 -11.42 -2.099375 -11.43 -2.116911 -11.44 -2.137288 -11.45 -2.159518 -11.46 -2.182474 -11.47 -2.205145 -11.48 -2.226536 -11.49 -2.245696 -11.5 -2.261745 -11.51 -2.273899 -11.52 -2.281496 -11.53 -2.284011 -11.54 -2.281067 -11.55 -2.272397 -11.56 -2.257641 -11.57 -2.237328 -11.58 -2.211763 -11.59 -2.181403 -11.6 -2.146835 -11.61 -2.108759 -11.62 -2.067964 -11.63 -2.025304 -11.64 -1.981673 -11.65 -1.937978 -11.66 -1.895108 -11.67 -1.854082 -11.68 -1.815617 -11.69 -1.780376 -11.7 -1.7489194 -11.71 -1.7216813 -11.72 -1.698963 -11.73 -1.6809272 -11.74 -1.6675969 -11.75 -1.658864 -11.76 -1.654494 -11.77 -1.654143 -11.78 -1.657542 -11.79 -1.664021 -11.8 -1.672942 -11.81 -1.6837236 -11.82 -1.6957928 -11.83 -1.7086035 -11.84 -1.7216586 -11.85 -1.7345305 -11.86 -1.7468728 -11.87 -1.7584363 -11.88 -1.769067 -11.89 -1.7786836 -11.9 -1.7873477 -11.91 -1.7952537 -11.92 -1.802634 -11.93 -1.809777 -11.94 -1.817013 -11.95 -1.824689 -11.96 -1.833149 -11.97 -1.842713 -11.98 -1.853653 -11.99 -1.86618 -12 -1.880464 -12.01 -1.896601 -12.02 -1.914425 -12.03 -1.933765 -12.04 -1.954364 -12.05 -1.975874 -12.06 -1.997881 -12.07 -2.0199216 -12.08 -2.041494 -12.09 -2.0620922 -12.1 -2.0812218 -12.11 -2.0984134 -12.12 -2.113092 -12.13 -2.1250969 -12.14 -2.1342262 -12.15 -2.1403882 -12.16 -2.1436081 -12.17 -2.1440287 -12.18 -2.1419085 -12.19 -2.1376093 -12.2 -2.1315846 -12.21 -2.1243633 -12.22 -2.1165209 -12.23 -2.108704 -12.24 -2.1015641 -12.25 -2.0956736 -12.26 -2.0915508 -12.27 -2.089638 -12.28 -2.090277 -12.29 -2.093701 -12.3 -2.100017 -12.31 -2.109206 -12.32 -2.121118 -12.33 -2.135481 -12.34 -2.151985 -12.35 -2.170047 -12.36 -2.189036 -12.37 -2.208322 -12.38 -2.227253 -12.39 -2.245168 -12.4 -2.261435 -12.41 -2.275464 -12.42 -2.286735 -12.43 -2.294815 -12.44 -2.299374 -12.45 -2.300066 -12.46 -2.296751 -12.47 -2.289636 -12.48 -2.278875 -12.49 -2.264731 -12.5 -2.247562 -12.51 -2.227799 -12.52 -2.205939 -12.53 -2.182515 -12.54 -2.158082 -12.55 -2.133197 -12.56 -2.108406 -12.57 -2.084271 -12.58 -2.061218 -12.59 -2.039614 -12.6 -2.019746 -12.61 -2.00182 -12.62 -1.985956 -12.63 -1.972188 -12.64 -1.960467 -12.65 -1.950671 -12.66 -1.942608 -12.67 -1.93603 -12.68 -1.9307048 -12.69 -1.9261898 -12.7 -1.9221316 -12.71 -1.9181729 -12.72 -1.9139571 -12.73 -1.9091478 -12.74 -1.90343 -12.75 -1.8965246 -12.76 -1.8881906 -12.77 -1.8782324 -12.78 -1.8665026 -12.79 -1.8527894 -12.8 -1.8371325 -12.81 -1.8195786 -12.82 -1.8001901 -12.83 -1.7790817 -12.84 -1.7564065 -12.85 -1.732362 -12.86 -1.707179 -12.87 -1.681122 -12.88 -1.654485 -12.89 -1.627581 -12.9 -1.600761 -12.91 -1.574407 -12.92 -1.548869 -12.93 -1.524507 -12.94 -1.501677 -12.95 -1.480725 -12.96 -1.461989 -12.97 -1.445786 -12.98 -1.432419 -12.99 -1.422154 -13 -1.415228 -13.01 -1.411971 -13.02 -1.412619 -13.03 -1.417132 -13.04 -1.425583 -13.05 -1.437995 -13.06 -1.454359 -13.07 -1.474588 -13.08 -1.49858 -13.09 -1.526141 -13.1 -1.557062 -13.11 -1.591058 -13.12 -1.627853 -13.13 -1.667175 -13.14 -1.70843 -13.15 -1.751181 -13.16 -1.794953 -13.17 -1.839252 -13.18 -1.883568 -13.19 -1.927381 -13.2 -1.970173 -13.21 -2.011437 -13.22 -2.050682 -13.23 -2.087445 -13.24 -2.121065 -13.25 -2.151341 -13.26 -2.17797 -13.27 -2.2007 -13.28 -2.219352 -13.29 -2.233815 -13.3 -2.244056 -13.31 -2.250119 -13.32 -2.252122 -13.33 -2.250255 -13.34 -2.244775 -13.35 -2.235834 -13.36 -2.223949 -13.37 -2.209596 -13.38 -2.193205 -13.39 -2.175221 -13.4 -2.156084 -13.41 -2.136223 -13.42 -2.11604 -13.43 -2.095904 -13.44 -2.076139 -13.45 -2.057028 -13.46 -2.03884 -13.47 -2.021769 -13.48 -2.00591 -13.49 -1.991354 -13.5 -1.978161 -13.51 -1.966379 -13.52 -1.956047 -13.53 -1.947213 -13.54 -1.939947 -13.55 -1.934347 -13.56 -1.930551 -13.57 -1.928802 -13.58 -1.929426 -13.59 -1.932618 -13.6 -1.938716 -13.61 -1.9480936 -13.62 -1.961142 -13.63 -1.9782554 -13.64 -1.9998045 -13.65 -2.0261172 -13.66 -2.0574523 -13.67 -2.0939747 -13.68 -2.1357713 -13.69 -2.1830436 -13.7 -2.235156 -13.71 -2.291658 -13.72 -2.351926 -13.73 -2.41516 -13.74 -2.480399 -13.75 -2.546532 -13.76 -2.612326 -13.77 -2.676451 -13.78 -2.737526 -13.79 -2.794135 -13.8 -2.844418 -13.81 -2.887345 -13.82 -2.921773 -13.83 -2.946725 -13.84 -2.961387 -13.85 -2.965205 -13.86 -2.957867 -13.87 -2.939322 -13.88 -2.909797 -13.89 -2.869812 -13.9 -2.820111 -13.91 -2.761289 -13.92 -2.694898 -13.93 -2.622514 -13.94 -2.545602 -13.95 -2.465691 -13.96 -2.384283 -13.97 -2.302874 -13.98 -2.222845 -13.99 -2.145432 -14 -2.071715 -14.01 -2.00257 -14.02 -1.938857 -14.03 -1.881063 -14.04 -1.829138 -14.05 -1.783033 -14.06 -1.742511 -14.07 -1.707168 -14.08 -1.676468 -14.09 -1.649784 -14.1 -1.62643 -14.11 -1.605706 -14.12 -1.5869315 -14.13 -1.5694973 -14.14 -1.5528536 -14.15 -1.536521 -14.16 -1.520217 -14.17 -1.503789 -14.18 -1.48722 -14.19 -1.470614 -14.2 -1.454188 -14.21 -1.438245 -14.22 -1.423162 -14.23 -1.409354 -14.24 -1.3972622 -14.25 -1.3874887 -14.26 -1.3802893 -14.27 -1.3759924 -14.28 -1.3748531 -14.29 -1.3770515 -14.3 -1.3826842 -14.31 -1.391767 -14.32 -1.404242 -14.33 -1.419991 -14.34 -1.438845 -14.35 -1.460608 -14.36 -1.485221 -14.37 -1.512333 -14.38 -1.54172 -14.39 -1.573237 -14.4 -1.606774 -14.41 -1.642265 -14.42 -1.67969 -14.43 -1.719061 -14.44 -1.760416 -14.45 -1.803801 -14.46 -1.849255 -14.47 -1.896882 -14.48 -1.9466 -14.49 -1.99823 -14.5 -2.051568 -14.51 -2.106315 -14.52 -2.1620702 -14.53 -2.2183293 -14.54 -2.2744937 -14.55 -2.329883 -14.56 -2.383749 -14.57 -2.435302 -14.58 -2.4836273 -14.59 -2.5278044 -14.6 -2.5672648 -14.61 -2.6013781 -14.62 -2.6296367 -14.63 -2.6516755 -14.64 -2.6672928 -14.65 -2.676461 -14.66 -2.679334 -14.67 -2.676244 -14.68 -2.667684 -14.69 -2.654236 -14.7 -2.636537 -14.71 -2.615728 -14.72 -2.592696 -14.73 -2.56832 -14.74 -2.543436 -14.75 -2.518789 -14.76 -2.495008 -14.77 -2.472566 -14.78 -2.451764 -14.79 -2.432714 -14.8 -2.415337 -14.81 -2.399439 -14.82 -2.384428 -14.83 -2.369689 -14.84 -2.354501 -14.85 -2.338076 -14.86 -2.319598 -14.87 -2.29827 -14.88 -2.273359 -14.89 -2.244238 -14.9 -2.210422 -14.91 -2.171599 -14.92 -2.127367 -14.93 -2.078056 -14.94 -2.02411 -14.95 -1.966085 -14.96 -1.904715 -14.97 -1.8409 -14.98 -1.775656 -14.99 -1.7100847 -15 -1.6453272 -15.01 -1.582519 -15.02 -1.522746 -15.03 -1.467207 -15.04 -1.416809 -15.05 -1.372086 -15.06 -1.33353 -15.07 -1.3014427 -15.08 -1.2759251 -15.09 -1.2568969 -15.1 -1.2441015 -15.11 -1.2371392 -15.12 -1.235491 -15.13 -1.238548 -15.14 -1.245745 -15.15 -1.256436 -15.16 -1.269785 -15.17 -1.285214 -15.18 -1.302228 -15.19 -1.320445 -15.2 -1.339586 -15.21 -1.359486 -15.22 -1.3801 -15.23 -1.401479 -15.24 -1.423748 -15.25 -1.447137 -15.26 -1.47197 -15.27 -1.498393 -15.28 -1.526618 -15.29 -1.556818 -15.3 -1.589059 -15.31 -1.623337 -15.32 -1.659538 -15.33 -1.697444 -15.34 -1.736731 -15.35 -1.776982 -15.36 -1.817696 -15.37 -1.858269 -15.38 -1.898068 -15.39 -1.936498 -15.4 -1.972993 -15.41 -2.007038 -15.42 -2.038204 -15.43 -2.066163 -15.44 -2.090704 -15.45 -2.111746 -15.46 -2.129344 -15.47 -2.143678 -15.48 -2.154916 -15.49 -2.1636 -15.5 -2.170298 -15.51 -2.175565 -15.52 -2.179976 -15.53 -2.184101 -15.54 -2.188478 -15.55 -2.193582 -15.56 -2.199809 -15.57 -2.20745 -15.58 -2.216686 -15.59 -2.2276373 -15.6 -2.2402297 -15.61 -2.2542105 -15.62 -2.2692902 -15.63 -2.2851033 -15.64 -2.3012276 -15.65 -2.317208 -15.66 -2.332581 -15.67 -2.346899 -15.68 -2.359753 -15.69 -2.370797 -15.7 -2.379706 -15.71 -2.3862062 -15.72 -2.3903355 -15.73 -2.3921038 -15.74 -2.3916085 -15.75 -2.3890176 -15.76 -2.3845622 -15.77 -2.3785103 -15.78 -2.3711577 -15.79 -2.3627973 -15.8 -2.35371 -15.81 -2.344138 -15.82 -2.334275 -15.83 -2.324276 -15.84 -2.314202 -15.85 -2.304047 -15.86 -2.293742 -15.87 -2.283163 -15.88 -2.272145 -15.89 -2.260493 -15.9 -2.248003 -15.91 -2.234479 -15.92 -2.219743 -15.93 -2.203574 -15.94 -2.185967 -15.95 -2.16694 -15.96 -2.14657 -15.97 -2.125009 -15.98 -2.102481 -15.99 -2.07928 -16 -2.055754 -16.01 -2.032288 -16.02 -2.009299 -16.03 -1.987205 -16.04 -1.966494 -16.05 -1.947545 -16.06 -1.930639 -16.07 -1.916023 -16.08 -1.903871 -16.09 -1.894274 -16.1 -1.887234 -16.11 -1.882668 -16.12 -1.880415 -16.13 -1.88024 -16.14 -1.881848 -16.15 -1.8849353 -16.16 -1.8891053 -16.17 -1.8939107 -16.18 -1.8989745 -16.19 -1.903936 -16.2 -1.9084696 -16.21 -1.9122896 -16.22 -1.9151583 -16.23 -1.9168912 -16.24 -1.9173583 -16.25 -1.9164799 -16.26 -1.9142001 -16.27 -1.9104726 -16.28 -1.9054254 -16.29 -1.8991288 -16.3 -1.8916689 -16.31 -1.8831406 -16.32 -1.8736432 -16.33 -1.863277 -16.34 -1.8521406 -16.35 -1.8403363 -16.36 -1.8279674 -16.37 -1.8151493 -16.38 -1.801998 -16.39 -1.7887046 -16.4 -1.7754594 -16.41 -1.7624885 -16.42 -1.7500627 -16.43 -1.7384937 -16.44 -1.7281407 -16.45 -1.7194034 -16.46 -1.7127141 -16.47 -1.7085282 -16.48 -1.7073131 -16.49 -1.7097617 -16.5 -1.7161907 -16.51 -1.726927 -16.52 -1.7422847 -16.53 -1.762493 -16.54 -1.7876734 -16.55 -1.8178337 -16.56 -1.8528493 -16.57 -1.8924623 -16.58 -1.9362754 -16.59 -1.9837576 -16.6 -2.0343481 -16.61 -2.0871543 -16.62 -2.1411998 -16.63 -2.1955338 -16.64 -2.2491631 -16.65 -2.3010733 -16.66 -2.3502644 -16.67 -2.395771 -16.68 -2.4366866 -16.69 -2.4721945 -16.7 -2.5015781 -16.71 -2.5240442 -16.72 -2.5389494 -16.73 -2.5463199 -16.74 -2.5459987 -16.75 -2.5379638 -16.76 -2.5223219 -16.77 -2.4993005 -16.78 -2.469236 -16.79 -2.432556 -16.8 -2.389769 -16.81 -2.341448 -16.82 -2.288168 -16.83 -2.230422 -16.84 -2.169213 -16.85 -2.10525 -16.86 -2.03925 -16.87 -1.9719358 -16.88 -1.9040336 -16.89 -1.8362678 -16.9 -1.7693637 -16.91 -1.7040417 -16.92 -1.6410199 -16.93 -1.5810048 -16.94 -1.5250061 -16.95 -1.4734965 -16.96 -1.4271017 -16.97 -1.3864241 -16.98 -1.3520113 -16.99 -1.3243456 -17 -1.3038288 -17.01 -1.29077 -17.02 -1.285368 -17.03 -1.287708 -17.04 -1.297746 -17.05 -1.315707 -17.06 -1.340985 -17.07 -1.372967 -17.08 -1.411081 -17.09 -1.454648 -17.1 -1.502909 -17.11 -1.555037 -17.12 -1.610169 -17.13 -1.66743 -17.14 -1.725955 -17.15 -1.784925 -17.16 -1.843546 -17.17 -1.90109 -17.18 -1.957033 -17.19 -2.010952 -17.2 -2.062553 -17.21 -2.111667 -17.22 -2.158245 -17.23 -2.2023409 -17.24 -2.2441051 -17.25 -2.2837528 -17.26 -2.3215443 -17.27 -2.357732 -17.28 -2.392569 -17.29 -2.426363 -17.3 -2.459281 -17.31 -2.4914044 -17.32 -2.5227246 -17.33 -2.5531278 -17.34 -2.5823965 -17.35 -2.6102155 -17.36 -2.6361827 -17.37 -2.6598219 -17.38 -2.6805848 -17.39 -2.69767 -17.4 -2.710733 -17.41 -2.719276 -17.42 -2.722861 -17.43 -2.721143 -17.44 -2.713889 -17.45 -2.700995 -17.46 -2.682497 -17.47 -2.658571 -17.48 -2.629534 -17.49 -2.595833 -17.5 -2.557802 -17.51 -2.516384 -17.52 -2.472349 -17.53 -2.426454 -17.54 -2.37946 -17.55 -2.332097 -17.56 -2.285035 -17.57 -2.238866 -17.58 -2.194074 -17.59 -2.151028 -17.6 -2.10997 -17.61 -2.07112 -17.62 -2.034404 -17.63 -1.999633 -17.64 -1.966578 -17.65 -1.934949 -17.66 -1.904416 -17.67 -1.874633 -17.68 -1.845274 -17.69 -1.816056 -17.7 -1.786755 -17.71 -1.757241 -17.72 -1.7274696 -17.73 -1.6975323 -17.74 -1.667642 -17.75 -1.6381036 -17.76 -1.609314 -17.77 -1.581743 -17.78 -1.555908 -17.79 -1.532358 -17.8 -1.511635 -17.81 -1.494255 -17.82 -1.480681 -17.83 -1.471376 -17.84 -1.466814 -17.85 -1.4669 -17.86 -1.4716542 -17.87 -1.4809723 -17.88 -1.4946268 -17.89 -1.5122789 -17.9 -1.5334917 -17.91 -1.5577537 -17.92 -1.584499 -17.93 -1.6131331 -17.94 -1.6430622 -17.95 -1.6737224 -17.96 -1.704513 -17.97 -1.734991 -17.98 -1.764801 -17.99 -1.793684 -18 -1.821482 -18.01 -1.848133 -18.02 -1.873671 -18.03 -1.898211 -18.04 -1.921932 -18.05 -1.945062 -18.06 -1.967849 -18.07 -1.990584 -18.08 -2.013505 -18.09 -2.036806 -18.1 -2.060622 -18.11 -2.0850212 -18.12 -2.1099931 -18.13 -2.135448 -18.14 -2.1612161 -18.15 -2.1870585 -18.16 -2.2126711 -18.17 -2.23766 -18.18 -2.261613 -18.19 -2.2841541 -18.2 -2.304901 -18.21 -2.3234954 -18.22 -2.3396267 -18.23 -2.3530399 -18.24 -2.3635471 -18.25 -2.371033 -18.26 -2.3754575 -18.27 -2.3768526 -18.28 -2.3752351 -18.29 -2.3707307 -18.3 -2.3636781 -18.31 -2.3543013 -18.32 -2.3428371 -18.33 -2.3295122 -18.34 -2.3145292 -18.35 -2.2980591 -18.36 -2.280226 -18.37 -2.261105 -18.38 -2.240715 -18.39 -2.219007 -18.4 -2.195824 -18.41 -2.17113 -18.42 -2.144777 -18.43 -2.116619 -18.44 -2.086514 -18.45 -2.054348 -18.46 -2.020049 -18.47 -1.9836039 -18.48 -1.945065 -18.49 -1.9045631 -18.5 -1.8623135 -18.51 -1.818536 -18.52 -1.7737476 -18.53 -1.728418 -18.54 -1.6830706 -18.55 -1.6382737 -18.56 -1.5946191 -18.57 -1.552709 -18.58 -1.5131307 -18.59 -1.4764368 -18.6 -1.4431325 -18.61 -1.4136541 -18.62 -1.3886097 -18.63 -1.368114 -18.64 -1.352237 -18.65 -1.341027 -18.66 -1.334438 -18.67 -1.332335 -18.68 -1.334504 -18.69 -1.340661 -18.7 -1.350476 -18.71 -1.363578 -18.72 -1.379581 -18.73 -1.398179 -18.74 -1.418938 -18.75 -1.441426 -18.76 -1.46533 -18.77 -1.490384 -18.78 -1.516369 -18.79 -1.54312 -18.8 -1.570519 -18.81 -1.598494 -18.82 -1.627014 -18.83 -1.65608 -18.84 -1.685733 -18.85 -1.716033 -18.86 -1.746997 -18.87 -1.77867 -18.88 -1.811084 -18.89 -1.844257 -18.9 -1.87819 -18.91 -1.912858 -18.92 -1.948218 -18.93 -1.984207 -18.94 -2.020743 -18.95 -2.057732 -18.96 -2.095077 -18.97 -2.132635 -18.98 -2.170286 -18.99 -2.20791 -19 -2.24539 -19.01 -2.28261 -19.02 -2.319455 -19.03 -2.3558079 -19.04 -2.3915483 -19.05 -2.4265472 -19.06 -2.460666 -19.07 -2.493664 -19.08 -2.525415 -19.09 -2.55572 -19.1 -2.584351 -19.11 -2.61105 -19.12 -2.635538 -19.13 -2.657513 -19.14 -2.676658 -19.15 -2.6926476 -19.16 -2.7051563 -19.17 -2.7138683 -19.18 -2.7182595 -19.19 -2.7181681 -19.2 -2.7134806 -19.21 -2.7040452 -19.22 -2.689772 -19.23 -2.670647 -19.24 -2.646732 -19.25 -2.618168 -19.26 -2.585174 -19.27 -2.548048 -19.28 -2.507163 -19.29 -2.462845 -19.3 -2.41563 -19.31 -2.366181 -19.32 -2.315061 -19.33 -2.262844 -19.34 -2.210102 -19.35 -2.157397 -19.36 -2.105262 -19.37 -2.054195 -19.38 -2.004651 -19.39 -1.957035 -19.4 -1.911746 -19.41 -1.86919 -19.42 -1.829465 -19.43 -1.792742 -19.44 -1.759145 -19.45 -1.7287555 -19.46 -1.7016162 -19.47 -1.6777395 -19.48 -1.6571147 -19.49 -1.6397137 -19.5 -1.6254979 -19.51 -1.614431 -19.52 -1.606667 -19.53 -1.601931 -19.54 -1.60017 -19.55 -1.601335 -19.56 -1.605372 -19.57 -1.612229 -19.58 -1.621848 -19.59 -1.634166 -19.6 -1.649111 -19.61 -1.666603 -19.62 -1.68655 -19.63 -1.7089947 -19.64 -1.7336917 -19.65 -1.76049 -19.66 -1.7892586 -19.67 -1.81986 -19.68 -1.8521531 -19.69 -1.885996 -19.7 -1.9212451 -19.71 -1.9577575 -19.72 -1.9953913 -19.73 -2.0340037 -19.74 -2.0734832 -19.75 -2.1136466 -19.76 -2.1543112 -19.77 -2.1952995 -19.78 -2.2364138 -19.79 -2.2774292 -19.8 -2.3180907 -19.81 -2.3581071 -19.82 -2.397146 -19.83 -2.434835 -19.84 -2.470757 -19.85 -2.504372 -19.86 -2.535101 -19.87 -2.562522 -19.88 -2.586096 -19.89 -2.605277 -19.9 -2.619536 -19.91 -2.628362 -19.92 -2.631294 -19.93 -2.627927 -19.94 -2.617937 -19.95 -2.601088 -19.96 -2.577149 -19.97 -2.54581 -19.98 -2.507639 -19.99 -2.462916 -20 -2.412055 -20.01 -2.355603 -20.02 -2.294227 -20.03 -2.228705 -20.04 -2.159914 -20.05 -2.088806 -20.06 -2.016392 -20.07 -1.943718 -20.08 -1.871975 -20.09 -1.802206 -20.1 -1.735405 -20.11 -1.6724949 -20.12 -1.6143166 -20.13 -1.5616069 -20.14 -1.514986 -20.15 -1.474945 -20.16 -1.441845 -20.17 -1.415909 -20.18 -1.397221 -20.19 -1.386154 -20.2 -1.382204 -20.21 -1.384952 -20.22 -1.393999 -20.23 -1.408863 -20.24 -1.428998 -20.25 -1.453806 -20.26 -1.4826536 -20.27 -1.5148872 -20.28 -1.5498485 -20.29 -1.5868835 -20.3 -1.6253916 -20.31 -1.6646928 -20.32 -1.7041746 -20.33 -1.7433084 -20.34 -1.7816121 -20.35 -1.8186491 -20.36 -1.8540284 -20.37 -1.8874076 -20.38 -1.918491 -20.39 -1.947028 -20.4 -1.972812 -20.41 -1.995601 -20.42 -2.0152 -20.43 -2.031684 -20.44 -2.045022 -20.45 -2.055226 -20.46 -2.0623482 -20.47 -2.0664799 -20.48 -2.0677509 -20.49 -2.066331 -20.5 -2.062427 -20.51 -2.056279 -20.52 -2.048147 -20.53 -2.038271 -20.54 -2.027112 -20.55 -2.015022 -20.56 -2.00237 -20.57 -1.989529 -20.58 -1.976873 -20.59 -1.964769 -20.6 -1.953568 -20.61 -1.943599 -20.62 -1.935158 -20.63 -1.92851 -20.64 -1.924022 -20.65 -1.921736 -20.66 -1.921745 -20.67 -1.924094 -20.68 -1.928767 -20.69 -1.935689 -20.7 -1.944725 -20.71 -1.95568 -20.72 -1.968308 -20.73 -1.982311 -20.74 -1.997347 -20.75 -2.01305 -20.76 -2.0289538 -20.77 -2.0446132 -20.78 -2.0595912 -20.79 -2.0734501 -20.8 -2.0857626 -20.81 -2.0961261 -20.82 -2.1041667 -20.83 -2.1095547 -20.84 -2.1120096 -20.85 -2.1113083 -20.86 -2.1071628 -20.87 -2.0994902 -20.88 -2.0884197 -20.89 -2.074034 -20.9 -2.0564931 -20.91 -2.0360358 -20.92 -2.012972 -20.93 -1.987681 -20.94 -1.960603 -20.95 -1.932231 -20.96 -1.903099 -20.97 -1.873781 -20.98 -1.844928 -20.99 -1.817135 -21 -1.790982 -21.01 -1.767023 -21.02 -1.745781 -21.03 -1.72773 -21.04 -1.713291 -21.05 -1.702821 -21.06 -1.696607 -21.07 -1.694863 -21.08 -1.697756 -21.09 -1.70564 -21.1 -1.718169 -21.11 -1.735243 -21.12 -1.756702 -21.13 -1.782324 -21.14 -1.811834 -21.15 -1.844918 -21.16 -1.881217 -21.17 -1.920351 -21.18 -1.961908 -21.19 -2.005463 -21.2 -2.050652 -21.21 -2.0969038 -21.22 -2.1437449 -21.23 -2.1907148 -21.24 -2.2373459 -21.25 -2.283167 -21.26 -2.3277 -21.27 -2.370462 -21.28 -2.4109663 -21.29 -2.4487189 -21.3 -2.4832253 -21.31 -2.5137823 -21.32 -2.5399458 -21.33 -2.561345 -21.34 -2.5775284 -21.35 -2.58808 -21.36 -2.5926269 -21.37 -2.5908488 -21.38 -2.5824915 -21.39 -2.5673814 -21.4 -2.5454303 -21.41 -2.5166504 -21.42 -2.4809398 -21.43 -2.4385071 -21.44 -2.3899985 -21.45 -2.3358903 -21.46 -2.276764 -21.47 -2.213304 -21.48 -2.146281 -21.49 -2.076539 -21.5 -2.004979 -21.51 -1.9325407 -21.52 -1.8601826 -21.53 -1.7888924 -21.54 -1.719761 -21.55 -1.653594 -21.56 -1.591201 -21.57 -1.533306 -21.58 -1.480542 -21.59 -1.433432 -21.6 -1.392393 -21.61 -1.3577258 -21.62 -1.3296239 -21.63 -1.3081719 -21.64 -1.2933682 -21.65 -1.2855739 -21.66 -1.2841111 -21.67 -1.2887355 -21.68 -1.2991631 -21.69 -1.3150792 -21.7 -1.336157 -21.71 -1.362064 -21.72 -1.392478 -21.73 -1.427091 -21.74 -1.465609 -21.75 -1.507764 -21.76 -1.553495 -21.77 -1.602393 -21.78 -1.65418 -21.79 -1.708632 -21.8 -1.765513 -21.81 -1.824571 -21.82 -1.885525 -21.83 -1.948061 -21.84 -2.011822 -21.85 -2.076407 -21.86 -2.141365 -21.87 -2.2061667 -21.88 -2.2702162 -21.89 -2.3329291 -21.9 -2.393692 -21.91 -2.451873 -21.92 -2.506837 -21.93 -2.557957 -21.94 -2.604633 -21.95 -2.646302 -21.96 -2.682456 -21.97 -2.71265 -21.98 -2.736324 -21.99 -2.753062 -22 -2.7629892 -22.01 -2.7660313 -22.02 -2.7622106 -22.03 -2.7516433 -22.04 -2.7345384 -22.05 -2.711186 -22.06 -2.681954 -22.07 -2.6472769 -22.08 -2.607646 -22.09 -2.563546 -22.1 -2.515405 -22.11 -2.464098 -22.12 -2.410232 -22.13 -2.354421 -22.14 -2.297277 -22.15 -2.2394 -22.16 -2.181379 -22.17 -2.123782 -22.18 -2.067157 -22.19 -2.012028 -22.2 -1.958892 -22.21 -1.908437 -22.22 -1.860956 -22.23 -1.816852 -22.24 -1.7764951 -22.25 -1.7402238 -22.26 -1.7083332 -22.27 -1.6810787 -22.28 -1.6586647 -22.29 -1.6412467 -22.3 -1.628924 -22.31 -1.621736 -22.32 -1.619944 -22.33 -1.623255 -22.34 -1.631408 -22.35 -1.644175 -22.36 -1.661266 -22.37 -1.682337 -22.38 -1.7069885 -22.39 -1.7347798 -22.4 -1.7652341 -22.41 -1.7978466 -22.42 -1.832099 -22.43 -1.8674861 -22.44 -1.9034309 -22.45 -1.9393916 -22.46 -1.974892 -22.47 -2.009487 -22.48 -2.042773 -22.49 -2.074387 -22.5 -2.104015 -22.51 -2.1313878 -22.52 -2.1562853 -22.53 -2.1785284 -22.54 -2.1979098 -22.55 -2.2142462 -22.56 -2.2276153 -22.57 -2.2379767 -22.58 -2.2453084 -22.59 -2.2496021 -22.6 -2.2508601 -22.61 -2.24909 -22.62 -2.2443085 -22.63 -2.2365329 -22.64 -2.2257897 -22.65 -2.2120879 -22.66 -2.195307 -22.67 -2.17571 -22.68 -2.153379 -22.69 -2.128427 -22.7 -2.100995 -22.71 -2.071258 -22.72 -2.039429 -22.73 -2.005759 -22.74 -1.9705381 -22.75 -1.934095 -22.76 -1.8967896 -22.77 -1.859012 -22.78 -1.8212389 -22.79 -1.783909 -22.8 -1.747462 -22.81 -1.7123331 -22.82 -1.6789456 -22.83 -1.6476992 -22.84 -1.6189617 -22.85 -1.5930581 -22.86 -1.5702676 -22.87 -1.550814 -22.88 -1.5350511 -22.89 -1.5229863 -22.9 -1.5145701 -22.91 -1.5097724 -22.92 -1.5085104 -22.93 -1.5106481 -22.94 -1.5160054 -22.95 -1.524363 -22.96 -1.535474 -22.97 -1.549069 -22.98 -1.564867 -22.99 -1.58264 -23 -1.60209 -23.01 -1.622876 -23.02 -1.644756 -23.03 -1.667513 -23.04 -1.690964 -23.05 -1.714957 -23.06 -1.739378 -23.07 -1.764149 -23.08 -1.78923 -23.09 -1.814616 -23.1 -1.840341 -23.11 -1.866481 -23.12 -1.893101 -23.13 -1.920301 -23.14 -1.948191 -23.15 -1.976886 -23.16 -2.006496 -23.17 -2.03712 -23.18 -2.06884 -23.19 -2.101708 -23.2 -2.135747 -23.21 -2.170939 -23.22 -2.2072803 -23.23 -2.2445593 -23.24 -2.2825896 -23.25 -2.3211246 -23.26 -2.359861 -23.27 -2.398432 -23.28 -2.436421 -23.29 -2.473362 -23.3 -2.508743 -23.31 -2.542025 -23.32 -2.572642 -23.33 -2.5997832 -23.34 -2.6230074 -23.35 -2.6418192 -23.36 -2.6557236 -23.37 -2.6642821 -23.38 -2.6671284 -23.39 -2.6639839 -23.4 -2.6546645 -23.41 -2.6390949 -23.42 -2.6173134 -23.43 -2.5894766 -23.44 -2.555606 -23.45 -2.516248 -23.46 -2.472085 -23.47 -2.423729 -23.48 -2.371877 -23.49 -2.317289 -23.5 -2.260769 -23.51 -2.203156 -23.52 -2.145286 -23.53 -2.087991 -23.54 -2.032063 -23.55 -1.978334 -23.56 -1.927577 -23.57 -1.880272 -23.58 -1.836906 -23.59 -1.7978643 -23.6 -1.7634361 -23.61 -1.733806 -23.62 -1.7090661 -23.63 -1.689218 -23.64 -1.6741835 -23.65 -1.6638169 -23.66 -1.6579789 -23.67 -1.656592 -23.68 -1.659107 -23.69 -1.665226 -23.7 -1.674645 -23.71 -1.687062 -23.72 -1.702184 -23.73 -1.719728 -23.74 -1.739421 -23.75 -1.7610039 -23.76 -1.7842258 -23.77 -1.8088396 -23.78 -1.8346611 -23.79 -1.8613304 -23.8 -1.8885713 -23.81 -1.9160893 -23.82 -1.9435654 -23.83 -1.9706545 -23.84 -1.9969863 -23.85 -2.0221671 -23.86 -2.0457846 -23.87 -2.0674164 -23.88 -2.0866384 -23.89 -2.1028447 -23.9 -2.1157333 -23.91 -2.1250034 -23.92 -2.1303581 -23.93 -2.1315625 -23.94 -2.1284585 -23.95 -2.1209708 -23.96 -2.109112 -23.97 -2.0929918 -23.98 -2.0728113 -23.99 -2.0488635 -24 -2.0214022 -24.01 -1.9909664 -24.02 -1.958196 -24.03 -1.9236672 -24.04 -1.8879869 -24.05 -1.8517766 -24.06 -1.8156568 -24.07 -1.7802295 -24.08 -1.7460649 -24.09 -1.7136875 -24.1 -1.6835671 -24.11 -1.6561895 -24.12 -1.6319862 -24.13 -1.6110765 -24.14 -1.5936451 -24.15 -1.5798081 -24.16 -1.5696254 -24.17 -1.563102 -24.18 -1.5602003 -24.19 -1.560844 -24.2 -1.564935 -24.21 -1.572352 -24.22 -1.582998 -24.23 -1.596891 -24.24 -1.613683 -24.25 -1.633234 -24.26 -1.655403 -24.27 -1.680047 -24.28 -1.707015 -24.29 -1.736146 -24.3 -1.767265 -24.31 -1.800176 -24.32 -1.834656 -24.33 -1.870457 -24.34 -1.907348 -24.35 -1.944925 -24.36 -1.982833 -24.37 -2.0207 -24.38 -2.058132 -24.39 -2.094722 -24.4 -2.130062 -24.41 -2.1637489 -24.42 -2.195399 -24.43 -2.2246543 -24.44 -2.2511988 -24.45 -2.2745911 -24.46 -2.2947056 -24.47 -2.3114722 -24.48 -2.3248218 -24.49 -2.334758 -24.5 -2.341347 -24.51 -2.344718 -24.52 -2.345059 -24.53 -2.342602 -24.54 -2.337618 -24.55 -2.330405 -24.56 -2.321215 -24.57 -2.310392 -24.58 -2.298313 -24.59 -2.285258 -24.6 -2.2714827 -24.61 -2.2572041 -24.62 -2.242603 -24.63 -2.2278207 -24.64 -2.212957 -24.65 -2.1980747 -24.66 -2.1832058 -24.67 -2.1683528 -24.68 -2.1534988 -24.69 -2.1386111 -24.7 -2.1236583 -24.71 -2.1086099 -24.72 -2.0934476 -24.73 -2.0781656 -24.74 -2.0627783 -24.75 -2.0473199 -24.76 -2.0318449 -24.77 -2.0164274 -24.78 -2.001161 -24.79 -1.9861762 -24.8 -1.9715782 -24.81 -1.9574872 -24.82 -1.9440228 -24.83 -1.9313004 -24.84 -1.9194276 -24.85 -1.908502 -24.86 -1.8986095 -24.87 -1.8898257 -24.88 -1.8822153 -24.89 -1.8758357 -24.9 -1.8708258 -24.91 -1.8671693 -24.92 -1.8649056 -24.93 -1.8640928 -24.94 -1.8647963 -24.95 -1.8670896 -24.96 -1.8710544 -24.97 -1.876778 -24.98 -1.8843498 -24.99 -1.8938558 -25 -1.9053713 -25.01 -1.9190562 -25.02 -1.9348904 -25.03 -1.9528016 -25.04 -1.972723 -25.05 -1.9945305 -25.06 -2.0180361 -25.07 -2.0429826 -25.08 -2.0690417 -25.09 -2.0958149 -25.1 -2.1228356 -25.11 -2.1495811 -25.12 -2.1754265 -25.13 -2.1996849 -25.14 -2.221765 -25.15 -2.2410405 -25.16 -2.2569072 -25.17 -2.2688062 -25.18 -2.2762388 -25.19 -2.2787917 -25.2 -2.2761479 -25.21 -2.2681043 -25.22 -2.25458 -25.23 -2.2355356 -25.24 -2.2109626 -25.25 -2.1815144 -25.26 -2.147648 -25.27 -2.1099324 -25.28 -2.069028 -25.29 -2.0256744 -25.3 -1.9806666 -25.31 -1.9348349 -25.32 -1.8890227 -25.33 -1.8440643 -25.34 -1.8007678 -25.35 -1.7601202 -25.36 -1.7226681 -25.37 -1.6890111 -25.38 -1.6596602 -25.39 -1.6350301 -25.4 -1.615445 -25.41 -1.6011309 -25.42 -1.5922295 -25.43 -1.5887955 -25.44 -1.5908111 -25.45 -1.5981947 -25.46 -1.6111163 -25.47 -1.6291357 -25.48 -1.6519529 -25.49 -1.6793193 -25.5 -1.7109676 -25.51 -1.7466126 -25.52 -1.7859567 -25.53 -1.8286867 -25.54 -1.8744753 -25.55 -1.9229781 -25.56 -1.9738281 -25.57 -2.0267036 -25.58 -2.0811137 -25.59 -2.136542 -25.6 -2.1924985 -25.61 -2.24846 -25.62 -2.3038731 -25.63 -2.3581588 -25.64 -2.410716 -25.65 -2.4609323 -25.66 -2.5081961 -25.67 -2.551902 -25.68 -2.5913322 -25.69 -2.6258034 -25.7 -2.6550227 -25.71 -2.6785622 -25.72 -2.6960649 -25.73 -2.7072529 -25.74 -2.7119366 -25.75 -2.7100145 -25.76 -2.701478 -25.77 -2.686407 -25.78 -2.664971 -25.79 -2.637344 -25.8 -2.603588 -25.81 -2.564482 -25.82 -2.520474 -25.83 -2.472049 -25.84 -2.419726 -25.85 -2.364043 -25.86 -2.305547 -25.87 -2.244792 -25.88 -2.182327 -25.89 -2.118696 -25.9 -2.054431 -25.91 -1.990083 -25.92 -1.926204 -25.93 -1.863289 -25.94 -1.801823 -25.95 -1.7422819 -25.96 -1.6851332 -25.97 -1.6308325 -25.98 -1.5798261 -25.99 -1.532547 -26 -1.489413 -26.01 -1.450817 -26.02 -1.41742 -26.03 -1.389397 -26.04 -1.366928 -26.05 -1.350237 -26.06 -1.339486 -26.07 -1.334767 -26.08 -1.336101 -26.09 -1.343424 -26.1 -1.356593 -26.11 -1.375381 -26.12 -1.399481 -26.13 -1.4286871 -26.14 -1.4624682 -26.15 -1.5001233 -26.16 -1.5410758 -26.17 -1.5847125 -26.18 -1.6303952 -26.19 -1.6774776 -26.2 -1.725311 -26.21 -1.773264 -26.22 -1.8207286 -26.23 -1.867131 -26.24 -1.9118897 -26.25 -1.9544219 -26.26 -1.994392 -26.27 -2.0314291 -26.28 -2.0652204 -26.29 -2.0954995 -26.3 -2.122051 -26.31 -2.1447022 -26.32 -2.1633236 -26.33 -2.1778234 -26.34 -2.1881411 -26.35 -2.1942204 -26.36 -2.1958162 -26.37 -2.1932563 -26.38 -2.1866162 -26.39 -2.1760056 -26.4 -2.161571 -26.41 -2.1434983 -26.42 -2.1220189 -26.43 -2.0974086 -26.44 -2.0699924 -26.45 -2.040141 -26.46 -2.008276 -26.47 -1.97479 -26.48 -1.940317 -26.49 -1.905409 -26.5 -1.870624 -26.51 -1.836532 -26.52 -1.803695 -26.53 -1.77266 -26.54 -1.743945 -26.55 -1.718025 -26.56 -1.695316 -26.57 -1.676174 -26.58 -1.661088 -26.59 -1.650161 -26.6 -1.643403 -26.61 -1.640837 -26.62 -1.642405 -26.63 -1.647985 -26.64 -1.657391 -26.65 -1.670386 -26.66 -1.686701 -26.67 -1.706039 -26.68 -1.728092 -26.69 -1.752628 -26.7 -1.779334 -26.71 -1.807844 -26.72 -1.837916 -26.73 -1.869331 -26.74 -1.901902 -26.75 -1.935461 -26.76 -1.969861 -26.77 -2.00496 -26.78 -2.040611 -26.79 -2.076659 -26.8 -2.112918 -26.81 -2.1491481 -26.82 -2.1850665 -26.83 -2.2203545 -26.84 -2.2546406 -26.85 -2.2875048 -26.86 -2.3184831 -26.87 -2.347079 -26.88 -2.372779 -26.89 -2.395063 -26.9 -2.413432 -26.91 -2.427408 -26.92 -2.436232 -26.93 -2.439922 -26.94 -2.438285 -26.95 -2.431242 -26.96 -2.418852 -26.97 -2.401313 -26.98 -2.378969 -26.99 -2.3522959 -27 -2.3219073 -27.01 -2.2885244 -27.02 -2.2529667 -27.03 -2.2160974 -27.04 -2.1789851 -27.05 -2.1425777 -27.06 -2.1077853 -27.07 -2.075455 -27.08 -2.0463486 -27.09 -2.0211163 -27.1 -2.000275 -27.11 -1.9841943 -27.12 -1.9730865 -27.13 -1.9670037 -27.14 -1.9660583 -27.15 -1.9698706 -27.16 -1.9778894 -27.17 -1.9895981 -27.18 -2.0043954 -27.19 -2.0216226 -27.2 -2.0405889 -27.21 -2.0606004 -27.22 -2.080982 -27.23 -2.1011 -27.24 -2.120384 -27.25 -2.13828 -27.26 -2.15432 -27.27 -2.168256 -27.28 -2.179866 -27.29 -2.189009 -27.3 -2.195612 -27.31 -2.199663 -27.32 -2.201193 -27.33 -2.200263 -27.34 -2.196948 -27.35 -2.191327 -27.36 -2.18344 -27.37 -2.173246 -27.38 -2.160911 -27.39 -2.146454 -27.4 -2.129878 -27.41 -2.111177 -27.42 -2.090356 -27.43 -2.067436 -27.44 -2.042468 -27.45 -2.01555 -27.46 -1.986837 -27.47 -1.9565502 -27.48 -1.9249202 -27.49 -1.892449 -27.5 -1.8596027 -27.51 -1.8269152 -27.52 -1.7949751 -27.53 -1.7644119 -27.54 -1.735877 -27.55 -1.710016 -27.56 -1.687453 -27.57 -1.668758 -27.58 -1.654428 -27.59 -1.645154 -27.6 -1.6410347 -27.61 -1.6421108 -27.62 -1.6483666 -27.63 -1.6596432 -27.64 -1.6756433 -27.65 -1.6959419 -27.66 -1.7200015 -27.67 -1.7471901 -27.68 -1.7768129 -27.69 -1.8081323 -27.7 -1.8404096 -27.71 -1.8728413 -27.72 -1.9047289 -27.73 -1.9354825 -27.74 -1.964607 -27.75 -1.9917194 -27.76 -2.0165562 -27.77 -2.0389757 -27.78 -2.058955 -27.79 -2.076579 -27.8 -2.0920263 -27.81 -2.1055069 -27.82 -2.1173164 -27.83 -2.1278779 -27.84 -2.1375143 -27.85 -2.1465195 -27.86 -2.1551344 -27.87 -2.163532 -27.88 -2.171801 -27.89 -2.1799434 -27.9 -2.1878677 -27.91 -2.1953941 -27.92 -2.2022596 -27.93 -2.2080615 -27.94 -2.2124771 -27.95 -2.2151248 -27.96 -2.2156325 -27.97 -2.2136585 -27.98 -2.2089173 -27.99 -2.2012009 -28 -2.1903916 -28.01 -2.1764766 -28.02 -2.1595531 -28.03 -2.1398258 -28.04 -2.1174662 -28.05 -2.0930753 -28.06 -2.0671692 -28.07 -2.0402985 -28.08 -2.0130458 -28.09 -1.9860001 -28.1 -1.9597323 -28.11 -1.9347724 -28.12 -1.9115893 -28.13 -1.8905738 -28.14 -1.8720269 -28.15 -1.8563011 -28.16 -1.8434167 -28.17 -1.8333074 -28.18 -1.8258868 -28.19 -1.8209965 -28.2 -1.8184336 -28.21 -1.8179596 -28.22 -1.8193309 -28.23 -1.8223122 -28.24 -1.8266966 -28.25 -1.832322 -28.26 -1.839124 -28.27 -1.8470602 -28.28 -1.8561198 -28.29 -1.8663931 -28.3 -1.8780168 -28.31 -1.8911606 -28.32 -1.9060088 -28.33 -1.9227382 -28.34 -1.9414962 -28.35 -1.9623789 -28.36 -1.9854094 -28.37 -2.0105607 -28.38 -2.0376971 -28.39 -2.066397 -28.4 -2.0962352 -28.41 -2.1266742 -28.42 -2.1570783 -28.43 -2.1867259 -28.44 -2.2148372 -28.45 -2.2405978 -28.46 -2.2631908 -28.47 -2.2818266 -28.48 -2.29575 -28.49 -2.3039384 -28.5 -2.306238 -28.51 -2.3023107 -28.52 -2.2919817 -28.53 -2.2752546 -28.54 -2.2523085 -28.55 -2.2235031 -28.56 -2.1893577 -28.57 -2.1505439 -28.58 -2.1078523 -28.59 -2.0621745 -28.6 -2.0144005 -28.61 -1.9657038 -28.62 -1.9170901 -28.63 -1.8695052 -28.64 -1.8238288 -28.65 -1.7808491 -28.66 -1.741248 -28.67 -1.7055822 -28.68 -1.6742814 -28.69 -1.6476429 -28.7 -1.6258398 -28.71 -1.6091656 -28.72 -1.5974513 -28.73 -1.5904195 -28.74 -1.587864 -28.75 -1.589534 -28.76 -1.5951551 -28.77 -1.6044476 -28.78 -1.6171353 -28.79 -1.6329611 -28.8 -1.6516909 -28.81 -1.6731137 -28.82 -1.6971207 -28.83 -1.7235495 -28.84 -1.7521339 -28.85 -1.7827058 -28.86 -1.8150843 -28.87 -1.8490558 -28.88 -1.884367 -28.89 -1.9207163 -28.9 -1.957747 -28.91 -1.9950468 -28.92 -2.0321491 -28.93 -2.068519 -28.94 -2.1035029 -28.95 -2.1365749 -28.96 -2.1671663 -28.97 -2.1947282 -28.98 -2.2187587 -28.99 -2.2388237 -29 -2.254574 -29.01 -2.265764 -29.02 -2.272269 -29.03 -2.274091 -29.04 -2.271366 -29.05 -2.264069 -29.06 -2.252954 -29.07 -2.238546 -29.08 -2.221455 -29.09 -2.2023604 -29.1 -2.1819796 -29.11 -2.1610465 -29.12 -2.1402777 -29.13 -2.1203483 -29.14 -2.1018663 -29.15 -2.0853505 -29.16 -2.0713744 -29.17 -2.0601332 -29.18 -2.051733 -29.19 -2.0461923 -29.2 -2.0434112 -29.21 -2.0431836 -29.22 -2.0452128 -29.23 -2.0491321 -29.24 -2.0545266 -29.25 -2.0609573 -29.26 -2.0679836 -29.27 -2.0751767 -29.28 -2.082125 -29.29 -2.0885157 -29.3 -2.0941102 -29.31 -2.0987473 -29.32 -2.1023418 -29.33 -2.1048829 -29.34 -2.1064212 -29.35 -2.1070639 -29.36 -2.1069489 -29.37 -2.1062387 -29.38 -2.1050859 -29.39 -2.1036421 -29.4 -2.1020316 -29.41 -2.1003086 -29.42 -2.0984719 -29.43 -2.0964574 -29.44 -2.0941368 -29.45 -2.0913256 -29.46 -2.0877875 -29.47 -2.0832512 -29.48 -2.0774226 -29.49 -2.0699832 -29.5 -2.060537 -29.51 -2.0489561 -29.52 -2.0350684 -29.53 -2.018779 -29.54 -2.0000796 -29.55 -1.9790608 -29.56 -1.9559136 -29.57 -1.9309297 -29.58 -1.9044945 -29.59 -1.8770766 -29.6 -1.849213 -29.61 -1.8215445 -29.62 -1.794719 -29.63 -1.7693515 -29.64 -1.7460343 -29.65 -1.7253148 -29.66 -1.7076699 -29.67 -1.6934959 -29.68 -1.6830935 -29.69 -1.6766535 -29.7 -1.6742598 -29.71 -1.6758876 -29.72 -1.6816129 -29.73 -1.6910464 -29.74 -1.7037977 -29.75 -1.719497 -29.76 -1.737733 -29.77 -1.7580772 -29.78 -1.7801005 -29.79 -1.8033918 -29.8 -1.8275709 -29.81 -1.8523027 -29.82 -1.8773068 -29.83 -1.9023538 -29.84 -1.927267 -29.85 -1.9519422 -29.86 -1.9763218 -29.87 -2.0003798 -29.88 -2.0241111 -29.89 -2.0475157 -29.9 -2.0705845 -29.91 -2.0932852 -29.92 -2.1155503 -29.93 -2.1372673 -29.94 -2.1582497 -29.95 -2.1782258 -29.96 -2.1969515 -29.97 -2.2140957 -29.98 -2.2292936 -29.99 -2.2421535 -30 -2.2522766 -& -@target G1.S0 -@type xy -0 -2 -0.01 -2 -0.02 -2 -0.03 -2 -0.04 -2 -0.05 -2 -0.06 -2 -0.07 -2 -0.08 -2 -0.09 -2 -0.1 -2 -0.11 -2 -0.12 -2 -0.13 -2 -0.14 -2 -0.15 -2 -0.16 -2 -0.17 -2 -0.18 -2 -0.19 -2 -0.2 -2 -0.21 -2 -0.22 -2 -0.23 -2 -0.24 -2 -0.25 -2 -0.26 -2 -0.27 -2 -0.28 -2 -0.29 -2 -0.3 -2 -0.31 -2 -0.32 -2 -0.33 -2 -0.34 -2 -0.35 -2 -0.36 -2 -0.37 -2 -0.38 -2 -0.39 -2 -0.4 -2 -0.41 -2 -0.42 -2 -0.43 -2 -0.44 -2 -0.45 -2 -0.46 -2 -0.47 -2 -0.48 -2 -0.49 -2 -0.5 -2 -0.51 -2 -0.52 -2 -0.53 -2 -0.54 -2 -0.55 -2 -0.56 -2 -0.57 -2 -0.58 -2 -0.59 -2 -0.6 -2 -0.61 -2 -0.62 -2 -0.63 -2 -0.64 -2 -0.65 -2 -0.66 -2 -0.67 -2 -0.68 -2 -0.69 -2 -0.7 -2 -0.71 -2 -0.72 -2 -0.73 -2 -0.74 -2 -0.75 -2 -0.76 -2 -0.77 -2 -0.78 -2 -0.79 -2 -0.8 -2 -0.81 -2 -0.82 -2 -0.83 -2 -0.84 -2 -0.85 -2 -0.86 -2 -0.87 -2 -0.88 -2 -0.89 -2 -0.9 -2 -0.91 -2 -0.92 -2 -0.93 -2 -0.94 -2 -0.95 -2 -0.96 -2 -0.97 -2 -0.98 -2 -0.99 -2 -1 -2 -1.01 -2 -1.02 -2 -1.03 -2 -1.04 -2 -1.05 -2 -1.06 -2 -1.07 -2 -1.08 -2 -1.09 -2 -1.1 -2 -1.11 -2 -1.12 -2 -1.13 -2 -1.14 -2 -1.15 -2 -1.16 -2 -1.17 -2 -1.18 -2 -1.19 -2 -1.2 -2 -1.21 -2 -1.22 -2 -1.23 -2 -1.24 -2 -1.25 -2 -1.26 -2 -1.27 -2 -1.28 -2 -1.29 -2 -1.3 -2 -1.31 -2 -1.32 -2 -1.33 -2 -1.34 -2 -1.35 -2 -1.36 -2 -1.37 -2 -1.38 -2 -1.39 -2 -1.4 -2 -1.41 -2 -1.42 -2 -1.43 -2 -1.44 -2 -1.45 -2 -1.46 -2 -1.47 -2 -1.48 -2 -1.49 -2 -1.5 -2 -1.51 -2 -1.52 -2 -1.53 -2 -1.54 -2 -1.55 -2 -1.56 -2 -1.57 -2 -1.58 -2 -1.59 -2 -1.6 -2 -1.61 -2 -1.62 -2 -1.63 -2 -1.64 -2 -1.65 -2 -1.66 -2 -1.67 -2 -1.68 -2 -1.69 -2 -1.7 -2 -1.71 -2 -1.72 -2 -1.73 -2 -1.74 -2 -1.75 -2 -1.76 -2 -1.77 -2 -1.78 -2 -1.79 -2 -1.8 -2 -1.81 -2 -1.82 -2 -1.83 -2 -1.84 -2 -1.85 -2 -1.86 -2 -1.87 -2 -1.88 -2 -1.89 -2 -1.9 -2 -1.91 -2 -1.92 -2 -1.93 -2 -1.94 -2 -1.95 -2 -1.96 -2 -1.97 -2 -1.98 -2 -1.99 -2 -2 -2 -2.01 -2 -2.02 -2 -2.03 -2 -2.04 -2 -2.05 -2 -2.06 -2 -2.07 -2 -2.08 -2 -2.09 -2 -2.1 -2 -2.11 -2 -2.12 -2 -2.13 -2 -2.14 -2 -2.15 -2 -2.16 -2 -2.17 -2 -2.18 -2 -2.19 -2 -2.2 -2 -2.21 -2 -2.22 -2 -2.23 -2 -2.24 -2 -2.25 -2 -2.26 -2 -2.27 -2 -2.28 -2 -2.29 -2 -2.3 -2 -2.31 -2 -2.32 -2 -2.33 -2 -2.34 -2 -2.35 -2 -2.36 -2 -2.37 -2 -2.38 -2 -2.39 -2 -2.4 -2 -2.41 -2 -2.42 -2 -2.43 -2 -2.44 -2 -2.45 -2 -2.46 -2 -2.47 -2 -2.48 -2 -2.49 -2 -2.5 -2 -2.51 -2 -2.52 -2 -2.53 -2 -2.54 -2 -2.55 -2 -2.56 -2 -2.57 -2 -2.58 -2 -2.59 -2 -2.6 -2 -2.61 -2 -2.62 -2 -2.63 -2 -2.64 -2 -2.65 -2 -2.66 -2 -2.67 -2 -2.68 -2 -2.69 -2 -2.7 -2 -2.71 -2 -2.72 -2 -2.73 -2 -2.74 -2 -2.75 -2 -2.76 -2 -2.77 -2 -2.78 -2 -2.79 -2 -2.8 -2 -2.81 -2 -2.82 -2 -2.83 -2 -2.84 -2 -2.85 -2 -2.86 -2 -2.87 -2 -2.88 -2 -2.89 -2 -2.9 -2 -2.91 -2 -2.92 -2 -2.93 -2 -2.94 -2 -2.95 -2 -2.96 -2 -2.97 -2 -2.98 -2 -2.99 -2 -3 -2 -3.01 -2 -3.02 -2 -3.03 -2 -3.04 -2 -3.05 -2 -3.06 -2 -3.07 -2 -3.08 -2 -3.09 -2 -3.1 -2 -3.11 -2 -3.12 -2 -3.13 -2 -3.14 -2 -3.15 -2 -3.16 -2 -3.17 -2 -3.18 -2 -3.19 -2 -3.2 -2 -3.21 -2 -3.22 -2 -3.23 -2 -3.24 -2 -3.25 -2 -3.26 -2 -3.27 -2 -3.28 -2 -3.29 -2 -3.3 -2 -3.31 -2 -3.32 -2 -3.33 -2 -3.34 -2 -3.35 -2 -3.36 -2 -3.37 -2 -3.38 -2 -3.39 -2 -3.4 -2 -3.41 -2 -3.42 -2 -3.43 -2 -3.44 -2 -3.45 -2 -3.46 -2 -3.47 -2 -3.48 -2 -3.49 -2 -3.5 -2 -3.51 -2 -3.52 -2 -3.53 -2 -3.54 -2 -3.55 -2 -3.56 -2 -3.57 -2 -3.58 -2 -3.59 -2 -3.6 -2 -3.61 -2 -3.62 -2 -3.63 -2 -3.64 -2 -3.65 -2 -3.66 -2 -3.67 -2 -3.68 -2 -3.69 -2 -3.7 -2 -3.71 -2 -3.72 -2 -3.73 -2 -3.74 -2 -3.75 -2 -3.76 -2 -3.77 -2 -3.78 -2 -3.79 -2 -3.8 -2 -3.81 -2 -3.82 -2 -3.83 -2 -3.84 -2 -3.85 -2 -3.86 -2 -3.87 -2 -3.88 -2 -3.89 -2 -3.9 -2 -3.91 -2 -3.92 -2 -3.93 -2 -3.94 -2 -3.95 -2 -3.96 -2 -3.97 -2 -3.98 -2 -3.99 -2 -4 -2 -4.01 -2 -4.02 -2 -4.03 -2 -4.04 -2 -4.05 -2 -4.06 -2 -4.07 -2 -4.08 -2 -4.09 -2 -4.1 -2 -4.11 -2 -4.12 -2 -4.13 -2 -4.14 -2 -4.15 -2 -4.16 -2 -4.17 -2 -4.18 -2 -4.19 -2 -4.2 -2 -4.21 -2 -4.22 -2 -4.23 -2 -4.24 -2 -4.25 -2 -4.26 -2 -4.27 -2 -4.28 -2 -4.29 -2 -4.3 -2 -4.31 -2 -4.32 -2 -4.33 -2 -4.34 -2 -4.35 -2 -4.36 -2 -4.37 -2 -4.38 -2 -4.39 -2 -4.4 -2 -4.41 -2 -4.42 -2 -4.43 -2 -4.44 -2 -4.45 -2 -4.46 -2 -4.47 -2 -4.48 -2 -4.49 -2 -4.5 -2 -4.51 -2 -4.52 -2 -4.53 -2 -4.54 -2 -4.55 -2 -4.56 -2 -4.57 -2 -4.58 -2 -4.59 -2 -4.6 -2 -4.61 -2 -4.62 -2 -4.63 -2 -4.64 -2 -4.65 -2 -4.66 -2 -4.67 -2 -4.68 -2 -4.69 -2 -4.7 -2 -4.71 -2 -4.72 -2 -4.73 -2 -4.74 -2 -4.75 -2 -4.76 -2 -4.77 -2 -4.78 -2 -4.79 -2 -4.8 -2 -4.81 -2 -4.82 -2 -4.83 -2 -4.84 -2 -4.85 -2 -4.86 -2 -4.87 -2 -4.88 -2 -4.89 -2 -4.9 -2 -4.91 -2 -4.92 -2 -4.93 -2 -4.94 -2 -4.95 -2 -4.96 -2 -4.97 -2 -4.98 -2 -4.99 -2 -5 -2 -5.01 -2 -5.02 -2 -5.03 -2 -5.04 -2 -5.05 -2 -5.06 -2 -5.07 -2 -5.08 -2 -5.09 -2 -5.1 -2 -5.11 -2 -5.12 -2 -5.13 -2 -5.14 -2 -5.15 -2 -5.16 -2 -5.17 -2 -5.18 -2 -5.19 -2 -5.2 -2 -5.21 -2 -5.22 -2 -5.23 -2 -5.24 -2 -5.25 -2 -5.26 -2 -5.27 -2 -5.28 -2 -5.29 -2 -5.3 -2 -5.31 -2 -5.32 -2 -5.33 -2 -5.34 -2 -5.35 -2 -5.36 -2 -5.37 -2 -5.38 -2 -5.39 -2 -5.4 -2 -5.41 -2 -5.42 -2 -5.43 -2 -5.44 -2 -5.45 -2 -5.46 -2 -5.47 -2 -5.48 -2 -5.49 -2 -5.5 -2 -5.51 -2 -5.52 -2 -5.53 -2 -5.54 -2 -5.55 -2 -5.56 -2 -5.57 -2 -5.58 -2 -5.59 -2 -5.6 -2 -5.61 -2 -5.62 -2 -5.63 -2 -5.64 -2 -5.65 -2 -5.66 -2 -5.67 -2 -5.68 -2 -5.69 -2 -5.7 -2 -5.71 -2 -5.72 -2 -5.73 -2 -5.74 -2 -5.75 -2 -5.76 -2 -5.77 -2 -5.78 -2 -5.79 -2 -5.8 -2 -5.81 -2 -5.82 -2 -5.83 -2 -5.84 -2 -5.85 -2 -5.86 -2 -5.87 -2 -5.88 -2 -5.89 -2 -5.9 -2 -5.91 -2 -5.92 -2 -5.93 -2 -5.94 -2 -5.95 -2 -5.96 -2 -5.97 -2 -5.98 -2 -5.99 -2 -6 -2 -6.01 -2 -6.02 -2 -6.03 -2 -6.04 -2 -6.05 -2 -6.06 -2 -6.07 -2 -6.08 -2 -6.09 -2 -6.1 -2 -6.11 -2 -6.12 -2 -6.13 -2 -6.14 -2 -6.15 -2 -6.16 -2 -6.17 -2 -6.18 -2 -6.19 -2 -6.2 -2 -6.21 -2 -6.22 -2 -6.23 -2 -6.24 -2 -6.25 -2 -6.26 -2 -6.27 -2 -6.28 -2 -6.29 -2 -6.3 -2 -6.31 -2 -6.32 -2 -6.33 -2 -6.34 -2 -6.35 -2 -6.36 -2 -6.37 -2 -6.38 -2 -6.39 -2 -6.4 -2 -6.41 -2 -6.42 -2 -6.43 -2 -6.44 -2 -6.45 -2 -6.46 -2 -6.47 -2 -6.48 -2 -6.49 -2 -6.5 -2 -6.51 -2 -6.52 -2 -6.53 -2 -6.54 -2 -6.55 -2 -6.56 -2 -6.57 -2 -6.58 -2 -6.59 -2 -6.6 -2 -6.61 -2 -6.62 -2 -6.63 -2 -6.64 -2 -6.65 -2 -6.66 -2 -6.67 -2 -6.68 -2 -6.69 -2 -6.7 -2 -6.71 -2 -6.72 -2 -6.73 -2 -6.74 -2 -6.75 -2 -6.76 -2 -6.77 -2 -6.78 -2 -6.79 -2 -6.8 -2 -6.81 -2 -6.82 -2 -6.83 -2 -6.84 -2 -6.85 -2 -6.86 -2 -6.87 -2 -6.88 -2 -6.89 -2 -6.9 -2 -6.91 -2 -6.92 -2 -6.93 -2 -6.94 -2 -6.95 -2 -6.96 -2 -6.97 -2 -6.98 -2 -6.99 -2 -7 -2 -7.01 -2 -7.02 -2 -7.03 -2 -7.04 -2 -7.05 -2 -7.06 -2 -7.07 -2 -7.08 -2 -7.09 -2 -7.1 -2 -7.11 -2 -7.12 -2 -7.13 -2 -7.14 -2 -7.15 -2 -7.16 -2 -7.17 -2 -7.18 -2 -7.19 -2 -7.2 -2 -7.21 -2 -7.22 -2 -7.23 -2 -7.24 -2 -7.25 -2 -7.26 -2 -7.27 -2 -7.28 -2 -7.29 -2 -7.3 -2 -7.31 -2 -7.32 -2 -7.33 -2 -7.34 -2 -7.35 -2 -7.36 -2 -7.37 -2 -7.38 -2 -7.39 -2 -7.4 -2 -7.41 -2 -7.42 -2 -7.43 -2 -7.44 -2 -7.45 -2 -7.46 -2 -7.47 -2 -7.48 -2 -7.49 -2 -7.5 -2 -7.51 -2 -7.52 -2 -7.53 -2 -7.54 -2 -7.55 -2 -7.56 -2 -7.57 -2 -7.58 -2 -7.59 -2 -7.6 -2 -7.61 -2 -7.62 -2 -7.63 -2 -7.64 -2 -7.65 -2 -7.66 -2 -7.67 -2 -7.68 -2 -7.69 -2 -7.7 -2 -7.71 -2 -7.72 -2 -7.73 -2 -7.74 -2 -7.75 -2 -7.76 -2 -7.77 -2 -7.78 -2 -7.79 -2 -7.8 -2 -7.81 -2 -7.82 -2 -7.83 -2 -7.84 -2 -7.85 -2 -7.86 -2 -7.87 -2 -7.88 -2 -7.89 -2 -7.9 -2 -7.91 -2 -7.92 -2 -7.93 -2 -7.94 -2 -7.95 -2 -7.96 -2 -7.97 -2 -7.98 -2 -7.99 -2 -8 -2 -8.01 -2 -8.02 -2 -8.03 -2 -8.04 -2 -8.05 -2 -8.06 -2 -8.07 -2 -8.08 -2 -8.09 -2 -8.1 -2 -8.11 -2 -8.12 -2 -8.13 -2 -8.14 -2 -8.15 -2 -8.16 -2 -8.17 -2 -8.18 -2 -8.19 -2 -8.2 -2 -8.21 -2 -8.22 -2 -8.23 -2 -8.24 -2 -8.25 -2 -8.26 -2 -8.27 -2 -8.28 -2 -8.29 -2 -8.3 -2 -8.31 -2 -8.32 -2 -8.33 -2 -8.34 -2 -8.35 -2 -8.36 -2 -8.37 -2 -8.38 -2 -8.39 -2 -8.4 -2 -8.41 -2 -8.42 -2 -8.43 -2 -8.44 -2 -8.45 -2 -8.46 -2 -8.47 -2 -8.48 -2 -8.49 -2 -8.5 -2 -8.51 -2 -8.52 -2 -8.53 -2 -8.54 -2 -8.55 -2 -8.56 -2 -8.57 -2 -8.58 -2 -8.59 -2 -8.6 -2 -8.61 -2 -8.62 -2 -8.63 -2 -8.64 -2 -8.65 -2 -8.66 -2 -8.67 -2 -8.68 -2 -8.69 -2 -8.7 -2 -8.71 -2 -8.72 -2 -8.73 -2 -8.74 -2 -8.75 -2 -8.76 -2 -8.77 -2 -8.78 -2 -8.79 -2 -8.8 -2 -8.81 -2 -8.82 -2 -8.83 -2 -8.84 -2 -8.85 -2 -8.86 -2 -8.87 -2 -8.88 -2 -8.89 -2 -8.9 -2 -8.91 -2 -8.92 -2 -8.93 -2 -8.94 -2 -8.95 -2 -8.96 -2 -8.97 -2 -8.98 -2 -8.99 -2 -9 -2 -9.01 -2 -9.02 -2 -9.03 -2 -9.04 -2 -9.05 -2 -9.06 -2 -9.07 -2 -9.08 -2 -9.09 -2 -9.1 -2 -9.11 -2 -9.12 -2 -9.13 -2 -9.14 -2 -9.15 -2 -9.16 -2 -9.17 -2 -9.18 -2 -9.19 -2 -9.2 -2 -9.21 -2 -9.22 -2 -9.23 -2 -9.24 -2 -9.25 -2 -9.26 -2 -9.27 -2 -9.28 -2 -9.29 -2 -9.3 -2 -9.31 -2 -9.32 -2 -9.33 -2 -9.34 -2 -9.35 -2 -9.36 -2 -9.37 -2 -9.38 -2 -9.39 -2 -9.4 -2 -9.41 -2 -9.42 -2 -9.43 -2 -9.44 -2 -9.45 -2 -9.46 -2 -9.47 -2 -9.48 -2 -9.49 -2 -9.5 -2 -9.51 -2 -9.52 -2 -9.53 -2 -9.54 -2 -9.55 -2 -9.56 -2 -9.57 -2 -9.58 -2 -9.59 -2 -9.6 -2 -9.61 -2 -9.62 -2 -9.63 -2 -9.64 -2 -9.65 -2 -9.66 -2 -9.67 -2 -9.68 -2 -9.69 -2 -9.7 -2 -9.71 -2 -9.72 -2 -9.73 -2 -9.74 -2 -9.75 -2 -9.76 -2 -9.77 -2 -9.78 -2 -9.79 -2 -9.8 -2 -9.81 -2 -9.82 -2 -9.83 -2 -9.84 -2 -9.85 -2 -9.86 -2 -9.87 -2 -9.88 -2 -9.89 -2 -9.9 -2 -9.91 -2 -9.92 -2 -9.93 -2 -9.94 -2 -9.95 -2 -9.96 -2 -9.97 -2 -9.98 -2 -9.99 -2 -10 -2 -10.01 -2 -10.02 -2 -10.03 -2 -10.04 -2 -10.05 -2 -10.06 -2 -10.07 -2 -10.08 -2 -10.09 -2 -10.1 -2 -10.11 -2 -10.12 -2 -10.13 -2 -10.14 -2 -10.15 -2 -10.16 -2 -10.17 -2 -10.18 -2 -10.19 -2 -10.2 -2 -10.21 -2 -10.22 -2 -10.23 -2 -10.24 -2 -10.25 -2 -10.26 -2 -10.27 -2 -10.28 -2 -10.29 -2 -10.3 -2 -10.31 -2 -10.32 -2 -10.33 -2 -10.34 -2 -10.35 -2 -10.36 -2 -10.37 -2 -10.38 -2 -10.39 -2 -10.4 -2 -10.41 -2 -10.42 -2 -10.43 -2 -10.44 -2 -10.45 -2 -10.46 -2 -10.47 -2 -10.48 -2 -10.49 -2 -10.5 -2 -10.51 -2 -10.52 -2 -10.53 -2 -10.54 -2 -10.55 -2 -10.56 -2 -10.57 -2 -10.58 -2 -10.59 -2 -10.6 -2 -10.61 -2 -10.62 -2 -10.63 -2 -10.64 -2 -10.65 -2 -10.66 -2 -10.67 -2 -10.68 -2 -10.69 -2 -10.7 -2 -10.71 -2 -10.72 -2 -10.73 -2 -10.74 -2 -10.75 -2 -10.76 -2 -10.77 -2 -10.78 -2 -10.79 -2 -10.8 -2 -10.81 -2 -10.82 -2 -10.83 -2 -10.84 -2 -10.85 -2 -10.86 -2 -10.87 -2 -10.88 -2 -10.89 -2 -10.9 -2 -10.91 -2 -10.92 -2 -10.93 -2 -10.94 -2 -10.95 -2 -10.96 -2 -10.97 -2 -10.98 -2 -10.99 -2 -11 -2 -11.01 -2 -11.02 -2 -11.03 -2 -11.04 -2 -11.05 -2 -11.06 -2 -11.07 -2 -11.08 -2 -11.09 -2 -11.1 -2 -11.11 -2 -11.12 -2 -11.13 -2 -11.14 -2 -11.15 -2 -11.16 -2 -11.17 -2 -11.18 -2 -11.19 -2 -11.2 -2 -11.21 -2 -11.22 -2 -11.23 -2 -11.24 -2 -11.25 -2 -11.26 -2 -11.27 -2 -11.28 -2 -11.29 -2 -11.3 -2 -11.31 -2 -11.32 -2 -11.33 -2 -11.34 -2 -11.35 -2 -11.36 -2 -11.37 -2 -11.38 -2 -11.39 -2 -11.4 -2 -11.41 -2 -11.42 -2 -11.43 -2 -11.44 -2 -11.45 -2 -11.46 -2 -11.47 -2 -11.48 -2 -11.49 -2 -11.5 -2 -11.51 -2 -11.52 -2 -11.53 -2 -11.54 -2 -11.55 -2 -11.56 -2 -11.57 -2 -11.58 -2 -11.59 -2 -11.6 -2 -11.61 -2 -11.62 -2 -11.63 -2 -11.64 -2 -11.65 -2 -11.66 -2 -11.67 -2 -11.68 -2 -11.69 -2 -11.7 -2 -11.71 -2 -11.72 -2 -11.73 -2 -11.74 -2 -11.75 -2 -11.76 -2 -11.77 -2 -11.78 -2 -11.79 -2 -11.8 -2 -11.81 -2 -11.82 -2 -11.83 -2 -11.84 -2 -11.85 -2 -11.86 -2 -11.87 -2 -11.88 -2 -11.89 -2 -11.9 -2 -11.91 -2 -11.92 -2 -11.93 -2 -11.94 -2 -11.95 -2 -11.96 -2 -11.97 -2 -11.98 -2 -11.99 -2 -12 -2 -12.01 -2 -12.02 -2 -12.03 -2 -12.04 -2 -12.05 -2 -12.06 -2 -12.07 -2 -12.08 -2 -12.09 -2 -12.1 -2 -12.11 -2 -12.12 -2 -12.13 -2 -12.14 -2 -12.15 -2 -12.16 -2 -12.17 -2 -12.18 -2 -12.19 -2 -12.2 -2 -12.21 -2 -12.22 -2 -12.23 -2 -12.24 -2 -12.25 -2 -12.26 -2 -12.27 -2 -12.28 -2 -12.29 -2 -12.3 -2 -12.31 -2 -12.32 -2 -12.33 -2 -12.34 -2 -12.35 -2 -12.36 -2 -12.37 -2 -12.38 -2 -12.39 -2 -12.4 -2 -12.41 -2 -12.42 -2 -12.43 -2 -12.44 -2 -12.45 -2 -12.46 -2 -12.47 -2 -12.48 -2 -12.49 -2 -12.5 -2 -12.51 -2 -12.52 -2 -12.53 -2 -12.54 -2 -12.55 -2 -12.56 -2 -12.57 -2 -12.58 -2 -12.59 -2 -12.6 -2 -12.61 -2 -12.62 -2 -12.63 -2 -12.64 -2 -12.65 -2 -12.66 -2 -12.67 -2 -12.68 -2 -12.69 -2 -12.7 -2 -12.71 -2 -12.72 -2 -12.73 -2 -12.74 -2 -12.75 -2 -12.76 -2 -12.77 -2 -12.78 -2 -12.79 -2 -12.8 -2 -12.81 -2 -12.82 -2 -12.83 -2 -12.84 -2 -12.85 -2 -12.86 -2 -12.87 -2 -12.88 -2 -12.89 -2 -12.9 -2 -12.91 -2 -12.92 -2 -12.93 -2 -12.94 -2 -12.95 -2 -12.96 -2 -12.97 -2 -12.98 -2 -12.99 -2 -13 -2 -13.01 -2 -13.02 -2 -13.03 -2 -13.04 -2 -13.05 -2 -13.06 -2 -13.07 -2 -13.08 -2 -13.09 -2 -13.1 -2 -13.11 -2 -13.12 -2 -13.13 -2 -13.14 -2 -13.15 -2 -13.16 -2 -13.17 -2 -13.18 -2 -13.19 -2 -13.2 -2 -13.21 -2 -13.22 -2 -13.23 -2 -13.24 -2 -13.25 -2 -13.26 -2 -13.27 -2 -13.28 -2 -13.29 -2 -13.3 -2 -13.31 -2 -13.32 -2 -13.33 -2 -13.34 -2 -13.35 -2 -13.36 -2 -13.37 -2 -13.38 -2 -13.39 -2 -13.4 -2 -13.41 -2 -13.42 -2 -13.43 -2 -13.44 -2 -13.45 -2 -13.46 -2 -13.47 -2 -13.48 -2 -13.49 -2 -13.5 -2 -13.51 -2 -13.52 -2 -13.53 -2 -13.54 -2 -13.55 -2 -13.56 -2 -13.57 -2 -13.58 -2 -13.59 -2 -13.6 -2 -13.61 -2 -13.62 -2 -13.63 -2 -13.64 -2 -13.65 -2 -13.66 -2 -13.67 -2 -13.68 -2 -13.69 -2 -13.7 -2 -13.71 -2 -13.72 -2 -13.73 -2 -13.74 -2 -13.75 -2 -13.76 -2 -13.77 -2 -13.78 -2 -13.79 -2 -13.8 -2 -13.81 -2 -13.82 -2 -13.83 -2 -13.84 -2 -13.85 -2 -13.86 -2 -13.87 -2 -13.88 -2 -13.89 -2 -13.9 -2 -13.91 -2 -13.92 -2 -13.93 -2 -13.94 -2 -13.95 -2 -13.96 -2 -13.97 -2 -13.98 -2 -13.99 -2 -14 -2 -14.01 -2 -14.02 -2 -14.03 -2 -14.04 -2 -14.05 -2 -14.06 -2 -14.07 -2 -14.08 -2 -14.09 -2 -14.1 -2 -14.11 -2 -14.12 -2 -14.13 -2 -14.14 -2 -14.15 -2 -14.16 -2 -14.17 -2 -14.18 -2 -14.19 -2 -14.2 -2 -14.21 -2 -14.22 -2 -14.23 -2 -14.24 -2 -14.25 -2 -14.26 -2 -14.27 -2 -14.28 -2 -14.29 -2 -14.3 -2 -14.31 -2 -14.32 -2 -14.33 -2 -14.34 -2 -14.35 -2 -14.36 -2 -14.37 -2 -14.38 -2 -14.39 -2 -14.4 -2 -14.41 -2 -14.42 -2 -14.43 -2 -14.44 -2 -14.45 -2 -14.46 -2 -14.47 -2 -14.48 -2 -14.49 -2 -14.5 -2 -14.51 -2 -14.52 -2 -14.53 -2 -14.54 -2 -14.55 -2 -14.56 -2 -14.57 -2 -14.58 -2 -14.59 -2 -14.6 -2 -14.61 -2 -14.62 -2 -14.63 -2 -14.64 -2 -14.65 -2 -14.66 -2 -14.67 -2 -14.68 -2 -14.69 -2 -14.7 -2 -14.71 -2 -14.72 -2 -14.73 -2 -14.74 -2 -14.75 -2 -14.76 -2 -14.77 -2 -14.78 -2 -14.79 -2 -14.8 -2 -14.81 -2 -14.82 -2 -14.83 -2 -14.84 -2 -14.85 -2 -14.86 -2 -14.87 -2 -14.88 -2 -14.89 -2 -14.9 -2 -14.91 -2 -14.92 -2 -14.93 -2 -14.94 -2 -14.95 -2 -14.96 -2 -14.97 -2 -14.98 -2 -14.99 -2 -15 -2 -15.01 -2 -15.02 -2 -15.03 -2 -15.04 -2 -15.05 -2 -15.06 -2 -15.07 -2 -15.08 -2 -15.09 -2 -15.1 -2 -15.11 -2 -15.12 -2 -15.13 -2 -15.14 -2 -15.15 -2 -15.16 -2 -15.17 -2 -15.18 -2 -15.19 -2 -15.2 -2 -15.21 -2 -15.22 -2 -15.23 -2 -15.24 -2 -15.25 -2 -15.26 -2 -15.27 -2 -15.28 -2 -15.29 -2 -15.3 -2 -15.31 -2 -15.32 -2 -15.33 -2 -15.34 -2 -15.35 -2 -15.36 -2 -15.37 -2 -15.38 -2 -15.39 -2 -15.4 -2 -15.41 -2 -15.42 -2 -15.43 -2 -15.44 -2 -15.45 -2 -15.46 -2 -15.47 -2 -15.48 -2 -15.49 -2 -15.5 -2 -15.51 -2 -15.52 -2 -15.53 -2 -15.54 -2 -15.55 -2 -15.56 -2 -15.57 -2 -15.58 -2 -15.59 -2 -15.6 -2 -15.61 -2 -15.62 -2 -15.63 -2 -15.64 -2 -15.65 -2 -15.66 -2 -15.67 -2 -15.68 -2 -15.69 -2 -15.7 -2 -15.71 -2 -15.72 -2 -15.73 -2 -15.74 -2 -15.75 -2 -15.76 -2 -15.77 -2 -15.78 -2 -15.79 -2 -15.8 -2 -15.81 -2 -15.82 -2 -15.83 -2 -15.84 -2 -15.85 -2 -15.86 -2 -15.87 -2 -15.88 -2 -15.89 -2 -15.9 -2 -15.91 -2 -15.92 -2 -15.93 -2 -15.94 -2 -15.95 -2 -15.96 -2 -15.97 -2 -15.98 -2 -15.99 -2 -16 -2 -16.01 -2 -16.02 -2 -16.03 -2 -16.04 -2 -16.05 -2 -16.06 -2 -16.07 -2 -16.08 -2 -16.09 -2 -16.1 -2 -16.11 -2 -16.12 -2 -16.13 -2 -16.14 -2 -16.15 -2 -16.16 -2 -16.17 -2 -16.18 -2 -16.19 -2 -16.2 -2 -16.21 -2 -16.22 -2 -16.23 -2 -16.24 -2 -16.25 -2 -16.26 -2 -16.27 -2 -16.28 -2 -16.29 -2 -16.3 -2 -16.31 -2 -16.32 -2 -16.33 -2 -16.34 -2 -16.35 -2 -16.36 -2 -16.37 -2 -16.38 -2 -16.39 -2 -16.4 -2 -16.41 -2 -16.42 -2 -16.43 -2 -16.44 -2 -16.45 -2 -16.46 -2 -16.47 -2 -16.48 -2 -16.49 -2 -16.5 -2 -16.51 -2 -16.52 -2 -16.53 -2 -16.54 -2 -16.55 -2 -16.56 -2 -16.57 -2 -16.58 -2 -16.59 -2 -16.6 -2 -16.61 -2 -16.62 -2 -16.63 -2 -16.64 -2 -16.65 -2 -16.66 -2 -16.67 -2 -16.68 -2 -16.69 -2 -16.7 -2 -16.71 -2 -16.72 -2 -16.73 -2 -16.74 -2 -16.75 -2 -16.76 -2 -16.77 -2 -16.78 -2 -16.79 -2 -16.8 -2 -16.81 -2 -16.82 -2 -16.83 -2 -16.84 -2 -16.85 -2 -16.86 -2 -16.87 -2 -16.88 -2 -16.89 -2 -16.9 -2 -16.91 -2 -16.92 -2 -16.93 -2 -16.94 -2 -16.95 -2 -16.96 -2 -16.97 -2 -16.98 -2 -16.99 -2 -17 -2 -17.01 -2 -17.02 -2 -17.03 -2 -17.04 -2 -17.05 -2 -17.06 -2 -17.07 -2 -17.08 -2 -17.09 -2 -17.1 -2 -17.11 -2 -17.12 -2 -17.13 -2 -17.14 -2 -17.15 -2 -17.16 -2 -17.17 -2 -17.18 -2 -17.19 -2 -17.2 -2 -17.21 -2 -17.22 -2 -17.23 -2 -17.24 -2 -17.25 -2 -17.26 -2 -17.27 -2 -17.28 -2 -17.29 -2 -17.3 -2 -17.31 -2 -17.32 -2 -17.33 -2 -17.34 -2 -17.35 -2 -17.36 -2 -17.37 -2 -17.38 -2 -17.39 -2 -17.4 -2 -17.41 -2 -17.42 -2 -17.43 -2 -17.44 -2 -17.45 -2 -17.46 -2 -17.47 -2 -17.48 -2 -17.49 -2 -17.5 -2 -17.51 -2 -17.52 -2 -17.53 -2 -17.54 -2 -17.55 -2 -17.56 -2 -17.57 -2 -17.58 -2 -17.59 -2 -17.6 -2 -17.61 -2 -17.62 -2 -17.63 -2 -17.64 -2 -17.65 -2 -17.66 -2 -17.67 -2 -17.68 -2 -17.69 -2 -17.7 -2 -17.71 -2 -17.72 -2 -17.73 -2 -17.74 -2 -17.75 -2 -17.76 -2 -17.77 -2 -17.78 -2 -17.79 -2 -17.8 -2 -17.81 -2 -17.82 -2 -17.83 -2 -17.84 -2 -17.85 -2 -17.86 -2 -17.87 -2 -17.88 -2 -17.89 -2 -17.9 -2 -17.91 -2 -17.92 -2 -17.93 -2 -17.94 -2 -17.95 -2 -17.96 -2 -17.97 -2 -17.98 -2 -17.99 -2 -18 -2 -18.01 -2 -18.02 -2 -18.03 -2 -18.04 -2 -18.05 -2 -18.06 -2 -18.07 -2 -18.08 -2 -18.09 -2 -18.1 -2 -18.11 -2 -18.12 -2 -18.13 -2 -18.14 -2 -18.15 -2 -18.16 -2 -18.17 -2 -18.18 -2 -18.19 -2 -18.2 -2 -18.21 -2 -18.22 -2 -18.23 -2 -18.24 -2 -18.25 -2 -18.26 -2 -18.27 -2 -18.28 -2 -18.29 -2 -18.3 -2 -18.31 -2 -18.32 -2 -18.33 -2 -18.34 -2 -18.35 -2 -18.36 -2 -18.37 -2 -18.38 -2 -18.39 -2 -18.4 -2 -18.41 -2 -18.42 -2 -18.43 -2 -18.44 -2 -18.45 -2 -18.46 -2 -18.47 -2 -18.48 -2 -18.49 -2 -18.5 -2 -18.51 -2 -18.52 -2 -18.53 -2 -18.54 -2 -18.55 -2 -18.56 -2 -18.57 -2 -18.58 -2 -18.59 -2 -18.6 -2 -18.61 -2 -18.62 -2 -18.63 -2 -18.64 -2 -18.65 -2 -18.66 -2 -18.67 -2 -18.68 -2 -18.69 -2 -18.7 -2 -18.71 -2 -18.72 -2 -18.73 -2 -18.74 -2 -18.75 -2 -18.76 -2 -18.77 -2 -18.78 -2 -18.79 -2 -18.8 -2 -18.81 -2 -18.82 -2 -18.83 -2 -18.84 -2 -18.85 -2 -18.86 -2 -18.87 -2 -18.88 -2 -18.89 -2 -18.9 -2 -18.91 -2 -18.92 -2 -18.93 -2 -18.94 -2 -18.95 -2 -18.96 -2 -18.97 -2 -18.98 -2 -18.99 -2 -19 -2 -19.01 -2 -19.02 -2 -19.03 -2 -19.04 -2 -19.05 -2 -19.06 -2 -19.07 -2 -19.08 -2 -19.09 -2 -19.1 -2 -19.11 -2 -19.12 -2 -19.13 -2 -19.14 -2 -19.15 -2 -19.16 -2 -19.17 -2 -19.18 -2 -19.19 -2 -19.2 -2 -19.21 -2 -19.22 -2 -19.23 -2 -19.24 -2 -19.25 -2 -19.26 -2 -19.27 -2 -19.28 -2 -19.29 -2 -19.3 -2 -19.31 -2 -19.32 -2 -19.33 -2 -19.34 -2 -19.35 -2 -19.36 -2 -19.37 -2 -19.38 -2 -19.39 -2 -19.4 -2 -19.41 -2 -19.42 -2 -19.43 -2 -19.44 -2 -19.45 -2 -19.46 -2 -19.47 -2 -19.48 -2 -19.49 -2 -19.5 -2 -19.51 -2 -19.52 -2 -19.53 -2 -19.54 -2 -19.55 -2 -19.56 -2 -19.57 -2 -19.58 -2 -19.59 -2 -19.6 -2 -19.61 -2 -19.62 -2 -19.63 -2 -19.64 -2 -19.65 -2 -19.66 -2 -19.67 -2 -19.68 -2 -19.69 -2 -19.7 -2 -19.71 -2 -19.72 -2 -19.73 -2 -19.74 -2 -19.75 -2 -19.76 -2 -19.77 -2 -19.78 -2 -19.79 -2 -19.8 -2 -19.81 -2 -19.82 -2 -19.83 -2 -19.84 -2 -19.85 -2 -19.86 -2 -19.87 -2 -19.88 -2 -19.89 -2 -19.9 -2 -19.91 -2 -19.92 -2 -19.93 -2 -19.94 -2 -19.95 -2 -19.96 -2 -19.97 -2 -19.98 -2 -19.99 -2 -20 -2 -20.01 -2 -20.02 -2 -20.03 -2 -20.04 -2 -20.05 -2 -20.06 -2 -20.07 -2 -20.08 -2 -20.09 -2 -20.1 -2 -20.11 -2 -20.12 -2 -20.13 -2 -20.14 -2 -20.15 -2 -20.16 -2 -20.17 -2 -20.18 -2 -20.19 -2 -20.2 -2 -20.21 -2 -20.22 -2 -20.23 -2 -20.24 -2 -20.25 -2 -20.26 -2 -20.27 -2 -20.28 -2 -20.29 -2 -20.3 -2 -20.31 -2 -20.32 -2 -20.33 -2 -20.34 -2 -20.35 -2 -20.36 -2 -20.37 -2 -20.38 -2 -20.39 -2 -20.4 -2 -20.41 -2 -20.42 -2 -20.43 -2 -20.44 -2 -20.45 -2 -20.46 -2 -20.47 -2 -20.48 -2 -20.49 -2 -20.5 -2 -20.51 -2 -20.52 -2 -20.53 -2 -20.54 -2 -20.55 -2 -20.56 -2 -20.57 -2 -20.58 -2 -20.59 -2 -20.6 -2 -20.61 -2 -20.62 -2 -20.63 -2 -20.64 -2 -20.65 -2 -20.66 -2 -20.67 -2 -20.68 -2 -20.69 -2 -20.7 -2 -20.71 -2 -20.72 -2 -20.73 -2 -20.74 -2 -20.75 -2 -20.76 -2 -20.77 -2 -20.78 -2 -20.79 -2 -20.8 -2 -20.81 -2 -20.82 -2 -20.83 -2 -20.84 -2 -20.85 -2 -20.86 -2 -20.87 -2 -20.88 -2 -20.89 -2 -20.9 -2 -20.91 -2 -20.92 -2 -20.93 -2 -20.94 -2 -20.95 -2 -20.96 -2 -20.97 -2 -20.98 -2 -20.99 -2 -21 -2 -21.01 -2 -21.02 -2 -21.03 -2 -21.04 -2 -21.05 -2 -21.06 -2 -21.07 -2 -21.08 -2 -21.09 -2 -21.1 -2 -21.11 -2 -21.12 -2 -21.13 -2 -21.14 -2 -21.15 -2 -21.16 -2 -21.17 -2 -21.18 -2 -21.19 -2 -21.2 -2 -21.21 -2 -21.22 -2 -21.23 -2 -21.24 -2 -21.25 -2 -21.26 -2 -21.27 -2 -21.28 -2 -21.29 -2 -21.3 -2 -21.31 -2 -21.32 -2 -21.33 -2 -21.34 -2 -21.35 -2 -21.36 -2 -21.37 -2 -21.38 -2 -21.39 -2 -21.4 -2 -21.41 -2 -21.42 -2 -21.43 -2 -21.44 -2 -21.45 -2 -21.46 -2 -21.47 -2 -21.48 -2 -21.49 -2 -21.5 -2 -21.51 -2 -21.52 -2 -21.53 -2 -21.54 -2 -21.55 -2 -21.56 -2 -21.57 -2 -21.58 -2 -21.59 -2 -21.6 -2 -21.61 -2 -21.62 -2 -21.63 -2 -21.64 -2 -21.65 -2 -21.66 -2 -21.67 -2 -21.68 -2 -21.69 -2 -21.7 -2 -21.71 -2 -21.72 -2 -21.73 -2 -21.74 -2 -21.75 -2 -21.76 -2 -21.77 -2 -21.78 -2 -21.79 -2 -21.8 -2 -21.81 -2 -21.82 -2 -21.83 -2 -21.84 -2 -21.85 -2 -21.86 -2 -21.87 -2 -21.88 -2 -21.89 -2 -21.9 -2 -21.91 -2 -21.92 -2 -21.93 -2 -21.94 -2 -21.95 -2 -21.96 -2 -21.97 -2 -21.98 -2 -21.99 -2 -22 -2 -22.01 -2 -22.02 -2 -22.03 -2 -22.04 -2 -22.05 -2 -22.06 -2 -22.07 -2 -22.08 -2 -22.09 -2 -22.1 -2 -22.11 -2 -22.12 -2 -22.13 -2 -22.14 -2 -22.15 -2 -22.16 -2 -22.17 -2 -22.18 -2 -22.19 -2 -22.2 -2 -22.21 -2 -22.22 -2 -22.23 -2 -22.24 -2 -22.25 -2 -22.26 -2 -22.27 -2 -22.28 -2 -22.29 -2 -22.3 -2 -22.31 -2 -22.32 -2 -22.33 -2 -22.34 -2 -22.35 -2 -22.36 -2 -22.37 -2 -22.38 -2 -22.39 -2 -22.4 -2 -22.41 -2 -22.42 -2 -22.43 -2 -22.44 -2 -22.45 -2 -22.46 -2 -22.47 -2 -22.48 -2 -22.49 -2 -22.5 -2 -22.51 -2 -22.52 -2 -22.53 -2 -22.54 -2 -22.55 -2 -22.56 -2 -22.57 -2 -22.58 -2 -22.59 -2 -22.6 -2 -22.61 -2 -22.62 -2 -22.63 -2 -22.64 -2 -22.65 -2 -22.66 -2 -22.67 -2 -22.68 -2 -22.69 -2 -22.7 -2 -22.71 -2 -22.72 -2 -22.73 -2 -22.74 -2 -22.75 -2 -22.76 -2 -22.77 -2 -22.78 -2 -22.79 -2 -22.8 -2 -22.81 -2 -22.82 -2 -22.83 -2 -22.84 -2 -22.85 -2 -22.86 -2 -22.87 -2 -22.88 -2 -22.89 -2 -22.9 -2 -22.91 -2 -22.92 -2 -22.93 -2 -22.94 -2 -22.95 -2 -22.96 -2 -22.97 -2 -22.98 -2 -22.99 -2 -23 -2 -23.01 -2 -23.02 -2 -23.03 -2 -23.04 -2 -23.05 -2 -23.06 -2 -23.07 -2 -23.08 -2 -23.09 -2 -23.1 -2 -23.11 -2 -23.12 -2 -23.13 -2 -23.14 -2 -23.15 -2 -23.16 -2 -23.17 -2 -23.18 -2 -23.19 -2 -23.2 -2 -23.21 -2 -23.22 -2 -23.23 -2 -23.24 -2 -23.25 -2 -23.26 -2 -23.27 -2 -23.28 -2 -23.29 -2 -23.3 -2 -23.31 -2 -23.32 -2 -23.33 -2 -23.34 -2 -23.35 -2 -23.36 -2 -23.37 -2 -23.38 -2 -23.39 -2 -23.4 -2 -23.41 -2 -23.42 -2 -23.43 -2 -23.44 -2 -23.45 -2 -23.46 -2 -23.47 -2 -23.48 -2 -23.49 -2 -23.5 -2 -23.51 -2 -23.52 -2 -23.53 -2 -23.54 -2 -23.55 -2 -23.56 -2 -23.57 -2 -23.58 -2 -23.59 -2 -23.6 -2 -23.61 -2 -23.62 -2 -23.63 -2 -23.64 -2 -23.65 -2 -23.66 -2 -23.67 -2 -23.68 -2 -23.69 -2 -23.7 -2 -23.71 -2 -23.72 -2 -23.73 -2 -23.74 -2 -23.75 -2 -23.76 -2 -23.77 -2 -23.78 -2 -23.79 -2 -23.8 -2 -23.81 -2 -23.82 -2 -23.83 -2 -23.84 -2 -23.85 -2 -23.86 -2 -23.87 -2 -23.88 -2 -23.89 -2 -23.9 -2 -23.91 -2 -23.92 -2 -23.93 -2 -23.94 -2 -23.95 -2 -23.96 -2 -23.97 -2 -23.98 -2 -23.99 -2 -24 -2 -24.01 -2 -24.02 -2 -24.03 -2 -24.04 -2 -24.05 -2 -24.06 -2 -24.07 -2 -24.08 -2 -24.09 -2 -24.1 -2 -24.11 -2 -24.12 -2 -24.13 -2 -24.14 -2 -24.15 -2 -24.16 -2 -24.17 -2 -24.18 -2 -24.19 -2 -24.2 -2 -24.21 -2 -24.22 -2 -24.23 -2 -24.24 -2 -24.25 -2 -24.26 -2 -24.27 -2 -24.28 -2 -24.29 -2 -24.3 -2 -24.31 -2 -24.32 -2 -24.33 -2 -24.34 -2 -24.35 -2 -24.36 -2 -24.37 -2 -24.38 -2 -24.39 -2 -24.4 -2 -24.41 -2 -24.42 -2 -24.43 -2 -24.44 -2 -24.45 -2 -24.46 -2 -24.47 -2 -24.48 -2 -24.49 -2 -24.5 -2 -24.51 -2 -24.52 -2 -24.53 -2 -24.54 -2 -24.55 -2 -24.56 -2 -24.57 -2 -24.58 -2 -24.59 -2 -24.6 -2 -24.61 -2 -24.62 -2 -24.63 -2 -24.64 -2 -24.65 -2 -24.66 -2 -24.67 -2 -24.68 -2 -24.69 -2 -24.7 -2 -24.71 -2 -24.72 -2 -24.73 -2 -24.74 -2 -24.75 -2 -24.76 -2 -24.77 -2 -24.78 -2 -24.79 -2 -24.8 -2 -24.81 -2 -24.82 -2 -24.83 -2 -24.84 -2 -24.85 -2 -24.86 -2 -24.87 -2 -24.88 -2 -24.89 -2 -24.9 -2 -24.91 -2 -24.92 -2 -24.93 -2 -24.94 -2 -24.95 -2 -24.96 -2 -24.97 -2 -24.98 -2 -24.99 -2 -25 -2 -25.01 -2 -25.02 -2 -25.03 -2 -25.04 -2 -25.05 -2 -25.06 -2 -25.07 -2 -25.08 -2 -25.09 -2 -25.1 -2 -25.11 -2 -25.12 -2 -25.13 -2 -25.14 -2 -25.15 -2 -25.16 -2 -25.17 -2 -25.18 -2 -25.19 -2 -25.2 -2 -25.21 -2 -25.22 -2 -25.23 -2 -25.24 -2 -25.25 -2 -25.26 -2 -25.27 -2 -25.28 -2 -25.29 -2 -25.3 -2 -25.31 -2 -25.32 -2 -25.33 -2 -25.34 -2 -25.35 -2 -25.36 -2 -25.37 -2 -25.38 -2 -25.39 -2 -25.4 -2 -25.41 -2 -25.42 -2 -25.43 -2 -25.44 -2 -25.45 -2 -25.46 -2 -25.47 -2 -25.48 -2 -25.49 -2 -25.5 -2 -25.51 -2 -25.52 -2 -25.53 -2 -25.54 -2 -25.55 -2 -25.56 -2 -25.57 -2 -25.58 -2 -25.59 -2 -25.6 -2 -25.61 -2 -25.62 -2 -25.63 -2 -25.64 -2 -25.65 -2 -25.66 -2 -25.67 -2 -25.68 -2 -25.69 -2 -25.7 -2 -25.71 -2 -25.72 -2 -25.73 -2 -25.74 -2 -25.75 -2 -25.76 -2 -25.77 -2 -25.78 -2 -25.79 -2 -25.8 -2 -25.81 -2 -25.82 -2 -25.83 -2 -25.84 -2 -25.85 -2 -25.86 -2 -25.87 -2 -25.88 -2 -25.89 -2 -25.9 -2 -25.91 -2 -25.92 -2 -25.93 -2 -25.94 -2 -25.95 -2 -25.96 -2 -25.97 -2 -25.98 -2 -25.99 -2 -26 -2 -26.01 -2 -26.02 -2 -26.03 -2 -26.04 -2 -26.05 -2 -26.06 -2 -26.07 -2 -26.08 -2 -26.09 -2 -26.1 -2 -26.11 -2 -26.12 -2 -26.13 -2 -26.14 -2 -26.15 -2 -26.16 -2 -26.17 -2 -26.18 -2 -26.19 -2 -26.2 -2 -26.21 -2 -26.22 -2 -26.23 -2 -26.24 -2 -26.25 -2 -26.26 -2 -26.27 -2 -26.28 -2 -26.29 -2 -26.3 -2 -26.31 -2 -26.32 -2 -26.33 -2 -26.34 -2 -26.35 -2 -26.36 -2 -26.37 -2 -26.38 -2 -26.39 -2 -26.4 -2 -26.41 -2 -26.42 -2 -26.43 -2 -26.44 -2 -26.45 -2 -26.46 -2 -26.47 -2 -26.48 -2 -26.49 -2 -26.5 -2 -26.51 -2 -26.52 -2 -26.53 -2 -26.54 -2 -26.55 -2 -26.56 -2 -26.57 -2 -26.58 -2 -26.59 -2 -26.6 -2 -26.61 -2 -26.62 -2 -26.63 -2 -26.64 -2 -26.65 -2 -26.66 -2 -26.67 -2 -26.68 -2 -26.69 -2 -26.7 -2 -26.71 -2 -26.72 -2 -26.73 -2 -26.74 -2 -26.75 -2 -26.76 -2 -26.77 -2 -26.78 -2 -26.79 -2 -26.8 -2 -26.81 -2 -26.82 -2 -26.83 -2 -26.84 -2 -26.85 -2 -26.86 -2 -26.87 -2 -26.88 -2 -26.89 -2 -26.9 -2 -26.91 -2 -26.92 -2 -26.93 -2 -26.94 -2 -26.95 -2 -26.96 -2 -26.97 -2 -26.98 -2 -26.99 -2 -27 -2 -27.01 -2 -27.02 -2 -27.03 -2 -27.04 -2 -27.05 -2 -27.06 -2 -27.07 -2 -27.08 -2 -27.09 -2 -27.1 -2 -27.11 -2 -27.12 -2 -27.13 -2 -27.14 -2 -27.15 -2 -27.16 -2 -27.17 -2 -27.18 -2 -27.19 -2 -27.2 -2 -27.21 -2 -27.22 -2 -27.23 -2 -27.24 -2 -27.25 -2 -27.26 -2 -27.27 -2 -27.28 -2 -27.29 -2 -27.3 -2 -27.31 -2 -27.32 -2 -27.33 -2 -27.34 -2 -27.35 -2 -27.36 -2 -27.37 -2 -27.38 -2 -27.39 -2 -27.4 -2 -27.41 -2 -27.42 -2 -27.43 -2 -27.44 -2 -27.45 -2 -27.46 -2 -27.47 -2 -27.48 -2 -27.49 -2 -27.5 -2 -27.51 -2 -27.52 -2 -27.53 -2 -27.54 -2 -27.55 -2 -27.56 -2 -27.57 -2 -27.58 -2 -27.59 -2 -27.6 -2 -27.61 -2 -27.62 -2 -27.63 -2 -27.64 -2 -27.65 -2 -27.66 -2 -27.67 -2 -27.68 -2 -27.69 -2 -27.7 -2 -27.71 -2 -27.72 -2 -27.73 -2 -27.74 -2 -27.75 -2 -27.76 -2 -27.77 -2 -27.78 -2 -27.79 -2 -27.8 -2 -27.81 -2 -27.82 -2 -27.83 -2 -27.84 -2 -27.85 -2 -27.86 -2 -27.87 -2 -27.88 -2 -27.89 -2 -27.9 -2 -27.91 -2 -27.92 -2 -27.93 -2 -27.94 -2 -27.95 -2 -27.96 -2 -27.97 -2 -27.98 -2 -27.99 -2 -28 -2 -28.01 -2 -28.02 -2 -28.03 -2 -28.04 -2 -28.05 -2 -28.06 -2 -28.07 -2 -28.08 -2 -28.09 -2 -28.1 -2 -28.11 -2 -28.12 -2 -28.13 -2 -28.14 -2 -28.15 -2 -28.16 -2 -28.17 -2 -28.18 -2 -28.19 -2 -28.2 -2 -28.21 -2 -28.22 -2 -28.23 -2 -28.24 -2 -28.25 -2 -28.26 -2 -28.27 -2 -28.28 -2 -28.29 -2 -28.3 -2 -28.31 -2 -28.32 -2 -28.33 -2 -28.34 -2 -28.35 -2 -28.36 -2 -28.37 -2 -28.38 -2 -28.39 -2 -28.4 -2 -28.41 -2 -28.42 -2 -28.43 -2 -28.44 -2 -28.45 -2 -28.46 -2 -28.47 -2 -28.48 -2 -28.49 -2 -28.5 -2 -28.51 -2 -28.52 -2 -28.53 -2 -28.54 -2 -28.55 -2 -28.56 -2 -28.57 -2 -28.58 -2 -28.59 -2 -28.6 -2 -28.61 -2 -28.62 -2 -28.63 -2 -28.64 -2 -28.65 -2 -28.66 -2 -28.67 -2 -28.68 -2 -28.69 -2 -28.7 -2 -28.71 -2 -28.72 -2 -28.73 -2 -28.74 -2 -28.75 -2 -28.76 -2 -28.77 -2 -28.78 -2 -28.79 -2 -28.8 -2 -28.81 -2 -28.82 -2 -28.83 -2 -28.84 -2 -28.85 -2 -28.86 -2 -28.87 -2 -28.88 -2 -28.89 -2 -28.9 -2 -28.91 -2 -28.92 -2 -28.93 -2 -28.94 -2 -28.95 -2 -28.96 -2 -28.97 -2 -28.98 -2 -28.99 -2 -29 -2 -29.01 -2 -29.02 -2 -29.03 -2 -29.04 -2 -29.05 -2 -29.06 -2 -29.07 -2 -29.08 -2 -29.09 -2 -29.1 -2 -29.11 -2 -29.12 -2 -29.13 -2 -29.14 -2 -29.15 -2 -29.16 -2 -29.17 -2 -29.18 -2 -29.19 -2 -29.2 -2 -29.21 -2 -29.22 -2 -29.23 -2 -29.24 -2 -29.25 -2 -29.26 -2 -29.27 -2 -29.28 -2 -29.29 -2 -29.3 -2 -29.31 -2 -29.32 -2 -29.33 -2 -29.34 -2 -29.35 -2 -29.36 -2 -29.37 -2 -29.38 -2 -29.39 -2 -29.4 -2 -29.41 -2 -29.42 -2 -29.43 -2 -29.44 -2 -29.45 -2 -29.46 -2 -29.47 -2 -29.48 -2 -29.49 -2 -29.5 -2 -29.51 -2 -29.52 -2 -29.53 -2 -29.54 -2 -29.55 -2 -29.56 -2 -29.57 -2 -29.58 -2 -29.59 -2 -29.6 -2 -29.61 -2 -29.62 -2 -29.63 -2 -29.64 -2 -29.65 -2 -29.66 -2 -29.67 -2 -29.68 -2 -29.69 -2 -29.7 -2 -29.71 -2 -29.72 -2 -29.73 -2 -29.74 -2 -29.75 -2 -29.76 -2 -29.77 -2 -29.78 -2 -29.79 -2 -29.8 -2 -29.81 -2 -29.82 -2 -29.83 -2 -29.84 -2 -29.85 -2 -29.86 -2 -29.87 -2 -29.88 -2 -29.89 -2 -29.9 -2 -29.91 -2 -29.92 -2 -29.93 -2 -29.94 -2 -29.95 -2 -29.96 -2 -29.97 -2 -29.98 -2 -29.99 -2 -30 -2 -& -@target G1.S1 -@type xy -0 0 -0.01 -0.00163006 -0.02 -0.00314664 -0.03 -0.0044514 -0.04 -0.0054598 -0.05 -0.00610652 -0.06 -0.0063496 -0.07 -0.00617312 -0.08 -0.00558817 -0.09 -0.00463223 -0.1 -0.00336677 -0.11 -0.00187339 -0.12 -0.00024718 -0.13 0.00139186 -0.14 0.0029351 -0.15 0.00428218 -0.16 0.00534551 -0.17 0.00605582 -0.18 0.00636653 -0.19 0.00625684 -0.2 0.00573299 -0.21 0.00482799 -0.22 0.00359955 -0.23 0.0021201 -0.24 0.000498006 -0.25 -0.00115308 -0.26 -0.00272522 -0.27 -0.00411539 -0.28 -0.00523204 -0.29 -0.0060008 -0.3 -0.00636922 -0.31 -0.00631004 -0.32 -0.00582294 -0.33 -0.00493455 -0.34 -0.00368936 -0.35 -0.00216465 -0.36 -0.000471089 -0.37 0.00128688 -0.38 0.00300088 -0.39 0.00456524 -0.4 0.00588331 -0.41 0.00687308 -0.42 0.00747184 -0.43 0.00763941 -0.44 0.00735992 -0.45 0.00663733 -0.46 0.005486 -0.47 0.00398872 -0.48 0.00221461 -0.49 0.000241712 -0.5 -0.00184891 -0.51 -0.00397911 -0.52 -0.00607925 -0.53 -0.0080929 -0.54 -0.00998045 -0.55 -0.0117212 -0.56 -0.0133138 -0.57 -0.0147681 -0.58 -0.0161286 -0.59 -0.0174398 -0.6 -0.0187493 -0.61 -0.0201015 -0.62 -0.0215309 -0.63 -0.0230556 -0.64 -0.0246713 -0.65 -0.0263468 -0.66 -0.028021 -0.67 -0.0296022 -0.68 -0.0309494 -0.69 -0.0319079 -0.7 -0.032313 -0.71 -0.0319858 -0.72 -0.0307474 -0.73 -0.0284299 -0.74 -0.0248878 -0.75 -0.0200084 -0.76 -0.0137228 -0.77 -0.00601333 -0.78 0.00307943 -0.79 0.0134966 -0.8 0.0250478 -0.81 0.037452 -0.82 0.0504235 -0.83 0.0636352 -0.84 0.076731 -0.85 0.0893401 -0.86 0.101093 -0.87 0.111638 -0.88 0.120657 -0.89 0.12788 -0.9 0.13305 -0.91 0.135963 -0.92 0.136683 -0.93 0.135254 -0.94 0.131795 -0.95 0.126505 -0.96 0.119643 -0.97 0.111523 -0.98 0.102497 -0.99 0.0929355 -1 0.0832105 -1.01 0.073683 -1.02 0.064731 -1.03 0.0566024 -1.04 0.0494992 -1.05 0.0435525 -1.06 0.0388192 -1.07 0.0352821 -1.08 0.0328539 -1.09 0.0313858 -1.1 0.0306782 -1.11 0.0304955 -1.12 0.0305815 -1.13 0.0306597 -1.14 0.030467 -1.15 0.0297917 -1.16 0.0284652 -1.17 0.0263724 -1.18 0.0234569 -1.19 0.0197235 -1.2 0.0152354 -1.21 0.0101091 -1.22 0.00450444 -1.23 -0.00138742 -1.24 -0.00735146 -1.25 -0.0131584 -1.26 -0.0186161 -1.27 -0.023566 -1.28 -0.0278926 -1.29 -0.0315334 -1.3 -0.0344834 -1.31 -0.0367966 -1.32 -0.0385826 -1.33 -0.0400001 -1.34 -0.0412451 -1.35 -0.0425469 -1.36 -0.0441564 -1.37 -0.0462819 -1.38 -0.0491024 -1.39 -0.052748 -1.4 -0.0572872 -1.41 -0.0627163 -1.42 -0.0689542 -1.43 -0.0758418 -1.44 -0.0831468 -1.45 -0.0905735 -1.46 -0.0977667 -1.47 -0.104296 -1.48 -0.109798 -1.49 -0.113919 -1.5 -0.116354 -1.51 -0.116868 -1.52 -0.11532 -1.53 -0.111679 -1.54 -0.106033 -1.55 -0.0985954 -1.56 -0.0897008 -1.57 -0.0797968 -1.58 -0.0694419 -1.59 -0.0593322 -1.6 -0.05013 -1.61 -0.0424988 -1.62 -0.0370681 -1.63 -0.034396 -1.64 -0.0349358 -1.65 -0.039005 -1.66 -0.0467605 -1.67 -0.0581809 -1.68 -0.0730574 -1.69 -0.0911475 -1.7 -0.111667 -1.71 -0.133819 -1.72 -0.156729 -1.73 -0.179445 -1.74 -0.200978 -1.75 -0.220352 -1.76 -0.236654 -1.77 -0.249082 -1.78 -0.256988 -1.79 -0.259918 -1.8 -0.257405 -1.81 -0.249574 -1.82 -0.236892 -1.83 -0.219919 -1.84 -0.199432 -1.85 -0.176404 -1.86 -0.151958 -1.87 -0.127314 -1.88 -0.103737 -1.89 -0.082472 -1.9 -0.0646866 -1.91 -0.0515696 -1.92 -0.0441078 -1.93 -0.0426392 -1.94 -0.0474392 -1.95 -0.0584893 -1.96 -0.075473 -1.97 -0.0977865 -1.98 -0.124563 -1.99 -0.154712 -2 -0.186967 -2.01 -0.219944 -2.02 -0.252181 -2.03 -0.282042 -2.04 -0.308281 -2.05 -0.329758 -2.06 -0.345559 -2.07 -0.355035 -2.08 -0.357838 -2.09 -0.353939 -2.1 -0.34363 -2.11 -0.32751 -2.12 -0.306462 -2.13 -0.281605 -2.14 -0.254165 -2.15 -0.225849 -2.16 -0.198138 -2.17 -0.172469 -2.18 -0.150169 -2.19 -0.132393 -2.2 -0.120064 -2.21 -0.113828 -2.22 -0.114024 -2.23 -0.120665 -2.24 -0.133434 -2.25 -0.151967 -2.26 -0.175033 -2.27 -0.201345 -2.28 -0.229544 -2.29 -0.258169 -2.3 -0.285722 -2.31 -0.310741 -2.32 -0.331864 -2.33 -0.347896 -2.34 -0.357855 -2.35 -0.361021 -2.36 -0.356656 -2.37 -0.344687 -2.38 -0.325585 -2.39 -0.299842 -2.4 -0.26819 -2.41 -0.231559 -2.42 -0.19102 -2.43 -0.147728 -2.44 -0.102859 -2.45 -0.0575495 -2.46 -0.0128415 -2.47 0.0303157 -2.48 0.0711116 -2.49 0.109181 -2.5 0.14431 -2.51 0.176516 -2.52 0.206033 -2.53 0.233282 -2.54 0.258836 -2.55 0.283369 -2.56 0.307609 -2.57 0.332277 -2.58 0.358049 -2.59 0.385605 -2.6 0.415224 -2.61 0.447063 -2.62 0.481058 -2.63 0.516913 -2.64 0.554107 -2.65 0.591907 -2.66 0.6294 -2.67 0.665534 -2.68 0.699165 -2.69 0.729114 -2.7 0.753821 -2.71 0.77245 -2.72 0.784138 -2.73 0.788187 -2.74 0.784138 -2.75 0.771797 -2.76 0.75125 -2.77 0.72287 -2.78 0.687297 -2.79 0.645419 -2.8 0.598333 -2.81 0.547168 -2.82 0.493534 -2.83 0.43894 -2.84 0.384775 -2.85 0.332346 -2.86 0.28282 -2.87 0.237174 -2.88 0.196167 -2.89 0.160304 -2.9 0.129829 -2.91 0.104723 -2.92 0.0848813 -2.93 0.0697485 -2.94 0.0584037 -2.95 0.0499883 -2.96 0.0435559 -2.97 0.0381262 -2.98 0.032737 -2.99 0.0264951 -3 0.0186212 -3.01 0.00848747 -3.02 -0.00435354 -3.03 -0.0202116 -3.04 -0.0392207 -3.05 -0.0610193 -3.06 -0.0852295 -3.07 -0.111318 -3.08 -0.138631 -3.09 -0.166432 -3.1 -0.193944 -3.11 -0.220398 -3.12 -0.245068 -3.13 -0.267315 -3.14 -0.286602 -3.15 -0.302311 -3.16 -0.31447 -3.17 -0.323063 -3.18 -0.328236 -3.19 -0.330289 -3.2 -0.329651 -3.21 -0.326854 -3.22 -0.322502 -3.23 -0.317237 -3.24 -0.311699 -3.25 -0.306494 -3.26 -0.302243 -3.27 -0.299365 -3.28 -0.298149 -3.29 -0.298765 -3.3 -0.301242 -3.31 -0.305476 -3.32 -0.311239 -3.33 -0.318195 -3.34 -0.325921 -3.35 -0.333939 -3.36 -0.341736 -3.37 -0.348743 -3.38 -0.35445 -3.39 -0.358462 -3.4 -0.360439 -3.41 -0.360136 -3.42 -0.357409 -3.43 -0.352217 -3.44 -0.344618 -3.45 -0.334759 -3.46 -0.322858 -3.47 -0.309188 -3.48 -0.294011 -3.49 -0.277648 -3.5 -0.26044 -3.51 -0.242619 -3.52 -0.224351 -3.53 -0.205722 -3.54 -0.18673 -3.55 -0.167283 -3.56 -0.147198 -3.57 -0.126218 -3.58 -0.10402 -3.59 -0.0802034 -3.6 -0.0542593 -3.61 -0.0259048 -3.62 0.00520484 -3.63 0.0393535 -3.64 0.0767417 -3.65 0.117468 -3.66 0.161514 -3.67 0.208738 -3.68 0.258868 -3.69 0.311509 -3.7 0.366153 -3.71 0.422241 -3.72 0.478925 -3.73 0.535451 -3.74 0.591038 -3.75 0.644908 -3.76 0.696311 -3.77 0.744547 -3.78 0.78899 -3.79 0.829105 -3.8 0.864459 -3.81 0.89473 -3.82 0.919389 -3.83 0.938563 -3.84 0.95236 -3.85 0.960882 -3.86 0.964303 -3.87 0.962849 -3.88 0.956779 -3.89 0.946369 -3.9 0.931895 -3.91 0.913618 -3.92 0.891776 -3.93 0.866439 -3.94 0.837829 -3.95 0.806188 -3.96 0.771628 -3.97 0.734242 -3.98 0.694123 -3.99 0.65137 -4 0.606108 -4.01 0.558497 -4.02 0.508745 -4.03 0.457119 -4.04 0.403915 -4.05 0.349547 -4.06 0.294553 -4.07 0.239453 -4.08 0.184808 -4.09 0.131202 -4.1 0.0792293 -4.11 0.0294679 -4.12 -0.0175368 -4.13 -0.0612949 -4.14 -0.101391 -4.15 -0.137457 -4.16 -0.169037 -4.17 -0.196313 -4.18 -0.219323 -4.19 -0.238219 -4.2 -0.253266 -4.21 -0.264822 -4.22 -0.273326 -4.23 -0.279274 -4.24 -0.283199 -4.25 -0.285643 -4.26 -0.287137 -4.27 -0.288167 -4.28 -0.289214 -4.29 -0.290613 -4.3 -0.292601 -4.31 -0.295311 -4.32 -0.298767 -4.33 -0.30289 -4.34 -0.307506 -4.35 -0.312353 -4.36 -0.317106 -4.37 -0.321389 -4.38 -0.324736 -4.39 -0.326743 -4.4 -0.327058 -4.41 -0.325359 -4.42 -0.32139 -4.43 -0.314978 -4.44 -0.306036 -4.45 -0.294579 -4.46 -0.280715 -4.47 -0.264645 -4.48 -0.246651 -4.49 -0.227043 -4.5 -0.206272 -4.51 -0.184834 -4.52 -0.163176 -4.53 -0.141732 -4.54 -0.120903 -4.55 -0.101039 -4.56 -0.0824265 -4.57 -0.0652796 -4.58 -0.0497315 -4.59 -0.0358344 -4.6 -0.0235973 -4.61 -0.0129578 -4.62 -0.00366583 -4.63 0.00448234 -4.64 0.0117136 -4.65 0.0182601 -4.66 0.0243406 -4.67 0.0301444 -4.68 0.0358159 -4.69 0.0414428 -4.7 0.0470479 -4.71 0.0525834 -4.72 0.0579074 -4.73 0.062833 -4.74 0.0671146 -4.75 0.0704661 -4.76 0.0725772 -4.77 0.0731307 -4.78 0.0718218 -4.79 0.0683763 -4.8 0.0625685 -4.81 0.0542368 -4.82 0.0432964 -4.83 0.0295821 -4.84 0.0133501 -4.85 -0.00517487 -4.86 -0.0257094 -4.87 -0.0478956 -4.88 -0.0713147 -4.89 -0.095504 -4.9 -0.119976 -4.91 -0.144241 -4.92 -0.167824 -4.93 -0.19029 -4.94 -0.21117 -4.95 -0.230174 -4.96 -0.247139 -4.97 -0.261959 -4.98 -0.274624 -4.99 -0.28522 -5 -0.293921 -5.01 -0.300979 -5.02 -0.30671 -5.03 -0.311473 -5.04 -0.315651 -5.05 -0.319635 -5.06 -0.323827 -5.07 -0.328547 -5.08 -0.334047 -5.09 -0.340503 -5.1 -0.347997 -5.11 -0.35652 -5.12 -0.365963 -5.13 -0.376123 -5.14 -0.386713 -5.15 -0.39737 -5.16 -0.407657 -5.17 -0.417042 -5.18 -0.425073 -5.19 -0.431285 -5.2 -0.435249 -5.21 -0.436593 -5.22 -0.435016 -5.23 -0.430313 -5.24 -0.422377 -5.25 -0.411216 -5.26 -0.396949 -5.27 -0.379803 -5.28 -0.359964 -5.29 -0.338085 -5.3 -0.314685 -5.31 -0.290333 -5.32 -0.265631 -5.33 -0.24119 -5.34 -0.217604 -5.35 -0.195432 -5.36 -0.175173 -5.37 -0.157254 -5.38 -0.14201 -5.39 -0.129866 -5.4 -0.120814 -5.41 -0.114817 -5.42 -0.111781 -5.43 -0.111519 -5.44 -0.113766 -5.45 -0.118193 -5.46 -0.124428 -5.47 -0.13207 -5.48 -0.140712 -5.49 -0.14996 -5.5 -0.159446 -5.51 -0.16882 -5.52 -0.177827 -5.53 -0.186283 -5.54 -0.194073 -5.55 -0.201155 -5.56 -0.207551 -5.57 -0.213339 -5.58 -0.218645 -5.59 -0.223627 -5.6 -0.228461 -5.61 -0.233328 -5.62 -0.238405 -5.63 -0.243812 -5.64 -0.249622 -5.65 -0.255849 -5.66 -0.262443 -5.67 -0.269283 -5.68 -0.276178 -5.69 -0.282871 -5.7 -0.289047 -5.71 -0.294343 -5.72 -0.298338 -5.73 -0.300497 -5.74 -0.300489 -5.75 -0.297922 -5.76 -0.292442 -5.77 -0.283751 -5.78 -0.27162 -5.79 -0.255898 -5.8 -0.236526 -5.81 -0.213533 -5.82 -0.187042 -5.83 -0.157266 -5.84 -0.124305 -5.85 -0.0887644 -5.86 -0.0510801 -5.87 -0.0117167 -5.88 0.0288421 -5.89 0.0701108 -5.9 0.111619 -5.91 0.152929 -5.92 0.193644 -5.93 0.233428 -5.94 0.272002 -5.95 0.309071 -5.96 0.344542 -5.97 0.378375 -5.98 0.410559 -5.99 0.441128 -6 0.470148 -6.01 0.497701 -6.02 0.523876 -6.03 0.548747 -6.04 0.572369 -6.05 0.594755 -6.06 0.615824 -6.07 0.635488 -6.08 0.653648 -6.09 0.670109 -6.1 0.684632 -6.11 0.696939 -6.12 0.706729 -6.13 0.713694 -6.14 0.717529 -6.15 0.717956 -6.16 0.714737 -6.17 0.707595 -6.18 0.696315 -6.19 0.681089 -6.2 0.662004 -6.21 0.639249 -6.22 0.613108 -6.23 0.58396 -6.24 0.552269 -6.25 0.518574 -6.26 0.483467 -6.27 0.447585 -6.28 0.411584 -6.29 0.376202 -6.3 0.342063 -6.31 0.309747 -6.32 0.279766 -6.33 0.25256 -6.34 0.228477 -6.35 0.207774 -6.36 0.190606 -6.37 0.177037 -6.38 0.167039 -6.39 0.160502 -6.4 0.157455 -6.41 0.157449 -6.42 0.160185 -6.43 0.165373 -6.44 0.172725 -6.45 0.181965 -6.46 0.192848 -6.47 0.205166 -6.48 0.218755 -6.49 0.2335 -6.5 0.249332 -6.51 0.266281 -6.52 0.284331 -6.53 0.303491 -6.54 0.323805 -6.55 0.345308 -6.56 0.368013 -6.57 0.391898 -6.58 0.416888 -6.59 0.44285 -6.6 0.469579 -6.61 0.4968 -6.62 0.524151 -6.63 0.551163 -6.64 0.577337 -6.65 0.602134 -6.66 0.624985 -6.67 0.645303 -6.68 0.662514 -6.69 0.676067 -6.7 0.685464 -6.71 0.69027 -6.72 0.690139 -6.73 0.684721 -6.74 0.673684 -6.75 0.657329 -6.76 0.63578 -6.77 0.60928 -6.78 0.578182 -6.79 0.542931 -6.8 0.504057 -6.81 0.462149 -6.82 0.417836 -6.83 0.371769 -6.84 0.324593 -6.85 0.276943 -6.86 0.229459 -6.87 0.182645 -6.88 0.136927 -6.89 0.0926464 -6.9 0.0500517 -6.91 0.00930097 -6.92 -0.0295364 -6.93 -0.0664719 -6.94 -0.101588 -6.95 -0.135026 -6.96 -0.166886 -6.97 -0.197475 -6.98 -0.22703 -6.99 -0.255764 -7 -0.283867 -7.01 -0.311494 -7.02 -0.338758 -7.03 -0.365722 -7.04 -0.392398 -7.05 -0.418746 -7.06 -0.444675 -7.07 -0.470019 -7.08 -0.494605 -7.09 -0.518255 -7.1 -0.540765 -7.11 -0.561933 -7.12 -0.581571 -7.13 -0.599513 -7.14 -0.615625 -7.15 -0.629813 -7.16 -0.642029 -7.17 -0.652269 -7.18 -0.66052 -7.19 -0.666859 -7.2 -0.671505 -7.21 -0.674624 -7.22 -0.676406 -7.23 -0.677051 -7.24 -0.676768 -7.25 -0.675758 -7.26 -0.674207 -7.27 -0.672283 -7.28 -0.670123 -7.29 -0.667832 -7.3 -0.665481 -7.31 -0.663104 -7.32 -0.660693 -7.33 -0.658208 -7.34 -0.655583 -7.35 -0.65273 -7.36 -0.649544 -7.37 -0.645912 -7.38 -0.64172 -7.39 -0.636857 -7.4 -0.631222 -7.41 -0.624658 -7.42 -0.617159 -7.43 -0.608681 -7.44 -0.599204 -7.45 -0.588727 -7.46 -0.577271 -7.47 -0.564874 -7.48 -0.551589 -7.49 -0.537485 -7.5 -0.522635 -7.51 -0.507122 -7.52 -0.491 -7.53 -0.474385 -7.54 -0.457369 -7.55 -0.440031 -7.56 -0.422447 -7.57 -0.40469 -7.58 -0.386829 -7.59 -0.368933 -7.6 -0.351069 -7.61 -0.333304 -7.62 -0.315709 -7.63 -0.29837 -7.64 -0.281368 -7.65 -0.264772 -7.66 -0.248662 -7.67 -0.233118 -7.68 -0.218219 -7.69 -0.204038 -7.7 -0.190641 -7.71 -0.178086 -7.72 -0.166417 -7.73 -0.155663 -7.74 -0.14586 -7.75 -0.13702 -7.76 -0.129067 -7.77 -0.12195 -7.78 -0.1156 -7.79 -0.109932 -7.8 -0.104846 -7.81 -0.100228 -7.82 -0.0959576 -7.83 -0.0919098 -7.84 -0.0879575 -7.85 -0.0839745 -7.86 -0.0798243 -7.87 -0.0754008 -7.88 -0.0706054 -7.89 -0.0653512 -7.9 -0.0595635 -7.91 -0.0531793 -7.92 -0.0461469 -7.93 -0.0384243 -7.94 -0.0299776 -7.95 -0.0207795 -7.96 -0.0108074 -7.97 1.4324e-05 -7.98 0.011652 -7.99 0.0241148 -8 0.0374133 -8.01 0.051554 -8.02 0.066537 -8.03 0.0823533 -8.04 0.0989818 -8.05 0.116386 -8.06 0.134509 -8.07 0.153275 -8.08 0.1726 -8.09 0.192323 -8.1 0.212269 -8.11 0.232246 -8.12 0.252039 -8.13 0.271411 -8.14 0.290107 -8.15 0.307862 -8.16 0.324412 -8.17 0.339495 -8.18 0.352866 -8.19 0.364223 -8.2 0.373363 -8.21 0.380224 -8.22 0.384718 -8.23 0.386815 -8.24 0.386544 -8.25 0.383992 -8.26 0.379308 -8.27 0.372694 -8.28 0.364404 -8.29 0.354736 -8.3 0.344005 -8.31 0.332574 -8.32 0.320862 -8.33 0.309229 -8.34 0.298017 -8.35 0.287542 -8.36 0.278082 -8.37 0.269868 -8.38 0.263078 -8.39 0.257834 -8.4 0.254199 -8.41 0.252187 -8.42 0.251838 -8.43 0.252931 -8.44 0.255316 -8.45 0.258809 -8.46 0.263206 -8.47 0.26829 -8.48 0.273841 -8.49 0.279646 -8.5 0.285509 -8.51 0.291255 -8.52 0.296735 -8.53 0.301804 -8.54 0.306396 -8.55 0.310466 -8.56 0.313995 -8.57 0.316986 -8.58 0.319459 -8.59 0.321447 -8.6 0.322984 -8.61 0.324104 -8.62 0.32483 -8.63 0.325173 -8.64 0.325104 -8.65 0.324598 -8.66 0.323613 -8.67 0.322076 -8.68 0.319898 -8.69 0.316979 -8.7 0.313213 -8.71 0.308498 -8.72 0.302737 -8.73 0.295853 -8.74 0.287789 -8.75 0.27848 -8.76 0.26793 -8.77 0.256243 -8.78 0.243514 -8.79 0.229877 -8.8 0.215503 -8.81 0.200591 -8.82 0.185371 -8.83 0.170087 -8.84 0.154993 -8.85 0.140342 -8.86 0.126393 -8.87 0.113426 -8.88 0.101587 -8.89 0.0910259 -8.9 0.0818508 -8.91 0.0741216 -8.92 0.0678485 -8.93 0.0629928 -8.94 0.0594682 -8.95 0.0571451 -8.96 0.0558558 -8.97 0.0554028 -8.98 0.0555921 -8.99 0.0561267 -9 0.0567672 -9.01 0.0572795 -9.02 0.0574434 -9.03 0.0570594 -9.04 0.0559545 -9.05 0.0539866 -9.06 0.0510472 -9.07 0.0470627 -9.08 0.0419941 -9.09 0.0357703 -9.1 0.0284698 -9.11 0.0201625 -9.12 0.0109218 -9.13 0.000835564 -9.14 -0.00999868 -9.15 -0.021479 -9.16 -0.0335036 -9.17 -0.0459744 -9.18 -0.0588001 -9.19 -0.0718986 -9.2 -0.0852037 -9.21 -0.0986458 -9.22 -0.112169 -9.23 -0.12573 -9.24 -0.139293 -9.25 -0.152826 -9.26 -0.166299 -9.27 -0.179679 -9.28 -0.192936 -9.29 -0.20603 -9.3 -0.218921 -9.31 -0.231552 -9.32 -0.243861 -9.33 -0.255804 -9.34 -0.26732 -9.35 -0.278349 -9.36 -0.288833 -9.37 -0.298715 -9.38 -0.307944 -9.39 -0.316476 -9.4 -0.324274 -9.41 -0.331312 -9.42 -0.337563 -9.43 -0.342979 -9.44 -0.347613 -9.45 -0.351475 -9.46 -0.354583 -9.47 -0.356958 -9.48 -0.358626 -9.49 -0.35961 -9.5 -0.359935 -9.51 -0.359622 -9.52 -0.358688 -9.53 -0.357146 -9.54 -0.354959 -9.55 -0.352171 -9.56 -0.34878 -9.57 -0.344781 -9.58 -0.340165 -9.59 -0.334923 -9.6 -0.329049 -9.61 -0.322538 -9.62 -0.315391 -9.63 -0.307611 -9.64 -0.299212 -9.65 -0.29018 -9.66 -0.280563 -9.67 -0.270405 -9.68 -0.259743 -9.69 -0.248616 -9.7 -0.237067 -9.71 -0.225136 -9.72 -0.212862 -9.73 -0.200281 -9.74 -0.187423 -9.75 -0.174311 -9.76 -0.160954 -9.77 -0.14736 -9.78 -0.133537 -9.79 -0.119478 -9.8 -0.105169 -9.81 -0.0905918 -9.82 -0.075724 -9.83 -0.0605421 -9.84 -0.0450219 -9.85 -0.0291406 -9.86 -0.012877 -9.87 0.00379658 -9.88 0.0209077 -9.89 0.0384463 -9.9 0.0564207 -9.91 0.0748373 -9.92 0.0937015 -9.93 0.113019 -9.94 0.132799 -9.95 0.153049 -9.96 0.173783 -9.97 0.195018 -9.98 0.216777 -9.99 0.239114 -10 0.262015 -10.01 0.285496 -10.02 0.309568 -10.03 0.33423 -10.04 0.359467 -10.05 0.385244 -10.06 0.411504 -10.07 0.438161 -10.08 0.4651 -10.09 0.492172 -10.1 0.519175 -10.11 0.545873 -10.12 0.57201 -10.13 0.597299 -10.14 0.621428 -10.15 0.644066 -10.16 0.664869 -10.17 0.683493 -10.18 0.699594 -10.19 0.712845 -10.2 0.722943 -10.21 0.729427 -10.22 0.732143 -10.23 0.731 -10.24 0.725877 -10.25 0.71671 -10.26 0.703494 -10.27 0.686281 -10.28 0.66518 -10.29 0.640351 -10.3 0.612003 -10.31 0.580382 -10.32 0.545673 -10.33 0.508197 -10.34 0.468392 -10.35 0.426582 -10.36 0.383085 -10.37 0.338208 -10.38 0.292245 -10.39 0.245466 -10.4 0.198118 -10.41 0.150424 -10.42 0.102581 -10.43 0.0547676 -10.44 0.00715589 -10.45 -0.040122 -10.46 -0.0869436 -10.47 -0.133193 -10.48 -0.178758 -10.49 -0.223524 -10.5 -0.267373 -10.51 -0.310181 -10.52 -0.351816 -10.53 -0.392137 -10.54 -0.430994 -10.55 -0.468114 -10.56 -0.503455 -10.57 -0.536871 -10.58 -0.568227 -10.59 -0.5974 -10.6 -0.624289 -10.61 -0.648813 -10.62 -0.670918 -10.63 -0.690579 -10.64 -0.7078 -10.65 -0.722615 -10.66 -0.734945 -10.67 -0.745006 -10.68 -0.752942 -10.69 -0.758884 -10.7 -0.762971 -10.71 -0.765352 -10.72 -0.766171 -10.73 -0.765566 -10.74 -0.763666 -10.75 -0.760582 -10.76 -0.756407 -10.77 -0.751169 -10.78 -0.744938 -10.79 -0.737772 -10.8 -0.729678 -10.81 -0.720648 -10.82 -0.710665 -10.83 -0.699702 -10.84 -0.687732 -10.85 -0.674729 -10.86 -0.660673 -10.87 -0.645557 -10.88 -0.629353 -10.89 -0.612067 -10.9 -0.593786 -10.91 -0.574562 -10.92 -0.554461 -10.93 -0.533559 -10.94 -0.511939 -10.95 -0.489688 -10.96 -0.466891 -10.97 -0.44363 -10.98 -0.419973 -10.99 -0.395978 -11 -0.371677 -11.01 -0.347115 -11.02 -0.322303 -11.03 -0.297235 -11.04 -0.271892 -11.05 -0.246249 -11.06 -0.220273 -11.07 -0.193932 -11.08 -0.167199 -11.09 -0.140055 -11.1 -0.112495 -11.11 -0.0845068 -11.12 -0.0561584 -11.13 -0.027512 -11.14 0.00134747 -11.15 0.0303133 -11.16 0.0592592 -11.17 0.0880424 -11.18 0.116509 -11.19 0.144499 -11.2 0.171853 -11.21 0.198415 -11.22 0.223982 -11.23 0.248458 -11.24 0.271759 -11.25 0.293813 -11.26 0.314572 -11.27 0.334019 -11.28 0.352159 -11.29 0.369027 -11.3 0.384673 -11.31 0.399166 -11.32 0.412585 -11.33 0.424975 -11.34 0.436435 -11.35 0.447071 -11.36 0.456945 -11.37 0.466102 -11.38 0.474568 -11.39 0.482351 -11.4 0.48944 -11.41 0.495806 -11.42 0.501405 -11.43 0.506184 -11.44 0.51006 -11.45 0.512948 -11.46 0.514839 -11.47 0.515695 -11.48 0.515491 -11.49 0.514223 -11.5 0.511907 -11.51 0.508581 -11.52 0.504302 -11.53 0.499145 -11.54 0.493201 -11.55 0.48656 -11.56 0.479298 -11.57 0.471551 -11.58 0.463403 -11.59 0.454914 -11.6 0.446124 -11.61 0.437042 -11.62 0.427649 -11.63 0.417895 -11.64 0.407699 -11.65 0.396955 -11.66 0.385536 -11.67 0.373236 -11.68 0.359953 -11.69 0.345553 -11.7 0.329915 -11.71 0.312947 -11.72 0.29459 -11.73 0.274829 -11.74 0.253699 -11.75 0.231286 -11.76 0.207733 -11.77 0.183235 -11.78 0.158011 -11.79 0.132398 -11.8 0.106733 -11.81 0.0813574 -11.82 0.0566192 -11.83 0.0328585 -11.84 0.0103954 -11.85 -0.0104835 -11.86 -0.0295358 -11.87 -0.0465733 -11.88 -0.061469 -11.89 -0.0740796 -11.9 -0.0844157 -11.91 -0.0926447 -11.92 -0.098907 -11.93 -0.103393 -11.94 -0.106333 -11.95 -0.107983 -11.96 -0.108611 -11.97 -0.108486 -11.98 -0.107859 -11.99 -0.106956 -12 -0.105963 -12.01 -0.105027 -12.02 -0.104224 -12.03 -0.103569 -12.04 -0.103023 -12.05 -0.102491 -12.06 -0.101835 -12.07 -0.100884 -12.08 -0.0994386 -12.09 -0.0972924 -12.1 -0.0942401 -12.11 -0.0900864 -12.12 -0.0845802 -12.13 -0.0776902 -12.14 -0.0693571 -12.15 -0.0595779 -12.16 -0.0484085 -12.17 -0.0359627 -12.18 -0.0224085 -12.19 -0.00796127 -12.2 0.00712637 -12.21 0.0225757 -12.22 0.0380951 -12.23 0.053362 -12.24 0.0680959 -12.25 0.0820604 -12.26 0.0950592 -12.27 0.106947 -12.28 0.117639 -12.29 0.127107 -12.3 0.135388 -12.31 0.142574 -12.32 0.148812 -12.33 0.154287 -12.34 0.159205 -12.35 0.163834 -12.36 0.168429 -12.37 0.173216 -12.38 0.178391 -12.39 0.184118 -12.4 0.190506 -12.41 0.197614 -12.42 0.205438 -12.43 0.213916 -12.44 0.222925 -12.45 0.232296 -12.46 0.241785 -12.47 0.251118 -12.48 0.260019 -12.49 0.268204 -12.5 0.275398 -12.51 0.281349 -12.52 0.285836 -12.53 0.288684 -12.54 0.289769 -12.55 0.289022 -12.56 0.286404 -12.57 0.281899 -12.58 0.275726 -12.59 0.268043 -12.6 0.259045 -12.61 0.248949 -12.62 0.237987 -12.63 0.226389 -12.64 0.214375 -12.65 0.202139 -12.66 0.189843 -12.67 0.177608 -12.68 0.165519 -12.69 0.153586 -12.7 0.141775 -12.71 0.130004 -12.72 0.118156 -12.73 0.106077 -12.74 0.0935946 -12.75 0.0805212 -12.76 0.06667 -12.77 0.0518634 -12.78 0.0359441 -12.79 0.0187036 -12.8 0.000103478 -12.81 -0.0198776 -12.82 -0.0412351 -12.83 -0.0639187 -12.84 -0.0878345 -12.85 -0.112849 -12.86 -0.138795 -12.87 -0.165478 -12.88 -0.192688 -12.89 -0.220202 -12.9 -0.247792 -12.91 -0.275223 -12.92 -0.302296 -12.93 -0.328838 -12.94 -0.354701 -12.95 -0.379764 -12.96 -0.403936 -12.97 -0.427154 -12.98 -0.449379 -12.99 -0.470594 -13 -0.490798 -13.01 -0.509971 -13.02 -0.528109 -13.03 -0.545272 -13.04 -0.561463 -13.05 -0.576675 -13.06 -0.590889 -13.07 -0.604068 -13.08 -0.61616 -13.09 -0.627101 -13.1 -0.636812 -13.11 -0.645208 -13.12 -0.652183 -13.13 -0.657564 -13.14 -0.661362 -13.15 -0.663512 -13.16 -0.663964 -13.17 -0.662689 -13.18 -0.659684 -13.19 -0.654967 -13.2 -0.648587 -13.21 -0.640614 -13.22 -0.631142 -13.23 -0.620286 -13.24 -0.608096 -13.25 -0.594811 -13.26 -0.580587 -13.27 -0.565575 -13.28 -0.549928 -13.29 -0.533787 -13.3 -0.517287 -13.31 -0.500551 -13.32 -0.483689 -13.33 -0.466795 -13.34 -0.449953 -13.35 -0.433242 -13.36 -0.41672 -13.37 -0.400434 -13.38 -0.384423 -13.39 -0.368724 -13.4 -0.353369 -13.41 -0.338388 -13.42 -0.323807 -13.43 -0.30965 -13.44 -0.295936 -13.45 -0.28268 -13.46 -0.269906 -13.47 -0.257606 -13.48 -0.245743 -13.49 -0.234282 -13.5 -0.223166 -13.51 -0.212323 -13.52 -0.201659 -13.53 -0.191059 -13.54 -0.180394 -13.55 -0.169516 -13.56 -0.158265 -13.57 -0.146461 -13.58 -0.133898 -13.59 -0.120446 -13.6 -0.105953 -13.61 -0.0902876 -13.62 -0.07334 -13.63 -0.0550287 -13.64 -0.0353036 -13.65 -0.0141482 -13.66 0.00841948 -13.67 0.0323473 -13.68 0.0575597 -13.69 0.0840044 -13.7 0.111455 -13.71 0.139755 -13.72 0.168737 -13.73 0.198231 -13.74 0.228069 -13.75 0.258091 -13.76 0.28815 -13.77 0.318115 -13.78 0.347874 -13.79 0.377335 -13.8 0.406392 -13.81 0.435005 -13.82 0.463127 -13.83 0.490715 -13.84 0.517723 -13.85 0.544095 -13.86 0.569763 -13.87 0.594638 -13.88 0.618603 -13.89 0.641518 -13.9 0.663209 -13.91 0.683391 -13.92 0.701852 -13.93 0.718376 -13.94 0.732698 -13.95 0.744549 -13.96 0.753667 -13.97 0.759806 -13.98 0.762745 -13.99 0.762304 -14 0.758349 -14.01 0.750801 -14.02 0.739517 -14.03 0.724537 -14.04 0.706135 -14.05 0.684503 -14.06 0.659889 -14.07 0.632597 -14.08 0.602969 -14.09 0.571378 -14.1 0.538216 -14.11 0.503876 -14.12 0.468744 -14.13 0.43318 -14.14 0.397535 -14.15 0.362105 -14.16 0.327114 -14.17 0.292729 -14.18 0.259059 -14.19 0.226161 -14.2 0.194038 -14.21 0.162655 -14.22 0.13194 -14.23 0.101802 -14.24 0.0721388 -14.25 0.0428723 -14.26 0.0138887 -14.27 -0.0148634 -14.28 -0.0433981 -14.29 -0.0716855 -14.3 -0.0996482 -14.31 -0.127159 -14.32 -0.154045 -14.33 -0.180088 -14.34 -0.205036 -14.35 -0.22861 -14.36 -0.250394 -14.37 -0.27015 -14.38 -0.287615 -14.39 -0.302532 -14.4 -0.314677 -14.41 -0.323872 -14.42 -0.329993 -14.43 -0.332972 -14.44 -0.332804 -14.45 -0.329542 -14.46 -0.323296 -14.47 -0.314108 -14.48 -0.302254 -14.49 -0.288061 -14.5 -0.271793 -14.51 -0.253726 -14.52 -0.234132 -14.53 -0.213271 -14.54 -0.191383 -14.55 -0.168682 -14.56 -0.145345 -14.57 -0.121515 -14.58 -0.0972923 -14.59 -0.0727474 -14.6 -0.0479358 -14.61 -0.0228731 -14.62 0.00244032 -14.63 0.0280105 -14.64 0.0538422 -14.65 0.07993 -14.66 0.106252 -14.67 0.132763 -14.68 0.15939 -14.69 0.186031 -14.7 0.212534 -14.71 0.238734 -14.72 0.264444 -14.73 0.289459 -14.74 0.313563 -14.75 0.336539 -14.76 0.358173 -14.77 0.378268 -14.78 0.396645 -14.79 0.413154 -14.8 0.427675 -14.81 0.439965 -14.82 0.450126 -14.83 0.458152 -14.84 0.464064 -14.85 0.467906 -14.86 0.469744 -14.87 0.469653 -14.88 0.467713 -14.89 0.464 -14.9 0.458579 -14.91 0.451501 -14.92 0.442699 -14.93 0.432243 -14.94 0.420138 -14.95 0.40634 -14.96 0.39079 -14.97 0.373413 -14.98 0.354134 -14.99 0.33288 -15 0.309592 -15.01 0.284232 -15.02 0.256792 -15.03 0.227221 -15.04 0.195619 -15.05 0.162186 -15.06 0.1271 -15.07 0.0905823 -15.08 0.0529009 -15.09 0.0143571 -15.1 -0.0247195 -15.11 -0.0639822 -15.12 -0.103078 -15.13 -0.141658 -15.14 -0.179363 -15.15 -0.215836 -15.16 -0.250865 -15.17 -0.284241 -15.18 -0.315808 -15.19 -0.345465 -15.2 -0.373166 -15.21 -0.398916 -15.22 -0.42277 -15.23 -0.444819 -15.24 -0.465188 -15.25 -0.484007 -15.26 -0.50136 -15.27 -0.517493 -15.28 -0.532538 -15.29 -0.546596 -15.3 -0.55974 -15.31 -0.572002 -15.32 -0.583372 -15.33 -0.593801 -15.34 -0.6032 -15.35 -0.611446 -15.36 -0.618389 -15.37 -0.623749 -15.38 -0.627429 -15.39 -0.62927 -15.4 -0.629121 -15.41 -0.626855 -15.42 -0.622384 -15.43 -0.615661 -15.44 -0.606686 -15.45 -0.59551 -15.46 -0.582234 -15.47 -0.567006 -15.48 -0.549934 -15.49 -0.531319 -15.5 -0.511454 -15.51 -0.490604 -15.52 -0.469036 -15.53 -0.447008 -15.54 -0.424758 -15.55 -0.402496 -15.56 -0.380396 -15.57 -0.35859 -15.58 -0.337166 -15.59 -0.316184 -15.6 -0.29564 -15.61 -0.275475 -15.62 -0.255611 -15.63 -0.23595 -15.64 -0.21638 -15.65 -0.196785 -15.66 -0.177053 -15.67 -0.157086 -15.68 -0.136807 -15.69 -0.11617 -15.7 -0.095149 -15.71 -0.0737562 -15.72 -0.0520715 -15.73 -0.0301868 -15.74 -0.00822149 -15.75 0.0136824 -15.76 0.0353678 -15.77 0.0566697 -15.78 0.0774233 -15.79 0.0974717 -15.8 0.116672 -15.81 0.134899 -15.82 0.151978 -15.83 0.167918 -15.84 0.182685 -15.85 0.196274 -15.86 0.208705 -15.87 0.220021 -15.88 0.23028 -15.89 0.239552 -15.9 0.247911 -15.91 0.255429 -15.92 0.262174 -15.93 0.268157 -15.94 0.273455 -15.95 0.278097 -15.96 0.282083 -15.97 0.2854 -15.98 0.288019 -15.99 0.289901 -16 0.291001 -16.01 0.291276 -16.02 0.290684 -16.03 0.289195 -16.04 0.286749 -16.05 0.283368 -16.06 0.279101 -16.07 0.273994 -16.08 0.268111 -16.09 0.261532 -16.1 0.254353 -16.11 0.246675 -16.12 0.238603 -16.13 0.230238 -16.14 0.221673 -16.15 0.212982 -16.16 0.204225 -16.17 0.195439 -16.18 0.186627 -16.19 0.177771 -16.2 0.168827 -16.21 0.159734 -16.22 0.150418 -16.23 0.140797 -16.24 0.130788 -16.25 0.120317 -16.26 0.109318 -16.27 0.0977294 -16.28 0.0855838 -16.29 0.0729155 -16.3 0.0597955 -16.31 0.0463314 -16.32 0.0326648 -16.33 0.018967 -16.34 0.00543241 -16.35 -0.00773025 -16.36 -0.0203074 -16.37 -0.0320913 -16.38 -0.042804 -16.39 -0.0523506 -16.4 -0.0606124 -16.41 -0.0675165 -16.42 -0.0730407 -16.43 -0.0772157 -16.44 -0.0801247 -16.45 -0.0818994 -16.46 -0.0827141 -16.47 -0.0827762 -16.48 -0.0823151 -16.49 -0.0815667 -16.5 -0.0807937 -16.51 -0.080209 -16.52 -0.0799857 -16.53 -0.08025 -16.54 -0.0810714 -16.55 -0.0824567 -16.56 -0.0843463 -16.57 -0.0866153 -16.58 -0.0890774 -16.59 -0.0914926 -16.6 -0.0935506 -16.61 -0.0949124 -16.62 -0.0952677 -16.63 -0.0943048 -16.64 -0.0917401 -16.65 -0.0873353 -16.66 -0.0809134 -16.67 -0.072372 -16.68 -0.0616926 -16.69 -0.0489475 -16.7 -0.0343011 -16.71 -0.0179722 -16.72 -0.00031035 -16.73 0.0181861 -16.74 0.0370443 -16.75 0.0557572 -16.76 0.0738041 -16.77 0.0906715 -16.78 0.105874 -16.79 0.118976 -16.8 0.129605 -16.81 0.137471 -16.82 0.142339 -16.83 0.143946 -16.84 0.1425 -16.85 0.138113 -16.86 0.130984 -16.87 0.121385 -16.88 0.109647 -16.89 0.096142 -16.9 0.0812613 -16.91 0.0653983 -16.92 0.0489281 -16.93 0.0321902 -16.94 0.0154919 -16.95 -0.000934485 -16.96 -0.0169447 -16.97 -0.0324661 -16.98 -0.0474953 -16.99 -0.0620906 -17 -0.0763618 -17.01 -0.090456 -17.02 -0.104541 -17.03 -0.118789 -17.04 -0.133357 -17.05 -0.148398 -17.06 -0.163974 -17.07 -0.180078 -17.08 -0.196644 -17.09 -0.213527 -17.1 -0.23051 -17.11 -0.247304 -17.12 -0.263559 -17.13 -0.278879 -17.14 -0.292833 -17.15 -0.304981 -17.16 -0.314784 -17.17 -0.321803 -17.18 -0.325776 -17.19 -0.326424 -17.2 -0.323554 -17.21 -0.317066 -17.22 -0.306961 -17.23 -0.293339 -17.24 -0.276401 -17.25 -0.256435 -17.26 -0.233806 -17.27 -0.208903 -17.28 -0.182188 -17.29 -0.154267 -17.3 -0.125628 -17.31 -0.0967304 -17.32 -0.0679916 -17.33 -0.0397668 -17.34 -0.0123375 -17.35 0.0140965 -17.36 0.0394213 -17.37 0.0636081 -17.38 0.0867012 -17.39 0.108775 -17.4 0.130091 -17.41 0.150867 -17.42 0.171342 -17.43 0.191748 -17.44 0.212299 -17.45 0.233164 -17.46 0.254461 -17.47 0.276238 -17.48 0.298471 -17.49 0.321055 -17.5 0.343801 -17.51 0.366419 -17.52 0.388578 -17.53 0.409907 -17.54 0.430004 -17.55 0.448458 -17.56 0.464868 -17.57 0.478861 -17.58 0.490112 -17.59 0.498359 -17.6 0.503416 -17.61 0.505015 -17.62 0.503235 -17.63 0.498255 -17.64 0.490255 -17.65 0.479489 -17.66 0.466274 -17.67 0.450975 -17.68 0.433984 -17.69 0.415705 -17.7 0.396536 -17.71 0.376846 -17.72 0.35697 -17.73 0.337205 -17.74 0.317756 -17.75 0.298751 -17.76 0.280245 -17.77 0.262226 -17.78 0.244622 -17.79 0.227306 -17.8 0.210117 -17.81 0.192869 -17.82 0.17537 -17.83 0.157424 -17.84 0.138839 -17.85 0.119529 -17.86 0.0994338 -17.87 0.0785537 -17.88 0.0569512 -17.89 0.0347531 -17.9 0.0121463 -17.91 -0.0106287 -17.92 -0.033288 -17.93 -0.0555161 -17.94 -0.0769782 -17.95 -0.0972364 -17.96 -0.116034 -17.97 -0.133086 -17.98 -0.148151 -17.99 -0.161042 -18 -0.171635 -18.01 -0.179869 -18.02 -0.185752 -18.03 -0.189356 -18.04 -0.190812 -18.05 -0.190301 -18.06 -0.187951 -18.07 -0.184115 -18.08 -0.179078 -18.09 -0.1731 -18.1 -0.166424 -18.11 -0.159266 -18.12 -0.151807 -18.13 -0.144185 -18.14 -0.13649 -18.15 -0.128768 -18.16 -0.121016 -18.17 -0.113186 -18.18 -0.105193 -18.19 -0.0969371 -18.2 -0.088305 -18.21 -0.0791834 -18.22 -0.0694707 -18.23 -0.0590869 -18.24 -0.0479831 -18.25 -0.036148 -18.26 -0.0236125 -18.27 -0.0104526 -18.28 0.00322193 -18.29 0.0172363 -18.3 0.0313659 -18.31 0.0453827 -18.32 0.0590429 -18.33 0.0720968 -18.34 0.0842998 -18.35 0.0954229 -18.36 0.105262 -18.37 0.113646 -18.38 0.120443 -18.39 0.125542 -18.4 0.128817 -18.41 0.130379 -18.42 0.13028 -18.43 0.128601 -18.44 0.125452 -18.45 0.120959 -18.46 0.115258 -18.47 0.108482 -18.48 0.100755 -18.49 0.0921838 -18.5 0.0828486 -18.51 0.072751 -18.52 0.0619584 -18.53 0.050455 -18.54 0.0381944 -18.55 0.0251063 -18.56 0.0111029 -18.57 -0.00391297 -18.58 -0.0200387 -18.59 -0.0373628 -18.6 -0.0559555 -18.61 -0.0758601 -18.62 -0.0971597 -18.63 -0.119765 -18.64 -0.143568 -18.65 -0.168441 -18.66 -0.194212 -18.67 -0.220671 -18.68 -0.247574 -18.69 -0.274649 -18.7 -0.301611 -18.71 -0.328165 -18.72 -0.354022 -18.73 -0.378856 -18.74 -0.402398 -18.75 -0.424473 -18.76 -0.444908 -18.77 -0.463578 -18.78 -0.480401 -18.79 -0.495346 -18.8 -0.508423 -18.81 -0.51968 -18.82 -0.5292 -18.83 -0.53709 -18.84 -0.543439 -18.85 -0.548351 -18.86 -0.552025 -18.87 -0.55457 -18.88 -0.556074 -18.89 -0.556597 -18.9 -0.556168 -18.91 -0.55478 -18.92 -0.552395 -18.93 -0.548943 -18.94 -0.544326 -18.95 -0.538414 -18.96 -0.530982 -18.97 -0.521979 -18.98 -0.511275 -18.99 -0.498752 -19 -0.484316 -19.01 -0.467904 -19.02 -0.449488 -19.03 -0.42908 -19.04 -0.406734 -19.05 -0.382546 -19.06 -0.356655 -19.07 -0.329144 -19.08 -0.300333 -19.09 -0.270469 -19.1 -0.239803 -19.11 -0.208594 -19.12 -0.177101 -19.13 -0.145572 -19.14 -0.11424 -19.15 -0.0833156 -19.16 -0.0529813 -19.17 -0.0233893 -19.18 0.00529046 -19.19 0.0329909 -19.2 0.0596804 -19.21 0.0853328 -19.22 0.109944 -19.23 0.133525 -19.24 0.156097 -19.25 0.177685 -19.26 0.198313 -19.27 0.217996 -19.28 0.236736 -19.29 0.254487 -19.3 0.27121 -19.31 0.286891 -19.32 0.30146 -19.33 0.314832 -19.34 0.326911 -19.35 0.337591 -19.36 0.346765 -19.37 0.354329 -19.38 0.360186 -19.39 0.364253 -19.4 0.366429 -19.41 0.366603 -19.42 0.364869 -19.43 0.361246 -19.44 0.355783 -19.45 0.348558 -19.46 0.339676 -19.47 0.329269 -19.48 0.31749 -19.49 0.30451 -19.5 0.290512 -19.51 0.275689 -19.52 0.260211 -19.53 0.244331 -19.54 0.228242 -19.55 0.212123 -19.56 0.196147 -19.57 0.18047 -19.58 0.165234 -19.59 0.150565 -19.6 0.136576 -19.61 0.123361 -19.62 0.111006 -19.63 0.0996443 -19.64 0.0892923 -19.65 0.07999 -19.66 0.0717814 -19.67 0.064705 -19.68 0.0587946 -19.69 0.0540798 -19.7 0.0505863 -19.71 0.0483357 -19.72 0.0473448 -19.73 0.047625 -19.74 0.0492418 -19.75 0.0521664 -19.76 0.0563498 -19.77 0.0617695 -19.78 0.0683922 -19.79 0.0761738 -19.8 0.0850593 -19.81 0.0949829 -19.82 0.105869 -19.83 0.117631 -19.84 0.130176 -19.85 0.14342 -19.86 0.157254 -19.87 0.171537 -19.88 0.186155 -19.89 0.200993 -19.9 0.215935 -19.91 0.230869 -19.92 0.24568 -19.93 0.260258 -19.94 0.274493 -19.95 0.288277 -19.96 0.301492 -19.97 0.313994 -19.98 0.325713 -19.99 0.336543 -20 0.346382 -20.01 0.355125 -20.02 0.362669 -20.03 0.368916 -20.04 0.373767 -20.05 0.377132 -20.06 0.378926 -20.07 0.379072 -20.08 0.377374 -20.09 0.373909 -20.1 0.368646 -20.11 0.361574 -20.12 0.352701 -20.13 0.342058 -20.14 0.329699 -20.15 0.315701 -20.16 0.300164 -20.17 0.283208 -20.18 0.264976 -20.19 0.245572 -20.2 0.225234 -20.21 0.204167 -20.22 0.182567 -20.23 0.160631 -20.24 0.138556 -20.25 0.116534 -20.26 0.0947464 -20.27 0.0733648 -20.28 0.0525435 -20.29 0.0324195 -20.3 0.0131494 -20.31 -0.00517183 -20.32 -0.0225006 -20.33 -0.0387874 -20.34 -0.0540031 -20.35 -0.0681371 -20.36 -0.0811954 -20.37 -0.0931986 -20.38 -0.104179 -20.39 -0.114177 -20.4 -0.12324 -20.41 -0.131397 -20.42 -0.138685 -20.43 -0.145197 -20.44 -0.150978 -20.45 -0.156069 -20.46 -0.160506 -20.47 -0.164317 -20.48 -0.167524 -20.49 -0.170145 -20.5 -0.172192 -20.51 -0.173673 -20.52 -0.174591 -20.53 -0.174923 -20.54 -0.174714 -20.55 -0.173977 -20.56 -0.172731 -20.57 -0.171 -20.58 -0.168818 -20.59 -0.166226 -20.6 -0.163274 -20.61 -0.160022 -20.62 -0.156536 -20.63 -0.152892 -20.64 -0.149167 -20.65 -0.145455 -20.66 -0.141841 -20.67 -0.138404 -20.68 -0.135221 -20.69 -0.132359 -20.7 -0.129877 -20.71 -0.127817 -20.72 -0.12621 -20.73 -0.125068 -20.74 -0.124387 -20.75 -0.124164 -20.76 -0.12434 -20.77 -0.124843 -20.78 -0.125601 -20.79 -0.126528 -20.8 -0.127529 -20.81 -0.128508 -20.82 -0.129366 -20.83 -0.130012 -20.84 -0.130363 -20.85 -0.130349 -20.86 -0.129901 -20.87 -0.128989 -20.88 -0.127628 -20.89 -0.125843 -20.9 -0.123684 -20.91 -0.121229 -20.92 -0.118577 -20.93 -0.115849 -20.94 -0.113182 -20.95 -0.110724 -20.96 -0.108627 -20.97 -0.107056 -20.98 -0.106186 -20.99 -0.10611 -21 -0.106928 -21.01 -0.108707 -21.02 -0.111482 -21.03 -0.11525 -21.04 -0.119967 -21.05 -0.125549 -21.06 -0.131871 -21.07 -0.138771 -21.08 -0.146058 -21.09 -0.153501 -21.1 -0.160834 -21.11 -0.167804 -21.12 -0.174161 -21.13 -0.179661 -21.14 -0.184078 -21.15 -0.187216 -21.16 -0.188907 -21.17 -0.189028 -21.18 -0.187496 -21.19 -0.184277 -21.2 -0.179279 -21.21 -0.172665 -21.22 -0.164561 -21.23 -0.155115 -21.24 -0.144503 -21.25 -0.132924 -21.26 -0.120589 -21.27 -0.107713 -21.28 -0.0945053 -21.29 -0.0811629 -21.3 -0.0678603 -21.31 -0.0547603 -21.32 -0.0419808 -21.33 -0.029591 -21.34 -0.0176304 -21.35 -0.00610604 -21.36 0.0050041 -21.37 0.0157452 -21.38 0.0261785 -21.39 0.0363736 -21.4 0.0463997 -21.41 0.0563166 -21.42 0.0661652 -21.43 0.0759609 -21.44 0.0856855 -21.45 0.0952817 -21.46 0.104654 -21.47 0.113668 -21.48 0.122154 -21.49 0.129911 -21.5 0.136715 -21.51 0.142324 -21.52 0.146491 -21.53 0.148942 -21.54 0.149354 -21.55 0.147636 -21.56 0.143635 -21.57 0.137248 -21.58 0.128425 -21.59 0.11718 -21.6 0.103586 -21.61 0.0877812 -21.62 0.0699621 -21.63 0.0503801 -21.64 0.0293318 -21.65 0.00709907 -21.66 -0.0158471 -21.67 -0.0391295 -21.68 -0.0623721 -21.69 -0.0852122 -21.7 -0.107312 -21.71 -0.128368 -21.72 -0.14812 -21.73 -0.166358 -21.74 -0.182923 -21.75 -0.197711 -21.76 -0.210559 -21.77 -0.221557 -21.78 -0.230778 -21.79 -0.238304 -21.8 -0.24424 -21.81 -0.248707 -21.82 -0.251826 -21.83 -0.253715 -21.84 -0.254477 -21.85 -0.254191 -21.86 -0.252909 -21.87 -0.250605 -21.88 -0.247277 -21.89 -0.242901 -21.9 -0.237399 -21.91 -0.23067 -21.92 -0.222598 -21.93 -0.213061 -21.94 -0.20194 -21.95 -0.189132 -21.96 -0.174556 -21.97 -0.158161 -21.98 -0.139886 -21.99 -0.119744 -22 -0.0979152 -22.01 -0.0745473 -22.02 -0.0498366 -22.03 -0.0240263 -22.04 0.00259957 -22.05 0.029724 -22.06 0.057006 -22.07 0.0840911 -22.08 0.110622 -22.09 0.136234 -22.1 0.160513 -22.11 0.183224 -22.12 0.204117 -22.13 0.222988 -22.14 0.239683 -22.15 0.254105 -22.16 0.26621 -22.17 0.276008 -22.18 0.283559 -22.19 0.288967 -22.2 0.292374 -22.21 0.293829 -22.22 0.293669 -22.23 0.292101 -22.24 0.289334 -22.25 0.285565 -22.26 0.280983 -22.27 0.275754 -22.28 0.270025 -22.29 0.263915 -22.3 0.257517 -22.31 0.2509 -22.32 0.2441 -22.33 0.237147 -22.34 0.230048 -22.35 0.222796 -22.36 0.21538 -22.37 0.207786 -22.38 0.200006 -22.39 0.192038 -22.4 0.183891 -22.41 0.175589 -22.42 0.167168 -22.43 0.158683 -22.44 0.150207 -22.45 0.141825 -22.46 0.133626 -22.47 0.125707 -22.48 0.118166 -22.49 0.111099 -22.5 0.104599 -22.51 0.0987472 -22.52 0.0936157 -22.53 0.0892606 -22.54 0.0857422 -22.55 0.0831058 -22.56 0.0813097 -22.57 0.0803363 -22.58 0.0801506 -22.59 0.0807019 -22.6 0.0819249 -22.61 0.083742 -22.62 0.0860655 -22.63 0.0887991 -22.64 0.0918403 -22.65 0.0950831 -22.66 0.098414 -22.67 0.101709 -22.68 0.104858 -22.69 0.107751 -22.7 0.11028 -22.71 0.11234 -22.72 0.11383 -22.73 0.114654 -22.74 0.114719 -22.75 0.11394 -22.76 0.112242 -22.77 0.109485 -22.78 0.105669 -22.79 0.100758 -22.8 0.094725 -22.81 0.0875569 -22.82 0.0792574 -22.83 0.0698478 -22.84 0.0593673 -22.85 0.0478729 -22.86 0.0354384 -22.87 0.022154 -22.88 0.00809095 -22.89 -0.00660229 -22.9 -0.0217821 -22.91 -0.0373174 -22.92 -0.0530754 -22.93 -0.0689251 -22.94 -0.0847404 -22.95 -0.100403 -22.96 -0.115807 -22.97 -0.130856 -22.98 -0.14547 -22.99 -0.159562 -23 -0.173074 -23.01 -0.185988 -23.02 -0.198279 -23.03 -0.209928 -23.04 -0.220924 -23.05 -0.231255 -23.06 -0.24091 -23.07 -0.249875 -23.08 -0.258127 -23.09 -0.265637 -23.1 -0.272348 -23.11 -0.278172 -23.12 -0.283091 -23.13 -0.287033 -23.14 -0.289918 -23.15 -0.291664 -23.16 -0.292189 -23.17 -0.291414 -23.18 -0.289269 -23.19 -0.285694 -23.2 -0.280648 -23.21 -0.274102 -23.22 -0.265952 -23.23 -0.256332 -23.24 -0.245293 -23.25 -0.232907 -23.26 -0.21927 -23.27 -0.204493 -23.28 -0.188704 -23.29 -0.172043 -23.3 -0.154653 -23.31 -0.136681 -23.32 -0.118266 -23.33 -0.0995322 -23.34 -0.0806224 -23.35 -0.0616432 -23.36 -0.0426796 -23.37 -0.0237991 -23.38 -0.00505137 -23.39 0.0135291 -23.4 0.0319205 -23.41 0.0501101 -23.42 0.0680896 -23.43 0.0858504 -23.44 0.103367 -23.45 0.120616 -23.46 0.137564 -23.47 0.154153 -23.48 0.170304 -23.49 0.18592 -23.5 0.200884 -23.51 0.21506 -23.52 0.228302 -23.53 0.240451 -23.54 0.251349 -23.55 0.26079 -23.56 0.268595 -23.57 0.274704 -23.58 0.279019 -23.59 0.281474 -23.6 0.282037 -23.61 0.280718 -23.62 0.277565 -23.63 0.272668 -23.64 0.266156 -23.65 0.258192 -23.66 0.248954 -23.67 0.238631 -23.68 0.227531 -23.69 0.215892 -23.7 0.203951 -23.71 0.191929 -23.72 0.18003 -23.73 0.168429 -23.74 0.157273 -23.75 0.14667 -23.76 0.136691 -23.77 0.127369 -23.78 0.118749 -23.79 0.110741 -23.8 0.103278 -23.81 0.0962729 -23.82 0.0896272 -23.83 0.0832376 -23.84 0.0770036 -23.85 0.0708346 -23.86 0.0646564 -23.87 0.0584156 -23.88 0.0520836 -23.89 0.0456543 -23.9 0.0391607 -23.91 0.0326576 -23.92 0.0262179 -23.93 0.0199295 -23.94 0.0138885 -23.95 0.00819223 -23.96 0.00293198 -23.97 -0.00181432 -23.98 -0.00598887 -23.99 -0.00955967 -24 -0.0125007 -24.01 -0.0148561 -24.02 -0.0167182 -24.03 -0.0181923 -24.04 -0.0194129 -24.05 -0.0205396 -24.06 -0.0217498 -24.07 -0.0232315 -24.08 -0.0251749 -24.09 -0.0277635 -24.1 -0.0311651 -24.11 -0.0355525 -24.12 -0.0410702 -24.13 -0.0477385 -24.14 -0.0555831 -24.15 -0.0645861 -24.16 -0.0746854 -24.17 -0.085777 -24.18 -0.0977193 -24.19 -0.110338 -24.2 -0.123435 -24.21 -0.136792 -24.22 -0.150185 -24.23 -0.163361 -24.24 -0.176108 -24.25 -0.188234 -24.26 -0.199574 -24.27 -0.209991 -24.28 -0.219385 -24.29 -0.22769 -24.3 -0.234876 -24.31 -0.240948 -24.32 -0.245938 -24.33 -0.249905 -24.34 -0.252866 -24.35 -0.254977 -24.36 -0.256336 -24.37 -0.257034 -24.38 -0.257148 -24.39 -0.256743 -24.4 -0.255863 -24.41 -0.254531 -24.42 -0.252748 -24.43 -0.25049 -24.44 -0.247716 -24.45 -0.244332 -24.46 -0.24028 -24.47 -0.235496 -24.48 -0.229904 -24.49 -0.22344 -24.5 -0.21605 -24.51 -0.2077 -24.52 -0.198381 -24.53 -0.18811 -24.54 -0.176933 -24.55 -0.164923 -24.56 -0.152161 -24.57 -0.138787 -24.58 -0.124981 -24.59 -0.110905 -24.6 -0.0967337 -24.61 -0.0826401 -24.62 -0.068794 -24.63 -0.0553537 -24.64 -0.042461 -24.65 -0.0302367 -24.66 -0.0187768 -24.67 -0.00816981 -24.68 0.00151323 -24.69 0.0103079 -24.7 0.0182287 -24.71 0.0253111 -24.72 0.0316074 -24.73 0.0371814 -24.74 0.0421037 -24.75 0.0464463 -24.76 0.0502776 -24.77 0.0536587 -24.78 0.0566369 -24.79 0.0592268 -24.8 0.0614741 -24.81 0.0633824 -24.82 0.064942 -24.83 0.0661323 -24.84 0.066925 -24.85 0.0672882 -24.86 0.0671908 -24.87 0.0666063 -24.88 0.0655177 -24.89 0.0639203 -24.9 0.0617948 -24.91 0.0592019 -24.92 0.0561977 -24.93 0.0528507 -24.94 0.0492457 -24.95 0.0454808 -24.96 0.0416635 -24.97 0.0379063 -24.98 0.0343219 -24.99 0.031018 -25 0.0280925 -25.01 0.0256548 -25.02 0.0237629 -25.03 0.0224437 -25.04 0.0217133 -25.05 0.0215642 -25.06 0.0219662 -25.07 0.0228689 -25.08 0.0242047 -25.09 0.0258931 -25.1 0.0278454 -25.11 0.0299699 -25.12 0.0321775 -25.13 0.0343791 -25.14 0.036505 -25.15 0.0385045 -25.16 0.0403458 -25.17 0.0420168 -25.18 0.0435252 -25.19 0.0448963 -25.2 0.0461711 -25.21 0.0474017 -25.22 0.048647 -25.23 0.0499694 -25.24 0.0514344 -25.25 0.0530806 -25.26 0.054935 -25.27 0.0570046 -25.28 0.059273 -25.29 0.0616985 -25.3 0.0642142 -25.31 0.0667287 -25.32 0.0691293 -25.33 0.0712859 -25.34 0.0730562 -25.35 0.0742428 -25.36 0.0747319 -25.37 0.0743909 -25.38 0.0731058 -25.39 0.0707879 -25.4 0.06738 -25.41 0.0628611 -25.42 0.0572495 -25.43 0.0506045 -25.44 0.0430259 -25.45 0.0346523 -25.46 0.0256317 -25.47 0.0162143 -25.48 0.0066371 -25.49 -0.00285929 -25.5 -0.0120306 -25.51 -0.0206376 -25.52 -0.0284547 -25.53 -0.0352777 -25.54 -0.0409313 -25.55 -0.0452741 -25.56 -0.0482027 -25.57 -0.0495876 -25.58 -0.0494289 -25.59 -0.0477973 -25.6 -0.0447525 -25.61 -0.040384 -25.62 -0.0348051 -25.63 -0.0281458 -25.64 -0.020545 -25.65 -0.0121433 -25.66 -0.00307515 -25.67 0.00653699 -25.68 0.0165988 -25.69 0.0270286 -25.7 0.0377533 -25.71 0.0487448 -25.72 0.0599991 -25.73 0.0715331 -25.74 0.0833804 -25.75 0.0955855 -25.76 0.108197 -25.77 0.121263 -25.78 0.134819 -25.79 0.148892 -25.8 0.163503 -25.81 0.178584 -25.82 0.194064 -25.83 0.209841 -25.84 0.225774 -25.85 0.241691 -25.86 0.25739 -25.87 0.272642 -25.88 0.2872 -25.89 0.300805 -25.9 0.313195 -25.91 0.32399 -25.92 0.333033 -25.93 0.340117 -25.94 0.345061 -25.95 0.347721 -25.96 0.347998 -25.97 0.345841 -25.98 0.341247 -25.99 0.334262 -26 0.324977 -26.01 0.31353 -26.02 0.299995 -26.03 0.28467 -26.04 0.267831 -26.05 0.249727 -26.06 0.230615 -26.07 0.210753 -26.08 0.190388 -26.09 0.169755 -26.1 0.149067 -26.11 0.128515 -26.12 0.10826 -26.13 0.0884569 -26.14 0.0692168 -26.15 0.0505947 -26.16 0.0326372 -26.17 0.0153695 -26.18 -0.00120023 -26.19 -0.0170766 -26.2 -0.032272 -26.21 -0.046802 -26.22 -0.0606816 -26.23 -0.073921 -26.24 -0.0865077 -26.25 -0.0984159 -26.26 -0.10966 -26.27 -0.12021 -26.28 -0.13003 -26.29 -0.139074 -26.3 -0.147294 -26.31 -0.154639 -26.32 -0.161063 -26.33 -0.166526 -26.34 -0.170995 -26.35 -0.174447 -26.36 -0.17682 -26.37 -0.178203 -26.38 -0.178637 -26.39 -0.178183 -26.4 -0.176921 -26.41 -0.174948 -26.42 -0.172379 -26.43 -0.16934 -26.44 -0.165968 -26.45 -0.162403 -26.46 -0.15879 -26.47 -0.155284 -26.48 -0.15202 -26.49 -0.149118 -26.5 -0.146684 -26.51 -0.144806 -26.52 -0.143554 -26.53 -0.142976 -26.54 -0.143102 -26.55 -0.143942 -26.56 -0.145485 -26.57 -0.147705 -26.58 -0.15059 -26.59 -0.154062 -26.6 -0.15804 -26.61 -0.162452 -26.62 -0.167221 -26.63 -0.172272 -26.64 -0.177527 -26.65 -0.182912 -26.66 -0.188359 -26.67 -0.193802 -26.68 -0.19918 -26.69 -0.204432 -26.7 -0.209501 -26.71 -0.214345 -26.72 -0.21892 -26.73 -0.223182 -26.74 -0.227087 -26.75 -0.23059 -26.76 -0.233646 -26.77 -0.236206 -26.78 -0.238219 -26.79 -0.239633 -26.8 -0.24038 -26.81 -0.240375 -26.82 -0.239602 -26.83 -0.238013 -26.84 -0.235564 -26.85 -0.232219 -26.86 -0.22795 -26.87 -0.222741 -26.88 -0.216589 -26.89 -0.209504 -26.9 -0.201511 -26.91 -0.192647 -26.92 -0.182916 -26.93 -0.17245 -26.94 -0.161334 -26.95 -0.149659 -26.96 -0.137528 -26.97 -0.125047 -26.98 -0.112326 -26.99 -0.0994729 -27 -0.0865953 -27.01 -0.0737934 -27.02 -0.0611597 -27.03 -0.0487974 -27.04 -0.0367691 -27.05 -0.0251277 -27.06 -0.0139167 -27.07 -0.0031668 -27.08 0.00710326 -27.09 0.0168853 -27.1 0.0261803 -27.11 0.0349965 -27.12 0.0433473 -27.13 0.0512493 -27.14 0.0587011 -27.15 0.0657288 -27.16 0.0723592 -27.17 0.0786032 -27.18 0.0844677 -27.19 0.0899554 -27.2 0.0950651 -27.21 0.0997926 -27.22 0.104132 -27.23 0.108077 -27.24 0.111621 -27.25 0.114752 -27.26 0.117465 -27.27 0.119789 -27.28 0.121741 -27.29 0.123346 -27.3 0.124639 -27.31 0.12566 -27.32 0.126457 -27.33 0.127085 -27.34 0.1276 -27.35 0.12806 -27.36 0.128522 -27.37 0.129042 -27.38 0.129663 -27.39 0.130414 -27.4 0.131311 -27.41 0.132357 -27.42 0.133536 -27.43 0.134814 -27.44 0.136144 -27.45 0.137459 -27.46 0.138681 -27.47 0.13972 -27.48 0.140449 -27.49 0.140781 -27.5 0.140617 -27.51 0.139862 -27.52 0.138433 -27.53 0.136261 -27.54 0.133294 -27.55 0.129503 -27.56 0.124881 -27.57 0.119444 -27.58 0.113233 -27.59 0.106278 -27.6 0.0987003 -27.61 0.0906202 -27.62 0.0821574 -27.63 0.0734408 -27.64 0.0646037 -27.65 0.0557781 -27.66 0.0470905 -27.67 0.0386569 -27.68 0.0305791 -27.69 0.0229417 -27.7 0.0158324 -27.71 0.00929269 -27.72 0.00332415 -27.73 -0.00207426 -27.74 -0.00692101 -27.75 -0.0112489 -27.76 -0.0151014 -27.77 -0.0185281 -27.78 -0.0215807 -27.79 -0.0243081 -27.8 -0.0267527 -27.81 -0.0289401 -27.82 -0.0308838 -27.83 -0.0325962 -27.84 -0.0340613 -27.85 -0.0352475 -27.86 -0.0361094 -27.87 -0.03659 -27.88 -0.036625 -27.89 -0.0361464 -27.9 -0.0350877 -27.91 -0.0333891 -27.92 -0.0309946 -27.93 -0.0278305 -27.94 -0.0239341 -27.95 -0.0193208 -27.96 -0.0140315 -27.97 -0.00813249 -27.98 -0.00171528 -27.99 0.0051061 -28 0.0121984 -28.01 0.0194134 -28.02 0.0265939 -28.03 0.0335792 -28.04 0.0401768 -28.05 0.0462527 -28.06 0.0516808 -28.07 0.0563549 -28.08 0.0601955 -28.09 0.0631523 -28.1 0.0652061 -28.11 0.0663689 -28.12 0.0666826 -28.13 0.0662161 -28.14 0.0650614 -28.15 0.063304 -28.16 0.0610949 -28.17 0.0585736 -28.18 0.0558642 -28.19 0.0530815 -28.2 0.0503254 -28.21 0.0476764 -28.22 0.0451921 -28.23 0.0429048 -28.24 0.0408214 -28.25 0.038924 -28.26 0.037176 -28.27 0.0355118 -28.28 0.0338532 -28.29 0.0321219 -28.3 0.0302403 -28.31 0.0281385 -28.32 0.0257603 -28.33 0.0230689 -28.34 0.0200514 -28.35 0.0167218 -28.36 0.0131229 -28.37 0.00932394 -28.38 0.00543114 -28.39 0.00158007 -28.4 -0.00208715 -28.41 -0.00541824 -28.42 -0.0082583 -28.43 -0.0104579 -28.44 -0.0118812 -28.45 -0.0124138 -28.46 -0.0119698 -28.47 -0.0104976 -28.48 -0.00797901 -28.49 -0.00438239 -28.5 0.000140031 -28.51 0.00546931 -28.52 0.0114503 -28.53 0.0178974 -28.54 0.0246015 -28.55 0.0313389 -28.56 0.0378803 -28.57 0.0440001 -28.58 0.0494867 -28.59 0.0541505 -28.6 0.0577609 -28.61 0.0602447 -28.62 0.0615405 -28.63 0.0616205 -28.64 0.0605012 -28.65 0.0582409 -28.66 0.054936 -28.67 0.0507148 -28.68 0.0457296 -28.69 0.0401491 -28.7 0.0341482 -28.71 0.0278954 -28.72 0.0215697 -28.73 0.0153135 -28.74 0.00923498 -28.75 0.00340998 -28.76 -0.00212107 -28.77 -0.00735357 -28.78 -0.0123173 -28.79 -0.0170731 -28.8 -0.0217069 -28.81 -0.0263237 -28.82 -0.0310457 -28.83 -0.0360035 -28.84 -0.0412989 -28.85 -0.0470208 -28.86 -0.0532323 -28.87 -0.0599648 -28.88 -0.067213 -28.89 -0.0749323 -28.9 -0.083039 -28.91 -0.091411 -28.92 -0.0998926 -28.93 -0.108295 -28.94 -0.116382 -28.95 -0.123942 -28.96 -0.130759 -28.97 -0.136624 -28.98 -0.14135 -28.99 -0.14478 -29 -0.146791 -29.01 -0.147303 -29.02 -0.146283 -29.03 -0.143745 -29.04 -0.139752 -29.05 -0.134322 -29.06 -0.127716 -29.07 -0.120123 -29.08 -0.111751 -29.09 -0.102823 -29.1 -0.0935646 -29.11 -0.0841975 -29.12 -0.0749261 -29.13 -0.0659314 -29.14 -0.0573638 -29.15 -0.0493375 -29.16 -0.0419669 -29.17 -0.0352573 -29.18 -0.0291876 -29.19 -0.0237116 -29.2 -0.0187531 -29.21 -0.0142135 -29.22 -0.00997855 -29.23 -0.00592744 -29.24 -0.00194072 -29.25 0.00209154 -29.26 0.00626264 -29.27 0.0106544 -29.28 0.0153087 -29.29 0.0202263 -29.3 0.0253848 -29.31 0.0307327 -29.32 0.0361932 -29.33 0.0416691 -29.34 0.0470488 -29.35 0.0522131 -29.36 0.0570431 -29.37 0.0614273 -29.38 0.0652511 -29.39 0.0684209 -29.4 0.0709174 -29.41 0.0727244 -29.42 0.0738561 -29.43 0.0743566 -29.44 0.0742972 -29.45 0.0737724 -29.46 0.0728945 -29.47 0.0717868 -29.48 0.0705764 -29.49 0.0693878 -29.5 0.068347 -29.51 0.0675399 -29.52 0.0670286 -29.53 0.0668452 -29.54 0.0669891 -29.55 0.067426 -29.56 0.0680894 -29.57 0.0688831 -29.58 0.0696864 -29.59 0.07036 -29.6 0.0707532 -29.61 0.0706705 -29.62 0.069984 -29.63 0.0685645 -29.64 0.0663037 -29.65 0.0631222 -29.66 0.0589751 -29.67 0.0538541 -29.68 0.0477895 -29.69 0.0408495 -29.7 0.0331372 -29.71 0.0247864 -29.72 0.0159391 -29.73 0.00680459 -29.74 -0.00242173 -29.75 -0.011555 -29.76 -0.02042 -29.77 -0.0288582 -29.78 -0.0367355 -29.79 -0.0439468 -29.8 -0.0504199 -29.81 -0.0561177 -29.82 -0.0610378 -29.83 -0.0651838 -29.84 -0.068627 -29.85 -0.0714822 -29.86 -0.0738528 -29.87 -0.0758509 -29.88 -0.077589 -29.89 -0.0791726 -29.9 -0.0806927 -29.91 -0.0822199 -29.92 -0.0837995 -29.93 -0.0854481 -29.94 -0.0871522 -29.95 -0.0888617 -29.96 -0.0904975 -29.97 -0.0919607 -29.98 -0.0931356 -29.99 -0.0938965 -30 -0.0941156 -& -@target G1.S2 -@type xy -0 0 -0.01 0.002952246 -0.02 0.0057020176 -0.03 0.0080750169 -0.04 0.0099211878 -0.05 0.011124006 -0.06 0.011607569 -0.07 0.011341542 -0.08 0.010342964 -0.09 0.0086749561 -0.1 0.0064429877 -0.11 0.003788338 -0.12 0.00087638734 -0.13 -0.0020842409 -0.14 -0.0048996423 -0.15 -0.0073906453 -0.16 -0.0093992272 -0.17 -0.010797975 -0.18 -0.011497948 -0.19 -0.01145431 -0.2 -0.010668834 -0.21 -0.0091898879 -0.22 -0.0071094111 -0.23 -0.0045469026 -0.24 -0.0016795787 -0.25 0.0012964009 -0.26 0.0041913297 -0.27 0.0068236134 -0.28 0.0090284799 -0.29 0.010667882 -0.3 0.011638763 -0.31 0.011878917 -0.32 0.011370161 -0.33 0.01013895 -0.34 0.0082429909 -0.35 0.0057866027 -0.36 0.0029306152 -0.37 -0.00016042673 -0.38 -0.0033229868 -0.39 -0.0063977671 -0.4 -0.0092402885 -0.41 -0.011730294 -0.42 -0.013779186 -0.43 -0.01533527 -0.44 -0.016386366 -0.45 -0.016955913 -0.46 -0.017096259 -0.47 -0.016916255 -0.48 -0.01653946 -0.49 -0.016086288 -0.5 -0.015672582 -0.51 -0.015397695 -0.52 -0.015333246 -0.53 -0.015514002 -0.54 -0.015930355 -0.55 -0.01652437 -0.56 -0.017188916 -0.57 -0.017755187 -0.58 -0.018014435 -0.59 -0.017739069 -0.6 -0.016689238 -0.61 -0.014627238 -0.62 -0.011334946 -0.63 -0.0066309125 -0.64 -0.0003865057 -0.65 0.0074595761 -0.66 0.016890105 -0.67 0.027801665 -0.68 0.040024508 -0.69 0.053263553 -0.7 0.06710158 -0.71 0.081087876 -0.72 0.094737467 -0.73 0.10754074 -0.74 0.11898736 -0.75 0.12859133 -0.76 0.13591766 -0.77 0.14060578 -0.78 0.14239216 -0.79 0.14107876 -0.8 0.13658375 -0.81 0.12909126 -0.82 0.11893984 -0.83 0.10652308 -0.84 0.092342954 -0.85 0.076988614 -0.86 0.061111203 -0.87 0.045392592 -0.88 0.030513402 -0.89 0.017119805 -0.9 0.0058128359 -0.91 -0.0028457706 -0.92 -0.0084717614 -0.93 -0.010965737 -0.94 -0.010295108 -0.95 -0.0065868658 -0.96 -0.00012258045 -0.97 0.0086741742 -0.98 0.019257973 -0.99 0.030988021 -1 0.04315991 -1.01 0.055038031 -1.02 0.065854534 -1.03 0.074838602 -1.04 0.081462717 -1.05 0.0852669 -1.06 0.085932425 -1.07 0.083298224 -1.08 0.077368911 -1.09 0.068313908 -1.1 0.056458919 -1.11 0.042267972 -1.12 0.026319048 -1.13 0.0092756913 -1.14 -0.008127998 -1.15 -0.025106725 -1.16 -0.040979594 -1.17 -0.055143056 -1.18 -0.067099313 -1.19 -0.076482903 -1.2 -0.083079576 -1.21 -0.086837064 -1.22 -0.087867061 -1.23 -0.086438192 -1.24 -0.082956539 -1.25 -0.077912529 -1.26 -0.072017813 -1.27 -0.065977492 -1.28 -0.060464084 -1.29 -0.056114214 -1.3 -0.053491282 -1.31 -0.053052072 -1.32 -0.055118267 -1.33 -0.059856764 -1.34 -0.067273258 -1.35 -0.07719946 -1.36 -0.089340654 -1.37 -0.10316141 -1.38 -0.11794955 -1.39 -0.13299615 -1.4 -0.14755152 -1.41 -0.16086395 -1.42 -0.17222296 -1.43 -0.18099795 -1.44 -0.18667765 -1.45 -0.18889856 -1.46 -0.1874702 -1.47 -0.18233167 -1.48 -0.17357409 -1.49 -0.16178452 -1.5 -0.14755993 -1.51 -0.13161545 -1.52 -0.11477362 -1.53 -0.097921271 -1.54 -0.081966585 -1.55 -0.067794815 -1.56 -0.056222248 -1.57 -0.047955351 -1.58 -0.043561287 -1.59 -0.043688933 -1.6 -0.048306557 -1.61 -0.057297468 -1.62 -0.070393357 -1.63 -0.087132342 -1.64 -0.1068807 -1.65 -0.128864 -1.66 -0.15220462 -1.67 -0.17596197 -1.68 -0.19918222 -1.69 -0.2209392 -1.7 -0.24023371 -1.71 -0.25633884 -1.72 -0.26874107 -1.73 -0.27707639 -1.74 -0.28116491 -1.75 -0.28102575 -1.76 -0.27687307 -1.77 -0.2691026 -1.78 -0.25826591 -1.79 -0.24504452 -1.8 -0.23020886 -1.81 -0.21459243 -1.82 -0.1990895 -1.83 -0.18452897 -1.84 -0.1716277 -1.85 -0.16098786 -1.86 -0.15307744 -1.87 -0.14820997 -1.88 -0.14653661 -1.89 -0.14804531 -1.9 -0.15256938 -1.91 -0.15980166 -1.92 -0.1693447 -1.93 -0.18068666 -1.94 -0.19318972 -1.95 -0.20622195 -1.96 -0.21921106 -1.97 -0.23163246 -1.98 -0.24303883 -1.99 -0.25308011 -2 -0.26151716 -2.01 -0.26823067 -2.02 -0.27322159 -2.03 -0.2765958 -2.04 -0.27854224 -2.05 -0.27938665 -2.06 -0.27953495 -2.07 -0.27936755 -2.08 -0.27925987 -2.09 -0.27955633 -2.1 -0.28054672 -2.11 -0.28244588 -2.12 -0.28537849 -2.13 -0.28936941 -2.14 -0.29434369 -2.15 -0.30013982 -2.16 -0.30648792 -2.17 -0.31301188 -2.18 -0.31933332 -2.19 -0.32505963 -2.2 -0.32980906 -2.21 -0.33323878 -2.22 -0.33506988 -2.23 -0.33510647 -2.24 -0.33325581 -2.25 -0.32953765 -2.26 -0.32406523 -2.27 -0.31707114 -2.28 -0.30899239 -2.29 -0.30030336 -2.3 -0.29151377 -2.31 -0.28316263 -2.32 -0.27578429 -2.33 -0.2698743 -2.34 -0.26585667 -2.35 -0.26405214 -2.36 -0.2646502 -2.37 -0.26770585 -2.38 -0.27313702 -2.39 -0.28055693 -2.4 -0.28937452 -2.41 -0.29889826 -2.42 -0.30828607 -2.43 -0.31657448 -2.44 -0.3227096 -2.45 -0.32558478 -2.46 -0.32408258 -2.47 -0.31711632 -2.48 -0.30364625 -2.49 -0.28256917 -2.5 -0.25297609 -2.51 -0.21468226 -2.52 -0.16740099 -2.53 -0.11108454 -2.54 -0.045934461 -2.55 0.027597962 -2.56 0.1088167 -2.57 0.19679734 -2.58 0.29040519 -2.59 0.38832924 -2.6 0.48911735 -2.61 0.59113504 -2.62 0.69256162 -2.63 0.79172722 -2.64 0.88698607 -2.65 0.97674752 -2.66 1.0595219 -2.67 1.1339274 -2.68 1.1987091 -2.69 1.2528559 -2.7 1.2955414 -2.71 1.3261483 -2.72 1.3434144 -2.73 1.3478975 -2.74 1.3397761 -2.75 1.3193483 -2.76 1.2870948 -2.77 1.2436991 -2.78 1.1899933 -2.79 1.1269734 -2.8 1.0557818 -2.81 0.97764672 -2.82 0.89388731 -2.83 0.80575959 -2.84 0.71487599 -2.85 0.62275703 -2.86 0.5307952 -2.87 0.4403133 -2.88 0.35255429 -2.89 0.26865438 -2.9 0.18961761 -2.91 0.11629984 -2.92 0.049388587 -2.93 -0.010607492 -2.94 -0.063151701 -2.95 -0.10805859 -2.96 -0.1456518 -2.97 -0.17627312 -2.98 -0.20037788 -2.99 -0.21856764 -3 -0.23157236 -3.01 -0.24022093 -3.02 -0.24540752 -3.03 -0.248063 -3.04 -0.24911784 -3.05 -0.24947532 -3.06 -0.25002565 -3.07 -0.25152242 -3.08 -0.25456079 -3.09 -0.25958435 -3.1 -0.26688001 -3.11 -0.27657185 -3.12 -0.28862302 -3.13 -0.30284286 -3.14 -0.31890368 -3.15 -0.3363581 -3.16 -0.35466844 -3.17 -0.37320307 -3.18 -0.39128836 -3.19 -0.40828712 -3.2 -0.42361935 -3.21 -0.43677797 -3.22 -0.4473515 -3.23 -0.45504704 -3.24 -0.45970244 -3.25 -0.46129545 -3.26 -0.45994426 -3.27 -0.45589943 -3.28 -0.44947557 -3.29 -0.44118933 -3.3 -0.43168426 -3.31 -0.42158042 -3.32 -0.41150147 -3.33 -0.40205687 -3.34 -0.39381284 -3.35 -0.38726508 -3.36 -0.38281857 -3.37 -0.38076976 -3.38 -0.38129392 -3.39 -0.38449549 -3.4 -0.39032302 -3.41 -0.39849583 -3.42 -0.40865159 -3.43 -0.42037912 -3.44 -0.43320098 -3.45 -0.44659291 -3.46 -0.46000614 -3.47 -0.47288941 -3.48 -0.48470619 -3.49 -0.49495218 -3.5 -0.50313171 -3.51 -0.50875534 -3.52 -0.51146365 -3.53 -0.51101882 -3.54 -0.50715943 -3.55 -0.4996532 -3.56 -0.48828352 -3.57 -0.47283629 -3.58 -0.45308642 -3.59 -0.42878501 -3.6 -0.39965157 -3.61 -0.36534213 -3.62 -0.32535599 -3.63 -0.2791981 -3.64 -0.22670117 -3.65 -0.16747354 -3.66 -0.10115346 -3.67 -0.027439289 -3.68 0.053876577 -3.69 0.14287773 -3.7 0.23948915 -3.71 0.34344985 -3.72 0.45428388 -3.73 0.57135315 -3.74 0.69385349 -3.75 0.82016307 -3.76 0.9487991 -3.77 1.0780633 -3.78 1.2060639 -3.79 1.330782 -3.8 1.4500901 -3.81 1.5618292 -3.82 1.6638601 -3.83 1.754128 -3.84 1.8305895 -3.85 1.8907655 -3.86 1.9337558 -3.87 1.9587431 -3.88 1.9650595 -3.89 1.9524042 -3.9 1.920915 -3.91 1.8710932 -3.92 1.8038534 -3.93 1.7204683 -3.94 1.6225536 -3.95 1.5119431 -3.96 1.3904187 -3.97 1.2605739 -3.98 1.1250893 -3.99 0.986315 -4 0.84654345 -4.01 0.70794819 -4.02 0.57256133 -4.03 0.44214376 -4.04 0.31820975 -4.05 0.20199418 -4.06 0.094436475 -4.07 -0.003563231 -4.08 -0.091426086 -4.09 -0.16953254 -4.1 -0.2380899 -4.11 -0.29748101 -4.12 -0.34824841 -4.13 -0.39105275 -4.14 -0.42663487 -4.15 -0.45577474 -4.16 -0.47925716 -4.17 -0.49784335 -4.18 -0.51221247 -4.19 -0.52288015 -4.2 -0.53060703 -4.21 -0.53589152 -4.22 -0.53911472 -4.23 -0.54058518 -4.24 -0.54054311 -4.25 -0.53917967 -4.26 -0.53664613 -4.27 -0.53307026 -4.28 -0.52857142 -4.29 -0.52326631 -4.3 -0.51725248 -4.31 -0.5107042 -4.32 -0.50378858 -4.33 -0.49666952 -4.34 -0.48951223 -4.35 -0.48247521 -4.36 -0.47569715 -4.37 -0.46928908 -4.38 -0.46331774 -4.39 -0.45779971 -4.4 -0.45268833 -4.41 -0.44787468 -4.42 -0.44315501 -4.43 -0.43826015 -4.44 -0.43287066 -4.45 -0.42661904 -4.46 -0.41910583 -4.47 -0.40991487 -4.48 -0.39862968 -4.49 -0.3848563 -4.5 -0.36824381 -4.51 -0.34850081 -4.52 -0.32532976 -4.53 -0.2985631 -4.54 -0.2682755 -4.55 -0.23462813 -4.56 -0.19784347 -4.57 -0.15825 -4.58 -0.11627341 -4.59 -0.072426568 -4.6 -0.027293197 -4.61 0.018490314 -4.62 0.064253614 -4.63 0.10929175 -4.64 0.15284827 -4.65 0.19425375 -4.66 0.23293449 -4.67 0.26834666 -4.68 0.30001542 -4.69 0.32754015 -4.7 0.35059832 -4.71 0.36894697 -4.72 0.38241936 -4.73 0.39092018 -4.74 0.3944053 -4.75 0.39274783 -4.76 0.38601699 -4.77 0.37453333 -4.78 0.35845914 -4.79 0.3379858 -4.8 0.31333174 -4.81 0.28473926 -4.82 0.25247551 -4.83 0.2168344 -4.84 0.1781372 -4.85 0.13673573 -4.86 0.092975561 -4.87 0.047264364 -4.88 0.00016406739 -4.89 -0.047819348 -4.9 -0.096165234 -4.91 -0.14433218 -4.92 -0.19176829 -4.93 -0.23792398 -4.94 -0.28226517 -4.95 -0.3242905 -4.96 -0.36354465 -4.97 -0.3995869 -4.98 -0.43199833 -4.99 -0.46064501 -5 -0.48550142 -5.01 -0.50659018 -5.02 -0.52404616 -5.03 -0.53811196 -5.04 -0.54913126 -5.05 -0.55753344 -5.06 -0.56381583 -5.07 -0.56851853 -5.08 -0.57220167 -5.09 -0.57542752 -5.1 -0.57874851 -5.11 -0.58261692 -5.12 -0.5873702 -5.13 -0.59322777 -5.14 -0.60028002 -5.15 -0.60847235 -5.16 -0.6176034 -5.17 -0.62733041 -5.18 -0.63717887 -5.19 -0.64655593 -5.2 -0.65473814 -5.21 -0.66086506 -5.22 -0.66422862 -5.23 -0.66407699 -5.24 -0.65971415 -5.25 -0.65053055 -5.26 -0.63604229 -5.27 -0.61591354 -5.28 -0.58998284 -5.29 -0.55827652 -5.3 -0.52102117 -5.31 -0.47862168 -5.32 -0.4314382 -5.33 -0.38065265 -5.34 -0.32722064 -5.35 -0.27220932 -5.36 -0.21677137 -5.37 -0.16209164 -5.38 -0.10934518 -5.39 -0.059659793 -5.4 -0.014083789 -5.41 0.026451023 -5.42 0.061155722 -5.43 0.089004526 -5.44 0.10981126 -5.45 0.12346401 -5.46 0.12994183 -5.47 0.12939704 -5.48 0.12214516 -5.49 0.10864584 -5.5 0.089476953 -5.51 0.065306696 -5.52 0.036865493 -5.53 0.0049155116 -5.54 -0.029850674 -5.55 -0.066609187 -5.56 -0.10458947 -5.57 -0.14315733 -5.58 -0.18176786 -5.59 -0.21995953 -5.6 -0.25735753 -5.61 -0.29366956 -5.62 -0.32867765 -5.63 -0.36222949 -5.64 -0.39422508 -5.65 -0.42456521 -5.66 -0.45317425 -5.67 -0.48007093 -5.68 -0.50523319 -5.69 -0.52860118 -5.7 -0.55008732 -5.71 -0.56956987 -5.72 -0.58689188 -5.73 -0.60185866 -5.74 -0.61424163 -5.75 -0.62378231 -5.76 -0.63016618 -5.77 -0.63294208 -5.78 -0.63188083 -5.79 -0.62673992 -5.8 -0.61722228 -5.81 -0.60304444 -5.82 -0.5839446 -5.83 -0.55968551 -5.84 -0.53005862 -5.85 -0.4948864 -5.86 -0.45402545 -5.87 -0.40736766 -5.88 -0.35458208 -5.89 -0.2957249 -5.9 -0.23099675 -5.91 -0.16048684 -5.92 -0.084336765 -5.93 -0.0027565578 -5.94 0.083965411 -5.95 0.1754545 -5.96 0.27123806 -5.97 0.370738 -5.98 0.47326356 -5.99 0.57802995 -6 0.68404474 -6.01 0.79015586 -6.02 0.89517455 -6.03 0.99783246 -6.04 1.0967951 -6.05 1.1906724 -6.06 1.278047 -6.07 1.3575205 -6.08 1.4277453 -6.09 1.4874567 -6.1 1.5352758 -6.11 1.5699288 -6.12 1.5908295 -6.13 1.5977176 -6.14 1.5903411 -6.15 1.568718 -6.16 1.5331396 -6.17 1.4841747 -6.18 1.4226624 -6.19 1.3496762 -6.2 1.2665094 -6.21 1.174581 -6.22 1.0754204 -6.23 0.97085409 -6.24 0.86288416 -6.25 0.75323283 -6.26 0.64355603 -6.27 0.53539934 -6.28 0.43016263 -6.29 0.32906926 -6.3 0.23314534 -6.31 0.14320787 -6.32 0.059882768 -6.33 -0.016262699 -6.34 -0.084817171 -6.35 -0.14608899 -6.36 -0.20015583 -6.37 -0.2471765 -6.38 -0.28735089 -6.39 -0.32088379 -6.4 -0.34794656 -6.41 -0.36865064 -6.42 -0.3830176 -6.43 -0.39096975 -6.44 -0.39222777 -6.45 -0.38616511 -6.46 -0.37270847 -6.47 -0.35143764 -6.48 -0.32185814 -6.49 -0.28348338 -6.5 -0.23588074 -6.51 -0.17871669 -6.52 -0.11180127 -6.53 -0.035132887 -6.54 0.051066576 -6.55 0.14635924 -6.56 0.25030354 -6.57 0.36151379 -6.58 0.47843982 -6.59 0.59944937 -6.6 0.72268433 -6.61 0.84609494 -6.62 0.96749835 -6.63 1.0846345 -6.64 1.195224 -6.65 1.2970528 -6.66 1.3880231 -6.67 1.4657161 -6.68 1.5282674 -6.69 1.5748364 -6.7 1.6045122 -6.71 1.6167951 -6.72 1.6115073 -6.73 1.5889069 -6.74 1.5495834 -6.75 1.4945131 -6.76 1.4249567 -6.77 1.342456 -6.78 1.2485933 -6.79 1.1451085 -6.8 1.0345546 -6.81 0.918974 -6.82 0.80032182 -6.83 0.68044686 -6.84 0.56105198 -6.85 0.4436539 -6.86 0.32955751 -6.87 0.21984042 -6.88 0.11534319 -6.89 0.016695942 -6.9 -0.075330908 -6.91 -0.16087128 -6.92 -0.24000112 -6.93 -0.31286154 -6.94 -0.37969322 -6.95 -0.44080366 -6.96 -0.4965385 -6.97 -0.54724888 -6.98 -0.59327096 -6.99 -0.63490861 -7 -0.67241988 -7.01 -0.70583378 -7.02 -0.73540606 -7.03 -0.76133076 -7.04 -0.78369561 -7.05 -0.80255962 -7.06 -0.81798211 -7.07 -0.83003717 -7.08 -0.83883071 -7.09 -0.84451174 -7.1 -0.84728451 -7.11 -0.8474138 -7.12 -0.84516763 -7.13 -0.84096208 -7.14 -0.835307 -7.15 -0.82870162 -7.16 -0.82164502 -7.17 -0.81463652 -7.18 -0.80815639 -7.19 -0.80264602 -7.2 -0.79848796 -7.21 -0.79599214 -7.22 -0.7953799 -7.23 -0.79681434 -7.24 -0.80035285 -7.25 -0.80585926 -7.26 -0.81310296 -7.27 -0.8218081 -7.28 -0.83162967 -7.29 -0.84217078 -7.3 -0.85300195 -7.31 -0.86368233 -7.32 -0.8737794 -7.33 -0.88288856 -7.34 -0.8906364 -7.35 -0.89665772 -7.36 -0.90072413 -7.37 -0.90273646 -7.38 -0.90262165 -7.39 -0.90037552 -7.4 -0.89605299 -7.41 -0.88975664 -7.42 -0.88162298 -7.43 -0.87180535 -7.44 -0.860458 -7.45 -0.84771946 -7.46 -0.83366211 -7.47 -0.81833867 -7.48 -0.80181505 -7.49 -0.78404615 -7.5 -0.76493473 -7.51 -0.74433638 -7.52 -0.72206836 -7.53 -0.69792562 -7.54 -0.67169355 -7.55 -0.64316847 -7.56 -0.6121765 -7.57 -0.5785387 -7.58 -0.54213432 -7.59 -0.50308999 -7.6 -0.4615744 -7.61 -0.4178317 -7.62 -0.37221423 -7.63 -0.32517715 -7.64 -0.27727474 -7.65 -0.22914683 -7.66 -0.18150238 -7.67 -0.13510078 -7.68 -0.090764019 -7.69 -0.049397294 -7.7 -0.011775831 -7.71 0.021469607 -7.72 0.049718512 -7.73 0.072449809 -7.74 0.089259135 -7.75 0.099872115 -7.76 0.10415337 -7.77 0.10211217 -7.78 0.09389913 -7.79 0.079782548 -7.8 0.060065543 -7.81 0.035289728 -7.82 0.0063440095 -7.83 -0.026027243 -7.84 -0.06101503 -7.85 -0.097764156 -7.86 -0.13539091 -7.87 -0.1730011 -7.88 -0.20970345 -7.89 -0.24462852 -7.9 -0.27693008 -7.91 -0.30574925 -7.92 -0.3300941 -7.93 -0.34949811 -7.94 -0.36334993 -7.95 -0.37111201 -7.96 -0.37232186 -7.97 -0.3665997 -7.98 -0.35365504 -7.99 -0.33328886 -8 -0.30540497 -8.01 -0.2700101 -8.02 -0.22722561 -8.03 -0.17676689 -8.04 -0.11956241 -8.05 -0.056176314 -8.06 0.012736973 -8.07 0.086394682 -8.08 0.16388924 -8.09 0.24419589 -8.1 0.326187 -8.11 0.40864665 -8.12 0.49028826 -8.13 0.56978477 -8.14 0.64554189 -8.15 0.71620831 -8.16 0.78058074 -8.17 0.83747642 -8.18 0.88581646 -8.19 0.92466861 -8.2 0.95327434 -8.21 0.97106628 -8.22 0.97769471 -8.23 0.97303282 -8.24 0.95718942 -8.25 0.93018239 -8.26 0.8925933 -8.27 0.84558758 -8.28 0.79025153 -8.29 0.72776412 -8.3 0.65944187 -8.31 0.58670679 -8.32 0.51104809 -8.33 0.43399109 -8.34 0.35705849 -8.35 0.28173877 -8.36 0.20953259 -8.37 0.14198718 -8.38 0.080212354 -8.39 0.025196391 -8.4 -0.022181385 -8.41 -0.06120931 -8.42 -0.09134893 -8.43 -0.11223633 -8.44 -0.12367857 -8.45 -0.12565166 -8.46 -0.11828986 -8.47 -0.10184386 -8.48 -0.076391045 -8.49 -0.042741455 -8.5 -0.0017970174 -8.51 0.045650858 -8.52 0.098719193 -8.53 0.1564445 -8.54 0.21779329 -8.55 0.28167371 -8.56 0.34694651 -8.57 0.41243582 -8.58 0.47694423 -8.59 0.53911988 -8.6 0.59769689 -8.61 0.6515554 -8.62 0.69960138 -8.63 0.74080223 -8.64 0.77422131 -8.65 0.79904338 -8.66 0.8145955 -8.67 0.82036843 -8.68 0.81603812 -8.69 0.80148153 -8.7 0.77655341 -8.71 0.74147329 -8.72 0.69707583 -8.73 0.64429557 -8.74 0.58413482 -8.75 0.51778175 -8.76 0.44658726 -8.77 0.37203206 -8.78 0.29569051 -8.79 0.21919122 -8.8 0.14417319 -8.81 0.072318415 -8.82 0.0053378555 -8.83 -0.055337593 -8.84 -0.10860752 -8.85 -0.1534679 -8.86 -0.18914548 -8.87 -0.21511658 -8.88 -0.23111947 -8.89 -0.23715881 -8.9 -0.23350063 -8.91 -0.2206585 -8.92 -0.19933597 -8.93 -0.17034194 -8.94 -0.13481766 -8.95 -0.094329828 -8.96 -0.050214494 -8.97 -0.0038444398 -8.98 0.043410868 -8.99 0.090224406 -9 0.13534654 -9.01 0.17763661 -9.02 0.21608728 -9.03 0.24984069 -9.04 0.27809355 -9.05 0.30008006 -9.06 0.31579258 -9.07 0.32508093 -9.08 0.3279448 -9.09 0.32452013 -9.1 0.31505912 -9.11 0.2999126 -9.12 0.27950592 -9.13 0.254324 -9.14 0.22488477 -9.15 0.19170539 -9.16 0.15522512 -9.17 0.11615565 -9.18 0.075065113 -9.19 0.032463378 -9.2 -0.011161631 -9.21 -0.055341831 -9.22 -0.099628188 -9.23 -0.1435881 -9.24 -0.18680277 -9.25 -0.22886624 -9.26 -0.26937596 -9.27 -0.30785326 -9.28 -0.34392617 -9.29 -0.3773075 -9.3 -0.40767928 -9.31 -0.43476247 -9.32 -0.45832113 -9.33 -0.47817669 -9.34 -0.49421478 -9.35 -0.50639962 -9.36 -0.51476456 -9.37 -0.51943878 -9.38 -0.52057927 -9.39 -0.51848471 -9.4 -0.51373186 -9.41 -0.50681497 -9.42 -0.49828483 -9.43 -0.48873816 -9.44 -0.47879291 -9.45 -0.4690688 -9.46 -0.46016623 -9.47 -0.45263505 -9.48 -0.4469618 -9.49 -0.44356813 -9.5 -0.44287316 -9.51 -0.44489623 -9.52 -0.44962365 -9.53 -0.4569174 -9.54 -0.46650241 -9.55 -0.47797278 -9.56 -0.49080449 -9.57 -0.50437561 -9.58 -0.51798328 -9.59 -0.5308733 -9.6 -0.5422678 -9.61 -0.55120667 -9.62 -0.55701147 -9.63 -0.5590549 -9.64 -0.55677871 -9.65 -0.54974453 -9.66 -0.53765265 -9.67 -0.52035495 -9.68 -0.49786437 -9.69 -0.47035681 -9.7 -0.43816671 -9.71 -0.40177902 -9.72 -0.36170703 -9.73 -0.31879744 -9.74 -0.27399281 -9.75 -0.22821825 -9.76 -0.18241303 -9.77 -0.13752068 -9.78 -0.094456506 -9.79 -0.054082886 -9.8 -0.017182045 -9.81 0.015567919 -9.82 0.043612648 -9.83 0.06639481 -9.84 0.083588851 -9.85 0.095240822 -9.86 0.10151193 -9.87 0.10265663 -9.88 0.099083948 -9.89 0.091349281 -9.9 0.080140585 -9.91 0.066262218 -9.92 0.050617271 -9.93 0.034187287 -9.94 0.018035895 -9.95 0.0033407274 -9.96 -0.008774984 -9.97 -0.017267762 -9.98 -0.021117492 -9.99 -0.01936971 -10 -0.01115806 -10.01 0.0042746954 -10.02 0.027556939 -10.03 0.059170103 -10.04 0.099433336 -10.05 0.14852183 -10.06 0.20666363 -10.07 0.27357556 -10.08 0.34846678 -10.09 0.43066549 -10.1 0.51930796 -10.11 0.61334887 -10.12 0.71157475 -10.13 0.81262132 -10.14 0.91499716 -10.15 1.0171082 -10.16 1.1172942 -10.17 1.2136819 -10.18 1.3043587 -10.19 1.387777 -10.2 1.4623715 -10.21 1.5266727 -10.22 1.5793675 -10.23 1.619304 -10.24 1.6455499 -10.25 1.6573995 -10.26 1.6543928 -10.27 1.6363217 -10.28 1.603022 -10.29 1.5544503 -10.3 1.4916371 -10.31 1.4156928 -10.32 1.3276775 -10.33 1.2288353 -10.34 1.1205736 -10.35 1.0044044 -10.36 0.88192431 -10.37 0.75476677 -10.38 0.62457361 -10.39 0.49296297 -10.4 0.36154315 -10.41 0.23186699 -10.42 0.10522798 -10.43 -0.017230561 -10.44 -0.13452758 -10.45 -0.24585424 -10.46 -0.3505774 -10.47 -0.44823569 -10.48 -0.53853608 -10.49 -0.62133942 -10.5 -0.69662627 -10.51 -0.76437234 -10.52 -0.82465429 -10.53 -0.87816103 -10.54 -0.92527546 -10.55 -0.96641756 -10.56 -1.0020284 -10.57 -1.0325501 -10.58 -1.0584166 -10.59 -1.0800472 -10.6 -1.0978119 -10.61 -1.1120602 -10.62 -1.1230907 -10.63 -1.1309822 -10.64 -1.1362016 -10.65 -1.1389244 -10.66 -1.1393164 -10.67 -1.1375237 -10.68 -1.1336636 -10.69 -1.1278533 -10.7 -1.1201811 -10.71 -1.1107813 -10.72 -1.0997459 -10.73 -1.0872115 -10.74 -1.073228 -10.75 -1.0579975 -10.76 -1.0416969 -10.77 -1.0244738 -10.78 -1.0064935 -10.79 -0.98792683 -10.8 -0.96893573 -10.81 -0.94968511 -10.82 -0.93033564 -10.83 -0.91103689 -10.84 -0.89192942 -10.85 -0.87315745 -10.86 -0.85483152 -10.87 -0.83702696 -10.88 -0.81980224 -10.89 -0.80318846 -10.9 -0.78718851 -10.91 -0.77177291 -10.92 -0.75687758 -10.93 -0.74240186 -10.94 -0.72820738 -10.95 -0.71411557 -10.96 -0.69989907 -10.97 -0.6852682 -10.98 -0.66992405 -10.99 -0.65353501 -11 -0.63574087 -11.01 -0.61616077 -11.02 -0.59440124 -11.03 -0.57006788 -11.04 -0.54277783 -11.05 -0.51216938 -11.06 -0.47791862 -11.07 -0.43970915 -11.08 -0.3971714 -11.09 -0.35031204 -11.1 -0.29918874 -11.11 -0.2438942 -11.12 -0.1846352 -11.13 -0.12173763 -11.14 -0.055646045 -11.15 0.013077597 -11.16 0.08376175 -11.17 0.15563536 -11.18 0.22784386 -11.19 0.29937803 -11.2 0.36922655 -11.21 0.43641467 -11.22 0.49998277 -11.23 0.55901753 -11.24 0.61267979 -11.25 0.6602317 -11.26 0.70106116 -11.27 0.73470629 -11.28 0.76087069 -11.29 0.77943672 -11.3 0.79024652 -11.31 0.79356861 -11.32 0.79009432 -11.33 0.78053121 -11.34 0.76567742 -11.35 0.74645861 -11.36 0.72389981 -11.37 0.69909321 -11.38 0.67316537 -11.39 0.64724025 -11.4 0.62240344 -11.41 0.59973673 -11.42 0.58024702 -11.43 0.56467634 -11.44 0.55355383 -11.45 0.54727817 -11.46 0.54605627 -11.47 0.54989658 -11.48 0.55861335 -11.49 0.57183409 -11.5 0.58901289 -11.51 0.60945326 -11.52 0.63234006 -11.53 0.65673487 -11.54 0.6815657 -11.55 0.70575326 -11.56 0.72828228 -11.57 0.74817799 -11.58 0.76453745 -11.59 0.77655483 -11.6 0.78354621 -11.61 0.78496879 -11.62 0.78043293 -11.63 0.76969162 -11.64 0.75254066 -11.65 0.72897188 -11.66 0.69955904 -11.67 0.66471684 -11.68 0.62497945 -11.69 0.58098062 -11.7 0.53342847 -11.71 0.48308385 -11.72 0.43073479 -11.73 0.37717337 -11.74 0.32317415 -11.75 0.2694927 -11.76 0.21688384 -11.77 0.16593208 -11.78 0.11713781 -11.79 0.070913141 -11.8 0.027575359 -11.81 -0.012654203 -11.82 -0.049645261 -11.83 -0.083353026 -11.84 -0.11380896 -11.85 -0.14111021 -11.86 -0.1653898 -11.87 -0.18673038 -11.88 -0.2054539 -11.89 -0.22184822 -11.9 -0.23614652 -11.91 -0.24856704 -11.92 -0.25930878 -11.93 -0.2685421 -11.94 -0.27640234 -11.95 -0.28298861 -11.96 -0.28835879 -11.97 -0.29253529 -11.98 -0.29545793 -11.99 -0.29707755 -12 -0.29736632 -12.01 -0.29623422 -12.02 -0.29358545 -12.03 -0.28932159 -12.04 -0.28334131 -12.05 -0.27558208 -12.06 -0.26599405 -12.07 -0.25455643 -12.08 -0.24128335 -12.09 -0.22619042 -12.1 -0.20932644 -12.11 -0.19092076 -12.12 -0.17115773 -12.13 -0.15024879 -12.14 -0.12843914 -12.15 -0.10599703 -12.16 -0.083207071 -12.17 -0.060364039 -12.18 -0.037761066 -12.19 -0.015681789 -12.2 0.0056042338 -12.21 0.025786078 -12.22 0.044713805 -12.23 0.062249717 -12.24 0.078299834 -12.25 0.092825876 -12.26 0.10584724 -12.27 0.11744271 -12.28 0.12774617 -12.29 0.1369447 -12.3 0.14527388 -12.31 0.15300495 -12.32 0.16044685 -12.33 0.16795274 -12.34 0.17585842 -12.35 0.18448171 -12.36 0.19411856 -12.37 0.2050295 -12.38 0.21742739 -12.39 0.23146809 -12.4 0.24724104 -12.41 0.26476324 -12.42 0.28397229 -12.43 0.30477125 -12.44 0.32691225 -12.45 0.35004555 -12.46 0.37378461 -12.47 0.39769963 -12.48 0.42131767 -12.49 0.44413583 -12.5 0.46563768 -12.51 0.48530861 -12.52 0.50265475 -12.53 0.51721847 -12.54 0.52851863 -12.55 0.53613177 -12.56 0.53987369 -12.57 0.53964614 -12.58 0.53538926 -12.59 0.52714291 -12.6 0.51504325 -12.61 0.49932013 -12.62 0.48028914 -12.63 0.45834045 -12.64 0.43392634 -12.65 0.40753404 -12.66 0.37967978 -12.67 0.35094886 -12.68 0.32191021 -12.69 0.29305528 -12.7 0.26482586 -12.71 0.23760061 -12.72 0.21168107 -12.73 0.18728107 -12.74 0.1645214 -12.75 0.14342541 -12.76 0.1239198 -12.77 0.1058714 -12.78 0.089011179 -12.79 0.072935716 -12.8 0.057244328 -12.81 0.041493304 -12.82 0.025212809 -12.83 0.0079246464 -12.84 -0.010839485 -12.85 -0.031520777 -12.86 -0.054516782 -12.87 -0.080166884 -12.88 -0.10881099 -12.89 -0.14070978 -12.9 -0.17585363 -12.91 -0.21420356 -12.92 -0.25566137 -12.93 -0.30003901 -12.94 -0.34706825 -12.95 -0.39640465 -12.96 -0.44764061 -12.97 -0.5003141 -12.98 -0.55392319 -12.99 -0.6079318 -13 -0.66176353 -13.01 -0.71483334 -13.02 -0.76660869 -13.03 -0.81657585 -13.04 -0.86425115 -13.05 -0.90918705 -13.06 -0.95097542 -13.07 -0.98925319 -13.08 -1.0236987 -13.09 -1.0540445 -13.1 -1.0800358 -13.11 -1.1013514 -13.12 -1.1178193 -13.13 -1.1295073 -13.14 -1.1363537 -13.15 -1.1383324 -13.16 -1.1354428 -13.17 -1.1277339 -13.18 -1.1152657 -13.19 -1.0981653 -13.2 -1.0765684 -13.21 -1.050667 -13.22 -1.0206196 -13.23 -0.98657444 -13.24 -0.94910102 -13.25 -0.90856757 -13.26 -0.86539272 -13.27 -0.82003406 -13.28 -0.7729892 -13.29 -0.72478572 -13.3 -0.67597839 -13.31 -0.62713159 -13.32 -0.57881696 -13.33 -0.53160311 -13.34 -0.48617979 -13.35 -0.44297735 -13.36 -0.40244424 -13.37 -0.36498461 -13.38 -0.33093222 -13.39 -0.30051881 -13.4 -0.27390886 -13.41 -0.2511805 -13.42 -0.23232749 -13.43 -0.2172582 -13.44 -0.20580604 -13.45 -0.19789562 -13.46 -0.1930967 -13.47 -0.19098823 -13.48 -0.19118562 -13.49 -0.19329122 -13.5 -0.19690618 -13.51 -0.20163968 -13.52 -0.20712205 -13.53 -0.21301292 -13.54 -0.21900982 -13.55 -0.22484651 -13.56 -0.23028067 -13.57 -0.23510925 -13.58 -0.23919357 -13.59 -0.24240959 -13.6 -0.24464156 -13.61 -0.24577267 -13.62 -0.24567506 -13.63 -0.24419465 -13.64 -0.24114348 -13.65 -0.23628999 -13.66 -0.22935314 -13.67 -0.21994503 -13.68 -0.20756875 -13.69 -0.1918611 -13.7 -0.17238057 -13.71 -0.14863703 -13.72 -0.12013975 -13.73 -0.086417386 -13.74 -0.047044461 -13.75 -0.001664078 -13.76 0.049987364 -13.77 0.10805587 -13.78 0.17258167 -13.79 0.24367002 -13.8 0.32078381 -13.81 0.40325071 -13.82 0.49035582 -13.83 0.58120902 -13.84 0.67475945 -13.85 0.76981286 -13.86 0.86505806 -13.87 0.95909555 -13.88 1.0504774 -13.89 1.1377351 -13.9 1.2191193 -13.91 1.2932396 -13.92 1.3589798 -13.93 1.4152747 -13.94 1.4612188 -13.95 1.4961119 -13.96 1.5194856 -13.97 1.5311001 -13.98 1.5309536 -13.99 1.5192977 -14 1.4966036 -14.01 1.4632939 -14.02 1.4201978 -14.03 1.3686351 -14.04 1.3098561 -14.05 1.2450631 -14.06 1.1754783 -14.07 1.1023184 -14.08 1.0267636 -14.09 0.94990014 -14.1 0.87271068 -14.11 0.79605394 -14.12 0.72067414 -14.13 0.64719078 -14.14 0.57599146 -14.15 0.50726166 -14.16 0.44108758 -14.17 0.37743572 -14.18 0.31617156 -14.19 0.25708245 -14.2 0.19990504 -14.21 0.14434714 -14.22 0.090113151 -14.23 0.03693119 -14.24 -0.015424884 -14.25 -0.067144157 -14.26 -0.11836461 -14.27 -0.16911979 -14.28 -0.21937109 -14.29 -0.26900726 -14.3 -0.31785314 -14.31 -0.36567957 -14.32 -0.41221396 -14.33 -0.45715287 -14.34 -0.50017549 -14.35 -0.54090161 -14.36 -0.57891694 -14.37 -0.61404907 -14.38 -0.6460359 -14.39 -0.6746491 -14.4 -0.69969154 -14.41 -0.7209999 -14.42 -0.73844032 -14.43 -0.75190345 -14.44 -0.76129486 -14.45 -0.76653343 -14.46 -0.76748825 -14.47 -0.76389218 -14.48 -0.75583034 -14.49 -0.74325301 -14.5 -0.72605038 -14.51 -0.7041113 -14.52 -0.67732738 -14.53 -0.64560007 -14.54 -0.60885565 -14.55 -0.5670578 -14.56 -0.52022021 -14.57 -0.46839907 -14.58 -0.41157235 -14.59 -0.35010247 -14.6 -0.28448118 -14.61 -0.21517338 -14.62 -0.14274723 -14.63 -0.067865397 -14.64 0.0087215204 -14.65 0.086191411 -14.66 0.1636691 -14.67 0.24024993 -14.68 0.31502074 -14.69 0.38698952 -14.7 0.45518828 -14.71 0.51897942 -14.72 0.57774041 -14.73 0.63098401 -14.74 0.67835848 -14.75 0.71966914 -14.76 0.75488039 -14.77 0.78411666 -14.78 0.80765303 -14.79 0.82589437 -14.8 0.8393069 -14.81 0.84836443 -14.82 0.85398901 -14.83 0.85688501 -14.84 0.85771337 -14.85 0.85708494 -14.86 0.85552461 -14.87 0.85344969 -14.88 0.85114527 -14.89 0.84874876 -14.9 0.84624302 -14.91 0.84345488 -14.92 0.83999049 -14.93 0.83537867 -14.94 0.82903266 -14.95 0.82028104 -14.96 0.80840396 -14.97 0.79266935 -14.98 0.77236621 -14.99 0.74684292 -15 0.71554046 -15.01 0.67802108 -15.02 0.63399546 -15.03 0.58305139 -15.04 0.52538012 -15.05 0.46140894 -15.06 0.39162294 -15.07 0.31664083 -15.08 0.23723012 -15.09 0.15427969 -15.1 0.06877105 -15.11 -0.018253059 -15.12 -0.10572423 -15.13 -0.19258294 -15.14 -0.27772844 -15.15 -0.36013238 -15.16 -0.43898996 -15.17 -0.51362529 -15.18 -0.58347791 -15.19 -0.64813443 -15.2 -0.70732705 -15.21 -0.76093158 -15.22 -0.80895389 -15.23 -0.85151421 -15.24 -0.88883103 -15.25 -0.92112663 -15.26 -0.94865078 -15.27 -0.97187882 -15.28 -0.99127586 -15.29 -1.0071858 -15.3 -1.019908 -15.31 -1.0296909 -15.32 -1.0367284 -15.33 -1.0411495 -15.34 -1.0430206 -15.35 -1.0423601 -15.36 -1.0391173 -15.37 -1.0331242 -15.38 -1.024314 -15.39 -1.012697 -15.4 -0.99819879 -15.41 -0.9807862 -15.42 -0.96047951 -15.43 -0.93734491 -15.44 -0.91151321 -15.45 -0.88317871 -15.46 -0.85259673 -15.47 -0.82007893 -15.48 -0.78595715 -15.49 -0.75063524 -15.5 -0.71459681 -15.51 -0.67825978 -15.52 -0.64201932 -15.53 -0.60623683 -15.54 -0.57122322 -15.55 -0.53722758 -15.56 -0.50442783 -15.57 -0.47292281 -15.58 -0.44273068 -15.59 -0.41381075 -15.6 -0.38604487 -15.61 -0.35918652 -15.62 -0.33296218 -15.63 -0.30708284 -15.64 -0.28124622 -15.65 -0.25515081 -15.66 -0.22851329 -15.67 -0.20108648 -15.68 -0.17267031 -15.69 -0.14312658 -15.7 -0.1123727 -15.71 -0.08038187 -15.72 -0.047252219 -15.73 -0.01317722 -15.74 0.021623831 -15.75 0.056880196 -15.76 0.092282596 -15.77 0.12749704 -15.78 0.1621803 -15.79 0.19599389 -15.8 0.228619 -15.81 0.25976253 -15.82 0.28913432 -15.83 0.31649302 -15.84 0.3417916 -15.85 0.3649584 -15.86 0.38597835 -15.87 0.40488295 -15.88 0.421748 -15.89 0.43667732 -15.9 0.44979948 -15.91 0.46124762 -15.92 0.47115478 -15.93 0.47962731 -15.94 0.48669456 -15.95 0.49250769 -15.96 0.49709084 -15.97 0.50043129 -15.98 0.50247972 -15.99 0.50315598 -16 0.50235495 -16.01 0.49995431 -16.02 0.49582709 -16.03 0.48985215 -16.04 0.48192093 -16.05 0.47181222 -16.06 0.45961224 -16.07 0.44536695 -16.08 0.42915138 -16.09 0.41110045 -16.1 0.39140351 -16.11 0.370308 -16.12 0.3481083 -16.13 0.32513697 -16.14 0.30175885 -16.15 0.27835243 -16.16 0.25533342 -16.17 0.23309583 -16.18 0.21196814 -16.19 0.1922401 -16.2 0.17414977 -16.21 0.15787134 -16.22 0.14350886 -16.23 0.13108952 -16.24 0.12056803 -16.25 0.11182395 -16.26 0.10466951 -16.27 0.098884326 -16.28 0.094156193 -16.29 0.090096191 -16.3 0.086332451 -16.31 0.082495619 -16.32 0.078222683 -16.33 0.07317026 -16.34 0.067026558 -16.35 0.059521568 -16.36 0.050435436 -16.37 0.039604574 -16.38 0.026902425 -16.39 0.01222014 -16.4 -0.004351701 -16.41 -0.022696524 -16.42 -0.042674584 -16.43 -0.064100175 -16.44 -0.086748442 -16.45 -0.11036262 -16.46 -0.13466255 -16.47 -0.1593496 -16.48 -0.18411573 -16.49 -0.20864708 -16.5 -0.23258137 -16.51 -0.2556034 -16.52 -0.27741888 -16.53 -0.29773207 -16.54 -0.31625442 -16.55 -0.33270694 -16.56 -0.34681798 -16.57 -0.35832255 -16.58 -0.36696464 -16.59 -0.37249791 -16.6 -0.37468573 -16.61 -0.37316994 -16.62 -0.36773173 -16.63 -0.35828483 -16.64 -0.34470292 -16.65 -0.32686882 -16.66 -0.30470914 -16.67 -0.2782 -16.68 -0.24737479 -16.69 -0.21233193 -16.7 -0.1732409 -16.71 -0.13034781 -16.72 -0.083917255 -16.73 -0.034340602 -16.74 0.017787453 -16.75 0.071828404 -16.76 0.12712501 -16.77 0.18295344 -16.78 0.23853411 -16.79 0.29304496 -16.8 0.34563159 -16.81 0.39542549 -16.82 0.44156095 -16.83 0.48312325 -16.84 0.5191307 -16.85 0.54881761 -16.86 0.57166158 -16.87 0.58708499 -16.88 0.59461338 -16.89 0.59388858 -16.9 0.58467979 -16.91 0.56689052 -16.92 0.54056205 -16.93 0.50587639 -16.94 0.46312878 -16.95 0.41261652 -16.96 0.35486975 -16.97 0.29095384 -16.98 0.22169949 -16.99 0.1480249 -17 0.070920102 -17.01 -0.0085707074 -17.02 -0.089370355 -17.03 -0.17038803 -17.04 -0.2505401 -17.05 -0.32876943 -17.06 -0.40398942 -17.07 -0.47505272 -17.08 -0.54125577 -17.09 -0.60186618 -17.1 -0.65624968 -17.11 -0.70389293 -17.12 -0.74440671 -17.13 -0.7775295 -17.14 -0.80312607 -17.15 -0.82118604 -17.16 -0.8318129 -17.17 -0.83516107 -17.18 -0.83126864 -17.19 -0.82078 -17.2 -0.80427438 -17.21 -0.78224991 -17.22 -0.75522953 -17.23 -0.72374264 -17.24 -0.68831262 -17.25 -0.64943775 -17.26 -0.60758237 -17.27 -0.5631664 -17.28 -0.51655141 -17.29 -0.46798888 -17.3 -0.41775977 -17.31 -0.36611439 -17.32 -0.31319171 -17.33 -0.25908936 -17.34 -0.20387427 -17.35 -0.14759526 -17.36 -0.090297429 -17.37 -0.032030355 -17.38 0.027137339 -17.39 0.087103354 -17.4 0.14772995 -17.41 0.20881315 -17.42 0.27006227 -17.43 0.33116393 -17.44 0.39175007 -17.45 0.45140583 -17.46 0.50967447 -17.47 0.56606964 -17.48 0.62008877 -17.49 0.67122752 -17.5 0.71899144 -17.51 0.76288777 -17.52 0.80222485 -17.53 0.83686178 -17.54 0.8665446 -17.55 0.89107004 -17.56 0.91031774 -17.57 0.92425757 -17.58 0.93294215 -17.59 0.93650977 -17.6 0.93516922 -17.61 0.92919641 -17.62 0.9189178 -17.63 0.90450818 -17.64 0.88651692 -17.65 0.86541225 -17.66 0.84158157 -17.67 0.81538117 -17.68 0.78713108 -17.69 0.7571049 -17.7 0.7255277 -17.71 0.69256857 -17.72 0.65834432 -17.73 0.62292206 -17.74 0.58628087 -17.75 0.54841197 -17.76 0.50930958 -17.77 0.46893641 -17.78 0.42725364 -17.79 0.38424195 -17.8 0.33991047 -17.81 0.29430952 -17.82 0.24754035 -17.83 0.19975623 -17.84 0.15116969 -17.85 0.10204767 -17.86 0.052736698 -17.87 0.0036350763 -17.88 -0.044839326 -17.89 -0.092251634 -17.9 -0.1381565 -17.91 -0.18211385 -17.92 -0.22370216 -17.93 -0.26253289 -17.94 -0.29826309 -17.95 -0.33060381 -17.96 -0.3592924 -17.97 -0.38405951 -17.98 -0.40488322 -17.99 -0.42186427 -18 -0.43507586 -18.01 -0.44465172 -18.02 -0.45077751 -18.03 -0.45367987 -18.04 -0.45361376 -18.05 -0.45084955 -18.06 -0.44566144 -18.07 -0.43831256 -18.08 -0.42899314 -18.09 -0.41792791 -18.1 -0.4053679 -18.11 -0.39144772 -18.12 -0.3762602 -18.13 -0.35985916 -18.14 -0.34226369 -18.15 -0.32346342 -18.16 -0.3034259 -18.17 -0.28210705 -18.18 -0.25946037 -18.19 -0.23541137 -18.2 -0.20991252 -18.21 -0.1830188 -18.22 -0.15478316 -18.23 -0.12528527 -18.24 -0.094644797 -18.25 -0.063021331 -18.26 -0.030614326 -18.27 0.0023429902 -18.28 0.035588496 -18.29 0.068838614 -18.3 0.10178515 -18.31 0.13409561 -18.32 0.16546514 -18.33 0.19562587 -18.34 0.22432153 -18.35 0.25132237 -18.36 0.27643307 -18.37 0.29949177 -18.38 0.32037131 -18.39 0.33897797 -18.4 0.35524868 -18.41 0.36912931 -18.42 0.38053861 -18.43 0.38946311 -18.44 0.3959902 -18.45 0.40011538 -18.46 0.40182879 -18.47 0.40110449 -18.48 0.39789864 -18.49 0.39215088 -18.5 0.38378046 -18.51 0.37269096 -18.52 0.35876514 -18.53 0.3418298 -18.54 0.3216545 -18.55 0.29829177 -18.56 0.2716513 -18.57 0.24167306 -18.58 0.20833015 -18.59 0.17163905 -18.6 0.13166704 -18.61 0.08853566 -18.62 0.042421493 -18.63 -0.0064396242 -18.64 -0.05776282 -18.65 -0.1113147 -18.66 -0.1665291 -18.67 -0.22296158 -18.68 -0.28014533 -18.69 -0.33759342 -18.7 -0.39481317 -18.71 -0.45131093 -18.72 -0.50659817 -18.73 -0.56022141 -18.74 -0.6117578 -18.75 -0.66082294 -18.76 -0.70690532 -18.77 -0.74979895 -18.78 -0.78932908 -18.79 -0.82532359 -18.8 -0.85765717 -18.81 -0.88625393 -18.82 -0.91108193 -18.83 -0.93215015 -18.84 -0.94950018 -18.85 -0.96320383 -18.86 -0.97335406 -18.87 -0.97994249 -18.88 -0.98311138 -18.89 -0.98310183 -18.9 -0.98006446 -18.91 -0.974137 -18.92 -0.96545389 -18.93 -0.95414655 -18.94 -0.94034099 -18.95 -0.92415577 -18.96 -0.90570329 -18.97 -0.88508854 -18.98 -0.86236875 -18.99 -0.83758767 -19 -0.81089663 -19.01 -0.78238181 -19.02 -0.75209961 -19.03 -0.72009411 -19.04 -0.68639578 -19.05 -0.65102452 -19.06 -0.61398831 -19.07 -0.57528324 -19.08 -0.53489595 -19.09 -0.49279644 -19.1 -0.4488842 -19.11 -0.40318866 -19.12 -0.35572887 -19.13 -0.3065033 -19.14 -0.25552819 -19.15 -0.2028462 -19.16 -0.14853177 -19.17 -0.092697623 -19.18 -0.035499434 -19.19 0.022859791 -19.2 0.082126683 -19.21 0.14200093 -19.22 0.20209011 -19.23 0.26195814 -19.24 0.32114908 -19.25 0.37917194 -19.26 0.43550894 -19.27 0.48962714 -19.28 0.5409889 -19.29 0.58906452 -19.3 0.63334571 -19.31 0.673358 -19.32 0.70852061 -19.33 0.7384053 -19.34 0.76283279 -19.35 0.78164406 -19.36 0.79470843 -19.37 0.80198024 -19.38 0.80349962 -19.39 0.79938864 -19.4 0.78984697 -19.41 0.77514563 -19.42 0.75561978 -19.43 0.73159199 -19.44 0.70343489 -19.45 0.67170245 -19.46 0.63696035 -19.47 0.59968878 -19.48 0.56036023 -19.49 0.51943165 -19.5 0.47733649 -19.51 0.43447827 -19.52 0.3912279 -19.53 0.34792135 -19.54 0.30486426 -19.55 0.26234681 -19.56 0.2206197 -19.57 0.17986989 -19.58 0.14027716 -19.59 0.10200597 -19.6 0.065208297 -19.61 0.030027436 -19.62 -0.0033961323 -19.63 -0.034923146 -19.64 -0.064413402 -19.65 -0.091722087 -19.66 -0.11664731 -19.67 -0.13897046 -19.68 -0.15866824 -19.69 -0.17560647 -19.7 -0.18966095 -19.71 -0.20071916 -19.72 -0.20868434 -19.73 -0.21347941 -19.74 -0.21504786 -19.75 -0.21335567 -19.76 -0.20839346 -19.77 -0.2001291 -19.78 -0.18847209 -19.79 -0.17362341 -19.8 -0.15568711 -19.81 -0.13475036 -19.82 -0.11091138 -19.83 -0.084275877 -19.84 -0.054954502 -19.85 -0.023063013 -19.86 0.011279491 -19.87 0.047949789 -19.88 0.086830337 -19.89 0.12785636 -19.9 0.17081843 -19.91 0.21549333 -19.92 0.26168257 -19.93 0.30915693 -19.94 0.35765011 -19.95 0.40685558 -19.96 0.45642095 -19.97 0.50594435 -19.98 0.55497445 -19.99 0.60300765 -20 0.64943159 -20.01 0.69357739 -20.02 0.73489271 -20.03 0.7727391 -20.04 0.8064705 -20.05 0.83545303 -20.06 0.85903862 -20.07 0.87669759 -20.08 0.88792647 -20.09 0.89230035 -20.1 0.88948154 -20.11 0.879129 -20.12 0.86080211 -20.13 0.8349515 -20.14 0.80176202 -20.15 0.76153135 -20.16 0.7146837 -20.17 0.66176212 -20.18 0.60342261 -20.19 0.54041758 -20.2 0.47358208 -20.21 0.40381507 -20.22 0.33205927 -20.23 0.25928441 -20.24 0.18657031 -20.25 0.11487843 -20.26 0.045107109 -20.27 -0.021904812 -20.28 -0.08539458 -20.29 -0.14468836 -20.3 -0.19921329 -20.31 -0.24850012 -20.32 -0.29219228 -20.33 -0.3300461 -20.34 -0.36164406 -20.35 -0.38709566 -20.36 -0.40662101 -20.37 -0.42042095 -20.38 -0.42875562 -20.39 -0.43195132 -20.4 -0.43039125 -20.41 -0.42450587 -20.42 -0.41475872 -20.43 -0.40163672 -20.44 -0.38564174 -20.45 -0.36722808 -20.46 -0.34692744 -20.47 -0.32530071 -20.48 -0.30284314 -20.49 -0.28000556 -20.5 -0.2572129 -20.51 -0.23486259 -20.52 -0.21332071 -20.53 -0.1929197 -20.54 -0.17395678 -20.55 -0.15669328 -20.56 -0.14138802 -20.57 -0.12828209 -20.58 -0.11747328 -20.59 -0.10901373 -20.6 -0.10295009 -20.61 -0.09928447 -20.62 -0.09797406 -20.63 -0.098931814 -20.64 -0.1020278 -20.65 -0.10708996 -20.66 -0.1139076 -20.67 -0.1222405 -20.68 -0.13183427 -20.69 -0.14235215 -20.7 -0.153427 -20.71 -0.16472186 -20.72 -0.17589508 -20.73 -0.18660992 -20.74 -0.19654076 -20.75 -0.20538082 -20.76 -0.21285084 -20.77 -0.21870581 -20.78 -0.2227395 -20.79 -0.2247221 -20.8 -0.22452004 -20.81 -0.22215827 -20.82 -0.21764678 -20.83 -0.21104332 -20.84 -0.20245882 -20.85 -0.19205294 -20.86 -0.18003223 -20.87 -0.16664381 -20.88 -0.15217096 -20.89 -0.13692709 -20.9 -0.12125172 -20.91 -0.10551543 -20.92 -0.09010442 -20.93 -0.07538073 -20.94 -0.061696728 -20.95 -0.049389895 -20.96 -0.038776886 -20.97 -0.030147558 -20.98 -0.02375965 -20.99 -0.019834306 -21 -0.018551777 -21.01 -0.020080255 -21.02 -0.024588367 -21.03 -0.032083347 -21.04 -0.042468175 -21.05 -0.055673307 -21.06 -0.071578829 -21.07 -0.090015714 -21.08 -0.11076695 -21.09 -0.1335701 -21.1 -0.15811983 -21.11 -0.18407126 -21.12 -0.21104558 -21.13 -0.23863015 -21.14 -0.26635487 -21.15 -0.29373291 -21.16 -0.32029383 -21.17 -0.34556143 -21.18 -0.36906033 -21.19 -0.39032601 -21.2 -0.40890723 -21.21 -0.42437672 -21.22 -0.43633618 -21.23 -0.44442014 -21.24 -0.4482539 -21.25 -0.44733313 -21.26 -0.44171411 -21.27 -0.43125273 -21.28 -0.4158664 -21.29 -0.39553869 -21.3 -0.37032194 -21.31 -0.34033564 -21.32 -0.30576974 -21.33 -0.26687849 -21.34 -0.22398563 -21.35 -0.17747018 -21.36 -0.12760698 -21.37 -0.075112136 -21.38 -0.020571743 -21.39 0.035422076 -21.4 0.0922343 -21.41 0.14920329 -21.42 0.20565546 -21.43 0.26090868 -21.44 0.31428253 -21.45 0.3651014 -21.46 0.41271057 -21.47 0.45627147 -21.48 0.49522011 -21.49 0.5291196 -21.5 0.55749315 -21.51 0.57992249 -21.52 0.59605886 -21.53 0.60562696 -21.54 0.60843048 -21.55 0.60435884 -21.56 0.59338427 -21.57 0.57556668 -21.58 0.55086277 -21.59 0.51945436 -21.6 0.48189968 -21.61 0.43863869 -21.62 0.39013625 -21.63 0.33691976 -21.64 0.27956817 -21.65 0.2187027 -21.66 0.15497892 -21.67 0.089074959 -21.68 0.021683604 -21.69 -0.046497911 -21.7 -0.11473045 -21.71 -0.18230371 -21.72 -0.24856263 -21.73 -0.31289179 -21.74 -0.37471205 -21.75 -0.43348696 -21.76 -0.48872542 -21.77 -0.53998476 -21.78 -0.58687039 -21.79 -0.62903873 -21.8 -0.66618961 -21.81 -0.6977971 -21.82 -0.72380651 -21.83 -0.74419319 -21.84 -0.75885418 -21.85 -0.76772827 -21.86 -0.77079241 -21.87 -0.76806136 -21.88 -0.75958426 -21.89 -0.74544415 -21.9 -0.72575958 -21.91 -0.70068016 -21.92 -0.67020652 -21.93 -0.63459524 -21.94 -0.5942475 -21.95 -0.54948041 -21.96 -0.50061306 -21.97 -0.44799681 -21.98 -0.39201241 -21.99 -0.33306926 -22 -0.27160481 -22.01 -0.20807939 -22.02 -0.1429743 -22.03 -0.076781428 -22.04 -0.01003902 -22.05 0.056689204 -22.06 0.12286781 -22.07 0.18797562 -22.08 0.25149931 -22.09 0.3129381 -22.1 0.37180951 -22.11 0.42765296 -22.12 0.48003364 -22.13 0.52854876 -22.14 0.57276742 -22.15 0.61223178 -22.16 0.64667985 -22.17 0.67598885 -22.18 0.69996123 -22.19 0.71844561 -22.2 0.73133819 -22.21 0.73858403 -22.22 0.74017704 -22.23 0.73616314 -22.24 0.72664003 -22.25 0.71173375 -22.26 0.69152494 -22.27 0.66623915 -22.28 0.63640836 -22.29 0.60239871 -22.3 0.56462615 -22.31 0.5235523 -22.32 0.4796815 -22.33 0.43355622 -22.34 0.38575006 -22.35 0.33686294 -22.36 0.28751177 -22.37 0.23834702 -22.38 0.19006176 -22.39 0.14326686 -22.4 0.09855118 -22.41 0.056470634 -22.42 0.017537072 -22.43 -0.017789987 -22.44 -0.049113391 -22.45 -0.076105301 -22.46 -0.098513513 -22.47 -0.11616589 -22.48 -0.1289222 -22.49 -0.13658925 -22.5 -0.13942262 -22.51 -0.13766761 -22.52 -0.13156393 -22.53 -0.12141403 -22.54 -0.10757463 -22.55 -0.090448617 -22.56 -0.070471816 -22.57 -0.048103004 -22.58 -0.023812353 -22.59 0.0019318306 -22.6 0.028684575 -22.61 0.055957106 -22.62 0.083308228 -22.63 0.11036214 -22.64 0.13678116 -22.65 0.16226865 -22.66 0.18656576 -22.67 0.20945772 -22.68 0.23076203 -22.69 0.25033463 -22.7 0.26805486 -22.71 0.28377911 -22.72 0.29737279 -22.73 0.30885921 -22.74 0.31818939 -22.75 0.32531145 -22.76 0.33016771 -22.77 0.33269665 -22.78 0.33282997 -22.79 0.33049831 -22.8 0.32562472 -22.81 0.31813477 -22.82 0.30793471 -22.83 0.29480374 -22.84 0.2788533 -22.85 0.2600682 -22.86 0.23844889 -22.87 0.21402498 -22.88 0.18686137 -22.89 0.15706323 -22.9 0.12477733 -22.91 0.090191372 -22.92 0.053537752 -22.93 0.015089517 -22.94 -0.024904012 -22.95 -0.06601029 -22.96 -0.10782417 -22.97 -0.14994385 -22.98 -0.1919583 -22.99 -0.23345098 -23 -0.27400922 -23.01 -0.31323246 -23.02 -0.35074227 -23.03 -0.38618756 -23.04 -0.41925296 -23.05 -0.44954775 -23.06 -0.47685752 -23.07 -0.50107563 -23.08 -0.52210508 -23.09 -0.53988411 -23.1 -0.5544033 -23.11 -0.56570233 -23.12 -0.573867 -23.13 -0.57902385 -23.14 -0.58133273 -23.15 -0.58098178 -23.16 -0.57812714 -23.17 -0.57297249 -23.18 -0.56580704 -23.19 -0.55687761 -23.2 -0.54638412 -23.21 -0.53450361 -23.22 -0.52138414 -23.23 -0.50713961 -23.24 -0.49184683 -23.25 -0.47553989 -23.26 -0.45821091 -23.27 -0.43979688 -23.28 -0.42016629 -23.29 -0.39920544 -23.3 -0.37678263 -23.31 -0.35271965 -23.32 -0.32682689 -23.33 -0.2989145 -23.34 -0.26880232 -23.35 -0.23633013 -23.36 -0.20137026 -23.37 -0.16383799 -23.38 -0.12369765 -23.39 -0.080893814 -23.4 -0.03554827 -23.41 0.012053674 -23.42 0.061641126 -23.43 0.11286466 -23.44 0.16529758 -23.45 0.21844238 -23.46 0.27173915 -23.47 0.32457392 -23.48 0.37629295 -23.49 0.42621756 -23.5 0.47356236 -23.51 0.51755753 -23.52 0.55762491 -23.53 0.59318471 -23.54 0.6236987 -23.55 0.6487065 -23.56 0.6678399 -23.57 0.68083208 -23.58 0.68752395 -23.59 0.68787089 -23.6 0.68194275 -23.61 0.66983314 -23.62 0.65171125 -23.63 0.62812879 -23.64 0.5996904 -23.65 0.56695723 -23.66 0.53054686 -23.67 0.49111437 -23.68 0.4493359 -23.69 0.40589506 -23.7 0.36146182 -23.71 0.31668387 -23.72 0.27217896 -23.73 0.22855117 -23.74 0.18633963 -23.75 0.14594775 -23.76 0.1077402 -23.77 0.072015693 -23.78 0.039012585 -23.79 0.0089101392 -23.8 -0.018164086 -23.81 -0.042128149 -23.82 -0.062938379 -23.83 -0.080574198 -23.84 -0.094985847 -23.85 -0.10611948 -23.86 -0.11418389 -23.87 -0.11923864 -23.88 -0.1213511 -23.89 -0.12060146 -23.9 -0.11707898 -23.91 -0.11089125 -23.92 -0.10216405 -23.93 -0.091047863 -23.94 -0.077721606 -23.95 -0.062388459 -23.96 -0.045207516 -23.97 -0.026611474 -23.98 -0.0069381394 -23.99 0.013437732 -24 0.034106508 -24.01 0.054629078 -24.02 0.074544816 -24.03 0.093380244 -24.04 0.11065993 -24.05 0.12591892 -24.06 0.13871248 -24.07 0.14841863 -24.08 0.15479359 -24.09 0.15759685 -24.1 0.15660927 -24.11 0.15168594 -24.12 0.14276427 -24.13 0.1298632 -24.14 0.11308126 -24.15 0.092597942 -24.16 0.068662537 -24.17 0.041588837 -24.18 0.011653418 -24.19 -0.020676189 -24.2 -0.054869133 -24.21 -0.090458123 -24.22 -0.1269815 -24.23 -0.16398664 -24.24 -0.20103825 -24.25 -0.23772811 -24.26 -0.27368042 -24.27 -0.30855654 -24.28 -0.34205568 -24.29 -0.37387352 -24.3 -0.4037254 -24.31 -0.43148344 -24.32 -0.4570026 -24.33 -0.48014738 -24.34 -0.50079625 -24.35 -0.51884013 -24.36 -0.53417633 -24.37 -0.5467078 -24.38 -0.55633721 -24.39 -0.56296907 -24.4 -0.5664862 -24.41 -0.56665828 -24.42 -0.56351746 -24.43 -0.55706087 -24.44 -0.54725769 -24.45 -0.5341057 -24.46 -0.51764225 -24.47 -0.49794767 -24.48 -0.47514908 -24.49 -0.44942617 -24.5 -0.42101161 -24.51 -0.39018913 -24.52 -0.35722019 -24.53 -0.32254929 -24.54 -0.28665536 -24.55 -0.24998755 -24.56 -0.21300348 -24.57 -0.1761642 -24.58 -0.1399189 -24.59 -0.10469383 -24.6 -0.070880881 -24.61 -0.038826322 -24.62 -0.0088224392 -24.63 0.01882052 -24.64 0.043921112 -24.65 0.066447536 -24.66 0.086401 -24.67 0.1038212 -24.68 0.11880239 -24.69 0.13148476 -24.7 0.14204544 -24.71 0.15068625 -24.72 0.15762241 -24.73 0.16307388 -24.74 0.16723411 -24.75 0.17028621 -24.76 0.17242627 -24.77 0.1738099 -24.78 0.17453539 -24.79 0.17466518 -24.8 0.17422755 -24.81 0.17322101 -24.82 0.17161817 -24.83 0.16937119 -24.84 0.16642089 -24.85 0.16269572 -24.86 0.15811081 -24.87 0.15261592 -24.88 0.14620626 -24.89 0.13887355 -24.9 0.13063343 -24.91 0.12152784 -24.92 0.1116231 -24.93 0.10100968 -24.94 0.08979709 -24.95 0.078109578 -24.96 0.066081164 -24.97 0.053850922 -24.98 0.0415625 -24.99 0.029355186 -25 0.0173459 -25.01 0.0056377257 -25.02 -0.0056810781 -25.03 -0.016536702 -25.04 -0.026867757 -25.05 -0.036622181 -25.06 -0.045752329 -25.07 -0.054210354 -25.08 -0.061928939 -25.09 -0.068808365 -25.1 -0.074793927 -25.11 -0.079785621 -25.12 -0.083654823 -25.13 -0.086250451 -25.14 -0.087401391 -25.15 -0.086920741 -25.16 -0.084612781 -25.17 -0.080281363 -25.18 -0.073740444 -25.19 -0.064805927 -25.2 -0.053248422 -25.21 -0.03904245 -25.22 -0.022233088 -25.23 -0.0028799224 -25.24 0.018878318 -25.25 0.042818589 -25.26 0.068631237 -25.27 0.095921435 -25.28 0.12421434 -25.29 0.15296243 -25.3 0.18155799 -25.31 0.20929906 -25.32 0.23543356 -25.33 0.25931456 -25.34 0.28028194 -25.35 0.29771621 -25.36 0.31106131 -25.37 0.31983923 -25.38 0.323672 -25.39 0.32229033 -25.4 0.3155283 -25.41 0.30335906 -25.42 0.28582819 -25.43 0.26299129 -25.44 0.23551802 -25.45 0.20388529 -25.46 0.16865382 -25.47 0.13045088 -25.48 0.089956534 -25.49 0.047881072 -25.5 0.0049462494 -25.51 -0.038133224 -25.52 -0.080666983 -25.53 -0.1220012 -25.54 -0.16137459 -25.55 -0.19833087 -25.56 -0.23241696 -25.57 -0.26323721 -25.58 -0.29046473 -25.59 -0.31383127 -25.6 -0.33312833 -25.61 -0.3481933 -25.62 -0.35890805 -25.63 -0.36518753 -25.64 -0.366972 -25.65 -0.36399441 -25.66 -0.35635143 -25.67 -0.34412786 -25.68 -0.32734199 -25.69 -0.30601333 -25.7 -0.28018213 -25.71 -0.24991325 -25.72 -0.21530508 -25.73 -0.17649642 -25.74 -0.13367373 -25.75 -0.087079975 -25.76 -0.036920907 -25.77 0.01640048 -25.78 0.072335741 -25.79 0.13033732 -25.8 0.18982391 -25.81 0.25015932 -25.82 0.31066292 -25.83 0.37062072 -25.84 0.42930063 -25.85 0.48597119 -25.86 0.53991488 -25.87 0.59036586 -25.88 0.63656031 -25.89 0.67800184 -25.9 0.71427661 -25.91 0.7449973 -25.92 0.76987178 -25.93 0.78870793 -25.94 0.80141194 -25.95 0.80798485 -25.96 0.8085166 -25.97 0.80317623 -25.98 0.79216189 -25.99 0.77560455 -26 0.75392937 -26.01 0.72765093 -26.02 0.69714095 -26.03 0.66277122 -26.04 0.62490503 -26.05 0.58388945 -26.06 0.54005168 -26.07 0.49369803 -26.08 0.44511543 -26.09 0.39457527 -26.1 0.34229466 -26.11 0.28854504 -26.12 0.23366354 -26.13 0.1779389 -26.14 0.12168067 -26.15 0.065229224 -26.16 0.0089602587 -26.17 -0.04671443 -26.18 -0.10134674 -26.19 -0.15445634 -26.2 -0.20553704 -26.21 -0.25399012 -26.22 -0.29919748 -26.23 -0.34070312 -26.24 -0.37805502 -26.25 -0.41081028 -26.26 -0.43858368 -26.27 -0.46106144 -26.28 -0.47801438 -26.29 -0.48930877 -26.3 -0.49491045 -26.31 -0.49488936 -26.32 -0.48935893 -26.33 -0.47848007 -26.34 -0.46272965 -26.35 -0.44270602 -26.36 -0.41894343 -26.37 -0.39202805 -26.38 -0.3625813 -26.39 -0.33124211 -26.4 -0.29865317 -26.41 -0.26544117 -26.42 -0.23220602 -26.43 -0.19951522 -26.44 -0.16792237 -26.45 -0.13792827 -26.46 -0.1098732 -26.47 -0.084077849 -26.48 -0.06080225 -26.49 -0.040252248 -26.5 -0.022583552 -26.51 -0.0079087946 -26.52 0.0036955353 -26.53 0.01218234 -26.54 0.017523968 -26.55 0.019667435 -26.56 0.018488115 -26.57 0.014194652 -26.58 0.0068223847 -26.59 -0.003579209 -26.6 -0.016942811 -26.61 -0.033179106 -26.62 -0.052171464 -26.63 -0.073770527 -26.64 -0.097789567 -26.65 -0.12400024 -26.66 -0.15213426 -26.67 -0.18194718 -26.68 -0.21295384 -26.69 -0.24473129 -26.7 -0.27683694 -26.71 -0.30879947 -26.72 -0.34013783 -26.73 -0.37036426 -26.74 -0.39898949 -26.75 -0.42556136 -26.76 -0.44966525 -26.77 -0.47092746 -26.78 -0.48885981 -26.79 -0.50327873 -26.8 -0.51409271 -26.81 -0.52120902 -26.82 -0.52460582 -26.83 -0.52432569 -26.84 -0.52047067 -26.85 -0.51319649 -26.86 -0.50269684 -26.87 -0.48919514 -26.88 -0.47293143 -26.89 -0.45408013 -26.9 -0.43288274 -26.91 -0.40964847 -26.92 -0.38458574 -26.93 -0.35786852 -26.94 -0.32964085 -26.95 -0.30002578 -26.96 -0.26912613 -26.97 -0.2370342 -26.98 -0.20384337 -26.99 -0.16965311 -27 -0.13457612 -27.01 -0.098756971 -27.02 -0.062434906 -27.03 -0.025873764 -27.04 0.010618111 -27.05 0.0466775 -27.06 0.081889773 -27.07 0.11579546 -27.08 0.14790266 -27.09 0.17769797 -27.1 0.2046676 -27.11 0.22830579 -27.12 0.24793302 -27.13 0.26325931 -27.14 0.27405922 -27.15 0.28013525 -27.16 0.28140689 -27.17 0.27792258 -27.18 0.26986669 -27.19 0.25755608 -27.2 0.24144018 -27.21 0.22208755 -27.22 0.20017255 -27.23 0.17642657 -27.24 0.15174512 -27.25 0.12704361 -27.26 0.10317975 -27.27 0.080970712 -27.28 0.061171295 -27.29 0.044448955 -27.3 0.031359914 -27.31 0.02233095 -27.32 0.017646167 -27.33 0.017439412 -27.34 0.021800911 -27.35 0.030589303 -27.36 0.043368345 -27.37 0.059635183 -27.38 0.078849754 -27.39 0.10039971 -27.4 0.12362577 -27.41 0.14784846 -27.42 0.17239363 -27.43 0.19661518 -27.44 0.21991711 -27.45 0.24174046 -27.46 0.2615743 -27.47 0.27907004 -27.48 0.29401978 -27.49 0.30626165 -27.5 0.31571546 -27.51 0.32237165 -27.52 0.32627853 -27.53 0.32752825 -27.54 0.32624014 -27.55 0.32254459 -27.56 0.3165603 -27.57 0.30835148 -27.58 0.29800376 -27.59 0.28566375 -27.6 0.27136822 -27.61 0.25512818 -27.62 0.23693801 -27.63 0.2167863 -27.64 0.19466581 -27.65 0.17058889 -27.66 0.14459994 -27.67 0.11679038 -27.68 0.087280449 -27.69 0.056259683 -27.7 0.024120553 -27.71 -0.0087588052 -27.72 -0.041931956 -27.73 -0.074890699 -27.74 -0.10707756 -27.75 -0.13790248 -27.76 -0.16676259 -27.77 -0.19306159 -27.78 -0.21623701 -27.79 -0.23572475 -27.8 -0.25092076 -27.81 -0.2616214 -27.82 -0.2676799 -27.83 -0.26901854 -27.84 -0.26568958 -27.85 -0.25787448 -27.86 -0.24587809 -27.87 -0.23011781 -27.88 -0.21110893 -27.89 -0.18943917 -27.9 -0.16574663 -27.91 -0.14068089 -27.92 -0.11497958 -27.93 -0.089312988 -27.94 -0.064251436 -27.95 -0.040288054 -27.96 -0.017820621 -27.97 0.0028593944 -27.98 0.021572767 -27.99 0.03825307 -28 0.052940665 -28.01 0.065770818 -28.02 0.076927361 -28.03 0.086689798 -28.04 0.095458064 -28.05 0.10356326 -28.06 0.11132333 -28.07 0.11901832 -28.08 0.12687595 -28.09 0.1350457 -28.1 0.14359608 -28.11 0.15250343 -28.12 0.16165196 -28.13 0.17084134 -28.14 0.17975372 -28.15 0.18803834 -28.16 0.19530883 -28.17 0.2011623 -28.18 0.2051996 -28.19 0.20705009 -28.2 0.20639482 -28.21 0.20298253 -28.22 0.19664767 -28.23 0.18732169 -28.24 0.1750366 -28.25 0.15977923 -28.26 0.14194726 -28.27 0.12193181 -28.28 0.10015991 -28.29 0.077114991 -28.3 0.053318296 -28.31 0.02930709 -28.32 0.0056128456 -28.33 -0.017259796 -28.34 -0.038852158 -28.35 -0.058767539 -28.36 -0.076586569 -28.37 -0.092087689 -28.38 -0.10517871 -28.39 -0.11581504 -28.4 -0.12402098 -28.41 -0.1298834 -28.42 -0.13354353 -28.43 -0.13517627 -28.44 -0.13497571 -28.45 -0.13313816 -28.46 -0.12984498 -28.47 -0.12521684 -28.48 -0.11935731 -28.49 -0.11235897 -28.5 -0.1042404 -28.51 -0.0949583 -28.52 -0.084427947 -28.53 -0.07253324 -28.54 -0.059141251 -28.55 -0.044118641 -28.56 -0.027349364 -28.57 -0.0087534482 -28.58 0.011718964 -28.59 0.034065407 -28.6 0.058102483 -28.61 0.083552237 -28.62 0.11007802 -28.63 0.13724777 -28.64 0.16453912 -28.65 0.1913522 -28.66 0.21702626 -28.67 0.24085993 -28.68 0.26213483 -28.69 0.28013006 -28.7 0.29399109 -28.71 0.30310559 -28.72 0.30709699 -28.73 0.30558273 -28.74 0.29831389 -28.75 0.28518709 -28.76 0.26625319 -28.77 0.24171833 -28.78 0.21193902 -28.79 0.17741247 -28.8 0.13876042 -28.81 0.096650124 -28.82 0.051919308 -28.83 0.0055764115 -28.84 -0.041466586 -28.85 -0.088321349 -28.86 -0.13413207 -28.87 -0.17809858 -28.88 -0.21949672 -28.89 -0.25769659 -28.9 -0.29217311 -28.91 -0.32251449 -28.92 -0.34833914 -28.93 -0.3693562 -28.94 -0.3856064 -28.95 -0.3972091 -28.96 -0.40428576 -28.97 -0.40702668 -28.98 -0.40567365 -28.99 -0.40050514 -29 -0.39182392 -29.01 -0.37994145 -29.02 -0.36516938 -29.03 -0.34779276 -29.04 -0.32805434 -29.05 -0.30626049 -29.06 -0.28274228 -29.07 -0.25774766 -29.08 -0.2315154 -29.09 -0.20428571 -29.1 -0.17630309 -29.11 -0.1478223 -29.12 -0.11911389 -29.13 -0.090465803 -29.14 -0.062188961 -29.15 -0.034635322 -29.16 -0.0081939821 -29.17 0.016821048 -29.18 0.040067144 -29.19 0.061216064 -29.2 0.079965787 -29.21 0.096052876 -29.22 0.10926462 -29.23 0.11944883 -29.24 0.12652573 -29.25 0.13049348 -29.26 0.13141082 -29.27 0.12929003 -29.28 0.12459831 -29.29 0.11766983 -29.3 0.10890184 -29.31 0.098743042 -29.32 0.087675493 -29.33 0.076199898 -29.34 0.064816075 -29.35 0.05400552 -29.36 0.044213758 -29.37 0.035837756 -29.38 0.02932118 -29.39 0.024848944 -29.4 0.022545136 -29.41 0.02248092 -29.42 0.024634414 -29.43 0.028890933 -29.44 0.035072425 -29.45 0.042939104 -29.46 0.052203106 -29.47 0.062543588 -29.48 0.073621748 -29.49 0.085098364 -29.5 0.096613038 -29.51 0.10785755 -29.52 0.11857353 -29.53 0.12854964 -29.54 0.13762355 -29.55 0.14568505 -29.56 0.15267014 -29.57 0.15856215 -29.58 0.1633763 -29.59 0.16715875 -29.6 0.16994824 -29.61 0.17179887 -29.62 0.17280679 -29.63 0.17301889 -29.64 0.17245171 -29.65 0.17109099 -29.66 0.16888724 -29.67 0.16575825 -29.68 0.16158905 -29.69 0.1562395 -29.7 0.14955013 -29.71 0.14133684 -29.72 0.13135186 -29.73 0.1195039 -29.74 0.10570092 -29.75 0.089870409 -29.76 0.071990593 -29.77 0.052100187 -29.78 0.030303315 -29.79 0.0067722818 -29.8 -0.018253092 -29.81 -0.044468956 -29.82 -0.071514071 -29.83 -0.09897056 -29.84 -0.1263527 -29.85 -0.15317499 -29.86 -0.17896373 -29.87 -0.2032562 -29.88 -0.22561815 -29.89 -0.2456553 -29.9 -0.26302429 -29.91 -0.27744636 -29.92 -0.28871261 -29.93 -0.29668763 -29.94 -0.30119945 -29.95 -0.30227081 -29.96 -0.30008647 -29.97 -0.29483126 -29.98 -0.2867151 -29.99 -0.27598784 -30 -0.2629273 -& -@target G1.S3 -@type xy -0 -2 -0.01 -2.0045823 -0.02 -2.0088487 -0.03 -2.0125264 -0.04 -2.015381 -0.05 -2.0172305 -0.06 -2.0179572 -0.07 -2.0175147 -0.08 -2.0159311 -0.09 -2.0133072 -0.1 -2.0098098 -0.11 -2.0056617 -0.12 -2.0011236 -0.13 -1.9965239 -0.14 -1.9921653 -0.15 -1.9883272 -0.16 -1.9852553 -0.17 -1.9831462 -0.18 -1.9821355 -0.19 -1.9822888 -0.2 -1.9835982 -0.21 -1.9859821 -0.22 -1.989291 -0.23 -1.993333 -0.24 -1.9978224 -0.25 -2.0024495 -0.26 -2.0069165 -0.27 -2.010939 -0.28 -2.0142605 -0.29 -2.0166687 -0.3 -2.018008 -0.31 -2.018189 -0.32 -2.0171931 -0.33 -2.0150735 -0.34 -2.0119324 -0.35 -2.0079513 -0.36 -2.0034017 -0.37 -1.9985527 -0.38 -1.9936761 -0.39 -1.989037 -0.4 -1.9848764 -0.41 -1.9813966 -0.42 -1.978749 -0.43 -1.9770253 -0.44 -1.9762537 -0.45 -1.9764068 -0.46 -1.9774177 -0.47 -1.979095 -0.48 -1.9812459 -0.49 -1.983672 -0.5 -1.9861763 -0.51 -1.9885814 -0.52 -1.990746 -0.53 -1.9925789 -0.54 -1.9940501 -0.55 -1.9951968 -0.56 -1.9961249 -0.57 -1.9970129 -0.58 -1.9981142 -0.59 -1.9997007 -0.6 -2.0020601 -0.61 -2.0054743 -0.62 -2.010196 -0.63 -2.0164247 -0.64 -2.0242848 -0.65 -2.0338064 -0.66 -2.0449111 -0.67 -2.0574039 -0.68 -2.0709739 -0.69 -2.0851715 -0.7 -2.0994146 -0.71 -2.1130737 -0.72 -2.1254849 -0.73 -2.1359706 -0.74 -2.1438752 -0.75 -2.1485997 -0.76 -2.1496405 -0.77 -2.1466191 -0.78 -2.1393127 -0.79 -2.1275822 -0.8 -2.1115359 -0.81 -2.0916393 -0.82 -2.0685163 -0.83 -2.0428879 -0.84 -2.015612 -0.85 -1.9876485 -0.86 -1.9600182 -0.87 -1.9337546 -0.88 -1.9098564 -0.89 -1.8892398 -0.9 -1.8727628 -0.91 -1.8611912 -0.92 -1.8548452 -0.93 -1.8537803 -0.94 -1.8579099 -0.95 -1.8669081 -0.96 -1.8802344 -0.97 -1.8971512 -0.98 -1.916761 -0.99 -1.9380525 -1 -1.9599494 -1.01 -1.981355 -1.02 -2.0011235 -1.03 -2.0182362 -1.04 -2.0319635 -1.05 -2.0417144 -1.06 -2.0471132 -1.07 -2.0480161 -1.08 -2.044515 -1.09 -2.0369281 -1.1 -2.0257807 -1.11 -2.0117725 -1.12 -1.9957375 -1.13 -1.978616 -1.14 -1.961405 -1.15 -1.9451016 -1.16 -1.9305552 -1.17 -1.9184845 -1.18 -1.9094438 -1.19 -1.9037936 -1.2 -1.901685 -1.21 -1.9030538 -1.22 -1.9076285 -1.23 -1.9149492 -1.24 -1.9243949 -1.25 -1.9352459 -1.26 -1.9465983 -1.27 -1.9575885 -1.28 -1.9674285 -1.29 -1.9754192 -1.3 -1.9809921 -1.31 -1.9837445 -1.32 -1.9834643 -1.33 -1.9801433 -1.34 -1.9739718 -1.35 -1.9653474 -1.36 -1.9548157 -1.37 -1.9431205 -1.38 -1.9311529 -1.39 -1.9197519 -1.4 -1.9097357 -1.41 -1.9018524 -1.42 -1.8967312 -1.43 -1.8948438 -1.44 -1.8964692 -1.45 -1.9016749 -1.46 -1.9102965 -1.47 -1.9219643 -1.48 -1.9362239 -1.49 -1.9521345 -1.5 -1.9687941 -1.51 -1.9852526 -1.52 -2.0005464 -1.53 -2.0137577 -1.54 -2.0240664 -1.55 -2.0308006 -1.56 -2.0334786 -1.57 -2.0318414 -1.58 -2.0258806 -1.59 -2.0156433 -1.6 -2.0018234 -1.61 -1.9852013 -1.62 -1.9666747 -1.63 -1.9472637 -1.64 -1.9280551 -1.65 -1.910141 -1.66 -1.8945559 -1.67 -1.8822189 -1.68 -1.8738752 -1.69 -1.8702083 -1.7 -1.8714333 -1.71 -1.8774802 -1.72 -1.8879879 -1.73 -1.9023686 -1.74 -1.9198131 -1.75 -1.9393263 -1.76 -1.9597809 -1.77 -1.9799794 -1.78 -1.9987221 -1.79 -2.0148735 -1.8 -2.0271961 -1.81 -2.0349816 -1.82 -2.0378025 -1.83 -2.03539 -1.84 -2.0278043 -1.85 -2.0154161 -1.86 -1.9988806 -1.87 -1.979104 -1.88 -1.9572004 -1.89 -1.9344267 -1.9 -1.9121172 -1.91 -1.8917679 -1.92 -1.8747631 -1.93 -1.8619525 -1.94 -1.8542495 -1.95 -1.8522674 -1.96 -1.8562619 -1.97 -1.866154 -1.98 -1.8815242 -1.99 -1.9016319 -2 -1.9254498 -2.01 -1.9517133 -2.02 -1.9789594 -2.03 -2.0054462 -2.04 -2.0297388 -2.05 -2.0503714 -2.06 -2.0660241 -2.07 -2.0756674 -2.08 -2.0785781 -2.09 -2.0743827 -2.1 -2.0630833 -2.11 -2.0450641 -2.12 -2.0210835 -2.13 -1.9922356 -2.14 -1.9598213 -2.15 -1.9257092 -2.16 -1.8916501 -2.17 -1.8594571 -2.18 -1.8308357 -2.19 -1.8073334 -2.2 -1.7902549 -2.21 -1.7805892 -2.22 -1.7789541 -2.23 -1.7855585 -2.24 -1.8001782 -2.25 -1.8224293 -2.26 -1.8509678 -2.27 -1.8842739 -2.28 -1.9205516 -2.29 -1.9578656 -2.3 -1.9942082 -2.31 -2.0275784 -2.32 -2.0560797 -2.33 -2.0780217 -2.34 -2.0919983 -2.35 -2.0969689 -2.36 -2.0920058 -2.37 -2.0769812 -2.38 -2.052448 -2.39 -2.0192851 -2.4 -1.9788155 -2.41 -1.9326607 -2.42 -1.8827339 -2.43 -1.8311535 -2.44 -1.7801494 -2.45 -1.7319647 -2.46 -1.6887589 -2.47 -1.652568 -2.48 -1.6252422 -2.49 -1.6082498 -2.5 -1.6027139 -2.51 -1.6088017 -2.52 -1.626566 -2.53 -1.6556335 -2.54 -1.6952295 -2.55 -1.744229 -2.56 -1.8012077 -2.57 -1.8645203 -2.58 -1.9323562 -2.59 -2.0027242 -2.6 -2.0738934 -2.61 -2.144072 -2.62 -2.2115036 -2.63 -2.2748142 -2.64 -2.3328791 -2.65 -2.3848405 -2.66 -2.4301219 -2.67 -2.4683934 -2.68 -2.4995441 -2.69 -2.5237419 -2.7 -2.5417204 -2.71 -2.5536983 -2.72 -2.5592764 -2.73 -2.5597105 -2.74 -2.5556381 -2.75 -2.5475513 -2.76 -2.5358448 -2.77 -2.5208291 -2.78 -2.5026963 -2.79 -2.4815544 -2.8 -2.4574488 -2.81 -2.4304787 -2.82 -2.4003533 -2.83 -2.3668196 -2.84 -2.330101 -2.85 -2.290411 -2.86 -2.2479752 -2.87 -2.2031393 -2.88 -2.1563873 -2.89 -2.1083504 -2.9 -2.0597886 -2.91 -2.0115768 -2.92 -1.9645073 -2.93 -1.919644 -2.94 -1.8784446 -2.95 -1.8419531 -2.96 -1.8107923 -2.97 -1.7856007 -2.98 -1.7668851 -2.99 -1.7549373 -3 -1.7498064 -3.01 -1.7512916 -3.02 -1.758946 -3.03 -1.7721486 -3.04 -1.7901029 -3.05 -1.811544 -3.06 -1.8352039 -3.07 -1.8597956 -3.08 -1.8840702 -3.09 -1.9068476 -3.1 -1.927064 -3.11 -1.9438261 -3.12 -1.956445 -3.13 -1.9644721 -3.14 -1.9676983 -3.15 -1.9659529 -3.16 -1.9598016 -3.17 -1.9498599 -3.18 -1.9369476 -3.19 -1.9220019 -3.2 -1.9060316 -3.21 -1.890076 -3.22 -1.8751505 -3.23 -1.86219 -3.24 -1.8519966 -3.25 -1.8451986 -3.26 -1.8422987 -3.27 -1.8434656 -3.28 -1.8486734 -3.29 -1.8575757 -3.3 -1.8695577 -3.31 -1.8838956 -3.32 -1.8997375 -3.33 -1.9161381 -3.34 -1.9321082 -3.35 -1.9466739 -3.36 -1.9589174 -3.37 -1.9679732 -3.38 -1.9731561 -3.39 -1.9739665 -3.4 -1.970116 -3.41 -1.9616402 -3.42 -1.9487574 -3.43 -1.9318379 -3.44 -1.911417 -3.45 -1.8881661 -3.46 -1.8628519 -3.47 -1.8362986 -3.48 -1.8093048 -3.49 -1.7826958 -3.5 -1.7573083 -3.51 -1.7338637 -3.52 -1.7128873 -3.53 -1.6947032 -3.54 -1.6795706 -3.55 -1.6676298 -3.56 -1.6589145 -3.57 -1.6533817 -3.58 -1.6509336 -3.59 -1.6514184 -3.6 -1.6546077 -3.61 -1.6605627 -3.62 -1.6694392 -3.63 -1.6814484 -3.64 -1.6965571 -3.65 -1.7150585 -3.66 -1.7373325 -3.67 -1.7638227 -3.68 -1.7950086 -3.69 -1.8313687 -3.7 -1.8733361 -3.71 -1.9212089 -3.72 -1.9753589 -3.73 -2.0359022 -3.74 -2.1028155 -3.75 -2.1752551 -3.76 -2.2524881 -3.77 -2.3335163 -3.78 -2.4170739 -3.79 -2.501677 -3.8 -2.5856311 -3.81 -2.6670992 -3.82 -2.7444711 -3.83 -2.815565 -3.84 -2.8782295 -3.85 -2.9298835 -3.86 -2.9694528 -3.87 -2.9958941 -3.88 -3.0082805 -3.89 -3.0060352 -3.9 -2.98902 -3.91 -2.9574752 -3.92 -2.9120774 -3.93 -2.8540293 -3.94 -2.7847246 -3.95 -2.7057551 -3.96 -2.6187907 -3.97 -2.5263319 -3.98 -2.4309663 -3.99 -2.334945 -4 -2.2404355 -4.01 -2.1494512 -4.02 -2.0638163 -4.03 -1.9850248 -4.04 -1.9142947 -4.05 -1.8524472 -4.06 -1.7998835 -4.07 -1.7569838 -4.08 -1.7237659 -4.09 -1.6992655 -4.1 -1.6826808 -4.11 -1.6730511 -4.12 -1.6692884 -4.13 -1.6702422 -4.14 -1.6747561 -4.15 -1.6816823 -4.16 -1.6897798 -4.17 -1.6984696 -4.18 -1.7071105 -4.19 -1.7153389 -4.2 -1.722659 -4.21 -1.7289305 -4.22 -1.7342113 -4.23 -1.7386888 -4.24 -1.7426559 -4.25 -1.7464633 -4.26 -1.7504909 -4.27 -1.7550967 -4.28 -1.7606426 -4.29 -1.7673467 -4.3 -1.7753485 -4.31 -1.7846068 -4.32 -1.7949784 -4.33 -1.8062205 -4.34 -1.8179938 -4.35 -1.8298778 -4.36 -1.8414089 -4.37 -1.8520999 -4.38 -1.8614183 -4.39 -1.8689433 -4.4 -1.8743697 -4.41 -1.8774843 -4.42 -1.878235 -4.43 -1.8767178 -4.44 -1.8731653 -4.45 -1.86796 -4.46 -1.8616092 -4.47 -1.8547301 -4.48 -1.8480213 -4.49 -1.8421867 -4.5 -1.8380282 -4.51 -1.8363332 -4.52 -1.8378462 -4.53 -1.8431689 -4.54 -1.8526275 -4.55 -1.8664109 -4.56 -1.884583 -4.57 -1.9070296 -4.58 -1.9334581 -4.59 -1.9634078 -4.6 -1.9963041 -4.61 -2.0314481 -4.62 -2.0679194 -4.63 -2.1048094 -4.64 -2.1411347 -4.65 -2.1759937 -4.66 -2.2085939 -4.67 -2.2382023 -4.68 -2.2641995 -4.69 -2.2860973 -4.7 -2.3035504 -4.71 -2.3163636 -4.72 -2.324512 -4.73 -2.3280872 -4.74 -2.3272907 -4.75 -2.3222817 -4.76 -2.3134398 -4.77 -2.3014026 -4.78 -2.2866373 -4.79 -2.2696095 -4.8 -2.2507632 -4.81 -2.2305025 -4.82 -2.2091791 -4.83 -2.1872523 -4.84 -2.1647871 -4.85 -2.1419106 -4.86 -2.118685 -4.87 -2.09516 -4.88 -2.0714788 -4.89 -2.0476847 -4.9 -2.0238108 -4.91 -1.9999088 -4.92 -1.9760557 -4.93 -1.952366 -4.94 -1.9289048 -4.95 -1.9058835 -4.96 -1.8835944 -4.97 -1.8623721 -4.98 -1.8426257 -4.99 -1.824575 -5 -1.8084196 -5.01 -1.7943888 -5.02 -1.7826638 -5.03 -1.773361 -5.04 -1.7665197 -5.05 -1.7621016 -5.06 -1.7600112 -5.07 -1.7600285 -5.08 -1.7618453 -5.09 -1.7650755 -5.1 -1.7692485 -5.11 -1.7739031 -5.12 -1.7785928 -5.13 -1.7828952 -5.14 -1.786433 -5.15 -1.7888977 -5.16 -1.7900536 -5.17 -1.7897116 -5.18 -1.7878941 -5.19 -1.7847291 -5.2 -1.7805109 -5.21 -1.7757279 -5.22 -1.7707874 -5.23 -1.766236 -5.24 -1.7626628 -5.25 -1.7606854 -5.26 -1.7609067 -5.27 -1.7638895 -5.28 -1.7699812 -5.29 -1.7798085 -5.3 -1.7936638 -5.31 -1.8117113 -5.32 -1.8341928 -5.33 -1.8605374 -5.34 -1.8903834 -5.35 -1.9232227 -5.36 -1.9584016 -5.37 -1.9951624 -5.38 -2.0326648 -5.39 -2.0702062 -5.4 -2.1067302 -5.41 -2.141268 -5.42 -2.1729367 -5.43 -2.2005235 -5.44 -2.2235773 -5.45 -2.241657 -5.46 -2.2543698 -5.47 -2.261467 -5.48 -2.2628572 -5.49 -2.2586058 -5.5 -2.248923 -5.51 -2.2341267 -5.52 -2.2146925 -5.53 -2.1911985 -5.54 -2.1642223 -5.55 -2.1345458 -5.56 -2.1029615 -5.57 -2.0701817 -5.58 -2.0368771 -5.59 -2.0036675 -5.6 -1.9711035 -5.61 -1.9396584 -5.62 -1.9097273 -5.63 -1.8815825 -5.64 -1.8553969 -5.65 -1.8312838 -5.66 -1.8092687 -5.67 -1.7892121 -5.68 -1.7709448 -5.69 -1.7542698 -5.7 -1.7389597 -5.71 -1.7247731 -5.72 -1.7114461 -5.73 -1.6986383 -5.74 -1.6862474 -5.75 -1.6741397 -5.76 -1.6622758 -5.77 -1.6508089 -5.78 -1.6397392 -5.79 -1.6291581 -5.8 -1.6193037 -5.81 -1.6104886 -5.82 -1.6030974 -5.83 -1.5975805 -5.84 -1.5942464 -5.85 -1.593878 -5.86 -1.5970546 -5.87 -1.604349 -5.88 -1.6165758 -5.89 -1.6341643 -5.9 -1.6573843 -5.91 -1.6865842 -5.92 -1.7220192 -5.93 -1.7638154 -5.94 -1.8119634 -5.95 -1.8663835 -5.96 -1.9266961 -5.97 -1.992363 -5.98 -2.0627046 -5.99 -2.1369019 -6 -2.2138967 -6.01 -2.2924549 -6.02 -2.3712985 -6.03 -2.4490855 -6.04 -2.5244261 -6.05 -2.5959174 -6.06 -2.662223 -6.07 -2.7220325 -6.08 -2.7740973 -6.09 -2.8173477 -6.1 -2.8506438 -6.11 -2.8729898 -6.12 -2.8841005 -6.13 -2.8840236 -6.14 -2.8728121 -6.15 -2.850762 -6.16 -2.8184026 -6.17 -2.7765797 -6.18 -2.7263474 -6.19 -2.6685872 -6.2 -2.6045054 -6.21 -2.535332 -6.22 -2.4623124 -6.23 -2.3868941 -6.24 -2.3106152 -6.25 -2.2346588 -6.26 -2.160089 -6.27 -2.0878143 -6.28 -2.0185786 -6.29 -1.9528673 -6.3 -1.8910823 -6.31 -1.8334609 -6.32 -1.7801168 -6.33 -1.7311773 -6.34 -1.6867058 -6.35 -1.646137 -6.36 -1.6092382 -6.37 -1.5757865 -6.38 -1.5456101 -6.39 -1.5186142 -6.4 -1.4945984 -6.41 -1.4739004 -6.42 -1.4567974 -6.43 -1.4436573 -6.44 -1.4350472 -6.45 -1.4318699 -6.46 -1.4344435 -6.47 -1.4433964 -6.48 -1.4593869 -6.49 -1.4830166 -6.5 -1.5147873 -6.51 -1.5550023 -6.52 -1.6038677 -6.53 -1.6613761 -6.54 -1.7272616 -6.55 -1.8010512 -6.56 -1.8822905 -6.57 -1.9696158 -6.58 -2.0615518 -6.59 -2.1565994 -6.6 -2.2531053 -6.61 -2.3492949 -6.62 -2.4433474 -6.63 -2.5334715 -6.64 -2.617887 -6.65 -2.6949188 -6.66 -2.7630381 -6.67 -2.8204131 -6.68 -2.8657534 -6.69 -2.8987694 -6.7 -2.9190482 -6.71 -2.9265251 -6.72 -2.9213683 -6.73 -2.9041859 -6.74 -2.8758994 -6.75 -2.8371841 -6.76 -2.7891767 -6.77 -2.733176 -6.78 -2.6704113 -6.79 -2.6021775 -6.8 -2.5304976 -6.81 -2.456825 -6.82 -2.3824858 -6.83 -2.3086779 -6.84 -2.236459 -6.85 -2.1667109 -6.86 -2.1000985 -6.87 -2.0371954 -6.88 -1.9784162 -6.89 -1.9240495 -6.9 -1.8746174 -6.91 -1.8298278 -6.92 -1.7895353 -6.93 -1.7536104 -6.94 -1.7218948 -6.95 -1.6942223 -6.96 -1.6703475 -6.97 -1.6502261 -6.98 -1.633759 -6.99 -1.6208554 -7 -1.6114471 -7.01 -1.6056602 -7.02 -1.6033519 -7.03 -1.6043912 -7.04 -1.6087024 -7.05 -1.6161864 -7.06 -1.6266929 -7.07 -1.6399818 -7.08 -1.6557743 -7.09 -1.6737433 -7.1 -1.6934805 -7.11 -1.7145192 -7.12 -1.7364034 -7.13 -1.7585509 -7.14 -1.780318 -7.15 -1.8011114 -7.16 -1.820384 -7.17 -1.8376325 -7.18 -1.8523636 -7.19 -1.864213 -7.2 -1.873017 -7.21 -1.8786319 -7.22 -1.8810261 -7.23 -1.8802367 -7.24 -1.8764151 -7.25 -1.8698987 -7.26 -1.861104 -7.27 -1.8504749 -7.28 -1.8384933 -7.29 -1.8256612 -7.3 -1.812479 -7.31 -1.7994217 -7.32 -1.7869136 -7.33 -1.7753194 -7.34 -1.7649466 -7.35 -1.7560723 -7.36 -1.7488199 -7.37 -1.7431755 -7.38 -1.7390983 -7.39 -1.7364815 -7.4 -1.735169 -7.41 -1.7349014 -7.42 -1.735536 -7.43 -1.7368756 -7.44 -1.738746 -7.45 -1.7410075 -7.46 -1.7436089 -7.47 -1.7465353 -7.48 -1.749774 -7.49 -1.7534388 -7.5 -1.7577003 -7.51 -1.7627856 -7.52 -1.7689316 -7.53 -1.7764594 -7.54 -1.7856754 -7.55 -1.7968625 -7.56 -1.8102705 -7.57 -1.8261513 -7.58 -1.8446947 -7.59 -1.865843 -7.6 -1.8894946 -7.61 -1.9154723 -7.62 -1.9434948 -7.63 -1.9731929 -7.64 -2.0040933 -7.65 -2.0356252 -7.66 -2.0671596 -7.67 -2.0980172 -7.68 -2.127455 -7.69 -2.1546407 -7.7 -2.1788652 -7.71 -2.1995556 -7.72 -2.2161355 -7.73 -2.2281128 -7.74 -2.2351191 -7.75 -2.2368921 -7.76 -2.2332204 -7.77 -2.2240622 -7.78 -2.2094991 -7.79 -2.1897145 -7.8 -2.1649115 -7.81 -2.1355177 -7.82 -2.1023016 -7.83 -2.0658826 -7.84 -2.0269425 -7.85 -1.9862103 -7.86 -1.9444334 -7.87 -1.9023997 -7.88 -1.8609019 -7.89 -1.8207227 -7.9 -1.7826334 -7.91 -1.7474301 -7.92 -1.7160528 -7.93 -1.6889262 -7.94 -1.6666277 -7.95 -1.6496675 -7.96 -1.6384855 -7.97 -1.633386 -7.98 -1.634693 -7.99 -1.6425963 -8 -1.6571817 -8.01 -1.6784359 -8.02 -1.7062374 -8.03 -1.7408798 -8.04 -1.7814558 -8.05 -1.8274377 -8.06 -1.878228 -8.07 -1.9331197 -8.08 -1.9912892 -8.09 -2.0518729 -8.1 -2.113918 -8.11 -2.1764006 -8.12 -2.2382493 -8.13 -2.2983738 -8.14 -2.3554349 -8.15 -2.4083463 -8.16 -2.4561687 -8.17 -2.4979814 -8.18 -2.5329505 -8.19 -2.5604456 -8.2 -2.5799113 -8.21 -2.5908423 -8.22 -2.5929767 -8.23 -2.5862178 -8.24 -2.5706454 -8.25 -2.5461904 -8.26 -2.5132853 -8.27 -2.4728936 -8.28 -2.4258475 -8.29 -2.3730281 -8.3 -2.3154369 -8.31 -2.2541328 -8.32 -2.1901861 -8.33 -2.1247621 -8.34 -2.0590415 -8.35 -1.9941968 -8.36 -1.9314506 -8.37 -1.8721192 -8.38 -1.8171344 -8.39 -1.7673624 -8.4 -1.7236196 -8.41 -1.6866037 -8.42 -1.6568131 -8.43 -1.6348327 -8.44 -1.6210054 -8.45 -1.6155393 -8.46 -1.6185041 -8.47 -1.6298661 -8.48 -1.649768 -8.49 -1.6776125 -8.5 -1.712694 -8.51 -1.7543959 -8.52 -1.8019842 -8.53 -1.8546405 -8.54 -1.9113973 -8.55 -1.9712077 -8.56 -2.0329515 -8.57 -2.0954498 -8.58 -2.1574852 -8.59 -2.2176729 -8.6 -2.2747129 -8.61 -2.3274514 -8.62 -2.3747714 -8.63 -2.4156292 -8.64 -2.4491173 -8.65 -2.4744454 -8.66 -2.4909825 -8.67 -2.4982924 -8.68 -2.4961401 -8.69 -2.4845025 -8.7 -2.4633404 -8.71 -2.4329753 -8.72 -2.3943388 -8.73 -2.3484426 -8.74 -2.2963458 -8.75 -2.2393017 -8.76 -2.1786573 -8.77 -2.1157891 -8.78 -2.0521765 -8.79 -1.9893142 -8.8 -1.9286702 -8.81 -1.8717274 -8.82 -1.8199669 -8.83 -1.7745754 -8.84 -1.7363995 -8.85 -1.7061901 -8.86 -1.6844615 -8.87 -1.6714574 -8.88 -1.6672935 -8.89 -1.6718153 -8.9 -1.6846486 -8.91 -1.7052199 -8.92 -1.7328155 -8.93 -1.7666653 -8.94 -1.8057141 -8.95 -1.8485251 -8.96 -1.8939297 -8.97 -1.9407528 -8.98 -1.9878188 -8.99 -2.0340977 -9 -2.0785793 -9.01 -2.1203571 -9.02 -2.1586439 -9.03 -2.1927813 -9.04 -2.2221391 -9.05 -2.2460935 -9.06 -2.2647454 -9.07 -2.2780182 -9.08 -2.2859507 -9.09 -2.2887498 -9.1 -2.2865893 -9.11 -2.2797501 -9.12 -2.2685841 -9.13 -2.2534884 -9.14 -2.2348834 -9.15 -2.2131844 -9.16 -2.1887287 -9.17 -2.1621301 -9.18 -2.1338652 -9.19 -2.104362 -9.2 -2.0740421 -9.21 -2.043304 -9.22 -2.0125408 -9.23 -1.9821419 -9.24 -1.9524902 -9.25 -1.9239598 -9.26 -1.896923 -9.27 -1.8718257 -9.28 -1.8490098 -9.29 -1.8287225 -9.3 -1.8112417 -9.31 -1.7967895 -9.32 -1.7855399 -9.33 -1.7776273 -9.34 -1.7731052 -9.35 -1.7719494 -9.36 -1.7740684 -9.37 -1.7792762 -9.38 -1.7873647 -9.39 -1.7979913 -9.4 -1.8105421 -9.41 -1.824497 -9.42 -1.8392782 -9.43 -1.8542408 -9.44 -1.8688201 -9.45 -1.8824062 -9.46 -1.8944168 -9.47 -1.904323 -9.48 -1.9116642 -9.49 -1.9160419 -9.5 -1.9170618 -9.51 -1.9147258 -9.52 -1.9090644 -9.53 -1.9002286 -9.54 -1.8884566 -9.55 -1.8741982 -9.56 -1.8579755 -9.57 -1.8404054 -9.58 -1.8221817 -9.59 -1.8040497 -9.6 -1.7867812 -9.61 -1.7713313 -9.62 -1.7583795 -9.63 -1.7485561 -9.64 -1.7424333 -9.65 -1.7404355 -9.66 -1.7429104 -9.67 -1.7500501 -9.68 -1.7618786 -9.69 -1.7782592 -9.7 -1.7989003 -9.71 -1.823357 -9.72 -1.851155 -9.73 -1.8814836 -9.74 -1.9134302 -9.75 -1.9460928 -9.76 -1.978541 -9.77 -2.0098393 -9.78 -2.0390805 -9.79 -2.0653951 -9.8 -2.087987 -9.81 -2.1061597 -9.82 -2.1193366 -9.83 -2.1269369 -9.84 -2.1286108 -9.85 -2.1243814 -9.86 -2.1143889 -9.87 -2.0988601 -9.88 -2.0781762 -9.89 -2.052903 -9.9 -2.0237199 -9.91 -1.9914249 -9.92 -1.9569158 -9.93 -1.9211683 -9.94 -1.8852369 -9.95 -1.8502917 -9.96 -1.817442 -9.97 -1.7877142 -9.98 -1.7621055 -9.99 -1.7415163 -10 -1.7268269 -10.01 -1.7187787 -10.02 -1.7179889 -10.03 -1.7249401 -10.04 -1.7399663 -10.05 -1.7632778 -10.06 -1.7951596 -10.07 -1.8354146 -10.08 -1.8833668 -10.09 -1.9384935 -10.1 -2.000133 -10.11 -2.0674759 -10.12 -2.1395648 -10.13 -2.2153223 -10.14 -2.2935692 -10.15 -2.3730422 -10.16 -2.4524252 -10.17 -2.5301889 -10.18 -2.6047647 -10.19 -2.674932 -10.2 -2.7394285 -10.21 -2.7972457 -10.22 -2.8472245 -10.23 -2.888304 -10.24 -2.9196729 -10.25 -2.9406895 -10.26 -2.9508988 -10.27 -2.9500407 -10.28 -2.937842 -10.29 -2.9140993 -10.3 -2.8796341 -10.31 -2.8353108 -10.32 -2.7820045 -10.33 -2.7206383 -10.34 -2.6521816 -10.35 -2.5778224 -10.36 -2.4988393 -10.37 -2.4165588 -10.38 -2.3323286 -10.39 -2.247497 -10.4 -2.1634251 -10.41 -2.081443 -10.42 -2.002647 -10.43 -1.9280018 -10.44 -1.8583165 -10.45 -1.7942678 -10.46 -1.7363662 -10.47 -1.6849573 -10.48 -1.6402219 -10.49 -1.6021846 -10.5 -1.5707467 -10.51 -1.5458087 -10.52 -1.5271617 -10.53 -1.513976 -10.54 -1.5057185 -10.55 -1.5016964 -10.56 -1.5014266 -10.57 -1.5043209 -10.58 -1.5098104 -10.59 -1.5173528 -10.6 -1.5264771 -10.61 -1.5367528 -10.62 -1.5478273 -10.63 -1.5595968 -10.64 -1.5715984 -10.65 -1.5836906 -10.66 -1.5956286 -10.67 -1.6074823 -10.68 -1.6192784 -10.69 -1.6310307 -10.7 -1.6427899 -10.71 -1.6545707 -10.72 -1.6664251 -10.73 -1.6783545 -10.74 -1.690438 -10.75 -1.7025845 -10.76 -1.7147101 -10.77 -1.7266952 -10.78 -1.7384445 -10.79 -1.7498452 -10.8 -1.7607423 -10.81 -1.7709629 -10.82 -1.7803294 -10.83 -1.7886651 -10.84 -1.7958026 -10.85 -1.8015716 -10.86 -1.8058415 -10.87 -1.80853 -10.88 -1.8095508 -10.89 -1.8088785 -10.9 -1.8065975 -10.91 -1.8027891 -10.92 -1.7975834 -10.93 -1.7911571 -10.94 -1.7837316 -10.95 -1.7755724 -10.96 -1.7669919 -10.97 -1.7583618 -10.98 -1.750049 -10.99 -1.742443 -11 -1.7359361 -11.01 -1.7309542 -11.02 -1.7279018 -11.03 -1.7271671 -11.04 -1.7291142 -11.05 -1.7340796 -11.06 -1.7423544 -11.07 -1.7542229 -11.08 -1.7700276 -11.09 -1.789743 -11.1 -1.8133063 -11.11 -1.8406126 -11.12 -1.8715232 -11.13 -1.9057744 -11.14 -1.9430065 -11.15 -1.9827643 -11.16 -2.0245026 -11.17 -2.067593 -11.18 -2.1113349 -11.19 -2.154879 -11.2 -2.1973735 -11.21 -2.2379997 -11.22 -2.2760008 -11.23 -2.3105595 -11.24 -2.3409208 -11.25 -2.3664187 -11.26 -2.3864892 -11.27 -2.4006873 -11.28 -2.4087117 -11.29 -2.4104097 -11.3 -2.4055735 -11.31 -2.3944026 -11.32 -2.3775093 -11.33 -2.3555562 -11.34 -2.3292424 -11.35 -2.2993876 -11.36 -2.2669548 -11.37 -2.2329912 -11.38 -2.1985974 -11.39 -2.1648892 -11.4 -2.1329634 -11.41 -2.1039307 -11.42 -2.078842 -11.43 -2.0584923 -11.44 -2.0434938 -11.45 -2.0343302 -11.46 -2.0312173 -11.47 -2.0342016 -11.48 -2.0431223 -11.49 -2.0576111 -11.5 -2.0771059 -11.51 -2.1008723 -11.52 -2.1280381 -11.53 -2.1575899 -11.54 -2.1883647 -11.55 -2.2191933 -11.56 -2.2489843 -11.57 -2.276627 -11.58 -2.3011344 -11.59 -2.3216408 -11.6 -2.3374222 -11.61 -2.3479268 -11.62 -2.3527839 -11.63 -2.3517966 -11.64 -2.3448417 -11.65 -2.3320169 -11.66 -2.314023 -11.67 -2.2914808 -11.68 -2.2650265 -11.69 -2.2354276 -11.7 -2.2035135 -11.71 -2.1701368 -11.72 -2.1361448 -11.73 -2.1023444 -11.74 -2.0694751 -11.75 -2.0382067 -11.76 -2.0091508 -11.77 -1.9826971 -11.78 -1.9591268 -11.79 -1.9385151 -11.8 -1.9208424 -11.81 -1.9059884 -11.82 -1.8937355 -11.83 -1.8837885 -11.84 -1.8757956 -11.85 -1.8693733 -11.86 -1.864146 -11.87 -1.8598429 -11.88 -1.8560151 -11.89 -1.8522314 -11.9 -1.8482692 -11.91 -1.8440777 -11.92 -1.8395982 -11.93 -1.8348509 -11.94 -1.8299307 -11.95 -1.8249944 -11.96 -1.8202522 -11.97 -1.8159507 -11.98 -1.8124011 -11.99 -1.8098785 -12 -1.8085967 -12.01 -1.8087928 -12.02 -1.8106386 -12.03 -1.8142474 -12.04 -1.8196817 -12.05 -1.8269089 -12.06 -1.835841 -12.07 -1.8463276 -12.08 -1.8581553 -12.09 -1.871102 -12.1 -1.8849137 -12.11 -1.8991656 -12.12 -1.9134225 -12.13 -1.9274414 -12.14 -1.940918 -12.15 -1.9535809 -12.16 -1.9652014 -12.17 -1.9755987 -12.18 -1.9846474 -12.19 -1.9922795 -12.2 -1.9984779 -12.21 -2.0032104 -12.22 -2.0066187 -12.23 -2.0088877 -12.24 -2.0102039 -12.25 -2.0107655 -12.26 -2.010788 -12.27 -2.0104957 -12.28 -2.0101072 -12.29 -2.0098377 -12.3 -2.0098859 -12.31 -2.0104309 -12.32 -2.0116348 -12.33 -2.0136657 -12.34 -2.0166534 -12.35 -2.0206477 -12.36 -2.0256896 -12.37 -2.0318135 -12.38 -2.0390364 -12.39 -2.0473501 -12.4 -2.056735 -12.41 -2.0671492 -12.42 -2.0785343 -12.43 -2.0908553 -12.44 -2.1039873 -12.45 -2.1177496 -12.46 -2.1319996 -12.47 -2.1465816 -12.48 -2.1612987 -12.49 -2.1759318 -12.5 -2.1902397 -12.51 -2.2039596 -12.52 -2.2168187 -12.53 -2.2285345 -12.54 -2.2387496 -12.55 -2.2471098 -12.56 -2.2534697 -12.57 -2.2577471 -12.58 -2.2596633 -12.59 -2.2590999 -12.6 -2.2559982 -12.61 -2.2503711 -12.62 -2.2423021 -12.63 -2.2319514 -12.64 -2.2195513 -12.65 -2.205395 -12.66 -2.1898368 -12.67 -2.1733409 -12.68 -2.1563912 -12.69 -2.1394693 -12.7 -2.1230509 -12.71 -2.1075966 -12.72 -2.0935251 -12.73 -2.0812041 -12.74 -2.0709268 -12.75 -2.0629042 -12.76 -2.0572498 -12.77 -2.054008 -12.78 -2.0530671 -12.79 -2.0542321 -12.8 -2.0571409 -12.81 -2.0613709 -12.82 -2.0664479 -12.83 -2.0718433 -12.84 -2.076995 -12.85 -2.0813282 -12.86 -2.0842782 -12.87 -2.0853111 -12.88 -2.083877 -12.89 -2.0794922 -12.9 -2.0719384 -12.91 -2.0610194 -12.92 -2.0466346 -12.93 -2.028799 -12.94 -2.0076328 -12.95 -1.9833594 -12.96 -1.9562954 -12.97 -1.9268399 -12.98 -1.8954558 -12.99 -1.8626622 -13 -1.8290345 -13.01 -1.7951377 -13.02 -1.7615003 -13.03 -1.7286962 -13.04 -1.6972119 -13.05 -1.6674879 -13.06 -1.6399136 -13.07 -1.6148148 -13.08 -1.5924613 -13.09 -1.5730565 -13.1 -1.5567762 -13.11 -1.5438566 -13.12 -1.5343637 -13.13 -1.5280567 -13.14 -1.5250083 -13.15 -1.5251796 -13.16 -1.5285212 -13.17 -1.5349551 -13.18 -1.5444183 -13.19 -1.5568017 -13.2 -1.5720186 -13.21 -1.589947 -13.22 -1.6105224 -13.23 -1.6337116 -13.24 -1.658995 -13.25 -1.6862434 -13.26 -1.7151943 -13.27 -1.7455409 -13.28 -1.7769388 -13.29 -1.8090013 -13.3 -1.8413086 -13.31 -1.8734194 -13.32 -1.904872 -13.33 -1.9351919 -13.34 -1.9637732 -13.35 -1.9902647 -13.36 -2.0142758 -13.37 -2.0354494 -13.38 -2.0534908 -13.39 -2.0682052 -13.4 -2.0794601 -13.41 -2.0872075 -13.42 -2.0914795 -13.43 -2.0923918 -13.44 -2.09013 -13.45 -2.0847844 -13.46 -2.0768093 -13.47 -2.0666178 -13.48 -2.0545574 -13.49 -2.0409908 -13.5 -2.0262598 -13.51 -2.0106833 -13.52 -1.9945369 -13.53 -1.9780461 -13.54 -1.9613842 -13.55 -1.9446695 -13.56 -1.9279843 -13.57 -1.9113518 -13.58 -1.8947044 -13.59 -1.8780364 -13.6 -1.8613114 -13.61 -1.8445149 -13.62 -1.8276649 -13.63 -1.810834 -13.64 -1.7941601 -13.65 -1.7778582 -13.66 -1.7622274 -13.67 -1.7477077 -13.68 -1.7348715 -13.69 -1.7241345 -13.7 -1.7161644 -13.71 -1.711608 -13.72 -1.7111233 -13.73 -1.7153516 -13.74 -1.7248865 -13.75 -1.7402449 -13.76 -1.7618374 -13.77 -1.7899409 -13.78 -1.8247077 -13.79 -1.866335 -13.8 -1.9143918 -13.81 -1.9682457 -13.82 -2.0272288 -13.83 -2.090494 -13.84 -2.1570364 -13.85 -2.2257179 -13.86 -2.2952951 -13.87 -2.3644575 -13.88 -2.4318744 -13.89 -2.4962171 -13.9 -2.5559103 -13.91 -2.6098486 -13.92 -2.6571278 -13.93 -2.6968987 -13.94 -2.7285208 -13.95 -2.7515629 -13.96 -2.7658186 -13.97 -2.7712941 -13.98 -2.7682086 -13.99 -2.7569937 -14 -2.7382546 -14.01 -2.7124929 -14.02 -2.6806808 -14.03 -2.6440981 -14.04 -2.6037211 -14.05 -2.5605601 -14.06 -2.5155893 -14.07 -2.4697214 -14.08 -2.4237946 -14.09 -2.3785221 -14.1 -2.3344947 -14.11 -2.2921779 -14.12 -2.2519301 -14.13 -2.2140108 -14.14 -2.1784565 -14.15 -2.1451567 -14.16 -2.1139736 -14.17 -2.0847067 -14.18 -2.0571126 -14.19 -2.0309215 -14.2 -2.005867 -14.21 -1.9816921 -14.22 -1.9581732 -14.23 -1.9351292 -14.24 -1.9124363 -14.25 -1.8899835 -14.26 -1.8677467 -14.27 -1.8457436 -14.28 -1.824027 -14.29 -1.8026782 -14.3 -1.7817951 -14.31 -1.7614794 -14.32 -1.741831 -14.33 -1.7229351 -14.34 -1.7048605 -14.35 -1.6877084 -14.36 -1.6714771 -14.37 -1.6561009 -14.38 -1.6415791 -14.39 -1.6278829 -14.4 -1.6149855 -14.41 -1.6028721 -14.42 -1.5915527 -14.43 -1.5810686 -14.44 -1.5715091 -14.45 -1.5630086 -14.46 -1.5558077 -14.47 -1.5502158 -14.48 -1.5464237 -14.49 -1.544808 -14.5 -1.5457426 -14.51 -1.5496147 -14.52 -1.5568046 -14.53 -1.5676709 -14.54 -1.5825274 -14.55 -1.6016242 -14.56 -1.6251248 -14.57 -1.6531159 -14.58 -1.68572 -14.59 -1.7226449 -14.6 -1.7634546 -14.61 -1.8076997 -14.62 -1.8548125 -14.63 -1.9041241 -14.64 -1.9548793 -14.65 -2.0062614 -14.66 -2.0574171 -14.67 -2.1074869 -14.68 -2.1556307 -14.69 -2.2009585 -14.7 -2.2426543 -14.71 -2.2802454 -14.72 -2.3132964 -14.73 -2.341525 -14.74 -2.3647955 -14.75 -2.3831301 -14.76 -2.3967074 -14.77 -2.4058487 -14.78 -2.411008 -14.79 -2.4127404 -14.8 -2.4116319 -14.81 -2.4083994 -14.82 -2.403863 -14.83 -2.398733 -14.84 -2.3936494 -14.85 -2.3891789 -14.86 -2.3857806 -14.87 -2.3837967 -14.88 -2.3834323 -14.89 -2.3847488 -14.9 -2.387664 -14.91 -2.3919539 -14.92 -2.3972915 -14.93 -2.4031357 -14.94 -2.4088947 -14.95 -2.413941 -14.96 -2.417614 -14.97 -2.4192563 -14.98 -2.4182322 -14.99 -2.4139629 -15 -2.4059485 -15.01 -2.3937891 -15.02 -2.3772035 -15.03 -2.3558304 -15.04 -2.3297611 -15.05 -2.2992229 -15.06 -2.2645229 -15.07 -2.2260585 -15.08 -2.1843292 -15.09 -2.1399226 -15.1 -2.0934905 -15.11 -2.0457291 -15.12 -1.9973538 -15.13 -1.9490751 -15.14 -1.9016346 -15.15 -1.8557036 -15.16 -1.811875 -15.17 -1.7706157 -15.18 -1.7323301 -15.19 -1.6973306 -15.2 -1.6658389 -15.21 -1.6379844 -15.22 -1.6138161 -15.23 -1.5933048 -15.24 -1.576357 -15.25 -1.5628804 -15.26 -1.5527092 -15.27 -1.5456142 -15.28 -1.5412621 -15.29 -1.5394102 -15.3 -1.539832 -15.31 -1.5423111 -15.32 -1.5466436 -15.33 -1.5526515 -15.34 -1.5601794 -15.35 -1.5690859 -15.36 -1.5792717 -15.37 -1.5906248 -15.38 -1.603115 -15.39 -1.616573 -15.4 -1.6309222 -15.41 -1.6460688 -15.42 -1.6619045 -15.43 -1.6783161 -15.44 -1.6951728 -15.45 -1.7123313 -15.46 -1.7296373 -15.47 -1.7469271 -15.48 -1.7639768 -15.49 -1.7806838 -15.5 -1.7968572 -15.51 -1.8123442 -15.52 -1.8270167 -15.53 -1.8407712 -15.54 -1.8535348 -15.55 -1.8652684 -15.56 -1.8759682 -15.57 -1.8856672 -15.58 -1.8944353 -15.59 -1.9023733 -15.6 -1.9095951 -15.61 -1.9162885 -15.62 -1.9226488 -15.63 -1.9288672 -15.64 -1.9351338 -15.65 -1.9416342 -15.66 -1.9485397 -15.67 -1.9559995 -15.68 -1.9641367 -15.69 -1.9730434 -15.7 -1.9827763 -15.71 -1.9933743 -15.72 -2.0048193 -15.73 -2.0170096 -15.74 -2.0298453 -15.75 -2.0431978 -15.76 -2.0569148 -15.77 -2.0708273 -15.78 -2.084757 -15.79 -2.0985222 -15.8 -2.111947 -15.81 -2.1248635 -15.82 -2.1371563 -15.83 -2.148575 -15.84 -2.1591066 -15.85 -2.1686844 -15.86 -2.1772734 -15.87 -2.184862 -15.88 -2.191468 -15.89 -2.1971253 -15.9 -2.2018885 -15.91 -2.2058186 -15.92 -2.2089808 -15.93 -2.2114703 -15.94 -2.2132396 -15.95 -2.2144107 -15.96 -2.2150078 -15.97 -2.2150313 -15.98 -2.2144607 -15.99 -2.213255 -16 -2.2113539 -16.01 -2.2086783 -16.02 -2.2051431 -16.03 -2.2006571 -16.04 -2.1951719 -16.05 -2.1884442 -16.06 -2.1805112 -16.07 -2.171373 -16.08 -2.1610404 -16.09 -2.1495685 -16.1 -2.1370505 -16.11 -2.123633 -16.12 -2.1095053 -16.13 -2.094899 -16.14 -2.0800858 -16.15 -2.0653704 -16.16 -2.0511084 -16.17 -2.0376568 -16.18 -2.0253411 -16.19 -2.0144691 -16.2 -2.0053228 -16.21 -1.9981373 -16.22 -1.9930909 -16.23 -1.9902925 -16.24 -1.98978 -16.25 -1.991507 -16.26 -1.9953515 -16.27 -2.0011549 -16.28 -2.0085724 -16.29 -2.0171807 -16.3 -2.026537 -16.31 -2.0361642 -16.32 -2.0455579 -16.33 -2.0542033 -16.34 -2.0615941 -16.35 -2.0672518 -16.36 -2.0707428 -16.37 -2.0716959 -16.38 -2.0697064 -16.39 -2.0645707 -16.4 -2.0562607 -16.41 -2.04482 -16.42 -2.0303661 -16.43 -2.0131155 -16.44 -1.9933763 -16.45 -1.9715368 -16.46 -1.9480515 -16.47 -1.9234266 -16.48 -1.8981994 -16.49 -1.8729196 -16.5 -1.8482123 -16.51 -1.8246056 -16.52 -1.8025668 -16.53 -1.7825179 -16.54 -1.764817 -16.55 -1.7497498 -16.56 -1.7375283 -16.57 -1.7282927 -16.58 -1.7221128 -16.59 -1.7189947 -16.6 -1.7188649 -16.61 -1.7217425 -16.62 -1.727536 -16.63 -1.73602 -16.64 -1.7470372 -16.65 -1.7604665 -16.66 -1.7762043 -16.67 -1.794172 -16.68 -1.8143178 -16.69 -1.8366156 -16.7 -1.8610602 -16.71 -1.8876244 -16.72 -1.9163931 -16.73 -1.9474733 -16.74 -1.9807432 -16.75 -2.0160712 -16.76 -2.0533209 -16.77 -2.0922819 -16.78 -2.1326601 -16.79 -2.174069 -16.8 -2.2160266 -16.81 -2.2579545 -16.82 -2.299222 -16.83 -2.3391772 -16.84 -2.3766307 -16.85 -2.4107046 -16.86 -2.4406776 -16.87 -2.4657 -16.88 -2.4849664 -16.89 -2.4977466 -16.9 -2.5034185 -16.91 -2.5014922 -16.92 -2.491634 -16.93 -2.4736862 -16.94 -2.4476369 -16.95 -2.413551 -16.96 -2.3718145 -16.97 -2.3234199 -16.98 -2.2691948 -16.99 -2.2101155 -17 -2.1472819 -17.01 -2.0818853 -17.02 -2.0151706 -17.03 -1.948401 -17.04 -1.8828169 -17.05 -1.8196286 -17.06 -1.7599846 -17.07 -1.7050253 -17.08 -1.6553882 -17.09 -1.6116608 -17.1 -1.5742603 -17.11 -1.5434111 -17.12 -1.5191523 -17.13 -1.5013495 -17.14 -1.4897069 -17.15 -1.483795 -17.16 -1.4829711 -17.17 -1.4866419 -17.18 -1.4945074 -17.19 -1.505644 -17.2 -1.5192796 -17.21 -1.5348161 -17.22 -1.5517315 -17.23 -1.5695964 -17.24 -1.5880884 -17.25 -1.6069973 -17.26 -1.6262236 -17.27 -1.6457366 -17.28 -1.6656366 -17.29 -1.6862781 -17.3 -1.7078682 -17.31 -1.730616 -17.32 -1.7547999 -17.33 -1.7806774 -17.34 -1.8084632 -17.35 -1.8383082 -17.36 -1.8702813 -17.37 -1.9043615 -17.38 -1.9404361 -17.39 -1.9783284 -17.4 -2.017639 -17.41 -2.0579461 -17.42 -2.0987203 -17.43 -2.1394159 -17.44 -2.1794511 -17.45 -2.2182418 -17.46 -2.2552135 -17.47 -2.2898316 -17.48 -2.3216178 -17.49 -2.3501725 -17.5 -2.3751904 -17.51 -2.3964688 -17.52 -2.4136468 -17.53 -2.4269548 -17.54 -2.4365406 -17.55 -2.442612 -17.56 -2.4454497 -17.57 -2.4453966 -17.58 -2.4428302 -17.59 -2.4381508 -17.6 -2.4317532 -17.61 -2.4241814 -17.62 -2.4156828 -17.63 -2.4062532 -17.64 -2.3962619 -17.65 -2.3859232 -17.66 -2.3753076 -17.67 -2.3644062 -17.68 -2.3531471 -17.69 -2.3413999 -17.7 -2.3289917 -17.71 -2.3157226 -17.72 -2.3013743 -17.73 -2.2857171 -17.74 -2.2685249 -17.75 -2.249661 -17.76 -2.2290646 -17.77 -2.2067104 -17.78 -2.1826316 -17.79 -2.1569359 -17.8 -2.1297935 -17.81 -2.1014405 -17.82 -2.0721703 -17.83 -2.0423322 -17.84 -2.0123307 -17.85 -1.9825187 -17.86 -1.9533029 -17.87 -1.9250814 -17.88 -1.8982095 -17.89 -1.8729953 -17.9 -1.8496972 -17.91 -1.8285148 -17.92 -1.8095858 -17.93 -1.7929832 -17.94 -1.7787151 -17.95 -1.7666326 -17.96 -1.7567416 -17.97 -1.7490265 -17.98 -1.7432678 -17.99 -1.7391777 -18 -1.7365591 -18.01 -1.7352173 -18.02 -1.7349745 -18.03 -1.7356761 -18.04 -1.7371982 -18.05 -1.7394515 -18.06 -1.7422896 -18.07 -1.7458024 -18.08 -1.7500849 -18.09 -1.7551721 -18.1 -1.7610561 -18.11 -1.7678183 -18.12 -1.7755468 -18.13 -1.7843258 -18.14 -1.7942263 -18.15 -1.8053046 -18.16 -1.8175901 -18.17 -1.8310789 -18.18 -1.8457326 -18.19 -1.8615257 -18.2 -1.8783925 -18.21 -1.8961646 -18.22 -1.9146875 -18.23 -1.9338016 -18.24 -1.9533383 -18.25 -1.9731267 -18.26 -1.9929982 -18.27 -2.0127956 -18.28 -2.0323666 -18.29 -2.0516023 -18.3 -2.0704193 -18.31 -2.0887129 -18.32 -2.1064222 -18.33 -2.1235291 -18.34 -2.1400217 -18.35 -2.1558995 -18.36 -2.1711711 -18.37 -2.1858458 -18.38 -2.1999283 -18.39 -2.213436 -18.4 -2.2264317 -18.41 -2.2387503 -18.42 -2.2502586 -18.43 -2.2608621 -18.44 -2.2705382 -18.45 -2.2791564 -18.46 -2.2865708 -18.47 -2.2926225 -18.48 -2.2971436 -18.49 -2.2999671 -18.5 -2.3009319 -18.51 -2.29994 -18.52 -2.2968067 -18.53 -2.2913748 -18.54 -2.2834601 -18.55 -2.2731855 -18.56 -2.2605484 -18.57 -2.245586 -18.58 -2.2283688 -18.59 -2.2090018 -18.6 -2.1876225 -18.61 -2.1643958 -18.62 -2.1395812 -18.63 -2.1133254 -18.64 -2.0858052 -18.65 -2.0571263 -18.66 -2.0276829 -18.67 -1.9977094 -18.68 -1.9674287 -18.69 -1.9370556 -18.7 -1.9067978 -18.71 -1.8768541 -18.72 -1.8474238 -18.73 -1.8186346 -18.74 -1.7906402 -18.75 -1.7636501 -18.76 -1.7380027 -18.77 -1.7137791 -18.78 -1.6910719 -18.79 -1.6700224 -18.8 -1.6507658 -18.81 -1.6334261 -18.82 -1.6181181 -18.83 -1.6049398 -18.84 -1.5939388 -18.85 -1.5851472 -18.86 -1.5786709 -18.87 -1.5746275 -18.88 -1.5729626 -18.89 -1.5734952 -18.9 -1.5761035 -18.91 -1.580643 -18.92 -1.5869411 -18.93 -1.5947965 -18.94 -1.603985 -18.95 -1.6142582 -18.96 -1.6252787 -18.97 -1.6368905 -18.98 -1.6489062 -18.99 -1.6611643 -19 -1.6734194 -19.01 -1.6855222 -19.02 -1.6973884 -19.03 -1.7089859 -19.04 -1.7203382 -19.05 -1.7315215 -19.06 -1.7426667 -19.07 -1.7538608 -19.08 -1.765437 -19.09 -1.7776726 -19.1 -1.7909188 -19.11 -1.8054053 -19.12 -1.8213721 -19.13 -1.8390687 -19.14 -1.8587118 -19.15 -1.8804694 -19.16 -1.9044495 -19.17 -1.9306917 -19.18 -1.9592101 -19.19 -1.9898689 -19.2 -2.0224463 -19.21 -2.0566681 -19.22 -2.0921461 -19.23 -2.1284331 -19.24 -2.1650521 -19.25 -2.2014869 -19.26 -2.2371959 -19.27 -2.2716311 -19.28 -2.3042529 -19.29 -2.3345775 -19.3 -2.3621357 -19.31 -2.386467 -19.32 -2.4070606 -19.33 -2.4235733 -19.34 -2.4359218 -19.35 -2.4440531 -19.36 -2.4479434 -19.37 -2.4476512 -19.38 -2.4433136 -19.39 -2.4351356 -19.4 -2.423418 -19.41 -2.4085426 -19.42 -2.3907508 -19.43 -2.370346 -19.44 -2.3476519 -19.45 -2.3231445 -19.46 -2.2972843 -19.47 -2.2704198 -19.48 -2.2428702 -19.49 -2.2149217 -19.5 -2.1868245 -19.51 -2.1587893 -19.52 -2.1310169 -19.53 -2.1035903 -19.54 -2.0766223 -19.55 -2.0502238 -19.56 -2.0244727 -19.57 -1.9993999 -19.58 -1.9750432 -19.59 -1.951441 -19.6 -1.9286323 -19.61 -1.9066664 -19.62 -1.8855979 -19.63 -1.8654326 -19.64 -1.8462943 -19.65 -1.8282879 -19.66 -1.8115713 -19.67 -1.7963245 -19.68 -1.7825372 -19.69 -1.7703137 -19.7 -1.7597527 -19.71 -1.7509451 -19.72 -1.7439709 -19.73 -1.7388956 -19.74 -1.7357103 -19.75 -1.7344779 -19.76 -1.7352567 -19.77 -1.7381014 -19.78 -1.7431357 -19.79 -1.7502028 -19.8 -1.7592536 -19.81 -1.7702667 -19.82 -1.7832196 -19.83 -1.7980931 -19.84 -1.8148695 -19.85 -1.833517 -19.86 -1.8540255 -19.87 -1.8764128 -19.88 -1.9006753 -19.89 -1.9268634 -19.9 -1.9548834 -19.91 -1.9846243 -19.92 -2.0160026 -19.93 -2.0488989 -19.94 -2.0831571 -19.95 -2.1185786 -19.96 -2.1549289 -19.97 -2.1919504 -19.98 -2.2292615 -19.99 -2.2664646 -20 -2.3030496 -20.01 -2.3384524 -20.02 -2.3722237 -20.03 -2.4038231 -20.04 -2.4327035 -20.05 -2.458321 -20.06 -2.4801126 -20.07 -2.4976256 -20.08 -2.5105525 -20.09 -2.5183914 -20.1 -2.5208355 -20.11 -2.517555 -20.12 -2.5081011 -20.13 -2.4928935 -20.14 -2.472063 -20.15 -2.4458303 -20.16 -2.4145197 -20.17 -2.3785541 -20.18 -2.3384466 -20.19 -2.2948456 -20.2 -2.2483481 -20.21 -2.1996481 -20.22 -2.1494923 -20.23 -2.0986534 -20.24 -2.0480143 -20.25 -1.9983444 -20.26 -1.9503607 -20.27 -1.9047304 -20.28 -1.8620619 -20.29 -1.8228921 -20.3 -1.7876373 -20.31 -1.7566717 -20.32 -1.7303083 -20.33 -1.7087413 -20.34 -1.692359 -20.35 -1.6810414 -20.36 -1.6745744 -20.37 -1.6727777 -20.38 -1.6754234 -20.39 -1.6822257 -20.4 -1.6928488 -20.41 -1.7068911 -20.42 -1.7239263 -20.43 -1.7435603 -20.44 -1.7653363 -20.45 -1.7888409 -20.46 -1.8135786 -20.47 -1.8390163 -20.48 -1.8646809 -20.49 -1.8901394 -20.5 -1.9149791 -20.51 -1.9388104 -20.52 -1.9612703 -20.53 -1.9820033 -20.54 -2.0007572 -20.55 -2.0172837 -20.56 -2.031343 -20.57 -2.0427179 -20.58 -2.0513447 -20.59 -2.0572123 -20.6 -2.0603239 -20.61 -2.0607375 -20.62 -2.0585619 -20.63 -2.0539602 -20.64 -2.0471392 -20.65 -2.038365 -20.66 -2.0279334 -20.67 -2.0161635 -20.68 -2.0033867 -20.69 -1.9900068 -20.7 -1.97645 -20.71 -1.9630951 -20.72 -1.9503149 -20.73 -1.9384581 -20.74 -1.9278462 -20.75 -1.9187832 -20.76 -1.9114892 -20.77 -1.9061372 -20.78 -1.9028615 -20.79 -1.9018059 -20.8 -1.903009 -20.81 -1.9063497 -20.82 -1.9117192 -20.83 -1.9189687 -20.84 -1.9279042 -20.85 -1.9382961 -20.86 -1.9498688 -20.87 -1.9623452 -20.88 -1.975457 -20.89 -1.9889159 -20.9 -2.0024323 -20.91 -2.0157136 -20.92 -2.0284726 -20.93 -2.0404683 -20.94 -2.0514853 -20.95 -2.0613341 -20.96 -2.0698501 -20.97 -2.0769084 -20.98 -2.0824263 -20.99 -2.0862757 -21 -2.0883762 -21.01 -2.0886267 -21.02 -2.0868936 -21.03 -2.0831667 -21.04 -2.0774988 -21.05 -2.0698757 -21.06 -2.0602922 -21.07 -2.0487553 -21.08 -2.035291 -21.09 -2.0199309 -21.1 -2.0027142 -21.11 -1.9837327 -21.12 -1.9631154 -21.13 -1.9410309 -21.14 -1.9177231 -21.15 -1.8934831 -21.16 -1.8686132 -21.17 -1.8434666 -21.18 -1.8184357 -21.19 -1.793951 -21.2 -1.7703718 -21.21 -1.7482883 -21.22 -1.7282248 -21.23 -1.7106949 -21.24 -1.6962491 -21.25 -1.6855909 -21.26 -1.6788749 -21.27 -1.6764603 -21.28 -1.6786389 -21.29 -1.6856242 -21.3 -1.6975384 -21.31 -1.7144247 -21.32 -1.7362111 -21.33 -1.7627125 -21.34 -1.7936448 -21.35 -1.8286359 -21.36 -1.8673889 -21.37 -1.9091427 -21.38 -1.9532498 -21.39 -1.9990485 -21.4 -2.0458346 -21.41 -2.0928867 -21.42 -2.1394903 -21.43 -2.1849478 -21.44 -2.228597 -21.45 -2.2698197 -21.46 -2.3080566 -21.47 -2.3426035 -21.48 -2.3730661 -21.49 -2.3992086 -21.5 -2.4207782 -21.51 -2.4375985 -21.52 -2.4495679 -21.53 -2.456685 -21.54 -2.4590765 -21.55 -2.4567228 -21.56 -2.4497493 -21.57 -2.4383187 -21.58 -2.4224378 -21.59 -2.4022744 -21.6 -2.3783137 -21.61 -2.3508575 -21.62 -2.3201742 -21.63 -2.2865397 -21.64 -2.2502364 -21.65 -2.2116036 -21.66 -2.170826 -21.67 -2.1282045 -21.68 -2.0840557 -21.69 -2.0387143 -21.7 -1.9925816 -21.71 -1.9460643 -21.72 -1.8995574 -21.73 -1.8534662 -21.74 -1.8082109 -21.75 -1.764224 -21.76 -1.7218336 -21.77 -1.6815722 -21.78 -1.6439076 -21.79 -1.6092653 -21.8 -1.5780504 -21.81 -1.5509099 -21.82 -1.5280195 -21.83 -1.5095218 -21.84 -1.4956228 -21.85 -1.4864627 -21.86 -1.4821166 -21.87 -1.4825436 -21.88 -1.4876927 -21.89 -1.4974569 -21.9 -1.5116394 -21.91 -1.5299898 -21.92 -1.5523915 -21.93 -1.5784658 -21.94 -1.6076925 -21.95 -1.6396516 -21.96 -1.6739429 -21.97 -1.7101642 -21.98 -1.7478736 -21.99 -1.7866747 -22 -1.8263104 -22.01 -1.8664679 -22.02 -1.9068623 -22.03 -1.9472449 -22.04 -1.9873614 -22.05 -2.0269652 -22.06 -2.0658618 -22.07 -2.1038845 -22.08 -2.1408773 -22.09 -2.1767041 -22.1 -2.2112965 -22.11 -2.244429 -22.12 -2.2759166 -22.13 -2.3055608 -22.14 -2.3330844 -22.15 -2.3581268 -22.16 -2.3804699 -22.17 -2.3999808 -22.18 -2.4164022 -22.19 -2.4294786 -22.2 -2.4389642 -22.21 -2.444755 -22.22 -2.446508 -22.23 -2.4440621 -22.24 -2.437306 -22.25 -2.4261688 -22.26 -2.4105419 -22.27 -2.3904852 -22.28 -2.3663834 -22.29 -2.3384837 -22.3 -2.3071092 -22.31 -2.2726523 -22.32 -2.2355815 -22.33 -2.1964092 -22.34 -2.1557021 -22.35 -2.1140669 -22.36 -2.0721318 -22.37 -2.030561 -22.38 -1.9900558 -22.39 -1.9512289 -22.4 -1.9146602 -22.41 -1.8808816 -22.42 -1.8503691 -22.43 -1.823527 -22.44 -1.8006796 -22.45 -1.7820697 -22.46 -1.7678605 -22.47 -1.7581271 -22.48 -1.7529118 -22.49 -1.7523118 -22.5 -1.7559784 -22.51 -1.7635852 -22.52 -1.7748204 -22.53 -1.7893254 -22.54 -1.8066832 -22.55 -1.8264456 -22.56 -1.8482185 -22.57 -1.8715607 -22.58 -1.896037 -22.59 -1.9212299 -22.6 -1.9467597 -22.61 -1.9722151 -22.62 -1.9972427 -22.63 -2.021563 -22.64 -2.0449409 -22.65 -2.0671856 -22.66 -2.0881518 -22.67 -2.1077487 -22.68 -2.125904 -22.69 -2.1425836 -22.7 -2.1577749 -22.71 -2.1714391 -22.72 -2.1835428 -22.73 -2.1942052 -22.74 -2.2034704 -22.75 -2.2113714 -22.76 -2.2179257 -22.77 -2.2232116 -22.78 -2.227161 -22.79 -2.2297403 -22.8 -2.2308997 -22.81 -2.2305779 -22.82 -2.2286773 -22.83 -2.2249559 -22.84 -2.219486 -22.85 -2.2121953 -22.86 -2.2030105 -22.87 -2.191871 -22.88 -2.1787704 -22.89 -2.1636655 -22.9 -2.1465594 -22.91 -2.1275088 -22.92 -2.1066132 -22.93 -2.0840146 -22.94 -2.0598364 -22.95 -2.0343927 -22.96 -2.0079828 -22.97 -1.9809121 -22.98 -1.9535117 -22.99 -1.926111 -23 -1.8990648 -23.01 -1.8727555 -23.02 -1.8475367 -23.03 -1.8237404 -23.04 -1.801671 -23.05 -1.7817072 -23.06 -1.7640525 -23.07 -1.7487994 -23.08 -1.7360219 -23.09 -1.7257529 -23.1 -1.7179447 -23.11 -1.7124697 -23.12 -1.709224 -23.13 -1.7080091 -23.14 -1.7085853 -23.15 -1.7106822 -23.16 -1.7140619 -23.17 -1.7184415 -23.18 -1.723462 -23.19 -1.7288164 -23.2 -1.7342639 -23.21 -1.7395984 -23.22 -1.7445679 -23.23 -1.7491924 -23.24 -1.7534462 -23.25 -1.7573671 -23.26 -1.7610591 -23.27 -1.7646961 -23.28 -1.7685377 -23.29 -1.7728376 -23.3 -1.7778704 -23.31 -1.7839613 -23.32 -1.7914391 -23.33 -1.8006177 -23.34 -1.8118201 -23.35 -1.8253131 -23.36 -1.8413093 -23.37 -1.8599611 -23.38 -1.8813537 -23.39 -1.9055771 -23.4 -1.9325312 -23.41 -1.9619436 -23.42 -1.9935515 -23.43 -2.0270143 -23.44 -2.0619306 -23.45 -2.0978264 -23.46 -2.1341752 -23.47 -2.1704209 -23.48 -2.205989 -23.49 -2.2402976 -23.5 -2.2726784 -23.51 -2.3024975 -23.52 -2.3293229 -23.53 -2.3527337 -23.54 -2.3723497 -23.55 -2.3879165 -23.56 -2.3992449 -23.57 -2.4061281 -23.58 -2.408505 -23.59 -2.4063969 -23.6 -2.3999057 -23.61 -2.3891151 -23.62 -2.3741463 -23.63 -2.3554608 -23.64 -2.3335344 -23.65 -2.3087652 -23.66 -2.2815929 -23.67 -2.2524834 -23.68 -2.2218049 -23.69 -2.1900031 -23.7 -2.1575108 -23.71 -2.1247549 -23.72 -2.092149 -23.73 -2.0601222 -23.74 -2.0290666 -23.75 -1.9992777 -23.76 -1.9710492 -23.77 -1.9446467 -23.78 -1.9202636 -23.79 -1.8981691 -23.8 -1.8785579 -23.81 -1.861599 -23.82 -1.8474344 -23.83 -1.8361882 -23.84 -1.8280106 -23.85 -1.8230459 -23.86 -1.8211597 -23.87 -1.8223458 -23.88 -1.8265653 -23.89 -1.8337442 -23.9 -1.8437603 -23.91 -1.8564512 -23.92 -1.8716181 -23.93 -1.8890226 -23.94 -1.9083899 -23.95 -1.9294193 -23.96 -1.9518605 -23.97 -1.9752028 -23.98 -1.9990507 -23.99 -2.0229974 -24 -2.0466072 -24.01 -2.0694852 -24.02 -2.091263 -24.03 -2.1115725 -24.04 -2.1300728 -24.05 -2.1464585 -24.06 -2.1604623 -24.07 -2.1716501 -24.08 -2.1799685 -24.09 -2.1853604 -24.1 -2.1877744 -24.11 -2.1872384 -24.12 -2.1838345 -24.13 -2.1776017 -24.14 -2.1686644 -24.15 -2.157184 -24.16 -2.1433479 -24.17 -2.1273658 -24.18 -2.1093727 -24.19 -2.0896618 -24.2 -2.0685659 -24.21 -2.0463339 -24.22 -2.0232035 -24.23 -1.9993744 -24.24 -1.9750698 -24.25 -1.9505059 -24.26 -1.9258936 -24.27 -1.9014345 -24.28 -1.8773293 -24.29 -1.8538165 -24.3 -1.8311506 -24.31 -1.8094646 -24.32 -1.7889354 -24.33 -1.7697576 -24.34 -1.7520697 -24.35 -1.7361369 -24.36 -1.7221597 -24.37 -1.7103262 -24.38 -1.7008108 -24.39 -1.6937739 -24.4 -1.6893768 -24.41 -1.6878727 -24.42 -1.6892305 -24.43 -1.6934291 -24.44 -1.7004583 -24.45 -1.7102263 -24.46 -1.7226378 -24.47 -1.7375483 -24.48 -1.7547549 -24.49 -1.7740138 -24.5 -1.7950384 -24.51 -1.8175109 -24.52 -1.8411608 -24.53 -1.8655607 -24.54 -1.8902776 -24.55 -1.9149355 -24.56 -1.9391575 -24.57 -1.9626228 -24.58 -1.9850621 -24.59 -2.0062112 -24.6 -2.0258528 -24.61 -2.0438138 -24.62 -2.0599716 -24.63 -2.0741742 -24.64 -2.0863821 -24.65 -2.0966842 -24.66 -2.1051778 -24.67 -2.111991 -24.68 -2.1172892 -24.69 -2.1211769 -24.7 -2.1238167 -24.71 -2.1253751 -24.72 -2.126015 -24.73 -2.1258925 -24.74 -2.1251304 -24.75 -2.1238399 -24.76 -2.1221487 -24.77 -2.1201512 -24.78 -2.1178985 -24.79 -2.1154384 -24.8 -2.1127535 -24.81 -2.1098386 -24.82 -2.1066762 -24.83 -2.1032389 -24.84 -2.0994959 -24.85 -2.0954075 -24.86 -2.09092 -24.87 -2.0860096 -24.88 -2.0806886 -24.89 -2.0749533 -24.9 -2.0688386 -24.91 -2.0623259 -24.92 -2.0554254 -24.93 -2.048159 -24.94 -2.0405514 -24.95 -2.0326288 -24.96 -2.0244177 -24.97 -2.0159446 -24.98 -2.0072406 -24.99 -1.9983372 -25 -1.9892534 -25.01 -1.9799829 -25.02 -1.970556 -25.03 -1.9610196 -25.04 -1.9514189 -25.05 -1.9418136 -25.06 -1.9322815 -25.07 -1.9229207 -25.08 -1.9138664 -25.09 -1.9052985 -25.1 -1.8973607 -25.11 -1.8902445 -25.12 -1.8841677 -25.13 -1.8793704 -25.14 -1.8760936 -25.15 -1.8745748 -25.16 -1.8750414 -25.17 -1.8777018 -25.18 -1.8827344 -25.19 -1.8902978 -25.2 -1.9005805 -25.21 -1.9135558 -25.22 -1.9291199 -25.23 -1.9471507 -25.24 -1.9674439 -25.25 -1.989738 -25.26 -2.0136962 -25.27 -2.0389168 -25.28 -2.0649413 -25.29 -2.0912639 -25.3 -2.1173438 -25.31 -2.1425704 -25.32 -2.1663043 -25.33 -2.1880287 -25.34 -2.2072257 -25.35 -2.2234734 -25.36 -2.2363294 -25.37 -2.2454483 -25.38 -2.2505662 -25.39 -2.2515024 -25.4 -2.2481483 -25.41 -2.240498 -25.42 -2.2285787 -25.43 -2.2123868 -25.44 -2.1924921 -25.45 -2.169233 -25.46 -2.1430221 -25.47 -2.1142366 -25.48 -2.0833194 -25.49 -2.0507404 -25.5 -2.0169768 -25.51 -1.9825044 -25.52 -1.9477877 -25.53 -1.9132765 -25.54 -1.8795567 -25.55 -1.8469432 -25.56 -1.8157857 -25.57 -1.7863504 -25.58 -1.7589642 -25.59 -1.733966 -25.6 -1.7116242 -25.61 -1.6921907 -25.62 -1.675897 -25.63 -1.6629583 -25.64 -1.653573 -25.65 -1.6481489 -25.66 -1.6467237 -25.67 -1.6493351 -25.68 -1.6560592 -25.69 -1.6669581 -25.7 -1.6820646 -25.71 -1.701342 -25.72 -1.7246958 -25.73 -1.7519705 -25.74 -1.7829459 -25.75 -1.8173345 -25.76 -1.8548821 -25.77 -1.8951375 -25.78 -1.9375167 -25.79 -1.9814453 -25.8 -2.0263209 -25.81 -2.0715753 -25.82 -2.1165989 -25.83 -2.1607797 -25.84 -2.2035266 -25.85 -2.2442802 -25.86 -2.2825249 -25.87 -2.3177239 -25.88 -2.3493603 -25.89 -2.3771968 -25.9 -2.4010816 -25.91 -2.4210073 -25.92 -2.4368388 -25.93 -2.4485909 -25.94 -2.4563509 -25.95 -2.4602638 -25.96 -2.4605186 -25.97 -2.4573352 -25.98 -2.4509149 -25.99 -2.4413426 -26 -2.4289524 -26.01 -2.4141209 -26.02 -2.397146 -26.03 -2.3781012 -26.04 -2.357074 -26.05 -2.3341625 -26.06 -2.3094367 -26.07 -2.282945 -26.08 -2.2547274 -26.09 -2.2248203 -26.1 -2.1932277 -26.11 -2.16003 -26.12 -2.1254035 -26.13 -2.089482 -26.14 -2.0524639 -26.15 -2.0146345 -26.16 -1.9763231 -26.17 -1.9379161 -26.18 -1.8998535 -26.19 -1.8626203 -26.2 -1.826735 -26.21 -1.7928119 -26.22 -1.7614841 -26.23 -1.7332179 -26.24 -1.7084527 -26.25 -1.6876056 -26.26 -1.6710763 -26.27 -1.6591486 -26.28 -1.6520156 -26.29 -1.6497652 -26.3 -1.6523836 -26.31 -1.6597496 -26.32 -1.6717041 -26.33 -1.6880459 -26.34 -1.7082653 -26.35 -1.731741 -26.36 -1.7578766 -26.37 -1.7861749 -26.38 -1.8160557 -26.39 -1.8469409 -26.4 -1.8782678 -26.41 -1.9095068 -26.42 -1.940173 -26.43 -1.9698248 -26.44 -1.9980456 -26.45 -2.0244747 -26.46 -2.0489168 -26.47 -2.0712062 -26.48 -2.0912177 -26.49 -2.1088658 -26.5 -2.1241004 -26.51 -2.1368972 -26.52 -2.1472495 -26.53 -2.1551583 -26.54 -2.160626 -26.55 -2.1636094 -26.56 -2.1639731 -26.57 -2.1618997 -26.58 -2.1574124 -26.59 -2.1504828 -26.6 -2.1410972 -26.61 -2.1292729 -26.62 -2.1150495 -26.63 -2.0985015 -26.64 -2.0797374 -26.65 -2.0589118 -26.66 -2.0362247 -26.67 -2.0118548 -26.68 -1.9862262 -26.69 -1.9597007 -26.7 -1.9326641 -26.71 -1.9055455 -26.72 -1.8787822 -26.73 -1.8528177 -26.74 -1.8280975 -26.75 -1.8050286 -26.76 -1.7839807 -26.77 -1.7652785 -26.78 -1.7493592 -26.79 -1.7363543 -26.8 -1.7262873 -26.81 -1.719166 -26.82 -1.7149962 -26.83 -1.7136873 -26.84 -1.7150933 -26.85 -1.7190225 -26.86 -1.7252532 -26.87 -1.7335459 -26.88 -1.7436576 -26.89 -1.7554239 -26.9 -1.7686283 -26.91 -1.7829985 -26.92 -1.7983303 -26.93 -1.8145815 -26.94 -1.8316931 -26.95 -1.8496332 -26.96 -1.8684019 -26.97 -1.8880128 -26.98 -1.9084826 -26.99 -1.9298198 -27 -1.9520192 -27.01 -1.9750364 -27.02 -1.9987248 -27.03 -2.0229236 -27.04 -2.0473872 -27.05 -2.0718052 -27.06 -2.0958065 -27.07 -2.1189623 -27.08 -2.1407994 -27.09 -2.1608127 -27.1 -2.1784873 -27.11 -2.1933093 -27.12 -2.2045857 -27.13 -2.21201 -27.14 -2.2153581 -27.15 -2.2144065 -27.16 -2.2090477 -27.17 -2.1993194 -27.18 -2.185399 -27.19 -2.1676007 -27.2 -2.1463751 -27.21 -2.1222949 -27.22 -2.0960405 -27.23 -2.0683496 -27.24 -2.0401241 -27.25 -2.0122916 -27.26 -1.9857148 -27.27 -1.9611817 -27.28 -1.9394303 -27.29 -1.921103 -27.3 -1.9067209 -27.31 -1.896671 -27.32 -1.8911892 -27.33 -1.8903544 -27.34 -1.8942009 -27.35 -1.9025293 -27.36 -1.9148463 -27.37 -1.9305932 -27.38 -1.9491868 -27.39 -1.9699857 -27.4 -1.9923148 -27.41 -2.0154915 -27.42 -2.0388576 -27.43 -2.0618012 -27.44 -2.0837731 -27.45 -2.1042815 -27.46 -2.1228933 -27.47 -2.13935 -27.48 -2.1535708 -27.49 -2.1654807 -27.5 -2.1750985 -27.51 -2.1825096 -27.52 -2.1878455 -27.53 -2.1912673 -27.54 -2.1929461 -27.55 -2.1930416 -27.56 -2.1916793 -27.57 -2.1889075 -27.58 -2.1847708 -27.59 -2.1793858 -27.6 -2.1726679 -27.61 -2.164508 -27.62 -2.1547806 -27.63 -2.1433455 -27.64 -2.1300621 -27.65 -2.1148108 -27.66 -2.0975094 -27.67 -2.0781335 -27.68 -2.0567013 -27.69 -2.033318 -27.7 -2.0082882 -27.71 -1.9819485 -27.72 -1.9547439 -27.73 -1.9271836 -27.74 -1.8998435 -27.75 -1.8733464 -27.76 -1.8483388 -27.77 -1.8254665 -27.78 -1.8053437 -27.79 -1.7885834 -27.8 -1.7758319 -27.81 -1.7673187 -27.82 -1.7632039 -27.83 -1.7635777 -27.84 -1.7683717 -27.85 -1.777373 -27.86 -1.7902313 -27.87 -1.8064722 -27.88 -1.8255161 -27.89 -1.8467072 -27.9 -1.8693411 -27.91 -1.8927082 -27.92 -1.916015 -27.93 -1.9385175 -27.94 -1.9596827 -27.95 -1.9790327 -27.96 -1.9962109 -27.97 -2.0109919 -27.98 -2.023288 -27.99 -2.033147 -28 -2.0407423 -28.01 -2.0463574 -28.02 -2.0503335 -28.03 -2.0531106 -28.04 -2.0552813 -28.05 -2.0573106 -28.06 -2.0596425 -28.07 -2.0626634 -28.08 -2.0666804 -28.09 -2.0718934 -28.1 -2.07839 -28.11 -2.0861345 -28.12 -2.0949694 -28.13 -2.1046252 -28.14 -2.1146923 -28.15 -2.1247343 -28.16 -2.1342139 -28.17 -2.1425887 -28.18 -2.1493354 -28.19 -2.1539686 -28.2 -2.1560694 -28.21 -2.1553061 -28.22 -2.1514556 -28.23 -2.1444169 -28.24 -2.1342152 -28.25 -2.1208552 -28.26 -2.1047713 -28.27 -2.08642 -28.28 -2.0663067 -28.29 -2.0449931 -28.3 -2.023078 -28.31 -2.0011686 -28.32 -1.9798525 -28.33 -1.9596713 -28.34 -1.9410964 -28.35 -1.9245107 -28.36 -1.9102905 -28.37 -1.8985884 -28.38 -1.8893902 -28.39 -1.8826049 -28.4 -1.8780662 -28.41 -1.8755348 -28.42 -1.8747148 -28.43 -1.8752816 -28.44 -1.8769055 -28.45 -1.8792756 -28.46 -1.8821248 -28.47 -1.8852808 -28.48 -1.8886217 -28.49 -1.8920234 -28.5 -1.8956196 -28.51 -1.8995724 -28.52 -1.9041218 -28.53 -1.9095694 -28.54 -1.9162572 -28.55 -1.9245425 -28.56 -1.9347703 -28.57 -1.9472465 -28.58 -1.9622323 -28.59 -1.9799149 -28.6 -2.0003416 -28.61 -2.0233075 -28.62 -2.0485375 -28.63 -2.0756273 -28.64 -2.1040379 -28.65 -2.1331113 -28.66 -2.1620903 -28.67 -2.1901451 -28.68 -2.2164052 -28.69 -2.239981 -28.7 -2.2598429 -28.71 -2.2752102 -28.72 -2.2855273 -28.73 -2.2902692 -28.74 -2.2890789 -28.75 -2.2817771 -28.76 -2.2683743 -28.77 -2.2490719 -28.78 -2.2242563 -28.79 -2.1944856 -28.8 -2.1604673 -28.81 -2.1229738 -28.82 -2.082965 -28.83 -2.0415799 -28.84 -1.9998323 -28.85 -1.9586995 -28.86 -1.9191002 -28.87 -1.8818662 -28.88 -1.8477163 -28.89 -1.8172357 -28.9 -1.7908659 -28.91 -1.7688965 -28.92 -1.7515535 -28.93 -1.7389388 -28.94 -1.7307756 -28.95 -1.7267329 -28.96 -1.7264732 -28.97 -1.7295973 -28.98 -1.7356763 -28.99 -1.7442749 -29 -1.7549671 -29.01 -1.7673616 -29.02 -1.7811136 -29.03 -1.7959522 -29.04 -1.8116977 -29.05 -1.8280615 -29.06 -1.8449737 -29.07 -1.8623753 -29.08 -1.8802356 -29.09 -1.8985373 -29.1 -1.9172615 -29.11 -1.9363752 -29.12 -1.9558122 -29.13 -1.9754656 -29.14 -1.9951748 -29.15 -2.0147022 -29.16 -2.0337729 -29.17 -2.0520783 -29.18 -2.0692547 -29.19 -2.0849277 -29.2 -2.0987189 -29.21 -2.1102664 -29.22 -2.1192432 -29.23 -2.1253763 -29.24 -2.1284664 -29.25 -2.1284019 -29.26 -2.1251482 -29.27 -2.1186356 -29.28 -2.1092896 -29.29 -2.0974435 -29.3 -2.083517 -29.31 -2.0680103 -29.32 -2.0514823 -29.33 -2.0345308 -29.34 -2.0177673 -29.35 -2.0017924 -29.36 -1.9871707 -29.37 -1.9744105 -29.38 -1.9640701 -29.39 -1.956428 -29.4 -1.9516277 -29.41 -1.9497565 -29.42 -1.9507783 -29.43 -1.9545343 -29.44 -1.9607752 -29.45 -1.9691667 -29.46 -1.9793086 -29.47 -1.9907568 -29.48 -2.0030453 -29.49 -2.0157106 -29.5 -2.028266 -29.51 -2.0403177 -29.52 -2.0515449 -29.53 -2.0617044 -29.54 -2.0706344 -29.55 -2.0782591 -29.56 -2.0845807 -29.57 -2.089679 -29.58 -2.0936899 -29.59 -2.0967987 -29.6 -2.099195 -29.61 -2.1011284 -29.62 -2.1028228 -29.63 -2.1044544 -29.64 -2.106148 -29.65 -2.1079688 -29.66 -2.1099121 -29.67 -2.1119042 -29.68 -2.1137995 -29.69 -2.11539 -29.7 -2.1164129 -29.71 -2.1165504 -29.72 -2.1154128 -29.73 -2.1126993 -29.74 -2.1081226 -29.75 -2.1014254 -29.76 -2.0924106 -29.77 -2.0809584 -29.78 -2.0670388 -29.79 -2.0507191 -29.8 -2.0321668 -29.81 -2.0116487 -29.82 -1.9895237 -29.83 -1.9662132 -29.84 -1.9422743 -29.85 -1.9183072 -29.86 -1.8948891 -29.87 -1.8725947 -29.88 -1.8519709 -29.89 -1.8335173 -29.9 -1.8176684 -29.91 -1.8047735 -29.92 -1.7950869 -29.93 -1.7887605 -29.94 -1.7859528 -29.95 -1.7865909 -29.96 -1.790411 -29.97 -1.7971294 -29.98 -1.8064205 -29.99 -1.8179087 -30 -1.8311883 -& -@target G1.S4 -@type xy -0 0 -0.01 0.0021703231 -0.02 0.0041906681 -0.03 0.0059309396 -0.04 0.0072792761 -0.05 0.0081490908 -0.06 0.0084844347 -0.07 0.0082637177 -0.08 0.0075010219 -0.09 0.0062450509 -0.1 0.004576226 -0.11 0.0026016297 -0.12 0.0004459111 -0.13 -0.0017326395 -0.14 -0.0037905392 -0.15 -0.0055950412 -0.16 -0.007029833 -0.17 -0.0080023596 -0.18 -0.0084496308 -0.19 -0.0083423003 -0.2 -0.0076862783 -0.21 -0.0065224904 -0.22 -0.004924273 -0.23 -0.0029836853 -0.24 -0.00084070196 -0.25 0.0013569609 -0.26 0.0034690147 -0.27 0.0053609863 -0.28 0.0069126086 -0.29 0.0080251245 -0.3 0.0086272988 -0.31 0.0086794683 -0.32 0.0081755039 -0.33 0.007142862 -0.34 0.005629473 -0.35 0.0037229086 -0.36 0.0015541834 -0.37 -0.00075677113 -0.38 -0.0030871122 -0.39 -0.0053194404 -0.4 -0.0073496939 -0.41 -0.0090939785 -0.42 -0.010493726 -0.43 -0.011519166 -0.44 -0.012170664 -0.45 -0.012473831 -0.46 -0.012474342 -0.47 -0.012271501 -0.48 -0.011953814 -0.49 -0.011611904 -0.5 -0.011329897 -0.51 -0.011176161 -0.52 -0.011195204 -0.53 -0.011401474 -0.54 -0.011773957 -0.55 -0.012254719 -0.56 -0.01274876 -0.57 -0.013108255 -0.58 -0.013171588 -0.59 -0.012762696 -0.6 -0.011700263 -0.61 -0.0098099772 -0.62 -0.0069385036 -0.63 -0.0029656121 -0.64 0.0021835005 -0.65 0.0085283592 -0.66 0.016025952 -0.67 0.024566277 -0.68 0.034006106 -0.69 0.044046578 -0.7 0.054363073 -0.71 0.064606385 -0.72 0.074400237 -0.73 0.083359524 -0.74 0.091108332 -0.75 0.097300083 -0.76 0.10163781 -0.77 0.10388876 -0.78 0.10390481 -0.79 0.10153858 -0.8 0.096852812 -0.81 0.090095588 -0.82 0.081526661 -0.83 0.071493486 -0.84 0.06041517 -0.85 0.048766201 -0.86 0.037052658 -0.87 0.025788648 -0.88 0.015470839 -0.89 0.006553865 -0.9 -0.00052566911 -0.91 -0.0053842327 -0.92 -0.0079416533 -0.93 -0.0081369787 -0.94 -0.006029923 -0.95 -0.0017987305 -0.96 0.0042676162 -0.97 0.011783297 -0.98 0.020284513 -0.99 0.029252847 -1 0.038141358 -1.01 0.046394642 -1.02 0.053384184 -1.03 0.058708097 -1.04 0.062000392 -1.05 0.062998398 -1.06 0.061556478 -1.07 0.057653544 -1.08 0.051393426 -1.09 0.042999832 -1.1 0.032803582 -1.11 0.021225023 -1.12 0.0087511922 -1.13 -0.0040788284 -1.14 -0.016667162 -1.15 -0.028498104 -1.16 -0.039111346 -1.17 -0.048123604 -1.18 -0.055249444 -1.19 -0.06031623 -1.2 -0.063272963 -1.21 -0.064192386 -1.22 -0.06326625 -1.23 -0.060793563 -1.24 -0.057128639 -1.25 -0.052802878 -1.26 -0.04834381 -1.27 -0.044254526 -1.28 -0.041012139 -1.29 -0.039039403 -1.3 -0.038679324 -1.31 -0.040173487 -1.32 -0.043647098 -1.33 -0.049099283 -1.34 -0.056401185 -1.35 -0.065343252 -1.36 -0.075525347 -1.37 -0.086414539 -1.38 -0.097481764 -1.39 -0.10816666 -1.4 -0.11790812 -1.41 -0.12617716 -1.42 -0.13250609 -1.43 -0.13651839 -1.44 -0.13794995 -1.45 -0.13666797 -1.46 -0.1326345 -1.47 -0.12592763 -1.48 -0.11702306 -1.49 -0.10636298 -1.5 -0.094492417 -1.51 -0.082034492 -1.52 -0.069656682 -1.53 -0.058038431 -1.54 -0.047837438 -1.55 -0.039654565 -1.56 -0.034003553 -1.57 -0.031290083 -1.58 -0.032014692 -1.59 -0.036039694 -1.6 -0.043289573 -1.61 -0.053534053 -1.62 -0.066399483 -1.63 -0.081386569 -1.64 -0.097895472 -1.65 -0.11525514 -1.66 -0.13275417 -1.67 -0.14968042 -1.68 -0.16534951 -1.69 -0.17899456 -1.7 -0.19015299 -1.71 -0.19847092 -1.72 -0.2037083 -1.73 -0.20577319 -1.74 -0.20472396 -1.75 -0.20076419 -1.76 -0.19423024 -1.77 -0.18556864 -1.78 -0.17531789 -1.79 -0.16407117 -1.8 -0.15246547 -1.81 -0.14118446 -1.82 -0.13081113 -1.83 -0.1218533 -1.84 -0.11472615 -1.85 -0.10973904 -1.86 -0.10707876 -1.87 -0.10681025 -1.88 -0.10887514 -1.89 -0.11310342 -1.9 -0.11922367 -1.91 -0.12692067 -1.92 -0.13576175 -1.93 -0.1452369 -1.94 -0.1549054 -1.95 -0.16435136 -1.96 -0.17320411 -1.97 -0.18116233 -1.98 -0.18800127 -1.99 -0.19358596 -2 -0.19787189 -2.01 -0.20090501 -2.02 -0.20279843 -2.03 -0.20372289 -2.04 -0.20400089 -2.05 -0.20391333 -2.06 -0.2037477 -2.07 -0.20377543 -2.08 -0.20423583 -2.09 -0.2053157 -2.1 -0.20714054 -2.11 -0.20975923 -2.12 -0.21314769 -2.13 -0.21720378 -2.14 -0.22177937 -2.15 -0.22659063 -2.16 -0.23136177 -2.17 -0.23579946 -2.18 -0.23961111 -2.19 -0.24252531 -2.2 -0.24431439 -2.21 -0.2448069 -2.22 -0.24390579 -2.23 -0.24159793 -2.24 -0.23795628 -2.25 -0.23309029 -2.26 -0.22731736 -2.27 -0.22098406 -2.28 -0.21446251 -2.29 -0.20815401 -2.3 -0.20246353 -2.31 -0.19777338 -2.32 -0.19441848 -2.33 -0.1926615 -2.34 -0.19267099 -2.35 -0.19450239 -2.36 -0.19814915 -2.37 -0.20336099 -2.38 -0.20971034 -2.39 -0.2167047 -2.4 -0.22373408 -2.41 -0.23009292 -2.42 -0.23500269 -2.43 -0.23763962 -2.44 -0.23716681 -2.45 -0.23276487 -2.46 -0.22366768 -2.47 -0.20904199 -2.48 -0.18812458 -2.49 -0.16079143 -2.5 -0.12680758 -2.51 -0.086116845 -2.52 -0.038850498 -2.53 0.014672099 -2.54 0.073946399 -2.55 0.13829507 -2.56 0.20688079 -2.57 0.27873165 -2.58 0.35277145 -2.59 0.4277875 -2.6 0.50241612 -2.61 0.57541033 -2.62 0.6455407 -2.63 0.71161863 -2.64 0.77253142 -2.65 0.82724734 -2.66 0.87487114 -2.67 0.91463669 -2.68 0.94590919 -2.69 0.96822896 -2.7 0.98064749 -2.71 0.98360984 -2.72 0.97724006 -2.73 0.96176433 -2.74 0.93754748 -2.75 0.90510755 -2.76 0.86507204 -2.77 0.81819247 -2.78 0.76532984 -2.79 0.70740567 -2.8 0.64541082 -2.81 0.58027705 -2.82 0.51323964 -2.83 0.44542078 -2.84 0.37784855 -2.85 0.3115043 -2.86 0.24730739 -2.87 0.18609399 -2.88 0.12859812 -2.89 0.075440708 -2.9 0.027113461 -2.91 -0.016027484 -2.92 -0.053571702 -2.93 -0.085444114 -2.94 -0.11196372 -2.95 -0.13336926 -2.96 -0.15002773 -2.97 -0.16241124 -2.98 -0.17108596 -2.99 -0.1766867 -3 -0.17989129 -3.01 -0.18140019 -3.02 -0.18190584 -3.03 -0.18207584 -3.04 -0.18257346 -3.05 -0.18392184 -3.06 -0.18653323 -3.07 -0.1907046 -3.08 -0.19661398 -3.09 -0.20431536 -3.1 -0.21374308 -3.11 -0.22471764 -3.12 -0.23696178 -3.13 -0.25011214 -3.14 -0.26374697 -3.15 -0.27736722 -3.16 -0.29046796 -3.17 -0.30259098 -3.18 -0.31331892 -3.19 -0.32229791 -3.2 -0.3292514 -3.21 -0.33399992 -3.22 -0.3364632 -3.23 -0.33667041 -3.24 -0.33475364 -3.25 -0.33094199 -3.26 -0.32547477 -3.27 -0.31885691 -3.28 -0.31154808 -3.29 -0.30401378 -3.3 -0.29671954 -3.31 -0.29011043 -3.32 -0.28458777 -3.33 -0.28049082 -3.34 -0.27808446 -3.35 -0.27754452 -3.36 -0.27895346 -3.37 -0.28238424 -3.38 -0.28767124 -3.39 -0.29455323 -3.4 -0.30274858 -3.41 -0.31191873 -3.42 -0.32168428 -3.43 -0.33163807 -3.44 -0.34136713 -3.45 -0.35046213 -3.46 -0.35853563 -3.47 -0.36522791 -3.48 -0.370153 -3.49 -0.37297891 -3.5 -0.37354365 -3.51 -0.37164293 -3.52 -0.36709799 -3.53 -0.35974537 -3.54 -0.34942676 -3.55 -0.33597944 -3.56 -0.31922465 -3.57 -0.29896173 -3.58 -0.27496232 -3.59 -0.24690535 -3.6 -0.21429323 -3.61 -0.17706903 -3.62 -0.1349358 -3.63 -0.087613343 -3.64 -0.034859497 -3.65 0.023502458 -3.66 0.087562997 -3.67 0.1572979 -3.68 0.2325489 -3.69 0.31299861 -3.7 0.39815889 -3.71 0.48759707 -3.72 0.5800691 -3.73 0.6744995 -3.74 0.76964933 -3.75 0.8641235 -3.76 0.95643064 -3.77 1.0449874 -3.78 1.1281813 -3.79 1.2044071 -3.8 1.272118 -3.81 1.3298619 -3.82 1.3756251 -3.83 1.408729 -3.84 1.4285534 -3.85 1.434573 -3.86 1.4265323 -3.87 1.4045117 -3.88 1.3688613 -3.89 1.3202452 -3.9 1.2595973 -3.91 1.1881142 -3.92 1.1071676 -3.93 1.0180636 -3.94 0.92273572 -3.95 0.82319053 -3.96 0.72118279 -3.97 0.61842425 -3.98 0.5165369 -3.99 0.41700849 -4 0.32116112 -4.01 0.23012502 -4.02 0.14482027 -4.03 0.065944624 -4.04 -0.0058306867 -4.05 -0.070081189 -4.06 -0.12711913 -4.07 -0.17709165 -4.08 -0.22029236 -4.09 -0.25713349 -4.1 -0.28811413 -4.11 -0.31379173 -4.12 -0.33475072 -4.13 -0.35157702 -4.14 -0.36483682 -4.15 -0.37502994 -4.16 -0.38252629 -4.17 -0.38792127 -4.18 -0.39155343 -4.19 -0.39369858 -4.2 -0.39457926 -4.21 -0.39436693 -4.22 -0.39319878 -4.23 -0.39118277 -4.24 -0.38841159 -4.25 -0.38497351 -4.26 -0.38095537 -4.27 -0.37642647 -4.28 -0.37153276 -4.29 -0.36639315 -4.3 -0.36113097 -4.31 -0.35586951 -4.32 -0.35072553 -4.33 -0.34579825 -4.34 -0.34116501 -4.35 -0.33686596 -4.36 -0.33290327 -4.37 -0.32922806 -4.38 -0.3257462 -4.39 -0.32228185 -4.4 -0.31862342 -4.41 -0.31452064 -4.42 -0.30968822 -4.43 -0.30382189 -4.44 -0.29660791 -4.45 -0.28773691 -4.46 -0.27692287 -4.47 -0.26391698 -4.48 -0.24851932 -4.49 -0.23049495 -4.5 -0.20978477 -4.51 -0.18651572 -4.52 -0.16080383 -4.53 -0.13284829 -4.54 -0.10292563 -4.55 -0.071382653 -4.56 -0.038628322 -4.57 -0.0051183946 -4.58 0.02865724 -4.59 0.062189881 -4.6 0.094938958 -4.61 0.12631944 -4.62 0.15590647 -4.63 0.18326881 -4.64 0.20802414 -4.65 0.22984484 -4.66 0.24846022 -4.67 0.26366015 -4.68 0.27529357 -4.69 0.28326492 -4.7 0.28753042 -4.71 0.28806962 -4.72 0.2846994 -4.73 0.27775977 -4.74 0.26736235 -4.75 0.25364069 -4.76 0.23675018 -4.77 0.21686449 -4.78 0.19417478 -4.79 0.16889265 -4.8 0.1412494 -4.81 0.11149821 -4.82 0.079917068 -4.83 0.046730059 -4.84 0.012381239 -4.85 -0.022754355 -4.86 -0.058294171 -4.87 -0.093837927 -4.88 -0.12897389 -4.89 -0.16328973 -4.9 -0.19637977 -4.91 -0.22786094 -4.92 -0.25737938 -4.93 -0.28462863 -4.94 -0.30922416 -4.95 -0.33103757 -4.96 -0.35004477 -4.97 -0.36624066 -4.98 -0.37970549 -4.99 -0.39060125 -5 -0.39916871 -5.01 -0.4057158 -5.02 -0.41060587 -5.03 -0.41423803 -5.04 -0.41703038 -5.05 -0.41940099 -5.06 -0.42177597 -5.07 -0.42450849 -5.08 -0.42786557 -5.09 -0.43202673 -5.1 -0.43707659 -5.11 -0.44299107 -5.12 -0.4496352 -5.13 -0.45676673 -5.14 -0.46404273 -5.15 -0.47103198 -5.16 -0.47720914 -5.17 -0.48191826 -5.18 -0.48463472 -5.19 -0.48479378 -5.2 -0.48187083 -5.21 -0.475404 -5.22 -0.46502483 -5.23 -0.45047502 -5.24 -0.43162688 -5.25 -0.40849355 -5.26 -0.3812392 -5.27 -0.35016735 -5.28 -0.31553412 -5.29 -0.27822382 -5.3 -0.23894933 -5.31 -0.19850813 -5.32 -0.15775246 -5.33 -0.11756081 -5.34 -0.0788102 -5.35 -0.042342059 -5.36 -0.0089377619 -5.37 0.020709457 -5.38 0.046014352 -5.39 0.066203574 -5.4 0.081170595 -5.41 0.090833257 -5.42 0.09518047 -5.43 0.094335543 -5.44 0.088543637 -5.45 0.078157169 -5.46 0.063615676 -5.47 0.045424655 -5.48 0.024134183 -5.49 0.00031564429 -5.5 -0.025521818 -5.51 -0.05274706 -5.52 -0.080794099 -5.53 -0.10920567 -5.54 -0.1375844 -5.55 -0.16559613 -5.56 -0.19297233 -5.57 -0.2195058 -5.58 -0.24504403 -5.59 -0.2694827 -5.6 -0.29275466 -5.61 -0.31478404 -5.62 -0.33551977 -5.63 -0.35499467 -5.64 -0.37317737 -5.65 -0.39001899 -5.66 -0.40544875 -5.67 -0.41936888 -5.68 -0.43165534 -5.69 -0.4421549 -5.7 -0.45069027 -5.71 -0.45706224 -5.72 -0.46102128 -5.73 -0.46219309 -5.74 -0.4604974 -5.75 -0.45570656 -5.76 -0.44760169 -5.77 -0.43597483 -5.78 -0.420637 -5.79 -0.40141747 -5.8 -0.37816886 -5.81 -0.35076712 -5.82 -0.3191152 -5.83 -0.28314234 -5.84 -0.24249101 -5.85 -0.19746183 -5.86 -0.14810367 -5.87 -0.094495335 -5.88 -0.036761676 -5.89 0.02491709 -5.9 0.090299158 -5.91 0.15907531 -5.92 0.23085759 -5.93 0.30517829 -5.94 0.38148071 -5.95 0.4591534 -5.96 0.53733756 -5.97 0.61517223 -5.98 0.69174461 -5.99 0.76607407 -6 0.8371486 -6.01 0.90390364 -6.02 0.9652885 -6.03 1.0202671 -6.04 1.067869 -6.05 1.1071822 -6.06 1.1370319 -6.07 1.1567541 -6.08 1.1662103 -6.09 1.1651304 -6.1 1.1534415 -6.11 1.1312823 -6.12 1.0989883 -6.13 1.0571214 -6.14 1.0064112 -6.15 0.94777707 -6.16 0.88226243 -6.17 0.81095442 -6.18 0.73509343 -6.19 0.65627448 -6.2 0.57579558 -6.21 0.49491685 -6.22 0.41482393 -6.23 0.3366011 -6.24 0.2612049 -6.25 0.18944743 -6.26 0.12198318 -6.27 0.059310126 -6.28 0.0018154247 -6.29 -0.049979597 -6.3 -0.096369788 -6.31 -0.13739615 -6.32 -0.17316836 -6.33 -0.20383307 -6.34 -0.22954788 -6.35 -0.25044923 -6.36 -0.26663417 -6.37 -0.27813334 -6.38 -0.28490516 -6.39 -0.28682339 -6.4 -0.28331965 -6.41 -0.27439028 -6.42 -0.25973248 -6.43 -0.23897705 -6.44 -0.21175553 -6.45 -0.1777352 -6.46 -0.13665338 -6.47 -0.088351012 -6.48 -0.032807522 -6.49 0.029832257 -6.5 0.099233637 -6.51 0.17513913 -6.52 0.2565257 -6.53 0.34224051 -6.54 0.43107746 -6.55 0.52165899 -6.56 0.61246087 -6.57 0.70185674 -6.58 0.78816037 -6.59 0.86966879 -6.6 0.94472716 -6.61 1.0117741 -6.62 1.069 -6.63 1.1150112 -6.64 1.1492461 -6.65 1.1709968 -6.66 1.1798619 -6.67 1.1757102 -6.68 1.1587388 -6.69 1.1293925 -6.7 1.0884085 -6.71 1.0367351 -6.72 0.97553269 -6.73 0.90598312 -6.74 0.82939249 -6.75 0.74770896 -6.76 0.66242318 -6.77 0.57499152 -6.78 0.48678643 -6.79 0.39906802 -6.8 0.31295337 -6.81 0.2293983 -6.82 0.14918646 -6.83 0.072922346 -6.84 0.0010552608 -6.85 -0.06581876 -6.86 -0.1279232 -6.87 -0.18528335 -6.88 -0.23802049 -6.89 -0.28632651 -6.9 -0.33043926 -6.91 -0.37062143 -6.92 -0.40713496 -6.93 -0.44022792 -6.94 -0.47012139 -6.95 -0.49699998 -6.96 -0.52083741 -6.97 -0.54189126 -6.98 -0.56027024 -6.99 -0.57602542 -7 -0.5891984 -7.01 -0.5998344 -7.02 -0.60799254 -7.03 -0.61375964 -7.04 -0.61725682 -7.05 -0.61864971 -7.06 -0.6181499 -7.07 -0.61595222 -7.08 -0.61242147 -7.09 -0.60794584 -7.1 -0.60289015 -7.11 -0.59763088 -7.12 -0.5925387 -7.13 -0.5879653 -7.14 -0.58422734 -7.15 -0.58159187 -7.16 -0.5802683 -7.17 -0.58039379 -7.18 -0.58208 -7.19 -0.58532326 -7.2 -0.58995358 -7.21 -0.59579729 -7.22 -0.60262456 -7.23 -0.61015666 -7.24 -0.6180835 -7.25 -0.62607601 -7.26 -0.63380512 -7.27 -0.64095343 -7.28 -0.64723274 -7.29 -0.65237308 -7.3 -0.65609936 -7.31 -0.65834375 -7.32 -0.65902596 -7.33 -0.65811829 -7.34 -0.65564407 -7.35 -0.65166386 -7.36 -0.64627253 -7.37 -0.63958025 -7.38 -0.63170667 -7.39 -0.62276125 -7.4 -0.61283956 -7.41 -0.60194015 -7.42 -0.59015861 -7.43 -0.57747814 -7.44 -0.56384038 -7.45 -0.54915121 -7.46 -0.53328148 -7.47 -0.51608306 -7.48 -0.49739471 -7.49 -0.4770581 -7.5 -0.45493241 -7.51 -0.43090819 -7.52 -0.40480594 -7.53 -0.37671176 -7.54 -0.3467373 -7.55 -0.31503869 -7.56 -0.28185525 -7.57 -0.24750366 -7.58 -0.21237792 -7.59 -0.17693989 -7.6 -0.14170689 -7.61 -0.10723928 -7.62 -0.074121514 -7.63 -0.043049886 -7.64 -0.014638828 -7.65 0.010643594 -7.66 0.032317786 -7.67 0.049975876 -7.68 0.063295436 -7.69 0.072050349 -7.7 0.076117817 -7.71 0.075484487 -7.72 0.070243096 -7.73 0.060593714 -7.74 0.046737428 -7.75 0.02902498 -7.76 0.008140627 -7.77 -0.015367376 -7.78 -0.040900211 -7.79 -0.067822579 -7.8 -0.095475975 -7.81 -0.12319292 -7.82 -0.15030646 -7.83 -0.17616574 -7.84 -0.20013889 -7.85 -0.22159696 -7.86 -0.23976653 -7.87 -0.25430758 -7.88 -0.26476045 -7.89 -0.2707209 -7.9 -0.2718409 -7.91 -0.26783443 -7.92 -0.2584826 -7.93 -0.24363509 -7.94 -0.22321895 -7.95 -0.19723856 -7.96 -0.16578583 -7.97 -0.12869005 -7.98 -0.086597679 -7.99 -0.039929713 -8 0.010824838 -8.01 0.065080216 -8.02 0.12215683 -8.03 0.1812871 -8.04 0.24162639 -8.05 0.3022641 -8.06 0.3622371 -8.07 0.42055309 -8.08 0.47600742 -8.09 0.52760777 -8.1 0.57446472 -8.11 0.61569611 -8.12 0.65050519 -8.13 0.67820828 -8.14 0.69825449 -8.15 0.71023814 -8.16 0.71391992 -8.17 0.70922832 -8.18 0.69627059 -8.19 0.67504308 -8.2 0.64606385 -8.21 0.61027413 -8.22 0.56845684 -8.23 0.52151379 -8.24 0.47044681 -8.25 0.41633211 -8.26 0.36029042 -8.27 0.30346509 -8.28 0.24699072 -8.29 0.19197126 -8.3 0.13953182 -8.31 0.090836905 -8.32 0.046601131 -8.33 0.007570265 -8.34 -0.02563214 -8.35 -0.052510072 -8.36 -0.072698856 -8.37 -0.085965079 -8.38 -0.092202797 -8.39 -0.091433024 -8.4 -0.083792202 -8.41 -0.069491491 -8.42 -0.048513306 -8.43 -0.02177853 -8.44 0.01016991 -8.45 0.04671532 -8.46 0.087174827 -8.47 0.13080821 -8.48 0.17682533 -8.49 0.22439587 -8.5 0.27265664 -8.51 0.32072042 -8.52 0.367689 -8.53 0.41247521 -8.54 0.45423779 -8.55 0.49214493 -8.56 0.52539185 -8.57 0.55323502 -8.58 0.57501195 -8.59 0.59016007 -8.6 0.59822992 -8.61 0.59890411 -8.62 0.59201117 -8.63 0.57753578 -8.64 0.55527729 -8.65 0.52577199 -8.66 0.48973419 -8.67 0.4478432 -8.68 0.40092424 -8.69 0.34993532 -8.7 0.29594466 -8.71 0.24010289 -8.72 0.18361612 -8.73 0.12771233 -8.74 0.073608575 -8.75 0.022613753 -8.76 -0.024040861 -8.77 -0.065529311 -8.78 -0.10103731 -8.79 -0.12991804 -8.8 -0.1517081 -8.81 -0.16613898 -8.82 -0.17314282 -8.83 -0.1728517 -8.84 -0.1655881 -8.85 -0.15185257 -8.86 -0.13221934 -8.87 -0.1073531 -8.88 -0.078505939 -8.89 -0.046663953 -8.9 -0.012849889 -8.91 0.021907093 -8.92 0.056602129 -8.93 0.090281647 -8.94 0.12206854 -8.95 0.15118276 -8.96 0.17695375 -8.97 0.1988321 -8.98 0.21606116 -8.99 0.22867376 -9 0.23653275 -9.01 0.23961549 -9.02 0.23800517 -9.03 0.23187471 -9.04 0.22147511 -9.05 0.207115 -9.06 0.18915192 -9.07 0.16796893 -9.08 0.14397024 -9.09 0.1174448 -9.1 0.088940563 -9.11 0.058888027 -9.12 0.027669887 -9.13 -0.0043478843 -9.14 -0.036814283 -9.15 -0.069392843 -9.16 -0.10175966 -9.17 -0.13360128 -9.18 -0.16461403 -9.19 -0.19450239 -9.2 -0.22290375 -9.21 -0.24953645 -9.22 -0.27418744 -9.23 -0.29661812 -9.24 -0.31661909 -9.25 -0.33401305 -9.26 -0.34866574 -9.27 -0.36049107 -9.28 -0.36946203 -9.29 -0.37561146 -9.3 -0.37904005 -9.31 -0.37985142 -9.32 -0.37826882 -9.33 -0.37472494 -9.34 -0.36958753 -9.35 -0.36326882 -9.36 -0.35621536 -9.37 -0.34888902 -9.38 -0.34175238 -9.39 -0.33525272 -9.4 -0.32979791 -9.41 -0.32574766 -9.42 -0.3234128 -9.43 -0.32310635 -9.44 -0.32481153 -9.45 -0.32851884 -9.46 -0.33411374 -9.47 -0.3413788 -9.48 -0.3499988 -9.49 -0.35957099 -9.5 -0.36962109 -9.51 -0.37961574 -9.52 -0.38898655 -9.53 -0.39715052 -9.54 -0.40336343 -9.55 -0.40717071 -9.56 -0.408101 -9.57 -0.40575082 -9.58 -0.39981226 -9.59 -0.39008393 -9.6 -0.37648047 -9.61 -0.35903908 -9.62 -0.33791956 -9.63 -0.31339991 -9.64 -0.28586975 -9.65 -0.25570996 -9.66 -0.22364215 -9.67 -0.19036313 -9.68 -0.15656096 -9.69 -0.12294193 -9.7 -0.090209412 -9.71 -0.059037896 -9.72 -0.030057279 -9.73 -0.0038300712 -9.74 0.019164657 -9.75 0.03854558 -9.76 0.053878882 -9.77 0.065023084 -9.78 0.072109304 -9.79 0.075251731 -9.8 0.074684798 -9.81 0.070756838 -9.82 0.06392395 -9.83 0.054736796 -9.84 0.043828998 -9.85 0.031902546 -9.86 0.019711889 -9.87 0.0080799207 -9.88 -0.0020718213 -9.89 -0.0099700608 -9.9 -0.014831453 -9.91 -0.015912857 -9.92 -0.012528262 -9.93 -0.0040658918 -9.94 0.0099969117 -9.95 0.030078657 -9.96 0.056481227 -9.97 0.089379079 -9.98 0.12885787 -9.99 0.1751778 -10 0.22760994 -10.01 0.2857209 -10.02 0.34892988 -10.03 0.41651525 -10.04 0.48762407 -10.05 0.56128299 -10.06 0.63641432 -10.07 0.71185649 -10.08 0.78638004 -10.09 0.85873144 -10.1 0.92729599 -10.11 0.99093545 -10.12 1.0484678 -10.13 1.0987475 -10.14 1.1407603 -10.15 1.173587 -10.16 1.1964759 -10.17 1.208836 -10.18 1.2102661 -10.19 1.20054 -10.2 1.1796503 -10.21 1.147225 -10.22 1.1039936 -10.23 1.0508173 -10.24 0.98844737 -10.25 0.91777415 -10.26 0.83982639 -10.27 0.75571314 -10.28 0.6666179 -10.29 0.57375623 -10.3 0.47835833 -10.31 0.38163466 -10.32 0.28478404 -10.33 0.18901256 -10.34 0.095308887 -10.35 0.004550601 -10.36 -0.082505112 -10.37 -0.16522985 -10.38 -0.24312799 -10.39 -0.31583327 -10.4 -0.38310781 -10.41 -0.44483123 -10.42 -0.50098967 -10.43 -0.55156487 -10.44 -0.59653934 -10.45 -0.63646029 -10.46 -0.67161011 -10.47 -0.70230036 -10.48 -0.72886009 -10.49 -0.75161985 -10.5 -0.77090431 -10.51 -0.78702942 -10.52 -0.80027244 -10.53 -0.81089604 -10.54 -0.81913371 -10.55 -0.82502923 -10.56 -0.82894012 -10.57 -0.83099771 -10.58 -0.83132605 -10.59 -0.83003458 -10.6 -0.82721086 -10.61 -0.82294245 -10.62 -0.81730231 -10.63 -0.81038529 -10.64 -0.80225707 -10.65 -0.79301979 -10.66 -0.78270994 -10.67 -0.77148073 -10.68 -0.75946351 -10.69 -0.74676772 -10.7 -0.7335174 -10.71 -0.71984025 -10.72 -0.70585664 -10.73 -0.69168989 -10.74 -0.67745966 -10.75 -0.66327686 -10.76 -0.64924583 -10.77 -0.63547454 -10.78 -0.62204255 -10.79 -0.6090031 -10.8 -0.59639851 -10.81 -0.58424923 -10.82 -0.57255451 -10.83 -0.56128882 -10.84 -0.55040036 -10.85 -0.53980959 -10.86 -0.52940853 -10.87 -0.51905854 -10.88 -0.50858306 -10.89 -0.49775662 -10.9 -0.48635668 -10.91 -0.47412932 -10.92 -0.46080166 -10.93 -0.44608622 -10.94 -0.42968749 -10.95 -0.41131143 -10.96 -0.39067494 -10.97 -0.36751242 -10.98 -0.3415904 -10.99 -0.31267173 -11 -0.28046601 -11.01 -0.24509365 -11.02 -0.20656631 -11.03 -0.16497739 -11.04 -0.12050784 -11.05 -0.073429083 -11.06 -0.024101276 -11.07 0.027027363 -11.08 0.079428937 -11.09 0.13250317 -11.1 0.18559199 -11.11 0.23788916 -11.12 0.28866939 -11.13 0.33720378 -11.14 0.38278385 -11.15 0.42474489 -11.16 0.46248567 -11.17 0.49548962 -11.18 0.52334155 -11.19 0.54574743 -11.2 0.56254016 -11.21 0.57369275 -11.22 0.5790155 -11.23 0.57902717 -11.24 0.57424144 -11.25 0.56519898 -11.26 0.55254478 -11.27 0.53701214 -11.28 0.51939637 -11.29 0.50053218 -11.3 0.48126669 -11.31 0.46243022 -11.32 0.44481153 -11.33 0.42923876 -11.34 0.41637589 -11.35 0.40664683 -11.36 0.4004113 -11.37 0.39788892 -11.38 0.39914974 -11.39 0.40411496 -11.4 0.4125635 -11.41 0.42413637 -11.42 0.43835492 -11.43 0.45463691 -11.44 0.47233294 -11.45 0.49066011 -11.46 0.50878955 -11.47 0.52595586 -11.48 0.54141481 -11.49 0.55446958 -11.5 0.56448977 -11.51 0.57093105 -11.52 0.57335201 -11.53 0.57142429 -11.54 0.56493923 -11.55 0.55376766 -11.56 0.53770238 -11.57 0.5172286 -11.58 0.49263015 -11.59 0.46428424 -11.6 0.43264838 -11.61 0.39823988 -11.62 0.36162056 -11.63 0.32337705 -11.64 0.28410255 -11.65 0.24438152 -11.66 0.20476993 -11.67 0.16586099 -11.68 0.12810342 -11.69 0.091883213 -11.7 0.057520968 -11.71 0.025266297 -11.72 -0.0047039938 -11.73 -0.032282179 -11.74 -0.057425896 -11.75 -0.080151284 -11.76 -0.10052511 -11.77 -0.118656 -11.78 -0.13458046 -11.79 -0.14854145 -11.8 -0.16075859 -11.81 -0.171407 -11.82 -0.18065085 -11.83 -0.18864044 -11.84 -0.19550492 -11.85 -0.20134717 -11.86 -0.20624308 -11.87 -0.21023715 -11.88 -0.21334907 -11.89 -0.21553362 -11.9 -0.21675359 -11.91 -0.21698926 -11.92 -0.21617352 -11.93 -0.21423486 -11.94 -0.21110031 -11.95 -0.20670348 -11.96 -0.20098892 -11.97 -0.19391941 -11.98 -0.18547963 -11.99 -0.17568052 -12 -0.16453377 -12.01 -0.15207657 -12.02 -0.13848551 -12.03 -0.1238963 -12.04 -0.108468 -12.05 -0.092385208 -12.06 -0.075849308 -12.07 -0.059073648 -12.08 -0.042278872 -12.09 -0.02568358 -12.1 -0.0094987115 -12.11 0.0060757081 -12.12 0.020803435 -12.13 0.034589967 -12.14 0.047331285 -12.15 0.05896267 -12.16 0.069461722 -12.17 0.0788496 -12.18 0.087192339 -12.19 0.094596756 -12.2 0.10120951 -12.21 0.10721301 -12.22 0.11281448 -12.23 0.11825032 -12.24 0.12379123 -12.25 0.12968237 -12.26 0.13615868 -12.27 0.14343687 -12.28 0.15170445 -12.29 0.16111101 -12.3 0.17176161 -12.31 0.18370951 -12.32 0.19695253 -12.33 0.21142719 -12.34 0.22705761 -12.35 0.24361393 -12.36 0.26082183 -12.37 0.27838653 -12.38 0.29597531 -12.39 0.31322552 -12.4 0.32975559 -12.41 0.34517805 -12.42 0.35911058 -12.43 0.37119201 -12.44 0.38109181 -12.45 0.38843421 -12.46 0.39293902 -12.47 0.39455737 -12.48 0.39320023 -12.49 0.38885229 -12.5 0.3815741 -12.51 0.37149627 -12.52 0.35882019 -12.53 0.34380705 -12.54 0.32677135 -12.55 0.30806914 -12.56 0.28807035 -12.57 0.26717338 -12.58 0.24584883 -12.59 0.22447978 -12.6 0.2034179 -12.61 0.18297185 -12.62 0.16339844 -12.63 0.14489032 -12.64 0.12757224 -12.65 0.11149675 -12.66 0.096641945 -12.67 0.082915171 -12.68 0.070209022 -12.69 0.058207854 -12.7 0.046629003 -12.71 0.035151938 -12.72 0.023431099 -12.73 0.011108669 -12.74 -0.0021709944 -12.75 -0.016748371 -12.76 -0.032935647 -12.77 -0.05100511 -12.78 -0.071179082 -12.79 -0.093764233 -12.8 -0.11875961 -12.81 -0.14614676 -12.82 -0.1758768 -12.83 -0.20782932 -12.84 -0.24182412 -12.85 -0.27761968 -12.86 -0.31492559 -12.87 -0.35340696 -12.88 -0.39269605 -12.89 -0.43240176 -12.9 -0.47210164 -12.91 -0.51134549 -12.92 -0.54973274 -12.93 -0.58687448 -12.94 -0.62240299 -12.95 -0.65597751 -12.96 -0.68728503 -12.97 -0.71604829 -12.98 -0.74201775 -12.99 -0.76498691 -13 -0.78478212 -13.01 -0.80114801 -13.02 -0.81390947 -13.03 -0.82313945 -13.04 -0.82878689 -13.05 -0.83082989 -13.06 -0.82926116 -13.07 -0.82411718 -13.08 -0.81543442 -13.09 -0.80330776 -13.1 -0.78783203 -13.11 -0.76915317 -13.12 -0.74739521 -13.13 -0.7226304 -13.14 -0.69530016 -13.15 -0.66567593 -13.16 -0.63406779 -13.17 -0.60081504 -13.18 -0.56628761 -13.19 -0.53087803 -13.2 -0.49500003 -13.21 -0.45907459 -13.22 -0.42352858 -13.23 -0.38878371 -13.24 -0.35535876 -13.25 -0.32357478 -13.26 -0.29376668 -13.27 -0.26622849 -13.28 -0.24120246 -13.29 -0.21887247 -13.3 -0.19936109 -13.31 -0.18272596 -13.32 -0.16896124 -13.33 -0.1579969 -13.34 -0.14970669 -13.35 -0.14403737 -13.36 -0.14065401 -13.37 -0.13924361 -13.38 -0.13952088 -13.39 -0.14118811 -13.4 -0.14394762 -13.41 -0.14750828 -13.42 -0.15159574 -13.43 -0.15595827 -13.44 -0.16037334 -13.45 -0.1646454 -13.46 -0.16859569 -13.47 -0.17207682 -13.48 -0.17499247 -13.49 -0.17725071 -13.5 -0.17876618 -13.51 -0.17945132 -13.52 -0.17920908 -13.53 -0.17792053 -13.54 -0.17544047 -13.55 -0.17158941 -13.56 -0.16614993 -13.57 -0.15881337 -13.58 -0.14919156 -13.59 -0.13704739 -13.6 -0.12202331 -13.61 -0.10375086 -13.62 -0.081864485 -13.63 -0.056017101 -13.64 -0.02590167 -13.65 0.0087330971 -13.66 0.048062898 -13.67 0.092169963 -13.68 0.14106261 -13.69 0.1948497 -13.7 0.25290229 -13.71 0.31477748 -13.72 0.37989811 -13.73 0.44755645 -13.74 0.51692872 -13.75 0.58708754 -13.76 0.65702601 -13.77 0.72567812 -13.78 0.79195451 -13.79 0.85475489 -13.8 0.91264476 -13.81 0.96484342 -13.82 1.0104826 -13.83 1.048818 -13.84 1.0792223 -13.85 1.1012502 -13.86 1.1146245 -13.87 1.1192432 -13.88 1.1151864 -13.89 1.1027314 -13.9 1.0822941 -13.91 1.0541006 -13.92 1.0191289 -13.93 0.978371 -13.94 0.93270265 -13.95 0.88304314 -13.96 0.83029725 -13.97 0.77537702 -13.98 0.71912884 -13.99 0.66232322 -14 0.60565039 -14.01 0.54969188 -14.02 0.49497084 -14.03 0.4418718 -14.04 0.3905582 -14.05 0.34113437 -14.06 0.29360834 -14.07 0.24790715 -14.08 0.20388925 -14.09 0.16136931 -14.1 0.1201328 -14.11 0.079955739 -14.12 0.040623239 -14.13 0.001953444 -14.14 -0.036198611 -14.15 -0.073966829 -14.16 -0.11139387 -14.17 -0.14846922 -14.18 -0.18512575 -14.19 -0.221246 -14.2 -0.25666944 -14.21 -0.29120052 -14.22 -0.32461671 -14.23 -0.3566816 -14.24 -0.38714785 -14.25 -0.41563311 -14.26 -0.44203378 -14.27 -0.46614775 -14.28 -0.48779918 -14.29 -0.50683484 -14.3 -0.52312776 -14.31 -0.53657363 -14.32 -0.54708851 -14.33 -0.55459946 -14.34 -0.5590459 -14.35 -0.56036728 -14.36 -0.55830312 -14.37 -0.55293587 -14.38 -0.54423707 -14.39 -0.53212499 -14.4 -0.51651647 -14.41 -0.49732978 -14.42 -0.47448903 -14.43 -0.44793586 -14.44 -0.4176389 -14.45 -0.38360324 -14.46 -0.3458807 -14.47 -0.30442603 -14.48 -0.25950045 -14.49 -0.21147316 -14.5 -0.16068563 -14.51 -0.1075574 -14.52 -0.052579388 -14.53 0.0036907897 -14.54 0.06064114 -14.55 0.11761918 -14.56 0.17394981 -14.57 0.22895249 -14.58 0.28188663 -14.59 0.33202915 -14.6 0.37892477 -14.61 0.42210212 -14.62 0.46119056 -14.63 0.49592813 -14.64 0.5261711 -14.65 0.5518954 -14.66 0.57319733 -14.67 0.59028629 -14.68 0.60346875 -14.69 0.61309493 -14.7 0.61951871 -14.71 0.62345222 -14.72 0.6254062 -14.73 0.62587244 -14.74 0.62530332 -14.75 0.62408409 -14.76 0.62251754 -14.77 0.62080507 -14.78 0.61903569 -14.79 0.61718167 -14.8 0.6150978 -14.81 0.61246525 -14.82 0.60892648 -14.83 0.60402839 -14.84 0.59726022 -14.85 0.58807912 -14.86 0.57593786 -14.87 0.56030964 -14.88 0.540718 -14.89 0.5167609 -14.9 0.4881319 -14.91 0.45464055 -14.92 0.41594467 -14.93 0.37233609 -14.94 0.32414244 -14.95 0.27173729 -14.96 0.21561315 -14.97 0.15637198 -14.98 0.094700365 -14.99 0.031348893 -15 -0.03289289 -15.01 -0.0972242 -15.02 -0.16085856 -15.03 -0.22295847 -15.04 -0.2827892 -15.05 -0.33981518 -15.06 -0.39354754 -15.07 -0.4436047 -15.08 -0.48971741 -15.09 -0.53172442 -15.1 -0.56957246 -15.11 -0.60330021 -15.12 -0.63302878 -15.13 -0.65894789 -15.14 -0.68120784 -15.15 -0.70001949 -15.16 -0.71583815 -15.17 -0.72893306 -15.18 -0.73955155 -15.19 -0.74789867 -15.2 -0.75414441 -15.21 -0.75841282 -15.22 -0.76077687 -15.23 -0.76126573 -15.24 -0.75987941 -15.25 -0.75654494 -15.26 -0.75108721 -15.27 -0.74357918 -15.28 -0.73396249 -15.29 -0.72218459 -15.3 -0.7082506 -15.31 -0.69218678 -15.32 -0.67406901 -15.33 -0.65402061 -15.34 -0.63221304 -15.35 -0.60886082 -15.36 -0.58422004 -15.37 -0.55852712 -15.38 -0.53217315 -15.39 -0.50547624 -15.4 -0.4787392 -15.41 -0.45224514 -15.42 -0.42624285 -15.43 -0.40093737 -15.44 -0.37648265 -15.45 -0.35297502 -15.46 -0.33044802 -15.47 -0.30887831 -15.48 -0.28822212 -15.49 -0.26830359 -15.5 -0.24892209 -15.51 -0.229866 -15.52 -0.21091061 -15.53 -0.19182825 -15.54 -0.17240005 -15.55 -0.15243264 -15.56 -0.13176404 -15.57 -0.11027824 -15.58 -0.087907389 -15.59 -0.06460748 -15.6 -0.040429738 -15.61 -0.015515494 -15.62 0.0099809325 -15.63 0.035864361 -15.64 0.061908457 -15.65 0.087865799 -15.66 0.11347992 -15.67 0.13849573 -15.68 0.16267099 -15.69 0.18578681 -15.7 0.20762502 -15.71 0.22797696 -15.72 0.24681196 -15.73 0.26407021 -15.74 0.27973564 -15.75 0.29382724 -15.76 0.30639898 -15.77 0.31752604 -15.78 0.32730399 -15.79 0.33583205 -15.8 0.34321093 -15.81 0.34952599 -15.82 0.3547911 -15.83 0.35912591 -15.84 0.36255012 -15.85 0.36505572 -15.86 0.36660694 -15.87 0.36714468 -15.88 0.36659088 -15.89 0.36485433 -15.9 0.36184018 -15.91 0.35745794 -15.92 0.35162737 -15.93 0.34419522 -15.94 0.33521405 -15.95 0.32471813 -15.96 0.31276366 -15.97 0.29945205 -15.98 0.28492559 -15.99 0.26937033 -16 0.25300736 -16.01 0.23608621 -16.02 0.2188805 -16.03 0.20167333 -16.04 0.18477698 -16.05 0.16848405 -16.06 0.15303532 -16.07 0.13864457 -16.08 0.12548546 -16.09 0.11368276 -16.1 0.10330796 -16.11 0.094374215 -16.12 0.086840651 -16.13 0.080609499 -16.14 0.075533373 -16.15 0.071444673 -16.16 0.0680978 -16.17 0.065193383 -16.18 0.062458535 -16.19 0.059616941 -16.2 0.056398923 -16.21 0.052551516 -16.22 0.047847288 -16.23 0.042091791 -16.24 0.035129611 -16.25 0.026848601 -16.26 0.017159817 -16.27 0.0059845173 -16.28 -0.0065601035 -16.29 -0.020397681 -16.3 -0.035413661 -16.31 -0.051460262 -16.32 -0.068361712 -16.33 -0.085919841 -16.34 -0.10392086 -16.35 -0.12213786 -16.36 -0.14033953 -16.37 -0.15829021 -16.38 -0.17570241 -16.39 -0.19236746 -16.4 -0.20805989 -16.41 -0.22256155 -16.42 -0.23565864 -16.43 -0.24714614 -16.44 -0.25682266 -16.45 -0.26449267 -16.46 -0.26996791 -16.47 -0.27306743 -16.48 -0.27361758 -16.49 -0.27128492 -16.5 -0.26603003 -16.51 -0.25776974 -16.52 -0.24640117 -16.53 -0.23184917 -16.54 -0.2140758 -16.55 -0.19308032 -16.56 -0.16891017 -16.57 -0.14166238 -16.58 -0.11149091 -16.59 -0.078608089 -16.6 -0.04319669 -16.61 -0.0056606434 -16.62 0.033514035 -16.63 0.073861031 -16.64 0.11486259 -16.65 0.15595244 -16.66 0.19653007 -16.67 0.23596582 -16.68 0.27361175 -16.69 0.30881921 -16.7 0.34094539 -16.71 0.36925189 -16.72 0.39301418 -16.73 0.41188785 -16.74 0.42541324 -16.75 0.43320437 -16.76 0.43495916 -16.77 0.43046894 -16.78 0.41962499 -16.79 0.40242146 -16.8 0.3789576 -16.81 0.3494399 -16.82 0.31411642 -16.83 0.27315499 -16.84 0.22743921 -16.85 0.17756811 -16.86 0.12421005 -16.87 0.068090868 -16.88 0.009981954 -16.89 -0.049316716 -16.9 -0.10899042 -16.91 -0.16822649 -16.92 -0.22622727 -16.93 -0.28222956 -16.94 -0.33527242 -16.95 -0.38484144 -16.96 -0.43037482 -16.97 -0.47138002 -16.98 -0.50745503 -16.99 -0.53829048 -17 -0.5636733 -17.01 -0.58348529 -17.02 -0.59770385 -17.03 -0.60639243 -17.04 -0.60969772 -17.05 -0.60756716 -17.06 -0.60048816 -17.07 -0.58890289 -17.08 -0.57318054 -17.09 -0.55371075 -17.1 -0.53088898 -17.11 -0.50510777 -17.12 -0.47674144 -17.13 -0.44613948 -17.14 -0.41361856 -17.15 -0.37945522 -17.16 -0.34383551 -17.17 -0.3069703 -17.18 -0.26905075 -17.19 -0.23018194 -17.2 -0.19043755 -17.21 -0.14986794 -17.22 -0.10850959 -17.23 -0.066396127 -17.24 -0.023564477 -17.25 0.019932242 -17.26 0.064017636 -17.27 0.10859204 -17.28 0.15350302 -17.29 0.19853294 -17.3 0.24344758 -17.31 0.28797112 -17.32 0.33179275 -17.33 0.37457026 -17.34 0.41593956 -17.35 0.45552488 -17.36 0.49294973 -17.37 0.52784564 -17.38 0.55984486 -17.39 0.58841695 -17.4 0.61350135 -17.41 0.63489375 -17.42 0.65244896 -17.43 0.66608453 -17.44 0.67578659 -17.45 0.68160258 -17.46 0.68364485 -17.47 0.68207684 -17.48 0.67711235 -17.49 0.66900091 -17.5 0.65784832 -17.51 0.64413103 -17.52 0.62816936 -17.53 0.61024495 -17.54 0.59061974 -17.55 0.56952649 -17.56 0.54716147 -17.57 0.52368448 -17.58 0.49921153 -17.59 0.47382068 -17.6 0.4475528 -17.61 0.42037287 -17.62 0.39228453 -17.63 0.36328049 -17.64 0.333325 -17.65 0.30239179 -17.66 0.27047136 -17.67 0.2375776 -17.68 0.20375864 -17.69 0.16910279 -17.7 0.133737 -17.71 0.097835641 -17.72 0.061610763 -17.73 0.025345828 -17.74 -0.010654247 -17.75 -0.046073599 -17.76 -0.080582503 -17.77 -0.11384693 -17.78 -0.14554189 -17.79 -0.17535948 -17.8 -0.20302171 -17.81 -0.22828778 -17.82 -0.25095998 -17.83 -0.27084348 -17.84 -0.28773253 -17.85 -0.30175919 -17.86 -0.31295264 -17.87 -0.32138877 -17.88 -0.32718797 -17.89 -0.33050493 -17.9 -0.33152205 -17.91 -0.33043707 -17.92 -0.32745575 -17.93 -0.32278166 -17.94 -0.31660377 -17.95 -0.30901403 -17.96 -0.30026342 -17.97 -0.29046723 -17.98 -0.27970864 -17.99 -0.26804019 -18 -0.25548669 -18.01 -0.24204885 -18.02 -0.22770772 -18.03 -0.21243191 -18.04 -0.19618641 -18.05 -0.17893692 -18.06 -0.16059588 -18.07 -0.14120854 -18.08 -0.12080918 -18.09 -0.099445963 -18.1 -0.077197689 -18.11 -0.054172199 -18.12 -0.030509219 -18.13 -0.006374869 -18.14 0.018041226 -18.15 0.042531255 -18.16 0.066875502 -18.17 0.090821583 -18.18 0.11413076 -18.19 0.13660157 -18.2 0.15803776 -18.21 0.17826054 -18.22 0.19711743 -18.23 0.21448075 -18.24 0.23024906 -18.25 0.2443465 -18.26 0.25672124 -18.27 0.2673412 -18.28 0.2761385 -18.29 0.28307741 -18.3 0.28824109 -18.31 0.29162663 -18.32 0.29322893 -18.33 0.2930312 -18.34 0.29100279 -18.35 0.28710139 -18.36 0.28126862 -18.37 0.27343444 -18.38 0.26351641 -18.39 0.25139777 -18.4 0.23687203 -18.41 0.21999393 -18.42 0.20069341 -18.43 0.17892306 -18.44 0.15465951 -18.45 0.12791153 -18.46 0.098725805 -18.47 0.067189832 -18.48 0.033432242 -18.49 -0.0023736089 -18.5 -0.04001209 -18.51 -0.079321679 -18.52 -0.11987597 -18.53 -0.16134377 -18.54 -0.20337704 -18.55 -0.24561243 -18.56 -0.28768218 -18.57 -0.32921784 -18.58 -0.36986187 -18.59 -0.40927573 -18.6 -0.44714201 -18.61 -0.48317397 -18.62 -0.51698855 -18.63 -0.54843689 -18.64 -0.57738912 -18.65 -0.60371683 -18.66 -0.62732808 -18.67 -0.64816814 -18.68 -0.66621513 -18.69 -0.68147781 -18.7 -0.69398899 -18.71 -0.70380415 -18.72 -0.71099405 -18.73 -0.71554411 -18.74 -0.7175747 -18.75 -0.71727336 -18.76 -0.71474223 -18.77 -0.71008419 -18.78 -0.7033992 -18.79 -0.69478504 -18.8 -0.68433509 -18.81 -0.67213692 -18.82 -0.6582737 -18.83 -0.64282278 -18.84 -0.62581918 -18.85 -0.607295 -18.86 -0.58738305 -18.87 -0.56613 -18.88 -0.54357674 -18.89 -0.51975389 -18.9 -0.4946819 -18.91 -0.46837389 -18.92 -0.44083352 -18.93 -0.41205567 -18.94 -0.38202867 -18.95 -0.35072626 -18.96 -0.31805503 -18.97 -0.28408212 -18.98 -0.24880024 -18.99 -0.21221083 -19 -0.17433068 -19.01 -0.13519847 -19.02 -0.094877668 -19.03 -0.053462475 -19.04 -0.01108014 -19.05 0.032105168 -19.06 0.075890898 -19.07 0.12004087 -19.08 0.16422951 -19.09 0.2081314 -19.1 0.25139704 -19.11 0.2936492 -19.12 0.33449535 -19.13 0.37353417 -19.14 0.41036436 -19.15 0.44459483 -19.16 0.47585492 -19.17 0.50380317 -19.18 0.52793319 -19.19 0.54807791 -19.2 0.56413151 -19.21 0.57596413 -19.22 0.58350718 -19.23 0.58675847 -19.24 0.58577856 -19.25 0.58068857 -19.26 0.57166581 -19.27 0.55893864 -19.28 0.5427807 -19.29 0.52339627 -19.3 0.501148 -19.31 0.47650941 -19.32 0.44984023 -19.33 0.42149725 -19.34 0.39182778 -19.35 0.36116453 -19.36 0.32981834 -19.37 0.29807668 -19.38 0.26620076 -19.39 0.23442554 -19.4 0.20296844 -19.41 0.17204471 -19.42 0.14179444 -19.43 0.11235627 -19.44 0.083856411 -19.45 0.056411254 -19.46 0.030128565 -19.47 0.0051137249 -19.48 -0.018529503 -19.49 -0.040696787 -19.5 -0.061282789 -19.51 -0.080173173 -19.52 -0.097131535 -19.53 -0.11217386 -19.54 -0.12519798 -19.55 -0.13610906 -19.56 -0.14482027 -19.57 -0.15125572 -19.58 -0.15535413 -19.59 -0.15706952 -19.6 -0.15637198 -19.61 -0.1532513 -19.62 -0.14771185 -19.63 -0.13962521 -19.64 -0.12915849 -19.65 -0.11639265 -19.66 -0.10139119 -19.67 -0.08422634 -19.68 -0.064976387 -19.69 -0.043723273 -19.7 -0.020553022 -19.71 0.0044458899 -19.72 0.031182096 -19.73 0.05955981 -19.74 0.089545437 -19.75 0.12098429 -19.76 0.15370732 -19.77 0.1875686 -19.78 0.22239956 -19.79 0.25800395 -19.8 0.29415558 -19.81 0.33059395 -19.82 0.36702137 -19.83 0.40310295 -19.84 0.43846656 -19.85 0.4726569 -19.86 0.50517198 -19.87 0.53560101 -19.88 0.56346754 -19.89 0.58828926 -19.9 0.60959557 -19.91 0.62693188 -19.92 0.63987794 -19.93 0.64805797 -19.94 0.6511553 -19.95 0.64891895 -19.96 0.64109426 -19.97 0.62734997 -19.98 0.60804945 -19.99 0.58331966 -20 0.55338825 -20.01 0.51857771 -20.02 0.47929957 -20.03 0.43604998 -20.04 0.38939661 -20.05 0.3399684 -20.06 0.28844101 -20.07 0.23552146 -20.08 0.18193575 -20.09 0.12850108 -20.1 0.075920084 -20.11 0.024858134 -20.12 -0.024065377 -20.13 -0.070290231 -20.14 -0.1133245 -20.15 -0.15275368 -20.16 -0.18824133 -20.17 -0.21953717 -20.18 -0.24647559 -20.19 -0.26870855 -20.2 -0.28643012 -20.21 -0.29979645 -20.22 -0.30895565 -20.23 -0.31411569 -20.24 -0.3155312 -20.25 -0.31349841 -20.26 -0.30834713 -20.27 -0.30042905 -20.28 -0.29011189 -20.29 -0.2777729 -20.3 -0.26373603 -20.31 -0.24842812 -20.32 -0.23226434 -20.33 -0.21559418 -20.34 -0.19874819 -20.35 -0.18203717 -20.36 -0.16575081 -20.37 -0.15015396 -20.38 -0.13548595 -20.39 -0.1219591 -20.4 -0.10975874 -20.41 -0.099082601 -20.42 -0.090099966 -20.43 -0.082823966 -20.44 -0.077310054 -20.45 -0.073579389 -20.46 -0.071620152 -20.47 -0.071386155 -20.48 -0.072798744 -20.49 -0.075747158 -20.5 -0.080089264 -20.51 -0.08565571 -20.52 -0.092258979 -20.53 -0.099707175 -20.54 -0.10769677 -20.55 -0.1159804 -20.56 -0.12430271 -20.57 -0.13240904 -20.58 -0.14005133 -20.59 -0.14699169 -20.6 -0.15301051 -20.61 -0.15791153 -20.62 -0.16152691 -20.63 -0.16371876 -20.64 -0.16427547 -20.65 -0.163235 -20.66 -0.16059151 -20.67 -0.15636979 -20.68 -0.15063772 -20.69 -0.14349889 -20.7 -0.13509486 -20.71 -0.12559856 -20.72 -0.11521209 -20.73 -0.10416165 -20.74 -0.092693847 -20.75 -0.081073552 -20.76 -0.069597873 -20.77 -0.058539112 -20.78 -0.048163589 -20.79 -0.038727918 -20.8 -0.030474561 -20.81 -0.023627227 -20.82 -0.018386493 -20.83 -0.014926526 -20.84 -0.01339143 -20.85 -0.013892913 -20.86 -0.016590768 -20.87 -0.021523593 -20.88 -0.028608062 -20.89 -0.037802074 -20.9 -0.04902537 -20.91 -0.062160622 -20.92 -0.077053949 -20.93 -0.093516884 -20.94 -0.1113282 -20.95 -0.13023617 -20.96 -0.14996207 -20.97 -0.17020747 -20.98 -0.19062507 -20.99 -0.21084859 -21 -0.23052779 -21.01 -0.24930734 -21.02 -0.26683117 -21.03 -0.28275126 -21.04 -0.2967283 -21.05 -0.30844053 -21.06 -0.31758733 -21.07 -0.32389436 -21.08 -0.32710042 -21.09 -0.32677864 -21.1 -0.32298742 -21.11 -0.31561511 -21.12 -0.30459604 -21.13 -0.28991416 -21.14 -0.27160523 -21.15 -0.24975534 -21.16 -0.22450385 -21.17 -0.19603829 -21.18 -0.16459871 -21.19 -0.13047038 -21.2 -0.09385179 -21.21 -0.055278629 -21.22 -0.015188322 -21.23 0.025975145 -21.24 0.067742172 -21.25 0.10962375 -21.26 0.15111709 -21.27 0.19171297 -21.28 0.23090355 -21.29 0.26818466 -21.3 0.30306816 -21.31 0.33492219 -21.32 0.36333668 -21.33 0.38799058 -21.34 0.40852566 -21.35 0.42463326 -21.36 0.43605728 -21.37 0.44259707 -21.38 0.4441118 -21.39 0.44052561 -21.4 0.43182462 -21.41 0.41806136 -21.42 0.39919133 -21.43 0.37537797 -21.44 0.3470795 -21.45 0.31460163 -21.46 0.27829897 -21.47 0.23857283 -21.48 0.19586172 -21.49 0.1506348 -21.5 0.10338604 -21.51 0.054624504 -21.52 0.0048693455 -21.53 -0.045358695 -21.54 -0.095499324 -21.55 -0.14503114 -21.56 -0.19347506 -21.57 -0.24037797 -21.58 -0.28531449 -21.59 -0.32789281 -21.6 -0.36775539 -21.61 -0.40458194 -21.62 -0.43808787 -21.63 -0.46802804 -21.64 -0.4941872 -21.65 -0.51609619 -21.66 -0.53390605 -21.67 -0.54751973 -21.68 -0.5568701 -21.69 -0.56192215 -21.7 -0.56266785 -21.71 -0.55912835 -21.72 -0.5513489 -21.73 -0.53940099 -21.74 -0.52338314 -21.75 -0.503415 -21.76 -0.47942215 -21.77 -0.45176868 -21.78 -0.42071069 -21.79 -0.38647147 -21.8 -0.3492998 -21.81 -0.30946786 -21.82 -0.26726896 -21.83 -0.2230183 -21.84 -0.17705152 -21.85 -0.12971885 -21.86 -0.081387299 -21.87 -0.032424095 -21.88 0.016737427 -21.89 0.065688373 -21.9 0.11403809 -21.91 0.16139922 -21.92 0.207393 -21.93 0.25165095 -21.94 0.29382213 -21.95 0.33357089 -21.96 0.37058568 -21.97 0.40457902 -21.98 0.43518681 -21.99 0.46209605 -22 0.48526659 -22.01 0.50453646 -22.02 0.5197787 -22.03 0.53090065 -22.04 0.53784758 -22.05 0.5405998 -22.06 0.53917699 -22.07 0.53363754 -22.08 0.52407922 -22.09 0.51058958 -22.1 0.49317884 -22.11 0.47231397 -22.12 0.44825545 -22.13 0.42130243 -22.14 0.39178911 -22.15 0.36008247 -22.16 0.32658018 -22.17 0.29170397 -22.18 0.25589747 -22.19 0.21961889 -22.2 0.18333448 -22.21 0.14758197 -22.22 0.11282105 -22.23 0.079496794 -22.24 0.048031742 -22.25 0.018816617 -22.26 -0.0077953599 -22.27 -0.031496718 -22.28 -0.052031061 -22.29 -0.069198102 -22.3 -0.082857529 -22.31 -0.092930251 -22.32 -0.099199344 -22.33 -0.1018567 -22.34 -0.10108766 -22.35 -0.097063679 -22.36 -0.090004383 -22.37 -0.080170984 -22.38 -0.067860812 -22.39 -0.05339688 -22.4 -0.037120515 -22.41 -0.019382529 -22.42 -0.00053484364 -22.43 0.019094101 -22.44 0.039136518 -22.45 0.059259124 -22.46 0.079179399 -22.47 0.098643356 -22.48 0.11742801 -22.49 0.13533856 -22.5 0.15221374 -22.51 0.16791639 -22.52 0.18233852 -22.53 0.19539037 -22.54 0.2069647 -22.55 0.21696081 -22.56 0.22540496 -22.57 0.23225485 -22.58 0.23746888 -22.59 0.241004 -22.6 0.24281425 -22.61 0.24284854 -22.62 0.24105508 -22.63 0.23737622 -22.64 0.23175651 -22.65 0.22412517 -22.66 0.21431147 -22.67 0.20241683 -22.68 0.18842082 -22.69 0.17232562 -22.7 0.15415532 -22.71 0.133961 -22.72 0.11182436 -22.73 0.087858503 -22.74 0.062207246 -22.75 0.035048402 -22.76 0.0065898583 -22.77 -0.022985943 -22.78 -0.053331139 -22.79 -0.084151916 -22.8 -0.11514715 -22.81 -0.14600886 -22.82 -0.17642549 -22.83 -0.20608985 -22.84 -0.23470499 -22.85 -0.26199218 -22.86 -0.28769386 -22.87 -0.31158091 -22.88 -0.33334324 -22.89 -0.35286703 -22.9 -0.37008369 -22.91 -0.38491952 -22.92 -0.39733804 -22.93 -0.40734291 -22.94 -0.41497351 -22.95 -0.42030355 -22.96 -0.42343591 -22.97 -0.42449681 -22.98 -0.42363291 -22.99 -0.4209471 -23 -0.41661448 -23.01 -0.41087073 -23.02 -0.40387418 -23.03 -0.39576931 -23.04 -0.3866816 -23.05 -0.37671322 -23.06 -0.36593931 -23.07 -0.35440658 -23.08 -0.34212741 -23.09 -0.32908432 -23.1 -0.31521088 -23.11 -0.30038746 -23.12 -0.28455347 -23.13 -0.26758344 -23.14 -0.24933871 -23.15 -0.22967556 -23.16 -0.2084539 -23.17 -0.18554384 -23.18 -0.16083448 -23.19 -0.1342441 -23.2 -0.105726 -23.21 -0.075272161 -23.22 -0.042809395 -23.23 -0.0085898681 -23.24 0.027213203 -23.25 0.064367354 -23.26 0.10258124 -23.27 0.14150623 -23.28 0.18074498 -23.29 0.2198553 -23.3 0.25835929 -23.31 0.29575641 -23.32 0.33153227 -23.33 0.36500464 -23.34 0.39574742 -23.35 0.42332136 -23.36 0.44730326 -23.37 0.46732394 -23.38 0.48307985 -23.39 0.49434262 -23.4 0.50096194 -23.41 0.5028736 -23.42 0.5000995 -23.43 0.49274762 -23.44 0.48081504 -23.45 0.46468336 -23.46 0.44482613 -23.47 0.42164756 -23.48 0.39559857 -23.49 0.36716292 -23.5 0.33684188 -23.51 0.30514838 -23.52 0.27258587 -23.53 0.23964541 -23.54 0.20678958 -23.55 0.17447515 -23.56 0.14313553 -23.57 0.11307715 -23.58 0.084583865 -23.59 0.057888635 -23.6 0.033179129 -23.61 0.010597335 -23.62 -0.0097545243 -23.63 -0.027809613 -23.64 -0.043530866 -23.65 -0.05690566 -23.66 -0.067905758 -23.67 -0.076449805 -23.68 -0.08271379 -23.69 -0.086741419 -23.7 -0.088581579 -23.71 -0.08829337 -23.72 -0.08594173 -23.73 -0.081605462 -23.74 -0.0753765 -23.75 -0.067365093 -23.76 -0.057702503 -23.77 -0.046544948 -23.78 -0.033993994 -23.79 -0.020377907 -23.8 -0.0059471377 -23.81 0.0090199927 -23.82 0.024218748 -23.83 0.039321994 -23.84 0.053986213 -23.85 0.067858039 -23.86 0.080582503 -23.87 0.091812438 -23.88 0.10121754 -23.89 0.10835126 -23.9 0.11301732 -23.91 0.11503625 -23.92 0.11424458 -23.93 0.11053508 -23.94 0.10386249 -23.95 0.094242879 -23.96 0.08175212 -23.97 0.066527025 -23.98 0.048756496 -23.99 0.028677743 -24 0.0064948953 -24.01 -0.017430952 -24.02 -0.042700314 -24.03 -0.068969578 -24.04 -0.095894061 -24.05 -0.12313674 -24.06 -0.15037431 -24.07 -0.17730471 -24.08 -0.20365066 -24.09 -0.22916335 -24.1 -0.25362245 -24.11 -0.27679956 -24.12 -0.29848528 -24.13 -0.31860737 -24.14 -0.33704983 -24.15 -0.35371487 -24.16 -0.36851349 -24.17 -0.38136616 -24.18 -0.39219698 -24.19 -0.40093445 -24.2 -0.40750562 -24.21 -0.41183969 -24.22 -0.41384402 -24.23 -0.41332087 -24.24 -0.41036946 -24.25 -0.40495187 -24.26 -0.39705056 -24.27 -0.38666993 -24.28 -0.37384718 -24.29 -0.35865164 -24.3 -0.34118909 -24.31 -0.3216062 -24.32 -0.30008903 -24.33 -0.27686158 -24.34 -0.25210479 -24.35 -0.22622727 -24.36 -0.19955955 -24.37 -0.17243945 -24.38 -0.14521063 -24.39 -0.11821749 -24.4 -0.091789819 -24.41 -0.066238524 -24.42 -0.041844296 -24.43 -0.018850838 -24.44 0.0025411715 -24.45 0.022078341 -24.46 0.039711258 -24.47 0.055435502 -24.48 0.069256108 -24.49 0.081222399 -24.5 0.091422079 -24.51 0.099974225 -24.52 0.10702258 -24.53 0.11272401 -24.54 0.11724269 -24.55 0.12074278 -24.56 0.12334907 -24.57 0.12521039 -24.58 0.12647048 -24.59 0.12721545 -24.6 0.12750438 -24.61 0.1273694 -24.62 0.12681852 -24.63 0.12583934 -24.64 0.12440121 -24.65 0.12246182 -24.66 0.11997447 -24.67 0.1168764 -24.68 0.11310342 -24.69 0.10865771 -24.7 0.10352686 -24.71 0.09771452 -24.72 0.091245505 -24.73 0.084162131 -24.74 0.076526417 -24.75 0.068415851 -24.76 0.059920107 -24.77 0.051137832 -24.78 0.042171833 -24.79 0.033127981 -24.8 0.024116379 -24.81 0.015227358 -24.82 0.0065411328 -24.83 -0.001873176 -24.84 -0.0099577299 -24.85 -0.017664511 -24.86 -0.024953572 -24.87 -0.031789086 -24.88 -0.038136251 -24.89 -0.043956613 -24.9 -0.049162908 -24.91 -0.053722739 -24.92 -0.057566425 -24.93 -0.060601594 -24.94 -0.062718653 -24.95 -0.063792396 -24.96 -0.063684773 -24.97 -0.062250003 -24.98 -0.059340625 -24.99 -0.054815306 -25 -0.048547673 -25.01 -0.040341232 -25.02 -0.03016833 -25.03 -0.018062094 -25.04 -0.0040595148 -25.05 0.011743385 -25.06 0.029187398 -25.07 0.048048086 -25.08 0.068036583 -25.09 0.08880339 -25.1 0.10994334 -25.11 0.13100813 -25.12 0.15147681 -25.13 0.17078316 -25.14 0.1884449 -25.15 0.20396805 -25.16 0.21688857 -25.17 0.22678983 -25.18 0.23331356 -25.19 0.23617668 -25.2 0.2351778 -25.21 0.23020674 -25.22 0.22124746 -25.23 0.20831672 -25.24 0.19145613 -25.25 0.1711706 -25.26 0.14781327 -25.27 0.12180441 -25.28 0.093613927 -25.29 0.063751025 -25.3 0.032746962 -25.31 0.001140899 -25.32 -0.0305341 -25.33 -0.061764134 -25.34 -0.092063435 -25.35 -0.12085588 -25.36 -0.14782567 -25.37 -0.17263207 -25.38 -0.19498542 -25.39 -0.21464784 -25.4 -0.23142452 -25.41 -0.24516589 -25.42 -0.25575519 -25.43 -0.26310927 -25.44 -0.26716827 -25.45 -0.26789062 -25.46 -0.26504428 -25.47 -0.25876789 -25.48 -0.24910742 -25.49 -0.2360687 -25.5 -0.21966851 -25.51 -0.19994042 -25.52 -0.17693697 -25.53 -0.15073768 -25.54 -0.12145346 -25.55 -0.08923242 -25.56 -0.054266906 -25.57 -0.01669715 -25.58 0.023118593 -25.59 0.064751949 -25.6 0.10780183 -25.61 0.1518212 -25.62 0.19632358 -25.63 0.24079168 -25.64 0.28468554 -25.65 0.32745575 -25.66 0.368558 -25.67 0.40746111 -25.68 0.4435726 -25.69 0.4763343 -25.7 0.50547916 -25.71 0.53067446 -25.72 0.55165681 -25.73 0.56823575 -25.74 0.58029748 -25.75 0.5878004 -25.76 0.5907737 -25.77 0.58931076 -25.78 0.58356117 -25.79 0.57367159 -25.8 0.55970258 -25.81 0.54217291 -25.82 0.52135765 -25.83 0.49753627 -25.84 0.47098456 -25.85 0.44196957 -25.86 0.41074304 -25.87 0.3775421 -25.88 0.34258709 -25.89 0.30608597 -25.9 0.26823574 -25.91 0.22916117 -25.92 0.18915046 -25.93 0.14841376 -25.94 0.10717288 -25.95 0.065669986 -25.96 0.024173948 -25.97 -0.017020017 -25.98 -0.05758846 -25.99 -0.097181881 -26 -0.13542904 -26.01 -0.17194256 -26.02 -0.20618617 -26.03 -0.23781473 -26.04 -0.26649554 -26.05 -0.29188347 -26.06 -0.3136728 -26.07 -0.33160815 -26.08 -0.34549399 -26.09 -0.35520553 -26.1 -0.36069172 -26.11 -0.36197881 -26.12 -0.35917333 -26.13 -0.3523125 -26.14 -0.34170276 -26.15 -0.32781547 -26.16 -0.31103733 -26.17 -0.29179737 -26.18 -0.27055527 -26.19 -0.24778603 -26.2 -0.22397194 -26.21 -0.19958509 -26.22 -0.17508003 -26.23 -0.15088288 -26.24 -0.1274088 -26.25 -0.10506421 -26.26 -0.084104489 -26.27 -0.064778362 -26.28 -0.047287871 -26.29 -0.031793829 -26.3 -0.018418378 -26.31 -0.007250353 -26.32 0.0016494383 -26.33 0.0082430688 -26.34 0.012510532 -26.35 0.014427523 -26.36 0.013860444 -26.37 0.010983535 -26.38 0.0058219674 -26.39 -0.0015887539 -26.4 -0.01120002 -26.41 -0.022947053 -26.42 -0.036744894 -26.43 -0.052484242 -26.44 -0.070027925 -26.45 -0.089207612 -26.46 -0.10982149 -26.47 -0.13169618 -26.48 -0.15446761 -26.49 -0.17782057 -26.5 -0.20142525 -26.51 -0.22492997 -26.52 -0.24797574 -26.53 -0.27019848 -26.54 -0.29124211 -26.55 -0.31076736 -26.56 -0.32846266 -26.57 -0.34404929 -26.58 -0.35716171 -26.59 -0.36766784 -26.6 -0.37550128 -26.61 -0.38059273 -26.62 -0.38292832 -26.63 -0.38254234 -26.64 -0.37951359 -26.65 -0.37396101 -26.66 -0.36603125 -26.67 -0.35589286 -26.68 -0.34372606 -26.69 -0.32965563 -26.7 -0.31386834 -26.71 -0.29660061 -26.72 -0.2779969 -26.73 -0.25818491 -26.74 -0.23726896 -26.75 -0.21533881 -26.76 -0.19246888 -26.77 -0.16872703 -26.78 -0.14418329 -26.79 -0.11891284 -26.8 -0.093001756 -26.81 -0.066563069 -26.82 -0.039791446 -26.83 -0.012884401 -26.84 0.013919108 -26.85 0.040338897 -26.86 0.066056843 -26.87 0.090722351 -26.88 0.11396294 -26.89 0.13539183 -26.9 0.15462667 -26.91 0.17129172 -26.92 0.18483025 -26.93 0.19515907 -26.94 0.20207536 -26.95 0.20545506 -26.96 0.20526609 -26.97 0.20157555 -26.98 0.1945542 -26.99 0.18447053 -27 0.17169375 -27.01 0.15667697 -27.02 0.13995063 -27.03 0.12206927 -27.04 0.10376691 -27.05 0.08569657 -27.06 0.068490567 -27.07 0.052744579 -27.08 0.039000805 -27.09 0.027727601 -27.1 0.019302924 -27.11 0.014002433 -27.12 0.011990807 -27.13 0.013318174 -27.14 0.018065523 -27.15 0.025974853 -27.16 0.036663539 -27.17 0.049762601 -27.18 0.064838339 -27.19 0.081412107 -27.2 0.098978992 -27.21 0.11702963 -27.22 0.13506713 -27.23 0.15262453 -27.24 0.16928082 -27.25 0.18462303 -27.26 0.19830602 -27.27 0.21017002 -27.28 0.22006544 -27.29 0.22790764 -27.3 0.2336689 -27.31 0.23736965 -27.32 0.23906753 -27.33 0.23884718 -27.34 0.23680418 -27.35 0.23303849 -27.36 0.22762089 -27.37 0.22056232 -27.38 0.21201529 -27.39 0.2020148 -27.4 0.19057473 -27.41 0.17769288 -27.42 0.16336123 -27.43 0.1475703 -27.44 0.130323 -27.45 0.11164195 -27.46 0.09158333 -27.47 0.070242878 -27.48 0.047696179 -27.49 0.024246037 -27.5 0.00016031351 -27.51 -0.024240783 -27.52 -0.048588314 -27.53 -0.072473323 -27.54 -0.095458464 -27.55 -0.11709384 -27.56 -0.13692918 -27.57 -0.15453693 -27.58 -0.16952452 -27.59 -0.1813659 -27.6 -0.18990054 -27.61 -0.19501095 -27.62 -0.19662128 -27.63 -0.19475339 -27.64 -0.18952696 -27.65 -0.18115576 -27.66 -0.16993969 -27.67 -0.15625524 -27.68 -0.14053508 -27.69 -0.12325567 -27.7 -0.10489202 -27.71 -0.086000102 -27.72 -0.067088412 -27.73 -0.048588241 -27.74 -0.030874114 -27.75 -0.014249563 -27.76 0.0010614773 -27.77 0.014919448 -27.78 0.027269896 -27.79 0.038139096 -27.8 0.047626425 -27.81 0.05586643 -27.82 0.063064942 -27.83 0.069521625 -27.84 0.075483757 -27.85 0.081188836 -27.86 0.086845758 -27.87 0.092622342 -27.88 0.098630222 -27.89 0.10492047 -27.9 0.11147486 -27.91 0.11820581 -27.92 0.12496231 -27.93 0.13150429 -27.94 0.13756908 -27.95 0.14286702 -27.96 0.14709676 -27.97 0.14996061 -27.98 0.15118349 -27.99 0.15053046 -28 0.14781838 -28.01 0.14292977 -28.02 0.13582086 -28.03 0.12652374 -28.04 0.11502311 -28.05 0.1016597 -28.06 0.086718071 -28.07 0.070522477 -28.08 0.053440002 -28.09 0.035863705 -28.1 0.018196129 -28.11 0.00083277074 -28.12 -0.015853756 -28.13 -0.031527947 -28.14 -0.045903082 -28.15 -0.058659576 -28.16 -0.069672443 -28.17 -0.078888272 -28.18 -0.086279555 -28.19 -0.091878106 -28.2 -0.095759077 -28.21 -0.098037752 -28.22 -0.098849845 -28.23 -0.098343472 -28.24 -0.096664564 -28.25 -0.093944455 -28.26 -0.090256839 -28.27 -0.085680518 -28.28 -0.08028043 -28.29 -0.07404782 -28.3 -0.066939565 -28.31 -0.058882847 -28.32 -0.049784199 -28.33 -0.03954147 -28.34 -0.028056524 -28.35 -0.015249028 -28.36 -0.0010709335 -28.37 0.014508659 -28.38 0.031468189 -28.39 0.049599015 -28.4 0.068694429 -28.41 0.088473592 -28.42 0.10858547 -28.43 0.12861271 -28.44 0.14808542 -28.45 0.16649286 -28.46 0.18330164 -28.47 0.19797331 -28.48 0.2099701 -28.49 0.21856894 -28.5 0.22354656 -28.51 0.22456952 -28.52 0.22139703 -28.53 0.2138963 -28.54 0.20204544 -28.55 0.18594368 -28.56 0.16580262 -28.57 0.14194767 -28.58 0.1148013 -28.59 0.084875722 -28.6 0.05265206 -28.61 0.018933141 -28.62 -0.015592033 -28.63 -0.050253651 -28.64 -0.084397806 -28.65 -0.11740686 -28.66 -0.14871292 -28.67 -0.17781619 -28.68 -0.20429201 -28.69 -0.22780038 -28.7 -0.24808738 -28.71 -0.2648159 -28.72 -0.27797866 -28.73 -0.28767416 -28.74 -0.29397389 -28.75 -0.29700556 -28.76 -0.29693989 -28.77 -0.29397754 -28.78 -0.28834178 -28.79 -0.28026463 -28.8 -0.26997958 -28.81 -0.2577172 -28.82 -0.24364604 -28.83 -0.22797987 -28.84 -0.21098722 -28.85 -0.19285559 -28.86 -0.17376302 -28.87 -0.15388828 -28.88 -0.1334123 -28.89 -0.11252262 -28.9 -0.091418431 -28.91 -0.070311464 -28.92 -0.049428571 -28.93 -0.02902228 -28.94 -0.0093971452 -28.95 0.0092175071 -28.96 0.026564332 -28.97 0.042395323 -28.98 0.056480716 -28.99 0.068618327 -29 0.078643111 -29.01 0.086434239 -29.02 0.091924803 -29.03 0.095106046 -29.04 0.096031234 -29.05 0.09466899 -29.06 0.09137903 -29.07 0.086406513 -29.08 0.080044756 -29.09 0.072626767 -29.1 0.064511386 -29.11 0.056072335 -29.12 0.047683337 -29.13 0.03970491 -29.14 0.032470938 -29.15 0.026276633 -29.16 0.021456977 -29.17 0.018150526 -29.18 0.016450093 -29.19 0.016402885 -29.2 0.01799161 -29.21 0.021137831 -29.22 0.02570846 -29.23 0.031524007 -29.24 0.038368934 -29.25 0.046003116 -29.26 0.05417322 -29.27 0.062626061 -29.28 0.071091817 -29.29 0.079342839 -29.3 0.08718869 -29.31 0.094474176 -29.32 0.10108109 -29.33 0.10693064 -29.34 0.11197831 -29.35 0.11621535 -29.36 0.11965561 -29.37 0.12233632 -29.38 0.1242852 -29.39 0.12554456 -29.4 0.12619103 -29.41 0.12625232 -29.42 0.12573792 -29.43 0.12463324 -29.44 0.12289669 -29.45 0.1204626 -29.46 0.1172405 -29.47 0.11312239 -29.48 0.10798643 -29.49 0.10169107 -29.5 0.094039308 -29.51 0.085000491 -29.52 0.074494361 -29.53 0.062475098 -29.54 0.048936207 -29.55 0.033918768 -29.56 0.017513621 -29.57 -0.0001365629 -29.58 -0.018838726 -29.59 -0.038352517 -29.6 -0.058396102 -29.61 -0.078644571 -29.62 -0.098718509 -29.63 -0.11826346 -29.64 -0.13692626 -29.65 -0.15436546 -29.66 -0.17026584 -29.67 -0.1843443 -29.68 -0.19635934 -29.69 -0.20612196 -29.7 -0.21349573 -29.71 -0.21840112 -29.72 -0.22067907 -29.73 -0.2204609 -29.74 -0.21788891 -29.75 -0.21309808 -29.76 -0.20626059 -29.77 -0.19757346 -29.78 -0.18725193 -29.79 -0.17551927 -29.8 -0.16260021 -29.81 -0.14871219 -29.82 -0.13405804 -29.83 -0.11880777 -29.84 -0.10314233 -29.85 -0.087221524 -29.86 -0.071162811 -29.87 -0.05506696 -29.88 -0.039019775 -29.89 -0.023098235 -29.9 -0.0073753774 -29.91 0.0080737187 -29.92 0.023166749 -29.93 0.037809517 -29.94 0.051875793 -29.95 0.06520389 -29.96 0.077673416 -29.97 0.089114948 -29.98 0.099346732 -29.99 0.10817468 -30 0.11540107 -& -@target G1.S5 -@type xy -0 -2 -0.01 -2.0038004 -0.02 -2.0073373 -0.03 -2.0103823 -0.04 -2.0127391 -0.05 -2.0142556 -0.06 -2.014834 -0.07 -2.0144368 -0.08 -2.0130892 -0.09 -2.0108773 -0.1 -2.007943 -0.11 -2.004475 -0.12 -2.0006931 -0.13 -1.9968755 -0.14 -1.9932744 -0.15 -1.9901228 -0.16 -1.9876247 -0.17 -1.9859418 -0.18 -1.9851838 -0.19 -1.9854009 -0.2 -1.9865807 -0.21 -1.9886495 -0.22 -1.9914762 -0.23 -1.9948962 -0.24 -1.9986613 -0.25 -2.00251 -0.26 -2.0061942 -0.27 -2.0094764 -0.28 -2.0121446 -0.29 -2.0140259 -0.3 -2.0149965 -0.31 -2.0149895 -0.32 -2.0139984 -0.33 -2.0120774 -0.34 -2.0093188 -0.35 -2.0058876 -0.36 -2.0020253 -0.37 -1.9979563 -0.38 -1.993912 -0.39 -1.9901153 -0.4 -1.986767 -0.41 -1.9840329 -0.42 -1.9820344 -0.43 -1.9808414 -0.44 -1.9804694 -0.45 -1.9808888 -0.46 -1.9820397 -0.47 -1.9837398 -0.48 -1.9858316 -0.49 -1.9881464 -0.5 -1.990519 -0.51 -1.9928029 -0.52 -1.994884 -0.53 -1.9966914 -0.54 -1.9982065 -0.55 -1.9994665 -0.56 -2.000565 -0.57 -2.0016598 -0.58 -2.002957 -0.59 -2.0046771 -0.6 -2.007049 -0.61 -2.0102915 -0.62 -2.0145924 -0.63 -2.02009 -0.64 -2.0268548 -0.65 -2.0348752 -0.66 -2.044047 -0.67 -2.0541685 -0.68 -2.0649555 -0.69 -2.0759545 -0.7 -2.0866761 -0.71 -2.0965922 -0.72 -2.1051476 -0.73 -2.1117894 -0.74 -2.1159961 -0.75 -2.1173085 -0.76 -2.1153606 -0.77 -2.1099021 -0.78 -2.1008254 -0.79 -2.088042 -0.8 -2.071805 -0.81 -2.0526436 -0.82 -2.0311032 -0.83 -2.0078583 -0.84 -1.9836842 -0.85 -1.9594261 -0.86 -1.9359597 -0.87 -1.9141506 -0.88 -1.8948138 -0.89 -1.8786739 -0.9 -1.8664243 -0.91 -1.8586528 -0.92 -1.8553753 -0.93 -1.856609 -0.94 -1.8621751 -0.95 -1.8716963 -0.96 -1.8846246 -0.97 -1.9002603 -0.98 -1.9177875 -0.99 -1.9363173 -1 -1.9549309 -1.01 -1.9727116 -1.02 -1.9886532 -1.03 -2.0021057 -1.04 -2.0125012 -1.05 -2.0194459 -1.06 -2.0227373 -1.07 -2.0223714 -1.08 -2.0185395 -1.09 -2.011614 -1.1 -2.0021254 -1.11 -1.9907295 -1.12 -1.9781697 -1.13 -1.9652615 -1.14 -1.9528658 -1.15 -1.9417102 -1.16 -1.9324235 -1.17 -1.925504 -1.18 -1.9212937 -1.19 -1.9199603 -1.2 -1.9214916 -1.21 -1.9256985 -1.22 -1.9322293 -1.23 -1.9405939 -1.24 -1.9502228 -1.25 -1.9603555 -1.26 -1.9702723 -1.27 -1.9793115 -1.28 -1.9868805 -1.29 -1.992494 -1.3 -1.9958041 -1.31 -1.9966231 -1.32 -1.9949355 -1.33 -1.9909008 -1.34 -1.9848439 -1.35 -1.9772036 -1.36 -1.9686311 -1.37 -1.9598674 -1.38 -1.9516206 -1.39 -1.9445813 -1.4 -1.9393791 -1.41 -1.9365391 -1.42 -1.9364481 -1.43 -1.9393234 -1.44 -1.9451968 -1.45 -1.9539055 -1.46 -1.9651322 -1.47 -1.9783684 -1.48 -1.9927749 -1.49 -2.007556 -1.5 -2.0218616 -1.51 -2.0348335 -1.52 -2.0456633 -1.53 -2.0536406 -1.54 -2.0581956 -1.55 -2.0589408 -1.56 -2.0556972 -1.57 -2.0485067 -1.58 -2.0374272 -1.59 -2.0232925 -1.6 -2.0068404 -1.61 -1.9889647 -1.62 -1.9706686 -1.63 -1.9530094 -1.64 -1.9370403 -1.65 -1.9237499 -1.66 -1.9140063 -1.67 -1.9085005 -1.68 -1.9077079 -1.69 -1.9121529 -1.7 -1.921514 -1.71 -1.9353481 -1.72 -1.9530207 -1.73 -1.9736718 -1.74 -1.996254 -1.75 -2.0195878 -1.76 -2.0424238 -1.77 -2.0635134 -1.78 -2.0816701 -1.79 -2.0958468 -1.8 -2.1049395 -1.81 -2.1083895 -1.82 -2.1060809 -1.83 -2.0980657 -1.84 -2.0847059 -1.85 -2.066665 -1.86 -2.0448792 -1.87 -2.0205038 -1.88 -1.9948619 -1.89 -1.9693686 -1.9 -1.9454629 -1.91 -1.9246489 -1.92 -1.908346 -1.93 -1.8974023 -1.94 -1.8925338 -1.95 -1.8941379 -1.96 -1.9022689 -1.97 -1.9166242 -1.98 -1.9365617 -1.99 -1.961126 -2 -1.9890951 -2.01 -2.019039 -2.02 -2.0493826 -2.03 -2.0783191 -2.04 -2.1042801 -2.05 -2.1258447 -2.06 -2.1418113 -2.07 -2.1512596 -2.08 -2.1536022 -2.09 -2.1486233 -2.1 -2.1364895 -2.11 -2.1177508 -2.12 -2.0933143 -2.13 -2.0644012 -2.14 -2.0323856 -2.15 -1.9992584 -2.16 -1.9667762 -2.17 -1.9366695 -2.18 -1.9105579 -2.19 -1.8898677 -2.2 -1.8757496 -2.21 -1.8690211 -2.22 -1.8701182 -2.23 -1.8790671 -2.24 -1.8954777 -2.25 -1.9188767 -2.26 -1.9477156 -2.27 -1.9803609 -2.28 -2.0150815 -2.29 -2.050015 -2.3 -2.0832585 -2.31 -2.1129676 -2.32 -2.1374455 -2.33 -2.1552345 -2.34 -2.165184 -2.35 -2.1665186 -2.36 -2.1585069 -2.37 -2.141326 -2.38 -2.1158747 -2.39 -2.0831373 -2.4 -2.0444559 -2.41 -2.0014661 -2.42 -1.9560173 -2.43 -1.9100884 -2.44 -1.8656922 -2.45 -1.8247846 -2.46 -1.7891738 -2.47 -1.7606423 -2.48 -1.7407638 -2.49 -1.7300276 -2.5 -1.7288824 -2.51 -1.7373672 -2.52 -1.7551165 -2.53 -1.7813901 -2.54 -1.8151104 -2.55 -1.8549261 -2.56 -1.8992718 -2.57 -1.9464547 -2.58 -1.9947224 -2.59 -2.0421825 -2.6 -2.0871921 -2.61 -2.1283473 -2.62 -2.1644827 -2.63 -2.1947056 -2.64 -2.2184244 -2.65 -2.2353403 -2.66 -2.2454711 -2.67 -2.2491027 -2.68 -2.2467442 -2.69 -2.239115 -2.7 -2.2268265 -2.71 -2.2111598 -2.72 -2.1931021 -2.73 -2.1735773 -2.74 -2.1534095 -2.75 -2.1333105 -2.76 -2.113822 -2.77 -2.0953225 -2.78 -2.0780328 -2.79 -2.0619867 -2.8 -2.0470778 -2.81 -2.0331091 -2.82 -2.0197056 -2.83 -2.0064808 -2.84 -1.9930735 -2.85 -1.9791583 -2.86 -1.9644874 -2.87 -1.94892 -2.88 -1.9324311 -2.89 -1.9151367 -2.9 -1.8972845 -2.91 -1.8792495 -2.92 -1.861547 -2.93 -1.8448074 -2.94 -1.8296326 -2.95 -1.8166424 -2.96 -1.8064164 -2.97 -1.7994626 -2.98 -1.796177 -2.99 -1.7968182 -3 -1.8014875 -3.01 -1.8101123 -3.02 -1.8224477 -3.03 -1.8381358 -3.04 -1.8566472 -3.05 -1.8770975 -3.06 -1.8986963 -3.07 -1.9206134 -3.08 -1.942017 -3.09 -1.9621166 -3.1 -1.9802009 -3.11 -1.9956804 -3.12 -2.0081062 -3.13 -2.0172029 -3.14 -2.022855 -3.15 -2.0249438 -3.16 -2.024002 -3.17 -2.020472 -3.18 -2.0149171 -3.19 -2.0079911 -3.2 -2.0003996 -3.21 -1.9928541 -3.22 -1.9860388 -3.23 -1.9805666 -3.24 -1.9769454 -3.25 -1.975552 -3.26 -1.9767682 -3.27 -1.9805081 -3.28 -1.9866009 -3.29 -1.9947512 -3.3 -2.0045225 -3.31 -2.0153656 -3.32 -2.0266512 -3.33 -2.0377042 -3.34 -2.0478365 -3.35 -2.0563945 -3.36 -2.0627825 -3.37 -2.0663588 -3.38 -2.0667788 -3.39 -2.0639088 -3.4 -2.0576904 -3.41 -2.0482173 -3.42 -2.0357247 -3.43 -2.0205789 -3.44 -2.0032509 -3.45 -1.9842969 -3.46 -1.9643224 -3.47 -1.9439601 -3.48 -1.923858 -3.49 -1.9046691 -3.5 -1.8868963 -3.51 -1.8709761 -3.52 -1.857253 -3.53 -1.8459766 -3.54 -1.8373032 -3.55 -1.8313036 -3.56 -1.8279734 -3.57 -1.8272563 -3.58 -1.8290577 -3.59 -1.833298 -3.6 -1.8399661 -3.61 -1.8488358 -3.62 -1.8598594 -3.63 -1.8730332 -3.64 -1.8883988 -3.65 -1.9060345 -3.66 -1.926049 -3.67 -1.9485599 -3.68 -1.9736809 -3.69 -2.0014896 -3.7 -2.0320059 -3.71 -2.0653561 -3.72 -2.1011441 -3.73 -2.1390485 -3.74 -2.1786113 -3.75 -2.2192155 -3.76 -2.2601196 -3.77 -2.3004404 -3.78 -2.3391913 -3.79 -2.3753021 -3.8 -2.407659 -3.81 -2.4351319 -3.82 -2.4562361 -3.83 -2.470166 -3.84 -2.4761934 -3.85 -2.473691 -3.86 -2.4622293 -3.87 -2.4416627 -3.88 -2.4120823 -3.89 -2.3738762 -3.9 -2.3277023 -3.91 -2.2744962 -3.92 -2.2153916 -3.93 -2.1516246 -3.94 -2.0849067 -3.95 -2.0170025 -3.96 -1.9495548 -3.97 -1.8841822 -3.98 -1.8224139 -3.99 -1.7656385 -4 -1.7150531 -4.01 -1.671628 -4.02 -1.6360753 -4.03 -1.6088256 -4.04 -1.5902543 -4.05 -1.5803718 -4.06 -1.5783279 -4.07 -1.5834553 -4.08 -1.5948996 -4.09 -1.6116645 -4.1 -1.6326566 -4.11 -1.6567404 -4.12 -1.6827861 -4.13 -1.7097179 -4.14 -1.7365542 -4.15 -1.7624271 -4.16 -1.7865107 -4.17 -1.8083917 -4.18 -1.8277696 -4.19 -1.8445204 -4.2 -1.8586867 -4.21 -1.8704551 -4.22 -1.8801272 -4.23 -1.8880912 -4.24 -1.8947874 -4.25 -1.9006695 -4.26 -1.9061816 -4.27 -1.9117405 -4.28 -1.9176812 -4.29 -1.9242198 -4.3 -1.93147 -4.31 -1.9394415 -4.32 -1.9480415 -4.33 -1.9570918 -4.34 -1.966341 -4.35 -1.975487 -4.36 -1.9842027 -4.37 -1.9921609 -4.38 -1.9989898 -4.39 -2.0044611 -4.4 -2.0084346 -4.41 -2.0108384 -4.42 -2.0117018 -4.43 -2.0111561 -4.44 -2.0094281 -4.45 -2.0068421 -4.46 -2.0037921 -4.47 -2.000728 -4.48 -1.9981317 -4.49 -1.996548 -4.5 -1.9964872 -4.51 -1.9983183 -4.52 -2.0023722 -4.53 -2.0088837 -4.54 -2.0179774 -4.55 -2.0296563 -4.56 -2.0437982 -4.57 -2.0601612 -4.58 -2.0783887 -4.59 -2.0980243 -4.6 -2.1185363 -4.61 -2.1392772 -4.62 -2.1595723 -4.63 -2.1787865 -4.64 -2.1963105 -4.65 -2.2115847 -4.66 -2.2241196 -4.67 -2.2335157 -4.68 -2.2394777 -4.69 -2.2418221 -4.7 -2.2404825 -4.71 -2.2354862 -4.72 -2.226792 -4.73 -2.2149268 -4.74 -2.2002478 -4.75 -2.1831746 -4.76 -2.164173 -4.77 -2.1437338 -4.78 -2.122353 -4.79 -2.1005164 -4.8 -2.0786809 -4.81 -2.0572614 -4.82 -2.0366207 -4.83 -2.017148 -4.84 -1.9990311 -4.85 -1.9824205 -4.86 -1.9674152 -4.87 -1.9540577 -4.88 -1.9423408 -4.89 -1.9322143 -4.9 -1.9235962 -4.91 -1.9163801 -4.92 -1.9104446 -4.93 -1.9056614 -4.94 -1.9019458 -4.95 -1.8991364 -4.96 -1.8970942 -4.97 -1.8957183 -4.98 -1.8949185 -4.99 -1.8946188 -5 -1.8947523 -5.01 -1.8952632 -5.02 -1.8961041 -5.03 -1.897235 -5.04 -1.8986206 -5.05 -1.900234 -5.06 -1.902051 -5.07 -1.9040385 -5.08 -1.9061814 -5.09 -1.9084763 -5.1 -1.9109204 -5.11 -1.9135289 -5.12 -1.9163278 -5.13 -1.9193563 -5.14 -1.9226703 -5.15 -1.926338 -5.16 -1.9304479 -5.17 -1.9351237 -5.18 -1.9404383 -5.19 -1.9464912 -5.2 -1.9533782 -5.21 -1.961189 -5.22 -1.9699912 -5.23 -1.979838 -5.24 -1.9907501 -5.25 -2.0027224 -5.26 -2.0157098 -5.27 -2.0296357 -5.28 -2.0444299 -5.29 -2.0598612 -5.3 -2.0757357 -5.31 -2.0918249 -5.32 -2.1078785 -5.33 -2.1236292 -5.34 -2.1387938 -5.35 -2.1530899 -5.36 -2.1662352 -5.37 -2.1779635 -5.38 -2.1880244 -5.39 -2.1960696 -5.4 -2.2019846 -5.41 -2.2056503 -5.42 -2.2069615 -5.43 -2.2058545 -5.44 -2.2023096 -5.45 -2.1963502 -5.46 -2.1880437 -5.47 -2.1774947 -5.48 -2.1648462 -5.49 -2.1502756 -5.5 -2.1339242 -5.51 -2.1160729 -5.52 -2.0970329 -5.53 -2.0770773 -5.54 -2.0564886 -5.55 -2.0355589 -5.56 -2.0145787 -5.57 -1.9938332 -5.58 -1.973601 -5.59 -1.9541443 -5.6 -1.9357063 -5.61 -1.918544 -5.62 -1.9028852 -5.63 -1.8888173 -5.64 -1.8764446 -5.65 -1.86583 -5.66 -1.8569942 -5.67 -1.8499141 -5.68 -1.8445227 -5.69 -1.8407161 -5.7 -1.8383567 -5.71 -1.8372808 -5.72 -1.8373167 -5.73 -1.8383039 -5.74 -1.8399916 -5.75 -1.8422154 -5.76 -1.8448403 -5.77 -1.8477762 -5.78 -1.850983 -5.79 -1.8544805 -5.8 -1.8583571 -5.81 -1.8627659 -5.82 -1.8679268 -5.83 -1.8741237 -5.84 -1.881814 -5.85 -1.8913026 -5.86 -1.9029764 -5.87 -1.9172214 -5.88 -1.9343962 -5.89 -1.9548063 -5.9 -1.9786802 -5.91 -2.0061463 -5.92 -2.0372136 -5.93 -2.0717503 -5.94 -2.1094787 -5.95 -2.1500824 -5.96 -2.1927956 -5.97 -2.2367972 -5.98 -2.2811856 -5.99 -2.3249461 -6 -2.3670006 -6.01 -2.4062026 -6.02 -2.4414125 -6.03 -2.4715201 -6.04 -2.4955 -6.05 -2.5124272 -6.06 -2.5212079 -6.07 -2.5212661 -6.08 -2.5125623 -6.09 -2.4950214 -6.1 -2.4688095 -6.11 -2.4343433 -6.12 -2.3922593 -6.13 -2.3434274 -6.14 -2.2888822 -6.15 -2.2298211 -6.16 -2.1675254 -6.17 -2.1033594 -6.18 -2.0387784 -6.19 -1.9751855 -6.2 -1.9137916 -6.21 -1.8556678 -6.22 -1.8017159 -6.23 -1.7526411 -6.24 -1.7089359 -6.25 -1.6708734 -6.26 -1.6385162 -6.27 -1.6117251 -6.28 -1.5902314 -6.29 -1.5738184 -6.3 -1.5615672 -6.31 -1.5528568 -6.32 -1.5470656 -6.33 -1.5436069 -6.34 -1.5419751 -6.35 -1.5417768 -6.36 -1.5427598 -6.37 -1.5448297 -6.38 -1.5480558 -6.39 -1.5526746 -6.4 -1.5592254 -6.41 -1.5681607 -6.42 -1.5800825 -6.43 -1.5956499 -6.44 -1.6155195 -6.45 -1.6402998 -6.46 -1.6704986 -6.47 -1.706483 -6.48 -1.7484375 -6.49 -1.7963323 -6.5 -1.8499016 -6.51 -1.9088581 -6.52 -1.9721947 -6.53 -2.0387495 -6.54 -2.1072725 -6.55 -2.176351 -6.56 -2.2444479 -6.57 -2.3099587 -6.58 -2.3712724 -6.59 -2.4268188 -6.6 -2.4751482 -6.61 -2.5149741 -6.62 -2.544849 -6.63 -2.5638482 -6.64 -2.5719091 -6.65 -2.5688628 -6.66 -2.5548769 -6.67 -2.5304072 -6.68 -2.4962248 -6.69 -2.4533255 -6.7 -2.4029445 -6.71 -2.3464651 -6.72 -2.2853937 -6.73 -2.2212621 -6.74 -2.1557085 -6.75 -2.09038 -6.76 -2.0266432 -6.77 -1.9657115 -6.78 -1.9086044 -6.79 -1.856137 -6.8 -1.8088964 -6.81 -1.7672493 -6.82 -1.7313505 -6.83 -1.7011533 -6.84 -1.6764623 -6.85 -1.6572382 -6.86 -1.6426178 -6.87 -1.6320716 -6.88 -1.6250525 -6.89 -1.6210271 -6.9 -1.619509 -6.91 -1.6200776 -6.92 -1.6224014 -6.93 -1.626244 -6.94 -1.6314666 -6.95 -1.638026 -6.96 -1.6460486 -6.97 -1.6555837 -6.98 -1.6667598 -6.99 -1.6797386 -7 -1.6946686 -7.01 -1.7116596 -7.02 -1.7307655 -7.03 -1.7519624 -7.04 -1.7751412 -7.05 -1.8000963 -7.06 -1.8265251 -7.07 -1.8540668 -7.08 -1.8821835 -7.09 -1.9103092 -7.1 -1.9378749 -7.11 -1.9643021 -7.12 -1.9890323 -7.13 -2.0115477 -7.14 -2.0313977 -7.15 -2.0482211 -7.16 -2.0617607 -7.17 -2.0718752 -7.18 -2.07844 -7.19 -2.0815357 -7.2 -2.0815514 -7.21 -2.0788267 -7.22 -2.0737814 -7.23 -2.0668943 -7.24 -2.0586845 -7.25 -2.049682 -7.26 -2.0404019 -7.27 -2.0313296 -7.28 -2.0228903 -7.29 -2.0154589 -7.3 -2.0093816 -7.31 -2.0047603 -7.32 -2.001667 -7.33 -2.0000897 -7.34 -1.9999389 -7.35 -2.0010661 -7.36 -2.0032715 -7.37 -2.0063318 -7.38 -2.0100133 -7.39 -2.0140958 -7.4 -2.0183824 -7.41 -2.0227178 -7.42 -2.0270004 -7.43 -2.0312029 -7.44 -2.0353636 -7.45 -2.0395758 -7.46 -2.0439895 -7.47 -2.0487909 -7.48 -2.0541943 -7.49 -2.0604269 -7.5 -2.0677026 -7.51 -2.0762138 -7.52 -2.0861941 -7.53 -2.0976732 -7.54 -2.1106317 -7.55 -2.1249923 -7.56 -2.1405917 -7.57 -2.1571863 -7.58 -2.1744511 -7.59 -2.1919931 -7.6 -2.2093621 -7.61 -2.2260647 -7.62 -2.2415875 -7.63 -2.2553201 -7.64 -2.2667292 -7.65 -2.2754156 -7.66 -2.2809798 -7.67 -2.2830939 -7.68 -2.2815144 -7.69 -2.2760883 -7.7 -2.2667588 -7.71 -2.2535705 -7.72 -2.2366601 -7.73 -2.2162567 -7.74 -2.1925974 -7.75 -2.166045 -7.76 -2.1372076 -7.77 -2.1065826 -7.78 -2.0746998 -7.79 -2.0421094 -7.8 -2.00937 -7.81 -1.9770351 -7.82 -1.9456511 -7.83 -1.9157441 -7.84 -1.8878186 -7.85 -1.8623775 -7.86 -1.8400578 -7.87 -1.8210932 -7.88 -1.805845 -7.89 -1.7946303 -7.9 -1.7877226 -7.91 -1.7853449 -7.92 -1.7876643 -7.93 -1.7947892 -7.94 -1.8067586 -7.95 -1.8235409 -7.96 -1.8450216 -7.97 -1.8712956 -7.98 -1.9017503 -7.99 -1.9359555 -8 -1.9734115 -8.01 -2.0135262 -8.02 -2.0556198 -8.03 -2.0989338 -8.04 -2.1426446 -8.05 -2.1858781 -8.06 -2.2277281 -8.07 -2.2672781 -8.08 -2.3034074 -8.09 -2.3352848 -8.1 -2.3621957 -8.11 -2.3834501 -8.12 -2.3984662 -8.13 -2.4067973 -8.14 -2.4081475 -8.15 -2.4023761 -8.16 -2.3895079 -8.17 -2.3697333 -8.18 -2.3434046 -8.19 -2.3108201 -8.2 -2.2727009 -8.21 -2.2300501 -8.22 -2.1837388 -8.23 -2.1346988 -8.24 -2.0839028 -8.25 -2.0323401 -8.26 -1.9809824 -8.27 -1.9307711 -8.28 -1.8825867 -8.29 -1.8372353 -8.3 -1.7955268 -8.31 -1.7582629 -8.32 -1.7257391 -8.33 -1.6983413 -8.34 -1.6763509 -8.35 -1.6599479 -8.36 -1.6492191 -8.37 -1.6441669 -8.38 -1.6447192 -8.39 -1.650733 -8.4 -1.6620088 -8.41 -1.6783215 -8.42 -1.6996487 -8.43 -1.7252905 -8.44 -1.7548539 -8.45 -1.7879063 -8.46 -1.8239688 -8.47 -1.8625182 -8.48 -1.9029843 -8.49 -1.9447499 -8.5 -1.9871476 -8.51 -2.0294654 -8.52 -2.070954 -8.53 -2.1106712 -8.54 -2.1478418 -8.55 -2.1816789 -8.56 -2.2113968 -8.57 -2.236249 -8.58 -2.2555529 -8.59 -2.2687131 -8.6 -2.2752459 -8.61 -2.2748001 -8.62 -2.2671812 -8.63 -2.2523628 -8.64 -2.2301733 -8.65 -2.201174 -8.66 -2.1661212 -8.67 -2.1257672 -8.68 -2.0810262 -8.69 -2.0329563 -8.7 -1.9827317 -8.71 -1.9316049 -8.72 -1.8808791 -8.73 -1.8318593 -8.74 -1.7858196 -8.75 -1.7441338 -8.76 -1.7080291 -8.77 -1.6782277 -8.78 -1.6554487 -8.79 -1.640205 -8.8 -1.6327889 -8.81 -1.63327 -8.82 -1.6414862 -8.83 -1.6570613 -8.84 -1.6794189 -8.85 -1.7078054 -8.86 -1.7413877 -8.87 -1.7792209 -8.88 -1.8199071 -8.89 -1.8623101 -8.9 -1.9052993 -8.91 -1.9477855 -8.92 -1.9887536 -8.93 -2.0272888 -8.94 -2.0626003 -8.95 -2.0940377 -8.96 -2.121098 -8.97 -2.1434293 -8.98 -2.1604691 -8.99 -2.1725471 -9 -2.1797655 -9.01 -2.182336 -9.02 -2.1805618 -9.03 -2.1748153 -9.04 -2.1655206 -9.05 -2.1531284 -9.06 -2.1381047 -9.07 -2.1209062 -9.08 -2.1019761 -9.09 -2.0816745 -9.1 -2.0604708 -9.11 -2.0387255 -9.12 -2.0167481 -9.13 -1.9948166 -9.14 -1.9731844 -9.15 -1.9520862 -9.16 -1.9317439 -9.17 -1.9123731 -9.18 -1.8941861 -9.19 -1.8773962 -9.2 -1.8623 -9.21 -1.8491094 -9.22 -1.8379816 -9.23 -1.8291119 -9.24 -1.8226739 -9.25 -1.8188129 -9.26 -1.8176333 -9.27 -1.8191879 -9.28 -1.823474 -9.29 -1.8304185 -9.3 -1.8398809 -9.31 -1.8517006 -9.32 -1.8655922 -9.33 -1.8810791 -9.34 -1.8977325 -9.35 -1.9150802 -9.36 -1.9326176 -9.37 -1.949826 -9.38 -1.9661916 -9.39 -1.9812233 -9.4 -1.9944761 -9.41 -2.0055643 -9.42 -2.0141502 -9.43 -2.0198726 -9.44 -2.0228015 -9.45 -2.0229562 -9.46 -2.0204693 -9.47 -2.0155792 -9.48 -2.0086272 -9.49 -2.000039 -9.5 -1.9903139 -9.51 -1.9800063 -9.52 -1.9697015 -9.53 -1.9599955 -9.54 -1.9515956 -9.55 -1.9450003 -9.56 -1.940679 -9.57 -1.9390302 -9.58 -1.9403527 -9.59 -1.9448391 -9.6 -1.9525685 -9.61 -1.9634989 -9.62 -1.9774714 -9.63 -1.9942111 -9.64 -2.0133423 -9.65 -2.03447 -9.66 -2.0569209 -9.67 -2.0800419 -9.68 -2.103182 -9.69 -2.1256741 -9.7 -2.1468576 -9.71 -2.1660981 -9.72 -2.1828047 -9.73 -2.1964509 -9.74 -2.2065877 -9.75 -2.2128566 -9.76 -2.2148329 -9.77 -2.2123831 -9.78 -2.2056463 -9.79 -2.1947297 -9.8 -2.1798538 -9.81 -2.1613486 -9.82 -2.139648 -9.83 -2.1152789 -9.84 -2.0888509 -9.85 -2.0610431 -9.86 -2.0325889 -9.87 -2.0042833 -9.88 -1.9770205 -9.89 -1.9515836 -9.9 -1.9287478 -9.91 -1.9092498 -9.92 -1.8937702 -9.93 -1.8829151 -9.94 -1.8771979 -9.95 -1.8770297 -9.96 -1.8826982 -9.97 -1.8943611 -9.98 -1.9120809 -9.99 -1.9360638 -10 -1.9655949 -10.01 -2.0002249 -10.02 -2.0393619 -10.03 -2.0822852 -10.04 -2.1281571 -10.05 -2.176039 -10.06 -2.2249103 -10.07 -2.2736955 -10.08 -2.32128 -10.09 -2.3665594 -10.1 -2.408121 -10.11 -2.4450625 -10.12 -2.4764578 -10.13 -2.5014485 -10.14 -2.5193323 -10.15 -2.529521 -10.16 -2.5316069 -10.17 -2.525343 -10.18 -2.5106721 -10.19 -2.487695 -10.2 -2.4567073 -10.21 -2.417798 -10.22 -2.3718506 -10.23 -2.3198173 -10.24 -2.2625704 -10.25 -2.2010642 -10.26 -2.1363324 -10.27 -2.0694321 -10.28 -2.0014379 -10.29 -1.9334052 -10.3 -1.8663553 -10.31 -1.8012527 -10.32 -1.739111 -10.33 -1.6808156 -10.34 -1.6269169 -10.35 -1.5779686 -10.36 -1.5344099 -10.37 -1.4965622 -10.38 -1.464627 -10.39 -1.4387007 -10.4 -1.4187742 -10.41 -1.4047448 -10.42 -1.3964293 -10.43 -1.3936675 -10.44 -1.3963048 -10.45 -1.4036617 -10.46 -1.4153335 -10.47 -1.4308926 -10.48 -1.4498979 -10.49 -1.4719042 -10.5 -1.4964687 -10.51 -1.5231516 -10.52 -1.5515436 -10.53 -1.581241 -10.54 -1.6118603 -10.55 -1.6430848 -10.56 -1.6745149 -10.57 -1.7058733 -10.58 -1.736901 -10.59 -1.7673654 -10.6 -1.7970781 -10.61 -1.8258705 -10.62 -1.8536157 -10.63 -1.8801937 -10.64 -1.9055429 -10.65 -1.9295952 -10.66 -1.9522351 -10.67 -1.9735253 -10.68 -1.9934785 -10.69 -2.0121163 -10.7 -2.0294536 -10.71 -2.0455118 -10.72 -2.0603144 -10.73 -2.0738761 -10.74 -2.0862063 -10.75 -2.0973051 -10.76 -2.1071612 -10.77 -2.1156945 -10.78 -2.1228955 -10.79 -2.1287689 -10.8 -2.1332795 -10.81 -2.1363988 -10.82 -2.1381105 -10.83 -2.1384132 -10.84 -2.1373316 -10.85 -2.1349194 -10.86 -2.1312645 -10.87 -2.1264985 -10.88 -2.1207699 -10.89 -2.1143104 -10.9 -2.1074293 -10.91 -2.1004327 -10.92 -2.0936593 -10.93 -2.0874728 -10.94 -2.0822515 -10.95 -2.0783766 -10.96 -2.0762161 -10.97 -2.0761176 -10.98 -2.0783826 -10.99 -2.0833063 -11 -2.091211 -11.01 -2.1020213 -11.02 -2.1157367 -11.03 -2.1322576 -11.04 -2.1513842 -11.05 -2.1728199 -11.06 -2.1961717 -11.07 -2.2209594 -11.08 -2.2466279 -11.09 -2.2725582 -11.1 -2.298087 -11.11 -2.322396 -11.12 -2.3448278 -11.13 -2.3647158 -11.14 -2.3814364 -11.15 -2.3944316 -11.16 -2.4032265 -11.17 -2.4074472 -11.18 -2.4068325 -11.19 -2.4012484 -11.2 -2.3906872 -11.21 -2.3752778 -11.22 -2.3550335 -11.23 -2.3305692 -11.24 -2.3024824 -11.25 -2.271386 -11.26 -2.2379728 -11.27 -2.2029931 -11.28 -2.1672374 -11.29 -2.1315052 -11.3 -2.0965937 -11.31 -2.0632642 -11.32 -2.0322265 -11.33 -2.0042638 -11.34 -1.9799409 -11.35 -1.9595758 -11.36 -1.9434663 -11.37 -1.9317869 -11.38 -1.9245817 -11.39 -1.921764 -11.4 -1.9231235 -11.41 -1.9283304 -11.42 -1.9369499 -11.43 -1.9484529 -11.44 -1.9622729 -11.45 -1.9777121 -11.46 -1.9939505 -11.47 -2.0102609 -11.48 -2.0259238 -11.49 -2.0402466 -11.5 -2.0525828 -11.51 -2.0623501 -11.52 -2.06905 -11.53 -2.0722793 -11.54 -2.0717382 -11.55 -2.0672077 -11.56 -2.0584044 -11.57 -2.0456776 -11.58 -2.0292271 -11.59 -2.0093702 -11.6 -1.9865244 -11.61 -1.9611979 -11.62 -1.9339716 -11.63 -1.905482 -11.64 -1.8764036 -11.65 -1.8474265 -11.66 -1.8192339 -11.67 -1.792625 -11.68 -1.7681504 -11.69 -1.7463302 -11.7 -1.727606 -11.71 -1.7123193 -11.72 -1.700706 -11.73 -1.6928888 -11.74 -1.6888751 -11.75 -1.6885627 -11.76 -1.6917419 -11.77 -1.698109 -11.78 -1.7074085 -11.79 -1.7190605 -11.8 -1.7325084 -11.81 -1.7472356 -11.82 -1.7627299 -11.83 -1.7785011 -11.84 -1.7940997 -11.85 -1.8091363 -11.86 -1.8232927 -11.87 -1.8363362 -11.88 -1.8481199 -11.89 -1.858546 -11.9 -1.8676621 -11.91 -1.8756554 -11.92 -1.8827335 -11.93 -1.8891581 -11.94 -1.8952327 -11.95 -1.9012795 -11.96 -1.9076221 -11.97 -1.9145666 -11.98 -1.9223794 -11.99 -1.9312755 -12 -1.9414292 -12.01 -1.9529504 -12.02 -1.9657385 -12.03 -1.9796727 -12.04 -1.994555 -12.05 -2.0101058 -12.06 -2.0259857 -12.07 -2.0418104 -12.08 -2.0571597 -12.09 -2.0716088 -12.1 -2.0847414 -12.11 -2.0961621 -12.12 -2.1053836 -12.13 -2.1122802 -12.14 -2.1166884 -12.15 -2.1185406 -12.16 -2.1178702 -12.17 -2.1148123 -12.18 -2.1096008 -12.19 -2.102558 -12.2 -2.0940831 -12.21 -2.0846373 -12.22 -2.0747194 -12.23 -2.0648883 -12.24 -2.0556953 -12.25 -2.047622 -12.26 -2.0410995 -12.27 -2.0364899 -12.28 -2.0340655 -12.29 -2.034004 -12.3 -2.0363736 -12.31 -2.0411355 -12.32 -2.0481405 -12.33 -2.0571402 -12.34 -2.0678526 -12.35 -2.0797799 -12.36 -2.0923928 -12.37 -2.1051705 -12.38 -2.1175843 -12.39 -2.1291075 -12.4 -2.1392496 -12.41 -2.1475641 -12.42 -2.1536726 -12.43 -2.157276 -12.44 -2.1581668 -12.45 -2.1561382 -12.46 -2.151154 -12.47 -2.1434394 -12.48 -2.1331812 -12.49 -2.1206483 -12.5 -2.1061761 -12.51 -2.0901473 -12.52 -2.0729842 -12.53 -2.0551231 -12.54 -2.0370023 -12.55 -2.0190471 -12.56 -2.0016664 -12.57 -1.9852744 -12.58 -1.9701228 -12.59 -1.9564368 -12.6 -1.9443729 -12.61 -1.9340228 -12.62 -1.9254114 -12.63 -1.9185013 -12.64 -1.9131972 -12.65 -1.9093577 -12.66 -1.9067989 -12.67 -1.9053072 -12.68 -1.90469 -12.69 -1.9046219 -12.7 -1.904854 -12.71 -1.9051479 -12.72 -1.9052751 -12.73 -1.9050317 -12.74 -1.9042344 -12.75 -1.9027304 -12.76 -1.9003944 -12.77 -1.8971315 -12.78 -1.8928768 -12.79 -1.8875322 -12.8 -1.8811369 -12.81 -1.8737308 -12.82 -1.8653583 -12.83 -1.8560894 -12.84 -1.8460104 -12.85 -1.8352293 -12.86 -1.8238694 -12.87 -1.812071 -12.88 -1.7999919 -12.89 -1.7878002 -12.9 -1.7756904 -12.91 -1.7638775 -12.92 -1.7525633 -12.93 -1.7419635 -12.94 -1.732298 -12.95 -1.7237865 -12.96 -1.716651 -12.97 -1.7111057 -12.98 -1.7073613 -12.99 -1.7056071 -13 -1.7060159 -13.01 -1.708823 -13.02 -1.7141995 -13.03 -1.7221325 -13.04 -1.7326761 -13.05 -1.7458451 -13.06 -1.7616278 -13.07 -1.7799508 -13.08 -1.8007256 -13.09 -1.8237932 -13.1 -1.84898 -13.11 -1.8760548 -13.12 -1.9047878 -13.13 -1.9349336 -13.14 -1.9660618 -13.15 -1.9978361 -13.16 -2.0298962 -13.17 -2.061874 -13.18 -2.0933964 -13.19 -2.124089 -13.2 -2.153587 -13.21 -2.1815394 -13.22 -2.2076134 -13.23 -2.2315023 -13.24 -2.2527372 -13.25 -2.2712362 -13.26 -2.2868203 -13.27 -2.2993465 -13.28 -2.3087255 -13.29 -2.3149145 -13.3 -2.3179259 -13.31 -2.317825 -13.32 -2.3147278 -13.33 -2.3087981 -13.34 -2.3002463 -13.35 -2.2892046 -13.36 -2.276066 -13.37 -2.2611904 -13.38 -2.2449021 -13.39 -2.2275359 -13.4 -2.2094214 -13.41 -2.1908797 -13.42 -2.1722113 -13.43 -2.1536917 -13.44 -2.1355627 -13.45 -2.1180346 -13.46 -2.1013103 -13.47 -2.0855292 -13.48 -2.0707505 -13.49 -2.0570313 -13.5 -2.0443998 -13.51 -2.0328717 -13.52 -2.0224499 -13.53 -2.0131385 -13.54 -2.0049535 -13.55 -1.9979266 -13.56 -1.9921151 -13.57 -1.9876476 -13.58 -1.9847064 -13.59 -1.9833986 -13.6 -1.9839297 -13.61 -1.9865367 -13.62 -1.9914755 -13.63 -1.9990116 -13.64 -2.0094019 -13.65 -2.0228813 -13.66 -2.0396434 -13.67 -2.0598227 -13.68 -2.0835029 -13.69 -2.1108453 -13.7 -2.1414473 -13.71 -2.1750225 -13.72 -2.2111611 -13.73 -2.2493254 -13.74 -2.2888597 -13.75 -2.3289965 -13.76 -2.368876 -13.77 -2.4075631 -13.78 -2.4440805 -13.79 -2.4774199 -13.8 -2.5062528 -13.81 -2.5298384 -13.82 -2.5473556 -13.83 -2.558103 -13.84 -2.5614993 -13.85 -2.5571552 -13.86 -2.5448615 -13.87 -2.5246052 -13.88 -2.4965834 -13.89 -2.4612134 -13.9 -2.4190851 -13.91 -2.3707096 -13.92 -2.3172769 -13.93 -2.259995 -13.94 -2.2000046 -13.95 -2.1384941 -13.96 -2.0766303 -13.97 -2.015571 -13.98 -1.9563838 -13.99 -1.9000192 -14 -1.8473014 -14.01 -1.7988909 -14.02 -1.7554538 -14.03 -1.7173348 -14.04 -1.6844232 -14.05 -1.6566314 -14.06 -1.6337193 -14.07 -1.6153102 -14.08 -1.6009203 -14.09 -1.5899913 -14.1 -1.5819168 -14.11 -1.5760797 -14.12 -1.5718792 -14.13 -1.5687734 -14.14 -1.5662664 -14.15 -1.5639282 -14.16 -1.5614921 -14.17 -1.5588018 -14.18 -1.5558152 -14.19 -1.552593 -14.2 -1.5492926 -14.21 -1.5461445 -14.22 -1.5434433 -14.23 -1.5415164 -14.24 -1.5407134 -14.25 -1.5414946 -14.26 -1.5440775 -14.27 -1.5487156 -14.28 -1.5555989 -14.29 -1.5648507 -14.3 -1.5765204 -14.31 -1.5905854 -14.32 -1.6069565 -14.33 -1.6254885 -14.34 -1.6459901 -14.35 -1.6682427 -14.36 -1.6920909 -14.37 -1.7172141 -14.38 -1.7433779 -14.39 -1.770407 -14.4 -1.7981605 -14.41 -1.8265422 -14.42 -1.855504 -14.43 -1.8850361 -14.44 -1.9151651 -14.45 -1.9459388 -14.46 -1.9774153 -14.47 -2.009682 -14.48 -2.0427535 -14.49 -2.0765878 -14.5 -2.1111074 -14.51 -2.1461686 -14.52 -2.1815526 -14.53 -2.2169618 -14.54 -2.2520241 -14.55 -2.2863012 -14.56 -2.3192948 -14.57 -2.3504675 -14.58 -2.3791789 -14.59 -2.4047766 -14.6 -2.4268606 -14.61 -2.4449752 -14.62 -2.4587502 -14.63 -2.4679176 -14.64 -2.4723289 -14.65 -2.4719654 -14.66 -2.4669453 -14.67 -2.4575233 -14.68 -2.4440788 -14.69 -2.4270639 -14.7 -2.4069847 -14.71 -2.3847182 -14.72 -2.3609622 -14.73 -2.3364134 -14.74 -2.3117403 -14.75 -2.2875451 -14.76 -2.2643445 -14.77 -2.2425371 -14.78 -2.2223907 -14.79 -2.2040277 -14.8 -2.1874228 -14.81 -2.1725003 -14.82 -2.1588005 -14.83 -2.1458764 -14.84 -2.1331962 -14.85 -2.1201731 -14.86 -2.1061939 -14.87 -2.0906566 -14.88 -2.073005 -14.89 -2.0527609 -14.9 -2.0295529 -14.91 -2.0031396 -14.92 -1.9732457 -14.93 -1.9400931 -14.94 -1.9040044 -14.95 -1.8653973 -14.96 -1.8248232 -14.97 -1.782959 -14.98 -1.7405664 -14.99 -1.6984689 -15 -1.6575151 -15.01 -1.6185438 -15.02 -1.5823494 -15.03 -1.5498205 -15.04 -1.5215918 -15.05 -1.4979988 -15.06 -1.4793525 -15.07 -1.465813 -15.08 -1.4573817 -15.09 -1.4539185 -15.1 -1.455147 -15.11 -1.460682 -15.12 -1.4700492 -15.13 -1.4827101 -15.14 -1.4981552 -15.15 -1.5158165 -15.16 -1.5350268 -15.17 -1.5553079 -15.18 -1.5762564 -15.19 -1.5975663 -15.2 -1.6190216 -15.21 -1.6405032 -15.22 -1.6619931 -15.23 -1.6835533 -15.24 -1.7053086 -15.25 -1.7274621 -15.26 -1.7502728 -15.27 -1.7739138 -15.28 -1.7985755 -15.29 -1.8244114 -15.3 -1.8514894 -15.31 -1.8798152 -15.32 -1.909303 -15.33 -1.9397804 -15.34 -1.970987 -15.35 -2.0025852 -15.36 -2.034169 -15.37 -2.0652219 -15.38 -2.0952559 -15.39 -2.1237938 -15.4 -2.1503818 -15.41 -2.1746099 -15.42 -2.1961412 -15.43 -2.2147236 -15.44 -2.2302033 -15.45 -2.242535 -15.46 -2.251786 -15.47 -2.2581277 -15.48 -2.2617119 -15.49 -2.2630154 -15.5 -2.2625319 -15.51 -2.260738 -15.52 -2.2581254 -15.53 -2.2551797 -15.54 -2.252358 -15.55 -2.2500634 -15.56 -2.248632 -15.57 -2.2483118 -15.58 -2.2492586 -15.59 -2.2515765 -15.6 -2.2552103 -15.61 -2.2599595 -15.62 -2.2655919 -15.63 -2.2718144 -15.64 -2.2782885 -15.65 -2.2846508 -15.66 -2.2905329 -15.67 -2.2955817 -15.68 -2.299478 -15.69 -2.3019568 -15.7 -2.302774 -15.71 -2.3017332 -15.72 -2.2988835 -15.73 -2.294257 -15.74 -2.2879571 -15.75 -2.2801448 -15.76 -2.2710312 -15.77 -2.2608563 -15.78 -2.2498807 -15.79 -2.2383604 -15.8 -2.2265389 -15.81 -2.214627 -15.82 -2.2028131 -15.83 -2.1912079 -15.84 -2.1798651 -15.85 -2.1687817 -15.86 -2.1579019 -15.87 -2.1471237 -15.88 -2.1363109 -15.89 -2.1253023 -15.9 -2.1139292 -15.91 -2.1020289 -15.92 -2.0894534 -15.93 -2.0760382 -15.94 -2.061759 -15.95 -2.0466211 -15.96 -2.0306807 -15.97 -2.0140521 -15.98 -1.9969066 -15.99 -1.9794693 -16 -1.9620064 -16.01 -1.9448102 -16.02 -1.9281965 -16.03 -1.9124783 -16.04 -1.898028 -16.05 -1.8851161 -16.06 -1.8739343 -16.07 -1.8646506 -16.08 -1.8573745 -16.09 -1.8521508 -16.1 -1.848955 -16.11 -1.8476992 -16.12 -1.8482377 -16.13 -1.8503715 -16.14 -1.8538604 -16.15 -1.8584627 -16.16 -1.8638728 -16.17 -1.8697544 -16.18 -1.8758315 -16.19 -1.8818459 -16.2 -1.8875719 -16.21 -1.8928175 -16.22 -1.8974293 -16.23 -1.9012948 -16.24 -1.9043416 -16.25 -1.9065316 -16.26 -1.9078418 -16.27 -1.9082551 -16.28 -1.9078561 -16.29 -1.9066868 -16.3 -1.9047908 -16.31 -1.9022083 -16.32 -1.8989735 -16.33 -1.8951132 -16.34 -1.8906467 -16.35 -1.8855924 -16.36 -1.8799679 -16.37 -1.8738011 -16.38 -1.8671016 -16.39 -1.8599831 -16.4 -1.8525525 -16.41 -1.844955 -16.42 -1.8373821 -16.43 -1.8300696 -16.44 -1.823302 -16.45 -1.8174067 -16.46 -1.8127462 -16.47 -1.8097088 -16.48 -1.8086975 -16.49 -1.8102818 -16.5 -1.8147637 -16.51 -1.8224393 -16.52 -1.8335845 -16.53 -1.8484008 -16.54 -1.8669956 -16.55 -1.8893764 -16.56 -1.9154361 -16.57 -1.9449529 -16.58 -1.9775865 -16.59 -2.0128845 -16.6 -2.0503539 -16.61 -2.0892518 -16.62 -2.1287817 -16.63 -2.1681658 -16.64 -2.2066027 -16.65 -2.2432877 -16.66 -2.2774435 -16.67 -2.3083378 -16.68 -2.3353043 -16.69 -2.3577667 -16.7 -2.3752465 -16.71 -2.3872241 -16.72 -2.3933245 -16.73 -2.3937018 -16.74 -2.3883689 -16.75 -2.3774472 -16.76 -2.3611551 -16.77 -2.3397974 -16.78 -2.313751 -16.79 -2.2834455 -16.8 -2.2493526 -16.81 -2.2119689 -16.82 -2.1717774 -16.83 -2.129209 -16.84 -2.0849392 -16.85 -2.0394551 -16.86 -1.993226 -16.87 -1.9467059 -16.88 -1.900335 -16.89 -1.8545413 -16.9 -1.8097483 -16.91 -1.7663752 -16.92 -1.7248446 -16.93 -1.6855802 -16.94 -1.6492357 -16.95 -1.616093 -16.96 -1.5865699 -16.97 -1.5610861 -16.98 -1.5400403 -16.99 -1.5238001 -17 -1.5126885 -17.01 -1.5069707 -17.02 -1.5068372 -17.03 -1.5123966 -17.04 -1.5236593 -17.05 -1.5408308 -17.06 -1.5634858 -17.07 -1.5911751 -17.08 -1.6234635 -17.09 -1.6598162 -17.1 -1.699621 -17.11 -1.7421962 -17.12 -1.7868176 -17.13 -1.8327395 -17.14 -1.8792144 -17.15 -1.9255258 -17.16 -1.9709485 -17.17 -2.0148327 -17.18 -2.0567253 -17.19 -2.0962421 -17.2 -2.1331164 -17.21 -2.1671981 -17.22 -2.1984514 -17.23 -2.2269429 -17.24 -2.2528365 -17.25 -2.2763672 -17.26 -2.2978236 -17.27 -2.317495 -17.28 -2.335691 -17.29 -2.3527999 -17.3 -2.3690756 -17.31 -2.3847015 -17.32 -2.3997844 -17.33 -2.4143371 -17.34 -2.4282771 -17.35 -2.4414284 -17.36 -2.4535284 -17.37 -2.4642375 -17.38 -2.4731437 -17.39 -2.4796419 -17.4 -2.4834103 -17.41 -2.4840267 -17.42 -2.481107 -17.43 -2.4743365 -17.44 -2.4634876 -17.45 -2.4484386 -17.46 -2.4291838 -17.47 -2.4058388 -17.48 -2.3786414 -17.49 -2.3479459 -17.5 -2.3140473 -17.51 -2.277712 -17.52 -2.2395914 -17.53 -2.2003379 -17.54 -2.1606157 -17.55 -2.1210685 -17.56 -2.0822935 -17.57 -2.0448235 -17.58 -2.0090995 -17.59 -1.9754617 -17.6 -1.9441368 -17.61 -1.9153579 -17.62 -1.8890495 -17.63 -1.8650255 -17.64 -1.84307 -17.65 -1.8229028 -17.66 -1.8041974 -17.67 -1.7866026 -17.68 -1.7697746 -17.69 -1.7533978 -17.7 -1.737201 -17.71 -1.7209896 -17.72 -1.7046408 -17.73 -1.6881408 -17.74 -1.6715898 -17.75 -1.6551754 -17.76 -1.6391725 -17.77 -1.6239271 -17.78 -1.6098361 -17.79 -1.5973345 -17.8 -1.5868613 -17.81 -1.5788432 -17.82 -1.57367 -17.83 -1.5717325 -17.84 -1.5734285 -17.85 -1.5787118 -17.86 -1.5876136 -17.87 -1.6000575 -17.88 -1.6158608 -17.89 -1.634742 -17.9 -1.6563316 -17.91 -1.6801916 -17.92 -1.7058322 -17.93 -1.7327344 -17.94 -1.7603744 -17.95 -1.7882224 -17.96 -1.8157706 -17.97 -1.8426188 -17.98 -1.8684424 -17.99 -1.8930018 -18 -1.9161483 -18.01 -1.9378201 -18.02 -1.9580443 -18.03 -1.9769241 -18.04 -1.9946256 -18.05 -2.0113641 -18.06 -2.0273551 -18.07 -2.0429065 -18.08 -2.0582688 -18.09 -2.073654 -18.1 -2.0892263 -18.11 -2.1050938 -18.12 -2.1212978 -18.13 -2.1378101 -18.14 -2.1545312 -18.15 -2.1712993 -18.16 -2.1878915 -18.17 -2.2040076 -18.18 -2.2193238 -18.19 -2.2335387 -18.2 -2.2463428 -18.21 -2.2574439 -18.22 -2.2665881 -18.23 -2.2735676 -18.24 -2.2782322 -18.25 -2.2804945 -18.26 -2.2803337 -18.27 -2.2777938 -18.28 -2.2729166 -18.29 -2.2658411 -18.3 -2.2568752 -18.31 -2.2462439 -18.32 -2.234186 -18.33 -2.2209344 -18.34 -2.206703 -18.35 -2.1916785 -18.36 -2.1760066 -18.37 -2.1597884 -18.38 -2.1430734 -18.39 -2.1258558 -18.4 -2.108055 -18.41 -2.0896149 -18.42 -2.0704134 -18.43 -2.0503221 -18.44 -2.0292075 -18.45 -2.0069525 -18.46 -1.9834678 -18.47 -1.9587078 -18.48 -1.9326772 -18.49 -1.9054426 -18.5 -1.8771393 -18.51 -1.8479273 -18.52 -1.8181656 -18.53 -1.7882012 -18.54 -1.7584286 -18.55 -1.7292813 -18.56 -1.7012149 -18.57 -1.6746951 -18.58 -1.6501768 -18.59 -1.6280871 -18.6 -1.6088135 -18.61 -1.5926861 -18.62 -1.5801712 -18.63 -1.5713281 -18.64 -1.5661789 -18.65 -1.5647242 -18.66 -1.5668839 -18.67 -1.5725029 -18.68 -1.5813589 -18.69 -1.5931712 -18.7 -1.607622 -18.71 -1.6243608 -18.72 -1.6430279 -18.73 -1.6633119 -18.74 -1.6848233 -18.75 -1.7071996 -18.76 -1.7301658 -18.77 -1.7534938 -18.78 -1.7770018 -18.79 -1.800561 -18.8 -1.8240879 -18.81 -1.8475431 -18.82 -1.8709263 -18.83 -1.8942672 -18.84 -1.9176198 -18.85 -1.941056 -18.86 -1.964642 -18.87 -1.98844 -18.88 -2.0124973 -18.89 -2.0368431 -18.9 -2.0614861 -18.91 -2.0864061 -18.92 -2.1115615 -18.93 -2.1368873 -18.94 -2.1622973 -18.95 -2.1876877 -18.96 -2.212927 -18.97 -2.2378969 -18.98 -2.2624748 -18.99 -2.2865412 -19 -2.3099853 -19.01 -2.3327055 -19.02 -2.3546103 -19.03 -2.3756175 -19.04 -2.3956539 -19.05 -2.4146512 -19.06 -2.4325459 -19.07 -2.4491849 -19.08 -2.4645625 -19.09 -2.4786004 -19.1 -2.4912 -19.11 -2.5022432 -19.12 -2.5115963 -19.13 -2.5191062 -19.14 -2.5246044 -19.15 -2.5279104 -19.16 -2.5288362 -19.17 -2.5271925 -19.18 -2.5226427 -19.19 -2.515087 -19.2 -2.5044511 -19.21 -2.4906313 -19.22 -2.4735632 -19.23 -2.4532335 -19.24 -2.4296816 -19.25 -2.4030036 -19.26 -2.3733528 -19.27 -2.3409426 -19.28 -2.3060447 -19.29 -2.2689093 -19.3 -2.229938 -19.31 -2.1896184 -19.32 -2.1483802 -19.33 -2.1066652 -19.34 -2.0649168 -19.35 -2.0235735 -19.36 -1.9830533 -19.37 -1.9437477 -19.38 -1.9060148 -19.39 -1.8701725 -19.4 -1.8365394 -19.41 -1.8054417 -19.42 -1.7769254 -19.43 -1.7511103 -19.44 -1.7280734 -19.45 -1.7078533 -19.46 -1.6904526 -19.47 -1.6758447 -19.48 -1.6639805 -19.49 -1.6547932 -19.5 -1.6482052 -19.51 -1.6441378 -19.52 -1.6426575 -19.53 -1.6434951 -19.54 -1.64656 -19.55 -1.6517679 -19.56 -1.6590327 -19.57 -1.6682743 -19.58 -1.6794119 -19.59 -1.6923655 -19.6 -1.707052 -19.61 -1.7233877 -19.62 -1.7412822 -19.63 -1.7607305 -19.64 -1.7815492 -19.65 -1.8036173 -19.66 -1.8268274 -19.67 -1.8510687 -19.68 -1.876229 -19.69 -1.9021969 -19.7 -1.9288607 -19.71 -1.9561102 -19.72 -1.9838373 -19.73 -2.0119348 -19.74 -2.0403036 -19.75 -2.0688179 -19.76 -2.0973575 -19.77 -2.1257991 -19.78 -2.1540074 -19.79 -2.1818302 -19.8 -2.2090963 -19.81 -2.235611 -19.82 -2.2611524 -19.83 -2.2854719 -19.84 -2.3082906 -19.85 -2.3292369 -19.86 -2.347918 -19.87 -2.364064 -19.88 -2.3773125 -19.89 -2.3872963 -19.9 -2.3936606 -19.91 -2.3960629 -19.92 -2.3941979 -19.93 -2.3878 -19.94 -2.3766623 -19.95 -2.3606419 -19.96 -2.3396023 -19.97 -2.313356 -19.98 -2.2823365 -19.99 -2.2467767 -20 -2.2070062 -20.01 -2.1634527 -20.02 -2.1166306 -20.03 -2.067134 -20.04 -2.0156296 -20.05 -1.9628364 -20.06 -1.909515 -20.07 -1.8564495 -20.08 -1.8045618 -20.09 -1.7545921 -20.1 -1.7072741 -20.11 -1.6632841 -20.12 -1.6232336 -20.13 -1.5876518 -20.14 -1.5569765 -20.15 -1.5315453 -20.16 -1.5115947 -20.17 -1.4972548 -20.18 -1.4885484 -20.19 -1.4857195 -20.2 -1.4883359 -20.21 -1.4960366 -20.22 -1.5084773 -20.23 -1.5252533 -20.24 -1.5459128 -20.25 -1.5699676 -20.26 -1.5969065 -20.27 -1.6262062 -20.28 -1.6573446 -20.29 -1.6898076 -20.3 -1.7231146 -20.31 -1.7567437 -20.32 -1.7902363 -20.33 -1.8231932 -20.34 -1.8552549 -20.35 -1.8860999 -20.36 -1.9154446 -20.37 -1.9430446 -20.38 -1.9686931 -20.39 -1.9922179 -20.4 -2.0134813 -20.41 -2.0323144 -20.42 -2.048585 -20.43 -2.062373 -20.44 -2.0736679 -20.45 -2.0824896 -20.46 -2.0888858 -20.47 -2.0929308 -20.48 -2.0947253 -20.49 -2.0943978 -20.5 -2.0921027 -20.51 -2.0880173 -20.52 -2.082332 -20.53 -2.0752158 -20.54 -2.0670172 -20.55 -2.0579966 -20.56 -2.0484283 -20.57 -2.038591 -20.58 -2.0287667 -20.59 -2.0192343 -20.6 -2.0102635 -20.61 -2.0021105 -20.62 -1.9950091 -20.63 -1.9891732 -20.64 -1.9848915 -20.65 -1.98222 -20.66 -1.9812495 -20.67 -1.9820342 -20.68 -1.9845833 -20.69 -1.9888601 -20.7 -1.9947821 -20.71 -2.0022184 -20.72 -2.0109979 -20.73 -2.0209064 -20.74 -2.0316932 -20.75 -2.0430904 -20.76 -2.0547421 -20.77 -2.0663039 -20.78 -2.0774374 -20.79 -2.0878001 -20.8 -2.0970544 -20.81 -2.1048808 -20.82 -2.1109795 -20.83 -2.1150855 -20.84 -2.1169716 -20.85 -2.1164561 -20.86 -2.1133102 -20.87 -2.1074654 -20.88 -2.0990199 -20.89 -2.0880409 -20.9 -2.0746586 -20.91 -2.0590684 -20.92 -2.0415231 -20.93 -2.0223321 -20.94 -2.0018538 -20.95 -1.9804878 -20.96 -1.9586649 -20.97 -1.9368485 -20.98 -1.9155609 -20.99 -1.8952614 -21 -1.8764002 -21.01 -1.8593997 -21.02 -1.8446508 -21.03 -1.8324987 -21.04 -1.8232387 -21.05 -1.8171085 -21.06 -1.8142837 -21.07 -1.8148766 -21.08 -1.8189576 -21.09 -1.8267224 -21.1 -1.8378466 -21.11 -1.8521889 -21.12 -1.869565 -21.13 -1.8897468 -21.14 -1.9124728 -21.15 -1.9374607 -21.16 -1.9644031 -21.17 -1.9929897 -21.18 -2.0228973 -21.19 -2.0538066 -21.2 -2.0854272 -21.21 -2.1173864 -21.22 -2.1493727 -21.23 -2.1810901 -21.24 -2.2122452 -21.25 -2.2425478 -21.26 -2.2717061 -21.27 -2.299426 -21.28 -2.3254089 -21.29 -2.3493476 -21.3 -2.3709285 -21.31 -2.3896825 -21.32 -2.4053175 -21.33 -2.4175816 -21.34 -2.4261561 -21.35 -2.4307393 -21.36 -2.4310532 -21.37 -2.4268519 -21.38 -2.4179333 -21.39 -2.404152 -21.4 -2.3854249 -21.41 -2.3617448 -21.42 -2.3330261 -21.43 -2.2994171 -21.44 -2.261394 -21.45 -2.2193199 -21.46 -2.173645 -21.47 -2.1249048 -21.48 -2.0737077 -21.49 -2.0207238 -21.5 -1.966671 -21.51 -1.9123005 -21.52 -1.8583783 -21.53 -1.8056993 -21.54 -1.7551467 -21.55 -1.7073329 -21.56 -1.6628899 -21.57 -1.622374 -21.58 -1.5862605 -21.59 -1.5549272 -21.6 -1.5286586 -21.61 -1.5076369 -21.62 -1.49195 -21.63 -1.4815919 -21.64 -1.476481 -21.65 -1.4768047 -21.66 -1.481941 -21.67 -1.4916098 -21.68 -1.505502 -21.69 -1.52329 -21.7 -1.5446442 -21.71 -1.5692397 -21.72 -1.5967711 -21.73 -1.626957 -21.74 -1.6595399 -21.75 -1.694296 -21.76 -1.7311369 -21.77 -1.7697883 -21.78 -1.8100673 -21.79 -1.8518325 -21.8 -1.8949402 -21.81 -1.9392391 -21.82 -1.984557 -21.83 -2.0306967 -21.84 -2.0774255 -21.85 -2.1244721 -21.86 -2.1715217 -21.87 -2.2181809 -21.88 -2.2640144 -21.89 -2.3085894 -21.9 -2.3514371 -21.91 -2.3920692 -21.92 -2.429991 -21.93 -2.464712 -21.94 -2.4957621 -21.95 -2.5227029 -21.96 -2.5451417 -21.97 -2.56274 -21.98 -2.5750728 -21.99 -2.58184 -22 -2.5831818 -22.01 -2.5790838 -22.02 -2.5696153 -22.03 -2.554927 -22.04 -2.535248 -22.05 -2.5108758 -22.06 -2.482171 -22.07 -2.4495464 -22.08 -2.4134572 -22.09 -2.3743556 -22.1 -2.3326658 -22.11 -2.28909 -22.12 -2.2441384 -22.13 -2.1983144 -22.14 -2.1521061 -22.15 -2.1059775 -22.16 -2.0603702 -22.17 -2.015696 -22.18 -1.9723385 -22.19 -1.9306519 -22.2 -1.8909605 -22.21 -1.853753 -22.22 -1.819152 -22.23 -1.7873958 -22.24 -1.7586977 -22.25 -1.7332516 -22.26 -1.7112216 -22.27 -1.6927493 -22.28 -1.6779439 -22.29 -1.6668869 -22.3 -1.6596255 -22.31 -1.6561697 -22.32 -1.6567007 -22.33 -1.6609963 -22.34 -1.6688643 -22.35 -1.6801403 -22.36 -1.6946156 -22.37 -1.712043 -22.38 -1.7321332 -22.39 -1.7545651 -22.4 -1.7789885 -22.41 -1.8050285 -22.42 -1.8322972 -22.43 -1.8604111 -22.44 -1.8889295 -22.45 -1.9174341 -22.46 -1.9455534 -22.47 -1.9729364 -22.48 -1.999262 -22.49 -2.0242396 -22.5 -2.0476147 -22.51 -2.0691692 -22.52 -2.0887228 -22.53 -2.1061298 -22.54 -2.1212225 -22.55 -2.133855 -22.56 -2.1440953 -22.57 -2.1519186 -22.58 -2.1573183 -22.59 -2.1603021 -22.6 -2.1608893 -22.61 -2.1591065 -22.62 -2.1549896 -22.63 -2.1485771 -22.64 -2.1399162 -22.65 -2.1290421 -22.66 -2.1158975 -22.67 -2.1007078 -22.68 -2.0835628 -22.69 -2.0645746 -22.7 -2.0438753 -22.71 -2.021621 -22.72 -1.9979944 -22.73 -1.9732045 -22.74 -1.9474882 -22.75 -1.9211084 -22.76 -1.8943479 -22.77 -1.8675291 -22.78 -1.8409999 -22.79 -1.8150901 -22.8 -1.7901278 -22.81 -1.7664342 -22.82 -1.7443171 -22.83 -1.7240623 -22.84 -1.7059277 -22.85 -1.6901349 -22.86 -1.6768677 -22.87 -1.6662651 -22.88 -1.6585658 -22.89 -1.6537353 -22.9 -1.6516984 -22.91 -1.6523979 -22.92 -1.6557374 -22.93 -1.6615822 -22.94 -1.6697669 -22.95 -1.6800994 -22.96 -1.6923711 -22.97 -1.7063592 -22.98 -1.7218371 -22.99 -1.7386149 -23 -1.7564595 -23.01 -1.7751173 -23.02 -1.7944048 -23.03 -1.8141587 -23.04 -1.8342424 -23.05 -1.8545418 -23.06 -1.8749707 -23.07 -1.8954684 -23.08 -1.9159996 -23.09 -1.9365527 -23.1 -1.9571371 -23.11 -1.9777845 -23.12 -1.9985375 -23.13 -2.0194496 -23.14 -2.0405793 -23.15 -2.0619884 -23.16 -2.0837351 -23.17 -2.1058702 -23.18 -2.1284345 -23.19 -2.1514499 -23.2 -2.174922 -23.21 -2.1988298 -23.22 -2.2231426 -23.23 -2.2477421 -23.24 -2.2725062 -23.25 -2.2972744 -23.26 -2.3218512 -23.27 -2.3459992 -23.28 -2.369449 -23.29 -2.3918983 -23.3 -2.4130123 -23.31 -2.4324374 -23.32 -2.4497983 -23.33 -2.4645368 -23.34 -2.4763698 -23.35 -2.4849646 -23.36 -2.4899829 -23.37 -2.491123 -23.38 -2.4881312 -23.39 -2.4808135 -23.4 -2.4690414 -23.41 -2.4527635 -23.42 -2.4320099 -23.43 -2.4068972 -23.44 -2.377448 -23.45 -2.3440674 -23.46 -2.3072621 -23.47 -2.2674946 -23.48 -2.2252946 -23.49 -2.1812429 -23.5 -2.1359579 -23.51 -2.0900884 -23.52 -2.0442839 -23.53 -1.9991944 -23.54 -1.9554406 -23.55 -1.9136852 -23.56 -1.8745405 -23.57 -1.8383732 -23.58 -1.8055649 -23.59 -1.7764146 -23.6 -1.7511421 -23.61 -1.7298793 -23.62 -1.7126805 -23.63 -1.6995224 -23.64 -1.6903131 -23.65 -1.6849023 -23.66 -1.6831402 -23.67 -1.6849192 -23.68 -1.6897552 -23.69 -1.6973666 -23.7 -1.7074674 -23.71 -1.7197776 -23.72 -1.7340283 -23.73 -1.7499655 -23.74 -1.7673505 -23.75 -1.7859649 -23.76 -1.8056065 -23.77 -1.8260861 -23.78 -1.847257 -23.79 -1.8688811 -23.8 -1.8907749 -23.81 -1.9127471 -23.82 -1.9345915 -23.83 -1.9560844 -23.84 -1.9769826 -23.85 -1.9970234 -23.86 -2.0159261 -23.87 -2.0333968 -23.88 -2.0491339 -23.89 -2.062697 -23.9 -2.0738566 -23.91 -2.0823786 -23.92 -2.0880267 -23.93 -2.0906056 -23.94 -2.089974 -23.95 -2.0860506 -23.96 -2.0788201 -23.97 -2.0683413 -23.98 -2.0547454 -23.99 -2.0382374 -24 -2.0189956 -24.01 -1.9974251 -24.02 -1.9740179 -24.03 -1.9492227 -24.04 -1.9235188 -24.05 -1.8974029 -24.06 -1.8713755 -24.07 -1.8459268 -24.08 -1.8215242 -24.09 -1.7986001 -24.1 -1.7775427 -24.11 -1.7587529 -24.12 -1.7425849 -24.13 -1.7291311 -24.14 -1.7185333 -24.15 -1.7108712 -24.16 -1.7061719 -24.17 -1.7044108 -24.18 -1.7055223 -24.19 -1.7094035 -24.2 -1.7159294 -24.21 -1.7249523 -24.22 -1.736341 -24.23 -1.7500401 -24.24 -1.7657385 -24.25 -1.7832821 -24.26 -1.8025234 -24.27 -1.8233211 -24.28 -1.8455378 -24.29 -1.8690384 -24.3 -1.8936869 -24.31 -1.9193418 -24.32 -1.945849 -24.33 -1.9730434 -24.34 -2.0007612 -24.35 -2.0287497 -24.36 -2.0567765 -24.37 -2.0845946 -24.38 -2.1119374 -24.39 -2.1385255 -24.4 -2.1640732 -24.41 -2.1882925 -24.42 -2.2109037 -24.43 -2.2316392 -24.44 -2.2502572 -24.45 -2.2664103 -24.46 -2.2799913 -24.47 -2.2909315 -24.48 -2.2991601 -24.49 -2.3046624 -24.5 -2.3074721 -24.51 -2.3076742 -24.52 -2.3054036 -24.53 -2.300834 -24.54 -2.2941757 -24.55 -2.2856658 -24.56 -2.2755101 -24.57 -2.2639974 -24.58 -2.2514515 -24.59 -2.2381204 -24.6 -2.2242381 -24.61 -2.2100095 -24.62 -2.1956125 -24.63 -2.181193 -24.64 -2.1668622 -24.65 -2.1526985 -24.66 -2.1387513 -24.67 -2.1250462 -24.68 -2.1115902 -24.69 -2.0983498 -24.7 -2.0852982 -24.71 -2.0724034 -24.72 -2.0596381 -24.73 -2.0469807 -24.74 -2.0344227 -24.75 -2.0219696 -24.76 -2.0096425 -24.77 -1.9974791 -24.78 -1.9855349 -24.79 -1.9739012 -24.8 -1.9626423 -24.81 -1.951845 -24.82 -1.9415991 -24.83 -1.9319945 -24.84 -1.9231173 -24.85 -1.9150473 -24.86 -1.9078556 -24.87 -1.9016046 -24.88 -1.896346 -24.89 -1.8921231 -24.9 -1.8890423 -24.91 -1.8870754 -24.92 -1.8862359 -24.93 -1.8865477 -24.94 -1.8880356 -24.95 -1.8907268 -24.96 -1.8946517 -24.97 -1.8998437 -24.98 -1.9063375 -24.99 -1.9141667 -25 -1.9233598 -25.01 -1.934004 -25.02 -1.9460688 -25.03 -1.9594942 -25.04 -1.9742272 -25.05 -1.9901792 -25.06 -2.0072212 -25.07 -2.0251792 -25.08 -2.0438319 -25.09 -2.0629103 -25.1 -2.0820979 -25.11 -2.1010382 -25.12 -2.1192993 -25.13 -2.1364041 -25.14 -2.1519399 -25.15 -2.1654636 -25.16 -2.1765428 -25.17 -2.184773 -25.18 -2.1897884 -25.19 -2.1912804 -25.2 -2.1890067 -25.21 -2.182805 -25.22 -2.1726005 -25.23 -2.1583473 -25.24 -2.1400217 -25.25 -2.11809 -25.26 -2.0928783 -25.27 -2.0647998 -25.28 -2.0343409 -25.29 -2.0020525 -25.3 -1.9685328 -25.31 -1.9344122 -25.32 -1.9003366 -25.33 -1.86695 -25.34 -1.8348804 -25.35 -1.8049013 -25.36 -1.7774424 -25.37 -1.752977 -25.38 -1.7319088 -25.39 -1.7145643 -25.4 -1.7011955 -25.41 -1.691973 -25.42 -1.6869953 -25.43 -1.6862862 -25.44 -1.6898058 -25.45 -1.6974571 -25.46 -1.709324 -25.47 -1.7250178 -25.48 -1.7442555 -25.49 -1.7667906 -25.5 -1.7923621 -25.51 -1.8206972 -25.52 -1.8515177 -25.53 -1.88454 -25.54 -1.9194778 -25.55 -1.9560417 -25.56 -1.9939358 -25.57 -2.0328904 -25.58 -2.0725475 -25.59 -2.1125492 -25.6 -2.1525543 -25.61 -2.1922052 -25.62 -2.2311287 -25.63 -2.2689375 -25.64 -2.3052305 -25.65 -2.3395991 -25.66 -2.3716332 -25.67 -2.4009241 -25.68 -2.4269738 -25.69 -2.4493057 -25.7 -2.4677259 -25.71 -2.4819297 -25.72 -2.4916577 -25.73 -2.4967027 -25.74 -2.4969171 -25.75 -2.4922149 -25.76 -2.4825767 -25.77 -2.4680478 -25.78 -2.4487422 -25.79 -2.4247796 -25.8 -2.3961996 -25.81 -2.3635889 -25.82 -2.3272936 -25.83 -2.2876953 -25.84 -2.2452106 -25.85 -2.2002786 -25.86 -2.153353 -25.87 -2.1049001 -25.88 -2.0553871 -25.89 -2.005281 -25.9 -1.9550407 -25.91 -1.9051712 -25.92 -1.8561175 -25.93 -1.8082968 -25.94 -1.7621119 -25.95 -1.717949 -25.96 -1.6761759 -25.97 -1.637139 -25.98 -1.6011645 -25.99 -1.5685561 -26 -1.539594 -26.01 -1.5145274 -26.02 -1.4938188 -26.03 -1.4775153 -26.04 -1.4656735 -26.05 -1.4583895 -26.06 -1.4557122 -26.07 -1.4576388 -26.08 -1.464118 -26.09 -1.4750395 -26.1 -1.4902413 -26.11 -1.5095062 -26.12 -1.5325667 -26.13 -1.5592306 -26.14 -1.5890804 -26.15 -1.6215898 -26.16 -1.6563255 -26.17 -1.6928331 -26.18 -1.730645 -26.19 -1.7692906 -26.2 -1.8083001 -26.21 -1.8472169 -26.22 -1.8856016 -26.23 -1.9230381 -26.24 -1.9590989 -26.25 -1.9933517 -26.26 -2.0255555 -26.27 -2.0554316 -26.28 -2.0827421 -26.29 -2.1072802 -26.3 -2.1288756 -26.31 -2.1473886 -26.32 -2.1627124 -26.33 -2.1747691 -26.34 -2.1835055 -26.35 -2.1888745 -26.36 -2.1906804 -26.37 -2.1891865 -26.38 -2.184459 -26.39 -2.1765942 -26.4 -2.165721 -26.41 -2.1520009 -26.42 -2.1356341 -26.43 -2.1168558 -26.44 -2.0959401 -26.45 -2.0731954 -26.46 -2.0489685 -26.47 -2.0235878 -26.48 -1.9975524 -26.49 -1.9712974 -26.5 -1.9452588 -26.51 -1.919876 -26.52 -1.8955783 -26.53 -1.8727775 -26.54 -1.8518599 -26.55 -1.8331746 -26.56 -1.8170223 -26.57 -1.8036557 -26.58 -1.7934283 -26.59 -1.7863942 -26.6 -1.7825387 -26.61 -1.7818593 -26.62 -1.7842927 -26.63 -1.7897297 -26.64 -1.7980134 -26.65 -1.808951 -26.66 -1.8223278 -26.67 -1.8379091 -26.68 -1.8554539 -26.69 -1.8747764 -26.7 -1.8956327 -26.71 -1.9177444 -26.72 -1.9409231 -26.73 -1.9649971 -26.74 -1.989818 -26.75 -2.0152512 -26.76 -2.0411771 -26.77 -2.067479 -26.78 -2.0940357 -26.79 -2.1207202 -26.8 -2.1473782 -26.81 -2.1738119 -26.82 -2.1998106 -26.83 -2.2251286 -26.84 -2.2494831 -26.85 -2.2725579 -26.86 -2.2940068 -26.87 -2.3134634 -26.88 -2.3305519 -26.89 -2.3448958 -26.9 -2.3561377 -26.91 -2.3639387 -26.92 -2.3677462 -26.93 -2.3676091 -26.94 -2.3634094 -26.95 -2.3551141 -26.96 -2.3427941 -26.97 -2.3266226 -26.98 -2.3068802 -26.99 -2.2839434 -27 -2.2582891 -27.01 -2.2304704 -27.02 -2.2011103 -27.03 -2.1708667 -27.04 -2.140536 -27.05 -2.1108243 -27.06 -2.0824073 -27.07 -2.0559114 -27.08 -2.0318975 -27.09 -2.0108423 -27.1 -1.9931226 -27.11 -1.9790059 -27.12 -1.9686435 -27.13 -1.9620689 -27.14 -1.9593644 -27.15 -1.9602461 -27.16 -1.9643043 -27.17 -1.9711594 -27.18 -1.9803706 -27.19 -1.9914567 -27.2 -2.0039139 -27.21 -2.017237 -27.22 -2.0309351 -27.23 -2.0445475 -27.24 -2.0576598 -27.25 -2.069871 -27.26 -2.080841 -27.27 -2.090381 -27.28 -2.0983244 -27.29 -2.1045616 -27.3 -2.1090299 -27.31 -2.1117096 -27.32 -2.1126105 -27.33 -2.1117622 -27.34 -2.1092042 -27.35 -2.1049785 -27.36 -2.0990989 -27.37 -2.0915203 -27.38 -2.0823523 -27.39 -2.0716008 -27.4 -2.0592637 -27.41 -2.0453359 -27.42 -2.0298252 -27.43 -2.0127563 -27.44 -1.994179 -27.45 -1.9741829 -27.46 -1.9529023 -27.47 -1.9305229 -27.48 -1.9072472 -27.49 -1.883465 -27.5 -1.8595433 -27.51 -1.8358972 -27.52 -1.8129787 -27.53 -1.7912657 -27.54 -1.7712475 -27.55 -1.7534032 -27.56 -1.7381898 -27.57 -1.7260191 -27.58 -1.7172425 -27.59 -1.7123561 -27.6 -1.7113992 -27.61 -1.7143688 -27.62 -1.7212213 -27.63 -1.7318058 -27.64 -1.7458693 -27.65 -1.7630661 -27.66 -1.7829698 -27.67 -1.8050879 -27.68 -1.8288858 -27.69 -1.8538026 -27.7 -1.8792756 -27.71 -1.9047072 -27.72 -1.9295874 -27.73 -1.953486 -27.74 -1.9760469 -27.75 -1.9969993 -27.76 -2.0161629 -27.77 -2.0334475 -27.78 -2.0488506 -27.79 -2.0624472 -27.8 -2.0743791 -27.81 -2.0848065 -27.82 -2.0939487 -27.83 -2.1021178 -27.84 -2.1095451 -27.85 -2.1164363 -27.86 -2.1229552 -27.87 -2.1292123 -27.88 -2.1352552 -27.89 -2.1410669 -27.9 -2.1465626 -27.91 -2.1515949 -27.92 -2.1559569 -27.93 -2.1593348 -27.94 -2.1615032 -27.95 -2.1621878 -27.96 -2.1611283 -27.97 -2.1580931 -27.98 -2.1528988 -27.99 -2.1454244 -28 -2.13562 -28.01 -2.1235164 -28.02 -2.109227 -28.03 -2.0929445 -28.04 -2.0748463 -28.05 -2.055407 -28.06 -2.0350373 -28.07 -2.0141676 -28.08 -1.9932445 -28.09 -1.9727114 -28.1 -1.95299 -28.11 -1.9344639 -28.12 -1.9174636 -28.13 -1.902256 -28.14 -1.8890355 -28.15 -1.8780364 -28.16 -1.8692327 -28.17 -1.8625381 -28.18 -1.8578562 -28.19 -1.8550404 -28.2 -1.8539155 -28.21 -1.8542858 -28.22 -1.8559581 -28.23 -1.8587517 -28.24 -1.862514 -28.25 -1.8671315 -28.26 -1.8725672 -28.27 -1.8788077 -28.28 -1.8858664 -28.29 -1.8938303 -28.3 -1.9028201 -28.31 -1.9129787 -28.32 -1.9244555 -28.33 -1.9373896 -28.34 -1.9518921 -28.35 -1.9680292 -28.36 -1.9858062 -28.37 -2.0051847 -28.38 -2.026037 -28.39 -2.0480189 -28.4 -2.0707816 -28.41 -2.0938918 -28.42 -2.1168438 -28.43 -2.1390706 -28.44 -2.1599666 -28.45 -2.1789067 -28.46 -2.1952714 -28.47 -2.2084709 -28.48 -2.2179491 -28.49 -2.2229513 -28.5 -2.2234065 -28.51 -2.2191002 -28.52 -2.2099467 -28.53 -2.1959989 -28.54 -2.1774439 -28.55 -2.1546048 -28.56 -2.1279223 -28.57 -2.0979476 -28.58 -2.0653146 -28.59 -2.0307252 -28.6 -1.9948912 -28.61 -1.9586884 -28.62 -1.9228675 -28.63 -1.8881258 -28.64 -1.855101 -28.65 -1.8243522 -28.66 -1.7963511 -28.67 -1.771469 -28.68 -1.7499784 -28.69 -1.7320505 -28.7 -1.7177644 -28.71 -1.7072887 -28.72 -1.7004516 -28.73 -1.6970123 -28.74 -1.6967911 -28.75 -1.6995845 -28.76 -1.7051812 -28.77 -1.713376 -28.78 -1.7239755 -28.79 -1.7368085 -28.8 -1.7517273 -28.81 -1.7686065 -28.82 -1.7873997 -28.83 -1.8080236 -28.84 -1.8303117 -28.85 -1.8541652 -28.86 -1.8794693 -28.87 -1.9060765 -28.88 -1.9338007 -28.89 -1.9624097 -28.9 -1.9916206 -28.91 -2.0210995 -28.92 -2.050464 -28.93 -2.0792727 -28.94 -2.1069849 -28.95 -2.1331595 -28.96 -2.1573233 -28.97 -2.1790193 -28.98 -2.1978307 -28.99 -2.2133983 -29 -2.2254341 -29.01 -2.2337372 -29.02 -2.2382078 -29.03 -2.238851 -29.04 -2.2357832 -29.05 -2.228991 -29.06 -2.219095 -29.07 -2.2065295 -29.08 -2.1917958 -29.09 -2.1754498 -29.1 -2.158076 -29.11 -2.1402698 -29.12 -2.1226094 -29.13 -2.1056363 -29.14 -2.0898347 -29.15 -2.0756141 -29.16 -2.0634239 -29.17 -2.0534078 -29.18 -2.0456377 -29.19 -2.0401145 -29.2 -2.0367447 -29.21 -2.0353513 -29.22 -2.035687 -29.23 -2.0374514 -29.24 -2.0403097 -29.25 -2.0439116 -29.26 -2.0479106 -29.27 -2.0519717 -29.28 -2.0557831 -29.29 -2.0591165 -29.3 -2.0618039 -29.31 -2.0637415 -29.32 -2.0648879 -29.33 -2.0652615 -29.34 -2.0649295 -29.35 -2.0640022 -29.36 -2.0626125 -29.37 -2.060909 -29.38 -2.0590341 -29.39 -2.0571237 -29.4 -2.0552736 -29.41 -2.0535279 -29.42 -2.0518818 -29.43 -2.0502766 -29.44 -2.0485995 -29.45 -2.0466902 -29.46 -2.044346 -29.47 -2.0413356 -29.48 -2.03741 -29.49 -2.0323033 -29.5 -2.0256923 -29.51 -2.0174606 -29.52 -2.0074658 -29.53 -1.9956299 -29.54 -1.9819471 -29.55 -1.9664928 -29.56 -1.9494242 -29.57 -1.9309803 -29.58 -1.9114749 -29.59 -1.8912875 -29.6 -1.8708507 -29.61 -1.8506849 -29.62 -1.8312975 -29.63 -1.813172 -29.64 -1.79677 -29.65 -1.7825123 -29.66 -1.7707591 -29.67 -1.7618016 -29.68 -1.7558512 -29.69 -1.7530285 -29.7 -1.7533671 -29.71 -1.7568125 -29.72 -1.7633818 -29.73 -1.7727345 -29.74 -1.7845328 -29.75 -1.7984569 -29.76 -1.8141594 -29.77 -1.8312847 -29.78 -1.8494836 -29.79 -1.8684275 -29.8 -1.8878197 -29.81 -1.9074055 -29.82 -1.9269798 -29.83 -1.946376 -29.84 -1.9654847 -29.85 -1.9842607 -29.86 -2.00269 -29.87 -2.0207839 -29.88 -2.0385692 -29.89 -2.0560744 -29.9 -2.0733173 -29.91 -2.0902936 -29.92 -2.1069662 -29.93 -2.1232576 -29.94 -2.139028 -29.95 -2.1540656 -29.96 -2.1681709 -29.97 -2.1810756 -29.98 -2.1924823 -29.99 -2.2020712 -30 -2.2095167 -& -@target G2.S0 -@type xy -0 -2 -0.01 -2 -0.02 -2 -0.03 -2 -0.04 -2 -0.05 -2 -0.06 -2 -0.07 -2 -0.08 -2 -0.09 -2 -0.1 -2 -0.11 -2 -0.12 -2 -0.13 -2 -0.14 -2 -0.15 -2 -0.16 -2 -0.17 -2 -0.18 -2 -0.19 -2 -0.2 -2 -0.21 -2 -0.22 -2 -0.23 -2 -0.24 -2 -0.25 -2 -0.26 -2 -0.27 -2 -0.28 -2 -0.29 -2 -0.3 -2 -0.31 -2 -0.32 -2 -0.33 -2 -0.34 -2 -0.35 -2 -0.36 -2 -0.37 -2 -0.38 -2 -0.39 -2 -0.4 -2 -0.41 -2 -0.42 -2 -0.43 -2 -0.44 -2 -0.45 -2 -0.46 -2 -0.47 -2 -0.48 -2 -0.49 -2 -0.5 -2 -0.51 -2 -0.52 -2 -0.53 -2 -0.54 -2 -0.55 -2 -0.56 -2 -0.57 -2 -0.58 -2 -0.59 -2 -0.6 -2 -0.61 -2 -0.62 -2 -0.63 -2 -0.64 -2 -0.65 -2 -0.66 -2 -0.67 -2 -0.68 -2 -0.69 -2 -0.7 -2 -0.71 -2 -0.72 -2 -0.73 -2 -0.74 -2 -0.75 -2 -0.76 -2 -0.77 -2 -0.78 -2 -0.79 -2 -0.8 -2 -0.81 -2 -0.82 -2 -0.83 -2 -0.84 -2 -0.85 -2 -0.86 -2 -0.87 -2 -0.88 -2 -0.89 -2 -0.9 -2 -0.91 -2 -0.92 -2 -0.93 -2 -0.94 -2 -0.95 -2 -0.96 -2 -0.97 -2 -0.98 -2 -0.99 -2 -1 -2 -1.01 -2 -1.02 -2 -1.03 -2 -1.04 -2 -1.05 -2 -1.06 -2 -1.07 -2 -1.08 -2 -1.09 -2 -1.1 -2 -1.11 -2 -1.12 -2 -1.13 -2 -1.14 -2 -1.15 -2 -1.16 -2 -1.17 -2 -1.18 -2 -1.19 -2 -1.2 -2 -1.21 -2 -1.22 -2 -1.23 -2 -1.24 -2 -1.25 -2 -1.26 -2 -1.27 -2 -1.28 -2 -1.29 -2 -1.3 -2 -1.31 -2 -1.32 -2 -1.33 -2 -1.34 -2 -1.35 -2 -1.36 -2 -1.37 -2 -1.38 -2 -1.39 -2 -1.4 -2 -1.41 -2 -1.42 -2 -1.43 -2 -1.44 -2 -1.45 -2 -1.46 -2 -1.47 -2 -1.48 -2 -1.49 -2 -1.5 -2 -1.51 -2 -1.52 -2 -1.53 -2 -1.54 -2 -1.55 -2 -1.56 -2 -1.57 -2 -1.58 -2 -1.59 -2 -1.6 -2 -1.61 -2 -1.62 -2 -1.63 -2 -1.64 -2 -1.65 -2 -1.66 -2 -1.67 -2 -1.68 -2 -1.69 -2 -1.7 -2 -1.71 -2 -1.72 -2 -1.73 -2 -1.74 -2 -1.75 -2 -1.76 -2 -1.77 -2 -1.78 -2 -1.79 -2 -1.8 -2 -1.81 -2 -1.82 -2 -1.83 -2 -1.84 -2 -1.85 -2 -1.86 -2 -1.87 -2 -1.88 -2 -1.89 -2 -1.9 -2 -1.91 -2 -1.92 -2 -1.93 -2 -1.94 -2 -1.95 -2 -1.96 -2 -1.97 -2 -1.98 -2 -1.99 -2 -2 -2 -2.01 -2 -2.02 -2 -2.03 -2 -2.04 -2 -2.05 -2 -2.06 -2 -2.07 -2 -2.08 -2 -2.09 -2 -2.1 -2 -2.11 -2 -2.12 -2 -2.13 -2 -2.14 -2 -2.15 -2 -2.16 -2 -2.17 -2 -2.18 -2 -2.19 -2 -2.2 -2 -2.21 -2 -2.22 -2 -2.23 -2 -2.24 -2 -2.25 -2 -2.26 -2 -2.27 -2 -2.28 -2 -2.29 -2 -2.3 -2 -2.31 -2 -2.32 -2 -2.33 -2 -2.34 -2 -2.35 -2 -2.36 -2 -2.37 -2 -2.38 -2 -2.39 -2 -2.4 -2 -2.41 -2 -2.42 -2 -2.43 -2 -2.44 -2 -2.45 -2 -2.46 -2 -2.47 -2 -2.48 -2 -2.49 -2 -2.5 -2 -2.51 -2 -2.52 -2 -2.53 -2 -2.54 -2 -2.55 -2 -2.56 -2 -2.57 -2 -2.58 -2 -2.59 -2 -2.6 -2 -2.61 -2 -2.62 -2 -2.63 -2 -2.64 -2 -2.65 -2 -2.66 -2 -2.67 -2 -2.68 -2 -2.69 -2 -2.7 -2 -2.71 -2 -2.72 -2 -2.73 -2 -2.74 -2 -2.75 -2 -2.76 -2 -2.77 -2 -2.78 -2 -2.79 -2 -2.8 -2 -2.81 -2 -2.82 -2 -2.83 -2 -2.84 -2 -2.85 -2 -2.86 -2 -2.87 -2 -2.88 -2 -2.89 -2 -2.9 -2 -2.91 -2 -2.92 -2 -2.93 -2 -2.94 -2 -2.95 -2 -2.96 -2 -2.97 -2 -2.98 -2 -2.99 -2 -3 -2 -3.01 -2 -3.02 -2 -3.03 -2 -3.04 -2 -3.05 -2 -3.06 -2 -3.07 -2 -3.08 -2 -3.09 -2 -3.1 -2 -3.11 -2 -3.12 -2 -3.13 -2 -3.14 -2 -3.15 -2 -3.16 -2 -3.17 -2 -3.18 -2 -3.19 -2 -3.2 -2 -3.21 -2 -3.22 -2 -3.23 -2 -3.24 -2 -3.25 -2 -3.26 -2 -3.27 -2 -3.28 -2 -3.29 -2 -3.3 -2 -3.31 -2 -3.32 -2 -3.33 -2 -3.34 -2 -3.35 -2 -3.36 -2 -3.37 -2 -3.38 -2 -3.39 -2 -3.4 -2 -3.41 -2 -3.42 -2 -3.43 -2 -3.44 -2 -3.45 -2 -3.46 -2 -3.47 -2 -3.48 -2 -3.49 -2 -3.5 -2 -3.51 -2 -3.52 -2 -3.53 -2 -3.54 -2 -3.55 -2 -3.56 -2 -3.57 -2 -3.58 -2 -3.59 -2 -3.6 -2 -3.61 -2 -3.62 -2 -3.63 -2 -3.64 -2 -3.65 -2 -3.66 -2 -3.67 -2 -3.68 -2 -3.69 -2 -3.7 -2 -3.71 -2 -3.72 -2 -3.73 -2 -3.74 -2 -3.75 -2 -3.76 -2 -3.77 -2 -3.78 -2 -3.79 -2 -3.8 -2 -3.81 -2 -3.82 -2 -3.83 -2 -3.84 -2 -3.85 -2 -3.86 -2 -3.87 -2 -3.88 -2 -3.89 -2 -3.9 -2 -3.91 -2 -3.92 -2 -3.93 -2 -3.94 -2 -3.95 -2 -3.96 -2 -3.97 -2 -3.98 -2 -3.99 -2 -4 -2 -4.01 -2 -4.02 -2 -4.03 -2 -4.04 -2 -4.05 -2 -4.06 -2 -4.07 -2 -4.08 -2 -4.09 -2 -4.1 -2 -4.11 -2 -4.12 -2 -4.13 -2 -4.14 -2 -4.15 -2 -4.16 -2 -4.17 -2 -4.18 -2 -4.19 -2 -4.2 -2 -4.21 -2 -4.22 -2 -4.23 -2 -4.24 -2 -4.25 -2 -4.26 -2 -4.27 -2 -4.28 -2 -4.29 -2 -4.3 -2 -4.31 -2 -4.32 -2 -4.33 -2 -4.34 -2 -4.35 -2 -4.36 -2 -4.37 -2 -4.38 -2 -4.39 -2 -4.4 -2 -4.41 -2 -4.42 -2 -4.43 -2 -4.44 -2 -4.45 -2 -4.46 -2 -4.47 -2 -4.48 -2 -4.49 -2 -4.5 -2 -4.51 -2 -4.52 -2 -4.53 -2 -4.54 -2 -4.55 -2 -4.56 -2 -4.57 -2 -4.58 -2 -4.59 -2 -4.6 -2 -4.61 -2 -4.62 -2 -4.63 -2 -4.64 -2 -4.65 -2 -4.66 -2 -4.67 -2 -4.68 -2 -4.69 -2 -4.7 -2 -4.71 -2 -4.72 -2 -4.73 -2 -4.74 -2 -4.75 -2 -4.76 -2 -4.77 -2 -4.78 -2 -4.79 -2 -4.8 -2 -4.81 -2 -4.82 -2 -4.83 -2 -4.84 -2 -4.85 -2 -4.86 -2 -4.87 -2 -4.88 -2 -4.89 -2 -4.9 -2 -4.91 -2 -4.92 -2 -4.93 -2 -4.94 -2 -4.95 -2 -4.96 -2 -4.97 -2 -4.98 -2 -4.99 -2 -5 -2 -5.01 -2 -5.02 -2 -5.03 -2 -5.04 -2 -5.05 -2 -5.06 -2 -5.07 -2 -5.08 -2 -5.09 -2 -5.1 -2 -5.11 -2 -5.12 -2 -5.13 -2 -5.14 -2 -5.15 -2 -5.16 -2 -5.17 -2 -5.18 -2 -5.19 -2 -5.2 -2 -5.21 -2 -5.22 -2 -5.23 -2 -5.24 -2 -5.25 -2 -5.26 -2 -5.27 -2 -5.28 -2 -5.29 -2 -5.3 -2 -5.31 -2 -5.32 -2 -5.33 -2 -5.34 -2 -5.35 -2 -5.36 -2 -5.37 -2 -5.38 -2 -5.39 -2 -5.4 -2 -5.41 -2 -5.42 -2 -5.43 -2 -5.44 -2 -5.45 -2 -5.46 -2 -5.47 -2 -5.48 -2 -5.49 -2 -5.5 -2 -5.51 -2 -5.52 -2 -5.53 -2 -5.54 -2 -5.55 -2 -5.56 -2 -5.57 -2 -5.58 -2 -5.59 -2 -5.6 -2 -5.61 -2 -5.62 -2 -5.63 -2 -5.64 -2 -5.65 -2 -5.66 -2 -5.67 -2 -5.68 -2 -5.69 -2 -5.7 -2 -5.71 -2 -5.72 -2 -5.73 -2 -5.74 -2 -5.75 -2 -5.76 -2 -5.77 -2 -5.78 -2 -5.79 -2 -5.8 -2 -5.81 -2 -5.82 -2 -5.83 -2 -5.84 -2 -5.85 -2 -5.86 -2 -5.87 -2 -5.88 -2 -5.89 -2 -5.9 -2 -5.91 -2 -5.92 -2 -5.93 -2 -5.94 -2 -5.95 -2 -5.96 -2 -5.97 -2 -5.98 -2 -5.99 -2 -6 -2 -6.01 -2 -6.02 -2 -6.03 -2 -6.04 -2 -6.05 -2 -6.06 -2 -6.07 -2 -6.08 -2 -6.09 -2 -6.1 -2 -6.11 -2 -6.12 -2 -6.13 -2 -6.14 -2 -6.15 -2 -6.16 -2 -6.17 -2 -6.18 -2 -6.19 -2 -6.2 -2 -6.21 -2 -6.22 -2 -6.23 -2 -6.24 -2 -6.25 -2 -6.26 -2 -6.27 -2 -6.28 -2 -6.29 -2 -6.3 -2 -6.31 -2 -6.32 -2 -6.33 -2 -6.34 -2 -6.35 -2 -6.36 -2 -6.37 -2 -6.38 -2 -6.39 -2 -6.4 -2 -6.41 -2 -6.42 -2 -6.43 -2 -6.44 -2 -6.45 -2 -6.46 -2 -6.47 -2 -6.48 -2 -6.49 -2 -6.5 -2 -6.51 -2 -6.52 -2 -6.53 -2 -6.54 -2 -6.55 -2 -6.56 -2 -6.57 -2 -6.58 -2 -6.59 -2 -6.6 -2 -6.61 -2 -6.62 -2 -6.63 -2 -6.64 -2 -6.65 -2 -6.66 -2 -6.67 -2 -6.68 -2 -6.69 -2 -6.7 -2 -6.71 -2 -6.72 -2 -6.73 -2 -6.74 -2 -6.75 -2 -6.76 -2 -6.77 -2 -6.78 -2 -6.79 -2 -6.8 -2 -6.81 -2 -6.82 -2 -6.83 -2 -6.84 -2 -6.85 -2 -6.86 -2 -6.87 -2 -6.88 -2 -6.89 -2 -6.9 -2 -6.91 -2 -6.92 -2 -6.93 -2 -6.94 -2 -6.95 -2 -6.96 -2 -6.97 -2 -6.98 -2 -6.99 -2 -7 -2 -7.01 -2 -7.02 -2 -7.03 -2 -7.04 -2 -7.05 -2 -7.06 -2 -7.07 -2 -7.08 -2 -7.09 -2 -7.1 -2 -7.11 -2 -7.12 -2 -7.13 -2 -7.14 -2 -7.15 -2 -7.16 -2 -7.17 -2 -7.18 -2 -7.19 -2 -7.2 -2 -7.21 -2 -7.22 -2 -7.23 -2 -7.24 -2 -7.25 -2 -7.26 -2 -7.27 -2 -7.28 -2 -7.29 -2 -7.3 -2 -7.31 -2 -7.32 -2 -7.33 -2 -7.34 -2 -7.35 -2 -7.36 -2 -7.37 -2 -7.38 -2 -7.39 -2 -7.4 -2 -7.41 -2 -7.42 -2 -7.43 -2 -7.44 -2 -7.45 -2 -7.46 -2 -7.47 -2 -7.48 -2 -7.49 -2 -7.5 -2 -7.51 -2 -7.52 -2 -7.53 -2 -7.54 -2 -7.55 -2 -7.56 -2 -7.57 -2 -7.58 -2 -7.59 -2 -7.6 -2 -7.61 -2 -7.62 -2 -7.63 -2 -7.64 -2 -7.65 -2 -7.66 -2 -7.67 -2 -7.68 -2 -7.69 -2 -7.7 -2 -7.71 -2 -7.72 -2 -7.73 -2 -7.74 -2 -7.75 -2 -7.76 -2 -7.77 -2 -7.78 -2 -7.79 -2 -7.8 -2 -7.81 -2 -7.82 -2 -7.83 -2 -7.84 -2 -7.85 -2 -7.86 -2 -7.87 -2 -7.88 -2 -7.89 -2 -7.9 -2 -7.91 -2 -7.92 -2 -7.93 -2 -7.94 -2 -7.95 -2 -7.96 -2 -7.97 -2 -7.98 -2 -7.99 -2 -8 -2 -8.01 -2 -8.02 -2 -8.03 -2 -8.04 -2 -8.05 -2 -8.06 -2 -8.07 -2 -8.08 -2 -8.09 -2 -8.1 -2 -8.11 -2 -8.12 -2 -8.13 -2 -8.14 -2 -8.15 -2 -8.16 -2 -8.17 -2 -8.18 -2 -8.19 -2 -8.2 -2 -8.21 -2 -8.22 -2 -8.23 -2 -8.24 -2 -8.25 -2 -8.26 -2 -8.27 -2 -8.28 -2 -8.29 -2 -8.3 -2 -8.31 -2 -8.32 -2 -8.33 -2 -8.34 -2 -8.35 -2 -8.36 -2 -8.37 -2 -8.38 -2 -8.39 -2 -8.4 -2 -8.41 -2 -8.42 -2 -8.43 -2 -8.44 -2 -8.45 -2 -8.46 -2 -8.47 -2 -8.48 -2 -8.49 -2 -8.5 -2 -8.51 -2 -8.52 -2 -8.53 -2 -8.54 -2 -8.55 -2 -8.56 -2 -8.57 -2 -8.58 -2 -8.59 -2 -8.6 -2 -8.61 -2 -8.62 -2 -8.63 -2 -8.64 -2 -8.65 -2 -8.66 -2 -8.67 -2 -8.68 -2 -8.69 -2 -8.7 -2 -8.71 -2 -8.72 -2 -8.73 -2 -8.74 -2 -8.75 -2 -8.76 -2 -8.77 -2 -8.78 -2 -8.79 -2 -8.8 -2 -8.81 -2 -8.82 -2 -8.83 -2 -8.84 -2 -8.85 -2 -8.86 -2 -8.87 -2 -8.88 -2 -8.89 -2 -8.9 -2 -8.91 -2 -8.92 -2 -8.93 -2 -8.94 -2 -8.95 -2 -8.96 -2 -8.97 -2 -8.98 -2 -8.99 -2 -9 -2 -9.01 -2 -9.02 -2 -9.03 -2 -9.04 -2 -9.05 -2 -9.06 -2 -9.07 -2 -9.08 -2 -9.09 -2 -9.1 -2 -9.11 -2 -9.12 -2 -9.13 -2 -9.14 -2 -9.15 -2 -9.16 -2 -9.17 -2 -9.18 -2 -9.19 -2 -9.2 -2 -9.21 -2 -9.22 -2 -9.23 -2 -9.24 -2 -9.25 -2 -9.26 -2 -9.27 -2 -9.28 -2 -9.29 -2 -9.3 -2 -9.31 -2 -9.32 -2 -9.33 -2 -9.34 -2 -9.35 -2 -9.36 -2 -9.37 -2 -9.38 -2 -9.39 -2 -9.4 -2 -9.41 -2 -9.42 -2 -9.43 -2 -9.44 -2 -9.45 -2 -9.46 -2 -9.47 -2 -9.48 -2 -9.49 -2 -9.5 -2 -9.51 -2 -9.52 -2 -9.53 -2 -9.54 -2 -9.55 -2 -9.56 -2 -9.57 -2 -9.58 -2 -9.59 -2 -9.6 -2 -9.61 -2 -9.62 -2 -9.63 -2 -9.64 -2 -9.65 -2 -9.66 -2 -9.67 -2 -9.68 -2 -9.69 -2 -9.7 -2 -9.71 -2 -9.72 -2 -9.73 -2 -9.74 -2 -9.75 -2 -9.76 -2 -9.77 -2 -9.78 -2 -9.79 -2 -9.8 -2 -9.81 -2 -9.82 -2 -9.83 -2 -9.84 -2 -9.85 -2 -9.86 -2 -9.87 -2 -9.88 -2 -9.89 -2 -9.9 -2 -9.91 -2 -9.92 -2 -9.93 -2 -9.94 -2 -9.95 -2 -9.96 -2 -9.97 -2 -9.98 -2 -9.99 -2 -10 -2 -10.01 -2 -10.02 -2 -10.03 -2 -10.04 -2 -10.05 -2 -10.06 -2 -10.07 -2 -10.08 -2 -10.09 -2 -10.1 -2 -10.11 -2 -10.12 -2 -10.13 -2 -10.14 -2 -10.15 -2 -10.16 -2 -10.17 -2 -10.18 -2 -10.19 -2 -10.2 -2 -10.21 -2 -10.22 -2 -10.23 -2 -10.24 -2 -10.25 -2 -10.26 -2 -10.27 -2 -10.28 -2 -10.29 -2 -10.3 -2 -10.31 -2 -10.32 -2 -10.33 -2 -10.34 -2 -10.35 -2 -10.36 -2 -10.37 -2 -10.38 -2 -10.39 -2 -10.4 -2 -10.41 -2 -10.42 -2 -10.43 -2 -10.44 -2 -10.45 -2 -10.46 -2 -10.47 -2 -10.48 -2 -10.49 -2 -10.5 -2 -10.51 -2 -10.52 -2 -10.53 -2 -10.54 -2 -10.55 -2 -10.56 -2 -10.57 -2 -10.58 -2 -10.59 -2 -10.6 -2 -10.61 -2 -10.62 -2 -10.63 -2 -10.64 -2 -10.65 -2 -10.66 -2 -10.67 -2 -10.68 -2 -10.69 -2 -10.7 -2 -10.71 -2 -10.72 -2 -10.73 -2 -10.74 -2 -10.75 -2 -10.76 -2 -10.77 -2 -10.78 -2 -10.79 -2 -10.8 -2 -10.81 -2 -10.82 -2 -10.83 -2 -10.84 -2 -10.85 -2 -10.86 -2 -10.87 -2 -10.88 -2 -10.89 -2 -10.9 -2 -10.91 -2 -10.92 -2 -10.93 -2 -10.94 -2 -10.95 -2 -10.96 -2 -10.97 -2 -10.98 -2 -10.99 -2 -11 -2 -11.01 -2 -11.02 -2 -11.03 -2 -11.04 -2 -11.05 -2 -11.06 -2 -11.07 -2 -11.08 -2 -11.09 -2 -11.1 -2 -11.11 -2 -11.12 -2 -11.13 -2 -11.14 -2 -11.15 -2 -11.16 -2 -11.17 -2 -11.18 -2 -11.19 -2 -11.2 -2 -11.21 -2 -11.22 -2 -11.23 -2 -11.24 -2 -11.25 -2 -11.26 -2 -11.27 -2 -11.28 -2 -11.29 -2 -11.3 -2 -11.31 -2 -11.32 -2 -11.33 -2 -11.34 -2 -11.35 -2 -11.36 -2 -11.37 -2 -11.38 -2 -11.39 -2 -11.4 -2 -11.41 -2 -11.42 -2 -11.43 -2 -11.44 -2 -11.45 -2 -11.46 -2 -11.47 -2 -11.48 -2 -11.49 -2 -11.5 -2 -11.51 -2 -11.52 -2 -11.53 -2 -11.54 -2 -11.55 -2 -11.56 -2 -11.57 -2 -11.58 -2 -11.59 -2 -11.6 -2 -11.61 -2 -11.62 -2 -11.63 -2 -11.64 -2 -11.65 -2 -11.66 -2 -11.67 -2 -11.68 -2 -11.69 -2 -11.7 -2 -11.71 -2 -11.72 -2 -11.73 -2 -11.74 -2 -11.75 -2 -11.76 -2 -11.77 -2 -11.78 -2 -11.79 -2 -11.8 -2 -11.81 -2 -11.82 -2 -11.83 -2 -11.84 -2 -11.85 -2 -11.86 -2 -11.87 -2 -11.88 -2 -11.89 -2 -11.9 -2 -11.91 -2 -11.92 -2 -11.93 -2 -11.94 -2 -11.95 -2 -11.96 -2 -11.97 -2 -11.98 -2 -11.99 -2 -12 -2 -12.01 -2 -12.02 -2 -12.03 -2 -12.04 -2 -12.05 -2 -12.06 -2 -12.07 -2 -12.08 -2 -12.09 -2 -12.1 -2 -12.11 -2 -12.12 -2 -12.13 -2 -12.14 -2 -12.15 -2 -12.16 -2 -12.17 -2 -12.18 -2 -12.19 -2 -12.2 -2 -12.21 -2 -12.22 -2 -12.23 -2 -12.24 -2 -12.25 -2 -12.26 -2 -12.27 -2 -12.28 -2 -12.29 -2 -12.3 -2 -12.31 -2 -12.32 -2 -12.33 -2 -12.34 -2 -12.35 -2 -12.36 -2 -12.37 -2 -12.38 -2 -12.39 -2 -12.4 -2 -12.41 -2 -12.42 -2 -12.43 -2 -12.44 -2 -12.45 -2 -12.46 -2 -12.47 -2 -12.48 -2 -12.49 -2 -12.5 -2 -12.51 -2 -12.52 -2 -12.53 -2 -12.54 -2 -12.55 -2 -12.56 -2 -12.57 -2 -12.58 -2 -12.59 -2 -12.6 -2 -12.61 -2 -12.62 -2 -12.63 -2 -12.64 -2 -12.65 -2 -12.66 -2 -12.67 -2 -12.68 -2 -12.69 -2 -12.7 -2 -12.71 -2 -12.72 -2 -12.73 -2 -12.74 -2 -12.75 -2 -12.76 -2 -12.77 -2 -12.78 -2 -12.79 -2 -12.8 -2 -12.81 -2 -12.82 -2 -12.83 -2 -12.84 -2 -12.85 -2 -12.86 -2 -12.87 -2 -12.88 -2 -12.89 -2 -12.9 -2 -12.91 -2 -12.92 -2 -12.93 -2 -12.94 -2 -12.95 -2 -12.96 -2 -12.97 -2 -12.98 -2 -12.99 -2 -13 -2 -13.01 -2 -13.02 -2 -13.03 -2 -13.04 -2 -13.05 -2 -13.06 -2 -13.07 -2 -13.08 -2 -13.09 -2 -13.1 -2 -13.11 -2 -13.12 -2 -13.13 -2 -13.14 -2 -13.15 -2 -13.16 -2 -13.17 -2 -13.18 -2 -13.19 -2 -13.2 -2 -13.21 -2 -13.22 -2 -13.23 -2 -13.24 -2 -13.25 -2 -13.26 -2 -13.27 -2 -13.28 -2 -13.29 -2 -13.3 -2 -13.31 -2 -13.32 -2 -13.33 -2 -13.34 -2 -13.35 -2 -13.36 -2 -13.37 -2 -13.38 -2 -13.39 -2 -13.4 -2 -13.41 -2 -13.42 -2 -13.43 -2 -13.44 -2 -13.45 -2 -13.46 -2 -13.47 -2 -13.48 -2 -13.49 -2 -13.5 -2 -13.51 -2 -13.52 -2 -13.53 -2 -13.54 -2 -13.55 -2 -13.56 -2 -13.57 -2 -13.58 -2 -13.59 -2 -13.6 -2 -13.61 -2 -13.62 -2 -13.63 -2 -13.64 -2 -13.65 -2 -13.66 -2 -13.67 -2 -13.68 -2 -13.69 -2 -13.7 -2 -13.71 -2 -13.72 -2 -13.73 -2 -13.74 -2 -13.75 -2 -13.76 -2 -13.77 -2 -13.78 -2 -13.79 -2 -13.8 -2 -13.81 -2 -13.82 -2 -13.83 -2 -13.84 -2 -13.85 -2 -13.86 -2 -13.87 -2 -13.88 -2 -13.89 -2 -13.9 -2 -13.91 -2 -13.92 -2 -13.93 -2 -13.94 -2 -13.95 -2 -13.96 -2 -13.97 -2 -13.98 -2 -13.99 -2 -14 -2 -14.01 -2 -14.02 -2 -14.03 -2 -14.04 -2 -14.05 -2 -14.06 -2 -14.07 -2 -14.08 -2 -14.09 -2 -14.1 -2 -14.11 -2 -14.12 -2 -14.13 -2 -14.14 -2 -14.15 -2 -14.16 -2 -14.17 -2 -14.18 -2 -14.19 -2 -14.2 -2 -14.21 -2 -14.22 -2 -14.23 -2 -14.24 -2 -14.25 -2 -14.26 -2 -14.27 -2 -14.28 -2 -14.29 -2 -14.3 -2 -14.31 -2 -14.32 -2 -14.33 -2 -14.34 -2 -14.35 -2 -14.36 -2 -14.37 -2 -14.38 -2 -14.39 -2 -14.4 -2 -14.41 -2 -14.42 -2 -14.43 -2 -14.44 -2 -14.45 -2 -14.46 -2 -14.47 -2 -14.48 -2 -14.49 -2 -14.5 -2 -14.51 -2 -14.52 -2 -14.53 -2 -14.54 -2 -14.55 -2 -14.56 -2 -14.57 -2 -14.58 -2 -14.59 -2 -14.6 -2 -14.61 -2 -14.62 -2 -14.63 -2 -14.64 -2 -14.65 -2 -14.66 -2 -14.67 -2 -14.68 -2 -14.69 -2 -14.7 -2 -14.71 -2 -14.72 -2 -14.73 -2 -14.74 -2 -14.75 -2 -14.76 -2 -14.77 -2 -14.78 -2 -14.79 -2 -14.8 -2 -14.81 -2 -14.82 -2 -14.83 -2 -14.84 -2 -14.85 -2 -14.86 -2 -14.87 -2 -14.88 -2 -14.89 -2 -14.9 -2 -14.91 -2 -14.92 -2 -14.93 -2 -14.94 -2 -14.95 -2 -14.96 -2 -14.97 -2 -14.98 -2 -14.99 -2 -15 -2 -15.01 -2 -15.02 -2 -15.03 -2 -15.04 -2 -15.05 -2 -15.06 -2 -15.07 -2 -15.08 -2 -15.09 -2 -15.1 -2 -15.11 -2 -15.12 -2 -15.13 -2 -15.14 -2 -15.15 -2 -15.16 -2 -15.17 -2 -15.18 -2 -15.19 -2 -15.2 -2 -15.21 -2 -15.22 -2 -15.23 -2 -15.24 -2 -15.25 -2 -15.26 -2 -15.27 -2 -15.28 -2 -15.29 -2 -15.3 -2 -15.31 -2 -15.32 -2 -15.33 -2 -15.34 -2 -15.35 -2 -15.36 -2 -15.37 -2 -15.38 -2 -15.39 -2 -15.4 -2 -15.41 -2 -15.42 -2 -15.43 -2 -15.44 -2 -15.45 -2 -15.46 -2 -15.47 -2 -15.48 -2 -15.49 -2 -15.5 -2 -15.51 -2 -15.52 -2 -15.53 -2 -15.54 -2 -15.55 -2 -15.56 -2 -15.57 -2 -15.58 -2 -15.59 -2 -15.6 -2 -15.61 -2 -15.62 -2 -15.63 -2 -15.64 -2 -15.65 -2 -15.66 -2 -15.67 -2 -15.68 -2 -15.69 -2 -15.7 -2 -15.71 -2 -15.72 -2 -15.73 -2 -15.74 -2 -15.75 -2 -15.76 -2 -15.77 -2 -15.78 -2 -15.79 -2 -15.8 -2 -15.81 -2 -15.82 -2 -15.83 -2 -15.84 -2 -15.85 -2 -15.86 -2 -15.87 -2 -15.88 -2 -15.89 -2 -15.9 -2 -15.91 -2 -15.92 -2 -15.93 -2 -15.94 -2 -15.95 -2 -15.96 -2 -15.97 -2 -15.98 -2 -15.99 -2 -16 -2 -16.01 -2 -16.02 -2 -16.03 -2 -16.04 -2 -16.05 -2 -16.06 -2 -16.07 -2 -16.08 -2 -16.09 -2 -16.1 -2 -16.11 -2 -16.12 -2 -16.13 -2 -16.14 -2 -16.15 -2 -16.16 -2 -16.17 -2 -16.18 -2 -16.19 -2 -16.2 -2 -16.21 -2 -16.22 -2 -16.23 -2 -16.24 -2 -16.25 -2 -16.26 -2 -16.27 -2 -16.28 -2 -16.29 -2 -16.3 -2 -16.31 -2 -16.32 -2 -16.33 -2 -16.34 -2 -16.35 -2 -16.36 -2 -16.37 -2 -16.38 -2 -16.39 -2 -16.4 -2 -16.41 -2 -16.42 -2 -16.43 -2 -16.44 -2 -16.45 -2 -16.46 -2 -16.47 -2 -16.48 -2 -16.49 -2 -16.5 -2 -16.51 -2 -16.52 -2 -16.53 -2 -16.54 -2 -16.55 -2 -16.56 -2 -16.57 -2 -16.58 -2 -16.59 -2 -16.6 -2 -16.61 -2 -16.62 -2 -16.63 -2 -16.64 -2 -16.65 -2 -16.66 -2 -16.67 -2 -16.68 -2 -16.69 -2 -16.7 -2 -16.71 -2 -16.72 -2 -16.73 -2 -16.74 -2 -16.75 -2 -16.76 -2 -16.77 -2 -16.78 -2 -16.79 -2 -16.8 -2 -16.81 -2 -16.82 -2 -16.83 -2 -16.84 -2 -16.85 -2 -16.86 -2 -16.87 -2 -16.88 -2 -16.89 -2 -16.9 -2 -16.91 -2 -16.92 -2 -16.93 -2 -16.94 -2 -16.95 -2 -16.96 -2 -16.97 -2 -16.98 -2 -16.99 -2 -17 -2 -17.01 -2 -17.02 -2 -17.03 -2 -17.04 -2 -17.05 -2 -17.06 -2 -17.07 -2 -17.08 -2 -17.09 -2 -17.1 -2 -17.11 -2 -17.12 -2 -17.13 -2 -17.14 -2 -17.15 -2 -17.16 -2 -17.17 -2 -17.18 -2 -17.19 -2 -17.2 -2 -17.21 -2 -17.22 -2 -17.23 -2 -17.24 -2 -17.25 -2 -17.26 -2 -17.27 -2 -17.28 -2 -17.29 -2 -17.3 -2 -17.31 -2 -17.32 -2 -17.33 -2 -17.34 -2 -17.35 -2 -17.36 -2 -17.37 -2 -17.38 -2 -17.39 -2 -17.4 -2 -17.41 -2 -17.42 -2 -17.43 -2 -17.44 -2 -17.45 -2 -17.46 -2 -17.47 -2 -17.48 -2 -17.49 -2 -17.5 -2 -17.51 -2 -17.52 -2 -17.53 -2 -17.54 -2 -17.55 -2 -17.56 -2 -17.57 -2 -17.58 -2 -17.59 -2 -17.6 -2 -17.61 -2 -17.62 -2 -17.63 -2 -17.64 -2 -17.65 -2 -17.66 -2 -17.67 -2 -17.68 -2 -17.69 -2 -17.7 -2 -17.71 -2 -17.72 -2 -17.73 -2 -17.74 -2 -17.75 -2 -17.76 -2 -17.77 -2 -17.78 -2 -17.79 -2 -17.8 -2 -17.81 -2 -17.82 -2 -17.83 -2 -17.84 -2 -17.85 -2 -17.86 -2 -17.87 -2 -17.88 -2 -17.89 -2 -17.9 -2 -17.91 -2 -17.92 -2 -17.93 -2 -17.94 -2 -17.95 -2 -17.96 -2 -17.97 -2 -17.98 -2 -17.99 -2 -18 -2 -18.01 -2 -18.02 -2 -18.03 -2 -18.04 -2 -18.05 -2 -18.06 -2 -18.07 -2 -18.08 -2 -18.09 -2 -18.1 -2 -18.11 -2 -18.12 -2 -18.13 -2 -18.14 -2 -18.15 -2 -18.16 -2 -18.17 -2 -18.18 -2 -18.19 -2 -18.2 -2 -18.21 -2 -18.22 -2 -18.23 -2 -18.24 -2 -18.25 -2 -18.26 -2 -18.27 -2 -18.28 -2 -18.29 -2 -18.3 -2 -18.31 -2 -18.32 -2 -18.33 -2 -18.34 -2 -18.35 -2 -18.36 -2 -18.37 -2 -18.38 -2 -18.39 -2 -18.4 -2 -18.41 -2 -18.42 -2 -18.43 -2 -18.44 -2 -18.45 -2 -18.46 -2 -18.47 -2 -18.48 -2 -18.49 -2 -18.5 -2 -18.51 -2 -18.52 -2 -18.53 -2 -18.54 -2 -18.55 -2 -18.56 -2 -18.57 -2 -18.58 -2 -18.59 -2 -18.6 -2 -18.61 -2 -18.62 -2 -18.63 -2 -18.64 -2 -18.65 -2 -18.66 -2 -18.67 -2 -18.68 -2 -18.69 -2 -18.7 -2 -18.71 -2 -18.72 -2 -18.73 -2 -18.74 -2 -18.75 -2 -18.76 -2 -18.77 -2 -18.78 -2 -18.79 -2 -18.8 -2 -18.81 -2 -18.82 -2 -18.83 -2 -18.84 -2 -18.85 -2 -18.86 -2 -18.87 -2 -18.88 -2 -18.89 -2 -18.9 -2 -18.91 -2 -18.92 -2 -18.93 -2 -18.94 -2 -18.95 -2 -18.96 -2 -18.97 -2 -18.98 -2 -18.99 -2 -19 -2 -19.01 -2 -19.02 -2 -19.03 -2 -19.04 -2 -19.05 -2 -19.06 -2 -19.07 -2 -19.08 -2 -19.09 -2 -19.1 -2 -19.11 -2 -19.12 -2 -19.13 -2 -19.14 -2 -19.15 -2 -19.16 -2 -19.17 -2 -19.18 -2 -19.19 -2 -19.2 -2 -19.21 -2 -19.22 -2 -19.23 -2 -19.24 -2 -19.25 -2 -19.26 -2 -19.27 -2 -19.28 -2 -19.29 -2 -19.3 -2 -19.31 -2 -19.32 -2 -19.33 -2 -19.34 -2 -19.35 -2 -19.36 -2 -19.37 -2 -19.38 -2 -19.39 -2 -19.4 -2 -19.41 -2 -19.42 -2 -19.43 -2 -19.44 -2 -19.45 -2 -19.46 -2 -19.47 -2 -19.48 -2 -19.49 -2 -19.5 -2 -19.51 -2 -19.52 -2 -19.53 -2 -19.54 -2 -19.55 -2 -19.56 -2 -19.57 -2 -19.58 -2 -19.59 -2 -19.6 -2 -19.61 -2 -19.62 -2 -19.63 -2 -19.64 -2 -19.65 -2 -19.66 -2 -19.67 -2 -19.68 -2 -19.69 -2 -19.7 -2 -19.71 -2 -19.72 -2 -19.73 -2 -19.74 -2 -19.75 -2 -19.76 -2 -19.77 -2 -19.78 -2 -19.79 -2 -19.8 -2 -19.81 -2 -19.82 -2 -19.83 -2 -19.84 -2 -19.85 -2 -19.86 -2 -19.87 -2 -19.88 -2 -19.89 -2 -19.9 -2 -19.91 -2 -19.92 -2 -19.93 -2 -19.94 -2 -19.95 -2 -19.96 -2 -19.97 -2 -19.98 -2 -19.99 -2 -20 -2 -20.01 -2 -20.02 -2 -20.03 -2 -20.04 -2 -20.05 -2 -20.06 -2 -20.07 -2 -20.08 -2 -20.09 -2 -20.1 -2 -20.11 -2 -20.12 -2 -20.13 -2 -20.14 -2 -20.15 -2 -20.16 -2 -20.17 -2 -20.18 -2 -20.19 -2 -20.2 -2 -20.21 -2 -20.22 -2 -20.23 -2 -20.24 -2 -20.25 -2 -20.26 -2 -20.27 -2 -20.28 -2 -20.29 -2 -20.3 -2 -20.31 -2 -20.32 -2 -20.33 -2 -20.34 -2 -20.35 -2 -20.36 -2 -20.37 -2 -20.38 -2 -20.39 -2 -20.4 -2 -20.41 -2 -20.42 -2 -20.43 -2 -20.44 -2 -20.45 -2 -20.46 -2 -20.47 -2 -20.48 -2 -20.49 -2 -20.5 -2 -20.51 -2 -20.52 -2 -20.53 -2 -20.54 -2 -20.55 -2 -20.56 -2 -20.57 -2 -20.58 -2 -20.59 -2 -20.6 -2 -20.61 -2 -20.62 -2 -20.63 -2 -20.64 -2 -20.65 -2 -20.66 -2 -20.67 -2 -20.68 -2 -20.69 -2 -20.7 -2 -20.71 -2 -20.72 -2 -20.73 -2 -20.74 -2 -20.75 -2 -20.76 -2 -20.77 -2 -20.78 -2 -20.79 -2 -20.8 -2 -20.81 -2 -20.82 -2 -20.83 -2 -20.84 -2 -20.85 -2 -20.86 -2 -20.87 -2 -20.88 -2 -20.89 -2 -20.9 -2 -20.91 -2 -20.92 -2 -20.93 -2 -20.94 -2 -20.95 -2 -20.96 -2 -20.97 -2 -20.98 -2 -20.99 -2 -21 -2 -21.01 -2 -21.02 -2 -21.03 -2 -21.04 -2 -21.05 -2 -21.06 -2 -21.07 -2 -21.08 -2 -21.09 -2 -21.1 -2 -21.11 -2 -21.12 -2 -21.13 -2 -21.14 -2 -21.15 -2 -21.16 -2 -21.17 -2 -21.18 -2 -21.19 -2 -21.2 -2 -21.21 -2 -21.22 -2 -21.23 -2 -21.24 -2 -21.25 -2 -21.26 -2 -21.27 -2 -21.28 -2 -21.29 -2 -21.3 -2 -21.31 -2 -21.32 -2 -21.33 -2 -21.34 -2 -21.35 -2 -21.36 -2 -21.37 -2 -21.38 -2 -21.39 -2 -21.4 -2 -21.41 -2 -21.42 -2 -21.43 -2 -21.44 -2 -21.45 -2 -21.46 -2 -21.47 -2 -21.48 -2 -21.49 -2 -21.5 -2 -21.51 -2 -21.52 -2 -21.53 -2 -21.54 -2 -21.55 -2 -21.56 -2 -21.57 -2 -21.58 -2 -21.59 -2 -21.6 -2 -21.61 -2 -21.62 -2 -21.63 -2 -21.64 -2 -21.65 -2 -21.66 -2 -21.67 -2 -21.68 -2 -21.69 -2 -21.7 -2 -21.71 -2 -21.72 -2 -21.73 -2 -21.74 -2 -21.75 -2 -21.76 -2 -21.77 -2 -21.78 -2 -21.79 -2 -21.8 -2 -21.81 -2 -21.82 -2 -21.83 -2 -21.84 -2 -21.85 -2 -21.86 -2 -21.87 -2 -21.88 -2 -21.89 -2 -21.9 -2 -21.91 -2 -21.92 -2 -21.93 -2 -21.94 -2 -21.95 -2 -21.96 -2 -21.97 -2 -21.98 -2 -21.99 -2 -22 -2 -22.01 -2 -22.02 -2 -22.03 -2 -22.04 -2 -22.05 -2 -22.06 -2 -22.07 -2 -22.08 -2 -22.09 -2 -22.1 -2 -22.11 -2 -22.12 -2 -22.13 -2 -22.14 -2 -22.15 -2 -22.16 -2 -22.17 -2 -22.18 -2 -22.19 -2 -22.2 -2 -22.21 -2 -22.22 -2 -22.23 -2 -22.24 -2 -22.25 -2 -22.26 -2 -22.27 -2 -22.28 -2 -22.29 -2 -22.3 -2 -22.31 -2 -22.32 -2 -22.33 -2 -22.34 -2 -22.35 -2 -22.36 -2 -22.37 -2 -22.38 -2 -22.39 -2 -22.4 -2 -22.41 -2 -22.42 -2 -22.43 -2 -22.44 -2 -22.45 -2 -22.46 -2 -22.47 -2 -22.48 -2 -22.49 -2 -22.5 -2 -22.51 -2 -22.52 -2 -22.53 -2 -22.54 -2 -22.55 -2 -22.56 -2 -22.57 -2 -22.58 -2 -22.59 -2 -22.6 -2 -22.61 -2 -22.62 -2 -22.63 -2 -22.64 -2 -22.65 -2 -22.66 -2 -22.67 -2 -22.68 -2 -22.69 -2 -22.7 -2 -22.71 -2 -22.72 -2 -22.73 -2 -22.74 -2 -22.75 -2 -22.76 -2 -22.77 -2 -22.78 -2 -22.79 -2 -22.8 -2 -22.81 -2 -22.82 -2 -22.83 -2 -22.84 -2 -22.85 -2 -22.86 -2 -22.87 -2 -22.88 -2 -22.89 -2 -22.9 -2 -22.91 -2 -22.92 -2 -22.93 -2 -22.94 -2 -22.95 -2 -22.96 -2 -22.97 -2 -22.98 -2 -22.99 -2 -23 -2 -23.01 -2 -23.02 -2 -23.03 -2 -23.04 -2 -23.05 -2 -23.06 -2 -23.07 -2 -23.08 -2 -23.09 -2 -23.1 -2 -23.11 -2 -23.12 -2 -23.13 -2 -23.14 -2 -23.15 -2 -23.16 -2 -23.17 -2 -23.18 -2 -23.19 -2 -23.2 -2 -23.21 -2 -23.22 -2 -23.23 -2 -23.24 -2 -23.25 -2 -23.26 -2 -23.27 -2 -23.28 -2 -23.29 -2 -23.3 -2 -23.31 -2 -23.32 -2 -23.33 -2 -23.34 -2 -23.35 -2 -23.36 -2 -23.37 -2 -23.38 -2 -23.39 -2 -23.4 -2 -23.41 -2 -23.42 -2 -23.43 -2 -23.44 -2 -23.45 -2 -23.46 -2 -23.47 -2 -23.48 -2 -23.49 -2 -23.5 -2 -23.51 -2 -23.52 -2 -23.53 -2 -23.54 -2 -23.55 -2 -23.56 -2 -23.57 -2 -23.58 -2 -23.59 -2 -23.6 -2 -23.61 -2 -23.62 -2 -23.63 -2 -23.64 -2 -23.65 -2 -23.66 -2 -23.67 -2 -23.68 -2 -23.69 -2 -23.7 -2 -23.71 -2 -23.72 -2 -23.73 -2 -23.74 -2 -23.75 -2 -23.76 -2 -23.77 -2 -23.78 -2 -23.79 -2 -23.8 -2 -23.81 -2 -23.82 -2 -23.83 -2 -23.84 -2 -23.85 -2 -23.86 -2 -23.87 -2 -23.88 -2 -23.89 -2 -23.9 -2 -23.91 -2 -23.92 -2 -23.93 -2 -23.94 -2 -23.95 -2 -23.96 -2 -23.97 -2 -23.98 -2 -23.99 -2 -24 -2 -24.01 -2 -24.02 -2 -24.03 -2 -24.04 -2 -24.05 -2 -24.06 -2 -24.07 -2 -24.08 -2 -24.09 -2 -24.1 -2 -24.11 -2 -24.12 -2 -24.13 -2 -24.14 -2 -24.15 -2 -24.16 -2 -24.17 -2 -24.18 -2 -24.19 -2 -24.2 -2 -24.21 -2 -24.22 -2 -24.23 -2 -24.24 -2 -24.25 -2 -24.26 -2 -24.27 -2 -24.28 -2 -24.29 -2 -24.3 -2 -24.31 -2 -24.32 -2 -24.33 -2 -24.34 -2 -24.35 -2 -24.36 -2 -24.37 -2 -24.38 -2 -24.39 -2 -24.4 -2 -24.41 -2 -24.42 -2 -24.43 -2 -24.44 -2 -24.45 -2 -24.46 -2 -24.47 -2 -24.48 -2 -24.49 -2 -24.5 -2 -24.51 -2 -24.52 -2 -24.53 -2 -24.54 -2 -24.55 -2 -24.56 -2 -24.57 -2 -24.58 -2 -24.59 -2 -24.6 -2 -24.61 -2 -24.62 -2 -24.63 -2 -24.64 -2 -24.65 -2 -24.66 -2 -24.67 -2 -24.68 -2 -24.69 -2 -24.7 -2 -24.71 -2 -24.72 -2 -24.73 -2 -24.74 -2 -24.75 -2 -24.76 -2 -24.77 -2 -24.78 -2 -24.79 -2 -24.8 -2 -24.81 -2 -24.82 -2 -24.83 -2 -24.84 -2 -24.85 -2 -24.86 -2 -24.87 -2 -24.88 -2 -24.89 -2 -24.9 -2 -24.91 -2 -24.92 -2 -24.93 -2 -24.94 -2 -24.95 -2 -24.96 -2 -24.97 -2 -24.98 -2 -24.99 -2 -25 -2 -25.01 -2 -25.02 -2 -25.03 -2 -25.04 -2 -25.05 -2 -25.06 -2 -25.07 -2 -25.08 -2 -25.09 -2 -25.1 -2 -25.11 -2 -25.12 -2 -25.13 -2 -25.14 -2 -25.15 -2 -25.16 -2 -25.17 -2 -25.18 -2 -25.19 -2 -25.2 -2 -25.21 -2 -25.22 -2 -25.23 -2 -25.24 -2 -25.25 -2 -25.26 -2 -25.27 -2 -25.28 -2 -25.29 -2 -25.3 -2 -25.31 -2 -25.32 -2 -25.33 -2 -25.34 -2 -25.35 -2 -25.36 -2 -25.37 -2 -25.38 -2 -25.39 -2 -25.4 -2 -25.41 -2 -25.42 -2 -25.43 -2 -25.44 -2 -25.45 -2 -25.46 -2 -25.47 -2 -25.48 -2 -25.49 -2 -25.5 -2 -25.51 -2 -25.52 -2 -25.53 -2 -25.54 -2 -25.55 -2 -25.56 -2 -25.57 -2 -25.58 -2 -25.59 -2 -25.6 -2 -25.61 -2 -25.62 -2 -25.63 -2 -25.64 -2 -25.65 -2 -25.66 -2 -25.67 -2 -25.68 -2 -25.69 -2 -25.7 -2 -25.71 -2 -25.72 -2 -25.73 -2 -25.74 -2 -25.75 -2 -25.76 -2 -25.77 -2 -25.78 -2 -25.79 -2 -25.8 -2 -25.81 -2 -25.82 -2 -25.83 -2 -25.84 -2 -25.85 -2 -25.86 -2 -25.87 -2 -25.88 -2 -25.89 -2 -25.9 -2 -25.91 -2 -25.92 -2 -25.93 -2 -25.94 -2 -25.95 -2 -25.96 -2 -25.97 -2 -25.98 -2 -25.99 -2 -26 -2 -26.01 -2 -26.02 -2 -26.03 -2 -26.04 -2 -26.05 -2 -26.06 -2 -26.07 -2 -26.08 -2 -26.09 -2 -26.1 -2 -26.11 -2 -26.12 -2 -26.13 -2 -26.14 -2 -26.15 -2 -26.16 -2 -26.17 -2 -26.18 -2 -26.19 -2 -26.2 -2 -26.21 -2 -26.22 -2 -26.23 -2 -26.24 -2 -26.25 -2 -26.26 -2 -26.27 -2 -26.28 -2 -26.29 -2 -26.3 -2 -26.31 -2 -26.32 -2 -26.33 -2 -26.34 -2 -26.35 -2 -26.36 -2 -26.37 -2 -26.38 -2 -26.39 -2 -26.4 -2 -26.41 -2 -26.42 -2 -26.43 -2 -26.44 -2 -26.45 -2 -26.46 -2 -26.47 -2 -26.48 -2 -26.49 -2 -26.5 -2 -26.51 -2 -26.52 -2 -26.53 -2 -26.54 -2 -26.55 -2 -26.56 -2 -26.57 -2 -26.58 -2 -26.59 -2 -26.6 -2 -26.61 -2 -26.62 -2 -26.63 -2 -26.64 -2 -26.65 -2 -26.66 -2 -26.67 -2 -26.68 -2 -26.69 -2 -26.7 -2 -26.71 -2 -26.72 -2 -26.73 -2 -26.74 -2 -26.75 -2 -26.76 -2 -26.77 -2 -26.78 -2 -26.79 -2 -26.8 -2 -26.81 -2 -26.82 -2 -26.83 -2 -26.84 -2 -26.85 -2 -26.86 -2 -26.87 -2 -26.88 -2 -26.89 -2 -26.9 -2 -26.91 -2 -26.92 -2 -26.93 -2 -26.94 -2 -26.95 -2 -26.96 -2 -26.97 -2 -26.98 -2 -26.99 -2 -27 -2 -27.01 -2 -27.02 -2 -27.03 -2 -27.04 -2 -27.05 -2 -27.06 -2 -27.07 -2 -27.08 -2 -27.09 -2 -27.1 -2 -27.11 -2 -27.12 -2 -27.13 -2 -27.14 -2 -27.15 -2 -27.16 -2 -27.17 -2 -27.18 -2 -27.19 -2 -27.2 -2 -27.21 -2 -27.22 -2 -27.23 -2 -27.24 -2 -27.25 -2 -27.26 -2 -27.27 -2 -27.28 -2 -27.29 -2 -27.3 -2 -27.31 -2 -27.32 -2 -27.33 -2 -27.34 -2 -27.35 -2 -27.36 -2 -27.37 -2 -27.38 -2 -27.39 -2 -27.4 -2 -27.41 -2 -27.42 -2 -27.43 -2 -27.44 -2 -27.45 -2 -27.46 -2 -27.47 -2 -27.48 -2 -27.49 -2 -27.5 -2 -27.51 -2 -27.52 -2 -27.53 -2 -27.54 -2 -27.55 -2 -27.56 -2 -27.57 -2 -27.58 -2 -27.59 -2 -27.6 -2 -27.61 -2 -27.62 -2 -27.63 -2 -27.64 -2 -27.65 -2 -27.66 -2 -27.67 -2 -27.68 -2 -27.69 -2 -27.7 -2 -27.71 -2 -27.72 -2 -27.73 -2 -27.74 -2 -27.75 -2 -27.76 -2 -27.77 -2 -27.78 -2 -27.79 -2 -27.8 -2 -27.81 -2 -27.82 -2 -27.83 -2 -27.84 -2 -27.85 -2 -27.86 -2 -27.87 -2 -27.88 -2 -27.89 -2 -27.9 -2 -27.91 -2 -27.92 -2 -27.93 -2 -27.94 -2 -27.95 -2 -27.96 -2 -27.97 -2 -27.98 -2 -27.99 -2 -28 -2 -28.01 -2 -28.02 -2 -28.03 -2 -28.04 -2 -28.05 -2 -28.06 -2 -28.07 -2 -28.08 -2 -28.09 -2 -28.1 -2 -28.11 -2 -28.12 -2 -28.13 -2 -28.14 -2 -28.15 -2 -28.16 -2 -28.17 -2 -28.18 -2 -28.19 -2 -28.2 -2 -28.21 -2 -28.22 -2 -28.23 -2 -28.24 -2 -28.25 -2 -28.26 -2 -28.27 -2 -28.28 -2 -28.29 -2 -28.3 -2 -28.31 -2 -28.32 -2 -28.33 -2 -28.34 -2 -28.35 -2 -28.36 -2 -28.37 -2 -28.38 -2 -28.39 -2 -28.4 -2 -28.41 -2 -28.42 -2 -28.43 -2 -28.44 -2 -28.45 -2 -28.46 -2 -28.47 -2 -28.48 -2 -28.49 -2 -28.5 -2 -28.51 -2 -28.52 -2 -28.53 -2 -28.54 -2 -28.55 -2 -28.56 -2 -28.57 -2 -28.58 -2 -28.59 -2 -28.6 -2 -28.61 -2 -28.62 -2 -28.63 -2 -28.64 -2 -28.65 -2 -28.66 -2 -28.67 -2 -28.68 -2 -28.69 -2 -28.7 -2 -28.71 -2 -28.72 -2 -28.73 -2 -28.74 -2 -28.75 -2 -28.76 -2 -28.77 -2 -28.78 -2 -28.79 -2 -28.8 -2 -28.81 -2 -28.82 -2 -28.83 -2 -28.84 -2 -28.85 -2 -28.86 -2 -28.87 -2 -28.88 -2 -28.89 -2 -28.9 -2 -28.91 -2 -28.92 -2 -28.93 -2 -28.94 -2 -28.95 -2 -28.96 -2 -28.97 -2 -28.98 -2 -28.99 -2 -29 -2 -29.01 -2 -29.02 -2 -29.03 -2 -29.04 -2 -29.05 -2 -29.06 -2 -29.07 -2 -29.08 -2 -29.09 -2 -29.1 -2 -29.11 -2 -29.12 -2 -29.13 -2 -29.14 -2 -29.15 -2 -29.16 -2 -29.17 -2 -29.18 -2 -29.19 -2 -29.2 -2 -29.21 -2 -29.22 -2 -29.23 -2 -29.24 -2 -29.25 -2 -29.26 -2 -29.27 -2 -29.28 -2 -29.29 -2 -29.3 -2 -29.31 -2 -29.32 -2 -29.33 -2 -29.34 -2 -29.35 -2 -29.36 -2 -29.37 -2 -29.38 -2 -29.39 -2 -29.4 -2 -29.41 -2 -29.42 -2 -29.43 -2 -29.44 -2 -29.45 -2 -29.46 -2 -29.47 -2 -29.48 -2 -29.49 -2 -29.5 -2 -29.51 -2 -29.52 -2 -29.53 -2 -29.54 -2 -29.55 -2 -29.56 -2 -29.57 -2 -29.58 -2 -29.59 -2 -29.6 -2 -29.61 -2 -29.62 -2 -29.63 -2 -29.64 -2 -29.65 -2 -29.66 -2 -29.67 -2 -29.68 -2 -29.69 -2 -29.7 -2 -29.71 -2 -29.72 -2 -29.73 -2 -29.74 -2 -29.75 -2 -29.76 -2 -29.77 -2 -29.78 -2 -29.79 -2 -29.8 -2 -29.81 -2 -29.82 -2 -29.83 -2 -29.84 -2 -29.85 -2 -29.86 -2 -29.87 -2 -29.88 -2 -29.89 -2 -29.9 -2 -29.91 -2 -29.92 -2 -29.93 -2 -29.94 -2 -29.95 -2 -29.96 -2 -29.97 -2 -29.98 -2 -29.99 -2 -30 -2 -& -@target G2.S1 -@type xy -0 0 -0.01 -0.00163006 -0.02 -0.00314664 -0.03 -0.0044514 -0.04 -0.0054598 -0.05 -0.00610652 -0.06 -0.0063496 -0.07 -0.00617312 -0.08 -0.00558817 -0.09 -0.00463223 -0.1 -0.00336677 -0.11 -0.00187339 -0.12 -0.00024718 -0.13 0.00139186 -0.14 0.0029351 -0.15 0.00428218 -0.16 0.00534551 -0.17 0.00605582 -0.18 0.00636653 -0.19 0.00625684 -0.2 0.00573299 -0.21 0.00482799 -0.22 0.00359955 -0.23 0.0021201 -0.24 0.000498006 -0.25 -0.00115308 -0.26 -0.00272522 -0.27 -0.00411539 -0.28 -0.00523204 -0.29 -0.0060008 -0.3 -0.00636922 -0.31 -0.00631004 -0.32 -0.00582294 -0.33 -0.00493455 -0.34 -0.00368936 -0.35 -0.00216465 -0.36 -0.000471089 -0.37 0.00128688 -0.38 0.00300088 -0.39 0.00456524 -0.4 0.00588331 -0.41 0.00687308 -0.42 0.00747184 -0.43 0.00763941 -0.44 0.00735992 -0.45 0.00663733 -0.46 0.005486 -0.47 0.00398872 -0.48 0.00221461 -0.49 0.000241712 -0.5 -0.00184891 -0.51 -0.00397911 -0.52 -0.00607925 -0.53 -0.0080929 -0.54 -0.00998045 -0.55 -0.0117212 -0.56 -0.0133138 -0.57 -0.0147681 -0.58 -0.0161286 -0.59 -0.0174398 -0.6 -0.0187493 -0.61 -0.0201015 -0.62 -0.0215309 -0.63 -0.0230556 -0.64 -0.0246713 -0.65 -0.0263468 -0.66 -0.028021 -0.67 -0.0296022 -0.68 -0.0309494 -0.69 -0.0319079 -0.7 -0.032313 -0.71 -0.0319858 -0.72 -0.0307474 -0.73 -0.0284299 -0.74 -0.0248878 -0.75 -0.0200084 -0.76 -0.0137228 -0.77 -0.00601333 -0.78 0.00307943 -0.79 0.0134966 -0.8 0.0250478 -0.81 0.037452 -0.82 0.0504235 -0.83 0.0636352 -0.84 0.076731 -0.85 0.0893401 -0.86 0.101093 -0.87 0.111638 -0.88 0.120657 -0.89 0.12788 -0.9 0.13305 -0.91 0.135963 -0.92 0.136683 -0.93 0.135254 -0.94 0.131795 -0.95 0.126505 -0.96 0.119643 -0.97 0.111523 -0.98 0.102497 -0.99 0.0929355 -1 0.0832105 -1.01 0.073683 -1.02 0.064731 -1.03 0.0566024 -1.04 0.0494992 -1.05 0.0435525 -1.06 0.0388192 -1.07 0.0352821 -1.08 0.0328539 -1.09 0.0313858 -1.1 0.0306782 -1.11 0.0304955 -1.12 0.0305815 -1.13 0.0306597 -1.14 0.030467 -1.15 0.0297917 -1.16 0.0284652 -1.17 0.0263724 -1.18 0.0234569 -1.19 0.0197235 -1.2 0.0152354 -1.21 0.0101091 -1.22 0.00450444 -1.23 -0.00138742 -1.24 -0.00735146 -1.25 -0.0131584 -1.26 -0.0186161 -1.27 -0.023566 -1.28 -0.0278926 -1.29 -0.0315334 -1.3 -0.0344834 -1.31 -0.0367966 -1.32 -0.0385826 -1.33 -0.0400001 -1.34 -0.0412451 -1.35 -0.0425469 -1.36 -0.0441564 -1.37 -0.0462819 -1.38 -0.0491024 -1.39 -0.052748 -1.4 -0.0572872 -1.41 -0.0627163 -1.42 -0.0689542 -1.43 -0.0758418 -1.44 -0.0831468 -1.45 -0.0905735 -1.46 -0.0977667 -1.47 -0.104296 -1.48 -0.109798 -1.49 -0.113919 -1.5 -0.116354 -1.51 -0.116868 -1.52 -0.11532 -1.53 -0.111679 -1.54 -0.106033 -1.55 -0.0985954 -1.56 -0.0897008 -1.57 -0.0797968 -1.58 -0.0694419 -1.59 -0.0593322 -1.6 -0.05013 -1.61 -0.0424988 -1.62 -0.0370681 -1.63 -0.034396 -1.64 -0.0349358 -1.65 -0.039005 -1.66 -0.0467605 -1.67 -0.0581809 -1.68 -0.0730574 -1.69 -0.0911475 -1.7 -0.111667 -1.71 -0.133819 -1.72 -0.156729 -1.73 -0.179445 -1.74 -0.200978 -1.75 -0.220352 -1.76 -0.236654 -1.77 -0.249082 -1.78 -0.256988 -1.79 -0.259918 -1.8 -0.257405 -1.81 -0.249574 -1.82 -0.236892 -1.83 -0.219919 -1.84 -0.199432 -1.85 -0.176404 -1.86 -0.151958 -1.87 -0.127314 -1.88 -0.103737 -1.89 -0.082472 -1.9 -0.0646866 -1.91 -0.0515696 -1.92 -0.0441078 -1.93 -0.0426392 -1.94 -0.0474392 -1.95 -0.0584893 -1.96 -0.075473 -1.97 -0.0977865 -1.98 -0.124563 -1.99 -0.154712 -2 -0.186967 -2.01 -0.219944 -2.02 -0.252181 -2.03 -0.282042 -2.04 -0.308281 -2.05 -0.329758 -2.06 -0.345559 -2.07 -0.355035 -2.08 -0.357838 -2.09 -0.353939 -2.1 -0.34363 -2.11 -0.32751 -2.12 -0.306462 -2.13 -0.281605 -2.14 -0.254165 -2.15 -0.225849 -2.16 -0.198138 -2.17 -0.172469 -2.18 -0.150169 -2.19 -0.132393 -2.2 -0.120064 -2.21 -0.113828 -2.22 -0.114024 -2.23 -0.120665 -2.24 -0.133434 -2.25 -0.151967 -2.26 -0.175033 -2.27 -0.201345 -2.28 -0.229544 -2.29 -0.258169 -2.3 -0.285722 -2.31 -0.310741 -2.32 -0.331864 -2.33 -0.347896 -2.34 -0.357855 -2.35 -0.361021 -2.36 -0.356656 -2.37 -0.344687 -2.38 -0.325585 -2.39 -0.299842 -2.4 -0.26819 -2.41 -0.231559 -2.42 -0.19102 -2.43 -0.147728 -2.44 -0.102859 -2.45 -0.0575495 -2.46 -0.0128415 -2.47 0.0303157 -2.48 0.0711116 -2.49 0.109181 -2.5 0.14431 -2.51 0.176516 -2.52 0.206033 -2.53 0.233282 -2.54 0.258836 -2.55 0.283369 -2.56 0.307609 -2.57 0.332277 -2.58 0.358049 -2.59 0.385605 -2.6 0.415224 -2.61 0.447063 -2.62 0.481058 -2.63 0.516913 -2.64 0.554107 -2.65 0.591907 -2.66 0.6294 -2.67 0.665534 -2.68 0.699165 -2.69 0.729114 -2.7 0.753821 -2.71 0.77245 -2.72 0.784138 -2.73 0.788187 -2.74 0.784138 -2.75 0.771797 -2.76 0.75125 -2.77 0.72287 -2.78 0.687297 -2.79 0.645419 -2.8 0.598333 -2.81 0.547168 -2.82 0.493534 -2.83 0.43894 -2.84 0.384775 -2.85 0.332346 -2.86 0.28282 -2.87 0.237174 -2.88 0.196167 -2.89 0.160304 -2.9 0.129829 -2.91 0.104723 -2.92 0.0848813 -2.93 0.0697485 -2.94 0.0584037 -2.95 0.0499883 -2.96 0.0435559 -2.97 0.0381262 -2.98 0.032737 -2.99 0.0264951 -3 0.0186212 -3.01 0.00848747 -3.02 -0.00435354 -3.03 -0.0202116 -3.04 -0.0392207 -3.05 -0.0610193 -3.06 -0.0852295 -3.07 -0.111318 -3.08 -0.138631 -3.09 -0.166432 -3.1 -0.193944 -3.11 -0.220398 -3.12 -0.245068 -3.13 -0.267315 -3.14 -0.286602 -3.15 -0.302311 -3.16 -0.31447 -3.17 -0.323063 -3.18 -0.328236 -3.19 -0.330289 -3.2 -0.329651 -3.21 -0.326854 -3.22 -0.322502 -3.23 -0.317237 -3.24 -0.311699 -3.25 -0.306494 -3.26 -0.302243 -3.27 -0.299365 -3.28 -0.298149 -3.29 -0.298765 -3.3 -0.301242 -3.31 -0.305476 -3.32 -0.311239 -3.33 -0.318195 -3.34 -0.325921 -3.35 -0.333939 -3.36 -0.341736 -3.37 -0.348743 -3.38 -0.35445 -3.39 -0.358462 -3.4 -0.360439 -3.41 -0.360136 -3.42 -0.357409 -3.43 -0.352217 -3.44 -0.344618 -3.45 -0.334759 -3.46 -0.322858 -3.47 -0.309188 -3.48 -0.294011 -3.49 -0.277648 -3.5 -0.26044 -3.51 -0.242619 -3.52 -0.224351 -3.53 -0.205722 -3.54 -0.18673 -3.55 -0.167283 -3.56 -0.147198 -3.57 -0.126218 -3.58 -0.10402 -3.59 -0.0802034 -3.6 -0.0542593 -3.61 -0.0259048 -3.62 0.00520484 -3.63 0.0393535 -3.64 0.0767417 -3.65 0.117468 -3.66 0.161514 -3.67 0.208738 -3.68 0.258868 -3.69 0.311509 -3.7 0.366153 -3.71 0.422241 -3.72 0.478925 -3.73 0.535451 -3.74 0.591038 -3.75 0.644908 -3.76 0.696311 -3.77 0.744547 -3.78 0.78899 -3.79 0.829105 -3.8 0.864459 -3.81 0.89473 -3.82 0.919389 -3.83 0.938563 -3.84 0.95236 -3.85 0.960882 -3.86 0.964303 -3.87 0.962849 -3.88 0.956779 -3.89 0.946369 -3.9 0.931895 -3.91 0.913618 -3.92 0.891776 -3.93 0.866439 -3.94 0.837829 -3.95 0.806188 -3.96 0.771628 -3.97 0.734242 -3.98 0.694123 -3.99 0.65137 -4 0.606108 -4.01 0.558497 -4.02 0.508745 -4.03 0.457119 -4.04 0.403915 -4.05 0.349547 -4.06 0.294553 -4.07 0.239453 -4.08 0.184808 -4.09 0.131202 -4.1 0.0792293 -4.11 0.0294679 -4.12 -0.0175368 -4.13 -0.0612949 -4.14 -0.101391 -4.15 -0.137457 -4.16 -0.169037 -4.17 -0.196313 -4.18 -0.219323 -4.19 -0.238219 -4.2 -0.253266 -4.21 -0.264822 -4.22 -0.273326 -4.23 -0.279274 -4.24 -0.283199 -4.25 -0.285643 -4.26 -0.287137 -4.27 -0.288167 -4.28 -0.289214 -4.29 -0.290613 -4.3 -0.292601 -4.31 -0.295311 -4.32 -0.298767 -4.33 -0.30289 -4.34 -0.307506 -4.35 -0.312353 -4.36 -0.317106 -4.37 -0.321389 -4.38 -0.324736 -4.39 -0.326743 -4.4 -0.327058 -4.41 -0.325359 -4.42 -0.32139 -4.43 -0.314978 -4.44 -0.306036 -4.45 -0.294579 -4.46 -0.280715 -4.47 -0.264645 -4.48 -0.246651 -4.49 -0.227043 -4.5 -0.206272 -4.51 -0.184834 -4.52 -0.163176 -4.53 -0.141732 -4.54 -0.120903 -4.55 -0.101039 -4.56 -0.0824265 -4.57 -0.0652796 -4.58 -0.0497315 -4.59 -0.0358344 -4.6 -0.0235973 -4.61 -0.0129578 -4.62 -0.00366583 -4.63 0.00448234 -4.64 0.0117136 -4.65 0.0182601 -4.66 0.0243406 -4.67 0.0301444 -4.68 0.0358159 -4.69 0.0414428 -4.7 0.0470479 -4.71 0.0525834 -4.72 0.0579074 -4.73 0.062833 -4.74 0.0671146 -4.75 0.0704661 -4.76 0.0725772 -4.77 0.0731307 -4.78 0.0718218 -4.79 0.0683763 -4.8 0.0625685 -4.81 0.0542368 -4.82 0.0432964 -4.83 0.0295821 -4.84 0.0133501 -4.85 -0.00517487 -4.86 -0.0257094 -4.87 -0.0478956 -4.88 -0.0713147 -4.89 -0.095504 -4.9 -0.119976 -4.91 -0.144241 -4.92 -0.167824 -4.93 -0.19029 -4.94 -0.21117 -4.95 -0.230174 -4.96 -0.247139 -4.97 -0.261959 -4.98 -0.274624 -4.99 -0.28522 -5 -0.293921 -5.01 -0.300979 -5.02 -0.30671 -5.03 -0.311473 -5.04 -0.315651 -5.05 -0.319635 -5.06 -0.323827 -5.07 -0.328547 -5.08 -0.334047 -5.09 -0.340503 -5.1 -0.347997 -5.11 -0.35652 -5.12 -0.365963 -5.13 -0.376123 -5.14 -0.386713 -5.15 -0.39737 -5.16 -0.407657 -5.17 -0.417042 -5.18 -0.425073 -5.19 -0.431285 -5.2 -0.435249 -5.21 -0.436593 -5.22 -0.435016 -5.23 -0.430313 -5.24 -0.422377 -5.25 -0.411216 -5.26 -0.396949 -5.27 -0.379803 -5.28 -0.359964 -5.29 -0.338085 -5.3 -0.314685 -5.31 -0.290333 -5.32 -0.265631 -5.33 -0.24119 -5.34 -0.217604 -5.35 -0.195432 -5.36 -0.175173 -5.37 -0.157254 -5.38 -0.14201 -5.39 -0.129866 -5.4 -0.120814 -5.41 -0.114817 -5.42 -0.111781 -5.43 -0.111519 -5.44 -0.113766 -5.45 -0.118193 -5.46 -0.124428 -5.47 -0.13207 -5.48 -0.140712 -5.49 -0.14996 -5.5 -0.159446 -5.51 -0.16882 -5.52 -0.177827 -5.53 -0.186283 -5.54 -0.194073 -5.55 -0.201155 -5.56 -0.207551 -5.57 -0.213339 -5.58 -0.218645 -5.59 -0.223627 -5.6 -0.228461 -5.61 -0.233328 -5.62 -0.238405 -5.63 -0.243812 -5.64 -0.249622 -5.65 -0.255849 -5.66 -0.262443 -5.67 -0.269283 -5.68 -0.276178 -5.69 -0.282871 -5.7 -0.289047 -5.71 -0.294343 -5.72 -0.298338 -5.73 -0.300497 -5.74 -0.300489 -5.75 -0.297922 -5.76 -0.292442 -5.77 -0.283751 -5.78 -0.27162 -5.79 -0.255898 -5.8 -0.236526 -5.81 -0.213533 -5.82 -0.187042 -5.83 -0.157266 -5.84 -0.124305 -5.85 -0.0887644 -5.86 -0.0510801 -5.87 -0.0117167 -5.88 0.0288421 -5.89 0.0701108 -5.9 0.111619 -5.91 0.152929 -5.92 0.193644 -5.93 0.233428 -5.94 0.272002 -5.95 0.309071 -5.96 0.344542 -5.97 0.378375 -5.98 0.410559 -5.99 0.441128 -6 0.470148 -6.01 0.497701 -6.02 0.523876 -6.03 0.548747 -6.04 0.572369 -6.05 0.594755 -6.06 0.615824 -6.07 0.635488 -6.08 0.653648 -6.09 0.670109 -6.1 0.684632 -6.11 0.696939 -6.12 0.706729 -6.13 0.713694 -6.14 0.717529 -6.15 0.717956 -6.16 0.714737 -6.17 0.707595 -6.18 0.696315 -6.19 0.681089 -6.2 0.662004 -6.21 0.639249 -6.22 0.613108 -6.23 0.58396 -6.24 0.552269 -6.25 0.518574 -6.26 0.483467 -6.27 0.447585 -6.28 0.411584 -6.29 0.376202 -6.3 0.342063 -6.31 0.309747 -6.32 0.279766 -6.33 0.25256 -6.34 0.228477 -6.35 0.207774 -6.36 0.190606 -6.37 0.177037 -6.38 0.167039 -6.39 0.160502 -6.4 0.157455 -6.41 0.157449 -6.42 0.160185 -6.43 0.165373 -6.44 0.172725 -6.45 0.181965 -6.46 0.192848 -6.47 0.205166 -6.48 0.218755 -6.49 0.2335 -6.5 0.249332 -6.51 0.266281 -6.52 0.284331 -6.53 0.303491 -6.54 0.323805 -6.55 0.345308 -6.56 0.368013 -6.57 0.391898 -6.58 0.416888 -6.59 0.44285 -6.6 0.469579 -6.61 0.4968 -6.62 0.524151 -6.63 0.551163 -6.64 0.577337 -6.65 0.602134 -6.66 0.624985 -6.67 0.645303 -6.68 0.662514 -6.69 0.676067 -6.7 0.685464 -6.71 0.69027 -6.72 0.690139 -6.73 0.684721 -6.74 0.673684 -6.75 0.657329 -6.76 0.63578 -6.77 0.60928 -6.78 0.578182 -6.79 0.542931 -6.8 0.504057 -6.81 0.462149 -6.82 0.417836 -6.83 0.371769 -6.84 0.324593 -6.85 0.276943 -6.86 0.229459 -6.87 0.182645 -6.88 0.136927 -6.89 0.0926464 -6.9 0.0500517 -6.91 0.00930097 -6.92 -0.0295364 -6.93 -0.0664719 -6.94 -0.101588 -6.95 -0.135026 -6.96 -0.166886 -6.97 -0.197475 -6.98 -0.22703 -6.99 -0.255764 -7 -0.283867 -7.01 -0.311494 -7.02 -0.338758 -7.03 -0.365722 -7.04 -0.392398 -7.05 -0.418746 -7.06 -0.444675 -7.07 -0.470019 -7.08 -0.494605 -7.09 -0.518255 -7.1 -0.540765 -7.11 -0.561933 -7.12 -0.581571 -7.13 -0.599513 -7.14 -0.615625 -7.15 -0.629813 -7.16 -0.642029 -7.17 -0.652269 -7.18 -0.66052 -7.19 -0.666859 -7.2 -0.671505 -7.21 -0.674624 -7.22 -0.676406 -7.23 -0.677051 -7.24 -0.676768 -7.25 -0.675758 -7.26 -0.674207 -7.27 -0.672283 -7.28 -0.670123 -7.29 -0.667832 -7.3 -0.665481 -7.31 -0.663104 -7.32 -0.660693 -7.33 -0.658208 -7.34 -0.655583 -7.35 -0.65273 -7.36 -0.649544 -7.37 -0.645912 -7.38 -0.64172 -7.39 -0.636857 -7.4 -0.631222 -7.41 -0.624658 -7.42 -0.617159 -7.43 -0.608681 -7.44 -0.599204 -7.45 -0.588727 -7.46 -0.577271 -7.47 -0.564874 -7.48 -0.551589 -7.49 -0.537485 -7.5 -0.522635 -7.51 -0.507122 -7.52 -0.491 -7.53 -0.474385 -7.54 -0.457369 -7.55 -0.440031 -7.56 -0.422447 -7.57 -0.40469 -7.58 -0.386829 -7.59 -0.368933 -7.6 -0.351069 -7.61 -0.333304 -7.62 -0.315709 -7.63 -0.29837 -7.64 -0.281368 -7.65 -0.264772 -7.66 -0.248662 -7.67 -0.233118 -7.68 -0.218219 -7.69 -0.204038 -7.7 -0.190641 -7.71 -0.178086 -7.72 -0.166417 -7.73 -0.155663 -7.74 -0.14586 -7.75 -0.13702 -7.76 -0.129067 -7.77 -0.12195 -7.78 -0.1156 -7.79 -0.109932 -7.8 -0.104846 -7.81 -0.100228 -7.82 -0.0959576 -7.83 -0.0919098 -7.84 -0.0879575 -7.85 -0.0839745 -7.86 -0.0798243 -7.87 -0.0754008 -7.88 -0.0706054 -7.89 -0.0653512 -7.9 -0.0595635 -7.91 -0.0531793 -7.92 -0.0461469 -7.93 -0.0384243 -7.94 -0.0299776 -7.95 -0.0207795 -7.96 -0.0108074 -7.97 1.4324e-05 -7.98 0.011652 -7.99 0.0241148 -8 0.0374133 -8.01 0.051554 -8.02 0.066537 -8.03 0.0823533 -8.04 0.0989818 -8.05 0.116386 -8.06 0.134509 -8.07 0.153275 -8.08 0.1726 -8.09 0.192323 -8.1 0.212269 -8.11 0.232246 -8.12 0.252039 -8.13 0.271411 -8.14 0.290107 -8.15 0.307862 -8.16 0.324412 -8.17 0.339495 -8.18 0.352866 -8.19 0.364223 -8.2 0.373363 -8.21 0.380224 -8.22 0.384718 -8.23 0.386815 -8.24 0.386544 -8.25 0.383992 -8.26 0.379308 -8.27 0.372694 -8.28 0.364404 -8.29 0.354736 -8.3 0.344005 -8.31 0.332574 -8.32 0.320862 -8.33 0.309229 -8.34 0.298017 -8.35 0.287542 -8.36 0.278082 -8.37 0.269868 -8.38 0.263078 -8.39 0.257834 -8.4 0.254199 -8.41 0.252187 -8.42 0.251838 -8.43 0.252931 -8.44 0.255316 -8.45 0.258809 -8.46 0.263206 -8.47 0.26829 -8.48 0.273841 -8.49 0.279646 -8.5 0.285509 -8.51 0.291255 -8.52 0.296735 -8.53 0.301804 -8.54 0.306396 -8.55 0.310466 -8.56 0.313995 -8.57 0.316986 -8.58 0.319459 -8.59 0.321447 -8.6 0.322984 -8.61 0.324104 -8.62 0.32483 -8.63 0.325173 -8.64 0.325104 -8.65 0.324598 -8.66 0.323613 -8.67 0.322076 -8.68 0.319898 -8.69 0.316979 -8.7 0.313213 -8.71 0.308498 -8.72 0.302737 -8.73 0.295853 -8.74 0.287789 -8.75 0.27848 -8.76 0.26793 -8.77 0.256243 -8.78 0.243514 -8.79 0.229877 -8.8 0.215503 -8.81 0.200591 -8.82 0.185371 -8.83 0.170087 -8.84 0.154993 -8.85 0.140342 -8.86 0.126393 -8.87 0.113426 -8.88 0.101587 -8.89 0.0910259 -8.9 0.0818508 -8.91 0.0741216 -8.92 0.0678485 -8.93 0.0629928 -8.94 0.0594682 -8.95 0.0571451 -8.96 0.0558558 -8.97 0.0554028 -8.98 0.0555921 -8.99 0.0561267 -9 0.0567672 -9.01 0.0572795 -9.02 0.0574434 -9.03 0.0570594 -9.04 0.0559545 -9.05 0.0539866 -9.06 0.0510472 -9.07 0.0470627 -9.08 0.0419941 -9.09 0.0357703 -9.1 0.0284698 -9.11 0.0201625 -9.12 0.0109218 -9.13 0.000835564 -9.14 -0.00999868 -9.15 -0.021479 -9.16 -0.0335036 -9.17 -0.0459744 -9.18 -0.0588001 -9.19 -0.0718986 -9.2 -0.0852037 -9.21 -0.0986458 -9.22 -0.112169 -9.23 -0.12573 -9.24 -0.139293 -9.25 -0.152826 -9.26 -0.166299 -9.27 -0.179679 -9.28 -0.192936 -9.29 -0.20603 -9.3 -0.218921 -9.31 -0.231552 -9.32 -0.243861 -9.33 -0.255804 -9.34 -0.26732 -9.35 -0.278349 -9.36 -0.288833 -9.37 -0.298715 -9.38 -0.307944 -9.39 -0.316476 -9.4 -0.324274 -9.41 -0.331312 -9.42 -0.337563 -9.43 -0.342979 -9.44 -0.347613 -9.45 -0.351475 -9.46 -0.354583 -9.47 -0.356958 -9.48 -0.358626 -9.49 -0.35961 -9.5 -0.359935 -9.51 -0.359622 -9.52 -0.358688 -9.53 -0.357146 -9.54 -0.354959 -9.55 -0.352171 -9.56 -0.34878 -9.57 -0.344781 -9.58 -0.340165 -9.59 -0.334923 -9.6 -0.329049 -9.61 -0.322538 -9.62 -0.315391 -9.63 -0.307611 -9.64 -0.299212 -9.65 -0.29018 -9.66 -0.280563 -9.67 -0.270405 -9.68 -0.259743 -9.69 -0.248616 -9.7 -0.237067 -9.71 -0.225136 -9.72 -0.212862 -9.73 -0.200281 -9.74 -0.187423 -9.75 -0.174311 -9.76 -0.160954 -9.77 -0.14736 -9.78 -0.133537 -9.79 -0.119478 -9.8 -0.105169 -9.81 -0.0905918 -9.82 -0.075724 -9.83 -0.0605421 -9.84 -0.0450219 -9.85 -0.0291406 -9.86 -0.012877 -9.87 0.00379658 -9.88 0.0209077 -9.89 0.0384463 -9.9 0.0564207 -9.91 0.0748373 -9.92 0.0937015 -9.93 0.113019 -9.94 0.132799 -9.95 0.153049 -9.96 0.173783 -9.97 0.195018 -9.98 0.216777 -9.99 0.239114 -10 0.262015 -10.01 0.285496 -10.02 0.309568 -10.03 0.33423 -10.04 0.359467 -10.05 0.385244 -10.06 0.411504 -10.07 0.438161 -10.08 0.4651 -10.09 0.492172 -10.1 0.519175 -10.11 0.545873 -10.12 0.57201 -10.13 0.597299 -10.14 0.621428 -10.15 0.644066 -10.16 0.664869 -10.17 0.683493 -10.18 0.699594 -10.19 0.712845 -10.2 0.722943 -10.21 0.729427 -10.22 0.732143 -10.23 0.731 -10.24 0.725877 -10.25 0.71671 -10.26 0.703494 -10.27 0.686281 -10.28 0.66518 -10.29 0.640351 -10.3 0.612003 -10.31 0.580382 -10.32 0.545673 -10.33 0.508197 -10.34 0.468392 -10.35 0.426582 -10.36 0.383085 -10.37 0.338208 -10.38 0.292245 -10.39 0.245466 -10.4 0.198118 -10.41 0.150424 -10.42 0.102581 -10.43 0.0547676 -10.44 0.00715589 -10.45 -0.040122 -10.46 -0.0869436 -10.47 -0.133193 -10.48 -0.178758 -10.49 -0.223524 -10.5 -0.267373 -10.51 -0.310181 -10.52 -0.351816 -10.53 -0.392137 -10.54 -0.430994 -10.55 -0.468114 -10.56 -0.503455 -10.57 -0.536871 -10.58 -0.568227 -10.59 -0.5974 -10.6 -0.624289 -10.61 -0.648813 -10.62 -0.670918 -10.63 -0.690579 -10.64 -0.7078 -10.65 -0.722615 -10.66 -0.734945 -10.67 -0.745006 -10.68 -0.752942 -10.69 -0.758884 -10.7 -0.762971 -10.71 -0.765352 -10.72 -0.766171 -10.73 -0.765566 -10.74 -0.763666 -10.75 -0.760582 -10.76 -0.756407 -10.77 -0.751169 -10.78 -0.744938 -10.79 -0.737772 -10.8 -0.729678 -10.81 -0.720648 -10.82 -0.710665 -10.83 -0.699702 -10.84 -0.687732 -10.85 -0.674729 -10.86 -0.660673 -10.87 -0.645557 -10.88 -0.629353 -10.89 -0.612067 -10.9 -0.593786 -10.91 -0.574562 -10.92 -0.554461 -10.93 -0.533559 -10.94 -0.511939 -10.95 -0.489688 -10.96 -0.466891 -10.97 -0.44363 -10.98 -0.419973 -10.99 -0.395978 -11 -0.371677 -11.01 -0.347115 -11.02 -0.322303 -11.03 -0.297235 -11.04 -0.271892 -11.05 -0.246249 -11.06 -0.220273 -11.07 -0.193932 -11.08 -0.167199 -11.09 -0.140055 -11.1 -0.112495 -11.11 -0.0845068 -11.12 -0.0561584 -11.13 -0.027512 -11.14 0.00134747 -11.15 0.0303133 -11.16 0.0592592 -11.17 0.0880424 -11.18 0.116509 -11.19 0.144499 -11.2 0.171853 -11.21 0.198415 -11.22 0.223982 -11.23 0.248458 -11.24 0.271759 -11.25 0.293813 -11.26 0.314572 -11.27 0.334019 -11.28 0.352159 -11.29 0.369027 -11.3 0.384673 -11.31 0.399166 -11.32 0.412585 -11.33 0.424975 -11.34 0.436435 -11.35 0.447071 -11.36 0.456945 -11.37 0.466102 -11.38 0.474568 -11.39 0.482351 -11.4 0.48944 -11.41 0.495806 -11.42 0.501405 -11.43 0.506184 -11.44 0.51006 -11.45 0.512948 -11.46 0.514839 -11.47 0.515695 -11.48 0.515491 -11.49 0.514223 -11.5 0.511907 -11.51 0.508581 -11.52 0.504302 -11.53 0.499145 -11.54 0.493201 -11.55 0.48656 -11.56 0.479298 -11.57 0.471551 -11.58 0.463403 -11.59 0.454914 -11.6 0.446124 -11.61 0.437042 -11.62 0.427649 -11.63 0.417895 -11.64 0.407699 -11.65 0.396955 -11.66 0.385536 -11.67 0.373236 -11.68 0.359953 -11.69 0.345553 -11.7 0.329915 -11.71 0.312947 -11.72 0.29459 -11.73 0.274829 -11.74 0.253699 -11.75 0.231286 -11.76 0.207733 -11.77 0.183235 -11.78 0.158011 -11.79 0.132398 -11.8 0.106733 -11.81 0.0813574 -11.82 0.0566192 -11.83 0.0328585 -11.84 0.0103954 -11.85 -0.0104835 -11.86 -0.0295358 -11.87 -0.0465733 -11.88 -0.061469 -11.89 -0.0740796 -11.9 -0.0844157 -11.91 -0.0926447 -11.92 -0.098907 -11.93 -0.103393 -11.94 -0.106333 -11.95 -0.107983 -11.96 -0.108611 -11.97 -0.108486 -11.98 -0.107859 -11.99 -0.106956 -12 -0.105963 -12.01 -0.105027 -12.02 -0.104224 -12.03 -0.103569 -12.04 -0.103023 -12.05 -0.102491 -12.06 -0.101835 -12.07 -0.100884 -12.08 -0.0994386 -12.09 -0.0972924 -12.1 -0.0942401 -12.11 -0.0900864 -12.12 -0.0845802 -12.13 -0.0776902 -12.14 -0.0693571 -12.15 -0.0595779 -12.16 -0.0484085 -12.17 -0.0359627 -12.18 -0.0224085 -12.19 -0.00796127 -12.2 0.00712637 -12.21 0.0225757 -12.22 0.0380951 -12.23 0.053362 -12.24 0.0680959 -12.25 0.0820604 -12.26 0.0950592 -12.27 0.106947 -12.28 0.117639 -12.29 0.127107 -12.3 0.135388 -12.31 0.142574 -12.32 0.148812 -12.33 0.154287 -12.34 0.159205 -12.35 0.163834 -12.36 0.168429 -12.37 0.173216 -12.38 0.178391 -12.39 0.184118 -12.4 0.190506 -12.41 0.197614 -12.42 0.205438 -12.43 0.213916 -12.44 0.222925 -12.45 0.232296 -12.46 0.241785 -12.47 0.251118 -12.48 0.260019 -12.49 0.268204 -12.5 0.275398 -12.51 0.281349 -12.52 0.285836 -12.53 0.288684 -12.54 0.289769 -12.55 0.289022 -12.56 0.286404 -12.57 0.281899 -12.58 0.275726 -12.59 0.268043 -12.6 0.259045 -12.61 0.248949 -12.62 0.237987 -12.63 0.226389 -12.64 0.214375 -12.65 0.202139 -12.66 0.189843 -12.67 0.177608 -12.68 0.165519 -12.69 0.153586 -12.7 0.141775 -12.71 0.130004 -12.72 0.118156 -12.73 0.106077 -12.74 0.0935946 -12.75 0.0805212 -12.76 0.06667 -12.77 0.0518634 -12.78 0.0359441 -12.79 0.0187036 -12.8 0.000103478 -12.81 -0.0198776 -12.82 -0.0412351 -12.83 -0.0639187 -12.84 -0.0878345 -12.85 -0.112849 -12.86 -0.138795 -12.87 -0.165478 -12.88 -0.192688 -12.89 -0.220202 -12.9 -0.247792 -12.91 -0.275223 -12.92 -0.302296 -12.93 -0.328838 -12.94 -0.354701 -12.95 -0.379764 -12.96 -0.403936 -12.97 -0.427154 -12.98 -0.449379 -12.99 -0.470594 -13 -0.490798 -13.01 -0.509971 -13.02 -0.528109 -13.03 -0.545272 -13.04 -0.561463 -13.05 -0.576675 -13.06 -0.590889 -13.07 -0.604068 -13.08 -0.61616 -13.09 -0.627101 -13.1 -0.636812 -13.11 -0.645208 -13.12 -0.652183 -13.13 -0.657564 -13.14 -0.661362 -13.15 -0.663512 -13.16 -0.663964 -13.17 -0.662689 -13.18 -0.659684 -13.19 -0.654967 -13.2 -0.648587 -13.21 -0.640614 -13.22 -0.631142 -13.23 -0.620286 -13.24 -0.608096 -13.25 -0.594811 -13.26 -0.580587 -13.27 -0.565575 -13.28 -0.549928 -13.29 -0.533787 -13.3 -0.517287 -13.31 -0.500551 -13.32 -0.483689 -13.33 -0.466795 -13.34 -0.449953 -13.35 -0.433242 -13.36 -0.41672 -13.37 -0.400434 -13.38 -0.384423 -13.39 -0.368724 -13.4 -0.353369 -13.41 -0.338388 -13.42 -0.323807 -13.43 -0.30965 -13.44 -0.295936 -13.45 -0.28268 -13.46 -0.269906 -13.47 -0.257606 -13.48 -0.245743 -13.49 -0.234282 -13.5 -0.223166 -13.51 -0.212323 -13.52 -0.201659 -13.53 -0.191059 -13.54 -0.180394 -13.55 -0.169516 -13.56 -0.158265 -13.57 -0.146461 -13.58 -0.133898 -13.59 -0.120446 -13.6 -0.105953 -13.61 -0.0902876 -13.62 -0.07334 -13.63 -0.0550287 -13.64 -0.0353036 -13.65 -0.0141482 -13.66 0.00841948 -13.67 0.0323473 -13.68 0.0575597 -13.69 0.0840044 -13.7 0.111455 -13.71 0.139755 -13.72 0.168737 -13.73 0.198231 -13.74 0.228069 -13.75 0.258091 -13.76 0.28815 -13.77 0.318115 -13.78 0.347874 -13.79 0.377335 -13.8 0.406392 -13.81 0.435005 -13.82 0.463127 -13.83 0.490715 -13.84 0.517723 -13.85 0.544095 -13.86 0.569763 -13.87 0.594638 -13.88 0.618603 -13.89 0.641518 -13.9 0.663209 -13.91 0.683391 -13.92 0.701852 -13.93 0.718376 -13.94 0.732698 -13.95 0.744549 -13.96 0.753667 -13.97 0.759806 -13.98 0.762745 -13.99 0.762304 -14 0.758349 -14.01 0.750801 -14.02 0.739517 -14.03 0.724537 -14.04 0.706135 -14.05 0.684503 -14.06 0.659889 -14.07 0.632597 -14.08 0.602969 -14.09 0.571378 -14.1 0.538216 -14.11 0.503876 -14.12 0.468744 -14.13 0.43318 -14.14 0.397535 -14.15 0.362105 -14.16 0.327114 -14.17 0.292729 -14.18 0.259059 -14.19 0.226161 -14.2 0.194038 -14.21 0.162655 -14.22 0.13194 -14.23 0.101802 -14.24 0.0721388 -14.25 0.0428723 -14.26 0.0138887 -14.27 -0.0148634 -14.28 -0.0433981 -14.29 -0.0716855 -14.3 -0.0996482 -14.31 -0.127159 -14.32 -0.154045 -14.33 -0.180088 -14.34 -0.205036 -14.35 -0.22861 -14.36 -0.250394 -14.37 -0.27015 -14.38 -0.287615 -14.39 -0.302532 -14.4 -0.314677 -14.41 -0.323872 -14.42 -0.329993 -14.43 -0.332972 -14.44 -0.332804 -14.45 -0.329542 -14.46 -0.323296 -14.47 -0.314108 -14.48 -0.302254 -14.49 -0.288061 -14.5 -0.271793 -14.51 -0.253726 -14.52 -0.234132 -14.53 -0.213271 -14.54 -0.191383 -14.55 -0.168682 -14.56 -0.145345 -14.57 -0.121515 -14.58 -0.0972923 -14.59 -0.0727474 -14.6 -0.0479358 -14.61 -0.0228731 -14.62 0.00244032 -14.63 0.0280105 -14.64 0.0538422 -14.65 0.07993 -14.66 0.106252 -14.67 0.132763 -14.68 0.15939 -14.69 0.186031 -14.7 0.212534 -14.71 0.238734 -14.72 0.264444 -14.73 0.289459 -14.74 0.313563 -14.75 0.336539 -14.76 0.358173 -14.77 0.378268 -14.78 0.396645 -14.79 0.413154 -14.8 0.427675 -14.81 0.439965 -14.82 0.450126 -14.83 0.458152 -14.84 0.464064 -14.85 0.467906 -14.86 0.469744 -14.87 0.469653 -14.88 0.467713 -14.89 0.464 -14.9 0.458579 -14.91 0.451501 -14.92 0.442699 -14.93 0.432243 -14.94 0.420138 -14.95 0.40634 -14.96 0.39079 -14.97 0.373413 -14.98 0.354134 -14.99 0.33288 -15 0.309592 -15.01 0.284232 -15.02 0.256792 -15.03 0.227221 -15.04 0.195619 -15.05 0.162186 -15.06 0.1271 -15.07 0.0905823 -15.08 0.0529009 -15.09 0.0143571 -15.1 -0.0247195 -15.11 -0.0639822 -15.12 -0.103078 -15.13 -0.141658 -15.14 -0.179363 -15.15 -0.215836 -15.16 -0.250865 -15.17 -0.284241 -15.18 -0.315808 -15.19 -0.345465 -15.2 -0.373166 -15.21 -0.398916 -15.22 -0.42277 -15.23 -0.444819 -15.24 -0.465188 -15.25 -0.484007 -15.26 -0.50136 -15.27 -0.517493 -15.28 -0.532538 -15.29 -0.546596 -15.3 -0.55974 -15.31 -0.572002 -15.32 -0.583372 -15.33 -0.593801 -15.34 -0.6032 -15.35 -0.611446 -15.36 -0.618389 -15.37 -0.623749 -15.38 -0.627429 -15.39 -0.62927 -15.4 -0.629121 -15.41 -0.626855 -15.42 -0.622384 -15.43 -0.615661 -15.44 -0.606686 -15.45 -0.59551 -15.46 -0.582234 -15.47 -0.567006 -15.48 -0.549934 -15.49 -0.531319 -15.5 -0.511454 -15.51 -0.490604 -15.52 -0.469036 -15.53 -0.447008 -15.54 -0.424758 -15.55 -0.402496 -15.56 -0.380396 -15.57 -0.35859 -15.58 -0.337166 -15.59 -0.316184 -15.6 -0.29564 -15.61 -0.275475 -15.62 -0.255611 -15.63 -0.23595 -15.64 -0.21638 -15.65 -0.196785 -15.66 -0.177053 -15.67 -0.157086 -15.68 -0.136807 -15.69 -0.11617 -15.7 -0.095149 -15.71 -0.0737562 -15.72 -0.0520715 -15.73 -0.0301868 -15.74 -0.00822149 -15.75 0.0136824 -15.76 0.0353678 -15.77 0.0566697 -15.78 0.0774233 -15.79 0.0974717 -15.8 0.116672 -15.81 0.134899 -15.82 0.151978 -15.83 0.167918 -15.84 0.182685 -15.85 0.196274 -15.86 0.208705 -15.87 0.220021 -15.88 0.23028 -15.89 0.239552 -15.9 0.247911 -15.91 0.255429 -15.92 0.262174 -15.93 0.268157 -15.94 0.273455 -15.95 0.278097 -15.96 0.282083 -15.97 0.2854 -15.98 0.288019 -15.99 0.289901 -16 0.291001 -16.01 0.291276 -16.02 0.290684 -16.03 0.289195 -16.04 0.286749 -16.05 0.283368 -16.06 0.279101 -16.07 0.273994 -16.08 0.268111 -16.09 0.261532 -16.1 0.254353 -16.11 0.246675 -16.12 0.238603 -16.13 0.230238 -16.14 0.221673 -16.15 0.212982 -16.16 0.204225 -16.17 0.195439 -16.18 0.186627 -16.19 0.177771 -16.2 0.168827 -16.21 0.159734 -16.22 0.150418 -16.23 0.140797 -16.24 0.130788 -16.25 0.120317 -16.26 0.109318 -16.27 0.0977294 -16.28 0.0855838 -16.29 0.0729155 -16.3 0.0597955 -16.31 0.0463314 -16.32 0.0326648 -16.33 0.018967 -16.34 0.00543241 -16.35 -0.00773025 -16.36 -0.0203074 -16.37 -0.0320913 -16.38 -0.042804 -16.39 -0.0523506 -16.4 -0.0606124 -16.41 -0.0675165 -16.42 -0.0730407 -16.43 -0.0772157 -16.44 -0.0801247 -16.45 -0.0818994 -16.46 -0.0827141 -16.47 -0.0827762 -16.48 -0.0823151 -16.49 -0.0815667 -16.5 -0.0807937 -16.51 -0.080209 -16.52 -0.0799857 -16.53 -0.08025 -16.54 -0.0810714 -16.55 -0.0824567 -16.56 -0.0843463 -16.57 -0.0866153 -16.58 -0.0890774 -16.59 -0.0914926 -16.6 -0.0935506 -16.61 -0.0949124 -16.62 -0.0952677 -16.63 -0.0943048 -16.64 -0.0917401 -16.65 -0.0873353 -16.66 -0.0809134 -16.67 -0.072372 -16.68 -0.0616926 -16.69 -0.0489475 -16.7 -0.0343011 -16.71 -0.0179722 -16.72 -0.00031035 -16.73 0.0181861 -16.74 0.0370443 -16.75 0.0557572 -16.76 0.0738041 -16.77 0.0906715 -16.78 0.105874 -16.79 0.118976 -16.8 0.129605 -16.81 0.137471 -16.82 0.142339 -16.83 0.143946 -16.84 0.1425 -16.85 0.138113 -16.86 0.130984 -16.87 0.121385 -16.88 0.109647 -16.89 0.096142 -16.9 0.0812613 -16.91 0.0653983 -16.92 0.0489281 -16.93 0.0321902 -16.94 0.0154919 -16.95 -0.000934485 -16.96 -0.0169447 -16.97 -0.0324661 -16.98 -0.0474953 -16.99 -0.0620906 -17 -0.0763618 -17.01 -0.090456 -17.02 -0.104541 -17.03 -0.118789 -17.04 -0.133357 -17.05 -0.148398 -17.06 -0.163974 -17.07 -0.180078 -17.08 -0.196644 -17.09 -0.213527 -17.1 -0.23051 -17.11 -0.247304 -17.12 -0.263559 -17.13 -0.278879 -17.14 -0.292833 -17.15 -0.304981 -17.16 -0.314784 -17.17 -0.321803 -17.18 -0.325776 -17.19 -0.326424 -17.2 -0.323554 -17.21 -0.317066 -17.22 -0.306961 -17.23 -0.293339 -17.24 -0.276401 -17.25 -0.256435 -17.26 -0.233806 -17.27 -0.208903 -17.28 -0.182188 -17.29 -0.154267 -17.3 -0.125628 -17.31 -0.0967304 -17.32 -0.0679916 -17.33 -0.0397668 -17.34 -0.0123375 -17.35 0.0140965 -17.36 0.0394213 -17.37 0.0636081 -17.38 0.0867012 -17.39 0.108775 -17.4 0.130091 -17.41 0.150867 -17.42 0.171342 -17.43 0.191748 -17.44 0.212299 -17.45 0.233164 -17.46 0.254461 -17.47 0.276238 -17.48 0.298471 -17.49 0.321055 -17.5 0.343801 -17.51 0.366419 -17.52 0.388578 -17.53 0.409907 -17.54 0.430004 -17.55 0.448458 -17.56 0.464868 -17.57 0.478861 -17.58 0.490112 -17.59 0.498359 -17.6 0.503416 -17.61 0.505015 -17.62 0.503235 -17.63 0.498255 -17.64 0.490255 -17.65 0.479489 -17.66 0.466274 -17.67 0.450975 -17.68 0.433984 -17.69 0.415705 -17.7 0.396536 -17.71 0.376846 -17.72 0.35697 -17.73 0.337205 -17.74 0.317756 -17.75 0.298751 -17.76 0.280245 -17.77 0.262226 -17.78 0.244622 -17.79 0.227306 -17.8 0.210117 -17.81 0.192869 -17.82 0.17537 -17.83 0.157424 -17.84 0.138839 -17.85 0.119529 -17.86 0.0994338 -17.87 0.0785537 -17.88 0.0569512 -17.89 0.0347531 -17.9 0.0121463 -17.91 -0.0106287 -17.92 -0.033288 -17.93 -0.0555161 -17.94 -0.0769782 -17.95 -0.0972364 -17.96 -0.116034 -17.97 -0.133086 -17.98 -0.148151 -17.99 -0.161042 -18 -0.171635 -18.01 -0.179869 -18.02 -0.185752 -18.03 -0.189356 -18.04 -0.190812 -18.05 -0.190301 -18.06 -0.187951 -18.07 -0.184115 -18.08 -0.179078 -18.09 -0.1731 -18.1 -0.166424 -18.11 -0.159266 -18.12 -0.151807 -18.13 -0.144185 -18.14 -0.13649 -18.15 -0.128768 -18.16 -0.121016 -18.17 -0.113186 -18.18 -0.105193 -18.19 -0.0969371 -18.2 -0.088305 -18.21 -0.0791834 -18.22 -0.0694707 -18.23 -0.0590869 -18.24 -0.0479831 -18.25 -0.036148 -18.26 -0.0236125 -18.27 -0.0104526 -18.28 0.00322193 -18.29 0.0172363 -18.3 0.0313659 -18.31 0.0453827 -18.32 0.0590429 -18.33 0.0720968 -18.34 0.0842998 -18.35 0.0954229 -18.36 0.105262 -18.37 0.113646 -18.38 0.120443 -18.39 0.125542 -18.4 0.128817 -18.41 0.130379 -18.42 0.13028 -18.43 0.128601 -18.44 0.125452 -18.45 0.120959 -18.46 0.115258 -18.47 0.108482 -18.48 0.100755 -18.49 0.0921838 -18.5 0.0828486 -18.51 0.072751 -18.52 0.0619584 -18.53 0.050455 -18.54 0.0381944 -18.55 0.0251063 -18.56 0.0111029 -18.57 -0.00391297 -18.58 -0.0200387 -18.59 -0.0373628 -18.6 -0.0559555 -18.61 -0.0758601 -18.62 -0.0971597 -18.63 -0.119765 -18.64 -0.143568 -18.65 -0.168441 -18.66 -0.194212 -18.67 -0.220671 -18.68 -0.247574 -18.69 -0.274649 -18.7 -0.301611 -18.71 -0.328165 -18.72 -0.354022 -18.73 -0.378856 -18.74 -0.402398 -18.75 -0.424473 -18.76 -0.444908 -18.77 -0.463578 -18.78 -0.480401 -18.79 -0.495346 -18.8 -0.508423 -18.81 -0.51968 -18.82 -0.5292 -18.83 -0.53709 -18.84 -0.543439 -18.85 -0.548351 -18.86 -0.552025 -18.87 -0.55457 -18.88 -0.556074 -18.89 -0.556597 -18.9 -0.556168 -18.91 -0.55478 -18.92 -0.552395 -18.93 -0.548943 -18.94 -0.544326 -18.95 -0.538414 -18.96 -0.530982 -18.97 -0.521979 -18.98 -0.511275 -18.99 -0.498752 -19 -0.484316 -19.01 -0.467904 -19.02 -0.449488 -19.03 -0.42908 -19.04 -0.406734 -19.05 -0.382546 -19.06 -0.356655 -19.07 -0.329144 -19.08 -0.300333 -19.09 -0.270469 -19.1 -0.239803 -19.11 -0.208594 -19.12 -0.177101 -19.13 -0.145572 -19.14 -0.11424 -19.15 -0.0833156 -19.16 -0.0529813 -19.17 -0.0233893 -19.18 0.00529046 -19.19 0.0329909 -19.2 0.0596804 -19.21 0.0853328 -19.22 0.109944 -19.23 0.133525 -19.24 0.156097 -19.25 0.177685 -19.26 0.198313 -19.27 0.217996 -19.28 0.236736 -19.29 0.254487 -19.3 0.27121 -19.31 0.286891 -19.32 0.30146 -19.33 0.314832 -19.34 0.326911 -19.35 0.337591 -19.36 0.346765 -19.37 0.354329 -19.38 0.360186 -19.39 0.364253 -19.4 0.366429 -19.41 0.366603 -19.42 0.364869 -19.43 0.361246 -19.44 0.355783 -19.45 0.348558 -19.46 0.339676 -19.47 0.329269 -19.48 0.31749 -19.49 0.30451 -19.5 0.290512 -19.51 0.275689 -19.52 0.260211 -19.53 0.244331 -19.54 0.228242 -19.55 0.212123 -19.56 0.196147 -19.57 0.18047 -19.58 0.165234 -19.59 0.150565 -19.6 0.136576 -19.61 0.123361 -19.62 0.111006 -19.63 0.0996443 -19.64 0.0892923 -19.65 0.07999 -19.66 0.0717814 -19.67 0.064705 -19.68 0.0587946 -19.69 0.0540798 -19.7 0.0505863 -19.71 0.0483357 -19.72 0.0473448 -19.73 0.047625 -19.74 0.0492418 -19.75 0.0521664 -19.76 0.0563498 -19.77 0.0617695 -19.78 0.0683922 -19.79 0.0761738 -19.8 0.0850593 -19.81 0.0949829 -19.82 0.105869 -19.83 0.117631 -19.84 0.130176 -19.85 0.14342 -19.86 0.157254 -19.87 0.171537 -19.88 0.186155 -19.89 0.200993 -19.9 0.215935 -19.91 0.230869 -19.92 0.24568 -19.93 0.260258 -19.94 0.274493 -19.95 0.288277 -19.96 0.301492 -19.97 0.313994 -19.98 0.325713 -19.99 0.336543 -20 0.346382 -20.01 0.355125 -20.02 0.362669 -20.03 0.368916 -20.04 0.373767 -20.05 0.377132 -20.06 0.378926 -20.07 0.379072 -20.08 0.377374 -20.09 0.373909 -20.1 0.368646 -20.11 0.361574 -20.12 0.352701 -20.13 0.342058 -20.14 0.329699 -20.15 0.315701 -20.16 0.300164 -20.17 0.283208 -20.18 0.264976 -20.19 0.245572 -20.2 0.225234 -20.21 0.204167 -20.22 0.182567 -20.23 0.160631 -20.24 0.138556 -20.25 0.116534 -20.26 0.0947464 -20.27 0.0733648 -20.28 0.0525435 -20.29 0.0324195 -20.3 0.0131494 -20.31 -0.00517183 -20.32 -0.0225006 -20.33 -0.0387874 -20.34 -0.0540031 -20.35 -0.0681371 -20.36 -0.0811954 -20.37 -0.0931986 -20.38 -0.104179 -20.39 -0.114177 -20.4 -0.12324 -20.41 -0.131397 -20.42 -0.138685 -20.43 -0.145197 -20.44 -0.150978 -20.45 -0.156069 -20.46 -0.160506 -20.47 -0.164317 -20.48 -0.167524 -20.49 -0.170145 -20.5 -0.172192 -20.51 -0.173673 -20.52 -0.174591 -20.53 -0.174923 -20.54 -0.174714 -20.55 -0.173977 -20.56 -0.172731 -20.57 -0.171 -20.58 -0.168818 -20.59 -0.166226 -20.6 -0.163274 -20.61 -0.160022 -20.62 -0.156536 -20.63 -0.152892 -20.64 -0.149167 -20.65 -0.145455 -20.66 -0.141841 -20.67 -0.138404 -20.68 -0.135221 -20.69 -0.132359 -20.7 -0.129877 -20.71 -0.127817 -20.72 -0.12621 -20.73 -0.125068 -20.74 -0.124387 -20.75 -0.124164 -20.76 -0.12434 -20.77 -0.124843 -20.78 -0.125601 -20.79 -0.126528 -20.8 -0.127529 -20.81 -0.128508 -20.82 -0.129366 -20.83 -0.130012 -20.84 -0.130363 -20.85 -0.130349 -20.86 -0.129901 -20.87 -0.128989 -20.88 -0.127628 -20.89 -0.125843 -20.9 -0.123684 -20.91 -0.121229 -20.92 -0.118577 -20.93 -0.115849 -20.94 -0.113182 -20.95 -0.110724 -20.96 -0.108627 -20.97 -0.107056 -20.98 -0.106186 -20.99 -0.10611 -21 -0.106928 -21.01 -0.108707 -21.02 -0.111482 -21.03 -0.11525 -21.04 -0.119967 -21.05 -0.125549 -21.06 -0.131871 -21.07 -0.138771 -21.08 -0.146058 -21.09 -0.153501 -21.1 -0.160834 -21.11 -0.167804 -21.12 -0.174161 -21.13 -0.179661 -21.14 -0.184078 -21.15 -0.187216 -21.16 -0.188907 -21.17 -0.189028 -21.18 -0.187496 -21.19 -0.184277 -21.2 -0.179279 -21.21 -0.172665 -21.22 -0.164561 -21.23 -0.155115 -21.24 -0.144503 -21.25 -0.132924 -21.26 -0.120589 -21.27 -0.107713 -21.28 -0.0945053 -21.29 -0.0811629 -21.3 -0.0678603 -21.31 -0.0547603 -21.32 -0.0419808 -21.33 -0.029591 -21.34 -0.0176304 -21.35 -0.00610604 -21.36 0.0050041 -21.37 0.0157452 -21.38 0.0261785 -21.39 0.0363736 -21.4 0.0463997 -21.41 0.0563166 -21.42 0.0661652 -21.43 0.0759609 -21.44 0.0856855 -21.45 0.0952817 -21.46 0.104654 -21.47 0.113668 -21.48 0.122154 -21.49 0.129911 -21.5 0.136715 -21.51 0.142324 -21.52 0.146491 -21.53 0.148942 -21.54 0.149354 -21.55 0.147636 -21.56 0.143635 -21.57 0.137248 -21.58 0.128425 -21.59 0.11718 -21.6 0.103586 -21.61 0.0877812 -21.62 0.0699621 -21.63 0.0503801 -21.64 0.0293318 -21.65 0.00709907 -21.66 -0.0158471 -21.67 -0.0391295 -21.68 -0.0623721 -21.69 -0.0852122 -21.7 -0.107312 -21.71 -0.128368 -21.72 -0.14812 -21.73 -0.166358 -21.74 -0.182923 -21.75 -0.197711 -21.76 -0.210559 -21.77 -0.221557 -21.78 -0.230778 -21.79 -0.238304 -21.8 -0.24424 -21.81 -0.248707 -21.82 -0.251826 -21.83 -0.253715 -21.84 -0.254477 -21.85 -0.254191 -21.86 -0.252909 -21.87 -0.250605 -21.88 -0.247277 -21.89 -0.242901 -21.9 -0.237399 -21.91 -0.23067 -21.92 -0.222598 -21.93 -0.213061 -21.94 -0.20194 -21.95 -0.189132 -21.96 -0.174556 -21.97 -0.158161 -21.98 -0.139886 -21.99 -0.119744 -22 -0.0979152 -22.01 -0.0745473 -22.02 -0.0498366 -22.03 -0.0240263 -22.04 0.00259957 -22.05 0.029724 -22.06 0.057006 -22.07 0.0840911 -22.08 0.110622 -22.09 0.136234 -22.1 0.160513 -22.11 0.183224 -22.12 0.204117 -22.13 0.222988 -22.14 0.239683 -22.15 0.254105 -22.16 0.26621 -22.17 0.276008 -22.18 0.283559 -22.19 0.288967 -22.2 0.292374 -22.21 0.293829 -22.22 0.293669 -22.23 0.292101 -22.24 0.289334 -22.25 0.285565 -22.26 0.280983 -22.27 0.275754 -22.28 0.270025 -22.29 0.263915 -22.3 0.257517 -22.31 0.2509 -22.32 0.2441 -22.33 0.237147 -22.34 0.230048 -22.35 0.222796 -22.36 0.21538 -22.37 0.207786 -22.38 0.200006 -22.39 0.192038 -22.4 0.183891 -22.41 0.175589 -22.42 0.167168 -22.43 0.158683 -22.44 0.150207 -22.45 0.141825 -22.46 0.133626 -22.47 0.125707 -22.48 0.118166 -22.49 0.111099 -22.5 0.104599 -22.51 0.0987472 -22.52 0.0936157 -22.53 0.0892606 -22.54 0.0857422 -22.55 0.0831058 -22.56 0.0813097 -22.57 0.0803363 -22.58 0.0801506 -22.59 0.0807019 -22.6 0.0819249 -22.61 0.083742 -22.62 0.0860655 -22.63 0.0887991 -22.64 0.0918403 -22.65 0.0950831 -22.66 0.098414 -22.67 0.101709 -22.68 0.104858 -22.69 0.107751 -22.7 0.11028 -22.71 0.11234 -22.72 0.11383 -22.73 0.114654 -22.74 0.114719 -22.75 0.11394 -22.76 0.112242 -22.77 0.109485 -22.78 0.105669 -22.79 0.100758 -22.8 0.094725 -22.81 0.0875569 -22.82 0.0792574 -22.83 0.0698478 -22.84 0.0593673 -22.85 0.0478729 -22.86 0.0354384 -22.87 0.022154 -22.88 0.00809095 -22.89 -0.00660229 -22.9 -0.0217821 -22.91 -0.0373174 -22.92 -0.0530754 -22.93 -0.0689251 -22.94 -0.0847404 -22.95 -0.100403 -22.96 -0.115807 -22.97 -0.130856 -22.98 -0.14547 -22.99 -0.159562 -23 -0.173074 -23.01 -0.185988 -23.02 -0.198279 -23.03 -0.209928 -23.04 -0.220924 -23.05 -0.231255 -23.06 -0.24091 -23.07 -0.249875 -23.08 -0.258127 -23.09 -0.265637 -23.1 -0.272348 -23.11 -0.278172 -23.12 -0.283091 -23.13 -0.287033 -23.14 -0.289918 -23.15 -0.291664 -23.16 -0.292189 -23.17 -0.291414 -23.18 -0.289269 -23.19 -0.285694 -23.2 -0.280648 -23.21 -0.274102 -23.22 -0.265952 -23.23 -0.256332 -23.24 -0.245293 -23.25 -0.232907 -23.26 -0.21927 -23.27 -0.204493 -23.28 -0.188704 -23.29 -0.172043 -23.3 -0.154653 -23.31 -0.136681 -23.32 -0.118266 -23.33 -0.0995322 -23.34 -0.0806224 -23.35 -0.0616432 -23.36 -0.0426796 -23.37 -0.0237991 -23.38 -0.00505137 -23.39 0.0135291 -23.4 0.0319205 -23.41 0.0501101 -23.42 0.0680896 -23.43 0.0858504 -23.44 0.103367 -23.45 0.120616 -23.46 0.137564 -23.47 0.154153 -23.48 0.170304 -23.49 0.18592 -23.5 0.200884 -23.51 0.21506 -23.52 0.228302 -23.53 0.240451 -23.54 0.251349 -23.55 0.26079 -23.56 0.268595 -23.57 0.274704 -23.58 0.279019 -23.59 0.281474 -23.6 0.282037 -23.61 0.280718 -23.62 0.277565 -23.63 0.272668 -23.64 0.266156 -23.65 0.258192 -23.66 0.248954 -23.67 0.238631 -23.68 0.227531 -23.69 0.215892 -23.7 0.203951 -23.71 0.191929 -23.72 0.18003 -23.73 0.168429 -23.74 0.157273 -23.75 0.14667 -23.76 0.136691 -23.77 0.127369 -23.78 0.118749 -23.79 0.110741 -23.8 0.103278 -23.81 0.0962729 -23.82 0.0896272 -23.83 0.0832376 -23.84 0.0770036 -23.85 0.0708346 -23.86 0.0646564 -23.87 0.0584156 -23.88 0.0520836 -23.89 0.0456543 -23.9 0.0391607 -23.91 0.0326576 -23.92 0.0262179 -23.93 0.0199295 -23.94 0.0138885 -23.95 0.00819223 -23.96 0.00293198 -23.97 -0.00181432 -23.98 -0.00598887 -23.99 -0.00955967 -24 -0.0125007 -24.01 -0.0148561 -24.02 -0.0167182 -24.03 -0.0181923 -24.04 -0.0194129 -24.05 -0.0205396 -24.06 -0.0217498 -24.07 -0.0232315 -24.08 -0.0251749 -24.09 -0.0277635 -24.1 -0.0311651 -24.11 -0.0355525 -24.12 -0.0410702 -24.13 -0.0477385 -24.14 -0.0555831 -24.15 -0.0645861 -24.16 -0.0746854 -24.17 -0.085777 -24.18 -0.0977193 -24.19 -0.110338 -24.2 -0.123435 -24.21 -0.136792 -24.22 -0.150185 -24.23 -0.163361 -24.24 -0.176108 -24.25 -0.188234 -24.26 -0.199574 -24.27 -0.209991 -24.28 -0.219385 -24.29 -0.22769 -24.3 -0.234876 -24.31 -0.240948 -24.32 -0.245938 -24.33 -0.249905 -24.34 -0.252866 -24.35 -0.254977 -24.36 -0.256336 -24.37 -0.257034 -24.38 -0.257148 -24.39 -0.256743 -24.4 -0.255863 -24.41 -0.254531 -24.42 -0.252748 -24.43 -0.25049 -24.44 -0.247716 -24.45 -0.244332 -24.46 -0.24028 -24.47 -0.235496 -24.48 -0.229904 -24.49 -0.22344 -24.5 -0.21605 -24.51 -0.2077 -24.52 -0.198381 -24.53 -0.18811 -24.54 -0.176933 -24.55 -0.164923 -24.56 -0.152161 -24.57 -0.138787 -24.58 -0.124981 -24.59 -0.110905 -24.6 -0.0967337 -24.61 -0.0826401 -24.62 -0.068794 -24.63 -0.0553537 -24.64 -0.042461 -24.65 -0.0302367 -24.66 -0.0187768 -24.67 -0.00816981 -24.68 0.00151323 -24.69 0.0103079 -24.7 0.0182287 -24.71 0.0253111 -24.72 0.0316074 -24.73 0.0371814 -24.74 0.0421037 -24.75 0.0464463 -24.76 0.0502776 -24.77 0.0536587 -24.78 0.0566369 -24.79 0.0592268 -24.8 0.0614741 -24.81 0.0633824 -24.82 0.064942 -24.83 0.0661323 -24.84 0.066925 -24.85 0.0672882 -24.86 0.0671908 -24.87 0.0666063 -24.88 0.0655177 -24.89 0.0639203 -24.9 0.0617948 -24.91 0.0592019 -24.92 0.0561977 -24.93 0.0528507 -24.94 0.0492457 -24.95 0.0454808 -24.96 0.0416635 -24.97 0.0379063 -24.98 0.0343219 -24.99 0.031018 -25 0.0280925 -25.01 0.0256548 -25.02 0.0237629 -25.03 0.0224437 -25.04 0.0217133 -25.05 0.0215642 -25.06 0.0219662 -25.07 0.0228689 -25.08 0.0242047 -25.09 0.0258931 -25.1 0.0278454 -25.11 0.0299699 -25.12 0.0321775 -25.13 0.0343791 -25.14 0.036505 -25.15 0.0385045 -25.16 0.0403458 -25.17 0.0420168 -25.18 0.0435252 -25.19 0.0448963 -25.2 0.0461711 -25.21 0.0474017 -25.22 0.048647 -25.23 0.0499694 -25.24 0.0514344 -25.25 0.0530806 -25.26 0.054935 -25.27 0.0570046 -25.28 0.059273 -25.29 0.0616985 -25.3 0.0642142 -25.31 0.0667287 -25.32 0.0691293 -25.33 0.0712859 -25.34 0.0730562 -25.35 0.0742428 -25.36 0.0747319 -25.37 0.0743909 -25.38 0.0731058 -25.39 0.0707879 -25.4 0.06738 -25.41 0.0628611 -25.42 0.0572495 -25.43 0.0506045 -25.44 0.0430259 -25.45 0.0346523 -25.46 0.0256317 -25.47 0.0162143 -25.48 0.0066371 -25.49 -0.00285929 -25.5 -0.0120306 -25.51 -0.0206376 -25.52 -0.0284547 -25.53 -0.0352777 -25.54 -0.0409313 -25.55 -0.0452741 -25.56 -0.0482027 -25.57 -0.0495876 -25.58 -0.0494289 -25.59 -0.0477973 -25.6 -0.0447525 -25.61 -0.040384 -25.62 -0.0348051 -25.63 -0.0281458 -25.64 -0.020545 -25.65 -0.0121433 -25.66 -0.00307515 -25.67 0.00653699 -25.68 0.0165988 -25.69 0.0270286 -25.7 0.0377533 -25.71 0.0487448 -25.72 0.0599991 -25.73 0.0715331 -25.74 0.0833804 -25.75 0.0955855 -25.76 0.108197 -25.77 0.121263 -25.78 0.134819 -25.79 0.148892 -25.8 0.163503 -25.81 0.178584 -25.82 0.194064 -25.83 0.209841 -25.84 0.225774 -25.85 0.241691 -25.86 0.25739 -25.87 0.272642 -25.88 0.2872 -25.89 0.300805 -25.9 0.313195 -25.91 0.32399 -25.92 0.333033 -25.93 0.340117 -25.94 0.345061 -25.95 0.347721 -25.96 0.347998 -25.97 0.345841 -25.98 0.341247 -25.99 0.334262 -26 0.324977 -26.01 0.31353 -26.02 0.299995 -26.03 0.28467 -26.04 0.267831 -26.05 0.249727 -26.06 0.230615 -26.07 0.210753 -26.08 0.190388 -26.09 0.169755 -26.1 0.149067 -26.11 0.128515 -26.12 0.10826 -26.13 0.0884569 -26.14 0.0692168 -26.15 0.0505947 -26.16 0.0326372 -26.17 0.0153695 -26.18 -0.00120023 -26.19 -0.0170766 -26.2 -0.032272 -26.21 -0.046802 -26.22 -0.0606816 -26.23 -0.073921 -26.24 -0.0865077 -26.25 -0.0984159 -26.26 -0.10966 -26.27 -0.12021 -26.28 -0.13003 -26.29 -0.139074 -26.3 -0.147294 -26.31 -0.154639 -26.32 -0.161063 -26.33 -0.166526 -26.34 -0.170995 -26.35 -0.174447 -26.36 -0.17682 -26.37 -0.178203 -26.38 -0.178637 -26.39 -0.178183 -26.4 -0.176921 -26.41 -0.174948 -26.42 -0.172379 -26.43 -0.16934 -26.44 -0.165968 -26.45 -0.162403 -26.46 -0.15879 -26.47 -0.155284 -26.48 -0.15202 -26.49 -0.149118 -26.5 -0.146684 -26.51 -0.144806 -26.52 -0.143554 -26.53 -0.142976 -26.54 -0.143102 -26.55 -0.143942 -26.56 -0.145485 -26.57 -0.147705 -26.58 -0.15059 -26.59 -0.154062 -26.6 -0.15804 -26.61 -0.162452 -26.62 -0.167221 -26.63 -0.172272 -26.64 -0.177527 -26.65 -0.182912 -26.66 -0.188359 -26.67 -0.193802 -26.68 -0.19918 -26.69 -0.204432 -26.7 -0.209501 -26.71 -0.214345 -26.72 -0.21892 -26.73 -0.223182 -26.74 -0.227087 -26.75 -0.23059 -26.76 -0.233646 -26.77 -0.236206 -26.78 -0.238219 -26.79 -0.239633 -26.8 -0.24038 -26.81 -0.240375 -26.82 -0.239602 -26.83 -0.238013 -26.84 -0.235564 -26.85 -0.232219 -26.86 -0.22795 -26.87 -0.222741 -26.88 -0.216589 -26.89 -0.209504 -26.9 -0.201511 -26.91 -0.192647 -26.92 -0.182916 -26.93 -0.17245 -26.94 -0.161334 -26.95 -0.149659 -26.96 -0.137528 -26.97 -0.125047 -26.98 -0.112326 -26.99 -0.0994729 -27 -0.0865953 -27.01 -0.0737934 -27.02 -0.0611597 -27.03 -0.0487974 -27.04 -0.0367691 -27.05 -0.0251277 -27.06 -0.0139167 -27.07 -0.0031668 -27.08 0.00710326 -27.09 0.0168853 -27.1 0.0261803 -27.11 0.0349965 -27.12 0.0433473 -27.13 0.0512493 -27.14 0.0587011 -27.15 0.0657288 -27.16 0.0723592 -27.17 0.0786032 -27.18 0.0844677 -27.19 0.0899554 -27.2 0.0950651 -27.21 0.0997926 -27.22 0.104132 -27.23 0.108077 -27.24 0.111621 -27.25 0.114752 -27.26 0.117465 -27.27 0.119789 -27.28 0.121741 -27.29 0.123346 -27.3 0.124639 -27.31 0.12566 -27.32 0.126457 -27.33 0.127085 -27.34 0.1276 -27.35 0.12806 -27.36 0.128522 -27.37 0.129042 -27.38 0.129663 -27.39 0.130414 -27.4 0.131311 -27.41 0.132357 -27.42 0.133536 -27.43 0.134814 -27.44 0.136144 -27.45 0.137459 -27.46 0.138681 -27.47 0.13972 -27.48 0.140449 -27.49 0.140781 -27.5 0.140617 -27.51 0.139862 -27.52 0.138433 -27.53 0.136261 -27.54 0.133294 -27.55 0.129503 -27.56 0.124881 -27.57 0.119444 -27.58 0.113233 -27.59 0.106278 -27.6 0.0987003 -27.61 0.0906202 -27.62 0.0821574 -27.63 0.0734408 -27.64 0.0646037 -27.65 0.0557781 -27.66 0.0470905 -27.67 0.0386569 -27.68 0.0305791 -27.69 0.0229417 -27.7 0.0158324 -27.71 0.00929269 -27.72 0.00332415 -27.73 -0.00207426 -27.74 -0.00692101 -27.75 -0.0112489 -27.76 -0.0151014 -27.77 -0.0185281 -27.78 -0.0215807 -27.79 -0.0243081 -27.8 -0.0267527 -27.81 -0.0289401 -27.82 -0.0308838 -27.83 -0.0325962 -27.84 -0.0340613 -27.85 -0.0352475 -27.86 -0.0361094 -27.87 -0.03659 -27.88 -0.036625 -27.89 -0.0361464 -27.9 -0.0350877 -27.91 -0.0333891 -27.92 -0.0309946 -27.93 -0.0278305 -27.94 -0.0239341 -27.95 -0.0193208 -27.96 -0.0140315 -27.97 -0.00813249 -27.98 -0.00171528 -27.99 0.0051061 -28 0.0121984 -28.01 0.0194134 -28.02 0.0265939 -28.03 0.0335792 -28.04 0.0401768 -28.05 0.0462527 -28.06 0.0516808 -28.07 0.0563549 -28.08 0.0601955 -28.09 0.0631523 -28.1 0.0652061 -28.11 0.0663689 -28.12 0.0666826 -28.13 0.0662161 -28.14 0.0650614 -28.15 0.063304 -28.16 0.0610949 -28.17 0.0585736 -28.18 0.0558642 -28.19 0.0530815 -28.2 0.0503254 -28.21 0.0476764 -28.22 0.0451921 -28.23 0.0429048 -28.24 0.0408214 -28.25 0.038924 -28.26 0.037176 -28.27 0.0355118 -28.28 0.0338532 -28.29 0.0321219 -28.3 0.0302403 -28.31 0.0281385 -28.32 0.0257603 -28.33 0.0230689 -28.34 0.0200514 -28.35 0.0167218 -28.36 0.0131229 -28.37 0.00932394 -28.38 0.00543114 -28.39 0.00158007 -28.4 -0.00208715 -28.41 -0.00541824 -28.42 -0.0082583 -28.43 -0.0104579 -28.44 -0.0118812 -28.45 -0.0124138 -28.46 -0.0119698 -28.47 -0.0104976 -28.48 -0.00797901 -28.49 -0.00438239 -28.5 0.000140031 -28.51 0.00546931 -28.52 0.0114503 -28.53 0.0178974 -28.54 0.0246015 -28.55 0.0313389 -28.56 0.0378803 -28.57 0.0440001 -28.58 0.0494867 -28.59 0.0541505 -28.6 0.0577609 -28.61 0.0602447 -28.62 0.0615405 -28.63 0.0616205 -28.64 0.0605012 -28.65 0.0582409 -28.66 0.054936 -28.67 0.0507148 -28.68 0.0457296 -28.69 0.0401491 -28.7 0.0341482 -28.71 0.0278954 -28.72 0.0215697 -28.73 0.0153135 -28.74 0.00923498 -28.75 0.00340998 -28.76 -0.00212107 -28.77 -0.00735357 -28.78 -0.0123173 -28.79 -0.0170731 -28.8 -0.0217069 -28.81 -0.0263237 -28.82 -0.0310457 -28.83 -0.0360035 -28.84 -0.0412989 -28.85 -0.0470208 -28.86 -0.0532323 -28.87 -0.0599648 -28.88 -0.067213 -28.89 -0.0749323 -28.9 -0.083039 -28.91 -0.091411 -28.92 -0.0998926 -28.93 -0.108295 -28.94 -0.116382 -28.95 -0.123942 -28.96 -0.130759 -28.97 -0.136624 -28.98 -0.14135 -28.99 -0.14478 -29 -0.146791 -29.01 -0.147303 -29.02 -0.146283 -29.03 -0.143745 -29.04 -0.139752 -29.05 -0.134322 -29.06 -0.127716 -29.07 -0.120123 -29.08 -0.111751 -29.09 -0.102823 -29.1 -0.0935646 -29.11 -0.0841975 -29.12 -0.0749261 -29.13 -0.0659314 -29.14 -0.0573638 -29.15 -0.0493375 -29.16 -0.0419669 -29.17 -0.0352573 -29.18 -0.0291876 -29.19 -0.0237116 -29.2 -0.0187531 -29.21 -0.0142135 -29.22 -0.00997855 -29.23 -0.00592744 -29.24 -0.00194072 -29.25 0.00209154 -29.26 0.00626264 -29.27 0.0106544 -29.28 0.0153087 -29.29 0.0202263 -29.3 0.0253848 -29.31 0.0307327 -29.32 0.0361932 -29.33 0.0416691 -29.34 0.0470488 -29.35 0.0522131 -29.36 0.0570431 -29.37 0.0614273 -29.38 0.0652511 -29.39 0.0684209 -29.4 0.0709174 -29.41 0.0727244 -29.42 0.0738561 -29.43 0.0743566 -29.44 0.0742972 -29.45 0.0737724 -29.46 0.0728945 -29.47 0.0717868 -29.48 0.0705764 -29.49 0.0693878 -29.5 0.068347 -29.51 0.0675399 -29.52 0.0670286 -29.53 0.0668452 -29.54 0.0669891 -29.55 0.067426 -29.56 0.0680894 -29.57 0.0688831 -29.58 0.0696864 -29.59 0.07036 -29.6 0.0707532 -29.61 0.0706705 -29.62 0.069984 -29.63 0.0685645 -29.64 0.0663037 -29.65 0.0631222 -29.66 0.0589751 -29.67 0.0538541 -29.68 0.0477895 -29.69 0.0408495 -29.7 0.0331372 -29.71 0.0247864 -29.72 0.0159391 -29.73 0.00680459 -29.74 -0.00242173 -29.75 -0.011555 -29.76 -0.02042 -29.77 -0.0288582 -29.78 -0.0367355 -29.79 -0.0439468 -29.8 -0.0504199 -29.81 -0.0561177 -29.82 -0.0610378 -29.83 -0.0651838 -29.84 -0.068627 -29.85 -0.0714822 -29.86 -0.0738528 -29.87 -0.0758509 -29.88 -0.077589 -29.89 -0.0791726 -29.9 -0.0806927 -29.91 -0.0822199 -29.92 -0.0837995 -29.93 -0.0854481 -29.94 -0.0871522 -29.95 -0.0888617 -29.96 -0.0904975 -29.97 -0.0919607 -29.98 -0.0931356 -29.99 -0.0938965 -30 -0.0941156 -& -@target G2.S2 -@type xy -0 0 -0.01 0.090964947 -0.02 0.04970735 -0.03 0.035556353 -0.04 0.028208889 -0.05 0.023605327 -0.06 0.02039306 -0.07 0.017992654 -0.08 0.016114331 -0.09 0.014596741 -0.1 0.013342433 -0.11 0.012288494 -0.12 0.011391848 -0.13 0.010621346 -0.14 0.0099532479 -0.15 0.0093685421 -0.16 0.0088513016 -0.17 0.0083876676 -0.18 0.0079652258 -0.19 0.0075726398 -0.2 0.0071994568 -0.21 0.0068360344 -0.22 0.0064735482 -0.23 0.0061040562 -0.24 0.0057205979 -0.25 0.005317313 -0.26 0.0048895661 -0.27 0.0044340672 -0.28 0.003948979 -0.29 0.0034340048 -0.3 0.0028904526 -0.31 0.0023212716 -0.32 0.0017310614 -0.33 0.0011260526 -0.34 0.00051406174 -0.35 -9.5578608e-05 -0.36 -0.00069210969 -0.37 -0.0012634551 -0.38 -0.0017963441 -0.39 -0.002276448 -0.4 -0.0026885285 -0.41 -0.0030165968 -0.42 -0.0032440861 -0.43 -0.0033540389 -0.44 -0.0033293116 -0.45 -0.0031528015 -0.46 -0.0028077005 -0.47 -0.0022777768 -0.48 -0.0015476913 -0.49 -0.00060334652 -0.5 0.00056773098 -0.51 0.0019759782 -0.52 0.0036293608 -0.53 0.0055329245 -0.54 0.0076883472 -0.55 0.010093508 -0.56 0.012742088 -0.57 0.015623238 -0.58 0.018721311 -0.59 0.022015705 -0.6 0.025480832 -0.61 0.029086214 -0.62 0.032796746 -0.63 0.03657312 -0.64 0.040372418 -0.65 0.044148861 -0.66 0.047854724 -0.67 0.05144137 -0.68 0.0548604 -0.69 0.058064863 -0.7 0.061010513 -0.71 0.063657033 -0.72 0.065969213 -0.73 0.067918012 -0.74 0.069481459 -0.75 0.070645365 -0.76 0.07140379 -0.77 0.071759245 -0.78 0.071722617 -0.79 0.071312788 -0.8 0.070555982 -0.81 0.069484827 -0.82 0.068137187 -0.83 0.066554787 -0.84 0.064781689 -0.85 0.06286268 -0.86 0.060841626 -0.87 0.058759878 -0.88 0.056654769 -0.89 0.054558295 -0.9 0.052496013 -0.91 0.050486215 -0.92 0.04853941 -0.93 0.046658141 -0.94 0.044837132 -0.95 0.043063771 -0.96 0.041318901 -0.97 0.039577877 -0.98 0.037811846 -0.99 0.035989184 -1 0.034077033 -1.01 0.032042854 -1.02 0.029855939 -1.03 0.0274888 -1.04 0.024918384 -1.05 0.022127054 -1.06 0.019103304 -1.07 0.015842169 -1.08 0.012345331 -1.09 0.0086209249 -1.1 0.0046830503 -1.11 0.00055104288 -1.12 -0.0037514634 -1.13 -0.0081976201 -1.14 -0.012758534 -1.15 -0.01740446 -1.16 -0.022105942 -1.17 -0.02683486 -1.18 -0.03156531 -1.19 -0.036274289 -1.2 -0.040942144 -1.21 -0.045552781 -1.22 -0.050093621 -1.23 -0.054555327 -1.24 -0.058931325 -1.25 -0.063217164 -1.26 -0.067409762 -1.27 -0.071506596 -1.28 -0.075504904 -1.29 -0.079400951 -1.3 -0.08318942 -1.31 -0.08686298 -1.32 -0.090412065 -1.33 -0.093824899 -1.34 -0.097087764 -1.35 -0.10018552 -1.36 -0.10310235 -1.37 -0.10582268 -1.38 -0.1083323 -1.39 -0.11061945 -1.4 -0.11267604 -1.41 -0.11449873 -1.42 -0.11608993 -1.43 -0.11745856 -1.44 -0.11862059 -1.45 -0.11959922 -1.46 -0.12042479 -1.47 -0.12113429 -1.48 -0.12177052 -1.49 -0.12238093 -1.5 -0.12301614 -1.51 -0.12372828 -1.52 -0.12456908 -1.53 -0.12558796 -1.54 -0.12683002 -1.55 -0.12833424 -1.56 -0.13013173 -1.57 -0.13224436 -1.58 -0.13468365 -1.59 -0.13745009 -1.6 -0.14053283 -1.61 -0.14390993 -1.62 -0.14754897 -1.63 -0.15140811 -1.64 -0.15543761 -1.65 -0.15958156 -1.66 -0.16378 -1.67 -0.16797111 -1.68 -0.17209354 -1.69 -0.17608869 -1.7 -0.17990286 -1.71 -0.18348926 -1.72 -0.18680963 -1.73 -0.18983562 -1.74 -0.19254965 -1.75 -0.19494543 -1.76 -0.19702796 -1.77 -0.19881314 -1.78 -0.20032696 -1.79 -0.20160428 -1.8 -0.20268735 -1.81 -0.2036241 -1.82 -0.20446619 -1.83 -0.20526715 -1.84 -0.20608033 -1.85 -0.20695711 -1.86 -0.20794519 -1.87 -0.2090871 -1.88 -0.21041902 -1.89 -0.21196987 -1.9 -0.21376074 -1.91 -0.21580463 -1.92 -0.2181065 -1.93 -0.22066362 -1.94 -0.22346614 -1.95 -0.22649786 -1.96 -0.22973717 -1.97 -0.23315804 -1.98 -0.23673112 -1.99 -0.24042473 -2 -0.24420589 -2.01 -0.24804122 -2.02 -0.25189769 -2.03 -0.25574329 -2.04 -0.25954754 -2.05 -0.26328184 -2.06 -0.26691971 -2.07 -0.27043688 -2.08 -0.27381136 -2.09 -0.27702334 -2.1 -0.28005511 -2.11 -0.28289091 -2.12 -0.28551677 -2.13 -0.28792035 -2.14 -0.29009079 -2.15 -0.29201851 -2.16 -0.29369504 -2.17 -0.29511278 -2.18 -0.29626476 -2.19 -0.29714426 -2.2 -0.29774441 -2.21 -0.29805761 -2.22 -0.2980749 -2.23 -0.29778508 -2.24 -0.29717385 -2.25 -0.29622267 -2.26 -0.29490763 -2.27 -0.29319821 -2.28 -0.29105604 -2.29 -0.28843368 -2.3 -0.28527352 -2.31 -0.28150683 -2.32 -0.27705312 -2.33 -0.27181974 -2.34 -0.26570196 -2.35 -0.25858344 -2.36 -0.25033725 -2.37 -0.2408274 -2.38 -0.22991096 -2.39 -0.21744071 -2.4 -0.20326834 -2.41 -0.18724811 -2.42 -0.16924097 -2.43 -0.14911894 -2.44 -0.12676975 -2.45 -0.10210156 -2.46 -0.075047598 -2.47 -0.045570656 -2.48 -0.013667197 -2.49 0.020628996 -2.5 0.057243813 -2.51 0.096060552 -2.52 0.13691851 -2.53 0.17961253 -2.54 0.22389353 -2.55 0.26947013 -2.56 0.31601125 -2.57 0.36314976 -2.58 0.41048714 -2.59 0.45759896 -2.6 0.5040412 -2.61 0.54935715 -2.62 0.59308484 -2.63 0.63476481 -2.64 0.67394802 -2.65 0.7102037 -2.66 0.743127 -2.67 0.77234629 -2.68 0.79752982 -2.69 0.81839171 -2.7 0.83469705 -2.71 0.84626606 -2.72 0.85297716 -2.73 0.85476891 -2.74 0.85164078 -2.75 0.84365273 -2.76 0.83092367 -2.77 0.8136287 -2.78 0.79199546 -2.79 0.76629936 -2.8 0.73685814 -2.81 0.70402558 -2.82 0.66818479 -2.83 0.629741 -2.84 0.58911426 -2.85 0.54673194 -2.86 0.50302144 -2.87 0.45840315 -2.88 0.41328386 -2.89 0.36805063 -2.9 0.32306552 -2.91 0.27866093 -2.92 0.23513588 -2.93 0.19275322 -2.94 0.15173773 -2.95 0.11227521 -2.96 0.074512457 -2.97 0.038558116 -2.98 0.0044843721 -2.99 -0.027670676 -3 -0.057900025 -3.01 -0.086224281 -3.02 -0.11268782 -3.03 -0.1373547 -3.04 -0.16030454 -3.05 -0.18162834 -3.06 -0.20142457 -3.07 -0.21979542 -3.08 -0.23684356 -3.09 -0.25266917 -3.1 -0.26736765 -3.11 -0.28102773 -3.12 -0.29373022 -3.13 -0.30554724 -3.14 -0.31654203 -3.15 -0.32676919 -3.16 -0.3362753 -3.17 -0.34509989 -3.18 -0.35327668 -3.19 -0.36083489 -3.2 -0.36780066 -3.21 -0.37419839 -3.22 -0.380052 -3.23 -0.38538593 -3.24 -0.39022593 -3.25 -0.39459948 -3.26 -0.39853595 -3.27 -0.4020663 -3.28 -0.40522252 -3.29 -0.40803664 -3.3 -0.41053956 -3.31 -0.41275948 -3.32 -0.4147203 -3.33 -0.41643974 -3.34 -0.4179275 -3.35 -0.41918342 -3.36 -0.42019569 -3.37 -0.42093929 -3.38 -0.42137457 -3.39 -0.42144616 -3.4 -0.42108221 -3.41 -0.42019392 -3.42 -0.41867551 -3.43 -0.41640462 -3.44 -0.41324298 -3.45 -0.40903764 -3.46 -0.40362247 -3.47 -0.3968201 -3.48 -0.38844416 -3.49 -0.37830189 -3.5 -0.36619705 -3.51 -0.35193303 -3.52 -0.33531627 -3.53 -0.31615985 -3.54 -0.29428724 -3.55 -0.26953622 -3.56 -0.24176279 -3.57 -0.21084525 -3.58 -0.17668815 -3.59 -0.13922626 -3.6 -0.098428302 -3.61 -0.054300603 -3.62 -0.0068903413 -3.63 0.043711514 -3.64 0.097367748 -3.65 0.153893 -3.66 0.21305251 -3.67 0.27456161 -3.68 0.33808605 -3.69 0.40324318 -3.7 0.46960412 -3.71 0.53669696 -3.72 0.60401086 -3.73 0.67100128 -3.74 0.73709612 -3.75 0.80170274 -3.76 0.86421585 -3.77 0.92402609 -3.78 0.98052903 -3.79 1.0331347 -3.8 1.0812773 -3.81 1.1244244 -3.82 1.1620868 -3.83 1.1938268 -3.84 1.2192667 -3.85 1.2380957 -3.86 1.2500762 -3.87 1.2550482 -3.88 1.2529332 -3.89 1.2437356 -3.9 1.2275431 -3.91 1.2045254 -3.92 1.1749313 -3.93 1.1390843 -3.94 1.0973767 -3.95 1.0502627 -3.96 0.99825009 -3.97 0.94189127 -3.98 0.88177378 -3.99 0.81851006 -4 0.75272728 -4.01 0.68505721 -4.02 0.61612635 -4.03 0.54654661 -4.04 0.47690671 -4.05 0.40776441 -4.06 0.33963985 -4.07 0.27300985 -4.08 0.20830353 -4.09 0.14589907 -4.1 0.086121627 -4.11 0.029242496 -4.12 -0.024520671 -4.13 -0.075002631 -4.14 -0.12208841 -4.15 -0.1657104 -4.16 -0.20584473 -4.17 -0.24250725 -4.18 -0.27574903 -4.19 -0.30565165 -4.2 -0.33232239 -4.21 -0.35588937 -4.22 -0.37649683 -4.23 -0.39430058 -4.24 -0.40946369 -4.25 -0.4221525 -4.26 -0.43253305 -4.27 -0.44076781 -4.28 -0.44701293 -4.29 -0.45141583 -4.3 -0.45411328 -4.31 -0.45522993 -4.32 -0.45487718 -4.33 -0.45315256 -4.34 -0.45013945 -4.35 -0.44590716 -4.36 -0.44051143 -4.37 -0.43399525 -4.38 -0.42638992 -4.39 -0.41771648 -4.4 -0.40798737 -4.41 -0.39720825 -4.42 -0.3853801 -4.43 -0.37250136 -4.44 -0.35857022 -4.45 -0.34358692 -4.46 -0.32755608 -4.47 -0.31048893 -4.48 -0.29240541 -4.49 -0.27333614 -4.5 -0.25332413 -4.51 -0.23242625 -4.52 -0.21071431 -4.53 -0.18827589 -4.54 -0.16521466 -4.55 -0.14165044 -4.56 -0.11771869 -4.57 -0.093569727 -4.58 -0.069367452 -4.59 -0.045287728 -4.6 -0.021516415 -4.61 0.0017529128 -4.62 0.024321497 -4.63 0.045988134 -4.64 0.066552052 -4.65 0.085815869 -4.66 0.10358857 -4.67 0.11968843 -4.68 0.13394584 -4.69 0.14620595 -4.7 0.15633113 -4.71 0.16420312 -4.72 0.16972489 -4.73 0.17282221 -4.74 0.17344479 -4.75 0.17156708 -4.76 0.16718865 -4.77 0.16033424 -4.78 0.15105332 -4.79 0.13941939 -4.8 0.1255288 -4.81 0.10949931 -4.82 0.091468311 -4.83 0.071590782 -4.84 0.05003697 -4.85 0.026989911 -4.86 0.0026427774 -4.87 -0.022803872 -4.88 -0.049144895 -4.89 -0.076173364 -4.9 -0.10368331 -4.91 -0.13147234 -4.92 -0.15934411 -4.93 -0.18711054 -4.94 -0.21459379 -4.95 -0.24162794 -4.96 -0.26806025 -4.97 -0.29375215 -4.98 -0.31857974 -4.99 -0.34243397 -5 -0.3652204 -5.01 -0.38685857 -5.02 -0.40728109 -5.03 -0.42643238 -5.04 -0.44426719 -5.05 -0.460749 -5.06 -0.4758482 -5.07 -0.48954038 -5.08 -0.50180462 -5.09 -0.5126219 -5.1 -0.52197375 -5.11 -0.52984123 -5.12 -0.53620415 -5.13 -0.54104078 -5.14 -0.54432794 -5.15 -0.54604152 -5.16 -0.54615741 -5.17 -0.54465291 -5.18 -0.5415084 -5.19 -0.5367094 -5.2 -0.53024878 -5.21 -0.52212912 -5.22 -0.51236517 -5.23 -0.50098615 -5.24 -0.48803792 -5.25 -0.47358486 -5.26 -0.45771137 -5.27 -0.4405229 -5.28 -0.42214647 -5.29 -0.40273056 -5.3 -0.38244441 -5.31 -0.36147668 -5.32 -0.34003347 -5.33 -0.31833579 -5.34 -0.29661645 -5.35 -0.27511652 -5.36 -0.25408147 -5.37 -0.23375693 -5.38 -0.21438443 -5.39 -0.19619705 -5.4 -0.17941514 -5.41 -0.16424234 -5.42 -0.15086179 -5.43 -0.13943288 -5.44 -0.13008836 -5.45 -0.12293213 -5.46 -0.11803754 -5.47 -0.11544633 -5.48 -0.11516826 -5.49 -0.11718121 -5.5 -0.121432 -5.51 -0.12783765 -5.52 -0.13628709 -5.53 -0.14664333 -5.54 -0.15874583 -5.55 -0.17241322 -5.56 -0.18744598 -5.57 -0.20362941 -5.58 -0.22073633 -5.59 -0.23852995 -5.6 -0.25676637 -5.61 -0.27519709 -5.62 -0.2935712 -5.63 -0.31163741 -5.64 -0.3291458 -5.65 -0.34584938 -5.66 -0.36150547 -5.67 -0.37587684 -5.68 -0.38873276 -5.69 -0.39984995 -5.7 -0.40901343 -5.71 -0.41601737 -5.72 -0.42066598 -5.73 -0.4227744 -5.74 -0.42216974 -5.75 -0.41869219 -5.76 -0.41219629 -5.77 -0.40255234 -5.78 -0.38964791 -5.79 -0.37338958 -5.8 -0.35370466 -5.81 -0.33054318 -5.82 -0.30387975 -5.83 -0.2737156 -5.84 -0.24008048 -5.85 -0.20303453 -5.86 -0.16266999 -5.87 -0.11911267 -5.88 -0.072523194 -5.89 -0.023097889 -5.9 0.028930764 -5.91 0.083294104 -5.92 0.1396878 -5.93 0.19777296 -5.94 0.25717777 -5.95 0.31749988 -5.96 0.37830935 -5.97 0.43915232 -5.98 0.49955523 -5.99 0.55902976 -6 0.61707825 -6.01 0.67319959 -6.02 0.72689559 -6.03 0.7776776 -6.04 0.82507331 -6.05 0.86863366 -6.06 0.90793961 -6.07 0.94260878 -6.08 0.97230164 -6.09 0.9967273 -6.1 1.0156486 -6.11 1.0288864 -6.12 1.0363232 -6.13 1.0379057 -6.14 1.0336461 -6.15 1.0236231 -6.16 1.0079808 -6.17 0.98692737 -6.18 0.96073223 -6.19 0.92972267 -6.2 0.89427922 -6.21 0.85483047 -6.22 0.81184723 -6.23 0.76583615 -6.24 0.717333 -6.25 0.66689576 -6.26 0.61509763 -6.27 0.56252005 -6.28 0.509746 -6.29 0.45735348 -6.3 0.40590946 -6.31 0.35596421 -6.32 0.30804611 -6.33 0.26265699 -6.34 0.22026795 -6.35 0.18131565 -6.36 0.14619908 -6.37 0.11527672 -6.38 0.08886406 -6.39 0.067231386 -6.4 0.050601885 -6.41 0.03914991 -6.42 0.032999444 -6.43 0.032222726 -6.44 0.036839041 -6.45 0.046813691 -6.46 0.062057188 -6.47 0.082424716 -6.48 0.10771593 -6.49 0.1376752 -6.5 0.17199229 -6.51 0.21030372 -6.52 0.25219475 -6.53 0.29720211 -6.54 0.34481754 -6.55 0.39449224 -6.56 0.4456421 -6.57 0.4976538 -6.58 0.5498918 -6.59 0.60170594 -6.6 0.65243976 -6.61 0.70143931 -6.62 0.74806218 -6.63 0.79168688 -6.64 0.83172196 -6.65 0.86761501 -6.66 0.89886116 -6.67 0.92501083 -6.68 0.94567673 -6.69 0.96053968 -6.7 0.96935335 -6.71 0.97194755 -6.72 0.96823028 -6.73 0.95818814 -6.74 0.94188544 -6.75 0.9194618 -6.76 0.89112845 -6.77 0.85716322 -6.78 0.81790453 -6.79 0.77374435 -6.8 0.72512047 -6.81 0.6725082 -6.82 0.61641176 -6.83 0.55735549 -6.84 0.49587519 -6.85 0.43250968 -6.86 0.3677928 -6.87 0.30224598 -6.88 0.23637153 -6.89 0.1706467 -6.9 0.10551865 -6.91 0.041400209 -6.92 -0.021333334 -6.93 -0.082346621 -6.94 -0.14134574 -6.95 -0.19807895 -6.96 -0.25233664 -6.97 -0.30395065 -6.98 -0.35279305 -6.99 -0.3987744 -7 -0.44184162 -7.01 -0.48197552 -7.02 -0.51918817 -7.03 -0.55351998 -7.04 -0.58503678 -7.05 -0.61382675 -7.06 -0.63999736 -7.07 -0.66367233 -7.08 -0.68498864 -7.09 -0.70409356 -7.1 -0.72114175 -7.11 -0.73629255 -7.12 -0.74970725 -7.13 -0.76154661 -7.14 -0.77196837 -7.15 -0.7811251 -7.16 -0.78916206 -7.17 -0.79621535 -7.18 -0.80241025 -7.19 -0.80785979 -7.2 -0.81266356 -7.21 -0.81690684 -7.22 -0.82065992 -7.23 -0.82397778 -7.24 -0.82690003 -7.25 -0.82945112 -7.26 -0.83164082 -7.27 -0.83346495 -7.28 -0.83490636 -7.29 -0.83593607 -7.3 -0.83651459 -7.31 -0.83659337 -7.32 -0.83611634 -7.33 -0.83502148 -7.34 -0.83324248 -7.35 -0.8307103 -7.36 -0.82735473 -7.37 -0.82310596 -7.38 -0.81789592 -7.39 -0.81165969 -7.4 -0.80433673 -7.41 -0.79587207 -7.42 -0.78621734 -7.43 -0.77533186 -7.44 -0.76318351 -7.45 -0.74974966 -7.46 -0.73501796 -7.47 -0.71898717 -7.48 -0.70166789 -7.49 -0.68308324 -7.5 -0.66326951 -7.51 -0.64227668 -7.52 -0.62016892 -7.53 -0.59702487 -7.54 -0.57293786 -7.55 -0.54801581 -7.56 -0.52238104 -7.57 -0.49616973 -7.58 -0.46953111 -7.59 -0.44262634 -7.6 -0.41562706 -7.61 -0.38871355 -7.62 -0.36207268 -7.63 -0.33589535 -7.64 -0.31037377 -7.65 -0.28569843 -7.66 -0.26205486 -7.67 -0.23962022 -7.68 -0.21855985 -7.69 -0.19902376 -7.7 -0.18114325 -7.71 -0.16502766 -7.72 -0.15076139 -7.73 -0.13840124 -7.74 -0.12797416 -7.75 -0.1194755 -7.76 -0.11286778 -7.77 -0.10808011 -7.78 -0.10500814 -7.79 -0.1035148 -7.8 -0.10343158 -7.81 -0.10456054 -7.82 -0.10667698 -7.83 -0.10953259 -7.84 -0.11285931 -7.85 -0.11637355 -7.86 -0.11978091 -7.87 -0.12278121 -7.88 -0.12507373 -7.89 -0.1263627 -7.9 -0.12636274 -7.91 -0.12480434 -7.92 -0.12143911 -7.93 -0.1160449 -7.94 -0.10843045 -7.95 -0.098439716 -7.96 -0.085955586 -7.97 -0.070903068 -7.98 -0.053251753 -7.99 -0.033017568 -8 -0.01026374 -8.01 0.014899064 -8.02 0.042313452 -8.03 0.071776873 -8.04 0.10304404 -8.05 0.13583022 -8.06 0.16981524 -8.07 0.20464836 -8.08 0.23995375 -8.09 0.27533655 -8.1 0.31038948 -8.11 0.34469979 -8.12 0.37785652 -8.13 0.40945778 -8.14 0.43911816 -8.15 0.46647583 -8.16 0.49119945 -8.17 0.51299452 -8.18 0.53160922 -8.19 0.54683949 -8.2 0.55853327 -8.21 0.56659379 -8.22 0.57098187 -8.23 0.57171712 -8.24 0.56887799 -8.25 0.56260073 -8.26 0.55307718 -8.27 0.54055154 -8.28 0.52531604 -8.29 0.50770569 -8.3 0.4880922 -8.31 0.4668772 -8.32 0.44448482 -8.33 0.42135386 -8.34 0.39792976 -8.35 0.37465633 -8.36 0.35196763 -8.37 0.33028002 -8.38 0.30998456 -8.39 0.29144002 -8.4 0.27496634 -8.41 0.2608391 -8.42 0.24928463 -8.43 0.24047619 -8.44 0.23453118 -8.45 0.23150929 -8.46 0.23141185 -8.47 0.23418225 -8.48 0.23970735 -8.49 0.24782001 -8.5 0.25830262 -8.51 0.27089149 -8.52 0.28528215 -8.53 0.30113531 -8.54 0.31808354 -8.55 0.33573841 -8.56 0.35369804 -8.57 0.37155486 -8.58 0.38890355 -8.59 0.40534883 -8.6 0.42051315 -8.61 0.43404398 -8.62 0.44562067 -8.63 0.45496066 -8.64 0.46182498 -8.65 0.46602278 -8.66 0.46741511 -8.67 0.46591741 -8.68 0.46150109 -8.69 0.45419382 -8.7 0.44407875 -8.71 0.43129253 -8.72 0.41602215 -8.73 0.39850084 -8.74 0.37900284 -8.75 0.35783739 -8.76 0.33534196 -8.77 0.31187487 -8.78 0.28780751 -8.79 0.26351627 -8.8 0.23937445 -8.81 0.21574432 -8.82 0.19296941 -8.83 0.17136739 -8.84 0.15122356 -8.85 0.13278518 -8.86 0.11625666 -8.87 0.10179592 -8.88 0.089511763 -8.89 0.07946244 -8.9 0.071655397 -8.91 0.066048176 -8.92 0.062550424 -8.93 0.061026951 -8.94 0.061301712 -8.95 0.063162622 -8.96 0.066367034 -8.97 0.07064776 -8.98 0.075719443 -8.99 0.081285138 -9 0.087042928 -9.01 0.092692423 -9.02 0.09794099 -9.03 0.10250958 -9.04 0.10613806 -9.05 0.10858989 -9.06 0.10965613 -9.07 0.10915871 -9.08 0.10695292 -9.09 0.10292906 -9.1 0.097013318 -9.11 0.089167945 -9.12 0.079390597 -9.13 0.067713073 -9.14 0.05419943 -9.15 0.038943543 -9.16 0.02206623 -9.17 0.0037119827 -9.18 -0.015954588 -9.19 -0.036752513 -9.2 -0.058488361 -9.21 -0.080960175 -9.22 -0.10396139 -9.23 -0.12728464 -9.24 -0.15072545 -9.25 -0.1740856 -9.26 -0.19717638 -9.27 -0.21982134 -9.28 -0.24185884 -9.29 -0.26314406 -9.3 -0.28355069 -9.31 -0.30297211 -9.32 -0.32132211 -9.33 -0.33853514 -9.34 -0.35456613 -9.35 -0.36938974 -9.36 -0.38299933 -9.37 -0.39540534 -9.38 -0.40663347 -9.39 -0.41672239 -9.4 -0.42572129 -9.41 -0.43368717 -9.42 -0.44068207 -9.43 -0.44677016 -9.44 -0.45201496 -9.45 -0.45647664 -9.46 -0.46020949 -9.47 -0.46325979 -9.48 -0.46566386 -9.49 -0.46744669 -9.5 -0.46862093 -9.51 -0.46918643 -9.52 -0.46913033 -9.53 -0.46842763 -9.54 -0.46704229 -9.55 -0.46492885 -9.56 -0.46203446 -9.57 -0.45830129 -9.58 -0.45366922 -9.59 -0.44807873 -9.6 -0.44147394 -9.61 -0.43380554 -9.62 -0.4250337 -9.63 -0.41513069 -9.64 -0.40408317 -9.65 -0.39189409 -9.66 -0.37858405 -9.67 -0.36419207 -9.68 -0.34877577 -9.69 -0.33241086 -9.7 -0.31518998 -9.71 -0.29722092 -9.72 -0.27862416 -9.73 -0.25952996 -9.74 -0.24007483 -9.75 -0.22039777 -9.76 -0.20063614 -9.77 -0.18092141 -9.78 -0.16137489 -9.79 -0.14210357 -9.8 -0.12319618 -9.81 -0.10471967 -9.82 -0.086716139 -9.83 -0.069200377 -9.84 -0.052158111 -9.85 -0.035545019 -9.86 -0.01928657 -9.87 -0.0032787399 -9.88 0.012610407 -9.89 0.028538261 -9.9 0.044684375 -9.91 0.061246403 -9.92 0.078435332 -9.93 0.096470114 -9.94 0.11557182 -9.95 0.13595741 -9.96 0.15783333 -9.97 0.18138902 -9.98 0.20679049 -9.99 0.23417418 -10 0.26364122 -10.01 0.2952522 -10.02 0.32902267 -10.03 0.3649194 -10.04 0.40285768 -10.05 0.44269947 -10.06 0.48425276 -10.07 0.527272 -10.08 0.57145973 -10.09 0.61646932 -10.1 0.6619088 -10.11 0.70734585 -10.12 0.75231365 -10.13 0.7963177 -10.14 0.83884333 -10.15 0.87936384 -10.16 0.91734903 -10.17 0.95227409 -10.18 0.98362846 -10.19 1.0109247 -10.2 1.0337069 -10.21 1.0515588 -10.22 1.0641113 -10.23 1.0710489 -10.24 1.0721153 -10.25 1.0671184 -10.26 1.0559332 -10.27 1.0385045 -10.28 1.0148478 -10.29 0.98504892 -10.3 0.94926242 -10.31 0.90770908 -10.32 0.86067197 -10.33 0.80849158 -10.34 0.75156009 -10.35 0.69031486 -10.36 0.62523131 -10.37 0.55681535 -10.38 0.48559555 -10.39 0.41211523 -10.4 0.33692456 -10.41 0.26057292 -10.42 0.18360162 -10.43 0.10653707 -10.44 0.029884645 -10.45 -0.045876856 -10.46 -0.1202999 -10.47 -0.19297216 -10.48 -0.26351953 -10.49 -0.33160842 -10.5 -0.39694713 -10.51 -0.45928644 -10.52 -0.51841952 -10.53 -0.57418114 -10.54 -0.62644624 -10.55 -0.67512809 -10.56 -0.72017592 -10.57 -0.76157226 -10.58 -0.79933011 -10.59 -0.8334898 -10.6 -0.86411591 -10.61 -0.89129408 -10.62 -0.91512796 -10.63 -0.93573619 -10.64 -0.95324958 -10.65 -0.96780841 -10.66 -0.97956001 -10.67 -0.98865648 -10.68 -0.99525264 -10.69 -0.99950419 -10.7 -1.0015661 -10.71 -1.0015911 -10.72 -0.99972856 -10.73 -0.99612297 -10.74 -0.99091331 -10.75 -0.98423191 -10.76 -0.97620365 -10.77 -0.96694525 -10.78 -0.95656448 -10.79 -0.94515957 -10.8 -0.93281864 -10.81 -0.91961907 -10.82 -0.90562715 -10.83 -0.89089759 -10.84 -0.87547324 -10.85 -0.85938492 -10.86 -0.84265131 -10.87 -0.82527906 -10.88 -0.807263 -10.89 -0.7885866 -10.9 -0.76922261 -10.91 -0.7491339 -10.92 -0.72827456 -10.93 -0.70659122 -10.94 -0.68402459 -10.95 -0.66051126 -10.96 -0.63598565 -10.97 -0.6103822 -10.98 -0.58363765 -10.99 -0.55569349 -11 -0.52649844 -11.01 -0.49601091 -11.02 -0.46420148 -11.03 -0.43105518 -11.04 -0.39657368 -11.05 -0.36077715 -11.06 -0.32370585 -11.07 -0.28542137 -11.08 -0.24600734 -11.09 -0.20556979 -11.1 -0.16423691 -11.11 -0.12215828 -11.12 -0.079503581 -11.13 -0.036460682 -11.14 0.0067667159 -11.15 0.049961999 -11.16 0.092898979 -11.17 0.13534562 -11.18 0.17706805 -11.19 0.21783479 -11.2 0.25742108 -11.21 0.29561316 -11.22 0.33221246 -11.23 0.36703955 -11.24 0.39993765 -11.25 0.43077577 -11.26 0.45945122 -11.27 0.48589149 -11.28 0.51005539 -11.29 0.53193347 -11.3 0.5515476 -11.31 0.56894979 -11.32 0.58422024 -11.33 0.59746463 -11.34 0.60881081 -11.35 0.61840484 -11.36 0.62640669 -11.37 0.63298544 -11.38 0.63831444 -11.39 0.64256629 -11.4 0.64590794 -11.41 0.64849605 -11.42 0.65047264 -11.43 0.65196126 -11.44 0.65306382 -11.45 0.65385796 -11.46 0.65439534 -11.47 0.65470062 -11.48 0.65477135 -11.49 0.65457862 -11.5 0.65406858 -11.51 0.6531646 -11.52 0.65177024 -11.53 0.64977265 -11.54 0.64704654 -11.55 0.64345844 -11.56 0.63887116 -11.57 0.6331484 -11.58 0.62615916 -11.59 0.61778213 -11.6 0.60790963 -11.61 0.59645118 -11.62 0.58333658 -11.63 0.56851839 -11.64 0.55197377 -11.65 0.53370561 -11.66 0.51374305 -11.67 0.49214129 -11.68 0.46898074 -11.69 0.4443656 -11.7 0.41842191 -11.71 0.39129512 -11.72 0.36314731 -11.73 0.33415415 -11.74 0.30450163 -11.75 0.2743828 -11.76 0.2439944 -11.77 0.21353369 -11.78 0.18319539 -11.79 0.15316893 -11.8 0.12363593 -11.81 0.094768054 -11.82 0.066725235 -11.83 0.039654282 -11.84 0.013687858 -11.85 -0.011056162 -11.86 -0.034474984 -11.87 -0.05648088 -11.88 -0.077000885 -11.89 -0.09597627 -11.9 -0.11336183 -11.91 -0.12912504 -11.92 -0.14324511 -11.93 -0.15571203 -11.94 -0.16652558 -11.95 -0.17569437 -11.96 -0.183235 -11.97 -0.18917123 -11.98 -0.19353327 -11.99 -0.19635722 -12 -0.1976845 -12.01 -0.19756148 -12.02 -0.19603912 -12.03 -0.19317266 -12.04 -0.18902143 -12.05 -0.18364853 -12.06 -0.17712062 -12.07 -0.16950763 -12.08 -0.16088241 -12.09 -0.15132032 -12.1 -0.14089873 -12.11 -0.12969645 -12.12 -0.11779307 -12.13 -0.10526819 -12.14 -0.092200657 -12.15 -0.078667655 -12.16 -0.064743857 -12.17 -0.05050053 -12.18 -0.036004688 -12.19 -0.021318309 -12.2 -0.0064976435 -12.21 0.0084073418 -12.22 0.02335337 -12.23 0.038304076 -12.24 0.053230031 -12.25 0.068108551 -12.26 0.082923289 -12.27 0.097663607 -12.28 0.11232375 -12.29 0.12690181 -12.3 0.14139857 -12.31 0.15581617 -12.32 0.17015671 -12.33 0.1844208 -12.34 0.19860616 -12.35 0.21270617 -12.36 0.22670864 -12.37 0.24059463 -12.38 0.25433758 -12.39 0.26790257 -12.4 0.28124593 -12.41 0.29431507 -12.42 0.30704871 -12.43 0.31937736 -12.44 0.33122413 -12.45 0.34250581 -12.46 0.35313427 -12.47 0.36301802 -12.48 0.37206399 -12.49 0.38017942 -12.5 0.38727382 -12.51 0.39326096 -12.52 0.39806071 -12.53 0.4016009 -12.54 0.40381884 -12.55 0.40466272 -12.56 0.40409266 -12.57 0.40208145 -12.58 0.39861495 -12.59 0.39369209 -12.6 0.38732453 -12.61 0.37953595 -12.62 0.370361 -12.63 0.35984393 -12.64 0.34803699 -12.65 0.33499862 -12.66 0.32079148 -12.67 0.30548043 -12.68 0.28913048 -12.69 0.27180487 -12.7 0.2535632 -12.71 0.23445983 -12.72 0.21454252 -12.73 0.1938514 -12.74 0.17241822 -12.75 0.15026609 -12.76 0.12740949 -12.77 0.10385477 -12.78 0.079600942 -12.79 0.054640917 -12.8 0.028962972 -12.81 0.0025525407 -12.82 -0.024605802 -12.83 -0.052526206 -12.84 -0.081219325 -12.85 -0.11069008 -12.86 -0.14093551 -12.87 -0.17194267 -12.88 -0.20368684 -12.89 -0.23612987 -12.9 -0.26921889 -12.91 -0.30288529 -12.92 -0.3370442 -12.93 -0.37159419 -12.94 -0.40641747 -12.95 -0.44138051 -12.96 -0.47633494 -12.97 -0.51111895 -12.98 -0.54555887 -12.99 -0.57947118 -13 -0.61266472 -13.01 -0.64494311 -13.02 -0.6761073 -13.03 -0.70595829 -13.04 -0.73429987 -13.05 -0.76094135 -13.06 -0.78570024 -13.07 -0.80840491 -13.08 -0.82889702 -13.09 -0.84703385 -13.1 -0.86269035 -13.11 -0.87576106 -13.12 -0.88616165 -13.13 -0.89383025 -13.14 -0.89872848 -13.15 -0.90084212 -13.16 -0.90018152 -13.17 -0.89678159 -13.18 -0.89070161 -13.19 -0.88202456 -13.2 -0.87085624 -13.21 -0.85732404 -13.22 -0.84157541 -13.23 -0.82377608 -13.24 -0.80410803 -13.25 -0.78276718 -13.26 -0.75996095 -13.27 -0.73590564 -13.28 -0.71082361 -13.29 -0.68494052 -13.3 -0.65848234 -13.31 -0.63167254 -13.32 -0.60472917 -13.33 -0.57786215 -13.34 -0.5512706 -13.35 -0.52514038 -13.36 -0.49964185 -13.37 -0.47492786 -13.38 -0.451132 -13.39 -0.42836715 -13.4 -0.40672436 -13.41 -0.38627202 -13.42 -0.36705536 -13.43 -0.34909624 -13.44 -0.33239332 -13.45 -0.31692238 -13.46 -0.30263708 -13.47 -0.28946975 -13.48 -0.27733259 -13.49 -0.26611893 -13.5 -0.25570464 -13.51 -0.24594979 -13.52 -0.23670023 -13.53 -0.22778942 -13.54 -0.21904027 -13.55 -0.21026698 -13.56 -0.20127708 -13.57 -0.19187336 -13.58 -0.18185602 -13.59 -0.17102477 -13.6 -0.15918106 -13.61 -0.14613038 -13.62 -0.13168467 -13.63 -0.11566479 -13.64 -0.097903106 -13.65 -0.078246144 -13.66 -0.056557298 -13.67 -0.032719586 -13.68 -0.0066384017 -13.69 0.021755794 -13.7 0.052504877 -13.71 0.085620632 -13.72 0.12108257 -13.73 0.15883606 -13.74 0.19879082 -13.75 0.24081993 -13.76 0.28475932 -13.77 0.33040788 -13.78 0.37752823 -13.79 0.42584815 -13.8 0.47506274 -13.81 0.52483729 -13.82 0.57481081 -13.83 0.62460031 -13.84 0.67380553 -13.85 0.72201437 -13.86 0.76880855 -13.87 0.81376976 -13.88 0.85648584 -13.89 0.89655712 -13.9 0.93360254 -13.91 0.96726562 -13.92 0.99722001 -13.93 1.0231745 -13.94 1.0448774 -13.95 1.0621202 -13.96 1.0747404 -13.97 1.0826233 -13.98 1.085703 -13.99 1.0839629 -14 1.0774339 -14.01 1.0661938 -14.02 1.0503638 -14.03 1.0301058 -14.04 1.005618 -14.05 0.97713108 -14.06 0.94490316 -14.07 0.90921473 -14.08 0.87036371 -14.09 0.82866038 -14.1 0.7844225 -14.11 0.73797074 -14.12 0.68962446 -14.13 0.639698 -14.14 0.5884974 -14.15 0.53631781 -14.16 0.48344141 -14.17 0.43013589 -14.18 0.37665361 -14.19 0.32323117 -14.2 0.27008956 -14.21 0.21743467 -14.22 0.16545818 -14.23 0.1143387 -14.24 0.064243156 -14.25 0.015328248 -14.26 -0.032258044 -14.27 -0.07837496 -14.28 -0.12288757 -14.29 -0.16566553 -14.3 -0.20658198 -14.31 -0.24551275 -14.32 -0.28233571 -14.33 -0.31693048 -14.34 -0.34917831 -14.35 -0.37896231 -14.36 -0.40616783 -14.37 -0.43068318 -14.38 -0.45240051 -14.39 -0.47121686 -14.4 -0.48703543 -14.41 -0.49976693 -14.42 -0.50933106 -14.43 -0.51565806 -14.44 -0.5186903 -14.45 -0.51838384 -14.46 -0.51471004 -14.47 -0.50765702 -14.48 -0.49723105 -14.49 -0.48345788 -14.5 -0.46638378 -14.51 -0.44607645 -14.52 -0.42262572 -14.53 -0.39614389 -14.54 -0.36676587 -14.55 -0.3346489 -14.56 -0.29997202 -14.57 -0.26293514 -14.58 -0.2237577 -14.59 -0.18267708 -14.6 -0.13994654 -14.61 -0.095832974 -14.62 -0.050614231 -14.63 -0.0045763159 -14.64 0.041989658 -14.65 0.088790626 -14.66 0.13553478 -14.67 0.18193473 -14.68 0.22771062 -14.69 0.27259298 -14.7 0.31632541 -14.71 0.35866684 -14.72 0.39939348 -14.73 0.43830032 -14.74 0.47520214 -14.75 0.50993401 -14.76 0.54235139 -14.77 0.57232964 -14.78 0.59976318 -14.79 0.62456424 -14.8 0.64666124 -14.81 0.66599699 -14.82 0.68252668 -14.83 0.69621585 -14.84 0.70703834 -14.85 0.71497445 -14.86 0.72000917 -14.87 0.72213087 -14.88 0.72133024 -14.89 0.71759963 -14.9 0.71093295 -14.91 0.70132586 -14.92 0.68877654 -14.93 0.67328678 -14.94 0.65486352 -14.95 0.63352058 -14.96 0.60928076 -14.97 0.58217792 -14.98 0.55225922 -14.99 0.51958716 -15 0.48424159 -15.01 0.44632133 -15.02 0.40594552 -15.03 0.36325449 -15.04 0.31841017 -15.05 0.27159598 -15.06 0.22301618 -15.07 0.17289464 -15.08 0.12147314 -15.09 0.069009157 -15.1 0.015773239 -15.11 -0.037953987 -15.12 -0.09188506 -15.13 -0.14572912 -15.14 -0.19919541 -15.15 -0.25199681 -15.16 -0.3038532 -15.17 -0.35449472 -15.18 -0.40366466 -15.19 -0.45112214 -15.2 -0.49664431 -15.21 -0.54002822 -15.22 -0.58109221 -15.23 -0.6196769 -15.24 -0.65564575 -15.25 -0.68888518 -15.26 -0.71930444 -15.27 -0.74683504 -15.28 -0.77142997 -15.29 -0.79306269 -15.3 -0.81172596 -15.31 -0.82743054 -15.32 -0.84020378 -15.33 -0.85008829 -15.34 -0.85714047 -15.35 -0.86142916 -15.36 -0.86303429 -15.37 -0.8620456 -15.38 -0.85856144 -15.39 -0.85268752 -15.4 -0.84453588 -15.41 -0.83422373 -15.42 -0.82187241 -15.43 -0.80760637 -15.44 -0.79155211 -15.45 -0.77383715 -15.46 -0.75458904 -15.47 -0.73393434 -15.48 -0.71199761 -15.49 -0.68890046 -15.5 -0.66476064 -15.51 -0.63969121 -15.52 -0.61379974 -15.53 -0.58718774 -15.54 -0.55995009 -15.55 -0.53217474 -15.56 -0.50394248 -15.57 -0.47532696 -15.58 -0.44639489 -15.59 -0.41720633 -15.6 -0.38781527 -15.61 -0.3582703 -15.62 -0.32861542 -15.63 -0.29889091 -15.64 -0.26913439 -15.65 -0.23938175 -15.66 -0.20966826 -15.67 -0.18002944 -15.68 -0.15050205 -15.69 -0.12112483 -15.7 -0.091939185 -15.71 -0.062989677 -15.72 -0.034324371 -15.73 -0.0059949909 -15.74 0.0219431 -15.75 0.049431091 -15.76 0.076407068 -15.77 0.10280651 -15.78 0.12856288 -15.79 0.15360836 -15.8 0.17787456 -15.81 0.20129335 -15.82 0.22379768 -15.83 0.24532233 -15.84 0.26580472 -15.85 0.28518556 -15.86 0.30340952 -15.87 0.32042578 -15.88 0.3361885 -15.89 0.35065728 -15.9 0.36379741 -15.91 0.37558021 -15.92 0.38598323 -15.93 0.39499039 -15.94 0.40259213 -15.95 0.4087855 -15.96 0.41357427 -15.97 0.41696894 -15.98 0.41898683 -15.99 0.41965205 -16 0.41899551 -16.01 0.41705483 -16.02 0.41387428 -16.03 0.40950457 -16.04 0.40400257 -16.05 0.39743099 -16.06 0.38985792 -16.07 0.3813562 -16.08 0.37200279 -16.09 0.3618779 -16.1 0.35106409 -16.11 0.33964518 -16.12 0.3277052 -16.13 0.31532712 -16.14 0.30259169 -16.15 0.28957617 -16.16 0.27635311 -16.17 0.26298928 -16.18 0.24954457 -16.19 0.23607117 -16.2 0.22261278 -16.21 0.20920417 -16.22 0.19587086 -16.23 0.18262911 -16.24 0.16948614 -16.25 0.15644058 -16.26 0.14348328 -16.27 0.13059825 -16.28 0.11776383 -16.29 0.10495416 -16.3 0.092140665 -16.31 0.079293744 -16.32 0.066384506 -16.33 0.053386539 -16.34 0.040277649 -16.35 0.027041541 -16.36 0.013669395 -16.37 0.00016127394 -16.38 -0.013472636 -16.39 -0.027211022 -16.4 -0.04102068 -16.41 -0.054856015 -16.42 -0.068658827 -16.43 -0.08235838 -16.44 -0.095871765 -16.45 -0.10910454 -16.46 -0.12195167 -16.47 -0.13429868 -16.48 -0.14602311 -16.49 -0.15699616 -16.5 -0.16708455 -16.51 -0.17615252 -16.52 -0.18406403 -16.53 -0.19068505 -16.54 -0.19588589 -16.55 -0.19954368 -16.56 -0.20154478 -16.57 -0.20178722 -16.58 -0.2001831 -16.59 -0.19666088 -16.6 -0.19116755 -16.61 -0.18367068 -16.62 -0.17416025 -16.63 -0.16265022 -16.64 -0.14917991 -16.65 -0.13381496 -16.66 -0.11664809 -16.67 -0.097799368 -16.68 -0.077416129 -16.69 -0.055672487 -16.7 -0.032768369 -16.71 -0.0089281173 -16.72 0.015601376 -16.73 0.040552985 -16.74 0.065642111 -16.75 0.09056986 -16.76 0.11502661 -16.77 0.13869591 -16.78 0.16125871 -16.79 0.18239777 -16.8 0.20180227 -16.81 0.21917248 -16.82 0.2342245 -16.83 0.24669482 -16.84 0.25634477 -16.85 0.26296477 -16.86 0.26637809 -16.87 0.26644436 -16.88 0.26306244 -16.89 0.25617282 -16.9 0.24575936 -16.91 0.23185034 -16.92 0.21451887 -16.93 0.19388253 -16.94 0.17010232 -16.95 0.14338088 -16.96 0.11396007 -16.97 0.082117817 -16.98 0.048164526 -16.99 0.012438839 -17 -0.024696959 -17.01 -0.062861911 -17.02 -0.10166159 -17.03 -0.14069349 -17.04 -0.17955237 -17.05 -0.21783569 -17.06 -0.25514872 -17.07 -0.29110954 -17.08 -0.32535364 -17.09 -0.3575381 -17.1 -0.38734532 -17.11 -0.41448621 -17.12 -0.43870281 -17.13 -0.45977033 -17.14 -0.4774986 -17.15 -0.49173287 -17.16 -0.50235415 -17.17 -0.50927891 -17.18 -0.51245833 -17.19 -0.51187711 -17.2 -0.50755191 -17.21 -0.49952948 -17.22 -0.4878845 -17.23 -0.47271736 -17.24 -0.45415171 -17.25 -0.43233206 -17.26 -0.40742139 -17.27 -0.37959879 -17.28 -0.34905727 -17.29 -0.31600165 -17.3 -0.28064669 -17.31 -0.24321537 -17.32 -0.20393729 -17.33 -0.16304735 -17.34 -0.12078453 -17.35 -0.077390765 -17.36 -0.033110003 -17.37 0.011812709 -17.38 0.057132083 -17.39 0.10260344 -17.4 0.14798356 -17.41 0.19303162 -17.42 0.23751011 -17.43 0.28118589 -17.44 0.32383131 -17.45 0.3652254 -17.46 0.40515507 -17.47 0.44341649 -17.48 0.47981633 -17.49 0.51417314 -17.5 0.54631861 -17.51 0.57609879 -17.52 0.60337519 -17.53 0.6280258 -17.54 0.64994589 -17.55 0.66904862 -17.56 0.68526549 -17.57 0.69854657 -17.58 0.70886042 -17.59 0.71619392 -17.6 0.72055177 -17.61 0.72195591 -17.62 0.72044467 -17.63 0.71607181 -17.64 0.70890552 -17.65 0.69902725 -17.66 0.68653054 -17.67 0.67151988 -17.68 0.65410954 -17.69 0.63442246 -17.7 0.61258927 -17.71 0.58874734 -17.72 0.56303998 -17.73 0.53561568 -17.74 0.50662749 -17.75 0.47623253 -17.76 0.44459147 -17.77 0.41186813 -17.78 0.37822912 -17.79 0.34384342 -17.8 0.308882 -17.81 0.27351735 -17.82 0.237923 -17.83 0.20227288 -17.84 0.16674066 -17.85 0.13149897 -17.86 0.096718477 -17.87 0.062566966 -17.88 0.029208252 -17.89 -0.0031989085 -17.9 -0.034501952 -17.91 -0.064555655 -17.92 -0.093223248 -17.93 -0.12037748 -17.94 -0.1459016 -17.95 -0.16969022 -17.96 -0.19165006 -17.97 -0.2117005 -17.98 -0.22977404 -17.99 -0.24581647 -18 -0.25978699 -18.01 -0.27165804 -18.02 -0.28141506 -18.03 -0.28905605 -18.04 -0.294591 -18.05 -0.29804127 -18.06 -0.29943886 -18.07 -0.29882561 -18.08 -0.29625246 -18.09 -0.29177861 -18.1 -0.2854708 -18.11 -0.27740257 -18.12 -0.26765367 -18.13 -0.25630945 -18.14 -0.24346037 -18.15 -0.22920163 -18.16 -0.21363277 -18.17 -0.19685748 -18.18 -0.17898332 -18.19 -0.16012159 -18.2 -0.14038715 -18.21 -0.1198983 -18.22 -0.098776608 -18.23 -0.077146721 -18.24 -0.055136178 -18.25 -0.032875117 -18.26 -0.010495962 -18.27 0.011866969 -18.28 0.034077902 -18.29 0.056000113 -18.3 0.077496484 -18.31 0.098430109 -18.32 0.11866493 -18.33 0.13806639 -18.34 0.15650214 -18.35 0.17384272 -18.36 0.1899622 -18.37 0.20473893 -18.38 0.21805613 -18.39 0.22980259 -18.4 0.23987324 -18.41 0.24816979 -18.42 0.25460131 -18.43 0.25908479 -18.44 0.26154573 -18.45 0.26191869 -18.46 0.26014786 -18.47 0.25618763 -18.48 0.25000313 -18.49 0.24157083 -18.5 0.23087907 -18.51 0.21792863 -18.52 0.2027332 -18.53 0.18531993 -18.54 0.16572975 -18.55 0.14401782 -18.56 0.12025368 -18.57 0.09452145 -18.58 0.066919773 -18.59 0.037561698 -18.6 0.006574334 -18.61 -0.025901652 -18.62 -0.059712724 -18.63 -0.094693362 -18.64 -0.13066713 -18.65 -0.16744793 -18.66 -0.20484141 -18.67 -0.24264654 -18.68 -0.28065731 -18.69 -0.31866448 -18.7 -0.35645748 -18.71 -0.39382626 -18.72 -0.43056322 -18.73 -0.46646499 -18.74 -0.50133429 -18.75 -0.53498152 -18.76 -0.56722636 -18.77 -0.59789909 -18.78 -0.62684185 -18.79 -0.65390957 -18.8 -0.67897076 -18.81 -0.7019081 -18.82 -0.72261875 -18.83 -0.74101451 -18.84 -0.75702167 -18.85 -0.77058084 -18.86 -0.7816464 -18.87 -0.79018601 -18.88 -0.79617981 -18.89 -0.79961964 -18.9 -0.80050818 -18.91 -0.79885797 -18.92 -0.79469049 -18.93 -0.78803527 -18.94 -0.77892896 -18.95 -0.76741452 -18.96 -0.75354052 -18.97 -0.73736047 -18.98 -0.71893234 -18.99 -0.69831817 -19 -0.67558382 -19.01 -0.65079888 -19.02 -0.6240367 -19.03 -0.59537456 -19.04 -0.56489395 -19.05 -0.53268099 -19.06 -0.49882689 -19.07 -0.46342852 -19.08 -0.426589 -19.09 -0.38841833 -19.1 -0.34903396 -19.11 -0.30856135 -19.12 -0.26713446 -19.13 -0.22489609 -19.14 -0.18199815 -19.15 -0.13860165 -19.16 -0.094876659 -19.17 -0.051001881 -19.18 -0.0071641471 -19.19 0.036442416 -19.2 0.079617421 -19.21 0.12215551 -19.22 0.16384784 -19.23 0.20448383 -19.24 0.24385307 -19.25 0.28174734 -19.26 0.31796283 -19.27 0.35230239 -19.28 0.38457784 -19.29 0.41461224 -19.3 0.44224212 -19.31 0.46731962 -19.32 0.48971444 -19.33 0.5093156 -19.34 0.52603299 -19.35 0.53979864 -19.36 0.55056768 -19.37 0.558319 -19.38 0.56305554 -19.39 0.56480433 -19.4 0.56361616 -19.41 0.55956486 -19.42 0.55274644 -19.43 0.54327782 -19.44 0.53129537 -19.45 0.5169533 -19.46 0.50042175 -19.47 0.48188493 -19.48 0.46153898 -19.49 0.43958996 -19.5 0.41625173 -19.51 0.39174386 -19.52 0.36628965 -19.53 0.34011419 -19.54 0.31344256 -19.55 0.28649809 -19.56 0.25950087 -19.57 0.23266627 -19.58 0.20620371 -19.59 0.18031553 -19.6 0.15519598 -19.61 0.13103035 -19.62 0.10799426 -19.63 0.086253002 -19.64 0.065960987 -19.65 0.047261282 -19.66 0.030285208 -19.67 0.015151984 -19.68 0.0019684144 -19.69 -0.0091713901 -19.7 -0.018186279 -19.71 -0.025008311 -19.72 -0.029582996 -19.73 -0.031869538 -19.74 -0.031841077 -19.75 -0.02948493 -19.76 -0.024802838 -19.77 -0.017811207 -19.78 -0.0085413474 -19.79 0.0029603014 -19.8 0.016631958 -19.81 0.032396323 -19.82 0.05016043 -19.83 0.069815564 -19.84 0.091237231 -19.85 0.11428523 -19.86 0.1388038 -19.87 0.16462194 -19.88 0.19155381 -19.89 0.21939936 -19.9 0.24794506 -19.91 0.27696495 -19.92 0.30622181 -19.93 0.33546862 -19.94 0.36445021 -19.95 0.39290524 -19.96 0.42056834 -19.97 0.44717257 -19.98 0.47245201 -19.99 0.49614461 -20 0.51799521 -20.01 0.53775866 -20.02 0.55520298 -20.03 0.57011267 -20.04 0.5822918 -20.05 0.59156718 -20.06 0.59779125 -20.07 0.60084477 -20.08 0.60063922 -20.09 0.59711879 -20.1 0.59026201 -20.11 0.58008285 -20.12 0.56663133 -20.13 0.54999354 -20.14 0.53029112 -20.15 0.50768017 -20.16 0.48234949 -20.17 0.45451838 -20.18 0.42443384 -20.19 0.39236728 -20.2 0.35861082 -20.21 0.32347327 -20.22 0.28727572 -20.23 0.25034704 -20.24 0.21301922 -20.25 0.17562263 -20.26 0.13848145 -20.27 0.10190918 -20.28 0.066204415 -20.29 0.031646927 -20.3 -0.0015058719 -20.31 -0.03302201 -20.32 -0.062697555 -20.33 -0.090358685 -20.34 -0.11586319 -20.35 -0.13910145 -20.36 -0.15999676 -20.37 -0.17850522 -20.38 -0.19461499 -20.39 -0.20834508 -20.4 -0.21974372 -20.41 -0.22888625 -20.42 -0.23587267 -20.43 -0.24082496 -20.44 -0.24388403 -20.45 -0.24520662 -20.46 -0.244962 -20.47 -0.24332864 -20.48 -0.24049091 -20.49 -0.23663579 -20.5 -0.23194972 -20.51 -0.22661561 -20.52 -0.22081005 -20.53 -0.21470075 -20.54 -0.20844426 -20.55 -0.20218396 -20.56 -0.19604843 -20.57 -0.19015006 -20.58 -0.18458413 -20.59 -0.17942809 -20.6 -0.17474129 -20.61 -0.17056506 -20.62 -0.16692302 -20.63 -0.1638218 -20.64 -0.16125205 -20.65 -0.15918963 -20.66 -0.15759718 -20.67 -0.15642577 -20.68 -0.15561685 -20.69 -0.1551042 -20.7 -0.15481614 -20.71 -0.15467766 -20.72 -0.15461262 -20.73 -0.15454599 -20.74 -0.15440585 -20.75 -0.15412551 -20.76 -0.15364524 -20.77 -0.15291403 -20.78 -0.15189099 -20.79 -0.15054652 -20.8 -0.14886332 -20.81 -0.14683695 -20.82 -0.14447619 -20.83 -0.14180309 -20.84 -0.13885264 -20.85 -0.13567221 -20.86 -0.13232064 -20.87 -0.12886708 -20.88 -0.12538957 -20.89 -0.1219734 -20.9 -0.11870922 -20.91 -0.11569109 -20.92 -0.11301432 -20.93 -0.11077326 -20.94 -0.10905906 -20.95 -0.10795746 -20.96 -0.10754657 -20.97 -0.10789479 -20.98 -0.10905885 -20.99 -0.11108205 -21 -0.11399264 -21.01 -0.11780253 -21.02 -0.1225062 -21.03 -0.12807993 -21.04 -0.13448135 -21.05 -0.14164928 -21.06 -0.14950397 -21.07 -0.15794757 -21.08 -0.16686503 -21.09 -0.17612529 -21.1 -0.18558276 -21.11 -0.19507909 -21.12 -0.20444527 -21.13 -0.21350389 -21.14 -0.22207167 -21.15 -0.22996212 -21.16 -0.23698836 -21.17 -0.24296603 -21.18 -0.24771622 -21.19 -0.25106848 -21.2 -0.25286369 -21.21 -0.25295693 -21.22 -0.25122016 -21.23 -0.24754477 -21.24 -0.24184386 -21.25 -0.23405434 -21.26 -0.22413863 -21.27 -0.21208617 -21.28 -0.19791443 -21.29 -0.18166967 -21.3 -0.16342722 -21.31 -0.14329138 -21.32 -0.12139492 -21.33 -0.097898151 -21.34 -0.072987553 -21.35 -0.046874071 -21.36 -0.01979098 -21.37 0.0080085929 -21.38 0.036254463 -21.39 0.064662487 -21.4 0.092937903 -21.41 0.12077888 -21.42 0.14788024 -21.43 0.17393724 -21.44 0.19864947 -21.45 0.22172469 -21.46 0.24288265 -21.47 0.2618588 -21.48 0.27840775 -21.49 0.29230664 -21.5 0.30335815 -21.51 0.31139322 -21.52 0.31627341 -21.53 0.3178929 -21.54 0.31618005 -21.55 0.31109854 -21.56 0.30264802 -21.57 0.29086436 -21.58 0.27581938 -21.59 0.25762019 -21.6 0.23640801 -21.61 0.21235666 -21.62 0.18567059 -21.63 0.1565826 -21.64 0.1253512 -21.65 0.09225774 -21.66 0.05760323 -21.67 0.021705062 -21.68 -0.015106469 -21.69 -0.052491714 -21.7 -0.09010526 -21.71 -0.12759952 -21.72 -0.16462826 -21.73 -0.20085008 -21.74 -0.23593169 -21.75 -0.2695511 -21.76 -0.30140061 -21.77 -0.3311895 -21.78 -0.35864662 -21.79 -0.3835226 -21.8 -0.4055919 -21.81 -0.4246545 -21.82 -0.44053742 -21.83 -0.45309583 -21.84 -0.46221401 -21.85 -0.467806 -21.86 -0.46981597 -21.87 -0.46821834 -21.88 -0.46301769 -21.89 -0.45424839 -21.9 -0.44197408 -21.91 -0.4262868 -21.92 -0.40730609 -21.93 -0.38517775 -21.94 -0.3600725 -21.95 -0.33218443 -21.96 -0.30172929 -21.97 -0.26894268 -21.98 -0.23407799 -21.99 -0.19740428 -22 -0.1592041 -22.01 -0.11977104 -22.02 -0.079407345 -22.03 -0.03842136 -22.04 0.0028750405 -22.05 0.044169096 -22.06 0.085149812 -22.07 0.12551063 -22.08 0.16495205 -22.09 0.2031843 -22.1 0.23992982 -22.11 0.27492577 -22.12 0.3079264 -22.13 0.33870527 -22.14 0.36705731 -22.15 0.39280078 -22.16 0.4157789 -22.17 0.43586141 -22.18 0.45294575 -22.19 0.46695806 -22.2 0.47785389 -22.21 0.48561862 -22.22 0.49026751 -22.23 0.49184555 -22.24 0.49042691 -22.25 0.48611406 -22.26 0.47903664 -22.27 0.46934994 -22.28 0.45723311 -22.29 0.44288708 -22.3 0.42653218 -22.31 0.4084056 -22.32 0.38875848 -22.33 0.36785299 -22.34 0.34595911 -22.35 0.32335144 -22.36 0.30030583 -22.37 0.27709607 -22.38 0.2539906 -22.39 0.2312493 -22.4 0.20912039 -22.41 0.18783755 -22.42 0.16761722 -22.43 0.14865623 -22.44 0.13112962 -22.45 0.11518894 -22.46 0.10096077 -22.47 0.088545695 -22.48 0.078017653 -22.49 0.069423662 -22.5 0.06278393 -22.51 0.05809235 -22.52 0.055317338 -22.53 0.054403001 -22.54 0.055270605 -22.55 0.057820292 -22.56 0.061933022 -22.57 0.067472694 -22.58 0.07428839 -22.59 0.082216707 -22.6 0.091084143 -22.61 0.10070947 -22.62 0.11090609 -22.63 0.1214843 -22.64 0.1322535 -22.65 0.14302422 -22.66 0.15361006 -22.67 0.16382948 -22.68 0.1735074 -22.69 0.18247664 -22.7 0.19057925 -22.71 0.19766762 -22.72 0.20360554 -22.73 0.208269 -22.74 0.21154697 -22.75 0.21334204 -22.76 0.21357097 -22.77 0.21216509 -22.78 0.2090707 -22.79 0.20424935 -22.8 0.19767801 -22.81 0.18934926 -22.82 0.17927129 -22.83 0.16746786 -22.84 0.1539782 -22.85 0.13885675 -22.86 0.12217279 -22.87 0.10401 -22.88 0.08446584 -22.89 0.063650802 -22.9 0.041687534 -22.91 0.018709806 -22.92 -0.0051386489 -22.93 -0.029705439 -22.94 -0.054830934 -22.95 -0.080349788 -22.96 -0.10609256 -22.97 -0.13188737 -22.98 -0.15756163 -22.99 -0.18294376 -23 -0.20786486 -23.01 -0.23216035 -23.02 -0.25567154 -23.03 -0.27824702 -23.04 -0.29974396 -23.05 -0.32002922 -23.06 -0.33898026 -23.07 -0.35648584 -23.08 -0.37244654 -23.09 -0.38677499 -23.1 -0.39939597 -23.11 -0.41024625 -23.12 -0.41927423 -23.13 -0.42643945 -23.14 -0.43171194 -23.15 -0.43507145 -23.16 -0.43650664 -23.17 -0.43601419 -23.18 -0.43359793 -23.19 -0.42926804 -23.2 -0.42304028 -23.21 -0.41493534 -23.22 -0.40497835 -23.23 -0.39319856 -23.24 -0.37962913 -23.25 -0.3643072 -23.26 -0.34727412 -23.27 -0.3285758 -23.28 -0.30826335 -23.29 -0.28639376 -23.3 -0.26303077 -23.31 -0.2382458 -23.32 -0.21211888 -23.33 -0.18473965 -23.34 -0.15620823 -23.35 -0.12663603 -23.36 -0.096146402 -23.37 -0.064875032 -23.38 -0.032970167 -23.39 -0.00059249637 -23.4 0.032085262 -23.41 0.064879113 -23.42 0.097594885 -23.43 0.13002968 -23.44 0.16197368 -23.45 0.19321223 -23.46 0.22352827 -23.47 0.25270495 -23.48 0.28052848 -23.49 0.30679113 -23.5 0.33129423 -23.51 0.35385127 -23.52 0.37429083 -23.53 0.39245947 -23.54 0.40822429 -23.55 0.42147538 -23.56 0.43212774 -23.57 0.44012298 -23.58 0.44543049 -23.59 0.44804822 -23.6 0.4480029 -23.61 0.44534985 -23.62 0.44017228 -23.63 0.43258008 -23.64 0.42270828 -23.65 0.41071496 -23.66 0.39677891 -23.67 0.38109694 -23.68 0.36388097 -23.69 0.34535487 -23.7 0.32575125 -23.71 0.30530815 -23.72 0.28426569 -23.73 0.26286288 -23.74 0.24133441 -23.75 0.21990771 -23.76 0.19880012 -23.77 0.17821634 -23.78 0.15834609 -23.79 0.13936212 -23.8 0.12141845 -23.81 0.1046489 -23.82 0.089165953 -23.83 0.075059917 -23.84 0.062398353 -23.85 0.051225802 -23.86 0.041563784 -23.87 0.033411058 -23.88 0.026744137 -23.89 0.021518039 -23.9 0.017667265 -23.91 0.015106999 -23.92 0.013734503 -23.93 0.013430713 -23.94 0.014062008 -23.95 0.015482147 -23.96 0.017534352 -23.97 0.020053529 -23.98 0.02286859 -23.99 0.025804871 -24 0.028686604 -24.01 0.031339426 -24.02 0.033592883 -24.03 0.035282901 -24.04 0.036254185 -24.05 0.036362511 -24.06 0.03547687 -24.07 0.03348143 -24.08 0.030277289 -24.09 0.025783965 -24.1 0.019940631 -24.11 0.012707038 -24.12 0.0040641304 -24.13 -0.0059856587 -24.14 -0.017418444 -24.15 -0.030189242 -24.16 -0.044232647 -24.17 -0.059463787 -24.18 -0.075779574 -24.19 -0.093060183 -24.2 -0.11117075 -24.21 -0.12996328 -24.22 -0.14927862 -24.23 -0.16894863 -24.24 -0.1887984 -24.25 -0.20864844 -24.26 -0.22831693 -24.27 -0.24762194 -24.28 -0.26638358 -24.29 -0.28442602 -24.3 -0.30157949 -24.31 -0.31768212 -24.32 -0.33258162 -24.33 -0.34613685 -24.34 -0.35821927 -24.35 -0.36871413 -24.36 -0.37752161 -24.37 -0.38455773 -24.38 -0.3897551 -24.39 -0.39306352 -24.4 -0.39445038 -24.41 -0.39390092 -24.42 -0.3914182 -24.43 -0.38702308 -24.44 -0.3807538 -24.45 -0.37266552 -24.46 -0.36282959 -24.47 -0.35133271 -24.48 -0.33827579 -24.49 -0.32377279 -24.5 -0.30794924 -24.51 -0.29094074 -24.52 -0.27289128 -24.53 -0.25395145 -24.54 -0.23427661 -24.55 -0.21402497 -24.56 -0.1933557 -24.57 -0.17242708 -24.58 -0.1513946 -24.59 -0.13040929 -24.6 -0.10961609 -24.61 -0.089152383 -24.62 -0.069146719 -24.63 -0.049717737 -24.64 -0.030973293 -24.65 -0.013009816 -24.66 0.0040881139 -24.67 0.020247961 -24.68 0.03540922 -24.69 0.049523203 -24.7 0.062552654 -24.71 0.074471204 -24.72 0.085262707 -24.73 0.094920476 -24.74 0.10344646 -24.75 0.11085039 -24.76 0.1171489 -24.77 0.12236468 -24.78 0.12652568 -24.79 0.12966437 -24.8 0.13181709 -24.81 0.13302344 -24.82 0.13332582 -24.83 0.13276907 -24.84 0.13140012 -24.85 0.12926784 -24.86 0.12642285 -24.87 0.12291753 -24.88 0.11880594 -24.89 0.11414386 -24.9 0.1089889 -24.91 0.10340045 -24.92 0.097439824 -24.93 0.091170255 -24.94 0.084656903 -24.95 0.077966825 -24.96 0.07116889 -24.97 0.064333637 -24.98 0.057533073 -24.99 0.050840395 -25 0.044329644 -25.01 0.038075281 -25.02 0.032151671 -25.03 0.026632502 -25.04 0.0215901 -25.05 0.017094679 -25.06 0.013213494 -25.07 0.010009928 -25.08 0.0075425049 -25.09 0.0058638458 -25.1 0.005019575 -25.11 0.0050472018 -25.12 0.0059749926 -25.13 0.0078208611 -25.14 0.010591303 -25.15 0.014280409 -25.16 0.018868988 -25.17 0.024323836 -25.18 0.030597191 -25.19 0.037626401 -25.2 0.045333851 -25.21 0.053627157 -25.22 0.062399685 -25.23 0.071531374 -25.24 0.080889906 -25.25 0.090332208 -25.26 0.099706278 -25.27 0.10885332 -25.28 0.11761018 -25.29 0.12581196 -25.3 0.13329496 -25.31 0.13989956 -25.32 0.1454734 -25.33 0.14987438 -25.34 0.15297371 -25.35 0.15465878 -25.36 0.15483585 -25.37 0.15343243 -25.38 0.15039934 -25.39 0.14571243 -25.4 0.13937379 -25.41 0.13141251 -25.42 0.12188501 -25.43 0.1108748 -25.44 0.09849177 -25.45 0.084871019 -25.46 0.070171186 -25.47 0.054572393 -25.48 0.038273807 -25.49 0.021490876 -25.5 0.0044523023 -25.51 -0.012603183 -25.52 -0.029430191 -25.53 -0.045780122 -25.54 -0.061404632 -25.55 -0.076059058 -25.56 -0.089505757 -25.57 -0.10151731 -25.58 -0.11187954 -25.59 -0.12039434 -25.6 -0.12688223 -25.61 -0.13118472 -25.62 -0.13316628 -25.63 -0.13271616 -25.64 -0.12974984 -25.65 -0.12421013 -25.66 -0.11606812 -25.67 -0.10532363 -25.68 -0.092005545 -25.69 -0.076171685 -25.7 -0.057908488 -25.71 -0.037330328 -25.72 -0.014578561 -25.73 0.010179733 -25.74 0.036753291 -25.75 0.06492849 -25.76 0.094471434 -25.77 0.1251303 -25.78 0.15663792 -25.79 0.18871454 -25.8 0.22107082 -25.81 0.25341091 -25.82 0.2854357 -25.83 0.31684607 -25.84 0.34734624 -25.85 0.376647 -25.86 0.40446897 -25.87 0.43054564 -25.88 0.4546263 -25.89 0.47647878 -25.9 0.49589185 -25.91 0.51267744 -25.92 0.52667249 -25.93 0.53774047 -25.94 0.5457726 -25.95 0.55068866 -25.96 0.5524375 -25.97 0.55099718 -25.98 0.54637483 -25.99 0.53860613 -26 0.52775459 -26.01 0.51391049 -26.02 0.49718971 -26.03 0.47773219 -26.04 0.4557004 -26.05 0.43127749 -26.06 0.40466546 -26.07 0.37608312 -26.08 0.34576401 -26.09 0.31395421 -26.1 0.28091011 -26.11 0.24689611 -26.12 0.21218224 -26.13 0.1770418 -26.14 0.1417489 -26.15 0.10657596 -26.16 0.071791236 -26.17 0.03765633 -26.18 0.0044236596 -26.19 -0.027665997 -26.2 -0.058385917 -26.21 -0.087525763 -26.22 -0.11489381 -26.23 -0.14031899 -26.24 -0.16365281 -26.25 -0.18477097 -26.26 -0.20357479 -26.27 -0.2199923 -26.28 -0.23397901 -26.29 -0.24551836 -26.3 -0.2546218 -26.31 -0.26132842 -26.32 -0.2657043 -26.33 -0.26784142 -26.34 -0.26785622 -26.35 -0.26588781 -26.36 -0.26209587 -26.37 -0.25665826 -26.38 -0.24976844 -26.39 -0.24163261 -26.4 -0.2324668 -26.41 -0.22249379 -26.42 -0.21194007 -26.43 -0.20103273 -26.44 -0.18999649 -26.45 -0.17905073 -26.46 -0.1684068 -26.47 -0.15826538 -26.48 -0.14881413 -26.49 -0.14022552 -26.5 -0.13265499 -26.51 -0.12623927 -26.52 -0.12109508 -26.53 -0.11731801 -26.54 -0.11498177 -26.55 -0.11413769 -26.56 -0.11481444 -26.57 -0.11701809 -26.58 -0.12073241 -26.59 -0.12591937 -26.6 -0.13251997 -26.61 -0.14045524 -26.62 -0.14962741 -26.63 -0.15992141 -26.64 -0.17120642 -26.65 -0.18333768 -26.66 -0.19615839 -26.67 -0.20950178 -26.68 -0.22319326 -26.69 -0.23705265 -26.7 -0.25089645 -26.71 -0.26454017 -26.72 -0.27780059 -26.73 -0.290498 -26.74 -0.30245843 -26.75 -0.31351568 -26.76 -0.32351326 -26.77 -0.33230621 -26.78 -0.3397627 -26.79 -0.34576542 -26.8 -0.35021283 -26.81 -0.35302012 -26.82 -0.35412 -26.83 -0.35346323 -26.84 -0.35101894 -26.85 -0.34677479 -26.86 -0.34073684 -26.87 -0.33292933 -26.88 -0.32339423 -26.89 -0.31219066 -26.9 -0.29939413 -26.91 -0.28509572 -26.92 -0.26940108 -26.93 -0.25242932 -26.94 -0.23431182 -26.95 -0.21519093 -26.96 -0.19521855 -26.97 -0.17455462 -26.98 -0.15336547 -26.99 -0.13182212 -27 -0.11009845 -27.01 -0.088369212 -27.02 -0.066808073 -27.03 -0.045585447 -27.04 -0.024866352 -27.05 -0.0048082025 -27.06 0.0144414 -27.07 0.032746835 -27.08 0.049986554 -27.09 0.066055044 -27.1 0.080864606 -27.11 0.094346906 -27.12 0.10645424 -27.13 0.11716044 -27.14 0.12646147 -27.15 0.13437551 -27.16 0.14094263 -27.17 0.14622409 -27.18 0.15030102 -27.19 0.15327278 -27.2 0.15525481 -27.21 0.15637612 -27.22 0.15677645 -27.23 0.15660314 -27.24 0.15600778 -27.25 0.15514281 -27.26 0.15415799 -27.27 0.15319701 -27.28 0.15239423 -27.29 0.15187163 -27.3 0.15173611 -27.31 0.15207715 -27.32 0.15296493 -27.33 0.1544489 -27.34 0.15655695 -27.35 0.15929498 -27.36 0.16264713 -27.37 0.16657646 -27.38 0.17102605 -27.39 0.17592067 -27.4 0.18116871 -27.41 0.18666445 -27.42 0.19229065 -27.43 0.1979212 -27.44 0.20342397 -27.45 0.20866367 -27.46 0.21350463 -27.47 0.21781356 -27.48 0.22146213 -27.49 0.2243294 -27.5 0.22630397 -27.51 0.22728599 -27.52 0.22718881 -27.53 0.22594041 -27.54 0.22348462 -27.55 0.21978193 -27.56 0.21481019 -27.57 0.20856497 -27.58 0.20105971 -27.59 0.19232563 -27.6 0.18241145 -27.61 0.17138281 -27.62 0.15932159 -27.63 0.14632499 -27.64 0.13250433 -27.65 0.11798381 -27.66 0.10289894 -27.67 0.087394896 -27.68 0.071624602 -27.69 0.055746764 -27.7 0.039923693 -27.71 0.024319045 -27.72 0.0090954825 -27.73 -0.0055877147 -27.74 -0.019577033 -27.75 -0.032727066 -27.76 -0.044902758 -27.77 -0.055981503 -27.78 -0.065855046 -27.79 -0.074431138 -27.8 -0.081634904 -27.81 -0.087409882 -27.82 -0.091718706 -27.83 -0.094543416 -27.84 -0.095885381 -27.85 -0.095764847 -27.86 -0.094220109 -27.87 -0.091306359 -27.88 -0.087094224 -27.89 -0.081668057 -27.9 -0.075124025 -27.91 -0.067568067 -27.92 -0.059113774 -27.93 -0.049880261 -27.94 -0.039990095 -27.95 -0.029567325 -27.96 -0.018735677 -27.97 -0.0076169473 -27.98 0.0036703745 -27.99 0.015012237 -28 0.026299903 -28.01 0.037430573 -28.02 0.048307787 -28.03 0.05884161 -28.04 0.068948654 -28.05 0.078551968 -28.06 0.08758084 -28.07 0.095970561 -28.08 0.10366219 -28.09 0.11060235 -28.1 0.11674313 -28.11 0.12204203 -28.12 0.1264621 -28.13 0.12997212 -28.14 0.13254697 -28.15 0.13416805 -28.16 0.13482384 -28.17 0.13451044 -28.18 0.13323222 -28.19 0.13100237 -28.2 0.12784345 -28.21 0.12378776 -28.22 0.11887771 -28.23 0.11316586 -28.24 0.10671489 -28.25 0.099597297 -28.26 0.091894871 -28.27 0.083698004 -28.28 0.075104727 -28.29 0.066219594 -28.3 0.05715238 -28.31 0.048016658 -28.32 0.038928263 -28.33 0.030003701 -28.34 0.021358533 -28.35 0.013105769 -28.36 0.0053543087 -28.37 -0.0017925369 -28.38 -0.00823843 -28.39 -0.013895266 -28.4 -0.018684306 -28.41 -0.022537171 -28.42 -0.025396697 -28.43 -0.027217661 -28.44 -0.027967379 -28.45 -0.027626187 -28.46 -0.026187816 -28.47 -0.023659669 -28.48 -0.020063011 -28.49 -0.015433062 -28.5 -0.0098190119 -28.51 -0.0032839298 -28.52 0.0040954252 -28.53 0.012228918 -28.54 0.021013493 -28.55 0.030333783 -28.56 0.040062914 -28.57 0.050063499 -28.58 0.060188872 -28.59 0.070284539 -28.6 0.080189892 -28.61 0.08974015 -28.62 0.098768548 -28.63 0.10710872 -28.64 0.11459731 -28.65 0.12107662 -28.66 0.1263975 -28.67 0.13042213 -28.68 0.13302684 -28.69 0.13410482 -28.7 0.1335686 -28.71 0.1313523 -28.72 0.12741362 -28.73 0.12173529 -28.74 0.11432625 -28.75 0.10522219 -28.76 0.094485629 -28.77 0.082205496 -28.78 0.068496071 -28.79 0.053495465 -28.8 0.037363574 -28.81 0.020279574 -28.82 0.002439013 -28.83 -0.015949432 -28.84 -0.03466746 -28.85 -0.05349083 -28.86 -0.072193134 -28.87 -0.090549577 -28.88 -0.10834068 -28.89 -0.12535581 -28.9 -0.14139651 -28.91 -0.1562795 -28.92 -0.16983933 -28.93 -0.18193066 -28.94 -0.1924301 -28.95 -0.20123764 -28.96 -0.20827755 -28.97 -0.21349893 -28.98 -0.21687576 -28.99 -0.21840658 -29 -0.21811375 -29.01 -0.21604238 -29.02 -0.21225895 -29.03 -0.20684962 -29.04 -0.19991839 -29.05 -0.19158495 -29.06 -0.18198248 -29.07 -0.17125527 -29.08 -0.15955629 -29.09 -0.14704472 -29.1 -0.13388344 -29.11 -0.12023657 -29.12 -0.10626706 -29.13 -0.092134298 -29.14 -0.077991944 -29.15 -0.063985783 -29.16 -0.050251798 -29.17 -0.036914429 -29.18 -0.02408503 -29.19 -0.011860577 -29.2 -0.00032263303 -29.21 0.010463409 -29.22 0.020448788 -29.23 0.029601526 -29.24 0.037906275 -29.25 0.045363845 -29.26 0.051990435 -29.27 0.057816572 -29.28 0.06288578 -29.29 0.067253014 -29.3 0.070982886 -29.31 0.074147734 -29.32 0.076825567 -29.33 0.079097946 -29.34 0.08104785 -29.35 0.082757576 -29.36 0.084306719 -29.37 0.085770298 -29.38 0.087217043 -29.39 0.088707903 -29.4 0.090294795 -29.41 0.092019616 -29.42 0.093913526 -29.43 0.095996522 -29.44 0.098277278 -29.45 0.10075326 -29.46 0.10341105 -29.47 0.10622696 -29.48 0.10916775 -29.49 0.11219152 -29.5 0.11524877 -29.51 0.11828343 -29.52 0.12123404 -29.53 0.12403484 -29.54 0.12661684 -29.55 0.12890886 -29.56 0.13083844 -29.57 0.1323326 -29.58 0.13331847 -29.59 0.13372377 -29.6 0.133477 -29.61 0.13250753 -29.62 0.13074529 -29.63 0.12812039 -29.64 0.12456227 -29.65 0.1199987 -29.66 0.11435439 -29.67 0.10754934 -29.68 0.099496899 -29.69 0.090101558 -29.7 0.079256494 -29.71 0.06684101 -29.72 0.052717892 -29.73 0.03673084 -29.74 0.018702111 -29.75 -0.001569445 -29.76 -0.024309755 -29.77 -0.049770095 -29.78 -0.07822663 -29.79 -0.10997873 -29.8 -0.14534586 -29.81 -0.18466289 -29.82 -0.22827373 -29.83 -0.27652335 -29.84 -0.3297481 -29.85 -0.38826465 -29.86 -0.45235772 -29.87 -0.52226712 -29.88 -0.59817435 -29.89 -0.68018955 -29.9 -0.76833931 -29.91 -0.86255591 -29.92 -0.96266878 -29.93 -1.0683986 -29.94 -1.1793549 -29.95 -1.2950365 -29.96 -1.4148368 -29.97 -1.5380521 -29.98 -1.663894 -29.99 -1.7915049 -30 -1.9199769 -& -@target G2.S3 -@type xy -0 -2 -0.01 -2.092595 -0.02 -2.052854 -0.03 -2.0400078 -0.04 -2.0336687 -0.05 -2.0297118 -0.06 -2.0267427 -0.07 -2.0241658 -0.08 -2.0217025 -0.09 -2.019229 -0.1 -2.0167092 -0.11 -2.0141619 -0.12 -2.011639 -0.13 -2.0092295 -0.14 -2.0070181 -0.15 -2.0050864 -0.16 -2.0035058 -0.17 -2.0023318 -0.18 -2.0015987 -0.19 -2.0013158 -0.2 -2.0014665 -0.21 -2.002008 -0.22 -2.002874 -0.23 -2.003984 -0.24 -2.0052226 -0.25 -2.0064704 -0.26 -2.0076148 -0.27 -2.0085495 -0.28 -2.009181 -0.29 -2.0094348 -0.3 -2.0092597 -0.31 -2.0086313 -0.32 -2.007554 -0.33 -2.0060606 -0.34 -2.0042034 -0.35 -2.0020691 -0.36 -1.999779 -0.37 -1.9974497 -0.38 -1.9952028 -0.39 -1.9931583 -0.4 -1.9914282 -0.41 -1.9901103 -0.42 -1.9892841 -0.43 -1.9890066 -0.44 -1.9893108 -0.45 -1.9902099 -0.46 -1.9917063 -0.47 -1.9937335 -0.48 -1.9962377 -0.49 -1.9991549 -0.5 -2.0024166 -0.51 -2.0059551 -0.52 -2.0097086 -0.53 -2.0136258 -0.54 -2.0176688 -0.55 -2.0218147 -0.56 -2.0260559 -0.57 -2.0303913 -0.58 -2.0348499 -0.59 -2.0394555 -0.6 -2.0442301 -0.61 -2.0491877 -0.62 -2.0543276 -0.63 -2.0596287 -0.64 -2.0650437 -0.65 -2.0704957 -0.66 -2.0758757 -0.67 -2.0810436 -0.68 -2.0858098 -0.69 -2.0899728 -0.7 -2.0933235 -0.71 -2.0956428 -0.72 -2.0967166 -0.73 -2.0963479 -0.74 -2.0943693 -0.75 -2.0906538 -0.76 -2.0851266 -0.77 -2.0777726 -0.78 -2.0686432 -0.79 -2.0578162 -0.8 -2.0455082 -0.81 -2.0320328 -0.82 -2.0177137 -0.83 -2.0029196 -0.84 -1.9880507 -0.85 -1.9735226 -0.86 -1.9597486 -0.87 -1.9471219 -0.88 -1.9359978 -0.89 -1.9266783 -0.9 -1.919446 -0.91 -1.9145232 -0.92 -1.9118564 -0.93 -1.9114041 -0.94 -1.9130421 -0.95 -1.9165588 -0.96 -1.9216759 -0.97 -1.9280549 -0.98 -1.9353148 -0.99 -1.9430537 -1 -1.9508665 -1.01 -1.9583599 -1.02 -1.9651249 -1.03 -1.9708864 -1.04 -1.9754192 -1.05 -1.9785746 -1.06 -1.9802841 -1.07 -1.9805601 -1.08 -1.9794914 -1.09 -1.9772351 -1.1 -1.9740049 -1.11 -1.9700555 -1.12 -1.965667 -1.13 -1.9611427 -1.14 -1.9567745 -1.15 -1.9528038 -1.16 -1.9494289 -1.17 -1.9467927 -1.18 -1.9449778 -1.19 -1.9440022 -1.2 -1.9438225 -1.21 -1.9443381 -1.22 -1.9454019 -1.23 -1.9468321 -1.24 -1.9484201 -1.25 -1.9499412 -1.26 -1.9512063 -1.27 -1.9520594 -1.28 -1.9523877 -1.29 -1.9521324 -1.3 -1.951294 -1.31 -1.9499336 -1.32 -1.9481705 -1.33 -1.9461752 -1.34 -1.9441573 -1.35 -1.9423614 -1.36 -1.9410541 -1.37 -1.9404592 -1.38 -1.9407701 -1.39 -1.9421285 -1.4 -1.9446112 -1.41 -1.9482176 -1.42 -1.9528643 -1.43 -1.9583832 -1.44 -1.9645262 -1.45 -1.9709743 -1.46 -1.9773419 -1.47 -1.9831617 -1.48 -1.9880275 -1.49 -1.9915381 -1.5 -1.9933379 -1.51 -1.9931397 -1.52 -1.9907509 -1.53 -1.986091 -1.54 -1.979203 -1.55 -1.9702612 -1.56 -1.9595691 -1.57 -1.9475524 -1.58 -1.9347582 -1.59 -1.9218821 -1.6 -1.9095972 -1.61 -1.8985889 -1.62 -1.8895191 -1.63 -1.8829879 -1.64 -1.8794982 -1.65 -1.8794234 -1.66 -1.8829805 -1.67 -1.8902098 -1.68 -1.9009639 -1.69 -1.9150588 -1.7 -1.9317641 -1.71 -1.9503297 -1.72 -1.9699194 -1.73 -1.9896094 -1.74 -2.0084283 -1.75 -2.0254066 -1.76 -2.039626 -1.77 -2.0502689 -1.78 -2.056661 -1.79 -2.0583137 -1.8 -2.0547176 -1.81 -2.0459499 -1.82 -2.0324258 -1.83 -2.0146519 -1.84 -1.9933517 -1.85 -1.9694469 -1.86 -1.9440128 -1.87 -1.9182269 -1.88 -1.893318 -1.89 -1.8705021 -1.9 -1.8509259 -1.91 -1.835765 -1.92 -1.8260013 -1.93 -1.8219756 -1.94 -1.8239731 -1.95 -1.8319914 -1.96 -1.8457358 -1.97 -1.8646285 -1.98 -1.8878319 -1.99 -1.9142873 -2 -1.9427611 -2.01 -1.9719028 -2.02 -2.0002833 -2.03 -2.0262987 -2.04 -2.0487335 -2.05 -2.0664762 -2.06 -2.0786393 -2.07 -2.0845981 -2.08 -2.0840266 -2.09 -2.0769157 -2.1 -2.0635749 -2.11 -2.0446191 -2.12 -2.0209452 -2.13 -1.9936847 -2.14 -1.9640742 -2.15 -1.9338305 -2.16 -1.904443 -2.17 -1.8773562 -2.18 -1.8539042 -2.19 -1.8352487 -2.2 -1.8223196 -2.21 -1.8157704 -2.22 -1.8159491 -2.23 -1.8228799 -2.24 -1.8362602 -2.25 -1.8557443 -2.26 -1.8801254 -2.27 -1.9081468 -2.28 -1.938488 -2.29 -1.9697353 -2.3 -2.0004485 -2.31 -2.0292342 -2.32 -2.0548109 -2.33 -2.0760763 -2.34 -2.092153 -2.35 -2.1024376 -2.36 -2.1063187 -2.37 -2.1038596 -2.38 -2.095674 -2.39 -2.0824013 -2.4 -2.0649217 -2.41 -2.0443109 -2.42 -2.021779 -2.43 -1.9986091 -2.44 -1.9760893 -2.45 -1.9554479 -2.46 -1.9377939 -2.47 -1.9241136 -2.48 -1.9152212 -2.49 -1.911448 -2.5 -1.9129338 -2.51 -1.9195446 -2.52 -1.9308855 -2.53 -1.9463305 -2.54 -1.9650575 -2.55 -1.9861011 -2.56 -2.0084022 -2.57 -2.0308728 -2.58 -2.0524381 -2.59 -2.071994 -2.6 -2.0888172 -2.61 -2.1022942 -2.62 -2.1120268 -2.63 -2.1178518 -2.64 -2.119841 -2.65 -2.1182967 -2.66 -2.113727 -2.67 -2.1068123 -2.68 -2.0983648 -2.69 -2.0892777 -2.7 -2.080876 -2.71 -2.0738161 -2.72 -2.0688392 -2.73 -2.0665819 -2.74 -2.0675028 -2.75 -2.0718557 -2.76 -2.0796737 -2.77 -2.0907587 -2.78 -2.1046985 -2.79 -2.1208804 -2.8 -2.1385251 -2.81 -2.1568576 -2.82 -2.1746508 -2.83 -2.190801 -2.84 -2.2043393 -2.85 -2.2143859 -2.86 -2.2202014 -2.87 -2.2212292 -2.88 -2.2171169 -2.89 -2.2077466 -2.9 -2.1932365 -2.91 -2.1739379 -2.92 -2.1502546 -2.93 -2.1230047 -2.94 -2.093334 -2.95 -2.0622869 -2.96 -2.0309566 -2.97 -2.0004319 -2.98 -1.9717474 -2.99 -1.9458342 -3 -1.9234788 -3.01 -1.9052882 -3.02 -1.8916657 -3.03 -1.8828569 -3.04 -1.8789162 -3.05 -1.879391 -3.06 -1.8838049 -3.07 -1.8915226 -3.08 -1.9017874 -3.09 -1.9137628 -3.1 -1.9265763 -3.11 -1.9393703 -3.12 -1.9513378 -3.13 -1.9617678 -3.14 -1.97006 -3.15 -1.9755418 -3.16 -1.9781947 -3.17 -1.9779631 -3.18 -1.9749593 -3.19 -1.9694541 -3.2 -1.9618503 -3.21 -1.9526556 -3.22 -1.94245 -3.23 -1.9318511 -3.24 -1.9214731 -3.25 -1.9118945 -3.26 -1.903707 -3.27 -1.8972987 -3.28 -1.8929265 -3.29 -1.8907284 -3.3 -1.8907024 -3.31 -1.8927165 -3.32 -1.8965187 -3.33 -1.9017553 -3.34 -1.9079935 -3.35 -1.9147556 -3.36 -1.9215403 -3.37 -1.9278037 -3.38 -1.9330754 -3.39 -1.9370158 -3.4 -1.9393568 -3.41 -1.9399421 -3.42 -1.9387335 -3.43 -1.9358124 -3.44 -1.931375 -3.45 -1.9257214 -3.46 -1.9192355 -3.47 -1.9123679 -3.48 -1.9055668 -3.49 -1.8993461 -3.5 -1.8942429 -3.51 -1.890686 -3.52 -1.8890347 -3.53 -1.8895622 -3.54 -1.8924428 -3.55 -1.8977468 -3.56 -1.9054352 -3.57 -1.9153728 -3.58 -1.9273318 -3.59 -1.9409771 -3.6 -1.955831 -3.61 -1.9716042 -3.62 -1.9879048 -3.63 -2.004358 -3.64 -2.020626 -3.65 -2.036425 -3.66 -2.0515385 -3.67 -2.0658236 -3.68 -2.0792181 -3.69 -2.0917342 -3.7 -2.1034511 -3.71 -2.114456 -3.72 -2.1250859 -3.73 -2.1355503 -3.74 -2.1460581 -3.75 -2.1567947 -3.76 -2.1679049 -3.77 -2.1794791 -3.78 -2.191539 -3.79 -2.2040297 -3.8 -2.2168183 -3.81 -2.2296944 -3.82 -2.2426978 -3.83 -2.2552638 -3.84 -2.2669067 -3.85 -2.2772137 -3.86 -2.2857732 -3.87 -2.2921992 -3.88 -2.2961542 -3.89 -2.2973666 -3.9 -2.2956481 -3.91 -2.2909074 -3.92 -2.2831553 -3.93 -2.2726453 -3.94 -2.2595477 -3.95 -2.2440747 -3.96 -2.2266221 -3.97 -2.2076493 -3.98 -2.1876508 -3.99 -2.1671401 -4 -2.1466193 -4.01 -2.1265602 -4.02 -2.1073814 -4.03 -2.0894276 -4.04 -2.0729917 -4.05 -2.0582174 -4.06 -2.0450868 -4.07 -2.0335568 -4.08 -2.0234955 -4.09 -2.0146971 -4.1 -2.0068923 -4.11 -1.9997746 -4.12 -1.9930161 -4.13 -1.9862923 -4.14 -1.9793026 -4.15 -1.9717466 -4.16 -1.9631923 -4.17 -1.9538058 -4.18 -1.943574 -4.19 -1.9325673 -4.2 -1.9209436 -4.21 -1.9089326 -4.22 -1.8968292 -4.23 -1.8849734 -4.24 -1.8737353 -4.25 -1.8634905 -4.26 -1.854604 -4.27 -1.8473992 -4.28 -1.8422011 -4.29 -1.8391972 -4.3 -1.8384877 -4.31 -1.8400811 -4.32 -1.8438898 -4.33 -1.8497374 -4.34 -1.8573666 -4.35 -1.8664458 -4.36 -1.8765946 -4.37 -1.8873937 -4.38 -1.8983461 -4.39 -1.9090265 -4.4 -1.9190706 -4.41 -1.9281507 -4.42 -1.9360099 -4.43 -1.9424766 -4.44 -1.9474658 -4.45 -1.9509921 -4.46 -1.9531589 -4.47 -1.9541561 -4.48 -1.9542456 -4.49 -1.9537069 -4.5 -1.9529479 -4.51 -1.9524078 -4.52 -1.9524617 -4.53 -1.9534561 -4.54 -1.9556883 -4.55 -1.9593886 -4.56 -1.9647078 -4.57 -1.9717099 -4.58 -1.980364 -4.59 -1.9905467 -4.6 -2.0020809 -4.61 -2.0147107 -4.62 -2.0279873 -4.63 -2.0415058 -4.64 -2.0548385 -4.65 -2.0675558 -4.66 -2.079248 -4.67 -2.089544 -4.68 -2.0981299 -4.69 -2.1047632 -4.7 -2.1092832 -4.71 -2.1116197 -4.72 -2.1118175 -4.73 -2.1099892 -4.74 -2.1063302 -4.75 -2.101101 -4.76 -2.0946115 -4.77 -2.0872035 -4.78 -2.0792315 -4.79 -2.0710431 -4.8 -2.0629603 -4.81 -2.0552625 -4.82 -2.0481719 -4.83 -2.0420087 -4.84 -2.0366869 -4.85 -2.0321648 -4.86 -2.0283522 -4.87 -2.0250917 -4.88 -2.0221698 -4.89 -2.0193306 -4.9 -2.0162927 -4.91 -2.0127687 -4.92 -2.0084799 -4.93 -2.0031795 -4.94 -1.9965762 -4.95 -1.9885461 -4.96 -1.9790787 -4.97 -1.9682068 -4.98 -1.9560443 -4.99 -1.942786 -5 -1.9287006 -5.01 -1.9141204 -5.02 -1.8994289 -5.03 -1.8850406 -5.04 -1.8713838 -5.05 -1.858886 -5.06 -1.8479788 -5.07 -1.8390066 -5.08 -1.8322424 -5.09 -1.8278811 -5.1 -1.8260232 -5.11 -1.8266788 -5.12 -1.8297589 -5.13 -1.8350822 -5.14 -1.8423851 -5.15 -1.8513285 -5.16 -1.8614996 -5.17 -1.8723891 -5.18 -1.8835646 -5.19 -1.8945756 -5.2 -1.9050002 -5.21 -1.9144639 -5.22 -1.9226508 -5.23 -1.9293269 -5.24 -1.9343391 -5.25 -1.9376311 -5.26 -1.9392376 -5.27 -1.9392801 -5.28 -1.9378175 -5.29 -1.9353544 -5.3 -1.9322406 -5.31 -1.9288563 -5.32 -1.9255975 -5.33 -1.9228542 -5.34 -1.9209876 -5.35 -1.9203155 -5.36 -1.9210915 -5.37 -1.9234971 -5.38 -1.9276256 -5.39 -1.933669 -5.4 -1.9413989 -5.41 -1.9505747 -5.42 -1.9609192 -5.43 -1.9720861 -5.44 -1.9836776 -5.45 -1.9952609 -5.46 -2.0063905 -5.47 -2.0166237 -5.48 -2.0255437 -5.49 -2.0327788 -5.5 -2.038014 -5.51 -2.0409824 -5.52 -2.0415399 -5.53 -2.0396397 -5.54 -2.0353272 -5.55 -2.0287418 -5.56 -2.020105 -5.57 -2.0097096 -5.58 -1.9979087 -5.59 -1.9850971 -5.6 -1.9716946 -5.61 -1.9581309 -5.62 -1.9448338 -5.63 -1.9321746 -5.64 -1.9204762 -5.65 -1.9099996 -5.66 -1.9009375 -5.67 -1.8934062 -5.68 -1.8874452 -5.69 -1.8830211 -5.7 -1.8800336 -5.71 -1.8783256 -5.72 -1.877672 -5.73 -1.8777226 -5.74 -1.8783193 -5.75 -1.8792298 -5.76 -1.8802457 -5.77 -1.8811987 -5.78 -1.8819721 -5.79 -1.8825084 -5.8 -1.8828213 -5.81 -1.8829898 -5.82 -1.8831622 -5.83 -1.8835504 -5.84 -1.8842245 -5.85 -1.8857299 -5.86 -1.8884101 -5.87 -1.892604 -5.88 -1.8986347 -5.89 -1.9067913 -5.9 -1.9173118 -5.91 -1.9303651 -5.92 -1.9460438 -5.93 -1.964345 -5.94 -1.9851758 -5.95 -2.0084289 -5.96 -2.0337674 -5.97 -2.0607773 -5.98 -2.0889962 -5.99 -2.1179018 -6 -2.1469302 -6.01 -2.1754986 -6.02 -2.2030196 -6.03 -2.2289306 -6.04 -2.2527043 -6.05 -2.2738787 -6.06 -2.2921156 -6.07 -2.3071208 -6.08 -2.3186536 -6.09 -2.3266183 -6.1 -2.3310166 -6.11 -2.3319474 -6.12 -2.3295942 -6.13 -2.3242117 -6.14 -2.3161171 -6.15 -2.3056671 -6.16 -2.2932438 -6.17 -2.2793324 -6.18 -2.2644172 -6.19 -2.2486337 -6.2 -2.2322752 -6.21 -2.2155815 -6.22 -2.1987392 -6.23 -2.1818761 -6.24 -2.165064 -6.25 -2.1483218 -6.26 -2.1316306 -6.27 -2.1149351 -6.28 -2.098162 -6.29 -2.0811515 -6.3 -2.0638465 -6.31 -2.0462172 -6.32 -2.0282801 -6.33 -2.010097 -6.34 -1.9917909 -6.35 -1.9735416 -6.36 -1.9555931 -6.37 -1.9382397 -6.38 -1.9218251 -6.39 -1.9067294 -6.4 -1.8931469 -6.41 -1.8817009 -6.42 -1.8728144 -6.43 -1.8668497 -6.44 -1.864114 -6.45 -1.8648487 -6.46 -1.8692092 -6.47 -1.8772587 -6.48 -1.8889609 -6.49 -1.9041752 -6.5 -1.9226603 -6.51 -1.9440227 -6.52 -1.9678638 -6.53 -1.9937111 -6.54 -2.0210125 -6.55 -2.0491842 -6.56 -2.0776291 -6.57 -2.1057558 -6.58 -2.1330038 -6.59 -2.1588559 -6.6 -2.1828608 -6.61 -2.2046393 -6.62 -2.2239112 -6.63 -2.2405239 -6.64 -2.254385 -6.65 -2.265481 -6.66 -2.2738762 -6.67 -2.2797078 -6.68 -2.2831627 -6.69 -2.2844727 -6.7 -2.2838893 -6.71 -2.2816776 -6.72 -2.2780913 -6.73 -2.2734671 -6.74 -2.2682014 -6.75 -2.2621328 -6.76 -2.2553484 -6.77 -2.2478832 -6.78 -2.2397225 -6.79 -2.2308134 -6.8 -2.2210635 -6.81 -2.2103592 -6.82 -2.1985758 -6.83 -2.1855865 -6.84 -2.1712822 -6.85 -2.1555667 -6.86 -2.1383338 -6.87 -2.119601 -6.88 -2.0994445 -6.89 -2.0780003 -6.9 -2.0554669 -6.91 -2.0320992 -6.92 -2.0082031 -6.93 -1.9841253 -6.94 -1.9602423 -6.95 -1.936947 -6.96 -1.9145494 -6.97 -1.8935244 -6.98 -1.874237 -6.99 -1.8569896 -7 -1.8420254 -7.01 -1.8295185 -7.02 -1.8195698 -7.03 -1.812202 -7.04 -1.8073612 -7.05 -1.8049192 -7.06 -1.8046776 -7.07 -1.8063467 -7.08 -1.8096164 -7.09 -1.8141614 -7.1 -1.8196233 -7.11 -1.8256405 -7.12 -1.8318637 -7.13 -1.8379664 -7.14 -1.8436566 -7.15 -1.8486879 -7.16 -1.8528669 -7.17 -1.8560537 -7.18 -1.8581098 -7.19 -1.8589992 -7.2 -1.8588414 -7.21 -1.8577172 -7.22 -1.8557461 -7.23 -1.8530732 -7.24 -1.849868 -7.25 -1.8463069 -7.26 -1.8425662 -7.27 -1.8388181 -7.28 -1.8352166 -7.29 -1.8318959 -7.3 -1.8289664 -7.31 -1.8265106 -7.32 -1.8245767 -7.33 -1.8231865 -7.34 -1.8223405 -7.35 -1.8220197 -7.36 -1.8221893 -7.37 -1.822806 -7.38 -1.8238241 -7.39 -1.8251973 -7.4 -1.8268853 -7.41 -1.8287859 -7.42 -1.8309417 -7.43 -1.8333491 -7.44 -1.8360205 -7.45 -1.8389773 -7.46 -1.842253 -7.47 -1.8458868 -7.48 -1.8499211 -7.49 -1.8544018 -7.5 -1.8593655 -7.51 -1.8648453 -7.52 -1.8708311 -7.53 -1.8773601 -7.54 -1.8844311 -7.55 -1.8920152 -7.56 -1.900066 -7.57 -1.9085203 -7.58 -1.9172979 -7.59 -1.9263067 -7.6 -1.9354419 -7.61 -1.9445904 -7.62 -1.9536363 -7.63 -1.9624747 -7.64 -1.9709942 -7.65 -1.9790736 -7.66 -1.9866071 -7.67 -1.9934978 -7.68 -1.9996592 -7.69 -2.0050142 -7.7 -2.0094978 -7.71 -2.0130583 -7.72 -2.0156556 -7.73 -2.0172618 -7.74 -2.0178858 -7.75 -2.0175445 -7.76 -2.0161992 -7.77 -2.0138699 -7.78 -2.0105919 -7.79 -2.0064172 -7.8 -2.0014144 -7.81 -1.9956675 -7.82 -1.9892806 -7.83 -1.9823772 -7.84 -1.9750982 -7.85 -1.967601 -7.86 -1.9600434 -7.87 -1.9526196 -7.88 -1.9455317 -7.89 -1.9389885 -7.9 -1.9332008 -7.91 -1.928375 -7.92 -1.9247078 -7.93 -1.9223794 -7.94 -1.9215471 -7.95 -1.9223398 -7.96 -1.9248518 -7.97 -1.9290826 -7.98 -1.9350962 -7.99 -1.9428676 -8 -1.952323 -8.01 -1.9633451 -8.02 -1.9757765 -8.03 -1.9894236 -8.04 -2.0040622 -8.05 -2.0194442 -8.06 -2.0353062 -8.07 -2.0513734 -8.08 -2.0673537 -8.09 -2.0830135 -8.1 -2.0981205 -8.11 -2.1124538 -8.12 -2.1258175 -8.13 -2.1380468 -8.14 -2.1490112 -8.15 -2.1586138 -8.16 -2.1667875 -8.17 -2.1734995 -8.18 -2.1787432 -8.19 -2.1826165 -8.2 -2.1851703 -8.21 -2.1863698 -8.22 -2.1862639 -8.23 -2.1849021 -8.24 -2.182334 -8.25 -2.1786087 -8.26 -2.1737692 -8.27 -2.1678575 -8.28 -2.160912 -8.29 -2.1529697 -8.3 -2.1440872 -8.31 -2.1343032 -8.32 -2.1236228 -8.33 -2.1121249 -8.34 -2.0999128 -8.35 -2.0871143 -8.36 -2.0738856 -8.37 -2.060412 -8.38 -2.0469066 -8.39 -2.033606 -8.4 -2.0207673 -8.41 -2.0086521 -8.42 -1.9974466 -8.43 -1.9875452 -8.44 -1.9792152 -8.45 -1.9727003 -8.46 -1.9682059 -8.47 -1.9658923 -8.48 -1.9658663 -8.49 -1.968174 -8.5 -1.9727936 -8.51 -1.9796365 -8.52 -1.9885472 -8.53 -1.9993313 -8.54 -2.0116875 -8.55 -2.0252724 -8.56 -2.039703 -8.57 -2.0545689 -8.58 -2.0694446 -8.59 -2.0839018 -8.6 -2.0975291 -8.61 -2.10994 -8.62 -2.1207907 -8.63 -2.1297877 -8.64 -2.136721 -8.65 -2.1414248 -8.66 -2.1438021 -8.67 -2.1438414 -8.68 -2.1416031 -8.69 -2.1372148 -8.7 -2.1308658 -8.71 -2.1227945 -8.72 -2.1132852 -8.73 -2.1026478 -8.74 -2.0912138 -8.75 -2.0793574 -8.76 -2.067412 -8.77 -2.0556319 -8.78 -2.0442935 -8.79 -2.0336393 -8.8 -2.0238715 -8.81 -2.0151533 -8.82 -2.0075984 -8.83 -2.0012804 -8.84 -1.9962306 -8.85 -1.9924432 -8.86 -1.9898637 -8.87 -1.9883699 -8.88 -1.9879248 -8.89 -1.9884365 -8.9 -1.9898046 -8.91 -1.9919266 -8.92 -1.9947019 -8.93 -1.9980342 -8.94 -2.0018335 -8.95 -2.0060175 -8.96 -2.0105112 -8.97 -2.015245 -8.98 -2.0201273 -8.99 -2.0251584 -9 -2.0302757 -9.01 -2.0354129 -9.02 -2.0404976 -9.03 -2.0454502 -9.04 -2.0501836 -9.05 -2.0546033 -9.06 -2.0586089 -9.07 -2.062096 -9.08 -2.0649588 -9.09 -2.0671588 -9.1 -2.0685435 -9.11 -2.0690054 -9.12 -2.0684688 -9.13 -2.0668775 -9.14 -2.0641981 -9.15 -2.0604225 -9.16 -2.0555698 -9.17 -2.0496864 -9.18 -2.0428455 -9.19 -2.0351461 -9.2 -2.0267153 -9.21 -2.0176856 -9.22 -2.0082076 -9.23 -1.9984454 -9.24 -1.9885676 -9.25 -1.9787404 -9.26 -1.9691226 -9.27 -1.9598577 -9.28 -1.9510772 -9.29 -1.9428859 -9.3 -1.9353703 -9.31 -1.9285799 -9.32 -1.9225389 -9.33 -1.9172689 -9.34 -1.9127539 -9.35 -1.9089593 -9.36 -1.9058337 -9.37 -1.9033097 -9.38 -1.9013105 -9.39 -1.8997536 -9.4 -1.8985527 -9.41 -1.8976248 -9.42 -1.8968809 -9.43 -1.8962088 -9.44 -1.895598 -9.45 -1.8949984 -9.46 -1.8943735 -9.47 -1.8936982 -9.48 -1.8929621 -9.49 -1.8921633 -9.5 -1.8913141 -9.51 -1.8904356 -9.52 -1.8895577 -9.53 -1.8887184 -9.54 -1.8879167 -9.55 -1.8872422 -9.56 -1.8867455 -9.57 -1.8864797 -9.58 -1.8864958 -9.59 -1.8868443 -9.6 -1.8875751 -9.61 -1.8887325 -9.62 -1.8903573 -9.63 -1.8924803 -9.64 -1.8951288 -9.65 -1.8982859 -9.66 -1.9019789 -9.67 -1.9062129 -9.68 -1.9109672 -9.69 -1.9162051 -9.7 -1.921877 -9.71 -1.9279151 -9.72 -1.9342378 -9.73 -1.940751 -9.74 -1.9473482 -9.75 -1.9539132 -9.76 -1.9603179 -9.77 -1.9664386 -9.78 -1.9721621 -9.79 -1.9773744 -9.8 -1.9819728 -9.81 -1.9858721 -9.82 -1.9890079 -9.83 -1.9913417 -9.84 -1.9928638 -9.85 -1.9935956 -9.86 -1.9935904 -9.87 -1.9929247 -9.88 -1.9917027 -9.89 -1.990092 -9.9 -1.9882637 -9.91 -1.9864091 -9.92 -1.9847338 -9.93 -1.9834511 -9.94 -1.9827728 -9.95 -1.9829084 -9.96 -1.9840503 -9.97 -1.986371 -9.98 -1.9900135 -9.99 -1.9950602 -10 -2.0016262 -10.01 -2.0097562 -10.02 -2.0194547 -10.03 -2.0306894 -10.04 -2.0433907 -10.05 -2.0574555 -10.06 -2.0727488 -10.07 -2.089111 -10.08 -2.1063597 -10.09 -2.1242973 -10.1 -2.1427338 -10.11 -2.1614729 -10.12 -2.1803037 -10.13 -2.1990187 -10.14 -2.2174153 -10.15 -2.2352978 -10.16 -2.25248 -10.17 -2.2687811 -10.18 -2.2840345 -10.19 -2.2980797 -10.2 -2.3107639 -10.21 -2.3221318 -10.22 -2.3319683 -10.23 -2.3400489 -10.24 -2.3462383 -10.25 -2.3504084 -10.26 -2.3524392 -10.27 -2.3522235 -10.28 -2.3496678 -10.29 -2.3446979 -10.3 -2.3372594 -10.31 -2.3273271 -10.32 -2.314999 -10.33 -2.3002946 -10.34 -2.2831681 -10.35 -2.2637329 -10.36 -2.2421463 -10.37 -2.2186073 -10.38 -2.1933505 -10.39 -2.1666492 -10.4 -2.1388066 -10.41 -2.1101489 -10.42 -2.0810206 -10.43 -2.0517695 -10.44 -2.0227288 -10.45 -1.9942451 -10.46 -1.9666437 -10.47 -1.9402208 -10.48 -1.9152385 -10.49 -1.8919156 -10.5 -1.8704259 -10.51 -1.8508946 -10.52 -1.8333965 -10.53 -1.8179559 -10.54 -1.8045478 -10.55 -1.7929859 -10.56 -1.7832791 -10.57 -1.7752987 -10.58 -1.7688969 -10.59 -1.7639102 -10.6 -1.7601731 -10.61 -1.7575189 -10.62 -1.75579 -10.63 -1.7548428 -10.64 -1.7545504 -10.65 -1.7548066 -10.66 -1.755385 -10.67 -1.7563495 -10.68 -1.7576894 -10.69 -1.7593798 -10.7 -1.7614049 -10.71 -1.7637609 -10.72 -1.7664424 -10.73 -1.769443 -10.74 -1.7727527 -10.75 -1.7763501 -10.76 -1.7802033 -10.77 -1.7842238 -10.78 -1.7883735 -10.79 -1.7926124 -10.8 -1.7968594 -10.81 -1.8010289 -10.82 -1.8050378 -10.83 -1.8088044 -10.84 -1.8122588 -10.85 -1.8153441 -10.86 -1.8180217 -10.87 -1.8202779 -10.88 -1.82209 -10.89 -1.8234804 -10.9 -1.8245634 -10.91 -1.8254281 -10.92 -1.8261864 -10.93 -1.8269678 -10.94 -1.8279144 -10.95 -1.8291767 -10.96 -1.8309053 -10.97 -1.8332478 -10.98 -1.8363354 -10.99 -1.8402845 -11 -1.8451786 -11.01 -1.8511041 -11.02 -1.8581015 -11.03 -1.8661798 -11.04 -1.8753183 -11.05 -1.8854719 -11.06 -1.8965671 -11.07 -1.9085106 -11.08 -1.9211917 -11.09 -1.9344852 -11.1 -1.9482581 -11.11 -1.9623485 -11.12 -1.9766548 -11.13 -1.9910513 -11.14 -2.0054192 -11.15 -2.0196487 -11.16 -2.0336398 -11.17 -2.0473032 -11.18 -2.0605591 -11.19 -2.0733358 -11.2 -2.0855681 -11.21 -2.0971982 -11.22 -2.1082305 -11.23 -2.1185815 -11.24 -2.1281786 -11.25 -2.1369628 -11.26 -2.1448792 -11.27 -2.1518725 -11.28 -2.1578964 -11.29 -2.1629065 -11.3 -2.1668746 -11.31 -2.1697838 -11.32 -2.1716352 -11.33 -2.1724896 -11.34 -2.1723758 -11.35 -2.1713338 -11.36 -2.1694617 -11.37 -2.1668834 -11.38 -2.1637464 -11.39 -2.1602153 -11.4 -2.1564679 -11.41 -2.1526901 -11.42 -2.1490676 -11.43 -2.1457773 -11.44 -2.1430038 -11.45 -2.14091 -11.46 -2.1395563 -11.47 -2.1390056 -11.48 -2.1392803 -11.49 -2.1403556 -11.5 -2.1421616 -11.51 -2.1445836 -11.52 -2.1474682 -11.53 -2.1506277 -11.54 -2.1538455 -11.55 -2.1568984 -11.56 -2.1595732 -11.57 -2.1615974 -11.58 -2.1627562 -11.59 -2.1628681 -11.6 -2.1617856 -11.61 -2.1594092 -11.62 -2.1556876 -11.63 -2.1506234 -11.64 -2.1442748 -11.65 -2.1367506 -11.66 -2.128207 -11.67 -2.1189053 -11.68 -2.1090277 -11.69 -2.0988126 -11.7 -2.0885069 -11.71 -2.0783481 -11.72 -2.0685573 -11.73 -2.0593251 -11.74 -2.0508026 -11.75 -2.0430968 -11.76 -2.0362614 -11.77 -2.0302987 -11.78 -2.0251844 -11.79 -2.0207709 -11.8 -2.0169029 -11.81 -2.0134107 -11.82 -2.010106 -11.83 -2.0067958 -11.84 -2.0032925 -11.85 -1.9994273 -11.86 -1.9950608 -11.87 -1.9900924 -11.88 -1.9844681 -11.89 -1.9781033 -11.9 -1.9710539 -11.91 -1.9635197 -11.92 -1.9556619 -11.93 -1.947681 -11.94 -1.9398074 -11.95 -1.9322886 -11.96 -1.925376 -11.97 -1.9193148 -11.98 -1.9143257 -11.99 -1.9105988 -12 -1.9082785 -12.01 -1.9074655 -12.02 -1.9081849 -12.03 -1.9103963 -12.04 -1.9140016 -12.05 -1.9188425 -12.06 -1.9247144 -12.07 -1.9313764 -12.08 -1.9385562 -12.09 -1.9459721 -12.1 -1.9533414 -12.11 -1.9603899 -12.12 -1.9667871 -12.13 -1.972422 -12.14 -1.9771564 -12.15 -1.9809102 -12.16 -1.9836646 -12.17 -1.9854622 -12.18 -1.9864038 -12.19 -1.986643 -12.2 -1.986376 -12.21 -1.9858316 -12.22 -1.9852583 -12.23 -1.9849421 -12.24 -1.9851341 -12.25 -1.9860482 -12.26 -1.9878641 -12.27 -1.9907166 -12.28 -1.9946847 -12.29 -1.9997948 -12.3 -2.0060106 -12.31 -2.0132422 -12.32 -2.0213447 -12.33 -2.0301338 -12.34 -2.0394012 -12.35 -2.0488722 -12.36 -2.0582796 -12.37 -2.0673786 -12.38 -2.0759466 -12.39 -2.0837846 -12.4 -2.0907399 -12.41 -2.0967011 -12.42 -2.1016107 -12.43 -2.1054614 -12.44 -2.1082991 -12.45 -2.1102098 -12.46 -2.1113493 -12.47 -2.1119 -12.48 -2.112045 -12.49 -2.1119754 -12.5 -2.1118758 -12.51 -2.111912 -12.52 -2.1122247 -12.53 -2.1129169 -12.54 -2.1140498 -12.55 -2.1156407 -12.56 -2.1176887 -12.57 -2.1201825 -12.58 -2.122889 -12.59 -2.1256491 -12.6 -2.1282795 -12.61 -2.130587 -12.62 -2.132374 -12.63 -2.1334549 -12.64 -2.133662 -12.65 -2.1328596 -12.66 -2.1309485 -12.67 -2.1278724 -12.68 -2.1236115 -12.69 -2.1182189 -12.7 -2.1117882 -12.71 -2.1044558 -12.72 -2.0963865 -12.73 -2.0877744 -12.74 -2.0788236 -12.75 -2.0697449 -12.76 -2.0607395 -12.77 -2.0519914 -12.78 -2.0436568 -12.79 -2.0359373 -12.8 -2.0288595 -12.81 -2.0224301 -12.82 -2.0166293 -12.83 -2.0113925 -12.84 -2.0066152 -12.85 -2.0021589 -12.86 -1.9978595 -12.87 -1.9935353 -12.88 -1.9890012 -12.89 -1.9840721 -12.9 -1.9785731 -12.91 -1.9723377 -12.92 -1.9652518 -12.93 -1.9572438 -12.94 -1.9482835 -12.95 -1.9383835 -12.96 -1.9276011 -12.97 -1.9160351 -12.98 -1.9038201 -12.99 -1.8911228 -13 -1.8781333 -13.01 -1.8650279 -13.02 -1.8520017 -13.03 -1.8393137 -13.04 -1.8271631 -13.05 -1.8157337 -13.06 -1.8051888 -13.07 -1.7956631 -13.08 -1.787263 -13.09 -1.7800672 -13.1 -1.7741216 -13.11 -1.7694469 -13.12 -1.7660214 -13.13 -1.7637338 -13.14 -1.7626335 -13.15 -1.7626699 -13.16 -1.7637825 -13.17 -1.7659074 -13.18 -1.7689824 -13.19 -1.7729424 -13.2 -1.7777308 -13.21 -1.78329 -13.22 -1.7895666 -13.23 -1.7965099 -13.24 -1.803988 -13.25 -1.8120438 -13.26 -1.820626 -13.27 -1.8296694 -13.28 -1.8391044 -13.29 -1.8488465 -13.3 -1.8588047 -13.31 -1.8688785 -13.32 -1.8789598 -13.33 -1.8889328 -13.34 -1.8986824 -13.35 -1.9081016 -13.36 -1.9170782 -13.37 -1.9255061 -13.38 -1.933291 -13.39 -1.9403568 -13.4 -1.9466446 -13.41 -1.952116 -13.42 -1.9567516 -13.43 -1.9605538 -13.44 -1.9635427 -13.45 -1.9657576 -13.46 -1.9672689 -13.47 -1.9681363 -13.48 -1.9684104 -13.49 -1.9681631 -13.5 -1.9674614 -13.51 -1.9663732 -13.52 -1.9649588 -13.53 -1.9632696 -13.54 -1.9613537 -13.55 -1.959249 -13.56 -1.9569879 -13.57 -1.9545876 -13.58 -1.952042 -13.59 -1.9494212 -13.6 -1.9467719 -13.61 -1.9441572 -13.62 -1.9416553 -13.63 -1.9393639 -13.64 -1.9374005 -13.65 -1.9359021 -13.66 -1.9350232 -13.67 -1.9349331 -13.68 -1.9358019 -13.69 -1.9377514 -13.7 -1.9410499 -13.71 -1.9458656 -13.72 -1.9523456 -13.73 -1.9606051 -13.74 -1.9707218 -13.75 -1.9827289 -13.76 -1.9966093 -13.77 -2.0122929 -13.78 -2.0296542 -13.79 -2.0485132 -13.8 -2.0686707 -13.81 -2.0898323 -13.82 -2.1116838 -13.83 -2.1338853 -13.84 -2.1560825 -13.85 -2.1779194 -13.86 -2.1990455 -13.87 -2.2191318 -13.88 -2.2378828 -13.89 -2.2550391 -13.9 -2.2703935 -13.91 -2.2838746 -13.92 -2.295368 -13.93 -2.3047985 -13.94 -2.3121794 -13.95 -2.3175712 -13.96 -2.3210734 -13.97 -2.3228173 -13.98 -2.322958 -13.99 -2.3216589 -14 -2.3190849 -14.01 -2.3153928 -14.02 -2.3108468 -14.03 -2.3055688 -14.04 -2.299483 -14.05 -2.2926281 -14.06 -2.2850142 -14.07 -2.2766177 -14.08 -2.2673947 -14.09 -2.2572824 -14.1 -2.2462065 -14.11 -2.2340947 -14.12 -2.2208805 -14.13 -2.206518 -14.14 -2.1909624 -14.15 -2.1742128 -14.16 -2.1563274 -14.17 -2.1374069 -14.18 -2.1175946 -14.19 -2.0970702 -14.2 -2.0760516 -14.21 -2.0547797 -14.22 -2.0335182 -14.23 -2.0125367 -14.24 -1.9921044 -14.25 -1.9724559 -14.26 -1.9538533 -14.27 -1.9364884 -14.28 -1.9205105 -14.29 -1.90602 -14.3 -1.8930662 -14.31 -1.8816463 -14.32 -1.8717093 -14.33 -1.8631575 -14.34 -1.8558577 -14.35 -1.8496477 -14.36 -1.8442262 -14.37 -1.8394668 -14.38 -1.8352145 -14.39 -1.8313151 -14.4 -1.8276416 -14.41 -1.8241051 -14.42 -1.8206619 -14.43 -1.8173139 -14.44 -1.8141137 -14.45 -1.8111582 -14.46 -1.808586 -14.47 -1.806451 -14.48 -1.8050229 -14.49 -1.8046031 -14.5 -1.8054092 -14.51 -1.8076496 -14.52 -1.8115063 -14.53 -1.8171271 -14.54 -1.8246171 -14.55 -1.8340331 -14.56 -1.845373 -14.57 -1.8585799 -14.58 -1.8735346 -14.59 -1.8900703 -14.6 -1.9079893 -14.61 -1.9270401 -14.62 -1.9469454 -14.63 -1.9674132 -14.64 -1.9881475 -14.65 -2.0088606 -14.66 -2.0292828 -14.67 -2.0491717 -14.68 -2.0683206 -14.69 -2.086562 -14.7 -2.1037914 -14.71 -2.1199328 -14.72 -2.1349495 -14.73 -2.1488413 -14.74 -2.1616391 -14.75 -2.173395 -14.76 -2.1841784 -14.77 -2.1940616 -14.78 -2.2031182 -14.79 -2.2114102 -14.8 -2.2189862 -14.81 -2.226032 -14.82 -2.2324007 -14.83 -2.2380638 -14.84 -2.2429743 -14.85 -2.2470684 -14.86 -2.2502652 -14.87 -2.2524779 -14.88 -2.2536172 -14.89 -2.2535996 -14.9 -2.2523539 -14.91 -2.2498249 -14.92 -2.2460775 -14.93 -2.2410438 -14.94 -2.2347255 -14.95 -2.2271806 -14.96 -2.2184908 -14.97 -2.2087649 -14.98 -2.1981252 -14.99 -2.1867072 -15 -2.1746496 -15.01 -2.1620893 -15.02 -2.1491535 -15.03 -2.1360335 -15.04 -2.1227912 -15.05 -2.10941 -15.06 -2.0959162 -15.07 -2.0823123 -15.08 -2.0685722 -15.09 -2.0546521 -15.1 -2.0404927 -15.11 -2.0260282 -15.12 -2.0111929 -15.13 -1.9959289 -15.14 -1.9801676 -15.15 -1.9638392 -15.16 -1.9470118 -15.17 -1.9297463 -15.18 -1.9121433 -15.19 -1.8943429 -15.2 -1.8765217 -15.21 -1.8588878 -15.22 -1.8416778 -15.23 -1.8251421 -15.24 -1.8095423 -15.25 -1.7951218 -15.26 -1.7820556 -15.27 -1.770658 -15.28 -1.761108 -15.29 -1.7535333 -15.3 -1.748014 -15.31 -1.7445715 -15.32 -1.7431682 -15.33 -1.7437127 -15.34 -1.7460595 -15.35 -1.7500168 -15.36 -1.7553547 -15.37 -1.7617034 -15.38 -1.7688676 -15.39 -1.7765825 -15.4 -1.7845851 -15.41 -1.7926313 -15.42 -1.8005116 -15.43 -1.8080546 -15.44 -1.8151339 -15.45 -1.8216729 -15.46 -1.827645 -15.47 -1.8330717 -15.48 -1.8379364 -15.49 -1.8424185 -15.5 -1.8466934 -15.51 -1.8509128 -15.52 -1.8552363 -15.53 -1.8598203 -15.54 -1.8648079 -15.55 -1.8703213 -15.56 -1.8764535 -15.57 -1.883263 -15.58 -1.8907711 -15.59 -1.8989777 -15.6 -1.9078247 -15.61 -1.9172047 -15.62 -1.9269956 -15.63 -1.9370591 -15.64 -1.9472456 -15.65 -1.9574032 -15.66 -1.9673847 -15.67 -1.9770566 -15.68 -1.9863049 -15.69 -1.9950452 -15.7 -2.0032098 -15.71 -2.0107665 -15.72 -2.0177471 -15.73 -2.0241918 -15.74 -2.0301646 -15.75 -2.0357487 -15.76 -2.0410393 -15.77 -2.0461368 -15.78 -2.0511396 -15.79 -2.0561367 -15.8 -2.0612026 -15.81 -2.0663943 -15.82 -2.0718197 -15.83 -2.0774043 -15.84 -2.0831197 -15.85 -2.0889116 -15.86 -2.0947045 -15.87 -2.1004048 -15.88 -2.1059085 -15.89 -2.1111053 -15.9 -2.1158864 -15.91 -2.1201512 -15.92 -2.1238092 -15.93 -2.1268334 -15.94 -2.1291371 -15.95 -2.1306885 -15.96 -2.1314913 -15.97 -2.1315689 -15.98 -2.1309678 -15.99 -2.1297511 -16 -2.1279945 -16.01 -2.1257788 -16.02 -2.1231903 -16.03 -2.1203096 -16.04 -2.1172536 -16.05 -2.114063 -16.06 -2.1107569 -16.07 -2.1073622 -16.08 -2.1038918 -16.09 -2.1003459 -16.1 -2.0967111 -16.11 -2.0929702 -16.12 -2.0891022 -16.13 -2.0850891 -16.14 -2.0809187 -16.15 -2.0765942 -16.16 -2.0721281 -16.17 -2.0675503 -16.18 -2.0629176 -16.19 -2.0583002 -16.2 -2.0537858 -16.21 -2.0494702 -16.22 -2.0454529 -16.23 -2.0418321 -16.24 -2.0386981 -16.25 -2.0361236 -16.26 -2.0341653 -16.27 -2.0328688 -16.28 -2.03218 -16.29 -2.0320387 -16.3 -2.0323452 -16.31 -2.0329623 -16.32 -2.0337197 -16.33 -2.0344195 -16.34 -2.0348452 -16.35 -2.0347718 -16.36 -2.0339768 -16.37 -2.0322526 -16.38 -2.0293314 -16.39 -2.0251396 -16.4 -2.0195917 -16.41 -2.0126605 -16.42 -2.0043819 -16.43 -1.9948573 -16.44 -1.9842529 -16.45 -1.9727949 -16.46 -1.9607624 -16.47 -1.9484775 -16.48 -1.936292 -16.49 -1.9245705 -16.5 -1.9137092 -16.51 -1.9040565 -16.52 -1.8959217 -16.53 -1.8895649 -16.54 -1.8851855 -16.55 -1.882913 -16.56 -1.8828015 -16.57 -1.8848281 -16.58 -1.8888943 -16.59 -1.8948317 -16.6 -1.9023831 -16.61 -1.9112417 -16.62 -1.9211075 -16.63 -1.9316546 -16.64 -1.9425602 -16.65 -1.9535203 -16.66 -1.9642653 -16.67 -1.9745726 -16.68 -1.9842765 -16.69 -1.993275 -16.7 -2.0015327 -16.71 -2.0090441 -16.72 -2.0159117 -16.73 -2.0223669 -16.74 -2.0285978 -16.75 -2.0348127 -16.76 -2.0412225 -16.77 -2.0480244 -16.78 -2.0553847 -16.79 -2.0634218 -16.8 -2.0721973 -16.81 -2.0817015 -16.82 -2.0918855 -16.83 -2.1027488 -16.84 -2.1138448 -16.85 -2.1248518 -16.86 -2.1353941 -16.87 -2.1450594 -16.88 -2.1534154 -16.89 -2.1600308 -16.9 -2.1644981 -16.91 -2.166452 -16.92 -2.1655908 -16.93 -2.1616923 -16.94 -2.1546104 -16.95 -2.1443154 -16.96 -2.1309048 -16.97 -2.1145839 -16.98 -2.0956598 -16.99 -2.0745294 -17 -2.0516648 -17.01 -2.0275941 -17.02 -2.0028794 -17.03 -1.9780955 -17.04 -1.9538046 -17.05 -1.9305623 -17.06 -1.9088253 -17.07 -1.8889685 -17.08 -1.8712904 -17.09 -1.8559889 -17.1 -1.8431647 -17.11 -1.8328178 -17.12 -1.8248562 -17.13 -1.8191087 -17.14 -1.8153344 -17.15 -1.8132481 -17.16 -1.8124298 -17.17 -1.8125241 -17.18 -1.8133177 -17.19 -1.8145469 -17.2 -1.8160021 -17.21 -1.8175365 -17.22 -1.8190765 -17.23 -1.8206216 -17.24 -1.8222493 -17.25 -1.8241029 -17.26 -1.8263846 -17.27 -1.8293042 -17.28 -1.8331307 -17.29 -1.8382654 -17.3 -1.8449813 -17.31 -1.853515 -17.32 -1.8640543 -17.33 -1.8767194 -17.34 -1.891553 -17.35 -1.9085127 -17.36 -1.9274687 -17.37 -1.9482046 -17.38 -1.9704309 -17.39 -1.9938284 -17.4 -2.0178926 -17.41 -2.0421646 -17.42 -2.0661681 -17.43 -2.0894379 -17.44 -2.1115323 -17.45 -2.1320614 -17.46 -2.1506941 -17.47 -2.1671785 -17.48 -2.1813453 -17.49 -2.1931181 -17.5 -2.2025176 -17.51 -2.2096798 -17.52 -2.2147972 -17.53 -2.2181188 -17.54 -2.2199419 -17.55 -2.2205906 -17.56 -2.2203975 -17.57 -2.2196856 -17.58 -2.2187484 -17.59 -2.2178349 -17.6 -2.2171358 -17.61 -2.2169409 -17.62 -2.2172097 -17.63 -2.2178168 -17.64 -2.2186505 -17.65 -2.2195382 -17.66 -2.2202565 -17.67 -2.2205449 -17.68 -2.2201255 -17.69 -2.2187175 -17.7 -2.2160533 -17.71 -2.2119013 -17.72 -2.20607 -17.73 -2.1984107 -17.74 -2.1888715 -17.75 -2.1774815 -17.76 -2.1643465 -17.77 -2.1496421 -17.78 -2.1336071 -17.79 -2.1165374 -17.8 -2.098765 -17.81 -2.0806484 -17.82 -2.062553 -17.83 -2.0448489 -17.84 -2.0279017 -17.85 -2.01197 -17.86 -1.9972847 -17.87 -1.9840133 -17.88 -1.9722571 -17.89 -1.962048 -17.9 -1.9533517 -17.91 -1.946073 -17.92 -1.9400648 -17.93 -1.9351386 -17.94 -1.9310766 -17.95 -1.9275462 -17.96 -1.9243839 -17.97 -1.9213855 -17.98 -1.918377 -17.99 -1.9152255 -18 -1.911848 -18.01 -1.908211 -18.02 -1.9043369 -18.03 -1.9003 -18.04 -1.896221 -18.05 -1.8922597 -18.06 -1.8885121 -18.07 -1.8852894 -18.08 -1.8828255 -18.09 -1.8813214 -18.1 -1.8809532 -18.11 -1.8818634 -18.12 -1.8841533 -18.13 -1.8878756 -18.14 -1.8930296 -18.15 -1.8995664 -18.16 -1.9073832 -18.17 -1.9163285 -18.18 -1.9262097 -18.19 -1.9368155 -18.2 -1.9479178 -18.21 -1.9592851 -18.22 -1.9706941 -18.23 -1.9819402 -18.24 -1.9928469 -18.25 -2.0032729 -18.26 -2.0131165 -18.27 -2.0223196 -18.28 -2.030856 -18.29 -2.0387638 -18.3 -2.0461306 -18.31 -2.0530474 -18.32 -2.059622 -18.33 -2.0659696 -18.34 -2.0722023 -18.35 -2.0784198 -18.36 -2.0847002 -18.37 -2.0910929 -18.38 -2.0976131 -18.39 -2.1042606 -18.4 -2.1110562 -18.41 -2.1177908 -18.42 -2.1243213 -18.43 -2.1304838 -18.44 -2.1360937 -18.45 -2.1409597 -18.46 -2.1448899 -18.47 -2.1477056 -18.48 -2.1492481 -18.49 -2.149387 -18.5 -2.1480305 -18.51 -2.1451776 -18.52 -2.1407748 -18.53 -2.1348649 -18.54 -2.1275354 -18.55 -2.1189115 -18.56 -2.1091508 -18.57 -2.0984344 -18.58 -2.0869585 -18.59 -2.0749245 -18.6 -2.0625298 -18.61 -2.0499584 -18.62 -2.037447 -18.63 -2.0250716 -18.64 -2.0129009 -18.65 -2.0009931 -18.66 -1.9893706 -18.67 -1.9780245 -18.68 -1.9669167 -18.69 -1.9559845 -18.7 -1.9451535 -18.71 -1.9343387 -18.72 -1.9234588 -18.73 -1.912391 -18.74 -1.9010637 -18.75 -1.8894915 -18.76 -1.8776816 -18.77 -1.8656789 -18.78 -1.8535591 -18.79 -1.8414364 -18.8 -1.8294522 -18.81 -1.8177719 -18.82 -1.8065812 -18.83 -1.7960755 -18.84 -1.7864173 -18.85 -1.7777702 -18.86 -1.7703786 -18.87 -1.764384 -18.88 -1.7598942 -18.89 -1.7569774 -18.9 -1.7556598 -18.91 -1.755922 -18.92 -1.7577045 -18.93 -1.7609077 -18.94 -1.765397 -18.95 -1.7709995 -18.96 -1.7774415 -18.97 -1.7846185 -18.98 -1.7923427 -18.99 -1.8004338 -19 -1.8087322 -19.01 -1.8171051 -19.02 -1.8254513 -19.03 -1.8337054 -19.04 -1.8418401 -19.05 -1.849865 -19.06 -1.8578281 -19.07 -1.8657155 -19.08 -1.873744 -19.09 -1.8820507 -19.1 -1.890769 -19.11 -1.9000327 -19.12 -1.9099665 -19.13 -1.9206759 -19.14 -1.9322419 -19.15 -1.9447139 -19.16 -1.9581046 -19.17 -1.9723874 -19.18 -1.9875454 -19.19 -2.0034515 -19.2 -2.019937 -19.21 -2.0368227 -19.22 -2.0539038 -19.23 -2.0709588 -19.24 -2.0877561 -19.25 -2.1040623 -19.26 -2.1196498 -19.27 -2.1343064 -19.28 -2.1478418 -19.29 -2.1601252 -19.3 -2.1710321 -19.31 -2.1804286 -19.32 -2.1882544 -19.33 -2.1944836 -19.34 -2.199122 -19.35 -2.2022076 -19.36 -2.2038027 -19.37 -2.20399 -19.38 -2.2028695 -19.39 -2.2005513 -19.4 -2.1971872 -19.41 -2.1929619 -19.42 -2.1878774 -19.43 -2.1820318 -19.44 -2.1755124 -19.45 -2.1683953 -19.46 -2.1607458 -19.47 -2.1526159 -19.48 -2.144049 -19.49 -2.13508 -19.5 -2.1257397 -19.51 -2.1160549 -19.52 -2.1060787 -19.53 -2.0957832 -19.54 -2.0852006 -19.55 -2.0743751 -19.56 -2.0633539 -19.57 -2.0521963 -19.58 -2.0409697 -19.59 -2.0297505 -19.6 -2.01862 -19.61 -2.0076693 -19.62 -1.9969883 -19.63 -1.9866087 -19.64 -1.9766687 -19.65 -1.9672713 -19.66 -1.9585038 -19.67 -1.950447 -19.68 -1.9431738 -19.69 -1.9367488 -19.7 -1.9312274 -19.71 -1.926656 -19.72 -1.9230722 -19.73 -1.9205055 -19.74 -1.9189171 -19.75 -1.9183487 -19.76 -1.9188474 -19.77 -1.9204193 -19.78 -1.9230665 -19.79 -1.9267865 -19.8 -1.9315727 -19.81 -1.9374134 -19.82 -1.9442914 -19.83 -1.9521846 -19.84 -1.9610612 -19.85 -1.9708652 -19.86 -1.9815498 -19.87 -1.9930849 -19.88 -2.0053988 -19.89 -2.0184064 -19.9 -2.0320101 -19.91 -2.0460959 -19.92 -2.0605418 -19.93 -2.0752106 -19.94 -2.0899572 -19.95 -2.1046282 -19.96 -2.1190763 -19.97 -2.1331786 -19.98 -2.146739 -19.99 -2.1596016 -20 -2.1716132 -20.01 -2.1826337 -20.02 -2.192534 -20.03 -2.2011967 -20.04 -2.2085248 -20.05 -2.2144352 -20.06 -2.2188653 -20.07 -2.2217728 -20.08 -2.2232652 -20.09 -2.2232098 -20.1 -2.221616 -20.11 -2.2185088 -20.12 -2.2139303 -20.13 -2.2079355 -20.14 -2.2005921 -20.15 -2.1919792 -20.16 -2.1821855 -20.17 -2.1713104 -20.18 -2.1594578 -20.19 -2.1467953 -20.2 -2.1333768 -20.21 -2.1193063 -20.22 -2.1047087 -20.23 -2.089716 -20.24 -2.0744632 -20.25 -2.0590886 -20.26 -2.043735 -20.27 -2.0285444 -20.28 -2.0136609 -20.29 -1.9992274 -20.3 -1.9853447 -20.31 -1.9721498 -20.32 -1.959803 -20.33 -1.9484287 -20.34 -1.9381399 -20.35 -1.9290357 -20.36 -1.9211986 -20.37 -1.9146934 -20.38 -1.909564 -20.39 -1.9058319 -20.4 -1.9034963 -20.41 -1.9025108 -20.42 -1.9028123 -20.43 -1.904372 -20.44 -1.907094 -20.45 -1.9108624 -20.46 -1.915544 -20.47 -1.9209884 -20.48 -1.9270331 -20.49 -1.9335092 -20.5 -1.9402423 -20.51 -1.9470574 -20.52 -1.953781 -20.53 -1.9602222 -20.54 -1.9662697 -20.55 -1.971793 -20.56 -1.9766826 -20.57 -1.9808499 -20.58 -1.9842339 -20.59 -1.9867979 -20.6 -1.9885327 -20.61 -1.9894569 -20.62 -1.989613 -20.63 -1.9890702 -20.64 -1.987915 -20.65 -1.9862654 -20.66 -1.9842438 -20.67 -1.9819782 -20.68 -1.9796042 -20.69 -1.9772548 -20.7 -1.9750609 -20.71 -1.9731393 -20.72 -1.9715974 -20.73 -1.970522 -20.74 -1.9699811 -20.75 -1.9700385 -20.76 -1.9706948 -20.77 -1.971929 -20.78 -1.97371 -20.79 -1.9759815 -20.8 -1.9786657 -20.81 -1.9816711 -20.82 -1.9848898 -20.83 -1.9882089 -20.84 -1.9915104 -20.85 -1.9946768 -20.86 -1.9975804 -20.87 -2.0001219 -20.88 -2.0022384 -20.89 -2.0038696 -20.9 -2.0049748 -20.91 -2.0055379 -20.92 -2.0055627 -20.93 -2.0050757 -20.94 -2.0041229 -20.95 -2.0027665 -20.96 -2.0010804 -20.97 -1.9991612 -20.98 -1.9971271 -20.99 -1.9950279 -21 -1.9929354 -21.01 -1.9909045 -21.02 -1.9889758 -21.03 -1.9871701 -21.04 -1.9854857 -21.05 -1.9838997 -21.06 -1.982367 -21.07 -1.9808234 -21.08 -1.979193 -21.09 -1.9773757 -21.1 -1.9752512 -21.11 -1.9727249 -21.12 -1.9697157 -21.13 -1.9661571 -21.14 -1.9620063 -21.15 -1.9572539 -21.16 -1.9519186 -21.17 -1.946062 -21.18 -1.9397798 -21.19 -1.9332085 -21.2 -1.9264153 -21.21 -1.9197081 -21.22 -1.9133408 -21.23 -1.9075702 -21.24 -1.9026591 -21.25 -1.8988697 -21.26 -1.8964504 -21.27 -1.8956268 -21.28 -1.8965909 -21.29 -1.8994932 -21.3 -1.9044331 -21.31 -1.9114689 -21.32 -1.9205859 -21.33 -1.9316928 -21.34 -1.9446428 -21.35 -1.959232 -21.36 -1.9752049 -21.37 -1.9922634 -21.38 -2.010076 -21.39 -2.0282889 -21.4 -2.0465382 -21.41 -2.0644623 -21.42 -2.081715 -21.43 -2.0979763 -21.44 -2.112964 -21.45 -2.126443 -21.46 -2.1382287 -21.47 -2.1481908 -21.48 -2.1562537 -21.49 -2.1623956 -21.5 -2.1666432 -21.51 -2.1690692 -21.52 -2.1697824 -21.53 -2.1689509 -21.54 -2.166826 -21.55 -2.1634625 -21.56 -2.159013 -21.57 -2.1536164 -21.58 -2.1473944 -21.59 -2.1404402 -21.6 -2.132822 -21.61 -2.1245755 -21.62 -2.1157085 -21.63 -2.1062025 -21.64 -2.0960194 -21.65 -2.0851587 -21.66 -2.0734503 -21.67 -2.0608346 -21.68 -2.0472656 -21.69 -2.0327205 -21.7 -2.0172067 -21.71 -2.0007685 -21.72 -1.9834917 -21.73 -1.9655079 -21.74 -1.9469913 -21.75 -1.9281599 -21.76 -1.9091584 -21.77 -1.8903675 -21.78 -1.8721314 -21.79 -1.8547814 -21.8 -1.8386481 -21.81 -1.8240525 -21.82 -1.8112886 -21.83 -1.8006192 -21.84 -1.792263 -21.85 -1.786385 -21.86 -1.783093 -21.87 -1.7823867 -21.88 -1.7842593 -21.89 -1.7886526 -21.9 -1.7954249 -21.91 -1.8043832 -21.92 -1.8152919 -21.93 -1.8278832 -21.94 -1.8418675 -21.95 -1.8569476 -21.96 -1.8728267 -21.97 -1.8892183 -21.98 -1.905808 -21.99 -1.9223397 -22 -1.9387111 -22.01 -1.9547763 -22.02 -1.9704293 -22.03 -1.9856049 -22.04 -2.0002755 -22.05 -2.0144451 -22.06 -2.0281438 -22.07 -2.0414195 -22.08 -2.0543301 -22.09 -2.0669503 -22.1 -2.0794168 -22.11 -2.0917018 -22.12 -2.1038094 -22.13 -2.1157173 -22.14 -2.1273743 -22.15 -2.1386958 -22.16 -2.1495689 -22.17 -2.1598534 -22.18 -2.1693867 -22.19 -2.1779911 -22.2 -2.1854799 -22.21 -2.1917896 -22.22 -2.1965985 -22.23 -2.1997445 -22.24 -2.2010929 -22.25 -2.2005491 -22.26 -2.1980536 -22.27 -2.1935959 -22.28 -2.1872081 -22.29 -2.1789721 -22.3 -2.1690152 -22.31 -2.1575056 -22.32 -2.1446585 -22.33 -2.130706 -22.34 -2.1159111 -22.35 -2.1005554 -22.36 -2.0849258 -22.37 -2.0693101 -22.38 -2.0539846 -22.39 -2.0392113 -22.4 -2.0252294 -22.41 -2.0122485 -22.42 -2.0004492 -22.43 -1.9899732 -22.44 -1.9809226 -22.45 -1.9733639 -22.46 -1.9673348 -22.47 -1.9628387 -22.48 -1.9598517 -22.49 -1.9583247 -22.5 -1.9581849 -22.51 -1.9593451 -22.52 -1.9617016 -22.53 -1.9651424 -22.54 -1.9695284 -22.55 -1.9747145 -22.56 -1.9806233 -22.57 -1.9871364 -22.58 -1.9941378 -22.59 -2.0015148 -22.6 -2.0091592 -22.61 -2.0169675 -22.62 -2.0248406 -22.63 -2.0326852 -22.64 -2.0404132 -22.65 -2.0479411 -22.66 -2.0551961 -22.67 -2.0621205 -22.68 -2.0686494 -22.69 -2.0747256 -22.7 -2.0802992 -22.71 -2.0853276 -22.72 -2.0897755 -22.73 -2.093615 -22.74 -2.096828 -22.75 -2.099402 -22.76 -2.101329 -22.77 -2.1026801 -22.78 -2.1034017 -22.79 -2.1034913 -22.8 -2.102953 -22.81 -2.1017924 -22.82 -2.1000139 -22.83 -2.0976201 -22.84 -2.0946109 -22.85 -2.0909838 -22.86 -2.0867344 -22.87 -2.081856 -22.88 -2.0763749 -22.89 -2.0702531 -22.9 -2.0634696 -22.91 -2.0560272 -22.92 -2.0479368 -22.93 -2.0392197 -22.94 -2.0299095 -22.95 -2.0200532 -22.96 -2.0097144 -22.97 -1.9989686 -22.98 -1.9879084 -22.99 -1.9766182 -23 -1.9652091 -23.01 -1.9538276 -23.02 -1.9426075 -23.03 -1.931681 -23.04 -1.92118 -23.05 -1.9112258 -23.06 -1.9019297 -23.07 -1.8933892 -23.08 -1.8856805 -23.09 -1.878862 -23.1 -1.872952 -23.11 -1.8679257 -23.12 -1.8638168 -23.13 -1.8605935 -23.14 -1.8582061 -23.15 -1.8565925 -23.16 -1.8556824 -23.17 -1.8553998 -23.18 -1.8556711 -23.19 -1.856426 -23.2 -1.8576077 -23.21 -1.8591667 -23.22 -1.8609736 -23.23 -1.8631334 -23.24 -1.8656639 -23.25 -1.8685998 -23.26 -1.8719959 -23.27 -1.8759172 -23.28 -1.8804407 -23.29 -1.8856492 -23.3 -1.8916222 -23.31 -1.8984352 -23.32 -1.9061471 -23.33 -1.9147925 -23.34 -1.9244142 -23.35 -1.9350072 -23.36 -1.9465332 -23.37 -1.9589241 -23.38 -1.9720812 -23.39 -1.9858784 -23.4 -2.0001648 -23.41 -2.014769 -23.42 -2.0295053 -23.43 -2.0441793 -23.44 -2.0586067 -23.45 -2.0725962 -23.46 -2.0859643 -23.47 -2.0985519 -23.48 -2.1102245 -23.49 -2.1208711 -23.5 -2.1304102 -23.51 -2.1387913 -23.52 -2.1459888 -23.53 -2.1520085 -23.54 -2.1568753 -23.55 -2.1606854 -23.56 -2.1635327 -23.57 -2.165419 -23.58 -2.1664115 -23.59 -2.1665742 -23.6 -2.1659659 -23.61 -2.1646319 -23.62 -2.1626073 -23.63 -2.1599121 -23.64 -2.1565523 -23.65 -2.152523 -23.66 -2.1478249 -23.67 -2.1424659 -23.68 -2.13635 -23.69 -2.1294629 -23.7 -2.1218003 -23.71 -2.1133791 -23.72 -2.1042357 -23.73 -2.0944339 -23.74 -2.0840614 -23.75 -2.0732377 -23.76 -2.0621091 -23.77 -2.0508473 -23.78 -2.0395971 -23.79 -2.0286211 -23.8 -2.0181405 -23.81 -2.008376 -23.82 -1.9995388 -23.83 -1.9918223 -23.84 -1.9853948 -23.85 -1.9803912 -23.86 -1.9769074 -23.87 -1.9749955 -23.88 -1.9746605 -23.89 -1.9758637 -23.9 -1.9785066 -23.91 -1.9824494 -23.92 -1.9875166 -23.93 -1.9935012 -23.94 -2.0001735 -23.95 -2.0072899 -23.96 -2.0146024 -23.97 -2.0218678 -23.98 -2.0288575 -23.99 -2.0353645 -24 -2.0411873 -24.01 -2.0461955 -24.02 -2.0503111 -24.03 -2.0534752 -24.04 -2.0556671 -24.05 -2.0569021 -24.06 -2.0572267 -24.07 -2.0567129 -24.08 -2.0554522 -24.09 -2.0535475 -24.1 -2.0511057 -24.11 -2.0482595 -24.12 -2.0451343 -24.13 -2.0417528 -24.14 -2.0381647 -24.15 -2.0343969 -24.16 -2.0304528 -24.17 -2.0263132 -24.18 -2.0219397 -24.19 -2.0172778 -24.2 -2.0122642 -24.21 -2.0068287 -24.22 -2.0009064 -24.23 -1.9944124 -24.24 -1.9873096 -24.25 -1.9795856 -24.26 -1.9712571 -24.27 -1.9623691 -24.28 -1.9530014 -24.29 -1.943264 -24.3 -1.9332965 -24.31 -1.9232659 -24.32 -1.9133564 -24.33 -1.9037681 -24.34 -1.8946467 -24.35 -1.8862629 -24.36 -1.8788144 -24.37 -1.8724763 -24.38 -1.8673929 -24.39 -1.8636795 -24.4 -1.8614126 -24.41 -1.8606301 -24.42 -1.8613298 -24.43 -1.8634669 -24.44 -1.8669622 -24.45 -1.8716665 -24.46 -1.8774504 -24.47 -1.8841633 -24.48 -1.8916282 -24.49 -1.8996672 -24.5 -1.9081008 -24.51 -1.9167593 -24.52 -1.9254897 -24.53 -1.9341585 -24.54 -1.9426564 -24.55 -1.950898 -24.56 -1.9588053 -24.57 -1.9663599 -24.58 -1.9735864 -24.59 -1.9804957 -24.6 -1.9871176 -24.61 -1.9934877 -24.62 -1.9996473 -24.63 -2.005636 -24.64 -2.0114877 -24.65 -2.0172269 -24.66 -2.0228649 -24.67 -2.0284178 -24.68 -2.033896 -24.69 -2.0392153 -24.7 -2.044324 -24.71 -2.0491601 -24.72 -2.0536553 -24.73 -2.0577391 -24.74 -2.0613428 -24.75 -2.0644041 -24.76 -2.0668713 -24.77 -2.068706 -24.78 -2.0698888 -24.79 -2.0704376 -24.8 -2.070343 -24.81 -2.069641 -24.82 -2.0683838 -24.83 -2.0666368 -24.84 -2.0644751 -24.85 -2.0619796 -24.86 -2.0592321 -24.87 -2.0563112 -24.88 -2.0532882 -24.89 -2.0502236 -24.9 -2.0471941 -24.91 -2.0441985 -24.92 -2.0412421 -24.93 -2.0383196 -24.94 -2.0354112 -24.95 -2.032486 -24.96 -2.0295054 -24.97 -2.0264273 -24.98 -2.0232112 -24.99 -2.0198224 -25 -2.0162371 -25.01 -2.0124205 -25.02 -2.0083888 -25.03 -2.0041888 -25.04 -1.9998768 -25.05 -1.9955305 -25.06 -1.9912473 -25.07 -1.987141 -25.08 -1.9833378 -25.09 -1.9799707 -25.1 -1.9771742 -25.11 -1.9750773 -25.12 -1.9737975 -25.13 -1.9734418 -25.14 -1.9740863 -25.15 -1.9757759 -25.16 -1.9785232 -25.17 -1.982307 -25.18 -1.987072 -25.19 -1.9927301 -25.2 -1.9991628 -25.21 -2.0062255 -25.22 -2.0137527 -25.23 -2.021562 -25.24 -2.0294555 -25.25 -2.0372516 -25.26 -2.0447713 -25.27 -2.0518487 -25.28 -2.0583372 -25.29 -2.0641135 -25.3 -2.0690808 -25.31 -2.0731709 -25.32 -2.0763441 -25.33 -2.0785885 -25.34 -2.0799175 -25.35 -2.080416 -25.36 -2.080104 -25.37 -2.0790415 -25.38 -2.0772935 -25.39 -2.0749245 -25.4 -2.0719938 -25.41 -2.0685514 -25.42 -2.0646355 -25.43 -2.0602703 -25.44 -2.0554659 -25.45 -2.0502187 -25.46 -2.0445395 -25.47 -2.0383581 -25.48 -2.0316367 -25.49 -2.0243502 -25.5 -2.0164829 -25.51 -2.0080344 -25.52 -1.9990245 -25.53 -1.9894976 -25.54 -1.9795267 -25.55 -1.969215 -25.56 -1.9586969 -25.57 -1.9480703 -25.58 -1.9375494 -25.59 -1.927403 -25.6 -1.9178703 -25.61 -1.9091993 -25.62 -1.9016388 -25.63 -1.8954296 -25.64 -1.8907952 -25.65 -1.8879332 -25.66 -1.887007 -25.67 -1.8881394 -25.68 -1.8913957 -25.69 -1.8967997 -25.7 -1.9043382 -25.71 -1.9139249 -25.72 -1.9254223 -25.73 -1.9386466 -25.74 -1.9533729 -25.75 -1.969343 -25.76 -1.9862744 -25.77 -2.0038673 -25.78 -2.0218189 -25.79 -2.0398225 -25.8 -2.0575678 -25.81 -2.0748269 -25.82 -2.0913717 -25.83 -2.1070051 -25.84 -2.1215722 -25.85 -2.134956 -25.86 -2.147079 -25.87 -2.1579036 -25.88 -2.1674263 -25.89 -2.1756738 -25.9 -2.1826968 -25.91 -2.1886874 -25.92 -2.1936395 -25.93 -2.1976235 -25.94 -2.2007116 -25.95 -2.2029677 -25.96 -2.2044395 -25.97 -2.2051562 -25.98 -2.2051278 -25.99 -2.2043441 -26 -2.2027776 -26.01 -2.2003805 -26.02 -2.1971947 -26.03 -2.1930622 -26.04 -2.1878694 -26.05 -2.1815505 -26.06 -2.1740505 -26.07 -2.1653301 -26.08 -2.155376 -26.09 -2.1441992 -26.1 -2.1318431 -26.11 -2.1183811 -26.12 -2.1039222 -26.13 -2.0885849 -26.14 -2.0725321 -26.15 -2.0559813 -26.16 -2.039154 -26.17 -2.0222868 -26.18 -2.0056239 -26.19 -1.9894106 -26.2 -1.9738861 -26.21 -1.9592762 -26.22 -1.9457878 -26.23 -1.933602 -26.24 -1.9228549 -26.25 -1.9136449 -26.26 -1.9060852 -26.27 -1.9002177 -26.28 -1.896051 -26.29 -1.8935556 -26.3 -1.8926722 -26.31 -1.8933106 -26.32 -1.8953587 -26.33 -1.8986846 -26.34 -1.9031388 -26.35 -1.9085592 -26.36 -1.9147241 -26.37 -1.9215447 -26.38 -1.9288686 -26.39 -1.9365504 -26.4 -1.9444542 -26.41 -1.9524542 -26.42 -1.9604389 -26.43 -1.9683073 -26.44 -1.9759715 -26.45 -1.9833523 -26.46 -1.9903832 -26.47 -1.9970186 -26.48 -2.0032059 -26.49 -2.0088925 -26.5 -2.014029 -26.51 -2.0185667 -26.52 -2.0224589 -26.53 -2.025658 -26.54 -2.0281202 -26.55 -2.0298043 -26.56 -2.0306706 -26.57 -2.0306869 -26.58 -2.0298576 -26.59 -2.0281426 -26.6 -2.02552 -26.61 -2.0219968 -26.62 -2.0175936 -26.63 -2.0123506 -26.64 -2.0063206 -26.65 -1.9995743 -26.66 -1.9922006 -26.67 -1.9843002 -26.68 -1.9759867 -26.69 -1.9673794 -26.7 -1.9586045 -26.71 -1.9498048 -26.72 -1.9411194 -26.73 -1.932684 -26.74 -1.9246286 -26.75 -1.9170743 -26.76 -1.9101327 -26.77 -1.9038998 -26.78 -1.8984563 -26.79 -1.8938676 -26.8 -1.8901672 -26.81 -1.8873549 -26.82 -1.885482 -26.83 -1.8845498 -26.84 -1.8845451 -26.85 -1.8854442 -26.86 -1.8872132 -26.87 -1.8898117 -26.88 -1.8931948 -26.89 -1.8973133 -26.9 -1.9021169 -26.91 -1.9075513 -26.92 -1.9135149 -26.93 -1.9200207 -26.94 -1.9270222 -26.95 -1.9344681 -26.96 -1.9423094 -26.97 -1.9504924 -26.98 -1.9589605 -26.99 -1.9676508 -27 -1.9764969 -27.01 -1.9854242 -27.02 -1.9943516 -27.03 -2.003212 -27.04 -2.0119027 -27.05 -2.0203195 -27.06 -2.0283581 -27.07 -2.0359136 -27.08 -2.0428833 -27.09 -2.0491697 -27.1 -2.0546843 -27.11 -2.0593504 -27.12 -2.0631069 -27.13 -2.0659111 -27.14 -2.0677604 -27.15 -2.0686467 -27.16 -2.0685834 -27.17 -2.0676209 -27.18 -2.0658333 -27.19 -2.0633174 -27.2 -2.0601897 -27.21 -2.0565835 -27.22 -2.0526444 -27.23 -2.0485261 -27.24 -2.0443868 -27.25 -2.0403908 -27.26 -2.036693 -27.27 -2.033408 -27.28 -2.0306532 -27.29 -2.0285256 -27.3 -2.0270971 -27.31 -2.0264172 -27.32 -2.0265079 -27.33 -2.0273639 -27.34 -2.0289569 -27.35 -2.031235 -27.36 -2.0341251 -27.37 -2.0375345 -27.38 -2.0413631 -27.39 -2.0455067 -27.4 -2.0498577 -27.41 -2.0543075 -27.42 -2.0587546 -27.43 -2.0631072 -27.44 -2.06728 -27.45 -2.0712047 -27.46 -2.0748236 -27.47 -2.0780936 -27.48 -2.0810131 -27.49 -2.0835484 -27.5 -2.085687 -27.51 -2.087424 -27.52 -2.0887558 -27.53 -2.0896794 -27.54 -2.0901906 -27.55 -2.0902789 -27.56 -2.0899292 -27.57 -2.089121 -27.58 -2.0878267 -27.59 -2.0860476 -27.6 -2.0837111 -27.61 -2.0807626 -27.62 -2.0771642 -27.63 -2.0728842 -27.64 -2.0679006 -27.65 -2.0622057 -27.66 -2.0558084 -27.67 -2.048738 -27.68 -2.0410455 -27.69 -2.0328051 -27.7 -2.0240913 -27.71 -2.0150264 -27.72 -2.0057713 -27.73 -1.9964865 -27.74 -1.987344 -27.75 -1.9785218 -27.76 -1.9701986 -27.77 -1.9625466 -27.78 -1.9557257 -27.79 -1.949877 -27.8 -1.9451178 -27.81 -1.9415302 -27.82 -1.9391651 -27.83 -1.9380528 -27.84 -1.9381759 -27.85 -1.9394827 -27.86 -1.9418893 -27.87 -1.9452836 -27.88 -1.9495308 -27.89 -1.9544783 -27.9 -1.9599637 -27.91 -1.965821 -27.92 -1.9718808 -27.93 -1.9779502 -27.94 -1.983944 -27.95 -1.9897535 -27.96 -1.9952958 -27.97 -2.0005155 -27.98 -2.0053857 -27.99 -2.0099061 -28 -2.0141015 -28.01 -2.0180172 -28.02 -2.0217139 -28.03 -2.0252624 -28.04 -2.0287719 -28.05 -2.0322993 -28.06 -2.0359 -28.07 -2.0396157 -28.08 -2.0434667 -28.09 -2.04745 -28.1 -2.051537 -28.11 -2.0556731 -28.12 -2.0597795 -28.13 -2.063756 -28.14 -2.0674856 -28.15 -2.0708641 -28.16 -2.0737289 -28.17 -2.0759368 -28.18 -2.077368 -28.19 -2.0779209 -28.2 -2.077518 -28.21 -2.0761114 -28.22 -2.0736856 -28.23 -2.0702611 -28.24 -2.0658935 -28.25 -2.0606733 -28.26 -2.0547189 -28.27 -2.0481862 -28.28 -2.0412515 -28.29 -2.0340977 -28.3 -2.0269121 -28.31 -2.0198782 -28.32 -2.013168 -28.33 -2.0069348 -28.34 -2.0013071 -28.35 -1.996384 -28.36 -1.9922314 -28.37 -1.9888835 -28.38 -1.9863304 -28.39 -1.9845247 -28.4 -1.9834028 -28.41 -1.9828811 -28.42 -1.9828616 -28.43 -1.9832402 -28.44 -1.9839138 -28.45 -1.9847876 -28.46 -1.985782 -28.47 -1.9868379 -28.48 -1.987916 -28.49 -1.9889493 -28.5 -1.990041 -28.51 -1.9912468 -28.52 -1.9926451 -28.53 -1.9943315 -28.54 -1.996412 -28.55 -1.9989949 -28.56 -2.0021826 -28.57 -2.0060634 -28.58 -2.0107022 -28.59 -2.016134 -28.6 -2.022429 -28.61 -2.0294955 -28.62 -2.037228 -28.63 -2.0454882 -28.64 -2.0540961 -28.65 -2.0628357 -28.66 -2.0714615 -28.67 -2.0797073 -28.68 -2.0872972 -28.69 -2.0939557 -28.7 -2.0994204 -28.71 -2.1034569 -28.72 -2.1058439 -28.73 -2.1064218 -28.74 -2.1050913 -28.75 -2.1018122 -28.76 -2.0966067 -28.77 -2.0895591 -28.78 -2.0808134 -28.79 -2.0705686 -28.8 -2.0590705 -28.81 -2.0466033 -28.82 -2.0334847 -28.83 -2.0200541 -28.84 -2.0066314 -28.85 -1.99353 -28.86 -1.9810392 -28.87 -1.9694152 -28.88 -1.9588723 -28.89 -1.9495765 -28.9 -1.9416425 -28.91 -1.9351315 -28.92 -1.9300533 -28.93 -1.9263643 -28.94 -1.9239519 -28.95 -1.9227044 -28.96 -1.9224815 -28.97 -1.9231251 -28.98 -1.9244742 -28.99 -1.9263734 -29 -1.9286772 -29.01 -1.9312606 -29.02 -1.9340241 -29.03 -1.9368954 -29.04 -1.9398336 -29.05 -1.9427371 -29.06 -1.9457335 -29.07 -1.9488677 -29.08 -1.9521947 -29.09 -1.9557783 -29.1 -1.9596812 -29.11 -1.9639609 -29.12 -1.968659 -29.13 -1.9737971 -29.14 -1.9793719 -29.15 -1.9853517 -29.16 -1.9917151 -29.17 -1.9983429 -29.18 -2.0051026 -29.19 -2.011851 -29.2 -2.0184305 -29.21 -2.0246769 -29.22 -2.0304273 -29.23 -2.035529 -29.24 -2.039847 -29.25 -2.0432723 -29.26 -2.0457278 -29.27 -2.0471622 -29.28 -2.0475771 -29.29 -2.0470267 -29.3 -2.0455981 -29.31 -2.043415 -29.32 -2.0406324 -29.33 -2.0374288 -29.34 -2.0339991 -29.35 -2.0305445 -29.36 -2.0272636 -29.37 -2.024343 -29.38 -2.0219659 -29.39 -2.020287 -29.4 -2.0193774 -29.41 -2.0192952 -29.42 -2.0200574 -29.43 -2.0216399 -29.44 -2.0239801 -29.45 -2.0269809 -29.46 -2.0305165 -29.47 -2.0344402 -29.48 -2.0385913 -29.49 -2.0428037 -29.5 -2.0469018 -29.51 -2.0507435 -29.52 -2.0542054 -29.53 -2.0571896 -29.54 -2.0596277 -29.55 -2.0614829 -29.56 -2.062749 -29.57 -2.0634495 -29.58 -2.0636321 -29.59 -2.0633638 -29.6 -2.0627238 -29.61 -2.061837 -29.62 -2.0607613 -29.63 -2.0595559 -29.64 -2.0582586 -29.65 -2.0568765 -29.66 -2.0553793 -29.67 -2.0536952 -29.68 -2.0517074 -29.69 -2.0492521 -29.7 -2.0461193 -29.71 -2.0420546 -29.72 -2.0367788 -29.73 -2.0299263 -29.74 -2.0211238 -29.75 -2.0099856 -29.76 -1.9961102 -29.77 -1.9790881 -29.78 -1.9585089 -29.79 -1.9339681 -29.8 -1.905074 -29.81 -1.8714548 -29.82 -1.8327641 -29.83 -1.7886604 -29.84 -1.7388789 -29.85 -1.6832176 -29.86 -1.6214951 -29.87 -1.5535838 -29.88 -1.4794147 -29.89 -1.398983 -29.9 -1.3123534 -29.91 -1.219664 -29.92 -1.1211307 -29.93 -1.0170495 -29.94 -0.90779731 -29.95 -0.79382522 -29.96 -0.67566074 -29.97 -0.55390864 -29.98 -0.42924165 -29.99 -0.30239157 -30 -0.1741387 -& -@target G2.S4 -@type xy -0 0 -0.01 0.0021540856 -0.02 0.0041604372 -0.03 0.0058918795 -0.04 0.0072389252 -0.05 0.0081165528 -0.06 0.0084693813 -0.07 0.0082752769 -0.08 0.0075466714 -0.09 0.006329621 -0.1 0.0047010809 -0.11 0.0027641343 -0.12 0.00063944989 -0.13 -0.0015207518 -0.14 -0.0035749897 -0.15 -0.0053925326 -0.16 -0.0068580803 -0.17 -0.0078786666 -0.18 -0.0083893973 -0.19 -0.0083575574 -0.2 -0.0077844402 -0.21 -0.0067053374 -0.22 -0.0051873321 -0.23 -0.0033176156 -0.24 -0.0012254928 -0.25 0.00094590981 -0.26 0.0030581744 -0.27 0.0049788018 -0.28 0.0065875671 -0.29 0.0077837458 -0.3 0.0084921419 -0.31 0.0086673687 -0.32 0.0082961587 -0.33 0.007397814 -0.34 0.0060144406 -0.35 0.0042221541 -0.36 0.0021383029 -0.37 -0.00011705424 -0.38 -0.0024245941 -0.39 -0.004668086 -0.4 -0.0067421118 -0.41 -0.0085589266 -0.42 -0.010053887 -0.43 -0.011189273 -0.44 -0.011956197 -0.45 -0.012371763 -0.46 -0.012474166 -0.47 -0.012342827 -0.48 -0.012067901 -0.49 -0.011737248 -0.5 -0.01143539 -0.51 -0.01123482 -0.52 -0.011187796 -0.53 -0.011319683 -0.54 -0.011623472 -0.55 -0.012056891 -0.56 -0.012541772 -0.57 -0.012954948 -0.58 -0.013144106 -0.59 -0.012943187 -0.6 -0.012177186 -0.61 -0.010672662 -0.62 -0.0082704637 -0.63 -0.0048381989 -0.64 -0.00028201118 -0.65 0.0054428275 -0.66 0.012323747 -0.67 0.02028529 -0.68 0.029203602 -0.69 0.038863379 -0.7 0.048960198 -0.71 0.059165201 -0.72 0.06912453 -0.73 0.078466346 -0.74 0.086818292 -0.75 0.093825766 -0.76 0.099171371 -0.77 0.10259202 -0.78 0.10389544 -0.79 0.10293713 -0.8 0.099657376 -0.81 0.094190533 -0.82 0.086783625 -0.83 0.077723817 -0.84 0.06737739 -0.85 0.056174203 -0.86 0.044589361 -0.87 0.033120387 -0.88 0.02226389 -0.89 0.012491346 -0.9 0.0042412951 -0.91 -0.0020763966 -0.92 -0.0061813614 -0.93 -0.0080010734 -0.94 -0.0075117537 -0.95 -0.0048060605 -0.96 -8.9439968e-05 -0.97 0.0063290505 -0.98 0.014051445 -0.99 0.022610193 -1 0.031491327 -1.01 0.040158114 -1.02 0.0480503 -1.03 0.054605462 -1.04 0.059438701 -1.05 0.062214396 -1.06 0.062699993 -1.07 0.060777966 -1.08 0.056451684 -1.09 0.049844764 -1.1 0.041194855 -1.11 0.03084053 -1.12 0.019203509 -1.13 0.0067679432 -1.14 -0.0059305368 -1.15 -0.018318946 -1.16 -0.029900474 -1.17 -0.040234745 -1.18 -0.048958544 -1.19 -0.055805215 -1.2 -0.060618431 -1.21 -0.063360056 -1.22 -0.064111586 -1.23 -0.063069022 -1.24 -0.060528658 -1.25 -0.056848332 -1.26 -0.052547293 -1.27 -0.048140015 -1.28 -0.044117196 -1.29 -0.040943343 -1.3 -0.03902954 -1.31 -0.038709073 -1.32 -0.040216658 -1.33 -0.043674069 -1.34 -0.049085462 -1.35 -0.056328046 -1.36 -0.065186783 -1.37 -0.075271001 -1.38 -0.086061062 -1.39 -0.097039707 -1.4 -0.10765993 -1.41 -0.11737325 -1.42 -0.12566128 -1.43 -0.13206389 -1.44 -0.13620804 -1.45 -0.13782851 -1.46 -0.13678632 -1.47 -0.13303703 -1.48 -0.12664712 -1.49 -0.11804494 -1.5 -0.10766607 -1.51 -0.096032292 -1.52 -0.083743766 -1.53 -0.07144757 -1.54 -0.059806345 -1.55 -0.049466012 -1.56 -0.04102217 -1.57 -0.034990286 -1.58 -0.031784188 -1.59 -0.031877324 -1.6 -0.035246541 -1.61 -0.041806696 -1.62 -0.05136202 -1.63 -0.063575503 -1.64 -0.077984755 -1.65 -0.094024718 -1.66 -0.11105503 -1.67 -0.12838942 -1.68 -0.14533191 -1.69 -0.16120674 -1.7 -0.17528484 -1.71 -0.18703584 -1.72 -0.19608504 -1.73 -0.20216685 -1.74 -0.20515001 -1.75 -0.20504847 -1.76 -0.2020185 -1.77 -0.19634883 -1.78 -0.18844192 -1.79 -0.17879502 -1.8 -0.16797028 -1.81 -0.15657587 -1.82 -0.14526426 -1.83 -0.13464027 -1.84 -0.12522695 -1.85 -0.11746366 -1.86 -0.11169188 -1.87 -0.10814037 -1.88 -0.10691941 -1.89 -0.10802023 -1.9 -0.11132118 -1.91 -0.11659816 -1.92 -0.12356117 -1.93 -0.13183676 -1.94 -0.14095952 -1.95 -0.1504684 -1.96 -0.15994581 -1.97 -0.16900901 -1.98 -0.17733158 -1.99 -0.18465813 -2 -0.19081417 -2.01 -0.19571263 -2.02 -0.19935422 -2.03 -0.20181619 -2.04 -0.2032364 -2.05 -0.20385251 -2.06 -0.20396072 -2.07 -0.20383858 -2.08 -0.20376001 -2.09 -0.20397632 -2.1 -0.20469895 -2.11 -0.20608466 -2.12 -0.20822442 -2.13 -0.21113636 -2.14 -0.21476581 -2.15 -0.21899492 -2.16 -0.22362677 -2.17 -0.22838693 -2.18 -0.23299932 -2.19 -0.23717748 -2.2 -0.24064288 -2.21 -0.24314534 -2.22 -0.24448139 -2.23 -0.24450809 -2.24 -0.24315777 -2.25 -0.24044484 -2.26 -0.23645193 -2.27 -0.23134874 -2.28 -0.22545414 -2.29 -0.21911425 -2.3 -0.21270098 -2.31 -0.20660763 -2.32 -0.20122407 -2.33 -0.19691189 -2.34 -0.19398046 -2.35 -0.1926638 -2.36 -0.19310016 -2.37 -0.1953297 -2.38 -0.19929251 -2.39 -0.2047064 -2.4 -0.2111401 -2.41 -0.21808902 -2.42 -0.22493878 -2.43 -0.23098635 -2.44 -0.2354628 -2.45 -0.23756066 -2.46 -0.23646459 -2.47 -0.2313817 -2.48 -0.22155336 -2.49 -0.20617462 -2.5 -0.18458223 -2.51 -0.15664141 -2.52 -0.12214296 -2.53 -0.081052054 -2.54 -0.033515758 -2.55 0.02013666 -2.56 0.079397341 -2.57 0.1435918 -2.58 0.21189212 -2.59 0.28334171 -2.6 0.35688105 -2.61 0.43131754 -2.62 0.50532274 -2.63 0.57767823 -2.64 0.64718317 -2.65 0.71267699 -2.66 0.77307274 -2.67 0.8273622 -2.68 0.8746297 -2.69 0.91413757 -2.7 0.9452827 -2.71 0.96761484 -2.72 0.98021289 -2.73 0.983484 -2.74 0.97755829 -2.75 0.96265327 -2.76 0.9391197 -2.77 0.90745634 -2.78 0.86827031 -2.79 0.82228822 -2.8 0.77034381 -2.81 0.71333309 -2.82 0.65221862 -2.83 0.58791684 -2.84 0.52160426 -2.85 0.45439031 -2.86 0.387291 -2.87 0.32127151 -2.88 0.25723877 -2.89 0.19602179 -2.9 0.13835316 -2.91 0.084857367 -2.92 0.036036037 -2.93 -0.0077396825 -2.94 -0.046078196 -2.95 -0.078844195 -2.96 -0.10627381 -2.97 -0.12861645 -2.98 -0.14620432 -2.99 -0.15947635 -3 -0.16896515 -3.01 -0.17527552 -3.02 -0.17905988 -3.03 -0.18099743 -3.04 -0.18176708 -3.05 -0.18202792 -3.06 -0.18242946 -3.07 -0.18352157 -3.08 -0.1857385 -3.09 -0.1894039 -3.1 -0.19472713 -3.11 -0.20179871 -3.12 -0.21059177 -3.13 -0.22096717 -3.14 -0.23268584 -3.15 -0.24542134 -3.16 -0.25878135 -3.17 -0.27230501 -3.18 -0.28550081 -3.19 -0.29790384 -3.2 -0.3090909 -3.21 -0.31869199 -3.22 -0.32640689 -3.23 -0.33202189 -3.24 -0.33541867 -3.25 -0.33658099 -3.26 -0.33559511 -3.27 -0.33264383 -3.28 -0.3279567 -3.29 -0.32191071 -3.3 -0.3149754 -3.31 -0.3076032 -3.32 -0.30024917 -3.33 -0.29335798 -3.34 -0.28734278 -3.35 -0.28256526 -3.36 -0.27932089 -3.37 -0.27782599 -3.38 -0.27820844 -3.39 -0.28054444 -3.4 -0.28479646 -3.41 -0.29075969 -3.42 -0.29816977 -3.43 -0.30672668 -3.44 -0.31608206 -3.45 -0.32585339 -3.46 -0.33564026 -3.47 -0.34504045 -3.48 -0.35366248 -3.49 -0.36113839 -3.5 -0.36710653 -3.51 -0.37120977 -3.52 -0.37318587 -3.53 -0.37286131 -3.54 -0.37004533 -3.55 -0.36456846 -3.56 -0.35627265 -3.57 -0.34500169 -3.58 -0.33059134 -3.59 -0.31285998 -3.6 -0.29160297 -3.61 -0.26656933 -3.62 -0.23739372 -3.63 -0.20371494 -3.64 -0.16541092 -3.65 -0.1221959 -3.66 -0.073805917 -3.67 -0.020020885 -3.68 0.039310667 -3.69 0.10424974 -3.7 0.17474158 -3.71 0.25059578 -3.72 0.33146505 -3.73 0.41688383 -3.74 0.50626534 -3.75 0.59842624 -3.76 0.69228462 -3.77 0.78660134 -3.78 0.87999607 -3.79 0.97099576 -3.8 1.0580481 -3.81 1.1395777 -3.82 1.2140239 -3.83 1.2798872 -3.84 1.3356768 -3.85 1.3795838 -3.86 1.4109514 -3.87 1.4291832 -3.88 1.4337919 -3.89 1.424558 -3.9 1.4015821 -3.91 1.3652301 -3.92 1.316169 -3.93 1.2553276 -3.94 1.1838849 -3.95 1.1031787 -3.96 1.0145093 -3.97 0.91976894 -3.98 0.82091354 -3.99 0.71965784 -4 0.61767451 -4.01 0.51654944 -4.02 0.41776537 -4.03 0.3226071 -4.04 0.23217952 -4.05 0.14738364 -4.06 0.068904913 -4.07 -0.0025998866 -4.08 -0.066708404 -4.09 -0.12369823 -4.1 -0.17372063 -4.11 -0.21705493 -4.12 -0.25409702 -4.13 -0.2853289 -4.14 -0.31129114 -4.15 -0.33255285 -4.16 -0.34968663 -4.17 -0.36324792 -4.18 -0.37373225 -4.19 -0.38151584 -4.2 -0.3871537 -4.21 -0.3910095 -4.22 -0.39336128 -4.23 -0.3944342 -4.24 -0.3944035 -4.25 -0.39340867 -4.26 -0.39156009 -4.27 -0.38895098 -4.28 -0.38566844 -4.29 -0.3817976 -4.3 -0.37740965 -4.31 -0.37263174 -4.32 -0.36758581 -4.33 -0.36239144 -4.34 -0.35716917 -4.35 -0.35203466 -4.36 -0.34708909 -4.37 -0.34241349 -4.38 -0.33805655 -4.39 -0.33403035 -4.4 -0.33030087 -4.41 -0.32678862 -4.42 -0.32334495 -4.43 -0.31977345 -4.44 -0.31584105 -4.45 -0.3112796 -4.46 -0.30579764 -4.47 -0.29909151 -4.48 -0.29085736 -4.49 -0.2808077 -4.5 -0.26868652 -4.51 -0.25428118 -4.52 -0.23737458 -4.53 -0.21784448 -4.54 -0.19574534 -4.55 -0.17119477 -4.56 -0.14435511 -4.57 -0.115466 -4.58 -0.084838082 -4.59 -0.052845539 -4.6 -0.01991429 -4.61 0.013491328 -4.62 0.0468822 -4.63 0.079743959 -4.64 0.11152467 -4.65 0.14173589 -4.66 0.16995902 -4.67 0.19579726 -4.68 0.21890415 -4.69 0.23898737 -4.7 0.25581161 -4.71 0.26919957 -4.72 0.27902961 -4.73 0.28523218 -4.74 0.28777507 -4.75 0.2865657 -4.76 0.28165459 -4.77 0.27327562 -4.78 0.2615472 -4.79 0.24660897 -4.8 0.22862031 -4.81 0.20775801 -4.82 0.18421699 -4.83 0.1582117 -4.84 0.12997656 -4.85 0.09976827 -4.86 0.067838968 -4.87 0.034486113 -4.88 0.00011971062 -4.89 -0.034891053 -4.9 -0.07016629 -4.91 -0.10531096 -4.92 -0.13992239 -4.93 -0.17359957 -4.94 -0.20595281 -4.95 -0.23661629 -4.96 -0.26525781 -4.97 -0.29155579 -4.98 -0.31520456 -4.99 -0.33610641 -5 -0.35424271 -5.01 -0.36962998 -5.02 -0.38236661 -5.03 -0.39262962 -5.04 -0.40066978 -5.05 -0.40680037 -5.06 -0.41138427 -5.07 -0.41481556 -5.08 -0.41750295 -5.09 -0.41985666 -5.1 -0.4222798 -5.11 -0.42510236 -5.12 -0.42857055 -5.13 -0.43284449 -5.14 -0.43799011 -5.15 -0.44396759 -5.16 -0.45063 -5.17 -0.45772724 -5.18 -0.4649131 -5.19 -0.47175501 -5.2 -0.4777251 -5.21 -0.48219557 -5.22 -0.48464977 -5.23 -0.48453913 -5.24 -0.48135581 -5.25 -0.47465506 -5.26 -0.4640838 -5.27 -0.449397 -5.28 -0.43047685 -5.29 -0.40734256 -5.3 -0.38015945 -5.31 -0.34922296 -5.32 -0.31479586 -5.33 -0.27774054 -5.34 -0.23875425 -5.35 -0.19861563 -5.36 -0.15816571 -5.37 -0.11826903 -5.38 -0.079782948 -5.39 -0.043530351 -5.4 -0.010276138 -5.41 0.019299804 -5.42 0.044621844 -5.43 0.06494153 -5.44 0.080123017 -5.45 0.090084652 -5.46 0.09481115 -5.47 0.094413646 -5.48 0.089122358 -5.49 0.07927268 -5.5 0.065286232 -5.51 0.047650574 -5.52 0.026898649 -5.53 0.0035865687 -5.54 -0.021780335 -5.55 -0.048600927 -5.56 -0.076312978 -5.57 -0.10445374 -5.58 -0.13262565 -5.59 -0.16049193 -5.6 -0.18777912 -5.61 -0.21427394 -5.62 -0.23981735 -5.63 -0.26429821 -5.64 -0.28764357 -5.65 -0.30978104 -5.66 -0.33065542 -5.67 -0.35028039 -5.68 -0.36863986 -5.69 -0.38569015 -5.7 -0.40136736 -5.71 -0.41558267 -5.72 -0.42822155 -5.73 -0.43914196 -5.74 -0.44817711 -5.75 -0.4551384 -5.76 -0.45979634 -5.77 -0.46182176 -5.78 -0.46104742 -5.79 -0.45729639 -5.8 -0.45035192 -5.81 -0.44000716 -5.82 -0.42607109 -5.83 -0.40837062 -5.84 -0.38675356 -5.85 -0.3610904 -5.86 -0.33127649 -5.87 -0.29723296 -5.88 -0.25871833 -5.89 -0.2157736 -5.9 -0.16854516 -5.91 -0.1170981 -5.92 -0.061535731 -5.93 -0.0020113031 -5.94 0.061264774 -5.95 0.12801915 -5.96 0.19790695 -5.97 0.27050639 -5.98 0.34531344 -5.99 0.4217555 -6 0.49910846 -6.01 0.57653169 -6.02 0.65315784 -6.03 0.72806147 -6.04 0.80026884 -6.05 0.86876577 -6.06 0.93251808 -6.07 0.99050535 -6.08 1.0417444 -6.09 1.0853124 -6.1 1.1202033 -6.11 1.1454876 -6.12 1.1607376 -6.13 1.1657635 -6.14 1.1603813 -6.15 1.1446041 -6.16 1.1186446 -6.17 1.0829176 -6.18 1.0380356 -6.19 0.9847818 -6.2 0.9240997 -6.21 0.8570248 -6.22 0.78467295 -6.23 0.70837689 -6.24 0.62959739 -6.25 0.54959106 -6.26 0.46956615 -6.27 0.39065038 -6.28 0.31386516 -6.29 0.24010309 -6.3 0.17011287 -6.31 0.10449062 -6.32 0.043693042 -6.33 -0.011865965 -6.34 -0.061886255 -6.35 -0.10659281 -6.36 -0.1460423 -6.37 -0.1803506 -6.38 -0.20966356 -6.39 -0.23413061 -6.4 -0.25387677 -6.41 -0.26898336 -6.42 -0.27946611 -6.43 -0.28526834 -6.44 -0.28618625 -6.45 -0.28176267 -6.46 -0.27194412 -6.47 -0.25642401 -6.48 -0.23484154 -6.49 -0.20684166 -6.5 -0.17210873 -6.51 -0.13039938 -6.52 -0.081575017 -6.53 -0.025634465 -6.54 0.03726037 -6.55 0.10679 -6.56 0.18263223 -6.57 0.263776 -6.58 0.34909026 -6.59 0.43738404 -6.6 0.52730156 -6.61 0.61734725 -6.62 0.7059284 -6.63 0.79139599 -6.64 0.87208681 -6.65 0.94638547 -6.66 1.0127613 -6.67 1.0694495 -6.68 1.1150896 -6.69 1.1490683 -6.7 1.1707211 -6.71 1.1796832 -6.72 1.175825 -6.73 1.1593348 -6.74 1.1306427 -6.75 1.090461 -6.76 1.0397097 -6.77 0.97951365 -6.78 0.91102736 -6.79 0.83552043 -6.8 0.75485549 -6.81 0.67052295 -6.82 0.58394922 -6.83 0.49648329 -6.84 0.40936765 -6.85 0.32370896 -6.86 0.24045933 -6.87 0.16040502 -6.88 0.084159353 -6.89 0.012182077 -6.9 -0.05496467 -6.91 -0.1173786 -6.92 -0.17511513 -6.93 -0.22827723 -6.94 -0.2770405 -6.95 -0.3216293 -6.96 -0.36229584 -6.97 -0.39929632 -6.98 -0.432876 -6.99 -0.46325662 -7 -0.49062646 -7.01 -0.51500668 -7.02 -0.53658389 -7.03 -0.55549966 -7.04 -0.57181802 -7.05 -0.58558201 -7.06 -0.59683492 -7.07 -0.60563081 -7.08 -0.61204695 -7.09 -0.61619208 -7.1 -0.61821521 -7.11 -0.61830955 -7.12 -0.61667064 -7.13 -0.6136021 -7.14 -0.60947591 -7.15 -0.60465634 -7.16 -0.59950754 -7.17 -0.59439383 -7.18 -0.58966565 -7.19 -0.58564505 -7.2 -0.58261115 -7.21 -0.5807901 -7.22 -0.58034338 -7.23 -0.58139001 -7.24 -0.58397186 -7.25 -0.58798957 -7.26 -0.59327488 -7.27 -0.59962653 -7.28 -0.60679277 -7.29 -0.61448401 -7.3 -0.62238691 -7.31 -0.63017977 -7.32 -0.63754702 -7.33 -0.64419346 -7.34 -0.64984662 -7.35 -0.65424003 -7.36 -0.65720706 -7.37 -0.65867534 -7.38 -0.65859157 -7.39 -0.65695269 -7.4 -0.65379879 -7.41 -0.64920471 -7.42 -0.64327004 -7.43 -0.63610667 -7.44 -0.62782716 -7.45 -0.61853257 -7.46 -0.60827572 -7.47 -0.59709509 -7.48 -0.58503874 -7.49 -0.57207379 -7.5 -0.55812927 -7.51 -0.54309983 -7.52 -0.52685212 -7.53 -0.50923654 -7.54 -0.4900965 -7.55 -0.46928337 -7.56 -0.4466703 -7.57 -0.42212671 -7.58 -0.39556451 -7.59 -0.36707609 -7.6 -0.33678453 -7.61 -0.30486798 -7.62 -0.27158351 -7.63 -0.23726323 -7.64 -0.20231158 -7.65 -0.16719538 -7.66 -0.13243194 -7.67 -0.098575342 -7.68 -0.066225331 -7.69 -0.03604239 -7.7 -0.0085921527 -7.71 0.015665148 -7.72 0.036276764 -7.73 0.052862496 -7.74 0.065127303 -7.75 0.07287099 -7.76 0.075994776 -7.77 0.074505427 -7.78 0.068512843 -7.79 0.058212778 -7.8 0.043826403 -7.81 0.025748903 -7.82 0.0046288621 -7.83 -0.018990596 -7.84 -0.044519189 -7.85 -0.071332932 -7.86 -0.098787029 -7.87 -0.12622904 -7.88 -0.15300866 -7.89 -0.17849148 -7.9 -0.20206009 -7.91 -0.2230878 -7.92 -0.24085085 -7.93 -0.25500885 -7.94 -0.26511573 -7.95 -0.27077928 -7.96 -0.27166204 -7.97 -0.2674869 -7.98 -0.25804192 -7.99 -0.24318188 -8 -0.2228366 -8.01 -0.19701098 -8.02 -0.16579358 -8.03 -0.12897672 -8.04 -0.087237877 -8.05 -0.040988654 -8.06 0.0092934429 -8.07 0.063037275 -8.08 0.11958063 -8.09 0.17817582 -8.1 0.23800006 -8.11 0.29816617 -8.12 0.3577354 -8.13 0.41573947 -8.14 0.47101512 -8.15 0.52257638 -8.16 0.56954527 -8.17 0.61105881 -8.18 0.64632978 -8.19 0.67467798 -8.2 0.69554995 -8.21 0.70853171 -8.22 0.7133681 -8.23 0.70996659 -8.24 0.69840656 -8.25 0.67870107 -8.26 0.65127445 -8.27 0.61697706 -8.28 0.5766015 -8.29 0.531008 -8.3 0.48115714 -8.31 0.4280865 -8.32 0.37288266 -8.33 0.31665856 -8.34 0.26052523 -8.35 0.20556872 -8.36 0.15288399 -8.37 0.10359995 -8.38 0.058526383 -8.39 0.018384371 -8.4 -0.016184492 -8.41 -0.044660945 -8.42 -0.066652107 -8.43 -0.081892456 -8.44 -0.0902412 -8.45 -0.091680856 -8.46 -0.086309369 -8.47 -0.074309663 -8.48 -0.055738191 -8.49 -0.031186004 -8.5 -0.0013111811 -8.51 0.033308829 -8.52 0.072029768 -8.53 0.11414864 -8.54 0.15891135 -8.55 0.20552125 -8.56 0.25314709 -8.57 0.30093091 -8.58 0.34799902 -8.59 0.39336504 -8.6 0.43610535 -8.61 0.47540284 -8.62 0.51045925 -8.63 0.54052116 -8.64 0.56490516 -8.65 0.58301641 -8.66 0.5943639 -8.67 0.59857608 -8.68 0.5954165 -8.69 0.58479539 -8.7 0.56660676 -8.71 0.54101079 -8.72 0.5086165 -8.73 0.47010575 -8.74 0.42620988 -8.75 0.37779583 -8.76 0.32584927 -8.77 0.27145059 -8.78 0.21574851 -8.79 0.15993134 -8.8 0.10519496 -8.81 0.052766626 -8.82 0.0038947289 -8.83 -0.040376688 -8.84 -0.079244716 -8.85 -0.11197678 -8.86 -0.13800867 -8.87 -0.15695831 -8.88 -0.1686347 -8.89 -0.17304126 -8.9 -0.1703721 -8.91 -0.16100193 -8.92 -0.1454441 -8.93 -0.1242888 -8.94 -0.098368761 -8.95 -0.068827099 -8.96 -0.036638654 -8.97 -0.0028050686 -8.98 0.031674436 -8.99 0.065831607 -9 0.098754657 -9.01 0.12961131 -9.02 0.15766657 -9.03 0.18229451 -9.04 0.20290901 -9.05 0.21895132 -9.06 0.23041584 -9.07 0.23719303 -9.08 0.23928263 -9.09 0.23678384 -9.1 0.22988068 -9.11 0.21882913 -9.12 0.20393954 -9.13 0.18556573 -9.14 0.1640856 -9.15 0.1398765 -9.16 0.11325892 -9.17 0.084752158 -9.18 0.054770734 -9.19 0.023686677 -9.2 -0.0081440057 -9.21 -0.040379779 -9.22 -0.07269301 -9.23 -0.10476805 -9.24 -0.13629933 -9.25 -0.16699065 -9.26 -0.19654829 -9.27 -0.22462298 -9.28 -0.25094332 -9.29 -0.27529978 -9.3 -0.29746033 -9.31 -0.31722139 -9.32 -0.33441081 -9.33 -0.34889828 -9.34 -0.36060035 -9.35 -0.36949094 -9.36 -0.37559436 -9.37 -0.37900487 -9.38 -0.37983702 -9.39 -0.37830874 -9.4 -0.37484086 -9.41 -0.369794 -9.42 -0.36357004 -9.43 -0.35660438 -9.44 -0.34934789 -9.45 -0.34225277 -9.46 -0.33575707 -9.47 -0.33026199 -9.48 -0.32612255 -9.49 -0.32364638 -9.5 -0.3231393 -9.51 -0.32461542 -9.52 -0.32806475 -9.53 -0.33338658 -9.54 -0.34038022 -9.55 -0.34874949 -9.56 -0.35811206 -9.57 -0.36801413 -9.58 -0.37794287 -9.59 -0.38734799 -9.6 -0.39566191 -9.61 -0.40218409 -9.62 -0.40641952 -9.63 -0.40791049 -9.64 -0.40624969 -9.65 -0.40111724 -9.66 -0.39229449 -9.67 -0.37967334 -9.68 -0.36326325 -9.69 -0.34319256 -9.7 -0.31970527 -9.71 -0.29315525 -9.72 -0.263917 -9.73 -0.23260832 -9.74 -0.19991694 -9.75 -0.16651785 -9.76 -0.13309639 -9.77 -0.100341 -9.78 -0.068919528 -9.79 -0.039461199 -9.8 -0.012536759 -9.81 0.011359023 -9.82 0.031821664 -9.83 0.048444508 -9.84 0.06099002 -9.85 0.069491799 -9.86 0.074067472 -9.87 0.074902695 -9.88 0.072295909 -9.89 0.066652364 -9.9 0.058474017 -9.91 0.048347764 -9.92 0.036932537 -9.93 0.024944515 -9.94 0.013159765 -9.95 0.0024375383 -9.96 -0.0064026057 -9.97 -0.012599302 -9.98 -0.01540823 -9.99 -0.014132973 -10 -0.0081414005 -10.01 0.0031190016 -10.02 0.020106727 -10.03 0.043173052 -10.04 0.072550838 -10.05 0.10836792 -10.06 0.15079067 -10.07 0.1996125 -10.08 0.25425635 -10.09 0.31423206 -10.1 0.37890941 -10.11 0.44752571 -10.12 0.51919554 -10.13 0.59292346 -10.14 0.66762127 -10.15 0.74212589 -10.16 0.81522587 -10.17 0.88555451 -10.18 0.9517162 -10.19 1.0125818 -10.2 1.0670092 -10.21 1.113926 -10.22 1.1523744 -10.23 1.1815139 -10.24 1.200664 -10.25 1.2093099 -10.26 1.2071161 -10.27 1.1939307 -10.28 1.1696338 -10.29 1.1341938 -10.3 1.0883625 -10.31 1.0329504 -10.32 0.9687306 -10.33 0.89661107 -10.34 0.81761866 -10.35 0.73285663 -10.36 0.6434899 -10.37 0.55071029 -10.38 0.45571576 -10.39 0.35968698 -10.4 0.26379743 -10.41 0.16918012 -10.42 0.076778861 -10.43 -0.012572158 -10.44 -0.098157109 -10.45 -0.17938582 -10.46 -0.25579635 -10.47 -0.32705204 -10.48 -0.39293908 -10.49 -0.45335596 -10.5 -0.50828848 -10.51 -0.55771893 -10.52 -0.60170323 -10.53 -0.64074405 -10.54 -0.67512076 -10.55 -0.70513981 -10.56 -0.73112302 -10.57 -0.75339296 -10.58 -0.77226629 -10.59 -0.78804889 -10.6 -0.80101078 -10.61 -0.81140693 -10.62 -0.81945524 -10.63 -0.82521326 -10.64 -0.82902154 -10.65 -0.83100825 -10.66 -0.83129426 -10.67 -0.82998621 -10.68 -0.82716968 -10.69 -0.82293024 -10.7 -0.81733229 -10.71 -0.81047382 -10.72 -0.8024219 -10.73 -0.79327622 -10.74 -0.78307328 -10.75 -0.77196049 -10.76 -0.76006684 -10.77 -0.74750011 -10.78 -0.73438091 -10.79 -0.7208339 -10.8 -0.70697717 -10.81 -0.69293109 -10.82 -0.67881289 -10.83 -0.66473169 -10.84 -0.65079006 -10.85 -0.63709322 -10.86 -0.62372184 -10.87 -0.61073087 -10.88 -0.59816296 -10.89 -0.58604084 -10.9 -0.57436658 -10.91 -0.5631187 -10.92 -0.55225043 -10.93 -0.54168832 -10.94 -0.53133142 -10.95 -0.52104943 -10.96 -0.51067646 -10.97 -0.50000115 -10.98 -0.48880539 -10.99 -0.47684724 -11 -0.46386388 -11.01 -0.44957739 -11.02 -0.43370071 -11.03 -0.41594604 -11.04 -0.39603404 -11.05 -0.3737008 -11.06 -0.34870998 -11.07 -0.3208307 -11.08 -0.28979333 -11.09 -0.25560273 -11.1 -0.21830097 -11.11 -0.1779557 -11.12 -0.13471778 -11.13 -0.088825007 -11.14 -0.040601747 -11.15 0.0095419773 -11.16 0.061116175 -11.17 0.11355825 -11.18 0.16624468 -11.19 0.21843908 -11.2 0.26940357 -11.21 0.31842691 -11.22 0.36480893 -11.23 0.40788323 -11.24 0.44703752 -11.25 0.48173344 -11.26 0.51152437 -11.27 0.5360733 -11.28 0.55516397 -11.29 0.56871055 -11.3 0.57659784 -11.31 0.57902178 -11.32 0.57648679 -11.33 0.56950913 -11.34 0.55867117 -11.35 0.5446483 -11.36 0.52818843 -11.37 0.51008846 -11.38 0.4911704 -11.39 0.47225432 -11.4 0.45413232 -11.41 0.43759371 -11.42 0.42337318 -11.43 0.41201214 -11.44 0.40389667 -11.45 0.39931769 -11.46 0.39842614 -11.47 0.40122819 -11.48 0.40758832 -11.49 0.41723474 -11.5 0.42976913 -11.51 0.44468331 -11.52 0.4613825 -11.53 0.479182 -11.54 0.49729964 -11.55 0.51494792 -11.56 0.53138606 -11.57 0.54590284 -11.58 0.5578394 -11.59 0.5666078 -11.6 0.571709 -11.61 0.57274698 -11.62 0.56943742 -11.63 0.5616001 -11.64 0.54908603 -11.65 0.53188923 -11.66 0.51042835 -11.67 0.48500599 -11.68 0.45601188 -11.69 0.42390844 -11.7 0.38921235 -11.71 0.35247875 -11.72 0.31428263 -11.73 0.27520191 -11.74 0.23580176 -11.75 0.19663346 -11.76 0.15824778 -11.77 0.12107118 -11.78 0.085468783 -11.79 0.051741277 -11.8 0.020120168 -11.81 -0.0092330506 -11.82 -0.036223317 -11.83 -0.060817952 -11.84 -0.083039909 -11.85 -0.10296008 -11.86 -0.12067551 -11.87 -0.13624652 -11.88 -0.149908 -11.89 -0.16187 -11.9 -0.17230266 -11.91 -0.1813652 -11.92 -0.18920284 -11.93 -0.19593986 -11.94 -0.20167503 -11.95 -0.20648066 -11.96 -0.21039897 -11.97 -0.21344633 -11.98 -0.21557881 -11.99 -0.21676055 -12 -0.21697125 -12.01 -0.21614523 -12.02 -0.21421256 -12.03 -0.21110147 -12.04 -0.206738 -12.05 -0.20107654 -12.06 -0.19408069 -12.07 -0.18573532 -12.08 -0.17605071 -12.09 -0.16503826 -12.1 -0.15273357 -12.11 -0.13930399 -12.12 -0.12488404 -12.13 -0.10962798 -12.14 -0.093714722 -12.15 -0.077339994 -12.16 -0.060711457 -12.17 -0.044044199 -12.18 -0.027552098 -12.19 -0.011442107 -12.2 0.00408909 -12.21 0.018814631 -12.22 0.032625115 -12.23 0.045420071 -12.24 0.057130926 -12.25 0.067729751 -12.26 0.077230697 -12.27 0.085691249 -12.28 0.093209099 -12.29 0.099920744 -12.3 0.10599807 -12.31 0.11163899 -12.32 0.11706892 -12.33 0.12254554 -12.34 0.12831386 -12.35 0.13460579 -12.36 0.14163725 -12.37 0.14959834 -12.38 0.15864437 -12.39 0.16888907 -12.4 0.18039769 -12.41 0.19318264 -12.42 0.2071984 -12.43 0.22237421 -12.44 0.23852924 -12.45 0.25540829 -12.46 0.27272933 -12.47 0.29017875 -12.48 0.30741149 -12.49 0.3240606 -12.5 0.33974927 -12.51 0.35410203 -12.52 0.36675852 -12.53 0.37738484 -12.54 0.38562992 -12.55 0.39118479 -12.56 0.39391506 -12.57 0.39374903 -12.58 0.39064302 -12.59 0.38462613 -12.6 0.3757977 -12.61 0.36432544 -12.62 0.35043961 -12.63 0.3344249 -12.64 0.31661132 -12.65 0.29735436 -12.66 0.27703069 -12.67 0.25606738 -12.68 0.23487953 -12.69 0.21382573 -12.7 0.19322834 -12.71 0.17336362 -12.72 0.15445161 -12.73 0.13664832 -12.74 0.12004189 -12.75 0.10464935 -12.76 0.090417214 -12.77 0.077248329 -12.78 0.064946384 -12.79 0.053217035 -12.8 0.041767923 -12.81 0.030275299 -12.82 0.01839635 -12.83 0.0057821628 -12.84 -0.0079089544 -12.85 -0.022998914 -12.86 -0.039777788 -12.87 -0.058493206 -12.88 -0.079393177 -12.89 -0.10266791 -12.9 -0.12831037 -12.91 -0.15629213 -12.92 -0.18654153 -12.93 -0.21892136 -12.94 -0.25323592 -12.95 -0.28923388 -12.96 -0.32661784 -12.97 -0.36505068 -12.98 -0.40416618 -12.99 -0.44357318 -13 -0.48285113 -13.01 -0.52157314 -13.02 -0.55935067 -13.03 -0.59580885 -13.04 -0.6305948 -13.05 -0.66338197 -13.06 -0.69387256 -13.07 -0.72180167 -13.08 -0.74693458 -13.09 -0.76907622 -13.1 -0.78804056 -13.11 -0.80359333 -13.12 -0.81560904 -13.13 -0.8241371 -13.14 -0.82913251 -13.15 -0.83057624 -13.16 -0.82846791 -13.17 -0.82284317 -13.18 -0.81374583 -13.19 -0.8012686 -13.2 -0.78551056 -13.21 -0.76661181 -13.22 -0.74468793 -13.23 -0.71984714 -13.24 -0.69250492 -13.25 -0.66292997 -13.26 -0.63142774 -13.27 -0.59833211 -13.28 -0.56400616 -13.29 -0.52883483 -13.3 -0.4932229 -13.31 -0.45758218 -13.32 -0.42232974 -13.33 -0.38788049 -13.34 -0.35473768 -13.35 -0.32321532 -13.36 -0.29364062 -13.37 -0.26630846 -13.38 -0.24146238 -13.39 -0.21927145 -13.4 -0.19985568 -13.41 -0.1832721 -13.42 -0.16951613 -13.43 -0.15852092 -13.44 -0.15016494 -13.45 -0.14439315 -13.46 -0.14089165 -13.47 -0.13935323 -13.48 -0.13949725 -13.49 -0.14103358 -13.5 -0.14367121 -13.51 -0.14712498 -13.52 -0.15112516 -13.53 -0.15542338 -13.54 -0.15979898 -13.55 -0.16405768 -13.56 -0.16802268 -13.57 -0.17154582 -13.58 -0.17452591 -13.59 -0.17687246 -13.6 -0.17850101 -13.61 -0.17932631 -13.62 -0.17925509 -13.63 -0.17817492 -13.64 -0.17594865 -13.65 -0.17240734 -13.66 -0.16734591 -13.67 -0.16048135 -13.68 -0.15145109 -13.69 -0.13999011 -13.7 -0.12577628 -13.71 -0.10845197 -13.72 -0.087659126 -13.73 -0.06305384 -13.74 -0.034325662 -13.75 -0.0012141828 -13.76 0.03647293 -13.77 0.078842208 -13.78 0.12592301 -13.79 0.17779212 -13.8 0.23405766 -13.81 0.29422906 -13.82 0.35778469 -13.83 0.42407509 -13.84 0.49233351 -13.85 0.56168857 -13.86 0.63118356 -13.87 0.69979735 -13.88 0.7664735 -13.89 0.83014044 -13.9 0.88952186 -13.91 0.94360323 -13.92 0.99157007 -13.93 1.0326453 -13.94 1.066168 -13.95 1.0916276 -13.96 1.1086821 -13.97 1.1171565 -13.98 1.1170496 -13.99 1.1085449 -14 1.0919863 -14.01 1.0676822 -14.02 1.0362374 -14.03 0.99861502 -14.04 0.95572733 -14.05 0.90845159 -14.06 0.85767948 -14.07 0.80429891 -14.08 0.74917088 -14.09 0.69308798 -14.1 0.63676724 -14.11 0.58083518 -14.12 0.52583484 -14.13 0.47221822 -14.14 0.42026814 -14.15 0.37011992 -14.16 0.32183646 -14.17 0.27539333 -14.18 0.23069237 -14.19 0.18757841 -14.2 0.14585932 -14.21 0.10532188 -14.22 0.06575043 -14.23 0.026946584 -14.24 -0.011254659 -14.25 -0.048991264 -14.26 -0.086363906 -14.27 -0.12339707 -14.28 -0.16006258 -14.29 -0.19627926 -14.3 -0.23191932 -14.31 -0.26681554 -14.32 -0.30076903 -14.33 -0.33355839 -14.34 -0.36494954 -14.35 -0.39466507 -14.36 -0.42240269 -14.37 -0.44803661 -14.38 -0.47137557 -14.39 -0.492253 -14.4 -0.51052503 -14.41 -0.52607253 -14.42 -0.53879781 -14.43 -0.54862109 -14.44 -0.55547347 -14.45 -0.55929575 -14.46 -0.55999243 -14.47 -0.55736858 -14.48 -0.55148632 -14.49 -0.54230935 -14.5 -0.52975757 -14.51 -0.51374988 -14.52 -0.49420718 -14.53 -0.47105757 -14.54 -0.44424726 -14.55 -0.41374976 -14.56 -0.37957504 -14.57 -0.34176411 -14.58 -0.30030088 -14.59 -0.25544982 -14.6 -0.2075697 -14.61 -0.15699975 -14.62 -0.10415452 -14.63 -0.049517512 -14.64 0.0063635963 -14.65 0.06288896 -14.66 0.11942002 -14.67 0.17529668 -14.68 0.22985268 -14.69 0.2823642 -14.7 0.33212494 -14.71 0.3786697 -14.72 0.42154425 -14.73 0.46039307 -14.74 0.49495952 -14.75 0.52510155 -14.76 0.55079319 -14.77 0.57212523 -14.78 0.58929838 -14.79 0.60260805 -14.8 0.6123944 -14.81 0.61900317 -14.82 0.6231071 -14.83 0.62522015 -14.84 0.62582456 -14.85 0.62536603 -14.86 0.62422755 -14.87 0.62271359 -14.88 0.62103219 -14.89 0.61928359 -14.9 0.6174553 -14.91 0.61542095 -14.92 0.61289318 -14.93 0.6095282 -14.94 0.60489788 -14.95 0.59851232 -14.96 0.58984629 -14.97 0.57836564 -14.98 0.5635516 -14.99 0.54492871 -15 0.52208909 -15.01 0.49471334 -15.02 0.46259035 -15.03 0.42541937 -15.04 0.38333993 -15.05 0.33666381 -15.06 0.28574494 -15.07 0.23103476 -15.08 0.1730933 -15.09 0.1125691 -15.1 0.050178315 -15.11 -0.013318217 -15.12 -0.077140946 -15.13 -0.14051679 -15.14 -0.20264261 -15.15 -0.26276807 -15.16 -0.32030595 -15.17 -0.3747631 -15.18 -0.42573057 -15.19 -0.47290675 -15.2 -0.51609623 -15.21 -0.5552084 -15.22 -0.59024754 -15.23 -0.62130138 -15.24 -0.64852934 -15.25 -0.6720936 -15.26 -0.6921764 -15.27 -0.70912458 -15.28 -0.72327749 -15.29 -0.73488608 -15.3 -0.74416873 -15.31 -0.75130675 -15.32 -0.7564416 -15.33 -0.75966742 -15.34 -0.76103265 -15.35 -0.76055075 -15.36 -0.75818464 -15.37 -0.75381184 -15.38 -0.74738355 -15.39 -0.73890728 -15.4 -0.72832876 -15.41 -0.71562379 -15.42 -0.70080715 -15.43 -0.68392715 -15.44 -0.66507923 -15.45 -0.64440517 -15.46 -0.62209124 -15.47 -0.59836485 -15.48 -0.57346813 -15.49 -0.54769575 -15.5 -0.52140056 -15.51 -0.4948875 -15.52 -0.4684449 -15.53 -0.44233646 -15.54 -0.41678903 -15.55 -0.39198434 -15.56 -0.36805224 -15.57 -0.34506482 -15.58 -0.32303534 -15.59 -0.30193412 -15.6 -0.28167493 -15.61 -0.26207793 -15.62 -0.24294352 -15.63 -0.22406085 -15.64 -0.20520934 -15.65 -0.18616901 -15.66 -0.16673312 -15.67 -0.14672135 -15.68 -0.12598768 -15.69 -0.10443131 -15.7 -0.081991956 -15.71 -0.058650069 -15.72 -0.034477251 -15.73 -0.0096146664 -15.74 0.015777677 -15.75 0.041502237 -15.76 0.06733335 -15.77 0.093027326 -15.78 0.11833372 -15.79 0.14300557 -15.8 0.16681025 -15.81 0.18953391 -15.82 0.21096484 -15.83 0.23092692 -15.84 0.24938585 -15.85 0.26628934 -15.86 0.2816264 -15.87 0.29542001 -15.88 0.30772548 -15.89 0.31861855 -15.9 0.32819304 -15.91 0.3365461 -15.92 0.34377479 -15.93 0.34995671 -15.94 0.35511328 -15.95 0.35935479 -15.96 0.36269885 -15.97 0.36513619 -15.98 0.36663081 -15.99 0.36712424 -16 0.36653977 -16.01 0.36478817 -16.02 0.36177676 -16.03 0.35741719 -16.04 0.35163024 -16.05 0.34425449 -16.06 0.33535285 -16.07 0.32495888 -16.08 0.3131273 -16.09 0.29995657 -16.1 0.28558483 -16.11 0.27019264 -16.12 0.25399478 -16.13 0.23723391 -16.14 0.22017623 -16.15 0.20309791 -16.16 0.18630224 -16.17 0.17007674 -16.18 0.15466107 -16.19 0.14026665 -16.2 0.12706716 -16.21 0.11518972 -16.22 0.10471023 -16.23 0.095648549 -16.24 0.087971622 -16.25 0.081591566 -16.26 0.076371378 -16.27 0.072150256 -16.28 0.068700407 -16.29 0.065738055 -16.3 0.062991869 -16.31 0.060192351 -16.32 0.057074633 -16.33 0.053388168 -16.34 0.048905459 -16.35 0.043429495 -16.36 0.036799863 -16.37 0.0288972 -16.38 0.019629166 -16.39 0.0089163395 -16.4 -0.0031751882 -16.41 -0.01656036 -16.42 -0.031137211 -16.43 -0.046770244 -16.44 -0.063295393 -16.45 -0.080525316 -16.46 -0.098255588 -16.47 -0.11626832 -16.48 -0.13433875 -16.49 -0.15223788 -16.5 -0.16970137 -16.51 -0.18649923 -16.52 -0.20241675 -16.53 -0.21723812 -16.54 -0.23075283 -16.55 -0.24275729 -16.56 -0.25305331 -16.57 -0.26144754 -16.58 -0.26775318 -16.59 -0.27179049 -16.6 -0.27338682 -16.61 -0.27228083 -16.62 -0.26831288 -16.63 -0.26142002 -16.64 -0.25151007 -16.65 -0.23849754 -16.66 -0.22232889 -16.67 -0.20298669 -16.68 -0.18049528 -16.69 -0.15492651 -16.7 -0.12640401 -16.71 -0.095107364 -16.72 -0.061229638 -16.73 -0.02505638 -16.74 0.012978491 -16.75 0.052409092 -16.76 0.092755872 -16.77 0.1334907 -16.78 0.17404475 -16.79 0.21381821 -16.8 0.25218767 -16.81 0.28851944 -16.82 0.32218186 -16.83 0.35250749 -16.84 0.37878008 -16.85 0.40044093 -16.86 0.41710887 -16.87 0.42836246 -16.88 0.43385549 -16.89 0.43332665 -16.9 0.42660752 -16.91 0.4136277 -16.92 0.39441732 -16.93 0.36910917 -16.94 0.33791867 -16.95 0.30106276 -16.96 0.25892823 -16.97 0.21229243 -16.98 0.16176148 -16.99 0.10800533 -17 0.051746356 -17.01 -0.0062535567 -17.02 -0.065208454 -17.03 -0.12432243 -17.04 -0.18280483 -17.05 -0.23988431 -17.06 -0.29476805 -17.07 -0.34661889 -17.08 -0.39492349 -17.09 -0.43914744 -17.1 -0.47882799 -17.11 -0.51359055 -17.12 -0.54315115 -17.13 -0.56731896 -17.14 -0.58599531 -17.15 -0.59917265 -17.16 -0.60692646 -17.17 -0.60936943 -17.18 -0.60652934 -17.19 -0.59887638 -17.2 -0.58683318 -17.21 -0.57076317 -17.22 -0.55104794 -17.23 -0.52807375 -17.24 -0.50222248 -17.25 -0.47385771 -17.26 -0.44331823 -17.27 -0.41091042 -17.28 -0.37689812 -17.29 -0.34146481 -17.3 -0.30481549 -17.31 -0.2671328 -17.32 -0.22851814 -17.33 -0.18904274 -17.34 -0.14875543 -17.35 -0.10769184 -17.36 -0.065884887 -17.37 -0.023370725 -17.38 0.019800569 -17.39 0.063554353 -17.4 0.10779013 -17.41 0.15235905 -17.42 0.19704904 -17.43 0.24163144 -17.44 0.2858377 -17.45 0.3293651 -17.46 0.37188041 -17.47 0.41302875 -17.48 0.45244343 -17.49 0.48975646 -17.5 0.52460707 -17.51 0.55663572 -17.52 0.58533775 -17.53 0.61061034 -17.54 0.6322682 -17.55 0.65016302 -17.56 0.66420696 -17.57 0.67437807 -17.58 0.68071471 -17.59 0.6833178 -17.6 0.68233968 -17.61 0.67798165 -17.62 0.67048194 -17.63 0.65996806 -17.64 0.64684086 -17.65 0.63144199 -17.66 0.6140541 -17.67 0.59493716 -17.68 0.57432468 -17.69 0.55241629 -17.7 0.52937621 -17.71 0.50532781 -17.72 0.48035633 -17.73 0.45451072 -17.74 0.42777573 -17.75 0.40014496 -17.76 0.37161417 -17.77 0.34215617 -17.78 0.31174263 -17.79 0.28035945 -17.8 0.24801329 -17.81 0.21474088 -17.82 0.18061608 -17.83 0.14575073 -17.84 0.11029991 -17.85 0.074458371 -17.86 0.038478962 -17.87 0.002652308 -17.88 -0.032716701 -17.89 -0.067310759 -17.9 -0.10080493 -17.91 -0.1328781 -17.92 -0.16322271 -17.93 -0.19155529 -17.94 -0.21762557 -17.95 -0.24122276 -17.96 -0.26215518 -17.97 -0.28022633 -17.98 -0.29542021 -17.99 -0.30781031 -18 -0.31745005 -18.01 -0.32443702 -18.02 -0.32890666 -18.03 -0.33102434 -18.04 -0.33097611 -18.05 -0.32895922 -18.06 -0.32517375 -18.07 -0.31981169 -18.08 -0.31301184 -18.09 -0.30493818 -18.1 -0.29577385 -18.11 -0.28561709 -18.12 -0.27453562 -18.13 -0.26256871 -18.14 -0.24973031 -18.15 -0.23601282 -18.16 -0.22139258 -18.17 -0.20583744 -18.18 -0.18931344 -18.19 -0.17176625 -18.2 -0.1531612 -18.21 -0.13353839 -18.22 -0.11293645 -18.23 -0.091413524 -18.24 -0.069056914 -18.25 -0.045983073 -18.26 -0.022337529 -18.27 0.0017095464 -18.28 0.025966897 -18.29 0.050227613 -18.3 0.074266826 -18.31 0.097841926 -18.32 0.12073048 -18.33 0.14273705 -18.34 0.16367463 -18.35 0.18337561 -18.36 0.20169745 -18.37 0.21852207 -18.38 0.23375668 -18.39 0.2473329 -18.4 0.25920471 -18.41 0.26933262 -18.42 0.27765733 -18.43 0.28416903 -18.44 0.28893148 -18.45 0.29194139 -18.46 0.29319157 -18.47 0.29266308 -18.48 0.29032396 -18.49 0.28613014 -18.5 0.28002273 -18.51 0.27193135 -18.52 0.26177047 -18.53 0.24941372 -18.54 0.23469296 -18.55 0.2176465 -18.56 0.19820847 -18.57 0.17633506 -18.58 0.15200663 -18.59 0.12523523 -18.6 0.096069935 -18.61 0.064599425 -18.62 0.030952545 -18.63 -0.0046986267 -18.64 -0.042146237 -18.65 -0.081219991 -18.66 -0.12150679 -18.67 -0.16268236 -18.68 -0.20440608 -18.69 -0.24632268 -18.7 -0.28807267 -18.71 -0.32929586 -18.72 -0.36963581 -18.73 -0.40876163 -18.74 -0.4463648 -18.75 -0.48216483 -18.76 -0.51578852 -18.77 -0.54708555 -18.78 -0.57592844 -18.79 -0.60219158 -18.8 -0.62578355 -18.81 -0.64664898 -18.82 -0.66476455 -18.83 -0.68013683 -18.84 -0.69279616 -18.85 -0.70279493 -18.86 -0.71020098 -18.87 -0.71500818 -18.88 -0.71732034 -18.89 -0.71731337 -18.9 -0.71509717 -18.91 -0.71077224 -18.92 -0.70443667 -18.93 -0.69618635 -18.94 -0.68611322 -18.95 -0.67430379 -18.96 -0.66084007 -18.97 -0.64579866 -18.98 -0.62922132 -18.99 -0.61113998 -19 -0.59166505 -19.01 -0.57085941 -19.02 -0.54876422 -19.03 -0.52541162 -19.04 -0.50082387 -19.05 -0.47501548 -19.06 -0.44799227 -19.07 -0.41975139 -19.08 -0.39028309 -19.09 -0.35956548 -19.1 -0.32752521 -19.11 -0.29418379 -19.12 -0.25955508 -19.13 -0.22363799 -19.14 -0.18644435 -19.15 -0.14800531 -19.16 -0.10837516 -19.17 -0.067636172 -19.18 -0.025901914 -19.19 0.016679486 -19.2 0.059923159 -19.21 0.10360999 -19.22 0.14745363 -19.23 0.19113593 -19.24 0.23432418 -19.25 0.27666015 -19.26 0.31776605 -19.27 0.35725302 -19.28 0.39472877 -19.29 0.4298068 -19.3 0.46211627 -19.31 0.49131095 -19.32 0.5169671 -19.33 0.53877226 -19.34 0.5565956 -19.35 0.57032112 -19.36 0.57985344 -19.37 0.58515927 -19.38 0.58626788 -19.39 0.58326833 -19.4 0.57630631 -19.41 0.56557958 -19.42 0.55133268 -19.43 0.53380098 -19.44 0.51325634 -19.45 0.49010299 -19.46 0.46475366 -19.47 0.43755872 -19.48 0.40886292 -19.49 0.37899967 -19.5 0.34828523 -19.51 0.31701403 -19.52 0.2854567 -19.53 0.25385838 -19.54 0.22244207 -19.55 0.19141952 -19.56 0.16097362 -19.57 0.13124081 -19.58 0.10235225 -19.59 0.074427945 -19.6 0.047578777 -19.61 0.021909309 -19.62 -0.0024779642 -19.63 -0.025481429 -19.64 -0.046998788 -19.65 -0.066924379 -19.66 -0.085110891 -19.67 -0.10139882 -19.68 -0.11577117 -19.69 -0.12813003 -19.7 -0.13838479 -19.71 -0.14645333 -19.72 -0.15226507 -19.73 -0.15576376 -19.74 -0.15690817 -19.75 -0.15567347 -19.76 -0.15205283 -19.77 -0.1460228 -19.78 -0.13751734 -19.79 -0.12668311 -19.8 -0.11359601 -19.81 -0.098319659 -19.82 -0.080925714 -19.83 -0.061491303 -19.84 -0.040097168 -19.85 -0.016827766 -19.86 0.0082300018 -19.87 0.034986228 -19.88 0.063355147 -19.89 0.0932895 -19.9 0.12463647 -19.91 0.1572332 -19.92 0.19093485 -19.93 0.22557419 -19.94 0.2609569 -19.95 0.29685933 -19.96 0.33302435 -19.97 0.36915875 -19.98 0.40493322 -19.99 0.43998031 -20 0.47385321 -20.01 0.50606389 -20.02 0.53620932 -20.03 0.56382367 -20.04 0.58843556 -20.05 0.60958246 -20.06 0.62679151 -20.07 0.63967626 -20.08 0.64786934 -20.09 0.6510607 -20.1 0.64900398 -20.11 0.64145032 -20.12 0.62807823 -20.13 0.60921652 -20.14 0.58500005 -20.15 0.55564602 -20.16 0.52146396 -20.17 0.4828501 -20.18 0.44028309 -20.19 0.3943119 -20.2 0.34554585 -20.21 0.29464084 -20.22 0.24228472 -20.23 0.18918505 -20.24 0.13612972 -20.25 0.083820243 -20.26 0.032912087 -20.27 -0.015982692 -20.28 -0.062307558 -20.29 -0.10557085 -20.3 -0.14535458 -20.31 -0.18131637 -20.32 -0.21319605 -20.33 -0.24081583 -20.34 -0.26387106 -20.35 -0.28244164 -20.36 -0.29668817 -20.37 -0.3067572 -20.38 -0.31283854 -20.39 -0.31517026 -20.4 -0.31403196 -20.41 -0.30973774 -20.42 -0.3026258 -20.43 -0.29305142 -20.44 -0.2813808 -20.45 -0.2679454 -20.46 -0.25313318 -20.47 -0.23735339 -20.48 -0.22096738 -20.49 -0.2043041 -20.5 -0.18767359 -20.51 -0.17136585 -20.52 -0.15564796 -20.53 -0.14076251 -20.54 -0.12692635 -20.55 -0.11433016 -20.56 -0.10316278 -20.57 -0.093600128 -20.58 -0.085713559 -20.59 -0.079541104 -20.6 -0.075116809 -20.61 -0.072442219 -20.62 -0.071486087 -20.63 -0.072184906 -20.64 -0.074443871 -20.65 -0.078137437 -20.66 -0.083111882 -20.67 -0.089191927 -20.68 -0.096191952 -20.69 -0.10386625 -20.7 -0.11194694 -20.71 -0.12018815 -20.72 -0.12834062 -20.73 -0.13615862 -20.74 -0.14340459 -20.75 -0.14985468 -20.76 -0.15530512 -20.77 -0.15957717 -20.78 -0.16252031 -20.79 -0.16396691 -20.8 -0.16381947 -20.81 -0.16209623 -20.82 -0.15880445 -20.83 -0.15398628 -20.84 -0.14772266 -20.85 -0.14013008 -20.86 -0.13135925 -20.87 -0.12159049 -20.88 -0.11103047 -20.89 -0.099907896 -20.9 -0.08847047 -20.91 -0.076988592 -20.92 -0.065744059 -20.93 -0.055001022 -20.94 -0.045016586 -20.95 -0.036036991 -20.96 -0.028293283 -20.97 -0.021996954 -20.98 -0.017336062 -20.99 -0.014471963 -21 -0.013536174 -21.01 -0.014651417 -21.02 -0.01794073 -21.03 -0.02340939 -21.04 -0.030986607 -21.05 -0.040621638 -21.06 -0.052226991 -21.07 -0.065679335 -21.08 -0.08082033 -21.09 -0.09745849 -21.1 -0.11537103 -21.11 -0.1343063 -21.12 -0.15398793 -21.13 -0.17411482 -21.14 -0.19434397 -21.15 -0.21432016 -21.16 -0.23370015 -21.17 -0.25213647 -21.18 -0.26928228 -21.19 -0.28479864 -21.2 -0.2983563 -21.21 -0.3096435 -21.22 -0.31836964 -21.23 -0.32426805 -21.24 -0.32706532 -21.25 -0.32639348 -21.26 -0.32229361 -21.27 -0.31466053 -21.28 -0.303434 -21.29 -0.28860204 -21.3 -0.27020281 -21.31 -0.24832352 -21.32 -0.22310275 -21.33 -0.19472602 -21.34 -0.16342955 -21.35 -0.12948988 -21.36 -0.093107538 -21.37 -0.054805044 -21.38 -0.015010028 -21.39 0.02584547 -21.4 0.067298111 -21.41 0.10886513 -21.42 0.15005507 -21.43 0.19037019 -21.44 0.22931405 -21.45 0.26639368 -21.46 0.30113138 -21.47 0.33291529 -21.48 0.36133389 -21.49 0.38606841 -21.5 0.40677098 -21.51 0.42313638 -21.52 0.43491018 -21.53 0.44189147 -21.54 0.44393704 -21.55 0.44096619 -21.56 0.43295868 -21.57 0.4199582 -21.58 0.40193316 -21.59 0.37901624 -21.6 0.35161473 -21.61 0.32004965 -21.62 0.28466018 -21.63 0.24583114 -21.64 0.20398496 -21.65 0.15957489 -21.66 0.11307929 -21.67 0.06499292 -21.68 0.01582129 -21.69 -0.033926875 -21.7 -0.083712267 -21.71 -0.13301662 -21.72 -0.18136199 -21.73 -0.22829931 -21.74 -0.27340603 -21.75 -0.31629073 -21.76 -0.35659508 -21.77 -0.3939961 -21.78 -0.42820587 -21.79 -0.4589737 -21.8 -0.48608058 -21.81 -0.50914277 -21.82 -0.52812035 -21.83 -0.54299535 -21.84 -0.55369264 -21.85 -0.56016756 -21.86 -0.56240329 -21.87 -0.56041059 -21.88 -0.55422534 -21.89 -0.5439081 -21.9 -0.5295454 -21.91 -0.51124638 -21.92 -0.4890115 -21.93 -0.46302798 -21.94 -0.43358853 -21.95 -0.40092453 -21.96 -0.36526881 -21.97 -0.32687774 -21.98 -0.28602911 -21.99 -0.24302166 -22 -0.19817455 -22.01 -0.15182367 -22.02 -0.1043202 -22.03 -0.056023032 -22.04 -0.0073249007 -22.05 0.041362881 -22.06 0.089649639 -22.07 0.13715509 -22.08 0.18350471 -22.09 0.22833309 -22.1 0.27128821 -22.11 0.31203399 -22.12 0.35025318 -22.13 0.3856519 -22.14 0.41791574 -22.15 0.44671063 -22.16 0.47184543 -22.17 0.49323053 -22.18 0.51072181 -22.19 0.52420881 -22.2 0.53361579 -22.21 0.53890267 -22.22 0.540065 -22.23 0.53713629 -22.24 0.53018781 -22.25 0.51931155 -22.26 0.50456633 -22.27 0.48611673 -22.28 0.46435091 -22.29 0.439536 -22.3 0.41197552 -22.31 0.38200627 -22.32 0.34999625 -22.33 0.31634126 -22.34 0.28145983 -22.35 0.24578969 -22.36 0.20978095 -22.37 0.17390824 -22.38 0.13867723 -22.39 0.10453366 -22.4 0.071907179 -22.41 0.041203403 -22.42 0.012795802 -22.43 -0.012980339 -22.44 -0.035835242 -22.45 -0.0555297 -22.46 -0.071879695 -22.47 -0.084759627 -22.48 -0.094067182 -22.49 -0.099661388 -22.5 -0.10172874 -22.51 -0.10044821 -22.52 -0.0959947 -22.53 -0.088588895 -22.54 -0.078491072 -22.55 -0.0659952 -22.56 -0.051419267 -22.57 -0.03509802 -22.58 -0.017374517 -22.59 0.0014095467 -22.6 0.020929499 -22.61 0.040828711 -22.62 0.060785266 -22.63 0.08052496 -22.64 0.099801417 -22.65 0.11839819 -22.66 0.1361264 -22.67 0.15282936 -22.68 0.1683739 -22.69 0.18265491 -22.7 0.19558435 -22.71 0.20705744 -22.72 0.21697597 -22.73 0.22535696 -22.74 0.23216466 -22.75 0.23736122 -22.76 0.24090456 -22.77 0.24274978 -22.78 0.24284706 -22.79 0.24114578 -22.8 0.2375898 -22.81 0.23212481 -22.82 0.22468241 -22.83 0.21510149 -22.84 0.20346335 -22.85 0.18975694 -22.86 0.17398256 -22.87 0.15616183 -22.88 0.13634209 -22.89 0.11460009 -22.9 0.091042903 -22.91 0.065807503 -22.92 0.039063446 -22.93 0.01100996 -22.94 -0.018171038 -22.95 -0.048163946 -22.96 -0.078673152 -22.97 -0.10940548 -22.98 -0.14006103 -22.99 -0.17033587 -23 -0.19992891 -23.01 -0.22854787 -23.02 -0.25591664 -23.03 -0.28177905 -23.04 -0.30590499 -23.05 -0.32800937 -23.06 -0.34793575 -23.07 -0.36560633 -23.08 -0.38095032 -23.09 -0.39392266 -23.1 -0.40451649 -23.11 -0.41276074 -23.12 -0.41871804 -23.13 -0.4224807 -23.14 -0.42416535 -23.15 -0.42390929 -23.16 -0.42182642 -23.17 -0.41806537 -23.18 -0.41283714 -23.19 -0.40632185 -23.2 -0.39866535 -23.21 -0.38999682 -23.22 -0.38042429 -23.23 -0.37003087 -23.24 -0.35887259 -23.25 -0.34697435 -23.26 -0.33433038 -23.27 -0.32089471 -23.28 -0.3065714 -23.29 -0.29127745 -23.3 -0.27491681 -23.31 -0.25735943 -23.32 -0.23846695 -23.33 -0.21810087 -23.34 -0.19612973 -23.35 -0.17243662 -23.36 -0.1469284 -23.37 -0.11954324 -23.38 -0.090255127 -23.39 -0.059023605 -23.4 -0.025937546 -23.41 0.008794879 -23.42 0.044976016 -23.43 0.082350908 -23.44 0.12060822 -23.45 0.15938495 -23.46 0.19827257 -23.47 0.23682309 -23.48 0.27455952 -23.49 0.31098666 -23.5 0.34553146 -23.51 0.37763223 -23.52 0.40686711 -23.53 0.43281307 -23.54 0.45507739 -23.55 0.47332416 -23.56 0.48728471 -23.57 0.49676436 -23.58 0.50164704 -23.59 0.50190018 -23.6 0.49757475 -23.61 0.48873906 -23.62 0.47551655 -23.63 0.45830977 -23.64 0.4375599 -23.65 0.41367638 -23.66 0.3871098 -23.67 0.35833816 -23.68 0.32785479 -23.69 0.29615849 -23.7 0.26373808 -23.71 0.23106617 -23.72 0.19859348 -23.73 0.16676076 -23.74 0.13596141 -23.75 0.10648975 -23.76 0.078611884 -23.77 0.052545746 -23.78 0.028465259 -23.79 0.0065012207 -23.8 -0.013253298 -23.81 -0.030738509 -23.82 -0.045922548 -23.83 -0.0587904 -23.84 -0.069305759 -23.85 -0.077429337 -23.86 -0.083313478 -23.87 -0.08700164 -23.88 -0.088542979 -23.89 -0.087996008 -23.9 -0.085425857 -23.91 -0.080911022 -23.92 -0.074543281 -23.93 -0.066432436 -23.94 -0.056709026 -23.95 -0.045521303 -23.96 -0.032985347 -23.97 -0.019416876 -23.98 -0.0050623648 -23.99 0.0098047469 -24 0.024885574 -24.01 0.039859724 -24.02 0.054391103 -24.03 0.068134241 -24.04 0.080742246 -24.05 0.091875858 -24.06 0.10121059 -24.07 0.10829262 -24.08 0.11294406 -24.09 0.11498944 -24.1 0.11426886 -24.11 0.11067658 -24.12 0.10416695 -24.13 0.094753773 -24.14 0.082508951 -24.15 0.067563441 -24.16 0.050099139 -24.17 0.030345003 -24.18 0.0085028351 -24.19 -0.015086236 -24.2 -0.040034879 -24.21 -0.066002136 -24.22 -0.092651166 -24.23 -0.1196517 -24.24 -0.14668615 -24.25 -0.17345665 -24.26 -0.199689 -24.27 -0.22513612 -24.28 -0.24957853 -24.29 -0.2727942 -24.3 -0.29457541 -24.31 -0.31482887 -24.32 -0.33344875 -24.33 -0.35033617 -24.34 -0.36540248 -24.35 -0.37856807 -24.36 -0.38975802 -24.37 -0.39890152 -24.38 -0.40592755 -24.39 -0.41076644 -24.4 -0.41333269 -24.41 -0.41345825 -24.42 -0.41116657 -24.43 -0.40645556 -24.44 -0.39930274 -24.45 -0.38970648 -24.46 -0.37769404 -24.47 -0.36332403 -24.48 -0.3466892 -24.49 -0.32792066 -24.5 -0.30718817 -24.51 -0.28469877 -24.52 -0.26064321 -24.53 -0.23534583 -24.54 -0.20915607 -24.55 -0.18240167 -24.56 -0.1554165 -24.57 -0.12853697 -24.58 -0.10209084 -24.59 -0.076389119 -24.6 -0.051717739 -24.61 -0.028329354 -24.62 -0.006437231 -24.63 0.01373226 -24.64 0.032046732 -24.65 0.04848298 -24.66 0.063041885 -24.67 0.075752413 -24.68 0.08668333 -24.69 0.095936932 -24.7 0.10364246 -24.71 0.10994717 -24.72 0.11500809 -24.73 0.11898571 -24.74 0.1220212 -24.75 0.12424814 -24.76 0.12580962 -24.77 0.12681917 -24.78 0.12734853 -24.79 0.12744322 -24.8 0.12712392 -24.81 0.1263895 -24.82 0.12522 -24.83 0.12358051 -24.84 0.12142784 -24.85 0.11870979 -24.86 0.11536444 -24.87 0.11135514 -24.88 0.10667838 -24.89 0.10132812 -24.9 0.095315765 -24.91 0.088671937 -24.92 0.081445011 -24.93 0.073701004 -24.94 0.065519818 -24.95 0.056992107 -24.96 0.048215659 -24.97 0.039291948 -24.98 0.030325787 -24.99 0.021418806 -25 0.012656315 -25.01 0.0041135271 -25.02 -0.0041451589 -25.03 -0.012065889 -25.04 -0.019603871 -25.05 -0.026721118 -25.06 -0.033382867 -25.07 -0.039554205 -25.08 -0.045186017 -25.09 -0.050205542 -25.1 -0.054572865 -25.11 -0.05821502 -25.12 -0.061038156 -25.13 -0.062932038 -25.14 -0.063771813 -25.15 -0.06342111 -25.16 -0.061737123 -25.17 -0.058576735 -25.18 -0.053804199 -25.19 -0.047285191 -25.2 -0.038852339 -25.21 -0.028487051 -25.22 -0.016222217 -25.23 -0.0021013152 -25.24 0.013774432 -25.25 0.031242284 -25.26 0.050076301 -25.27 0.069988404 -25.28 0.090632121 -25.29 0.11160797 -25.3 0.13247251 -25.31 0.15271359 -25.32 0.17178245 -25.33 0.18920705 -25.34 0.20450576 -25.35 0.21722655 -25.36 0.2269637 -25.37 0.23336845 -25.38 0.23616501 -25.39 0.23515688 -25.4 0.23022302 -25.41 0.22134381 -25.42 0.20855254 -25.43 0.19188976 -25.44 0.17184407 -25.45 0.14876348 -25.46 0.12305708 -25.47 0.095182574 -25.48 0.065636155 -25.49 0.034936089 -25.5 0.0036089963 -25.51 -0.02782364 -25.52 -0.058858099 -25.53 -0.08901732 -25.54 -0.11774584 -25.55 -0.14471073 -25.56 -0.16958141 -25.57 -0.19206919 -25.58 -0.21193556 -25.59 -0.22898479 -25.6 -0.24306476 -25.61 -0.25405681 -25.62 -0.26187475 -25.63 -0.26645652 -25.64 -0.26775855 -25.65 -0.26558598 -25.66 -0.26000933 -25.67 -0.25109049 -25.68 -0.23884279 -25.69 -0.22328048 -25.7 -0.20443293 -25.71 -0.18234745 -25.72 -0.15709584 -25.73 -0.12877938 -25.74 -0.097534101 -25.75 -0.063537294 -25.76 -0.026939081 -25.77 0.011966495 -25.78 0.052779267 -25.79 0.095099713 -25.8 0.13850369 -25.81 0.18252699 -25.82 0.22667303 -25.83 0.27042081 -25.84 0.3132362 -25.85 0.35458548 -25.86 0.39394511 -25.87 0.43075632 -25.88 0.46446178 -25.89 0.49469929 -25.9 0.52116693 -25.91 0.54358206 -25.92 0.56173155 -25.93 0.57547522 -25.94 0.58474461 -25.95 0.58954049 -25.96 0.58992848 -25.97 0.58603191 -25.98 0.57799538 -25.99 0.56591443 -26 0.55009929 -26.01 0.53092541 -26.02 0.50866401 -26.03 0.48358638 -26.04 0.45595758 -26.05 0.42603085 -26.06 0.39404493 -26.07 0.36022332 -26.08 0.32477536 -26.09 0.28789908 -26.1 0.2497529 -26.11 0.21053487 -26.12 0.17049097 -26.13 0.12983188 -26.14 0.088783447 -26.15 0.047594046 -26.16 0.0065377901 -26.17 -0.034084857 -26.18 -0.073946941 -26.19 -0.11269799 -26.2 -0.14996866 -26.21 -0.18532211 -26.22 -0.21830735 -26.23 -0.24859165 -26.24 -0.2758452 -26.25 -0.29974485 -26.26 -0.32000951 -26.27 -0.33641025 -26.28 -0.34877985 -26.29 -0.35702072 -26.3 -0.36110794 -26.31 -0.36109256 -26.32 -0.35705732 -26.33 -0.34911963 -26.34 -0.33762745 -26.35 -0.32301735 -26.36 -0.30567914 -26.37 -0.28604052 -26.38 -0.26455491 -26.39 -0.24168849 -26.4 -0.21791019 -26.41 -0.19367729 -26.42 -0.1694275 -26.43 -0.14557488 -26.44 -0.12252338 -26.45 -0.10063839 -26.46 -0.080168208 -26.47 -0.061346814 -26.48 -0.044363936 -26.49 -0.029369771 -26.5 -0.016477931 -26.51 -0.0057705966 -26.52 0.0026964215 -26.53 0.0088887593 -26.54 0.012786241 -26.55 0.014350206 -26.56 0.013489724 -26.57 0.010357029 -26.58 0.0049779052 -26.59 -0.0026115448 -26.6 -0.012362204 -26.61 -0.024208902 -26.62 -0.038066544 -26.63 -0.053826149 -26.64 -0.071351473 -26.65 -0.090475906 -26.66 -0.1110037 -26.67 -0.13275649 -26.68 -0.15538028 -26.69 -0.17856647 -26.7 -0.20199214 -26.71 -0.22531337 -26.72 -0.24817919 -26.73 -0.27023369 -26.74 -0.29111988 -26.75 -0.31050787 -26.76 -0.3280951 -26.77 -0.34360892 -26.78 -0.35669314 -26.79 -0.3672138 -26.8 -0.37510415 -26.81 -0.38029652 -26.82 -0.38277496 -26.83 -0.38257057 -26.84 -0.37975778 -26.85 -0.37445022 -26.86 -0.36678923 -26.87 -0.35693781 -26.88 -0.34507111 -26.89 -0.33131639 -26.9 -0.31584986 -26.91 -0.29889714 -26.92 -0.2806103 -26.93 -0.26111626 -26.94 -0.24052014 -26.95 -0.21891171 -26.96 -0.19636599 -26.97 -0.17295035 -26.98 -0.14873288 -26.99 -0.1237862 -27 -0.098192521 -27.01 -0.072057333 -27.02 -0.045555192 -27.03 -0.01887861 -27.04 0.0077474302 -27.05 0.034057911 -27.06 0.0597503 -27.07 0.084489349 -27.08 0.10791614 -27.09 0.12965608 -27.1 0.14933428 -27.11 0.16658172 -27.12 0.1809026 -27.13 0.19208531 -27.14 0.19996539 -27.15 0.20439872 -27.16 0.20532657 -27.17 0.20278427 -27.18 0.19690634 -27.19 0.18792399 -27.2 0.17616514 -27.21 0.16204462 -27.22 0.1460545 -27.23 0.12872841 -27.24 0.11071977 -27.25 0.092696477 -27.26 0.075284385 -27.27 0.059079713 -27.28 0.044633207 -27.29 0.032431869 -27.3 0.022881542 -27.31 0.016293621 -27.32 0.012875402 -27.33 0.012724545 -27.34 0.015906882 -27.35 0.022319271 -27.36 0.031643409 -27.37 0.043512394 -27.38 0.057532171 -27.39 0.073255949 -27.4 0.09020268 -27.41 0.10787659 -27.42 0.12578581 -27.43 0.14345889 -27.44 0.16046098 -27.45 0.17638423 -27.46 0.19085586 -27.47 0.2036215 -27.48 0.21452948 -27.49 0.22346167 -27.5 0.23035957 -27.51 0.23521621 -27.52 0.23806684 -27.53 0.2389787 -27.54 0.23803884 -27.55 0.2353424 -27.56 0.23097601 -27.57 0.2249865 -27.58 0.21743635 -27.59 0.20843256 -27.6 0.19800192 -27.61 0.18615249 -27.62 0.17288016 -27.63 0.15817661 -27.64 0.14203654 -27.65 0.12446899 -27.66 0.10550633 -27.67 0.085215283 -27.68 0.063683569 -27.69 0.041049484 -27.7 0.017599393 -27.71 -0.0063908009 -27.72 -0.030595358 -27.73 -0.054643475 -27.74 -0.07812839 -27.75 -0.10061958 -27.76 -0.12167716 -27.77 -0.14086604 -27.78 -0.15777582 -27.79 -0.17199491 -27.8 -0.18308257 -27.81 -0.19089022 -27.82 -0.19531076 -27.83 -0.19628749 -27.84 -0.19385855 -27.85 -0.18815631 -27.86 -0.17940323 -27.87 -0.16790385 -27.88 -0.15403415 -27.89 -0.13822297 -27.9 -0.12093587 -27.91 -0.10264682 -27.92 -0.083894048 -27.93 -0.065166597 -27.94 -0.046880611 -27.95 -0.029395896 -27.96 -0.013002691 -27.97 0.0020863371 -27.98 0.015740419 -27.99 0.027911085 -28 0.038627786 -28.01 0.047989217 -28.02 0.05612951 -28.03 0.063252604 -28.04 0.069650308 -28.05 0.075564209 -28.06 0.081226285 -28.07 0.086840885 -28.08 0.092574147 -28.09 0.098535149 -28.1 0.10477387 -28.11 0.11127306 -28.12 0.11794822 -28.13 0.12465319 -28.14 0.13115604 -28.15 0.13720086 -28.16 0.14250572 -28.17 0.14677666 -28.18 0.14972245 -28.19 0.15107265 -28.2 0.15059454 -28.21 0.14810478 -28.22 0.1434826 -28.23 0.13667796 -28.24 0.12771423 -28.25 0.1165818 -28.26 0.10357083 -28.27 0.08896669 -28.28 0.073080979 -28.29 0.056266413 -28.3 0.038903321 -28.31 0.021383713 -28.32 0.0040953735 -28.33 -0.012593489 -28.34 -0.028348205 -28.35 -0.042879324 -28.36 -0.055880854 -28.37 -0.067191138 -28.38 -0.076742907 -28.39 -0.084503631 -28.4 -0.09049104 -28.41 -0.094768513 -28.42 -0.097439104 -28.43 -0.098630418 -28.44 -0.098484082 -28.45 -0.097143326 -28.46 -0.094740479 -28.47 -0.091363587 -28.48 -0.087088228 -28.49 -0.081981938 -28.5 -0.076058276 -28.51 -0.069285659 -28.52 -0.06160226 -28.53 -0.052923371 -28.54 -0.043152 -28.55 -0.032190858 -28.56 -0.019955272 -28.57 -0.0063868922 -28.58 0.00855066 -28.59 0.024855585 -28.6 0.04239407 -28.61 0.060963305 -28.62 0.08031766 -28.63 0.10014187 -28.64 0.12005481 -28.65 0.1396188 -28.66 0.15835169 -28.67 0.17574176 -28.68 0.19126484 -28.69 0.20439494 -28.7 0.21450854 -28.71 0.22115888 -28.72 0.22407117 -28.73 0.2229663 -28.74 0.21766264 -28.75 0.20808477 -28.76 0.19426978 -28.77 0.17636809 -28.78 0.15463982 -28.79 0.12944777 -28.8 0.10124557 -28.81 0.070520086 -28.82 0.03788256 -28.83 0.0040687896 -28.84 -0.030255804 -28.85 -0.064443054 -28.86 -0.097868528 -28.87 -0.12994838 -28.88 -0.16015425 -28.89 -0.18802651 -28.9 -0.21318206 -28.91 -0.23532044 -28.92 -0.25416321 -28.93 -0.26949817 -28.94 -0.28135501 -28.95 -0.28982084 -28.96 -0.29498428 -28.97 -0.29698417 -28.98 -0.29599694 -28.99 -0.29222577 -29 -0.28589158 -29.01 -0.27722162 -29.02 -0.26644328 -29.03 -0.25376455 -29.04 -0.23936255 -29.05 -0.22346082 -29.06 -0.20630092 -29.07 -0.18806377 -29.08 -0.16892359 -29.09 -0.14905564 -29.1 -0.12863832 -29.11 -0.10785751 -29.12 -0.086910614 -29.13 -0.06600774 -29.14 -0.04537574 -29.15 -0.02527142 -29.16 -0.0059786817 -29.17 0.01227336 -29.18 0.029234711 -29.19 0.044665872 -29.2 0.058346477 -29.21 0.070084308 -29.22 0.079724162 -29.23 0.087154999 -29.24 0.092318612 -29.25 0.095213654 -29.26 0.095882984 -29.27 0.094335566 -29.28 0.090912287 -29.29 0.085856966 -29.3 0.079459467 -29.31 0.07204717 -29.32 0.06397181 -29.33 0.055598722 -29.34 0.047292595 -29.35 0.039404749 -29.36 0.032260259 -29.37 0.026148768 -29.38 0.021393994 -29.39 0.018130858 -29.4 0.0164499 -29.41 0.016403046 -29.42 0.017974328 -29.43 0.021080067 -29.44 0.02559035 -29.45 0.031330217 -29.46 0.038089631 -29.47 0.045634491 -29.48 0.053717593 -29.49 0.062091426 -29.5 0.070493027 -29.51 0.078697507 -29.52 0.086516348 -29.53 0.093795346 -29.54 0.10041606 -29.55 0.10629808 -29.56 0.1113947 -29.57 0.11569376 -29.58 0.11920637 -29.59 0.12196621 -29.6 0.12400155 -29.61 0.12535184 -29.62 0.12608726 -29.63 0.12624202 -29.64 0.12582818 -29.65 0.12483535 -29.66 0.12322739 -29.67 0.12094435 -29.68 0.11790232 -29.69 0.11399906 -29.7 0.10911821 -29.71 0.10312544 -29.72 0.095839969 -29.73 0.087195186 -29.74 0.077123933 -29.75 0.065573315 -29.76 0.052527432 -29.77 0.038014536 -29.78 0.022110601 -29.79 0.004941348 -29.8 -0.013318241 -29.81 -0.032446462 -29.82 -0.052179741 -29.83 -0.072213176 -29.84 -0.092192364 -29.85 -0.11176306 -29.86 -0.13057963 -29.87 -0.14830447 -29.88 -0.1646207 -29.89 -0.17924067 -29.9 -0.19191383 -29.91 -0.2024368 -29.92 -0.21065714 -29.93 -0.21647605 -29.94 -0.21976807 -29.95 -0.22054978 -29.96 -0.21895599 -29.97 -0.21512156 -29.98 -0.20919967 -29.99 -0.2013726 -30 -0.19184306 -& -@target G2.S5 -@type xy -0 -2 -0.01 -2.0037841 -0.02 -2.0073071 -0.03 -2.0103433 -0.04 -2.0126987 -0.05 -2.0142231 -0.06 -2.014819 -0.07 -2.0144484 -0.08 -2.0131348 -0.09 -2.0109619 -0.1 -2.0080679 -0.11 -2.0046375 -0.12 -2.0008866 -0.13 -1.9970874 -0.14 -1.9934899 -0.15 -1.9903253 -0.16 -1.9877964 -0.17 -1.9860655 -0.18 -1.9852441 -0.19 -1.9853856 -0.2 -1.9864826 -0.21 -1.9884667 -0.22 -1.9912131 -0.23 -1.9945623 -0.24 -1.9982765 -0.25 -2.002099 -0.26 -2.0057834 -0.27 -2.0090942 -0.28 -2.0118196 -0.29 -2.0137845 -0.3 -2.0148614 -0.31 -2.0149774 -0.32 -2.0141191 -0.33 -2.0123324 -0.34 -2.0097038 -0.35 -2.0063868 -0.36 -2.0026094 -0.37 -1.9985961 -0.38 -1.9945745 -0.39 -1.9907667 -0.4 -1.9873746 -0.41 -1.984568 -0.42 -1.9824743 -0.43 -1.9811713 -0.44 -1.9806839 -0.45 -1.9809909 -0.46 -1.9820398 -0.47 -1.9836685 -0.48 -1.9857175 -0.49 -1.988021 -0.5 -1.9904135 -0.51 -1.9927443 -0.52 -1.9948915 -0.53 -1.9967732 -0.54 -1.998357 -0.55 -1.9996643 -0.56 -2.000772 -0.57 -2.0018132 -0.58 -2.0029845 -0.59 -2.0044966 -0.6 -2.0065721 -0.61 -2.0094288 -0.62 -2.0132604 -0.63 -2.0182174 -0.64 -2.0243893 -0.65 -2.0317896 -0.66 -2.0403447 -0.67 -2.0498875 -0.68 -2.060153 -0.69 -2.0707713 -0.7 -2.0812732 -0.71 -2.091151 -0.72 -2.0998719 -0.73 -2.1068962 -0.74 -2.1117061 -0.75 -2.1138342 -0.76 -2.1128942 -0.77 -2.1086054 -0.78 -2.100816 -0.79 -2.0894405 -0.8 -2.0746096 -0.81 -2.0567385 -0.82 -2.0363601 -0.83 -2.0140886 -0.84 -1.9906464 -0.85 -1.9668341 -0.86 -1.9434964 -0.87 -1.9214824 -0.88 -1.9016069 -0.89 -1.8846113 -0.9 -1.8711913 -0.91 -1.8619606 -0.92 -1.8571356 -0.93 -1.8567449 -0.94 -1.8606932 -0.95 -1.8686889 -0.96 -1.8802676 -0.97 -1.8948061 -0.98 -1.9115544 -0.99 -1.9296747 -1 -1.9482808 -1.01 -1.9664751 -1.02 -1.9833193 -1.03 -1.9980031 -1.04 -2.0099395 -1.05 -2.0186619 -1.06 -2.0238808 -1.07 -2.0254959 -1.08 -2.0235978 -1.09 -2.018459 -1.1 -2.0105167 -1.11 -2.000345 -1.12 -1.988622 -1.13 -1.9761082 -1.14 -1.9636025 -1.15 -1.9518894 -1.16 -1.9416343 -1.17 -1.9333929 -1.18 -1.9275846 -1.19 -1.9244713 -1.2 -1.9241462 -1.21 -1.9265308 -1.22 -1.931384 -1.23 -1.9383184 -1.24 -1.9468228 -1.25 -1.9563101 -1.26 -1.9660688 -1.27 -1.975426 -1.28 -1.9837754 -1.29 -1.9905901 -1.3 -1.9954539 -1.31 -1.9980875 -1.32 -1.9983659 -1.33 -1.996326 -1.34 -1.9921596 -1.35 -1.9862189 -1.36 -1.9789696 -1.37 -1.9710109 -1.38 -1.9630413 -1.39 -1.9557083 -1.4 -1.9496273 -1.41 -1.945343 -1.42 -1.9432929 -1.43 -1.9437779 -1.44 -1.9469388 -1.45 -1.952745 -1.46 -1.9609804 -1.47 -1.971259 -1.48 -1.9831509 -1.49 -1.9958741 -1.5 -2.0086879 -1.51 -2.0208357 -1.52 -2.0315762 -1.53 -2.0402314 -1.54 -2.0462267 -1.55 -2.0491294 -1.56 -2.0486786 -1.57 -2.0448065 -1.58 -2.0376577 -1.59 -2.0274549 -1.6 -2.0148835 -1.61 -2.0006921 -1.62 -1.9857061 -1.63 -1.9708205 -1.64 -1.956951 -1.65 -1.9449803 -1.66 -1.9357055 -1.67 -1.9297915 -1.68 -1.9277255 -1.69 -1.9299408 -1.7 -1.9363822 -1.71 -1.9467832 -1.72 -1.960644 -1.73 -1.9772782 -1.74 -1.995828 -1.75 -2.0153035 -1.76 -2.0346355 -1.77 -2.0527332 -1.78 -2.0685461 -1.79 -2.081123 -1.8 -2.0894347 -1.81 -2.0929981 -1.82 -2.0916277 -1.83 -2.0852787 -1.84 -2.074205 -1.85 -2.0589403 -1.86 -2.0402661 -1.87 -2.0191736 -1.88 -1.9968176 -1.89 -1.9744518 -1.9 -1.9533654 -1.91 -1.9349714 -1.92 -1.9205466 -1.93 -1.9108024 -1.94 -1.9064797 -1.95 -1.9080209 -1.96 -1.9155272 -1.97 -1.9287775 -1.98 -1.9472314 -1.99 -1.9700539 -2 -1.9961528 -2.01 -2.0242314 -2.02 -2.0528268 -2.03 -2.0802258 -2.04 -2.1050446 -2.05 -2.1259055 -2.06 -2.1415983 -2.07 -2.1511964 -2.08 -2.154078 -2.09 -2.1499627 -2.1 -2.1389311 -2.11 -2.1214253 -2.12 -2.0982376 -2.13 -2.0704686 -2.14 -2.0393992 -2.15 -2.0068541 -2.16 -1.9745112 -2.17 -1.9440821 -2.18 -1.9171697 -2.19 -1.8952155 -2.2 -1.8794211 -2.21 -1.8706827 -2.22 -1.8695426 -2.23 -1.8761569 -2.24 -1.8902762 -2.25 -1.9115222 -2.26 -1.9385811 -2.27 -1.9699963 -2.28 -2.0040899 -2.29 -2.0390548 -2.3 -2.073021 -2.31 -2.1041334 -2.32 -2.1306399 -2.33 -2.1509841 -2.34 -2.1638745 -2.35 -2.1683572 -2.36 -2.1635558 -2.37 -2.1493573 -2.38 -2.1262925 -2.39 -2.0951356 -2.4 -2.0570499 -2.41 -2.01347 -2.42 -1.9660812 -2.43 -1.9167416 -2.44 -1.8673962 -2.45 -1.8199888 -2.46 -1.7763769 -2.47 -1.7383026 -2.48 -1.707335 -2.49 -1.6846444 -2.5 -1.6711078 -2.51 -1.6668426 -2.52 -1.671824 -2.53 -1.6856659 -2.54 -1.7076482 -2.55 -1.7367677 -2.56 -1.7717883 -2.57 -1.8113148 -2.58 -1.8538431 -2.59 -1.8977367 -2.6 -1.9416571 -2.61 -1.9842545 -2.62 -2.0242647 -2.63 -2.0607652 -2.64 -2.0930762 -2.65 -2.12077 -2.66 -2.1436727 -2.67 -2.1618282 -2.68 -2.1754647 -2.69 -2.1850236 -2.7 -2.1914617 -2.71 -2.1951648 -2.72 -2.1960749 -2.73 -2.195297 -2.74 -2.1934203 -2.75 -2.1908563 -2.76 -2.1878697 -2.77 -2.1845863 -2.78 -2.1809733 -2.79 -2.1768692 -2.8 -2.1720108 -2.81 -2.1661651 -2.82 -2.1586846 -2.83 -2.1489768 -2.84 -2.1368293 -2.85 -2.1220443 -2.86 -2.104471 -2.87 -2.0840975 -2.88 -2.0610718 -2.89 -2.0357178 -2.9 -2.0085242 -2.91 -1.9801344 -2.92 -1.9511547 -2.93 -1.9225118 -2.94 -1.8955181 -2.95 -1.8711675 -2.96 -1.8501703 -2.97 -1.8332574 -2.98 -1.8210587 -2.99 -1.8140285 -3 -1.8124136 -3.01 -1.816237 -3.02 -1.8252937 -3.03 -1.8392142 -3.04 -1.8574536 -3.05 -1.8789914 -3.06 -1.9028 -3.07 -1.9277964 -3.08 -1.9528925 -3.09 -1.9770281 -3.1 -1.9992169 -3.11 -2.0185993 -3.12 -2.0344762 -3.13 -2.0463478 -3.14 -2.0539162 -3.15 -2.0568897 -3.16 -2.0556887 -3.17 -2.050758 -3.18 -2.0427352 -3.19 -2.0323852 -3.2 -2.0205601 -3.21 -2.008162 -3.22 -1.9960951 -3.23 -1.9852151 -3.24 -1.9762803 -3.25 -1.969913 -3.26 -1.9666479 -3.27 -1.9667212 -3.28 -1.9701923 -3.29 -1.9768543 -3.3 -1.9862666 -3.31 -1.9978728 -3.32 -2.0109898 -3.33 -2.024837 -3.34 -2.0385782 -3.35 -2.0513737 -3.36 -2.0624151 -3.37 -2.070917 -3.38 -2.0762416 -3.39 -2.0779176 -3.4 -2.0756425 -3.41 -2.0693763 -3.42 -2.0592392 -3.43 -2.0454903 -3.44 -2.0285359 -3.45 -2.0089056 -3.46 -1.9872177 -3.47 -1.9641476 -3.48 -1.9403485 -3.49 -1.9165096 -3.5 -1.8933335 -3.51 -1.8714092 -3.52 -1.8511651 -3.53 -1.8328607 -3.54 -1.8166847 -3.55 -1.8027145 -3.56 -1.7909253 -3.57 -1.7812163 -3.58 -1.7734287 -3.59 -1.7673434 -3.6 -1.7626563 -3.61 -1.7593355 -3.62 -1.7574014 -3.63 -1.7569316 -3.64 -1.7578474 -3.65 -1.7603361 -3.66 -1.7646801 -3.67 -1.7712411 -3.68 -1.7804427 -3.69 -1.7927407 -3.7 -1.8085886 -3.71 -1.8283548 -3.72 -1.8525401 -3.73 -1.8814328 -3.74 -1.9152273 -3.75 -1.9535182 -3.76 -1.9959736 -3.77 -2.0420543 -3.78 -2.0910061 -3.79 -2.1418908 -3.8 -2.1935891 -3.81 -2.2448477 -3.82 -2.2946349 -3.83 -2.3413242 -3.84 -2.3833168 -3.85 -2.4187018 -3.86 -2.4466484 -3.87 -2.4663342 -3.88 -2.4770129 -3.89 -2.478189 -3.9 -2.4696871 -3.91 -2.4516121 -3.92 -2.424393 -3.93 -2.3888886 -3.94 -2.3460559 -3.95 -2.2969907 -3.96 -2.2428813 -3.97 -2.1855269 -3.98 -2.1267905 -3.99 -2.0682878 -4 -2.0115665 -4.01 -1.9580524 -4.02 -1.9090204 -4.03 -1.8654881 -4.04 -1.8282645 -4.05 -1.7978366 -4.06 -1.7743519 -4.07 -1.7579471 -4.08 -1.7484836 -4.09 -1.7450998 -4.1 -1.7470501 -4.11 -1.7534772 -4.12 -1.7634398 -4.13 -1.775966 -4.14 -1.7900999 -4.15 -1.8049042 -4.16 -1.8193504 -4.17 -1.8330651 -4.18 -1.8455908 -4.19 -1.8567032 -4.2 -1.8661123 -4.21 -1.8738125 -4.22 -1.8799647 -4.23 -1.8848398 -4.24 -1.8887955 -4.25 -1.8922343 -4.26 -1.8955769 -4.27 -1.899216 -4.28 -1.9035456 -4.29 -1.9088154 -4.3 -1.9151914 -4.31 -1.9226793 -4.32 -1.9311812 -4.33 -1.9404986 -4.34 -1.9503368 -4.35 -1.9603183 -4.36 -1.9700169 -4.37 -1.9789755 -4.38 -1.9866795 -4.39 -1.9927126 -4.4 -1.9967571 -4.41 -1.9985704 -4.42 -1.998045 -4.43 -1.9952045 -4.44 -1.990195 -4.45 -1.9832994 -4.46 -1.9749174 -4.47 -1.9655535 -4.48 -1.9557936 -4.49 -1.9462353 -4.5 -1.9375855 -4.51 -1.9305528 -4.52 -1.9258014 -4.53 -1.9238875 -4.54 -1.9251577 -4.55 -1.9298442 -4.56 -1.9380714 -4.57 -1.9498136 -4.58 -1.9648934 -4.59 -1.9829889 -4.6 -2.003683 -4.61 -2.0264491 -4.62 -2.050548 -4.63 -2.0752616 -4.64 -2.0998111 -4.65 -2.1234758 -4.66 -2.1456184 -4.67 -2.1656529 -4.68 -2.1830882 -4.69 -2.1975446 -4.7 -2.2087637 -4.71 -2.2166162 -4.72 -2.2211222 -4.73 -2.2223992 -4.74 -2.2206605 -4.75 -2.2160996 -4.76 -2.2090774 -4.77 -2.2001449 -4.78 -2.1897254 -4.79 -2.1782327 -4.8 -2.1660518 -4.81 -2.1535212 -4.82 -2.1409206 -4.83 -2.1286296 -4.84 -2.1166265 -4.85 -2.1049431 -4.86 -2.0935484 -4.87 -2.0823817 -4.88 -2.0714344 -4.89 -2.0606129 -4.9 -2.0498097 -4.91 -2.03893 -4.92 -2.0279016 -4.93 -2.0166904 -4.94 -2.0052172 -4.95 -1.9935577 -4.96 -1.9818812 -4.97 -1.9704032 -4.98 -1.9594194 -4.99 -1.9491136 -5 -1.9396783 -5.01 -1.931349 -5.02 -1.9243434 -5.03 -1.9188434 -5.04 -1.9149812 -5.05 -1.9128346 -5.06 -1.9124427 -5.07 -1.9137314 -5.08 -1.9165441 -5.09 -1.9206463 -5.1 -1.9257172 -5.11 -1.9314176 -5.12 -1.9373924 -5.13 -1.9432785 -5.14 -1.9487229 -5.15 -1.9534024 -5.16 -1.957027 -5.17 -1.9593148 -5.18 -1.9601599 -5.19 -1.95953 -5.2 -1.9575239 -5.21 -1.9543974 -5.22 -1.9503662 -5.23 -1.9457739 -5.24 -1.9410212 -5.25 -1.9365609 -5.26 -1.9328652 -5.27 -1.930406 -5.28 -1.9294871 -5.29 -1.9307424 -5.3 -1.9345256 -5.31 -1.94111 -5.32 -1.9508351 -5.33 -1.9634495 -5.34 -1.9788497 -5.35 -1.9968164 -5.36 -2.0170073 -5.37 -2.038985 -5.38 -2.0622271 -5.39 -2.0863356 -5.4 -2.1105379 -5.41 -2.1341168 -5.42 -2.1564028 -5.43 -2.1764605 -5.44 -2.193889 -5.45 -2.2082777 -5.46 -2.2192391 -5.47 -2.2264836 -5.48 -2.2298344 -5.49 -2.2292327 -5.5 -2.2247322 -5.51 -2.2164706 -5.52 -2.2047256 -5.53 -2.1898696 -5.54 -2.1722927 -5.55 -2.1525541 -5.56 -2.131238 -5.57 -2.1088853 -5.58 -2.0860194 -5.59 -2.0631351 -5.6 -2.0406819 -5.61 -2.0190541 -5.62 -1.9985877 -5.63 -1.9795138 -5.64 -1.9619784 -5.65 -1.946068 -5.66 -1.9317876 -5.67 -1.9190026 -5.68 -1.9075381 -5.69 -1.8971809 -5.7 -1.8876796 -5.71 -1.8787603 -5.72 -1.8701164 -5.73 -1.861355 -5.74 -1.8523119 -5.75 -1.8427836 -5.76 -1.8326457 -5.77 -1.8219292 -5.78 -1.8105726 -5.79 -1.7986016 -5.8 -1.7861741 -5.81 -1.7735258 -5.82 -1.7609709 -5.83 -1.7488954 -5.84 -1.7375514 -5.85 -1.727674 -5.86 -1.7198036 -5.87 -1.7144837 -5.88 -1.7124396 -5.89 -1.7141156 -5.9 -1.7198358 -5.91 -1.7299729 -5.92 -1.7448203 -5.93 -1.7645607 -5.94 -1.7892628 -5.95 -1.8189481 -5.96 -1.853365 -5.97 -1.8921314 -5.98 -1.9347544 -5.99 -1.9806275 -6 -2.0289605 -6.01 -2.0788307 -6.02 -2.1292818 -6.03 -2.1793145 -6.04 -2.2278998 -6.05 -2.2740108 -6.06 -2.3166941 -6.07 -2.3550173 -6.08 -2.3880964 -6.09 -2.4152034 -6.1 -2.4355713 -6.11 -2.4485486 -6.12 -2.4540086 -6.13 -2.4520695 -6.14 -2.4428523 -6.15 -2.4266481 -6.16 -2.4039076 -6.17 -2.3753226 -6.18 -2.3417206 -6.19 -2.3036928 -6.2 -2.2620957 -6.21 -2.2177758 -6.22 -2.1715649 -6.23 -2.1244169 -6.24 -2.0773284 -6.25 -2.0310171 -6.26 -1.9860992 -6.27 -1.9430654 -6.28 -1.9022812 -6.29 -1.8639011 -6.3 -1.8280499 -6.31 -1.7947436 -6.32 -1.763927 -6.33 -1.735574 -6.34 -1.7096367 -6.35 -1.6856332 -6.36 -1.6633517 -6.37 -1.6426124 -6.38 -1.6232974 -6.39 -1.6053674 -6.4 -1.5886682 -6.41 -1.5735676 -6.42 -1.5603489 -6.43 -1.5493587 -6.44 -1.5410888 -6.45 -1.5362723 -6.46 -1.5352079 -6.47 -1.53841 -6.48 -1.5464035 -6.49 -1.5596583 -6.5 -1.5785593 -6.51 -1.6033196 -6.52 -1.634094 -6.53 -1.6708745 -6.54 -1.7134554 -6.55 -1.761482 -6.56 -1.8146192 -6.57 -1.871878 -6.58 -1.9322023 -6.59 -1.994534 -6.6 -2.0577226 -6.61 -2.1205473 -6.62 -2.1817774 -6.63 -2.240233 -6.64 -2.2947498 -6.65 -2.3442515 -6.66 -2.3877763 -6.67 -2.4241465 -6.68 -2.4525756 -6.69 -2.4730013 -6.7 -2.4852571 -6.71 -2.4894132 -6.72 -2.485686 -6.73 -2.4746138 -6.74 -2.4569587 -6.75 -2.433132 -6.76 -2.4039297 -6.77 -2.3702336 -6.78 -2.3328454 -6.79 -2.2925894 -6.8 -2.2507985 -6.81 -2.2083739 -6.82 -2.1661132 -6.83 -2.1247143 -6.84 -2.0847746 -6.85 -2.046766 -6.86 -2.0110003 -6.87 -1.97776 -6.88 -1.9472324 -6.89 -1.9195357 -6.9 -1.8949836 -6.91 -1.8733204 -6.92 -1.8544213 -6.93 -1.8381947 -6.94 -1.8245475 -6.95 -1.8133967 -6.96 -1.8045902 -6.97 -1.7981787 -6.98 -1.794154 -6.99 -1.7925074 -7 -1.7932405 -7.01 -1.7964873 -7.02 -1.8021741 -7.03 -1.8102223 -7.04 -1.82058 -7.05 -1.833164 -7.06 -1.8478401 -7.07 -1.8643882 -7.08 -1.882558 -7.09 -1.9020629 -7.1 -1.9225498 -7.11 -1.9436235 -7.12 -1.9649004 -7.13 -1.9859109 -7.14 -2.0061491 -7.15 -2.0251567 -7.16 -2.0425215 -7.17 -2.0578752 -7.18 -2.0708543 -7.19 -2.081214 -7.2 -2.0888939 -7.21 -2.0938339 -7.22 -2.0960626 -7.23 -2.095661 -7.24 -2.0927961 -7.25 -2.0877684 -7.26 -2.0809321 -7.27 -2.0726565 -7.28 -2.0633302 -7.29 -2.053348 -7.3 -2.0430941 -7.31 -2.0329242 -7.32 -2.023146 -7.33 -2.0140145 -7.34 -2.0057364 -7.35 -1.99849 -7.36 -1.9923369 -7.37 -1.9872367 -7.38 -1.9831284 -7.39 -1.9799043 -7.4 -1.9774232 -7.41 -1.9754533 -7.42 -1.973889 -7.43 -1.9725743 -7.44 -1.9713768 -7.45 -1.9701944 -7.46 -1.9689953 -7.47 -1.9677789 -7.48 -1.9665503 -7.49 -1.9654112 -7.5 -1.9645057 -7.51 -1.9640222 -7.52 -1.9641479 -7.53 -1.9651485 -7.54 -1.9672725 -7.55 -1.9707476 -7.56 -1.9757767 -7.57 -1.9825633 -7.58 -1.9912645 -7.59 -2.0018569 -7.6 -2.0142845 -7.61 -2.028436 -7.62 -2.0441255 -7.63 -2.0611068 -7.64 -2.0790564 -7.65 -2.0975766 -7.66 -2.1162301 -7.67 -2.1345427 -7.68 -2.1519937 -7.69 -2.1679956 -7.7 -2.1820488 -7.71 -2.1937511 -7.72 -2.2026938 -7.73 -2.2085255 -7.74 -2.2109873 -7.75 -2.209891 -7.76 -2.2050618 -7.77 -2.1964554 -7.78 -2.1841128 -7.79 -2.1681448 -7.8 -2.1486724 -7.81 -2.1259769 -7.82 -2.1005865 -7.83 -2.0729192 -7.84 -2.0434383 -7.85 -2.0126416 -7.86 -1.9810373 -7.87 -1.9491718 -7.88 -1.9175967 -7.89 -1.8868597 -7.9 -1.8575034 -7.91 -1.8300915 -7.92 -1.805296 -7.93 -1.7834155 -7.94 -1.7648619 -7.95 -1.7500002 -7.96 -1.7391454 -7.97 -1.7324988 -7.98 -1.7303061 -7.99 -1.7327033 -8 -1.7397501 -8.01 -1.751435 -8.02 -1.7676694 -8.03 -1.78867 -8.04 -1.8137803 -8.05 -1.8426253 -8.06 -1.8747844 -8.07 -1.9097623 -8.08 -1.9469806 -8.09 -1.9858528 -8.1 -2.0257311 -8.11 -2.0659202 -8.12 -2.1056964 -8.13 -2.1443285 -8.14 -2.1809081 -8.15 -2.2147144 -8.16 -2.2451333 -8.17 -2.2715638 -8.18 -2.2934638 -8.19 -2.310455 -8.2 -2.322187 -8.21 -2.3283077 -8.22 -2.3286501 -8.23 -2.3231516 -8.24 -2.3118626 -8.25 -2.2947091 -8.26 -2.2719665 -8.27 -2.2442831 -8.28 -2.2121975 -8.29 -2.176272 -8.3 -2.1371521 -8.31 -2.0955125 -8.32 -2.0520207 -8.33 -2.0074296 -8.34 -1.9625082 -8.35 -1.9180267 -8.36 -1.874802 -8.37 -1.833732 -8.38 -1.7954484 -8.39 -1.7605504 -8.4 -1.7296165 -8.41 -1.7031521 -8.42 -1.6815099 -8.43 -1.6651765 -8.44 -1.6544428 -8.45 -1.6495101 -8.46 -1.6504846 -8.47 -1.6574003 -8.48 -1.6704208 -8.49 -1.689168 -8.5 -1.7131798 -8.51 -1.7420538 -8.52 -1.7752948 -8.53 -1.8123446 -8.54 -1.8525153 -8.55 -1.8950553 -8.56 -1.9391521 -8.57 -1.9839449 -8.58 -2.02854 -8.59 -2.071918 -8.6 -2.1131214 -8.61 -2.1512988 -8.62 -2.1856292 -8.63 -2.2153482 -8.64 -2.2398012 -8.65 -2.2584184 -8.66 -2.2707509 -8.67 -2.2765001 -8.68 -2.2755185 -8.69 -2.2678164 -8.7 -2.2533938 -8.71 -2.2325128 -8.72 -2.2058795 -8.73 -2.1742527 -8.74 -2.1384209 -8.75 -2.0993158 -8.76 -2.0579193 -8.77 -2.0152076 -8.78 -1.9722345 -8.79 -1.9300543 -8.8 -1.889692 -8.81 -1.8521756 -8.82 -1.8185237 -8.83 -1.7895363 -8.84 -1.7657623 -8.85 -1.7476812 -8.86 -1.7355983 -8.87 -1.7296157 -8.88 -1.7297783 -8.89 -1.7359328 -8.9 -1.7477771 -8.91 -1.7648765 -8.92 -1.7867074 -8.93 -1.8127184 -8.94 -1.842163 -8.95 -1.8740278 -8.96 -1.9075055 -8.97 -1.9417921 -8.98 -1.9760823 -8.99 -2.0097049 -9 -2.0419875 -9.01 -2.0723318 -9.02 -2.1002232 -9.03 -2.1252351 -9.04 -2.1469545 -9.05 -2.1649647 -9.06 -2.1793686 -9.07 -2.1901303 -9.08 -2.1972885 -9.09 -2.2010135 -9.1 -2.2014109 -9.11 -2.1986666 -9.12 -2.1930177 -9.13 -2.1847302 -9.14 -2.1740843 -9.15 -2.1613555 -9.16 -2.1467625 -9.17 -2.1307266 -9.18 -2.1135708 -9.19 -2.0955853 -9.2 -2.0770597 -9.21 -2.058266 -9.22 -2.039476 -9.23 -2.0209619 -9.24 -2.0029937 -9.25 -1.9858354 -9.26 -1.9697507 -9.27 -1.955056 -9.28 -1.9419927 -9.29 -1.9307302 -9.3 -1.9214607 -9.31 -1.9143306 -9.32 -1.9094502 -9.33 -1.9069057 -9.34 -1.9067196 -9.35 -1.9088581 -9.36 -1.9132386 -9.37 -1.9197101 -9.38 -1.928107 -9.39 -1.9381673 -9.4 -1.9494331 -9.41 -1.961518 -9.42 -1.973993 -9.43 -1.9863746 -9.44 -1.9982651 -9.45 -2.0092222 -9.46 -2.0188259 -9.47 -2.026696 -9.48 -2.0325034 -9.49 -2.0359636 -9.5 -2.0367957 -9.51 -2.0350066 -9.52 -2.0306233 -9.53 -2.0237594 -9.54 -2.0145788 -9.55 -2.0034215 -9.56 -1.9906679 -9.57 -1.9767669 -9.58 -1.9622221 -9.59 -1.947575 -9.6 -1.9333871 -9.61 -1.9203539 -9.62 -1.9089715 -9.63 -1.8997005 -9.64 -1.8929623 -9.65 -1.8890628 -9.66 -1.8882685 -9.67 -1.8907317 -9.68 -1.8964798 -9.69 -1.9054234 -9.7 -1.9173617 -9.71 -1.9319807 -9.72 -1.948945 -9.73 -1.9676727 -9.74 -1.9875061 -9.75 -2.0077932 -9.76 -2.0278576 -9.77 -2.047019 -9.78 -2.0646175 -9.79 -2.0800168 -9.8 -2.0926322 -9.81 -2.1019508 -9.82 -2.1075457 -9.83 -2.1089866 -9.84 -2.1060119 -9.85 -2.0986324 -9.86 -2.0869445 -9.87 -2.0711061 -9.88 -2.0513882 -9.89 -2.0282061 -9.9 -2.0020533 -9.91 -1.9735105 -9.92 -1.943231 -9.93 -1.9119255 -9.94 -1.8803608 -9.95 -1.8493885 -9.96 -1.8198144 -9.97 -1.7923827 -9.98 -1.7678148 -9.99 -1.746753 -10 -1.7298436 -10.01 -1.717623 -10.02 -1.7105387 -10.03 -1.7089431 -10.04 -1.7130838 -10.05 -1.7231239 -10.06 -1.7392867 -10.07 -1.7614515 -10.08 -1.7891563 -10.09 -1.8220601 -10.1 -1.8597344 -10.11 -1.9016527 -10.12 -1.9471855 -10.13 -1.9956245 -10.14 -2.0461933 -10.15 -2.0980599 -10.16 -2.1503569 -10.17 -2.2020615 -10.18 -2.2521222 -10.19 -2.2997368 -10.2 -2.3440662 -10.21 -2.384499 -10.22 -2.4202314 -10.23 -2.4505139 -10.24 -2.474787 -10.25 -2.4925999 -10.26 -2.5036221 -10.27 -2.5076497 -10.28 -2.5044538 -10.29 -2.4938428 -10.3 -2.4763595 -10.31 -2.4525684 -10.32 -2.4230576 -10.33 -2.3884141 -10.34 -2.3492267 -10.35 -2.3062746 -10.36 -2.2604049 -10.37 -2.2125023 -10.38 -2.1634708 -10.39 -2.114221 -10.4 -2.0656794 -10.41 -2.0187561 -10.42 -1.9741979 -10.43 -1.9326602 -10.44 -1.894687 -10.45 -1.8607362 -10.46 -1.8311473 -10.47 -1.806141 -10.48 -1.7858189 -10.49 -1.770168 -10.5 -1.7590845 -10.51 -1.7524621 -10.52 -1.7501128 -10.53 -1.751393 -10.54 -1.7558732 -10.55 -1.7629742 -10.56 -1.772332 -10.57 -1.783478 -10.58 -1.7959607 -10.59 -1.8093511 -10.6 -1.8232782 -10.61 -1.8374061 -10.62 -1.8514628 -10.63 -1.8653657 -10.64 -1.8787785 -10.65 -1.8916068 -10.66 -1.9036507 -10.67 -1.9150198 -10.68 -1.9257723 -10.69 -1.9359538 -10.7 -1.9456387 -10.71 -1.9548782 -10.72 -1.9637491 -10.73 -1.9722898 -10.74 -1.9805927 -10.75 -1.9886215 -10.76 -1.9963402 -10.77 -2.0036689 -10.78 -2.0105571 -10.79 -2.0169381 -10.8 -2.0227008 -10.81 -2.0277169 -10.82 -2.0318521 -10.83 -2.0349703 -10.84 -2.0369419 -10.85 -2.0376358 -10.86 -2.0369512 -10.87 -2.0348261 -10.88 -2.03119 -10.89 -2.0260262 -10.9 -2.0194194 -10.91 -2.0114433 -10.92 -2.0022106 -10.93 -1.9918707 -10.94 -1.9806076 -10.95 -1.9686386 -10.96 -1.9562145 -10.97 -1.9436289 -10.98 -1.9311676 -10.99 -1.9191308 -11 -1.9078131 -11.01 -1.8975376 -11.02 -1.8886023 -11.03 -1.881289 -11.04 -1.875858 -11.05 -1.8725482 -11.06 -1.871563 -11.07 -1.8731013 -11.08 -1.8774057 -11.09 -1.8844523 -11.1 -1.894194 -11.11 -1.9065511 -11.12 -1.9214406 -11.13 -1.938687 -11.14 -1.9580508 -11.15 -1.9792287 -11.16 -2.001857 -11.17 -2.0255159 -11.18 -2.0497357 -11.19 -2.0739401 -11.2 -2.0975506 -11.21 -2.1200119 -11.22 -2.1408269 -11.23 -2.1594252 -11.24 -2.1752785 -11.25 -2.1879204 -11.26 -2.1969524 -11.27 -2.2020543 -11.28 -2.203005 -11.29 -2.1996835 -11.3 -2.1919248 -11.31 -2.1798558 -11.32 -2.1639018 -11.33 -2.1445341 -11.34 -2.1222362 -11.35 -2.0975773 -11.36 -2.0712434 -11.37 -2.0439865 -11.38 -2.0166024 -11.39 -1.9899033 -11.4 -1.9646923 -11.41 -1.9417877 -11.42 -1.9219682 -11.43 -1.9058281 -11.44 -1.8938367 -11.45 -1.8863697 -11.46 -1.8835871 -11.47 -1.8855332 -11.48 -1.8920973 -11.49 -1.9030117 -11.5 -1.9178621 -11.51 -1.9361023 -11.52 -1.9570805 -11.53 -1.980037 -11.54 -2.0040986 -11.55 -2.0283879 -11.56 -2.0520881 -11.57 -2.0743518 -11.58 -2.0944364 -11.59 -2.1116938 -11.6 -2.125585 -11.61 -2.135705 -11.62 -2.1417884 -11.63 -2.1437051 -11.64 -2.141387 -11.65 -2.1349342 -11.66 -2.1248924 -11.67 -2.11177 -11.68 -2.0960589 -11.69 -2.0783554 -11.7 -2.0592973 -11.71 -2.0395317 -11.72 -2.0196926 -11.73 -2.0003729 -11.74 -1.9821028 -11.75 -1.9653475 -11.76 -1.9505148 -11.77 -1.9378362 -11.78 -1.9274578 -11.79 -1.9193433 -11.8 -1.9133872 -11.81 -1.9094095 -11.82 -1.9071575 -11.83 -1.9063235 -11.84 -1.9065647 -11.85 -1.9075234 -11.86 -1.9088603 -11.87 -1.9103268 -11.88 -1.911561 -11.89 -1.9122096 -11.9 -1.912113 -11.91 -1.9112795 -11.92 -1.9097042 -11.93 -1.9074531 -11.94 -1.904658 -11.95 -1.9015023 -11.96 -1.898212 -11.97 -1.8950397 -11.98 -1.8922802 -11.99 -1.8901954 -12 -1.8889917 -12.01 -1.8888818 -12.02 -1.8900114 -12.03 -1.8924675 -12.04 -1.896285 -12.05 -1.9014145 -12.06 -1.9077543 -12.07 -1.9151487 -12.08 -1.9233879 -12.09 -1.9322541 -12.1 -1.9415065 -12.11 -1.9507824 -12.12 -1.9596962 -12.13 -1.9680622 -12.14 -1.9756424 -12.15 -1.9822379 -12.16 -1.987697 -12.17 -1.9919185 -12.18 -1.9948564 -12.19 -1.9965192 -12.2 -1.9969627 -12.21 -1.9962389 -12.22 -1.99453 -12.23 -1.9920581 -12.24 -1.989035 -12.25 -1.9856694 -12.26 -1.9821715 -12.27 -1.9787442 -12.28 -1.9755701 -12.29 -1.9728137 -12.3 -1.9706101 -12.31 -1.969065 -12.32 -1.9682569 -12.33 -1.9682585 -12.34 -1.9691089 -12.35 -1.9707718 -12.36 -1.9732082 -12.37 -1.9763823 -12.38 -1.9802534 -12.39 -1.9847711 -12.4 -1.9898917 -12.41 -1.9955686 -12.42 -2.0017604 -12.43 -2.0084582 -12.44 -2.0156042 -12.45 -2.0231123 -12.46 -2.0309443 -12.47 -2.0390608 -12.48 -2.0473925 -12.49 -2.0558566 -12.5 -2.0643513 -12.51 -2.072753 -12.52 -2.0809225 -12.53 -2.0887008 -12.54 -2.0958609 -12.55 -2.1021628 -12.56 -2.1075111 -12.57 -2.11185 -12.58 -2.114917 -12.59 -2.1165831 -12.6 -2.1167527 -12.61 -2.1153764 -12.62 -2.1124526 -12.63 -2.1080359 -12.64 -2.1022363 -12.65 -2.0952154 -12.66 -2.0871877 -12.67 -2.0784594 -12.68 -2.0693605 -12.69 -2.0602397 -12.7 -2.0514533 -12.71 -2.0433596 -12.72 -2.0362956 -12.73 -2.0305713 -12.74 -2.0264473 -12.75 -2.0241281 -12.76 -2.0237472 -12.77 -2.0253849 -12.78 -2.0290023 -12.79 -2.0345134 -12.8 -2.0416644 -12.81 -2.0501529 -12.82 -2.0596314 -12.83 -2.0697009 -12.84 -2.0799255 -12.85 -2.0898501 -12.86 -2.0990172 -12.87 -2.1069848 -12.88 -2.1132948 -12.89 -2.1175341 -12.9 -2.1194816 -12.91 -2.1189309 -12.92 -2.1157545 -12.93 -2.1099166 -12.94 -2.1014651 -12.95 -2.0905301 -12.96 -2.0773182 -12.97 -2.0621033 -12.98 -2.0452128 -12.99 -2.0270208 -13 -2.0079469 -13.01 -1.9883979 -13.02 -1.9687583 -13.03 -1.9494631 -13.04 -1.9308682 -13.05 -1.913293 -13.06 -1.8970164 -13.07 -1.8822663 -13.08 -1.8692254 -13.09 -1.8580248 -13.1 -1.8487714 -13.11 -1.8416147 -13.12 -1.836574 -13.13 -1.8334269 -13.14 -1.8322295 -13.15 -1.8329358 -13.16 -1.8354961 -13.17 -1.8398458 -13.18 -1.8459382 -13.19 -1.8536984 -13.2 -1.8630764 -13.21 -1.8740022 -13.22 -1.8864541 -13.23 -1.9004389 -13.24 -1.9155911 -13.25 -1.931881 -13.26 -1.9491593 -13.27 -1.9672429 -13.28 -1.9859218 -13.29 -2.0049522 -13.3 -2.0240641 -13.31 -2.0429688 -13.32 -2.0613593 -13.33 -2.0789145 -13.34 -2.0952153 -13.35 -2.1100267 -13.36 -2.1230794 -13.37 -2.1341255 -13.38 -2.1429606 -13.39 -2.1494526 -13.4 -2.1535133 -13.41 -2.1551159 -13.42 -2.1542909 -13.43 -2.1511291 -13.44 -2.1457711 -13.45 -2.1382868 -13.46 -2.1290143 -13.47 -2.1182528 -13.48 -2.1062457 -13.49 -2.0932484 -13.5 -2.0794948 -13.51 -2.065198 -13.52 -2.0505338 -13.53 -2.0356356 -13.54 -2.020595 -13.55 -2.0054583 -13.56 -1.9902423 -13.57 -1.9749152 -13.58 -1.9593721 -13.59 -1.9435735 -13.6 -1.927452 -13.61 -1.9109613 -13.62 -1.8940849 -13.63 -1.8768538 -13.64 -1.8593549 -13.65 -1.8417409 -13.66 -1.8242346 -13.67 -1.8071714 -13.68 -1.7909892 -13.69 -1.7760055 -13.7 -1.7627687 -13.71 -1.751793 -13.72 -1.7436039 -13.73 -1.7387152 -13.74 -1.7376053 -13.75 -1.7406948 -13.76 -1.7483229 -13.77 -1.7607272 -13.78 -1.778049 -13.79 -1.8004571 -13.8 -1.8276657 -13.81 -1.8592241 -13.82 -1.8946577 -13.83 -1.9333601 -13.84 -1.9746105 -13.85 -2.0175936 -13.86 -2.0614206 -13.87 -2.1051594 -13.88 -2.1478705 -13.89 -2.1886224 -13.9 -2.2263129 -13.91 -2.2602122 -13.92 -2.2897181 -13.93 -2.3142693 -13.94 -2.33347 -13.95 -2.3470786 -13.96 -2.3550151 -13.97 -2.3573505 -13.98 -2.3543046 -13.99 -2.3462409 -14 -2.3336373 -14.01 -2.3168812 -14.02 -2.2967204 -14.03 -2.274078 -14.04 -2.2495923 -14.05 -2.2239486 -14.06 -2.1977905 -14.07 -2.1717019 -14.08 -2.1462019 -14.09 -2.12171 -14.1 -2.0985512 -14.11 -2.0769592 -14.12 -2.0570908 -14.13 -2.0390382 -14.14 -2.0227331 -14.15 -2.0080149 -14.16 -1.9947225 -14.17 -1.9826643 -14.18 -1.9716334 -14.19 -1.9614174 -14.2 -1.9518213 -14.21 -1.9426669 -14.22 -1.9338104 -14.23 -1.9251446 -14.24 -1.9166065 -14.25 -1.9081364 -14.26 -1.8997474 -14.27 -1.8914663 -14.28 -1.8833355 -14.29 -1.8754062 -14.3 -1.8677289 -14.31 -1.8603435 -14.32 -1.853276 -14.33 -1.8465296 -14.34 -1.8400865 -14.35 -1.8339449 -14.36 -1.8279913 -14.37 -1.8221134 -14.38 -1.8162394 -14.39 -1.810279 -14.4 -1.804152 -14.41 -1.7977995 -14.42 -1.7911952 -14.43 -1.7843509 -14.44 -1.7773305 -14.45 -1.7702462 -14.46 -1.7633036 -14.47 -1.7567394 -14.48 -1.7507677 -14.49 -1.7457516 -14.5 -1.7420354 -14.51 -1.7399761 -14.52 -1.7399248 -14.53 -1.7422134 -14.54 -1.7471357 -14.55 -1.7549322 -14.56 -1.76577 -14.57 -1.7797509 -14.58 -1.7969914 -14.59 -1.8172976 -14.6 -1.8403661 -14.61 -1.8658733 -14.62 -1.8934052 -14.63 -1.922472 -14.64 -1.9525214 -14.65 -1.982959 -14.66 -2.013168 -14.67 -2.0425337 -14.68 -2.0704627 -14.69 -2.0963332 -14.7 -2.1195909 -14.71 -2.1399357 -14.72 -2.1571002 -14.73 -2.1709341 -14.74 -2.1813965 -14.75 -2.1885625 -14.76 -2.1926202 -14.77 -2.1938572 -14.78 -2.1926534 -14.79 -2.189454 -14.8 -2.1847194 -14.81 -2.1790382 -14.82 -2.1729811 -14.83 -2.1670681 -14.84 -2.1617606 -14.85 -2.15746 -14.86 -2.1544835 -14.87 -2.1530606 -14.88 -2.1533192 -14.89 -2.1552836 -14.9 -2.1588763 -14.91 -2.16392 -14.92 -2.1701942 -14.93 -2.1772852 -14.94 -2.1847599 -14.95 -2.1921723 -14.96 -2.1990563 -14.97 -2.2049526 -14.98 -2.2094176 -14.99 -2.2120487 -15 -2.2124971 -15.01 -2.2104813 -15.02 -2.2057984 -15.03 -2.1981984 -15.04 -2.1877209 -15.05 -2.1744778 -15.06 -2.1586449 -15.07 -2.1404525 -15.08 -2.1201924 -15.09 -2.098212 -15.1 -2.0748978 -15.11 -2.050664 -15.12 -2.0259371 -15.13 -2.0011412 -15.14 -1.9767204 -15.15 -1.9530679 -15.16 -1.930559 -15.17 -1.9094779 -15.18 -1.8900774 -15.19 -1.8725583 -15.2 -1.8570698 -15.21 -1.8437076 -15.22 -1.8325225 -15.23 -1.8235176 -15.24 -1.8166587 -15.25 -1.8119134 -15.26 -1.8091836 -15.27 -1.8083684 -15.28 -1.8092605 -15.29 -1.8117099 -15.3 -1.8155713 -15.31 -1.8206952 -15.32 -1.8269304 -15.33 -1.8341336 -15.34 -1.8421674 -15.35 -1.8508953 -15.36 -1.8602044 -15.37 -1.8699372 -15.38 -1.8800455 -15.39 -1.8903627 -15.4 -1.9007922 -15.41 -1.9112312 -15.42 -1.9215768 -15.43 -1.9317339 -15.44 -1.9416068 -15.45 -1.9511048 -15.46 -1.9601428 -15.47 -1.9686411 -15.48 -1.9764659 -15.49 -1.9836233 -15.5 -1.9900534 -15.51 -1.9957165 -15.52 -2.0005911 -15.53 -2.0046715 -15.54 -2.007969 -15.55 -2.0105117 -15.56 -2.0123438 -15.57 -2.0135252 -15.58 -2.0141307 -15.59 -2.0142499 -15.6 -2.0139651 -15.61 -2.0133971 -15.62 -2.0126675 -15.63 -2.0118892 -15.64 -2.0111707 -15.65 -2.010616 -15.66 -2.0103199 -15.67 -2.0103647 -15.68 -2.0108193 -15.69 -2.0117387 -15.7 -2.013157 -15.71 -2.0151061 -15.72 -2.0175942 -15.73 -2.0205721 -15.74 -2.0239992 -15.75 -2.0278198 -15.76 -2.0319656 -15.77 -2.0363576 -15.78 -2.0409104 -15.79 -2.0455339 -15.8 -2.0501383 -15.81 -2.0546349 -15.82 -2.0589868 -15.83 -2.0630089 -15.84 -2.0667009 -15.85 -2.0700153 -15.86 -2.0729214 -15.87 -2.075399 -15.88 -2.0774455 -15.89 -2.0790665 -15.9 -2.080282 -15.91 -2.0811171 -15.92 -2.0816008 -15.93 -2.0817997 -15.94 -2.0816583 -15.95 -2.0812578 -15.96 -2.0806159 -15.97 -2.0797362 -15.98 -2.0786118 -15.99 -2.0772232 -16 -2.0755388 -16.01 -2.0735122 -16.02 -2.0710928 -16.03 -2.0682222 -16.04 -2.0648812 -16.05 -2.0608865 -16.06 -2.0562519 -16.07 -2.0509649 -16.08 -2.0450163 -16.09 -2.0384246 -16.1 -2.0312318 -16.11 -2.0235176 -16.12 -2.0153918 -16.13 -2.0069959 -16.14 -1.9985032 -16.15 -1.9901159 -16.16 -1.9820772 -16.17 -1.9746377 -16.18 -1.9680341 -16.19 -1.9624956 -16.2 -1.9582402 -16.21 -1.9554557 -16.22 -1.9542922 -16.23 -1.9548515 -16.24 -1.9571836 -16.25 -1.9612746 -16.26 -1.9670534 -16.27 -1.9744209 -16.28 -1.9831166 -16.29 -1.9928226 -16.3 -2.0031964 -16.31 -2.013861 -16.32 -2.0244098 -16.33 -2.0344212 -16.34 -2.043473 -16.35 -2.0511597 -16.36 -2.0571073 -16.37 -2.0609885 -16.38 -2.0624332 -16.39 -2.0612669 -16.4 -2.0574372 -16.41 -2.0509561 -16.42 -2.0419035 -16.43 -2.0304455 -16.44 -2.0168293 -16.45 -2.0013741 -16.46 -1.9844585 -16.47 -1.9665079 -16.48 -1.9479763 -16.49 -1.9293288 -16.5 -1.9110923 -16.51 -1.8937098 -16.52 -1.877569 -16.53 -1.8630119 -16.54 -1.8503186 -16.55 -1.8396994 -16.56 -1.831293 -16.57 -1.8251678 -16.58 -1.8213242 -16.59 -1.8197021 -16.6 -1.8201638 -16.61 -1.8226316 -16.62 -1.8269548 -16.63 -1.8328848 -16.64 -1.84023 -16.65 -1.8488378 -16.66 -1.8585845 -16.67 -1.8693853 -16.68 -1.8811973 -16.69 -1.894021 -16.7 -1.9078971 -16.71 -1.9228648 -16.72 -1.9390807 -16.73 -1.9567575 -16.74 -1.9759342 -16.75 -1.9966519 -16.76 -2.0189518 -16.77 -2.0428192 -16.78 -2.0681707 -16.79 -2.0948422 -16.8 -2.1225827 -16.81 -2.1510484 -16.82 -2.1798429 -16.83 -2.2085615 -16.84 -2.2362801 -16.85 -2.2623279 -16.86 -2.2861249 -16.87 -2.3069775 -16.88 -2.3242085 -16.89 -2.3371846 -16.9 -2.3453462 -16.91 -2.3482294 -16.92 -2.3454892 -16.93 -2.336919 -16.94 -2.3224268 -16.95 -2.3019972 -16.96 -2.2758729 -16.97 -2.2447585 -16.98 -2.2092568 -16.99 -2.1700959 -17 -2.1281082 -17.01 -2.0842024 -17.02 -2.0393325 -17.03 -1.9944666 -17.04 -1.9505522 -17.05 -1.9085137 -17.06 -1.8692059 -17.07 -1.8334591 -17.08 -1.8017205 -17.09 -1.7743796 -17.1 -1.751682 -17.11 -1.7337135 -17.12 -1.7204079 -17.13 -1.71156 -17.14 -1.7068377 -17.15 -1.7058084 -17.16 -1.7078575 -17.17 -1.7124336 -17.18 -1.7192467 -17.19 -1.7275476 -17.2 -1.7367208 -17.21 -1.7463028 -17.22 -1.7559131 -17.23 -1.7652653 -17.24 -1.7741785 -17.25 -1.7825773 -17.26 -1.7904878 -17.27 -1.7979926 -17.28 -1.8052899 -17.29 -1.8128022 -17.3 -1.8208125 -17.31 -1.8295976 -17.32 -1.8394735 -17.33 -1.8507241 -17.34 -1.8635821 -17.35 -1.8782117 -17.36 -1.8946938 -17.37 -1.9130212 -17.38 -1.9330994 -17.39 -1.9547794 -17.4 -1.9776991 -17.41 -2.0014921 -17.42 -2.025707 -17.43 -2.0498834 -17.44 -2.0735387 -17.45 -2.0962011 -17.46 -2.1174194 -17.47 -2.1367907 -17.48 -2.1539724 -17.49 -2.1687015 -17.5 -2.1808061 -17.51 -2.1902167 -17.52 -2.1967597 -17.53 -2.2007033 -17.54 -2.2022642 -17.55 -2.201705 -17.56 -2.199339 -17.57 -2.1955171 -17.58 -2.1906027 -17.59 -2.1849588 -17.6 -2.1789237 -17.61 -2.1729667 -17.62 -2.1672469 -17.63 -2.1617131 -17.64 -2.1565859 -17.65 -2.151953 -17.66 -2.1477801 -17.67 -2.1439622 -17.68 -2.1403407 -17.69 -2.1367113 -17.7 -2.1328402 -17.71 -2.1284818 -17.72 -2.1233863 -17.73 -2.1173057 -17.74 -2.1100197 -17.75 -2.101394 -17.76 -2.0913692 -17.77 -2.0799302 -17.78 -2.0671206 -17.79 -2.0530534 -17.8 -2.0378963 -17.81 -2.0218719 -17.82 -2.0052461 -17.83 -1.9883267 -17.84 -1.9714609 -17.85 -1.9549294 -17.86 -1.9390452 -17.87 -1.9240986 -17.88 -1.9103321 -17.89 -1.8979361 -17.9 -1.8870488 -17.91 -1.8777506 -17.92 -1.8700653 -17.93 -1.8639608 -17.94 -1.8593526 -17.95 -1.8560136 -17.96 -1.8538788 -17.97 -1.8528597 -17.98 -1.8527308 -17.99 -1.8532317 -18 -1.8541849 -18.01 -1.855432 -18.02 -1.8568453 -18.03 -1.8583317 -18.04 -1.8598359 -18.05 -1.8613418 -18.06 -1.8627773 -18.07 -1.8643033 -18.08 -1.8660662 -18.09 -1.8681618 -18.1 -1.8706501 -18.11 -1.8736489 -18.12 -1.8772714 -18.13 -1.8816163 -18.14 -1.8867597 -18.15 -1.8927552 -18.16 -1.8996234 -18.17 -1.9073486 -18.18 -1.9158796 -18.19 -1.9251708 -18.2 -1.9351438 -18.21 -1.945645 -18.22 -1.9565343 -18.23 -1.9676734 -18.24 -1.9789262 -18.25 -1.9901649 -18.26 -2.001275 -18.27 -2.0121621 -18.28 -2.022745 -18.29 -2.0329913 -18.3 -2.0429009 -18.31 -2.0524592 -18.32 -2.0616876 -18.33 -2.0706402 -18.34 -2.0793748 -18.35 -2.0879527 -18.36 -2.0964355 -18.37 -2.1048761 -18.38 -2.1133137 -18.39 -2.1217909 -18.4 -2.1303877 -18.41 -2.1389536 -18.42 -2.1473773 -18.43 -2.155568 -18.44 -2.1634795 -18.45 -2.1709824 -18.46 -2.1779336 -18.47 -2.1841811 -18.48 -2.189569 -18.49 -2.1939463 -18.5 -2.1971741 -18.51 -2.1991803 -18.52 -2.1998121 -18.53 -2.1989587 -18.54 -2.1964986 -18.55 -2.1925402 -18.56 -2.1871056 -18.57 -2.180248 -18.58 -2.1720453 -18.59 -2.162598 -18.6 -2.1520254 -18.61 -2.1404595 -18.62 -2.1281122 -18.63 -2.1150664 -18.64 -2.1014218 -18.65 -2.087221 -18.66 -2.0727052 -18.67 -2.0579886 -18.68 -2.0431679 -18.69 -2.0283263 -18.7 -2.0135383 -18.71 -1.9988691 -18.72 -1.9843862 -18.73 -1.9700944 -18.74 -1.9560332 -18.75 -1.9423082 -18.76 -1.9291195 -18.77 -1.9164924 -18.78 -1.9044726 -18.79 -1.8931544 -18.8 -1.8826394 -18.81 -1.873031 -18.82 -1.8644354 -18.83 -1.8569532 -18.84 -1.8506428 -18.85 -1.8455561 -18.86 -1.841824 -18.87 -1.8395618 -18.88 -1.8387537 -18.89 -1.8392836 -18.9 -1.8410708 -18.91 -1.8440078 -18.92 -1.8479583 -18.93 -1.8527566 -18.94 -1.8582128 -18.95 -1.8641102 -18.96 -1.8701419 -18.97 -1.8761803 -18.98 -1.8820537 -18.99 -1.887612 -19 -1.8926509 -19.01 -1.8970446 -19.02 -1.9007238 -19.03 -1.9036684 -19.04 -1.9059101 -19.05 -1.9075305 -19.06 -1.9086627 -19.07 -1.9093926 -19.08 -1.9100499 -19.09 -1.9109035 -19.1 -1.9122778 -19.11 -1.9144102 -19.12 -1.9175459 -19.13 -1.921934 -19.14 -1.9277956 -19.15 -1.9353103 -19.16 -1.9446061 -19.17 -1.9557531 -19.18 -1.9688076 -19.19 -1.9836886 -19.2 -2.0002428 -19.21 -2.0182772 -19.22 -2.0375096 -19.23 -2.0576109 -19.24 -2.0782272 -19.25 -2.0989752 -19.26 -2.119453 -19.27 -2.139257 -19.28 -2.1579928 -19.29 -2.1753198 -19.3 -2.1909063 -19.31 -2.20442 -19.32 -2.2155071 -19.33 -2.2239403 -19.34 -2.2296846 -19.35 -2.2327301 -19.36 -2.2330884 -19.37 -2.2308303 -19.38 -2.2260819 -19.39 -2.2190153 -19.4 -2.2098773 -19.41 -2.1989766 -19.42 -2.1864637 -19.43 -2.172555 -19.44 -2.1574733 -19.45 -2.141545 -19.46 -2.1250777 -19.47 -2.1082897 -19.48 -2.0913729 -19.49 -2.0744897 -19.5 -2.0577732 -19.51 -2.041325 -19.52 -2.0252457 -19.53 -2.0095274 -19.54 -1.9942001 -19.55 -1.9792965 -19.56 -1.9648266 -19.57 -1.9507708 -19.58 -1.9371182 -19.59 -1.9238629 -19.6 -1.9110028 -19.61 -1.8985483 -19.62 -1.886516 -19.63 -1.8748743 -19.64 -1.8637089 -19.65 -1.8530856 -19.66 -1.8431077 -19.67 -1.8338962 -19.68 -1.8254342 -19.69 -1.8177902 -19.7 -1.8110289 -19.71 -1.805211 -19.72 -1.8003901 -19.73 -1.7966112 -19.74 -1.79385 -19.75 -1.7921601 -19.76 -1.7915974 -19.77 -1.7922077 -19.78 -1.7940905 -19.79 -1.7971431 -19.8 -1.8013447 -19.81 -1.8066974 -19.82 -1.8132053 -19.83 -1.8208777 -19.84 -1.8297268 -19.85 -1.8397522 -19.86 -1.850976 -19.87 -1.8634492 -19.88 -1.8772001 -19.89 -1.8922965 -19.9 -1.9087015 -19.91 -1.9263642 -19.92 -1.9452549 -19.93 -1.9653162 -19.94 -1.9864639 -19.95 -2.0085823 -19.96 -2.0315324 -19.97 -2.0551648 -19.98 -2.0792202 -19.99 -2.1034373 -20 -2.1274712 -20.01 -2.1509389 -20.02 -2.1735403 -20.03 -2.1949077 -20.04 -2.2146686 -20.05 -2.2324505 -20.06 -2.2478655 -20.07 -2.2606043 -20.08 -2.2704953 -20.09 -2.2771517 -20.1 -2.280358 -20.11 -2.2798763 -20.12 -2.2753772 -20.13 -2.2671585 -20.14 -2.255301 -20.15 -2.239945 -20.16 -2.2213 -20.17 -2.1996421 -20.18 -2.1753071 -20.19 -2.1487399 -20.2 -2.1203119 -20.21 -2.0904738 -20.22 -2.0597177 -20.23 -2.0285541 -20.24 -1.9975737 -20.25 -1.9672862 -20.26 -1.9381657 -20.27 -1.9106525 -20.28 -1.8851489 -20.29 -1.8620096 -20.3 -1.841496 -20.31 -1.8238555 -20.32 -1.8093045 -20.33 -1.7979716 -20.34 -1.790132 -20.35 -1.7856955 -20.36 -1.7845072 -20.37 -1.7864414 -20.38 -1.7913405 -20.39 -1.7990067 -20.4 -1.809208 -20.41 -1.8216593 -20.42 -1.8360592 -20.43 -1.8521456 -20.44 -1.8695972 -20.45 -1.8881236 -20.46 -1.9073728 -20.47 -1.9269636 -20.48 -1.9465566 -20.49 -1.9658409 -20.5 -1.9845184 -20.51 -2.0023072 -20.52 -2.018943 -20.53 -2.0341605 -20.54 -2.0477877 -20.55 -2.0596468 -20.56 -2.0695682 -20.57 -2.0773999 -20.58 -2.0831044 -20.59 -2.0866849 -20.6 -2.0881572 -20.61 -2.0875798 -20.62 -2.0850499 -20.63 -2.0807071 -20.64 -2.0747231 -20.65 -2.0673176 -20.66 -2.0587291 -20.67 -2.0492121 -20.68 -2.039029 -20.69 -2.0284927 -20.7 -2.0179301 -20.71 -2.0076288 -20.72 -1.9978694 -20.73 -1.9889094 -20.74 -1.9809824 -20.75 -1.9743093 -20.76 -1.9690349 -20.77 -1.9652658 -20.78 -1.9630807 -20.79 -1.9625611 -20.8 -1.9637095 -20.81 -1.9664118 -20.82 -1.9705616 -20.83 -1.9760257 -20.84 -1.9826403 -20.85 -1.9902189 -20.86 -1.9985417 -20.87 -2.0073985 -20.88 -2.0165975 -20.89 -2.0259351 -20.9 -2.0352135 -20.91 -2.0442404 -20.92 -2.0528329 -20.93 -2.060848 -20.94 -2.0681654 -20.95 -2.074687 -20.96 -2.0803337 -20.97 -2.085059 -20.98 -2.0888499 -20.99 -2.091638 -21 -2.0933918 -21.01 -2.0940556 -21.02 -2.0935413 -21.03 -2.0918406 -21.04 -2.0889804 -21.05 -2.0849274 -21.06 -2.079644 -21.07 -2.0730917 -21.08 -2.0652377 -21.09 -2.0560425 -21.1 -2.045463 -21.11 -2.0334977 -21.12 -2.0201731 -21.13 -2.0055462 -21.14 -1.989734 -21.15 -1.9728958 -21.16 -1.9552068 -21.17 -1.9368915 -21.18 -1.9182137 -21.19 -1.8994784 -21.2 -1.8809227 -21.21 -1.8630215 -21.22 -1.8461914 -21.23 -1.830847 -21.24 -1.8174377 -21.25 -1.8065305 -21.26 -1.7982954 -21.27 -1.7930525 -21.28 -1.7910713 -21.29 -1.7925609 -21.3 -1.7976575 -21.31 -1.8064368 -21.32 -1.818878 -21.33 -1.834865 -21.34 -1.8542009 -21.35 -1.8766162 -21.36 -1.9018884 -21.37 -1.9294498 -21.38 -1.9588115 -21.39 -1.9894719 -21.4 -2.0208984 -21.41 -2.0525485 -21.42 -2.0838899 -21.43 -2.1144093 -21.44 -2.1436286 -21.45 -2.171112 -21.46 -2.1964774 -21.47 -2.2192473 -21.48 -2.2391799 -21.49 -2.2561574 -21.5 -2.270056 -21.51 -2.2808124 -21.52 -2.2884192 -21.53 -2.2929495 -21.54 -2.294583 -21.55 -2.2933302 -21.56 -2.2893237 -21.57 -2.2827102 -21.58 -2.2735082 -21.59 -2.2618362 -21.6 -2.2480287 -21.61 -2.2322684 -21.62 -2.2146981 -21.63 -2.195451 -21.64 -2.1746532 -21.65 -2.1524758 -21.66 -2.1289264 -21.67 -2.1041224 -21.68 -2.0781934 -21.69 -2.0512853 -21.7 -2.0235997 -21.71 -1.9953514 -21.72 -1.966758 -21.73 -1.9380587 -21.74 -1.909517 -21.75 -1.8814203 -21.76 -1.8539639 -21.77 -1.8275609 -21.78 -1.8025721 -21.79 -1.7793303 -21.8 -1.7581594 -21.81 -1.7395642 -21.82 -1.7237056 -21.83 -1.7107197 -21.84 -1.7007844 -21.85 -1.6940234 -21.86 -1.6905057 -21.87 -1.6901944 -21.88 -1.6930517 -21.89 -1.6989929 -21.9 -1.7078536 -21.91 -1.7194236 -21.92 -1.7335865 -21.93 -1.750033 -21.94 -1.7683515 -21.95 -1.7882075 -21.96 -1.8092872 -21.97 -1.8312833 -21.98 -1.8538569 -21.99 -1.8767223 -22 -1.8997407 -22.01 -1.9227236 -22.02 -1.9455164 -22.03 -1.9680033 -22.04 -1.9900755 -22.05 -2.0116389 -22.06 -2.0326436 -22.07 -2.053064 -22.08 -2.0728827 -22.09 -2.0920991 -22.1 -2.1107752 -22.11 -2.12881 -22.12 -2.1461362 -22.13 -2.1626639 -22.14 -2.1782327 -22.15 -2.1926056 -22.16 -2.2056354 -22.17 -2.2172225 -22.18 -2.2271628 -22.19 -2.2352418 -22.2 -2.2412418 -22.21 -2.2450737 -22.22 -2.246396 -22.23 -2.2450353 -22.24 -2.2408538 -22.25 -2.2337466 -22.26 -2.2235833 -22.27 -2.2103627 -22.28 -2.1943259 -22.29 -2.175621 -22.3 -2.1544585 -22.31 -2.1311063 -22.32 -2.1058962 -22.33 -2.0791943 -22.34 -2.0514118 -22.35 -2.0229937 -22.36 -1.9944009 -22.37 -1.9661222 -22.38 -1.9386712 -22.39 -1.9124957 -22.4 -1.8880162 -22.41 -1.8656144 -22.42 -1.8456278 -22.43 -1.8283367 -22.44 -1.8139578 -22.45 -1.8026453 -22.46 -1.7944943 -22.47 -1.7895334 -22.48 -1.7877668 -22.49 -1.7892396 -22.5 -1.7936723 -22.51 -1.8008046 -22.52 -1.8103896 -22.53 -1.8221505 -22.54 -1.8357667 -22.55 -1.850899 -22.56 -1.867271 -22.57 -1.8845657 -22.58 -1.9024749 -22.59 -1.9207076 -22.6 -1.9390046 -22.61 -1.9570867 -22.62 -1.9747198 -22.63 -1.9917259 -22.64 -2.0079611 -22.65 -2.0233151 -22.66 -2.0377124 -22.67 -2.0511204 -22.68 -2.0635159 -22.69 -2.0749039 -22.7 -2.0853044 -22.71 -2.0947174 -22.72 -2.103146 -22.73 -2.110703 -22.74 -2.1174457 -22.75 -2.1234212 -22.76 -2.1286626 -22.77 -2.1332648 -22.78 -2.1371781 -22.79 -2.1403878 -22.8 -2.1428648 -22.81 -2.1445679 -22.82 -2.145425 -22.83 -2.1452537 -22.84 -2.1440961 -22.85 -2.141884 -22.86 -2.1385442 -22.87 -2.1340078 -22.88 -2.1282511 -22.89 -2.1212024 -22.9 -2.112825 -22.91 -2.1031249 -22.92 -2.0921388 -22.93 -2.0799351 -22.94 -2.0665694 -22.95 -2.0522391 -22.96 -2.0371338 -22.97 -2.0214505 -22.98 -2.005409 -22.99 -1.9892261 -23 -1.9731451 -23.01 -1.9574401 -23.02 -1.9423624 -23.03 -1.928149 -23.04 -1.915019 -23.05 -1.9032456 -23.06 -1.8929743 -23.07 -1.8842687 -23.08 -1.8771767 -23.09 -1.8717143 -23.1 -1.8678315 -23.11 -1.8654113 -23.12 -1.864373 -23.13 -1.8645523 -23.14 -1.8657526 -23.15 -1.8677547 -23.16 -1.8703626 -23.17 -1.8733486 -23.18 -1.8764319 -23.19 -1.8793722 -23.2 -1.8819827 -23.21 -1.8841052 -23.22 -1.8855277 -23.23 -1.8863011 -23.24 -1.8864204 -23.25 -1.8859327 -23.26 -1.8849396 -23.27 -1.8835983 -23.28 -1.8821326 -23.29 -1.8807655 -23.3 -1.8797362 -23.31 -1.8793216 -23.32 -1.879799 -23.33 -1.8814313 -23.34 -1.8844927 -23.35 -1.8892066 -23.36 -1.8957512 -23.37 -1.9042559 -23.38 -1.9147962 -23.39 -1.9274473 -23.4 -1.942142 -23.41 -1.9586848 -23.42 -1.9768864 -23.43 -1.9965005 -23.44 -2.0172412 -23.45 -2.0387689 -23.46 -2.0607086 -23.47 -2.0826701 -23.48 -2.1042555 -23.49 -2.1250667 -23.5 -2.1446475 -23.51 -2.1625722 -23.52 -2.1785651 -23.53 -2.1923621 -23.54 -2.2037284 -23.55 -2.2125342 -23.56 -2.2186897 -23.57 -2.2220604 -23.58 -2.222628 -23.59 -2.2204262 -23.6 -2.2155378 -23.61 -2.2080211 -23.62 -2.1979516 -23.63 -2.1856418 -23.64 -2.1714039 -23.65 -2.1554844 -23.66 -2.1381558 -23.67 -2.1197072 -23.68 -2.1003238 -23.69 -2.0802665 -23.7 -2.0597871 -23.71 -2.0391372 -23.72 -2.0185635 -23.73 -1.9983318 -23.74 -1.9786884 -23.75 -1.9598198 -23.76 -1.9419209 -23.77 -1.9251767 -23.78 -1.9097163 -23.79 -1.8957602 -23.8 -1.8834687 -23.81 -1.8729886 -23.82 -1.8644503 -23.83 -1.857972 -23.84 -1.8536906 -23.85 -1.8517361 -23.86 -1.8520301 -23.87 -1.8545828 -23.88 -1.8593734 -23.89 -1.8663497 -23.9 -1.8754134 -23.91 -1.8864314 -23.92 -1.8992388 -23.93 -1.9136381 -23.94 -1.9294025 -23.95 -1.9462865 -23.96 -1.9640827 -23.97 -1.9823974 -23.98 -2.0009265 -23.99 -2.0193644 -24 -2.0373863 -24.01 -2.0547158 -24.02 -2.0711093 -24.03 -2.0863265 -24.04 -2.1001551 -24.05 -2.1124155 -24.06 -2.1229604 -24.07 -2.1315241 -24.08 -2.138119 -24.09 -2.1427529 -24.1 -2.145434 -24.11 -2.1462291 -24.12 -2.1452371 -24.13 -2.1424923 -24.14 -2.1380921 -24.15 -2.1321495 -24.16 -2.1247845 -24.17 -2.116122 -24.18 -2.1062221 -24.19 -2.0952518 -24.2 -2.0834001 -24.21 -2.0707899 -24.22 -2.0575338 -24.23 -2.0437093 -24.24 -2.0294219 -24.25 -2.0147773 -24.26 -1.999885 -24.27 -1.9848549 -24.28 -1.9698065 -24.29 -1.9548958 -24.3 -1.9403006 -24.31 -1.9261191 -24.32 -1.9124892 -24.33 -1.8995688 -24.34 -1.8874635 -24.35 -1.8764089 -24.36 -1.866578 -24.37 -1.8581325 -24.38 -1.8512204 -24.39 -1.8459766 -24.4 -1.8425303 -24.41 -1.8410728 -24.42 -1.8415814 -24.43 -1.8440344 -24.44 -1.8484133 -24.45 -1.8546255 -24.46 -1.862586 -24.47 -1.872172 -24.48 -1.8832148 -24.49 -1.8955193 -24.5 -1.9088618 -24.51 -1.9230012 -24.52 -1.9377378 -24.53 -1.9527642 -24.54 -1.9677769 -24.55 -1.9825213 -24.56 -1.9967445 -24.57 -2.01025 -24.58 -2.0228902 -24.59 -2.0345159 -24.6 -2.045016 -24.61 -2.0543107 -24.62 -2.0623568 -24.63 -2.069086 -24.64 -2.0745077 -24.65 -2.0787197 -24.66 -2.0818187 -24.67 -2.0839222 -24.68 -2.0851701 -24.69 -2.085629 -24.7 -2.0854138 -24.71 -2.0846361 -24.72 -2.0834007 -24.73 -2.0818043 -24.74 -2.0799175 -24.75 -2.0778018 -24.76 -2.075532 -24.77 -2.0731605 -24.78 -2.0707116 -24.79 -2.0682164 -24.8 -2.0656498 -24.81 -2.0630071 -24.82 -2.060278 -24.83 -2.0574482 -24.84 -2.0545028 -24.85 -2.0514216 -24.86 -2.0481736 -24.87 -2.0447488 -24.88 -2.0411607 -24.89 -2.0374078 -24.9 -2.033521 -24.91 -2.02947 -24.92 -2.0252473 -24.93 -2.0208503 -24.94 -2.0162741 -24.95 -2.0115113 -24.96 -2.0065522 -24.97 -2.0013856 -24.98 -1.9960039 -24.99 -1.9904008 -25 -1.9845638 -25.01 -1.9784587 -25.02 -1.9720919 -25.03 -1.9654904 -25.04 -1.9586828 -25.05 -1.9517147 -25.06 -1.9446509 -25.07 -1.9375769 -25.08 -1.9306093 -25.09 -1.9239014 -25.1 -1.9175817 -25.11 -1.9118151 -25.12 -1.9067843 -25.13 -1.9026889 -25.14 -1.8997232 -25.15 -1.8980744 -25.16 -1.8979171 -25.17 -1.8994065 -25.18 -1.9026706 -25.19 -1.9078185 -25.2 -1.9149766 -25.21 -1.9241112 -25.22 -1.9351308 -25.23 -1.9479293 -25.24 -1.96234 -25.25 -1.9781617 -25.26 -1.9951413 -25.27 -2.0129838 -25.28 -2.0313591 -25.29 -2.0499095 -25.3 -2.0682583 -25.31 -2.0859849 -25.32 -2.1026532 -25.33 -2.1179212 -25.34 -2.1314496 -25.35 -2.1429837 -25.36 -2.1522318 -25.37 -2.1589776 -25.38 -2.1630592 -25.39 -2.164369 -25.4 -2.162843 -25.41 -2.1584827 -25.42 -2.151303 -25.43 -2.1412853 -25.44 -2.1288182 -25.45 -2.1141112 -25.46 -2.0974254 -25.47 -2.0789683 -25.48 -2.0589991 -25.49 -2.0377954 -25.5 -2.0156396 -25.51 -1.992814 -25.52 -1.9695966 -25.53 -1.9462604 -25.54 -1.9231855 -25.55 -1.9005634 -25.56 -1.8786213 -25.57 -1.8575184 -25.58 -1.8374933 -25.59 -1.8188125 -25.6 -1.8016877 -25.61 -1.7863272 -25.62 -1.7729304 -25.63 -1.7616893 -25.64 -1.7527865 -25.65 -1.7465573 -25.66 -1.7430658 -25.67 -1.7423725 -25.68 -1.7445584 -25.69 -1.7496909 -25.7 -1.7578138 -25.71 -1.7689077 -25.72 -1.7829051 -25.73 -1.7996875 -25.74 -1.8190855 -25.75 -1.8408772 -25.76 -1.8648639 -25.77 -1.8907035 -25.78 -1.9179603 -25.79 -1.9462077 -25.8 -1.9750007 -25.81 -2.003943 -25.82 -2.032609 -25.83 -2.0605798 -25.84 -2.0874622 -25.85 -2.1128945 -25.86 -2.1365551 -25.87 -2.1581143 -25.88 -2.1772618 -25.89 -2.1938943 -25.9 -2.2079719 -25.91 -2.2195921 -25.92 -2.2286986 -25.93 -2.2353582 -25.94 -2.2396836 -25.95 -2.2418195 -25.96 -2.2419305 -25.97 -2.2401909 -25.98 -2.2367484 -25.99 -2.2316524 -26 -2.2251223 -26.01 -2.2173954 -26.02 -2.208669 -26.03 -2.1989164 -26.04 -2.1881266 -26.05 -2.1763039 -26.06 -2.1634299 -26.07 -2.1494703 -26.08 -2.1343874 -26.09 -2.1181441 -26.1 -2.1006859 -26.11 -2.0820199 -26.12 -2.062231 -26.13 -2.041375 -26.14 -2.0195666 -26.15 -1.9969993 -26.16 -1.9739006 -26.17 -1.9505456 -26.18 -1.9272533 -26.19 -1.9043786 -26.2 -1.8823033 -26.21 -1.8614799 -26.22 -1.8423743 -26.23 -1.8253294 -26.24 -1.8106625 -26.25 -1.7986711 -26.26 -1.7896505 -26.27 -1.7837998 -26.28 -1.7812502 -26.29 -1.7820533 -26.3 -1.7861861 -26.31 -1.7935464 -26.32 -1.8040057 -26.33 -1.8174064 -26.34 -1.8333675 -26.35 -1.8514297 -26.36 -1.8711409 -26.37 -1.8921625 -26.38 -1.9140821 -26.39 -1.9364945 -26.4 -1.9590108 -26.41 -1.9812707 -26.42 -2.0029515 -26.43 -2.0237651 -26.44 -2.0434446 -26.45 -2.0617646 -26.46 -2.0786218 -26.47 -2.0939372 -26.48 -2.1076561 -26.49 -2.1197482 -26.5 -2.1302061 -26.51 -2.1390354 -26.52 -2.1462504 -26.53 -2.1518648 -26.54 -2.1558882 -26.55 -2.1582922 -26.56 -2.1589747 -26.57 -2.158062 -26.58 -2.1555679 -26.59 -2.1514505 -26.6 -2.1456778 -26.61 -2.1382431 -26.62 -2.1291545 -26.63 -2.1184459 -26.64 -2.1061755 -26.65 -2.0924361 -26.66 -2.0773553 -26.67 -2.0610455 -26.68 -2.0437997 -26.69 -2.0258655 -26.7 -2.0075089 -26.71 -1.9890316 -26.72 -1.9707408 -26.73 -1.9529483 -26.74 -1.9359671 -26.75 -1.9200821 -26.76 -1.9055509 -26.77 -1.8925971 -26.78 -1.8815259 -26.79 -1.8724192 -26.8 -1.8652759 -26.81 -1.8600785 -26.82 -1.856827 -26.83 -1.8554424 -26.84 -1.8558062 -26.85 -1.8577688 -26.86 -1.8611608 -26.87 -1.8658032 -26.88 -1.8715179 -26.89 -1.8781876 -26.9 -1.8856611 -26.91 -1.8937499 -26.92 -1.9023057 -26.93 -1.9113337 -26.94 -1.9208139 -26.95 -1.9307473 -26.96 -1.941162 -26.97 -1.9520967 -26.98 -1.9635931 -26.99 -1.9756867 -27 -1.9884028 -27.01 -2.0017361 -27.02 -2.0156045 -27.03 -2.0299188 -27.04 -2.0445165 -27.05 -2.0591856 -27.06 -2.073667 -27.07 -2.0876561 -27.08 -2.1008129 -27.09 -2.1127708 -27.1 -2.123154 -27.11 -2.1315852 -27.12 -2.1375553 -27.13 -2.140836 -27.14 -2.1412643 -27.15 -2.1386699 -27.16 -2.1329674 -27.17 -2.1241811 -27.18 -2.1124386 -27.19 -2.0979686 -27.2 -2.0811 -27.21 -2.062252 -27.22 -2.0419225 -27.23 -2.0206514 -27.24 -1.9990988 -27.25 -1.9779445 -27.26 -1.9578194 -27.27 -1.9392907 -27.28 -1.9228922 -27.29 -1.9090859 -27.3 -1.8982425 -27.31 -1.8906336 -27.32 -1.8864184 -27.33 -1.8856395 -27.34 -1.8883069 -27.35 -1.8942593 -27.36 -1.9031214 -27.37 -1.9144704 -27.38 -1.9278692 -27.39 -1.9428419 -27.4 -1.9588917 -27.41 -1.9755196 -27.42 -1.9922498 -27.43 -2.0086449 -27.44 -2.024317 -27.45 -2.0389252 -27.46 -2.0521749 -27.47 -2.0639015 -27.48 -2.0740805 -27.49 -2.0826807 -27.5 -2.0897426 -27.51 -2.0953542 -27.52 -2.0996338 -27.53 -2.1027177 -27.54 -2.1047448 -27.55 -2.1058394 -27.56 -2.106095 -27.57 -2.1055425 -27.58 -2.1042034 -27.59 -2.1021546 -27.6 -2.0993016 -27.61 -2.0955323 -27.62 -2.0907228 -27.63 -2.0847358 -27.64 -2.0774328 -27.65 -2.0686909 -27.66 -2.0584158 -27.67 -2.0465584 -27.68 -2.0331045 -27.69 -2.0181078 -27.7 -2.001767 -27.71 -1.9843165 -27.72 -1.9660805 -27.73 -1.9474308 -27.74 -1.9287926 -27.75 -1.9106293 -27.76 -1.8934242 -27.77 -1.8776621 -27.78 -1.8638049 -27.79 -1.8523132 -27.8 -1.8436701 -27.81 -1.8380499 -27.82 -1.835573 -27.83 -1.8363087 -27.84 -1.8402028 -27.85 -1.8470912 -27.86 -1.8567062 -27.87 -1.8686862 -27.88 -1.8825908 -27.89 -1.8979234 -27.9 -1.9141518 -27.91 -1.9307423 -27.92 -1.9471006 -27.93 -1.9626639 -27.94 -1.9770535 -27.95 -1.9899249 -27.96 -2.0010288 -27.97 -2.0102188 -27.98 -2.0174557 -27.99 -2.022805 -28 -2.0264294 -28.01 -2.0285758 -28.02 -2.0295356 -28.03 -2.0296734 -28.04 -2.0294735 -28.05 -2.0293115 -28.06 -2.0295455 -28.07 -2.030486 -28.08 -2.0323786 -28.09 -2.0353828 -28.1 -2.0395678 -28.11 -2.0449042 -28.12 -2.0512656 -28.13 -2.0584371 -28.14 -2.0660946 -28.15 -2.0738969 -28.16 -2.0814108 -28.17 -2.0882031 -28.18 -2.0938583 -28.19 -2.0979911 -28.2 -2.1002691 -28.21 -2.1004284 -28.22 -2.0982905 -28.23 -2.0937732 -28.24 -2.0868928 -28.25 -2.0776578 -28.26 -2.0663948 -28.27 -2.0534549 -28.28 -2.0392278 -28.29 -2.0241445 -28.3 -2.008663 -28.31 -1.9932452 -28.32 -1.9783351 -28.33 -1.9643376 -28.34 -1.9516004 -28.35 -1.9403989 -28.36 -1.9309962 -28.37 -1.9234849 -28.38 -1.917826 -28.39 -1.9139163 -28.4 -1.9115961 -28.41 -1.9106497 -28.42 -1.9108192 -28.43 -1.9118275 -28.44 -1.9133971 -28.45 -1.9152705 -28.46 -1.9172293 -28.47 -1.919134 -28.48 -1.9208908 -28.49 -1.9224005 -28.5 -1.9238017 -28.51 -1.925245 -28.52 -1.9269474 -28.53 -1.9291792 -28.54 -1.9322465 -28.55 -1.9364702 -28.56 -1.9421644 -28.57 -1.949613 -28.58 -1.959064 -28.59 -1.9707051 -28.6 -1.9846332 -28.61 -2.0007186 -28.62 -2.0187772 -28.63 -2.0385214 -28.64 -2.0595536 -28.65 -2.0813779 -28.66 -2.1034157 -28.67 -2.125027 -28.68 -2.1455352 -28.69 -2.1642458 -28.7 -2.1803603 -28.71 -2.1932635 -28.72 -2.2025015 -28.73 -2.2076528 -28.74 -2.2084277 -28.75 -2.2046748 -28.76 -2.1963908 -28.77 -2.1837217 -28.78 -2.1669571 -28.79 -2.1465209 -28.8 -2.1229525 -28.81 -2.0968438 -28.82 -2.0689283 -28.83 -2.0400723 -28.84 -2.0110431 -28.85 -1.9825777 -28.86 -1.9553638 -28.87 -1.9300164 -28.88 -1.9070588 -28.89 -1.8869058 -28.9 -1.8698569 -28.91 -1.8560906 -28.92 -1.8457294 -28.93 -1.8387968 -28.94 -1.835027 -28.95 -1.8341212 -28.96 -1.8357747 -28.97 -1.8396398 -28.98 -1.8453531 -28.99 -1.8525542 -29 -1.8608994 -29.01 -1.8700814 -29.02 -1.8798397 -29.03 -1.8899805 -29.04 -1.9003895 -29.05 -1.9108612 -29.06 -1.9214151 -29.07 -1.9320592 -29.08 -1.9428274 -29.09 -1.9537674 -29.1 -1.9649263 -29.11 -1.97634 -29.12 -1.9880155 -29.13 -1.9999237 -29.14 -2.0119881 -29.15 -2.0240661 -29.16 -2.0359882 -29.17 -2.0475307 -29.18 -2.0584223 -29.19 -2.0683775 -29.2 -2.0770996 -29.21 -2.0842978 -29.22 -2.0897027 -29.23 -2.0930824 -29.24 -2.0942593 -29.25 -2.0931221 -29.26 -2.0896203 -29.27 -2.0836812 -29.28 -2.0756036 -29.29 -2.0656307 -29.3 -2.0540747 -29.31 -2.0413145 -29.32 -2.0277786 -29.33 -2.0139296 -29.34 -2.0002438 -29.35 -1.9871916 -29.36 -1.9752172 -29.37 -1.9647215 -29.38 -1.9561429 -29.39 -1.94971 -29.4 -1.9455325 -29.41 -1.9436786 -29.42 -1.9441182 -29.43 -1.9467235 -29.44 -1.9512931 -29.45 -1.9575578 -29.46 -1.9651951 -29.47 -1.9738477 -29.48 -1.9831412 -29.49 -1.9927036 -29.5 -2.002146 -29.51 -2.0111576 -29.52 -2.0194877 -29.53 -2.0269501 -29.54 -2.033427 -29.55 -2.0388721 -29.56 -2.0433053 -29.57 -2.0468107 -29.58 -2.04952 -29.59 -2.0516062 -29.6 -2.0532483 -29.61 -2.0546813 -29.62 -2.0561033 -29.63 -2.0576775 -29.64 -2.0595245 -29.65 -2.0617131 -29.66 -2.0642523 -29.67 -2.0670903 -29.68 -2.0701128 -29.69 -2.0731496 -29.7 -2.075981 -29.71 -2.078339 -29.72 -2.0799009 -29.73 -2.0803906 -29.74 -2.0795457 -29.75 -2.0771283 -29.76 -2.0729474 -29.77 -2.0668727 -29.78 -2.0588461 -29.79 -2.0488881 -29.8 -2.0371017 -29.81 -2.0236712 -29.82 -2.0088581 -29.83 -1.9929706 -29.84 -1.9764346 -29.85 -1.9597191 -29.86 -1.9432732 -29.87 -1.9275464 -29.88 -1.9129683 -29.89 -1.8999319 -29.9 -1.8887789 -29.91 -1.8797831 -29.92 -1.8731424 -29.93 -1.868972 -29.94 -1.8673841 -29.95 -1.8683119 -29.96 -1.8715415 -29.97 -1.8768391 -29.98 -1.8839359 -29.99 -1.8925239 -30 -1.9022725 -& -@target G2.S6 -@type xy -0 0 -0.01 0.063691426 -0.02 0.034796456 -0.03 0.024885895 -0.04 0.019740492 -0.05 0.016517085 -0.06 0.014268358 -0.07 0.012588471 -0.08 0.011274425 -0.09 0.010213144 -0.1 0.0093362831 -0.11 0.0085996625 -0.12 0.0079729782 -0.13 0.0074342597 -0.14 0.0069667133 -0.15 0.0065568472 -0.16 0.006193327 -0.17 0.0058662707 -0.18 0.0055668186 -0.19 0.0052868844 -0.2 0.0050190276 -0.21 0.0047564091 -0.22 0.004492805 -0.23 0.0042226575 -0.24 0.0039411506 -0.25 0.0036442977 -0.26 0.0033290325 -0.27 0.0029932955 -0.28 0.0026361097 -0.29 0.0022576422 -0.3 0.0018592463 -0.31 0.0014434855 -0.32 0.0010141354 -0.33 0.00057616545 -0.34 0.00013570267 -0.35 -0.00030002344 -0.36 -0.00072275038 -0.37 -0.0011232658 -0.38 -0.0014915019 -0.39 -0.0018166402 -0.4 -0.0020872257 -0.41 -0.0022912907 -0.42 -0.0024164901 -0.43 -0.0024502481 -0.44 -0.0023799217 -0.45 -0.0021929803 -0.46 -0.0018772076 -0.47 -0.001420925 -0.48 -0.00081324035 -0.49 -4.4320679e-05 -0.5 0.0008943122 -0.51 0.0020094672 -0.52 0.0033059567 -0.53 0.004786265 -0.54 0.0064502238 -0.55 0.0082947072 -0.56 0.010313362 -0.57 0.012496391 -0.58 0.014830396 -0.59 0.017298318 -0.6 0.019879459 -0.61 0.022549627 -0.62 0.025281395 -0.63 0.028044476 -0.64 0.030806236 -0.65 0.033532309 -0.66 0.03618732 -0.67 0.038735704 -0.68 0.041142572 -0.69 0.043374628 -0.7 0.04540108 -0.71 0.047194523 -0.72 0.048731758 -0.73 0.049994502 -0.74 0.050969974 -0.75 0.051651304 -0.76 0.052037765 -0.77 0.052134792 -0.78 0.05195379 -0.79 0.051511731 -0.8 0.050830539 -0.81 0.049936297 -0.82 0.048858284 -0.83 0.047627899 -0.84 0.046277499 -0.85 0.044839196 -0.86 0.043343668 -0.87 0.041819044 -0.88 0.04028988 -0.89 0.038776303 -0.9 0.037293337 -0.91 0.035850458 -0.92 0.034451376 -0.93 0.033094077 -0.94 0.031771099 -0.95 0.030470048 -0.96 0.029174316 -0.97 0.027863972 -0.98 0.026516783 -0.99 0.025109321 -1 0.02361809 -1.01 0.022020643 -1.02 0.020296622 -1.03 0.018428667 -1.04 0.016403185 -1.05 0.014210907 -1.06 0.011847244 -1.07 0.0093124123 -1.08 0.006611337 -1.09 0.0037533458 -1.1 0.00075167305 -1.11 -0.0023771906 -1.12 -0.0056142641 -1.13 -0.0089389136 -1.14 -0.012329711 -1.15 -0.015765272 -1.16 -0.019225017 -1.17 -0.022689835 -1.18 -0.026142591 -1.19 -0.029568485 -1.2 -0.032955218 -1.21 -0.036292992 -1.22 -0.039574331 -1.23 -0.042793763 -1.24 -0.045947368 -1.25 -0.049032256 -1.26 -0.052045994 -1.27 -0.05498604 -1.28 -0.057849223 -1.29 -0.060631316 -1.3 -0.063326723 -1.31 -0.065928336 -1.32 -0.06842755 -1.33 -0.070814471 -1.34 -0.073078291 -1.35 -0.075207831 -1.36 -0.077192219 -1.37 -0.079021661 -1.38 -0.08068828 -1.39 -0.08218694 -1.4 -0.083516045 -1.41 -0.084678217 -1.42 -0.085680842 -1.43 -0.086536414 -1.44 -0.087262656 -1.45 -0.087882394 -1.46 -0.088423167 -1.47 -0.088916587 -1.48 -0.089397453 -1.49 -0.089902659 -1.5 -0.090469935 -1.51 -0.091136478 -1.52 -0.091937519 -1.53 -0.092904911 -1.54 -0.094065792 -1.55 -0.095441388 -1.56 -0.097046026 -1.57 -0.098886387 -1.58 -0.10096107 -1.59 -0.10326046 -1.6 -0.10576695 -1.61 -0.10845546 -1.62 -0.11129432 -1.63 -0.11424637 -1.64 -0.11727034 -1.65 -0.1203224 -1.66 -0.12335778 -1.67 -0.12633249 -1.68 -0.12920494 -1.69 -0.13193754 -1.7 -0.13449803 -1.71 -0.13686069 -1.72 -0.13900719 -1.73 -0.14092718 -1.74 -0.14261857 -1.75 -0.14408741 -1.76 -0.14534754 -1.77 -0.14641989 -1.78 -0.14733154 -1.79 -0.14811456 -1.8 -0.14880469 -1.81 -0.14943998 -1.82 -0.1500593 -1.83 -0.15070097 -1.84 -0.15140142 -1.85 -0.15219401 -1.86 -0.15310799 -1.87 -0.15416774 -1.88 -0.15539218 -1.89 -0.15679441 -1.9 -0.15838162 -1.91 -0.16015522 -1.92 -0.16211114 -1.93 -0.1642403 -1.94 -0.16652924 -1.95 -0.16896083 -1.96 -0.17151499 -1.97 -0.17416951 -1.98 -0.17690074 -1.99 -0.17968437 -2 -0.18249598 -2.01 -0.1853116 -2.02 -0.18810818 -2.03 -0.19086384 -2.04 -0.19355819 -2.05 -0.1961724 -2.06 -0.19868927 -2.07 -0.20109328 -2.08 -0.20337044 -2.09 -0.2055083 -2.1 -0.20749579 -2.11 -0.20932311 -2.12 -0.21098161 -2.13 -0.21246365 -2.14 -0.21376245 -2.15 -0.21487196 -2.16 -0.21578659 -2.17 -0.21650104 -2.18 -0.2170099 -2.19 -0.21730734 -2.2 -0.21738656 -2.21 -0.21723925 -2.22 -0.21685491 -2.23 -0.21622008 -2.24 -0.21531748 -2.25 -0.21412513 -2.26 -0.21261548 -2.27 -0.21075443 -2.28 -0.20850062 -2.29 -0.20580463 -2.3 -0.20260852 -2.31 -0.19884552 -2.32 -0.19443999 -2.33 -0.1893078 -2.34 -0.18335696 -2.35 -0.17648874 -2.36 -0.16859914 -2.37 -0.15958084 -2.38 -0.14932547 -2.39 -0.13772629 -2.4 -0.12468117 -2.41 -0.11009583 -2.42 -0.093887224 -2.43 -0.075987038 -2.44 -0.056345116 -2.45 -0.034932791 -2.46 -0.011745958 -2.47 0.0131922 -2.48 0.039828947 -2.49 0.068080268 -2.5 0.097829782 -2.51 0.12892835 -2.52 0.16119444 -2.53 0.19441522 -2.54 0.22834851 -2.55 0.26272543 -2.56 0.29725376 -2.57 0.33162206 -2.58 0.36550426 -2.59 0.39856479 -2.6 0.4304641 -2.61 0.46086438 -2.62 0.48943542 -2.63 0.51586049 -2.64 0.53984197 -2.65 0.56110678 -2.66 0.5794113 -2.67 0.59454587 -2.68 0.60633851 -2.69 0.61465804 -2.7 0.61941631 -2.71 0.62056965 -2.72 0.61811938 -2.73 0.6121115 -2.74 0.60263547 -2.75 0.5898222 -2.76 0.57384119 -2.77 0.55489707 -2.78 0.5332254 -2.79 0.50908807 -2.8 0.48276824 -2.81 0.454565 -2.82 0.42478788 -2.83 0.39375135 -2.84 0.36176941 -2.85 0.32915037 -2.86 0.29619199 -2.87 0.26317706 -2.88 0.23036944 -2.89 0.1980108 -2.9 0.16631786 -2.91 0.13548047 -2.92 0.10566027 -2.93 0.076990136 -2.94 0.049574243 -2.95 0.023488832 -2.96 -0.0012164833 -2.97 -0.024516867 -2.98 -0.046409977 -2.99 -0.06691334 -3 -0.086061475 -3.01 -0.10390286 -3.02 -0.12049689 -3.03 -0.13591079 -3.04 -0.15021681 -3.05 -0.16348951 -3.06 -0.17580339 -3.07 -0.18723085 -3.08 -0.19784055 -3.09 -0.20769617 -3.1 -0.2168555 -3.11 -0.22537005 -3.12 -0.23328497 -3.13 -0.24063925 -3.14 -0.24746631 -3.15 -0.25379471 -3.16 -0.25964907 -3.17 -0.26505105 -3.18 -0.27002034 -3.19 -0.27457563 -3.2 -0.27873543 -3.21 -0.28251874 -3.22 -0.2859455 -3.23 -0.28903682 -3.24 -0.29181495 -3.25 -0.29430297 -3.26 -0.29652423 -3.27 -0.29850155 -3.28 -0.30025625 -3.29 -0.30180696 -3.3 -0.30316835 -3.31 -0.30434975 -3.32 -0.30535381 -3.33 -0.30617515 -3.34 -0.30679913 -3.35 -0.30720074 -3.36 -0.30734373 -3.37 -0.30717984 -3.38 -0.30664848 -3.39 -0.30567648 -3.4 -0.30417826 -3.41 -0.30205629 -3.42 -0.2992018 -3.43 -0.29549584 -3.44 -0.29081059 -3.45 -0.28501094 -3.46 -0.27795639 -3.47 -0.2695031 -3.48 -0.25950618 -3.49 -0.24782219 -3.5 -0.23431181 -3.51 -0.21884257 -3.52 -0.20129179 -3.53 -0.1815495 -3.54 -0.15952148 -3.55 -0.13513224 -3.56 -0.10832797 -3.57 -0.079079452 -3.58 -0.047384713 -3.59 -0.013271588 -3.6 0.023200046 -3.61 0.061936367 -3.62 0.1028081 -3.63 0.14564947 -3.64 0.19025776 -3.65 0.23639339 -3.66 0.2837807 -3.67 0.33210948 -3.68 0.38103714 -3.69 0.43019176 -3.7 0.47917576 -3.71 0.52757043 -3.72 0.57494101 -3.73 0.62084253 -3.74 0.66482605 -3.75 0.70644536 -3.76 0.74526404 -3.77 0.78086253 -3.78 0.81284529 -3.79 0.84084772 -3.8 0.86454276 -3.81 0.88364699 -3.82 0.89792598 -3.83 0.90719893 -3.84 0.9113423 -3.85 0.91029239 -3.86 0.90404684 -3.87 0.89266488 -3.88 0.87626649 -3.89 0.85503033 -3.9 0.82919049 -3.91 0.79903234 -3.92 0.76488727 -3.93 0.72712677 -3.94 0.68615572 -3.95 0.64240531 -3.96 0.59632555 -3.97 0.5483777 -3.98 0.49902677 -3.99 0.44873412 -4 0.39795064 -4.01 0.34711026 -4.02 0.29662421 -4.03 0.24687604 -4.04 0.19821741 -4.05 0.1509648 -4.06 0.10539706 -4.07 0.06175393 -4.08 0.020235372 -4.09 -0.018998279 -4.1 -0.05582539 -4.11 -0.090161434 -4.12 -0.12195683 -4.13 -0.15119427 -4.14 -0.1778857 -4.15 -0.202069 -4.16 -0.22380448 -4.17 -0.24317129 -4.18 -0.26026384 -4.19 -0.27518829 -4.2 -0.28805915 -4.21 -0.29899613 -4.22 -0.30812118 -4.23 -0.31555583 -4.24 -0.32141882 -4.25 -0.32582404 -4.26 -0.3288788 -4.27 -0.33068246 -4.28 -0.3313253 -4.29 -0.3308878 -4.3 -0.32944018 -4.31 -0.32704226 -4.32 -0.32374359 -4.33 -0.31958384 -4.34 -0.31459345 -4.35 -0.30879457 -4.36 -0.30220206 -4.37 -0.29482483 -4.38 -0.28666724 -4.39 -0.27773068 -4.4 -0.26801518 -4.41 -0.25752116 -4.42 -0.2462511 -4.43 -0.23421129 -4.44 -0.22141345 -4.45 -0.20787624 -4.46 -0.19362669 -4.47 -0.17870137 -4.48 -0.1631474 -4.49 -0.14702318 -4.5 -0.13039885 -4.51 -0.11335644 -4.52 -0.095989782 -4.53 -0.078403991 -4.54 -0.06071477 -4.55 -0.04304733 -4.56 -0.025535079 -4.57 -0.0083180459 -4.58 0.0084588988 -4.59 0.024648003 -4.6 0.040100724 -4.61 0.054669901 -4.62 0.068211977 -4.63 0.080589193 -4.64 0.091671747 -4.65 0.10133983 -4.66 0.10948554 -4.67 0.1160146 -4.68 0.12084786 -4.69 0.12392258 -4.7 0.12519342 -4.71 0.12463317 -4.72 0.1222332 -4.73 0.11800356 -4.74 0.11197288 -4.75 0.10418786 -4.76 0.094712602 -4.77 0.083627573 -4.78 0.071028411 -4.79 0.057024452 -4.8 0.041737087 -4.81 0.025297956 -4.82 0.007847006 -4.83 -0.01046953 -4.84 -0.02950122 -4.85 -0.049095521 -4.86 -0.06909984 -4.87 -0.089363529 -4.88 -0.10973976 -4.89 -0.13008723 -4.9 -0.15027173 -4.91 -0.17016741 -4.92 -0.18965787 -4.93 -0.20863693 -4.94 -0.2270091 -4.95 -0.24468984 -4.96 -0.26160542 -4.97 -0.27769255 -4.98 -0.29289779 -4.99 -0.30717669 -5 -0.32049272 -5.01 -0.33281614 -5.02 -0.34412271 -5.03 -0.35439242 -5.04 -0.36360822 -5.05 -0.37175486 -5.06 -0.37881789 -5.07 -0.38478283 -5.08 -0.38963461 -5.09 -0.39335729 -5.1 -0.39593411 -5.11 -0.39734776 -5.12 -0.39758113 -5.13 -0.3966182 -5.14 -0.3944453 -5.15 -0.39105255 -5.16 -0.38643549 -5.17 -0.38059679 -5.18 -0.37354801 -5.19 -0.36531132 -5.2 -0.35592109 -5.21 -0.34542522 -5.22 -0.33388631 -5.23 -0.32138239 -5.24 -0.30800728 -5.25 -0.29387055 -5.26 -0.27909699 -5.27 -0.26382561 -5.28 -0.24820822 -5.29 -0.2324075 -5.3 -0.21659476 -5.31 -0.20094731 -5.32 -0.18564556 -5.33 -0.17086998 -5.34 -0.15679785 -5.35 -0.14360012 -5.36 -0.13143821 -5.37 -0.12046111 -5.38 -0.11080252 -5.39 -0.10257853 -5.4 -0.095885463 -5.41 -0.090798231 -5.42 -0.087369133 -5.43 -0.085627086 -5.44 -0.085577327 -5.45 -0.087201571 -5.46 -0.090458584 -5.47 -0.095285154 -5.48 -0.10159738 -5.49 -0.10929228 -5.5 -0.11824955 -5.51 -0.12833359 -5.52 -0.13939552 -5.53 -0.15127533 -5.54 -0.16380392 -5.55 -0.17680518 -5.56 -0.19009791 -5.57 -0.2034976 -5.58 -0.21681806 -5.59 -0.22987297 -5.6 -0.24247713 -5.61 -0.25444765 -5.62 -0.26560495 -5.63 -0.27577365 -5.64 -0.28478338 -5.65 -0.29246947 -5.66 -0.29867365 -5.67 -0.3032447 -5.68 -0.30603918 -5.69 -0.30692211 -5.7 -0.30576784 -5.71 -0.30246088 -5.72 -0.29689696 -5.73 -0.28898405 -5.74 -0.27864362 -5.75 -0.2658119 -5.76 -0.25044126 -5.77 -0.23250166 -5.78 -0.21198206 -5.79 -0.18889196 -5.8 -0.16326271 -5.81 -0.13514896 -5.82 -0.10462974 -5.83 -0.071809591 -5.84 -0.036819267 -5.85 0.0001836964 -5.86 0.039014817 -5.87 0.079462843 -5.88 0.12129034 -5.89 0.16423475 -5.9 0.20800985 -5.91 0.25230778 -5.92 0.2968015 -5.93 0.34114777 -5.94 0.38499057 -5.95 0.42796496 -5.96 0.46970136 -5.97 0.5098301 -5.98 0.54798632 -5.99 0.58381497 -6 0.61697595 -6.01 0.6471492 -6.02 0.67403975 -6.03 0.69738242 -6.04 0.71694637 -6.05 0.73253902 -6.06 0.74400965 -6.07 0.75125222 -6.08 0.75420759 -6.09 0.75286503 -6.1 0.74726286 -6.11 0.73748839 -6.12 0.723677 -6.13 0.70601047 -6.14 0.68471458 -6.15 0.66005604 -6.16 0.63233877 -6.17 0.60189975 -6.18 0.56910437 -6.19 0.53434154 -6.2 0.49801858 -6.21 0.46055594 -6.22 0.42238209 -6.23 0.38392833 -6.24 0.34562394 -6.25 0.30789144 -6.26 0.2711423 -6.27 0.2357729 -6.28 0.20216086 -6.29 0.17066178 -6.3 0.14160634 -6.31 0.11529771 -6.32 0.092009304 -6.33 0.071982799 -6.34 0.055426398 -6.35 0.042513311 -6.36 0.033380391 -6.37 0.028126941 -6.38 0.026813646 -6.39 0.029461643 -6.4 0.036051748 -6.41 0.046523842 -6.42 0.060776474 -6.43 0.078666722 -6.44 0.10001037 -6.45 0.12458243 -6.46 0.15211819 -6.47 0.18231464 -6.48 0.21483254 -6.49 0.24929907 -6.5 0.28531111 -6.51 0.32243912 -6.52 0.36023171 -6.53 0.39822079 -6.54 0.43592725 -6.55 0.47286708 -6.56 0.50855796 -6.57 0.54252598 -6.58 0.57431253 -6.59 0.60348115 -6.6 0.62962418 -6.61 0.65236904 -6.62 0.67138406 -6.63 0.68638358 -6.64 0.69713235 -6.65 0.70344898 -6.66 0.70520842 -6.67 0.70234341 -6.68 0.69484483 -6.69 0.68276098 -6.7 0.66619581 -6.71 0.6453061 -6.72 0.62029779 -6.73 0.59142144 -6.74 0.55896702 -6.75 0.52325815 -6.76 0.48464591 -6.77 0.44350248 -6.78 0.40021459 -6.79 0.35517711 -6.8 0.30878679 -6.81 0.26143634 -6.82 0.21350898 -6.83 0.16537344 -6.84 0.11737964 -6.85 0.069854907 -6.86 0.023101001 -6.87 -0.02260832 -6.88 -0.067028996 -6.89 -0.10994774 -6.9 -0.15118253 -6.91 -0.19058253 -6.92 -0.22802758 -6.93 -0.2634272 -6.94 -0.29671929 -6.95 -0.32786848 -6.96 -0.35686434 -6.97 -0.3837193 -6.98 -0.40846651 -6.99 -0.43115765 -7 -0.45186058 -7.01 -0.47065709 -7.02 -0.4876406 -7.03 -0.50291389 -7.04 -0.51658693 -7.05 -0.52877469 -7.06 -0.53959509 -7.07 -0.54916703 -7.08 -0.55760848 -7.09 -0.5650347 -7.1 -0.57155662 -7.11 -0.57727931 -7.12 -0.58230065 -7.13 -0.5867101 -7.14 -0.59058772 -7.15 -0.59400338 -7.16 -0.59701612 -7.17 -0.59967378 -7.18 -0.60201281 -7.19 -0.60405829 -7.2 -0.60582422 -7.21 -0.60731389 -7.22 -0.60852054 -7.23 -0.60942812 -7.24 -0.6100122 -7.25 -0.61024099 -7.26 -0.61007646 -7.27 -0.60947551 -7.28 -0.60839115 -7.29 -0.60677371 -7.3 -0.60457204 -7.31 -0.60173463 -7.32 -0.59821076 -7.33 -0.59395152 -7.34 -0.58891082 -7.35 -0.58304624 -7.36 -0.57631999 -7.37 -0.56869962 -7.38 -0.56015879 -7.39 -0.55067796 -7.4 -0.54024506 -7.41 -0.52885608 -7.42 -0.51651566 -7.43 -0.5032376 -7.44 -0.48904539 -7.45 -0.47397261 -7.46 -0.45806328 -7.47 -0.44137218 -7.48 -0.42396494 -7.49 -0.40591809 -7.5 -0.38731891 -7.51 -0.36826508 -7.52 -0.34886412 -7.53 -0.32923264 -7.54 -0.3094953 -7.55 -0.2897835 -7.56 -0.2702339 -7.57 -0.2509866 -7.58 -0.23218312 -7.59 -0.21396426 -7.6 -0.19646764 -7.61 -0.17982525 -7.62 -0.16416085 -7.63 -0.14958741 -7.64 -0.13620452 -7.65 -0.12409601 -7.66 -0.11332765 -7.67 -0.10394512 -7.68 -0.095972341 -7.69 -0.089410019 -7.7 -0.084234731 -7.71 -0.080398366 -7.72 -0.077828062 -7.73 -0.076426626 -7.74 -0.076073462 -7.75 -0.076625976 -7.76 -0.077921476 -7.77 -0.079779517 -7.78 -0.082004674 -7.79 -0.084389678 -7.8 -0.086718881 -7.81 -0.088771983 -7.82 -0.090327944 -7.83 -0.091169029 -7.84 -0.091084893 -7.85 -0.089876648 -7.86 -0.087360821 -7.87 -0.083373133 -7.88 -0.07777203 -7.89 -0.070441883 -7.9 -0.061295809 -7.91 -0.050278032 -7.92 -0.037365749 -7.93 -0.022570436 -7.94 -0.0059385727 -7.95 0.012448258 -7.96 0.032473901 -7.97 0.053988818 -7.98 0.076811901 -7.99 0.10073293 -8 0.12551563 -8.01 0.15090125 -8.02 0.17661272 -8.03 0.20235919 -8.04 0.22784094 -8.05 0.2527546 -8.06 0.27679855 -8.07 0.29967837 -8.08 0.32111229 -8.09 0.34083654 -8.1 0.35861038 -8.11 0.37422086 -8.12 0.38748704 -8.13 0.39826375 -8.14 0.40644461 -8.15 0.41196443 -8.16 0.41480078 -8.17 0.41497475 -8.18 0.4125509 -8.19 0.40763629 -8.2 0.40037877 -8.21 0.3909644 -8.22 0.37961406 -8.23 0.3665795 -8.24 0.35213866 -8.25 0.3365905 -8.26 0.32024946 -8.27 0.30343954 -8.28 0.28648829 -8.29 0.26972066 -8.3 0.25345295 -8.31 0.23798698 -8.32 0.2236045 -8.33 0.21056205 -8.34 0.19908628 -8.35 0.18936994 -8.36 0.18156848 -8.37 0.17579736 -8.38 0.17213021 -8.39 0.17059769 -8.4 0.17118729 -8.41 0.1738438 -8.42 0.17847072 -8.43 0.18493234 -8.44 0.19305665 -8.45 0.20263879 -8.46 0.21344526 -8.47 0.22521855 -8.48 0.23768223 -8.49 0.25054647 -8.5 0.26351372 -8.51 0.27628454 -8.52 0.28856355 -8.53 0.30006516 -8.54 0.31051926 -8.55 0.31967648 -8.56 0.32731314 -8.57 0.33323561 -8.58 0.33728413 -8.59 0.33933594 -8.6 0.3393076 -8.61 0.33715657 -8.62 0.33288191 -8.63 0.3265241 -8.64 0.318164 -8.65 0.30792091 -8.66 0.2959499 -8.67 0.28243826 -8.68 0.26760132 -8.69 0.25167764 -8.7 0.23492373 -8.71 0.21760837 -8.72 0.20000669 -8.73 0.18239417 -8.74 0.16504063 -8.75 0.14820445 -8.76 0.13212704 -8.77 0.11702787 -8.78 0.10309989 -8.79 0.090505808 -8.8 0.079374945 -8.81 0.069801034 -8.82 0.061840802 -8.83 0.055513456 -8.84 0.05080104 -8.85 0.04764963 -8.86 0.045971339 -8.87 0.045647038 -8.88 0.046529735 -8.89 0.048448482 -8.9 0.051212732 -8.91 0.05461699 -8.92 0.058445672 -8.93 0.06247802 -8.94 0.066492966 -8.95 0.070273834 -8.96 0.07361277 -8.97 0.076314808 -8.98 0.078201498 -8.99 0.079114037 -9 0.07891584 -9.01 0.077494537 -9.02 0.074763379 -9.03 0.070662044 -9.04 0.065156864 -9.05 0.058240498 -9.06 0.049931099 -9.07 0.040270993 -9.08 0.029324965 -9.09 0.017178165 -9.1 0.0039337385 -9.11 -0.010289792 -9.12 -0.025361305 -9.13 -0.041139969 -9.14 -0.057478175 -9.15 -0.074224467 -9.16 -0.091226393 -9.17 -0.10833326 -9.18 -0.1253987 -9.19 -0.14228308 -9.2 -0.15885562 -9.21 -0.17499627 -9.22 -0.1905973 -9.23 -0.20556449 -9.24 -0.21981814 -9.25 -0.23329352 -9.26 -0.24594117 -9.27 -0.25772667 -9.28 -0.26863021 -9.29 -0.27864574 -9.3 -0.28777983 -9.31 -0.29605027 -9.32 -0.30348442 -9.33 -0.31011738 -9.34 -0.31598999 -9.35 -0.32114673 -9.36 -0.32563367 -9.37 -0.32949634 -9.38 -0.33277777 -9.39 -0.33551666 -9.4 -0.33774579 -9.41 -0.33949065 -9.42 -0.34076843 -9.43 -0.34158731 -9.44 -0.34194622 -9.45 -0.34183488 -9.46 -0.34123428 -9.47 -0.34011761 -9.48 -0.33845139 -9.49 -0.33619709 -9.5 -0.33331289 -9.51 -0.3297557 -9.52 -0.32548332 -9.53 -0.32045663 -9.54 -0.31464178 -9.55 -0.30801225 -9.56 -0.30055076 -9.57 -0.29225091 -9.58 -0.28311841 -9.59 -0.27317208 -9.6 -0.26244423 -9.61 -0.25098072 -9.62 -0.23884041 -9.63 -0.22609423 -9.64 -0.21282368 -9.65 -0.19911895 -9.66 -0.18507659 -9.67 -0.1707969 -9.68 -0.15638105 -9.69 -0.14192795 -9.7 -0.12753116 -9.71 -0.11327571 -9.72 -0.099235077 -9.73 -0.085468397 -9.74 -0.072017934 -9.75 -0.058906985 -9.76 -0.046138246 -9.77 -0.033692716 -9.78 -0.021529202 -9.79 -0.0095844529 -9.8 0.0022260555 -9.81 0.01400668 -9.82 0.02587953 -9.83 0.037981777 -9.84 0.050462407 -9.85 0.063478483 -9.86 0.077190984 -9.87 0.091760329 -9.88 0.10734168 -9.89 0.12408012 -9.9 0.14210586 -9.91 0.16152955 -9.92 0.18243784 -9.93 0.20488927 -9.94 0.22891067 -9.95 0.25449407 -9.96 0.28159432 -9.97 0.31012739 -9.98 0.33996948 -9.99 0.37095696 -10 0.40288717 -10.01 0.43552011 -10.02 0.46858091 -10.03 0.50176321 -10.04 0.53473321 -10.05 0.56713448 -10.06 0.59859335 -10.07 0.62872479 -10.08 0.65713866 -10.09 0.68344623 -10.1 0.70726682 -10.11 0.72823443 -10.12 0.74600411 -10.13 0.76025818 -10.14 0.7707119 -10.15 0.7771186 -10.16 0.77927421 -10.17 0.77702093 -10.18 0.77025015 -10.19 0.75890438 -10.2 0.74297837 -10.21 0.72251917 -10.22 0.69762527 -10.23 0.66844492 -10.24 0.63517347 -10.25 0.59805001 -10.26 0.55735326 -10.27 0.51339688 -10.28 0.46652427 -10.29 0.41710307 -10.3 0.36551932 -10.31 0.31217158 -10.32 0.25746505 -10.33 0.20180582 -10.34 0.14559534 -10.35 0.089225278 -10.36 0.033072794 -10.37 -0.0225037 -10.38 -0.077168186 -10.39 -0.1306101 -10.4 -0.18254677 -10.41 -0.23272522 -10.42 -0.28092332 -10.43 -0.32695043 -10.44 -0.37064738 -10.45 -0.41188599 -10.46 -0.45056814 -10.47 -0.48662443 -10.48 -0.52001248 -10.49 -0.55071503 -10.5 -0.57873783 -10.51 -0.60410733 -10.52 -0.6268684 -10.53 -0.64708195 -10.54 -0.66482265 -10.55 -0.68017667 -10.56 -0.69323951 -10.57 -0.70411407 -10.58 -0.71290868 -10.59 -0.71973547 -10.6 -0.72470879 -10.61 -0.72794377 -10.62 -0.72955514 -10.63 -0.72965606 -10.64 -0.72835712 -10.65 -0.72576552 -10.66 -0.72198422 -10.67 -0.71711125 -10.68 -0.71123908 -10.69 -0.70445403 -10.7 -0.69683574 -10.71 -0.68845667 -10.72 -0.67938167 -10.73 -0.66966755 -10.74 -0.65936281 -10.75 -0.64850725 -10.76 -0.63713186 -10.77 -0.62525861 -10.78 -0.61290047 -10.79 -0.60006145 -10.8 -0.58673689 -10.81 -0.57291372 -10.82 -0.55857107 -10.83 -0.54368086 -10.84 -0.52820873 -10.85 -0.51211503 -10.86 -0.49535601 -10.87 -0.47788521 -10.88 -0.45965492 -10.89 -0.4406179 -10.9 -0.42072905 -10.91 -0.39994724 -10.92 -0.37823719 -10.93 -0.35557131 -10.94 -0.33193146 -10.95 -0.30731066 -10.96 -0.28171465 -10.97 -0.25516319 -10.98 -0.22769119 -10.99 -0.1993495 -11 -0.17020535 -11.01 -0.14034249 -11.02 -0.10986085 -11.03 -0.078875873 -11.04 -0.047517364 -11.05 -0.015927986 -11.06 0.015738669 -11.07 0.047320352 -11.08 0.078648747 -11.09 0.10955233 -11.1 0.13985939 -11.11 0.16940124 -11.12 0.19801539 -11.13 0.22554872 -11.14 0.25186051 -11.15 0.27682527 -11.16 0.3003352 -11.17 0.32230236 -11.18 0.34266032 -11.19 0.36136532 -11.2 0.3783969 -11.21 0.39375788 -11.22 0.40747389 -11.23 0.41959213 -11.24 0.43017973 -11.25 0.43932148 -11.26 0.44711719 -11.27 0.45367857 -11.28 0.45912591 -11.29 0.46358444 -11.3 0.46718074 -11.31 0.470039 -11.32 0.47227749 -11.33 0.47400528 -11.34 0.47531913 -11.35 0.47630099 -11.36 0.47701579 -11.37 0.47750994 -11.38 0.47781029 -11.39 0.47792377 -11.4 0.47783764 -11.41 0.47752032 -11.42 0.47692282 -11.43 0.47598068 -11.44 0.47461637 -11.45 0.47274209 -11.46 0.47026279 -11.47 0.46707948 -11.48 0.46309259 -11.49 0.45820528 -11.5 0.45232672 -11.51 0.44537513 -11.52 0.43728052 -11.53 0.42798712 -11.54 0.41745534 -11.55 0.40566329 -11.56 0.39260784 -11.57 0.3783051 -11.58 0.36279048 -11.59 0.34611817 -11.6 0.32836024 -11.61 0.30960531 -11.62 0.28995684 -11.63 0.26953114 -11.64 0.24845519 -11.65 0.22686424 -11.66 0.20489934 -11.67 0.18270498 -11.68 0.16042656 -11.69 0.13820822 -11.7 0.11619064 -11.71 0.094509196 -11.72 0.073292254 -11.73 0.052659818 -11.74 0.032722409 -11.75 0.013580244 -11.76 -0.0046773027 -11.77 -0.021971982 -11.78 -0.038236708 -11.79 -0.053415389 -11.8 -0.067462575 -11.81 -0.080342962 -11.82 -0.092030791 -11.83 -0.10250918 -11.84 -0.11176939 -11.85 -0.11981014 -11.86 -0.1266369 -11.87 -0.1322612 -11.88 -0.13670007 -11.89 -0.13997547 -11.9 -0.14211387 -11.91 -0.14314581 -11.92 -0.14310561 -11.93 -0.14203106 -11.94 -0.13996323 -11.95 -0.13694621 -11.96 -0.13302697 -11.97 -0.1282551 -11.98 -0.12268262 -11.99 -0.11636368 -12 -0.10935425 -12.01 -0.10171175 -12.02 -0.093494596 -12.03 -0.084761706 -12.04 -0.07557194 -12.05 -0.065983498 -12.06 -0.056053282 -12.07 -0.045836243 -12.08 -0.035384738 -12.09 -0.024747909 -12.1 -0.013971116 -12.11 -0.0030954492 -12.12 0.0078426696 -12.13 0.018811757 -12.14 0.029785408 -12.15 0.040742282 -12.16 0.051665934 -12.17 0.062544477 -12.18 0.073370096 -12.19 0.084138398 -12.2 0.094847639 -12.21 0.10549782 -12.22 0.11608973 -12.23 0.12662387 -12.24 0.1370994 -12.25 0.14751311 -12.26 0.15785837 -12.27 0.16812426 -12.28 0.17829474 -12.29 0.18834801 -12.3 0.1982561 -12.31 0.20798456 -12.32 0.21749247 -12.33 0.22673265 -12.34 0.23565207 -12.35 0.24419254 -12.36 0.25229159 -12.37 0.25988352 -12.38 0.26690059 -12.39 0.27327444 -12.4 0.27893743 -12.41 0.28382414 -12.42 0.28787278 -12.43 0.29102658 -12.44 0.29323505 -12.45 0.29445512 -12.46 0.29465199 -12.47 0.29379991 -12.48 0.29188258 -12.49 0.28889331 -12.5 0.28483498 -12.51 0.27971962 -12.52 0.27356779 -12.53 0.26640771 -12.54 0.25827418 -12.55 0.24920732 -12.56 0.23925115 -12.57 0.22845216 -12.58 0.2168578 -12.59 0.20451498 -12.6 0.19146869 -12.61 0.17776072 -12.62 0.16342855 -12.63 0.14850448 -12.64 0.13301497 -12.65 0.11698029 -12.66 0.10041439 -12.67 0.083325157 -12.68 0.065714881 -12.69 0.047581013 -12.7 0.028917187 -12.71 0.0097144446 -12.72 -0.010037362 -12.73 -0.030348029 -12.74 -0.051225389 -12.75 -0.072673654 -12.76 -0.094691792 -12.77 -0.11727197 -12.78 -0.14039813 -12.79 -0.16404471 -12.8 -0.18817561 -12.81 -0.21274338 -12.82 -0.23768866 -12.83 -0.26293991 -12.84 -0.28841349 -12.85 -0.31401396 -12.86 -0.33963472 -12.87 -0.36515889 -12.88 -0.39046051 -12.89 -0.41540592 -12.9 -0.43985534 -12.91 -0.46366467 -12.92 -0.48668733 -12.93 -0.5087763 -12.94 -0.52978611 -12.95 -0.54957494 -12.96 -0.56800661 -12.97 -0.58495256 -12.98 -0.60029371 -12.99 -0.61392225 -13 -0.6257432 -13.01 -0.63567587 -13.02 -0.64365506 -13.03 -0.64963213 -13.04 -0.65357576 -13.05 -0.65547253 -13.06 -0.65532723 -13.07 -0.65316298 -13.08 -0.649021 -13.09 -0.64296023 -13.1 -0.63505666 -13.11 -0.62540247 -13.12 -0.61410486 -13.13 -0.60128481 -13.14 -0.58707548 -13.15 -0.5716206 -13.16 -0.5550726 -13.17 -0.53759062 -13.18 -0.51933853 -13.19 -0.50048274 -13.2 -0.48119004 -13.21 -0.46162547 -13.22 -0.44195019 -13.23 -0.42231936 -13.24 -0.40288022 -13.25 -0.38377024 -13.26 -0.36511539 -13.27 -0.3470287 -13.28 -0.32960891 -13.29 -0.31293939 -13.3 -0.2970873 -13.31 -0.28210297 -13.32 -0.26801952 -13.33 -0.25485273 -13.34 -0.24260107 -13.35 -0.23124609 -13.36 -0.22075282 -13.37 -0.21107048 -13.38 -0.20213335 -13.39 -0.19386166 -13.4 -0.18616275 -13.41 -0.17893219 -13.42 -0.17205509 -13.43 -0.16540743 -13.44 -0.15885742 -13.45 -0.15226697 -13.46 -0.14549316 -13.47 -0.13838978 -13.48 -0.13080892 -13.49 -0.1226026 -13.5 -0.11362447 -13.51 -0.10373157 -13.52 -0.092786143 -13.53 -0.080657561 -13.54 -0.067224254 -13.55 -0.052375737 -13.56 -0.036014646 -13.57 -0.018058812 -13.58 0.0015566987 -13.59 0.022877586 -13.6 0.045928416 -13.61 0.070710867 -13.62 0.09720217 -13.63 0.12535381 -13.64 0.15509051 -13.65 0.18630966 -13.66 0.21888102 -13.67 0.25264706 -13.68 0.28742364 -13.69 0.32300129 -13.7 0.35914701 -13.71 0.39560662 -13.72 0.43210754 -13.73 0.46836214 -13.74 0.50407148 -13.75 0.53892938 -13.76 0.57262683 -13.77 0.60485655 -13.78 0.63531764 -13.79 0.66372029 -13.8 0.68979025 -13.81 0.71327318 -13.82 0.73393863 -13.83 0.75158357 -13.84 0.76603542 -13.85 0.77715455 -13.86 0.78483602 -13.87 0.78901077 -13.88 0.78964604 -13.89 0.7867451 -13.9 0.78034632 -13.91 0.77052161 -13.92 0.75737428 -13.93 0.74103636 -13.94 0.72166557 -13.95 0.69944191 -13.96 0.67456403 -13.97 0.6472455 -13.98 0.61771105 -13.99 0.58619287 -14 0.5529271 -14.01 0.51815055 -14.02 0.48209776 -14.03 0.4449984 -14.04 0.40707509 -14.05 0.36854166 -14.06 0.32960182 -14.07 0.2904483 -14.08 0.25126237 -14.09 0.21221374 -14.1 0.17346081 -14.11 0.13515121 -14.12 0.097422536 -14.13 0.060403306 -14.14 0.024213974 -14.15 -0.011031955 -14.16 -0.045226829 -14.17 -0.078267801 -14.18 -0.11005587 -14.19 -0.14049503 -14.2 -0.16949163 -14.21 -0.19695383 -14.22 -0.22279134 -14.23 -0.24691524 -14.24 -0.26923812 -14.25 -0.28967432 -14.26 -0.30814039 -14.27 -0.32455571 -14.28 -0.33884323 -14.29 -0.35093042 -14.3 -0.36075019 -14.31 -0.36824205 -14.32 -0.37335319 -14.33 -0.37603967 -14.34 -0.37626764 -14.35 -0.37401445 -14.36 -0.36926981 -14.37 -0.36203684 -14.38 -0.352333 -14.39 -0.34019096 -14.4 -0.32565926 -14.41 -0.30880281 -14.42 -0.28970323 -14.43 -0.2684589 -14.44 -0.24518483 -14.45 -0.22001222 -14.46 -0.19308781 -14.47 -0.16457292 -14.48 -0.13464222 -14.49 -0.10348228 -14.5 -0.071289855 -14.51 -0.038269929 -14.52 -0.0046336341 -14.53 0.029404005 -14.54 0.063626409 -14.55 0.097817821 -14.56 0.13176566 -14.57 0.16526281 -14.58 0.19810977 -14.59 0.23011657 -14.6 0.26110455 -14.61 0.29090772 -14.62 0.31937391 -14.63 0.34636549 -14.64 0.37175979 -14.65 0.39544913 -14.66 0.41734048 -14.67 0.43735483 -14.68 0.45542631 -14.69 0.47150096 -14.7 0.48553543 -14.71 0.49749554 -14.72 0.50735479 -14.73 0.51509285 -14.74 0.52069425 -14.75 0.52414715 -14.76 0.52544238 -14.77 0.52457269 -14.78 0.52153236 -14.79 0.51631712 -14.8 0.50892439 -14.81 0.49935384 -14.82 0.48760828 -14.83 0.47369475 -14.84 0.45762591 -14.85 0.43942149 -14.86 0.41910992 -14.87 0.39672982 -14.88 0.37233161 -14.89 0.34597884 -14.9 0.31774933 -14.91 0.28773609 -14.92 0.25604788 -14.93 0.22280937 -14.94 0.18816099 -14.95 0.15225828 -14.96 0.11527093 -14.97 0.077381394 -14.98 0.038783145 -14.99 -0.00032133004 -15 -0.03972281 -15.01 -0.079207793 -15.02 -0.11856106 -15.03 -0.1575683 -15.04 -0.19601867 -15.05 -0.23370728 -15.06 -0.27043755 -15.07 -0.30602329 -15.08 -0.3402906 -15.09 -0.37307942 -15.1 -0.40424482 -15.11 -0.43365792 -15.12 -0.46120654 -15.13 -0.48679552 -15.14 -0.51034674 -15.15 -0.53179892 -15.16 -0.55110713 -15.17 -0.5682422 -15.18 -0.58318988 -15.19 -0.59594997 -15.2 -0.60653531 -15.21 -0.61497075 -15.22 -0.62129211 -15.23 -0.62554516 -15.24 -0.62778453 -15.25 -0.6280728 -15.26 -0.62647947 -15.27 -0.62308013 -15.28 -0.61795551 -15.29 -0.61119067 -15.3 -0.60287417 -15.31 -0.5930973 -15.32 -0.58195324 -15.33 -0.56953631 -15.34 -0.55594122 -15.35 -0.54126223 -15.36 -0.52559247 -15.37 -0.5090232 -15.38 -0.49164307 -15.39 -0.4735375 -15.4 -0.45478809 -15.41 -0.43547214 -15.42 -0.41566218 -15.43 -0.39542571 -15.44 -0.374825 -15.45 -0.35391705 -15.46 -0.33275367 -15.47 -0.31138169 -15.48 -0.28984331 -15.49 -0.26817658 -15.5 -0.24641594 -15.51 -0.22459287 -15.52 -0.20273663 -15.53 -0.18087496 -15.54 -0.15903486 -15.55 -0.1372433 -15.56 -0.11552792 -15.57 -0.093917605 -15.58 -0.072443046 -15.59 -0.051137103 -15.6 -0.030035109 -15.61 -0.0091750188 -15.62 0.011402569 -15.63 0.031654521 -15.64 0.051535397 -15.65 0.070997782 -15.66 0.089992714 -15.67 0.10847019 -15.68 0.12637969 -15.69 0.14367081 -15.7 0.16029383 -15.71 0.17620027 -15.72 0.19134354 -15.73 0.2056794 -15.74 0.21916646 -15.75 0.23176664 -15.76 0.2434455 -15.77 0.25417261 -15.78 0.26392177 -15.79 0.27267125 -15.8 0.28040395 -15.81 0.28710753 -15.82 0.29277454 -15.83 0.29740249 -15.84 0.30099388 -15.85 0.30355632 -15.86 0.30510246 -15.87 0.30565008 -15.88 0.30522203 -15.89 0.30384618 -15.9 0.30155536 -15.91 0.29838715 -15.92 0.29438375 -15.93 0.28959165 -15.94 0.2840613 -15.95 0.27784666 -15.96 0.27100468 -15.97 0.26359467 -15.98 0.25567759 -15.99 0.24731529 -16 0.23856966 -16.01 0.22950176 -16.02 0.22017089 -16.03 0.21063369 -16.04 0.20094325 -16.05 0.1911483 -16.06 0.18129244 -16.07 0.17141353 -16.08 0.16154314 -16.09 0.15170624 -16.1 0.141921 -16.11 0.13219879 -16.12 0.1225444 -16.13 0.11295641 -16.14 0.10342779 -16.15 0.093946625 -16.16 0.084497062 -16.17 0.075060344 -16.18 0.065615981 -16.19 0.056142998 -16.2 0.046621224 -16.21 0.037032603 -16.22 0.027362475 -16.23 0.017600812 -16.24 0.0077433525 -16.25 -0.0022073753 -16.26 -0.012241177 -16.27 -0.02233949 -16.28 -0.032474861 -16.29 -0.042610636 -16.3 -0.052700856 -16.31 -0.062690372 -16.32 -0.072515171 -16.33 -0.082102928 -16.34 -0.09137375 -16.35 -0.10024112 -16.36 -0.10861302 -16.37 -0.11639322 -16.38 -0.12348272 -16.39 -0.12978127 -16.4 -0.13518909 -16.41 -0.13960854 -16.42 -0.14294598 -16.43 -0.14511354 -16.44 -0.146031 -16.45 -0.14562755 -16.46 -0.14384362 -16.47 -0.1406325 -16.48 -0.13596198 -16.49 -0.12981578 -16.5 -0.12219483 -16.51 -0.11311841 -16.52 -0.10262504 -16.53 -0.09077308 -16.54 -0.077641158 -16.55 -0.063328231 -16.56 -0.04795337 -16.57 -0.031655204 -16.58 -0.014591029 -16.59 0.0030644218 -16.6 0.021120558 -16.61 0.03937285 -16.62 0.057605067 -16.63 0.075591816 -16.64 0.093101361 -16.65 0.10989867 -16.66 0.12574867 -16.67 0.14041964 -16.68 0.15368666 -16.69 0.16533517 -16.7 0.17516441 -16.71 0.18299081 -16.72 0.1886512 -16.73 0.19200578 -16.74 0.19294082 -16.75 0.19137095 -16.76 0.18724114 -16.77 0.18052812 -16.78 0.1712414 -16.79 0.15942371 -16.8 0.14515092 -16.81 0.12853146 -16.82 0.10970515 -16.83 0.088841538 -16.84 0.066137733 -16.85 0.041815818 -16.86 0.016119827 -16.87 -0.010687608 -16.88 -0.038328888 -16.89 -0.06651529 -16.9 -0.094950938 -16.91 -0.12333684 -16.92 -0.15137489 -16.93 -0.17877179 -16.94 -0.20524277 -16.95 -0.23051515 -16.96 -0.25433147 -16.97 -0.27645244 -16.98 -0.29665938 -16.99 -0.31475628 -17 -0.33057142 -17.01 -0.3439586 -17.02 -0.3547978 -17.03 -0.36299554 -17.04 -0.36848473 -17.05 -0.37122426 -17.06 -0.3711981 -17.07 -0.36841426 -17.08 -0.36290339 -17.09 -0.3547173 -17.1 -0.34392722 -17.11 -0.33062209 -17.12 -0.31490672 -17.13 -0.29690004 -17.14 -0.27673331 -17.15 -0.25454849 -17.16 -0.23049664 -17.17 -0.20473651 -17.18 -0.17743318 -17.19 -0.14875694 -17.2 -0.11888216 -17.21 -0.087986394 -17.22 -0.056249538 -17.23 -0.023853044 -17.24 0.0090207665 -17.25 0.042189382 -17.26 0.075470757 -17.27 0.10868398 -17.28 0.14164997 -17.29 0.17419222 -17.3 0.20613758 -17.31 0.23731709 -17.32 0.26756688 -17.33 0.29672911 -17.34 0.32465295 -17.35 0.35119552 -17.36 0.37622293 -17.37 0.39961118 -17.38 0.42124707 -17.39 0.44102902 -17.4 0.4588678 -17.41 0.47468708 -17.42 0.48842392 -17.43 0.50002904 -17.44 0.50946697 -17.45 0.51671602 -17.46 0.52176808 -17.47 0.52462825 -17.48 0.5253144 -17.49 0.52385653 -17.5 0.52029604 -17.51 0.514685 -17.52 0.50708523 -17.53 0.49756752 -17.54 0.48621069 -17.55 0.4731008 -17.56 0.45833032 -17.57 0.44199738 -17.58 0.42420511 -17.59 0.40506101 -17.6 0.38467645 -17.61 0.36316618 -17.62 0.34064794 -17.63 0.31724208 -17.64 0.29307128 -17.65 0.26826023 -17.66 0.24293529 -17.67 0.2172242 -17.68 0.19125571 -17.69 0.16515912 -17.7 0.13906386 -17.71 0.11309889 -17.72 0.087392104 -17.73 0.062069655 -17.74 0.037255176 -17.75 0.013069 -17.76 -0.010372676 -17.77 -0.032958642 -17.78 -0.054583511 -17.79 -0.075148544 -17.8 -0.094562404 -17.81 -0.11274186 -17.82 -0.12961239 -17.83 -0.14510867 -17.84 -0.15917496 -17.85 -0.17176536 -17.86 -0.18284391 -17.87 -0.19238458 -17.88 -0.20037117 -17.89 -0.206797 -17.9 -0.21166458 -17.91 -0.21498518 -17.92 -0.21677832 -17.93 -0.21707119 -17.94 -0.21589812 -17.95 -0.21329993 -17.96 -0.20932342 -17.97 -0.20402081 -17.98 -0.1974492 -17.99 -0.18967017 -18 -0.18074934 -18.01 -0.17075607 -18.02 -0.15976314 -18.03 -0.14784656 -18.04 -0.13508533 -18.05 -0.12156135 -18.06 -0.10735926 -18.07 -0.092566279 -18.08 -0.077272168 -18.09 -0.061569024 -18.1 -0.045551145 -18.11 -0.029314835 -18.12 -0.012958167 -18.13 0.0034192893 -18.14 0.019716792 -18.15 0.035832789 -18.16 0.051665324 -18.17 0.067112477 -18.18 0.082072836 -18.19 0.096445988 -18.2 0.11013303 -18.21 0.12303707 -18.22 0.13506376 -18.23 0.14612182 -18.24 0.15612347 -18.25 0.16498503 -18.26 0.17262727 -18.27 0.178976 -18.28 0.18396241 -18.29 0.18752358 -18.3 0.18960289 -18.31 0.19015045 -18.32 0.18912352 -18.33 0.18648697 -18.34 0.18221366 -18.35 0.1762849 -18.36 0.16869085 -18.37 0.15943095 -18.38 0.14851426 -18.39 0.13595985 -18.4 0.12179712 -18.41 0.106066 -18.42 0.088817209 -18.43 0.070112275 -18.44 0.050023587 -18.45 0.028634253 -18.46 0.0060378636 -18.47 -0.017661883 -18.48 -0.042351694 -18.49 -0.06790934 -18.5 -0.094204451 -18.51 -0.12109944 -18.52 -0.14845057 -18.53 -0.17610911 -18.54 -0.20392257 -18.55 -0.2317361 -18.56 -0.25939378 -18.57 -0.28674009 -18.58 -0.31362131 -18.59 -0.33988685 -18.6 -0.36539062 -18.61 -0.38999225 -18.62 -0.41355826 -18.63 -0.43596303 -18.64 -0.45708974 -18.65 -0.47683111 -18.66 -0.49508991 -18.67 -0.51177944 -18.68 -0.52682378 -18.69 -0.54015784 -18.7 -0.55172732 -18.71 -0.56148853 -18.72 -0.569408 -18.73 -0.5754621 -18.74 -0.57963648 -18.75 -0.58192547 -18.76 -0.58233139 -18.77 -0.58086393 -18.78 -0.5775394 -18.79 -0.57238007 -18.8 -0.56541355 -18.81 -0.55667214 -18.82 -0.54619234 -18.83 -0.53401438 -18.84 -0.52018186 -18.85 -0.5047415 -18.86 -0.48774296 -18.87 -0.46923879 -18.88 -0.44928448 -18.89 -0.4279386 -18.9 -0.40526301 -18.91 -0.38132318 -18.92 -0.35618857 -18.93 -0.32993303 -18.94 -0.30263523 -18.95 -0.27437914 -18.96 -0.2452544 -18.97 -0.21535676 -18.98 -0.18478835 -18.99 -0.15365795 -19 -0.12208109 -19.01 -0.090180046 -19.02 -0.058083655 -19.03 -0.025927033 -19.04 0.0061489441 -19.05 0.037998305 -19.06 0.069470837 -19.07 0.10041311 -19.08 0.13066966 -19.09 0.16008435 -19.1 0.18850182 -19.11 0.21576908 -19.12 0.24173716 -19.13 0.2662628 -19.14 0.2892102 -19.15 0.31045265 -19.16 0.32987423 -19.17 0.34737128 -19.18 0.36285384 -19.19 0.37624688 -19.2 0.38749136 -19.21 0.39654506 -19.22 0.4033832 -19.23 0.40799883 -19.24 0.41040293 -19.25 0.41062428 -19.26 0.40870914 -19.27 0.40472059 -19.28 0.39873778 -19.29 0.39085491 -19.3 0.38118003 -19.31 0.3698338 -19.32 0.356948 -19.33 0.34266408 -19.34 0.32713161 -19.35 0.3105067 -19.36 0.29295042 -19.37 0.27462735 -19.38 0.25570401 -19.39 0.23634753 -19.4 0.2167243 -19.41 0.19699878 -19.42 0.17733235 -19.43 0.15788237 -19.44 0.1388012 -19.45 0.12023548 -19.46 0.10232539 -19.47 0.085204083 -19.48 0.068997138 -19.49 0.053822133 -19.5 0.039788254 -19.51 0.026995973 -19.52 0.015536758 -19.53 0.0054928211 -19.54 -0.0030631048 -19.55 -0.010067976 -19.56 -0.015468632 -19.57 -0.019221987 -19.58 -0.021295209 -19.59 -0.021665911 -19.6 -0.020322326 -19.61 -0.017263497 -19.62 -0.012499456 -19.63 -0.0060514024 -19.64 0.0020481301 -19.65 0.011755117 -19.66 0.02301391 -19.67 0.035757131 -19.68 0.04990561 -19.69 0.065368367 -19.7 0.082042667 -19.71 0.099814137 -19.72 0.118557 -19.73 0.13813437 -19.74 0.15839875 -19.75 0.17919258 -19.76 0.20034898 -19.77 0.22169268 -19.78 0.24304107 -19.79 0.26420547 -19.8 0.2849926 -19.81 0.30520617 -19.82 0.32464872 -19.83 0.34312356 -19.84 0.3604369 -19.85 0.37640011 -19.86 0.39083201 -19.87 0.40356128 -19.88 0.41442888 -19.89 0.42329036 -19.9 0.43001826 -19.91 0.43450416 -19.92 0.43666078 -19.93 0.43642367 -19.94 0.43375272 -19.95 0.42863335 -19.96 0.42107728 -19.97 0.41112298 -19.98 0.39883566 -19.99 0.38430681 -20 0.3676534 -20.01 0.34901653 -20.02 0.32855972 -20.03 0.30646681 -20.04 0.2829395 -20.05 0.25819455 -20.06 0.23246073 -20.07 0.20597558 -20.08 0.178982 -20.09 0.15172475 -20.1 0.12444699 -20.11 0.097386862 -20.12 0.070774124 -20.13 0.044827081 -20.14 0.019749679 -20.15 -0.0042710752 -20.16 -0.027067357 -20.17 -0.048492405 -20.18 -0.068421989 -20.19 -0.08675547 -20.2 -0.10341643 -20.21 -0.11835289 -20.22 -0.13153708 -20.23 -0.14296487 -20.24 -0.15265478 -20.25 -0.16064667 -20.26 -0.16700013 -20.27 -0.17179263 -20.28 -0.17511738 -20.29 -0.17708113 -20.3 -0.17780177 -20.31 -0.17740583 -20.32 -0.17602608 -20.33 -0.17379894 -20.34 -0.17086218 -20.35 -0.1673525 -20.36 -0.16340337 -20.37 -0.15914301 -20.38 -0.1546925 -20.39 -0.15016417 -20.4 -0.14566018 -20.41 -0.14127135 -20.42 -0.13707625 -20.43 -0.13314055 -20.44 -0.12951663 -20.45 -0.12624346 -20.46 -0.12334672 -20.47 -0.12083914 -20.48 -0.11872117 -20.49 -0.11698175 -20.5 -0.11559934 -20.51 -0.1145431 -20.52 -0.11377425 -20.53 -0.11324751 -20.54 -0.11291265 -20.55 -0.1127161 -20.56 -0.11260262 -20.57 -0.11251688 -20.58 -0.11240512 -20.59 -0.11221665 -20.6 -0.11190528 -20.61 -0.11143066 -20.62 -0.11075942 -20.63 -0.10986615 -20.64 -0.10873417 -20.65 -0.10735616 -20.66 -0.10573444 -20.67 -0.10388115 -20.68 -0.10181808 -20.69 -0.099576365 -20.7 -0.097195889 -20.71 -0.094724505 -20.72 -0.092217045 -20.73 -0.08973415 -20.74 -0.087340951 -20.75 -0.085105608 -20.76 -0.083097759 -20.77 -0.081386886 -20.78 -0.080040652 -20.79 -0.079123226 -20.8 -0.078693641 -20.81 -0.078804202 -20.82 -0.079498998 -20.83 -0.080812525 -20.84 -0.082768465 -20.85 -0.085378637 -20.86 -0.088642143 -20.87 -0.092544734 -20.88 -0.097058405 -20.89 -0.10214122 -20.9 -0.10773743 -20.91 -0.11377775 -20.92 -0.12018001 -20.93 -0.12684995 -20.94 -0.13368232 -20.95 -0.14056213 -20.96 -0.14736619 -20.97 -0.15396477 -20.98 -0.16022347 -20.99 -0.16600516 -21 -0.17117213 -21.01 -0.17558819 -21.02 -0.17912092 -21.03 -0.18164387 -21.04 -0.18303873 -21.05 -0.18319751 -21.06 -0.18202451 -21.07 -0.17943828 -21.08 -0.17537333 -21.09 -0.16978172 -21.1 -0.16263436 -21.11 -0.15392212 -21.12 -0.14365666 -21.13 -0.131871 -21.14 -0.1186197 -21.15 -0.10397889 -21.16 -0.088045838 -21.17 -0.070938274 -21.18 -0.052793422 -21.19 -0.033766689 -21.2 -0.01403009 -21.21 0.0062296008 -21.22 0.026812941 -21.23 0.047510132 -21.24 0.068103524 -21.25 0.088370266 -21.26 0.10808508 -21.27 0.12702312 -21.28 0.14496286 -21.29 0.16168897 -21.3 0.17699516 -21.31 0.19068696 -21.32 0.20258433 -21.33 0.2125241 -21.34 0.22036224 -21.35 0.2259759 -21.36 0.22926512 -21.37 0.23015433 -21.38 0.22859345 -21.39 0.22455872 -21.4 0.21805321 -21.41 0.20910686 -21.42 0.19777635 -21.43 0.18414449 -21.44 0.16831933 -21.45 0.15043299 -21.46 0.13064013 -21.47 0.10911622 -21.48 0.086055534 -21.49 0.061668954 -21.5 0.036181586 -21.51 0.0098302673 -21.52 -0.017139051 -21.53 -0.044473966 -21.54 -0.07191832 -21.55 -0.099214885 -21.56 -0.126108 -21.57 -0.15234617 -21.58 -0.17768447 -21.59 -0.20188697 -21.6 -0.22472886 -21.61 -0.24599853 -21.62 -0.26549939 -21.63 -0.28305152 -21.64 -0.29849318 -21.65 -0.31168197 -21.66 -0.32249596 -21.67 -0.33083449 -21.68 -0.33661879 -21.69 -0.33979242 -21.7 -0.34032152 -21.71 -0.33819482 -21.72 -0.33342352 -21.73 -0.32604095 -21.74 -0.31610213 -21.75 -0.30368306 -21.76 -0.28887998 -21.77 -0.27180839 -21.78 -0.25260196 -21.79 -0.23141137 -21.8 -0.2084029 -21.81 -0.18375706 -21.82 -0.157667 -21.83 -0.13033684 -21.84 -0.10198001 -21.85 -0.072817351 -21.86 -0.043075309 -21.87 -0.012983973 -21.88 0.017224881 -21.89 0.04731979 -21.9 0.077071607 -21.91 0.1062555 -21.92 0.13465295 -21.93 0.16205367 -21.94 0.18825751 -21.95 0.21307627 -21.96 0.23633546 -21.97 0.25787584 -21.98 0.277555 -21.99 0.29524862 -22 0.31085175 -22.01 0.32427972 -22.02 0.33546903 -22.03 0.34437792 -22.04 0.35098678 -22.05 0.3552983 -22.06 0.35733742 -22.07 0.35715099 -22.08 0.35480724 -22.09 0.35039495 -22.1 0.34402244 -22.11 0.33581628 -22.12 0.32591982 -22.13 0.31449143 -22.14 0.30170266 -22.15 0.28773614 -22.16 0.27278338 -22.17 0.25704243 -22.18 0.24071545 -22.19 0.22400629 -22.2 0.20711791 -22.21 0.19024997 -22.22 0.1735964 -22.23 0.15734301 -22.24 0.14166537 -22.25 0.12672669 -22.26 0.11267601 -22.27 0.099646548 -22.28 0.087754312 -22.29 0.077096993 -22.3 0.067753106 -22.31 0.059781448 -22.32 0.053220827 -22.33 0.048090098 -22.34 0.044388473 -22.35 0.042096093 -22.36 0.041174864 -22.37 0.041569506 -22.38 0.043208809 -22.39 0.046007053 -22.4 0.049865571 -22.41 0.054674408 -22.42 0.060314064 -22.43 0.066657258 -22.44 0.073570715 -22.45 0.080916923 -22.46 0.088555845 -22.47 0.096346563 -22.48 0.10414883 -22.49 0.11182454 -22.5 0.11923905 -22.51 0.12626243 -22.52 0.13277054 -22.53 0.13864606 -22.54 0.14377934 -22.55 0.14806917 -22.56 0.15142345 -22.57 0.15375977 -22.58 0.15500587 -22.59 0.15510009 -22.6 0.15399169 -22.61 0.15164112 -22.62 0.14802026 -22.63 0.14311254 -22.64 0.13691306 -22.65 0.1294286 -22.66 0.12067759 -22.67 0.11069001 -22.68 0.099507168 -22.69 0.087181455 -22.7 0.073775945 -22.71 0.059363937 -22.72 0.044028375 -22.73 0.02786117 -22.74 0.010962406 -22.75 -0.006560548 -22.76 -0.024594027 -22.77 -0.043019151 -22.78 -0.061712977 -22.79 -0.080549711 -22.8 -0.099401971 -22.81 -0.11814206 -22.82 -0.13664326 -22.83 -0.15478105 -22.84 -0.17243436 -22.85 -0.18948667 -22.86 -0.20582708 -22.87 -0.22135122 -22.88 -0.23596203 -22.89 -0.24957045 -22.9 -0.26209589 -22.91 -0.27346656 -22.92 -0.28361965 -22.93 -0.29250131 -22.94 -0.30006656 -22.95 -0.30627895 -22.96 -0.31111021 -22.97 -0.31453972 -22.98 -0.31655396 -22.99 -0.31714587 -23 -0.31631424 -23.01 -0.31406305 -23.02 -0.31040092 -23.03 -0.30534056 -23.04 -0.29889835 -23.05 -0.29109399 -23.06 -0.28195033 -23.07 -0.2714933 -23.08 -0.25975198 -23.09 -0.24675882 -23.1 -0.23254996 -23.11 -0.21716577 -23.12 -0.20065135 -23.13 -0.18305719 -23.14 -0.16443991 -23.15 -0.14486287 -23.16 -0.12439696 -23.17 -0.10312112 -23.18 -0.081122947 -23.19 -0.058499012 -23.2 -0.035355126 -23.21 -0.01180634 -23.22 0.012023257 -23.23 0.036000991 -23.24 0.059986304 -23.25 0.083831725 -23.26 0.1073841 -23.27 0.13048604 -23.28 0.15297766 -23.29 0.17469844 -23.3 0.19548927 -23.31 0.21519467 -23.32 0.23366499 -23.33 0.25075874 -23.34 0.26634478 -23.35 0.28030449 -23.36 0.29253382 -23.37 0.30294509 -23.38 0.31146861 -23.39 0.31805401 -23.4 0.32267124 -23.41 0.32531124 -23.42 0.32598632 -23.43 0.32473006 -23.44 0.32159695 -23.45 0.31666161 -23.46 0.31001772 -23.47 0.30177661 -23.48 0.29206555 -23.49 0.28102585 -23.5 0.26881071 -23.51 0.25558293 -23.52 0.24151253 -23.53 0.22677427 -23.54 0.21154519 -23.55 0.19600216 -23.56 0.18031948 -23.57 0.16466664 -23.58 0.14920616 -23.59 0.13409165 -23.6 0.11946597 -23.61 0.10545973 -23.62 0.092189868 -23.63 0.079758518 -23.64 0.06825212 -23.65 0.057740713 -23.66 0.04827747 -23.67 0.039898448 -23.68 0.032622549 -23.69 0.026451683 -23.7 0.021371116 -23.71 0.017350014 -23.72 0.014342154 -23.73 0.012286801 -23.74 0.011109747 -23.75 0.010724491 -23.76 0.011033559 -23.77 0.01192995 -23.78 0.01329869 -23.79 0.015018495 -23.8 0.01696351 -23.81 0.019005114 -23.82 0.021013774 -23.83 0.022860922 -23.84 0.024420828 -23.85 0.025572447 -23.86 0.026201217 -23.87 0.026200766 -23.88 0.025474515 -23.89 0.023937146 -23.9 0.021515902 -23.91 0.018151702 -23.92 0.013800057 -23.93 0.0084317487 -23.94 0.0020332928 -23.95 -0.0053928568 -23.96 -0.013828338 -23.97 -0.023239156 -23.98 -0.033576192 -23.99 -0.044775932 -24 -0.0567614 -24.01 -0.069443277 -24.02 -0.082721177 -24.03 -0.096485061 -24.04 -0.11061675 -24.05 -0.12499153 -24.06 -0.13947978 -24.07 -0.15394868 -24.08 -0.16826384 -24.09 -0.18229099 -24.1 -0.19589754 -24.11 -0.20895413 -24.12 -0.22133612 -24.13 -0.23292493 -24.14 -0.24360931 -24.15 -0.25328651 -24.16 -0.26186331 -24.17 -0.26925697 -24.18 -0.275396 -24.19 -0.28022085 -24.2 -0.28368445 -24.21 -0.28575264 -24.22 -0.2864044 -24.23 -0.28563206 -24.24 -0.28344124 -24.25 -0.27985074 -24.26 -0.27489226 -24.27 -0.26860996 -24.28 -0.2610599 -24.29 -0.25230933 -24.3 -0.24243585 -24.31 -0.23152644 -24.32 -0.21967634 -24.33 -0.20698792 -24.34 -0.19356935 -24.35 -0.17953327 -24.36 -0.16499539 -24.37 -0.15007306 -24.38 -0.13488388 -24.39 -0.11954427 -24.4 -0.10416815 -24.41 -0.088865677 -24.42 -0.073742094 -24.43 -0.058896665 -24.44 -0.044421788 -24.45 -0.030402255 -24.46 -0.016914654 -24.47 -0.0040269653 -24.48 0.0082016959 -24.49 0.019721161 -24.5 0.030490138 -24.51 0.040476005 -24.52 0.049654474 -24.53 0.058009148 -24.54 0.065531004 -24.55 0.072217803 -24.56 0.078073469 -24.57 0.083107448 -24.58 0.087334072 -24.59 0.090771947 -24.6 0.093443377 -24.61 0.095373841 -24.62 0.096591531 -24.63 0.09712696 -24.64 0.097012631 -24.65 0.096282787 -24.66 0.09497322 -24.67 0.09312114 -24.68 0.090765104 -24.69 0.087944976 -24.7 0.084701933 -24.71 0.081078483 -24.72 0.077118501 -24.73 0.07286726 -24.74 0.068371458 -24.75 0.063679225 -24.76 0.058840097 -24.77 0.053904966 -24.78 0.048925978 -24.79 0.043956396 -24.8 0.039050401 -24.81 0.034262845 -24.82 0.029648946 -24.83 0.025263914 -24.84 0.021162526 -24.85 0.017398629 -24.86 0.014024586 -24.87 0.011090655 -24.88 0.0086443157 -24.89 0.0067295407 -24.9 0.0053860221 -24.91 0.0046483627 -24.92 0.004545245 -24.93 0.0050985927 -24.94 0.0063227443 -24.95 0.0082236575 -24.96 0.010798171 -24.97 0.014033345 -24.98 0.01790591 -24.99 0.022381853 -25 0.027416156 -25.01 0.032952727 -25.02 0.038924539 -25.03 0.045253991 -25.04 0.051853508 -25.05 0.0586264 -25.06 0.065467955 -25.07 0.07226679 -25.08 0.078906422 -25.09 0.085267059 -25.1 0.091227564 -25.11 0.096667571 -25.12 0.10146971 -25.13 0.10552186 -25.14 0.10871948 -25.15 0.11096779 -25.16 0.11218397 -25.17 0.11229909 -25.18 0.11125996 -25.19 0.10903059 -25.2 0.10559352 -25.21 0.10095065 -25.22 0.095123912 -25.23 0.088155413 -25.24 0.0801073 -25.25 0.071061223 -25.26 0.061117444 -25.27 0.050393607 -25.28 0.039023187 -25.29 0.027153675 -25.3 0.014944508 -25.31 0.0025648115 -25.32 -0.0098090113 -25.33 -0.021995796 -25.34 -0.033812192 -25.35 -0.045075244 -25.36 -0.055604954 -25.37 -0.065226766 -25.38 -0.073773956 -25.39 -0.08108988 -25.4 -0.087030071 -25.41 -0.091464152 -25.42 -0.094277556 -25.43 -0.095373032 -25.44 -0.09467194 -25.45 -0.092115316 -25.46 -0.08766471 -25.47 -0.081302795 -25.48 -0.073033742 -25.49 -0.062883365 -25.5 -0.050899028 -25.51 -0.037149335 -25.52 -0.021723572 -25.53 -0.0047309425 -25.54 0.013700435 -25.55 0.033424737 -25.56 0.05427986 -25.57 0.076089042 -25.58 0.098662673 -25.59 0.12180027 -25.6 0.14529262 -25.61 0.16892402 -25.62 0.19247466 -25.63 0.21572304 -25.64 0.23844841 -25.65 0.26043333 -25.66 0.28146601 -25.67 0.30134276 -25.68 0.31987023 -25.69 0.33686752 -25.7 0.35216822 -25.71 0.3656221 -25.72 0.37709669 -25.73 0.38647861 -25.74 0.39367459 -25.75 0.39861228 -25.76 0.40124082 -25.77 0.40153104 -25.78 0.39947556 -25.79 0.39508854 -25.8 0.38840523 -25.81 0.37948134 -25.82 0.36839222 -25.83 0.35523182 -25.84 0.3401116 -25.85 0.32315922 -25.86 0.3045172 -25.87 0.28434142 -25.88 0.26279958 -25.89 0.24006962 -25.9 0.216338 -25.91 0.19179804 -25.92 0.1666481 -25.93 0.14108981 -25.94 0.11532625 -25.95 0.089560044 -25.96 0.063991533 -25.97 0.038816852 -25.98 0.014226057 -25.99 -0.0095987466 -26 -0.032485234 -26.01 -0.054272643 -26.02 -0.074813466 -26.03 -0.093975046 -26.04 -0.11164104 -26.05 -0.12771271 -26.06 -0.14211004 -26.07 -0.15477264 -26.08 -0.16566042 -26.09 -0.17475398 -26.1 -0.18205474 -26.11 -0.18758482 -26.12 -0.1913866 -26.13 -0.19352197 -26.14 -0.19407137 -26.15 -0.19313253 -26.16 -0.19081894 -26.17 -0.18725816 -26.18 -0.18258987 -26.19 -0.17696385 -26.2 -0.1705378 -26.21 -0.16347502 -26.22 -0.1559422 -26.23 -0.14810705 -26.24 -0.14013606 -26.25 -0.13219228 -26.26 -0.12443327 -26.27 -0.11700909 -26.28 -0.11006046 -26.29 -0.10371719 -26.3 -0.098096644 -26.31 -0.093302527 -26.32 -0.089423807 -26.33 -0.086533878 -26.34 -0.08468993 -26.35 -0.083932529 -26.36 -0.084285403 -26.37 -0.08575544 -26.38 -0.088332872 -26.39 -0.091991661 -26.4 -0.096690063 -26.41 -0.10237137 -26.42 -0.10896479 -26.43 -0.11638654 -26.44 -0.12454101 -26.45 -0.1333221 -26.46 -0.14261466 -26.47 -0.15229601 -26.48 -0.16223755 -26.49 -0.17230647 -26.5 -0.18236737 -26.51 -0.19228407 -26.52 -0.20192128 -26.53 -0.2111463 -26.54 -0.2198306 -26.55 -0.22785147 -26.56 -0.23509336 -26.57 -0.24144931 -26.58 -0.2468221 -26.59 -0.25112535 -26.6 -0.25428439 -26.61 -0.25623702 -26.62 -0.25693407 -26.63 -0.25633982 -26.64 -0.25443227 -26.65 -0.25120315 -26.66 -0.24665795 -26.67 -0.24081567 -26.68 -0.23370851 -26.69 -0.2253814 -26.7 -0.21589148 -26.71 -0.20530741 -26.72 -0.19370866 -26.73 -0.18118461 -26.74 -0.16783371 -26.75 -0.15376242 -26.76 -0.13908416 -26.77 -0.12391812 -26.78 -0.10838806 -26.79 -0.092620924 -26.8 -0.076745508 -26.81 -0.06089093 -26.82 -0.045185115 -26.83 -0.02975319 -26.84 -0.014715851 -26.85 -0.00018771232 -26.86 0.01372434 -26.87 0.026922754 -26.88 0.039320841 -26.89 0.050844207 -26.9 0.061432021 -26.91 0.07103811 -26.92 0.079631813 -26.93 0.087198587 -26.94 0.093740305 -26.95 0.09927525 -26.96 0.10383776 -26.97 0.10747753 -26.98 0.11025858 -26.99 0.11225787 -27 0.11356364 -27.01 0.11427341 -27.02 0.11449182 -27.03 0.11432822 -27.04 0.11389418 -27.05 0.11330091 -27.06 0.11265668 -27.07 0.11206433 -27.08 0.11161893 -27.09 0.11140556 -27.1 0.11149749 -27.11 0.1119545 -27.12 0.11282167 -27.13 0.1141285 -27.14 0.11588838 -27.15 0.11809855 -27.16 0.12074034 -27.17 0.12377987 -27.18 0.12716905 -27.19 0.13084686 -27.2 0.134741 -27.21 0.13876958 -27.22 0.14284316 -27.23 0.14686675 -27.24 0.15074195 -27.25 0.15436906 -27.26 0.15764914 -27.27 0.16048601 -27.28 0.16278812 -27.29 0.16447026 -27.3 0.16545513 -27.31 0.16567467 -27.32 0.16507125 -27.33 0.16359865 -27.34 0.16122278 -27.35 0.15792227 -27.36 0.15368884 -27.37 0.1485275 -27.38 0.14245653 -27.39 0.13550731 -27.4 0.12772401 -27.41 0.11916309 -27.42 0.10989265 -27.43 0.099991594 -27.44 0.089548736 -27.45 0.07866166 -27.46 0.067435507 -27.47 0.055981603 -27.48 0.044415982 -27.49 0.032857795 -27.5 0.021427636 -27.51 0.010245807 -27.52 -0.00056946196 -27.53 -0.010903792 -27.54 -0.020648409 -27.55 -0.029701833 -27.56 -0.037971466 -27.57 -0.04537504 -27.58 -0.051841883 -27.59 -0.057313987 -27.6 -0.061746822 -27.61 -0.065109903 -27.62 -0.067387069 -27.63 -0.068576482 -27.64 -0.068690344 -27.65 -0.067754335 -27.66 -0.065806802 -27.67 -0.062897715 -27.68 -0.059087433 -27.69 -0.054445317 -27.7 -0.04904823 -27.71 -0.042978981 -27.72 -0.036324751 -27.73 -0.029175549 -27.74 -0.02162275 -27.75 -0.013757735 -27.76 -0.0056706829 -27.77 0.0025504794 -27.78 0.01082094 -27.79 0.019059684 -27.8 0.02718999 -27.81 0.035139752 -27.82 0.042841663 -27.83 0.050233248 -27.84 0.057256823 -27.85 0.06385937 -27.86 0.069992389 -27.87 0.075611742 -27.88 0.080677532 -27.89 0.085154025 -27.9 0.089009649 -27.91 0.09221707 -27.92 0.094753365 -27.93 0.096600266 -27.94 0.097744491 -27.95 0.098178125 -27.96 0.09789904 -27.97 0.09691133 -27.98 0.095225722 -27.99 0.09285994 -28 0.089838993 -28.01 0.086195366 -28.02 0.08196907 -28.03 0.077207565 -28.04 0.071965512 -28.05 0.06630437 -28.06 0.060291834 -28.07 0.054001112 -28.08 0.047510074 -28.09 0.040900267 -28.1 0.034255848 -28.11 0.027662433 -28.12 0.021205915 -28.13 0.014971257 -28.14 0.0090413061 -28.15 0.0034956424 -28.16 -0.0015905171 -28.17 -0.0061473333 -28.18 -0.010111274 -28.19 -0.013425943 -28.2 -0.016042811 -28.21 -0.017921844 -28.22 -0.019032027 -28.23 -0.019351808 -28.24 -0.018869442 -28.25 -0.017583261 -28.26 -0.015501871 -28.27 -0.012644274 -28.28 -0.0090399207 -28.29 -0.0047286963 -28.3 0.00023917963 -28.31 0.0058033345 -28.32 0.011893525 -28.33 0.018430035 -28.34 0.025324194 -28.35 0.032479056 -28.36 0.039790219 -28.37 0.047146829 -28.38 0.054432762 -28.39 0.061527978 -28.4 0.068310064 -28.41 0.074655936 -28.42 0.080443694 -28.43 0.085554593 -28.44 0.089875106 -28.45 0.093299025 -28.46 0.095729566 -28.47 0.097081418 -28.48 0.097282681 -28.49 0.096276646 -28.5 0.094023352 -28.51 0.090500873 -28.52 0.085706302 -28.53 0.079656372 -28.54 0.072387699 -28.55 0.063956633 -28.56 0.054438694 -28.57 0.043927608 -28.58 0.032533962 -28.59 0.020383489 -28.6 0.0076150427 -28.61 -0.0056217101 -28.62 -0.019168817 -28.63 -0.032862727 -28.64 -0.046537075 -28.65 -0.0600255 -28.66 -0.073164431 -28.67 -0.085795782 -28.68 -0.097769489 -28.69 -0.10894586 -28.7 -0.11919765 -28.71 -0.12841189 -28.72 -0.13649141 -28.73 -0.14335595 -28.74 -0.14894309 -28.75 -0.15320868 -28.76 -0.15612705 -28.77 -0.1576909 -28.78 -0.15791077 -28.79 -0.15681444 -28.8 -0.15444588 -28.81 -0.15086414 -28.82 -0.14614193 -28.83 -0.14036417 -28.84 -0.13362626 -28.85 -0.1260324 -28.86 -0.11769376 -28.87 -0.10872664 -28.88 -0.099250543 -28.89 -0.089386408 -28.9 -0.079254711 -28.91 -0.068973724 -28.92 -0.058657812 -28.93 -0.048415842 -28.94 -0.038349703 -28.95 -0.028552969 -28.96 -0.019109724 -28.97 -0.010093559 -28.98 -0.0015667702 -28.99 0.0064202413 -29 0.013829343 -29.01 0.020634821 -29.02 0.026823288 -29.03 0.03239337 -29.04 0.037355155 -29.05 0.041729427 -29.06 0.045546701 -29.07 0.048846075 -29.08 0.051673928 -29.09 0.054082492 -29.1 0.056128341 -29.11 0.057870817 -29.12 0.059370451 -29.13 0.0606874 -29.14 0.06187995 -29.15 0.063003114 -29.16 0.064107358 -29.17 0.065237489 -29.18 0.066431713 -29.19 0.067720896 -29.2 0.069128027 -29.21 0.070667891 -29.22 0.072346948 -29.23 0.074163409 -29.24 0.076107495 -29.25 0.078161866 -29.26 0.080302183 -29.27 0.082497799 -29.28 0.08471254 -29.29 0.086905549 -29.3 0.089032179 -29.31 0.091044907 -29.32 0.092894245 -29.33 0.094529638 -29.34 0.095900333 -29.35 0.096956208 -29.36 0.097648559 -29.37 0.097930842 -29.38 0.097759361 -29.39 0.097093921 -29.4 0.095898426 -29.41 0.094141452 -29.42 0.091796772 -29.43 0.088843855 -29.44 0.085268319 -29.45 0.081062361 -29.46 0.076225129 -29.47 0.070763053 -29.48 0.064690112 -29.49 0.058028019 -29.5 0.050806331 -29.51 0.043062435 -29.52 0.034841423 -29.53 0.026195819 -29.54 0.017185154 -29.55 0.0078753576 -29.56 -0.0016620296 -29.57 -0.011350847 -29.58 -0.021111516 -29.59 -0.030862454 -29.6 -0.040521711 -29.61 -0.050008824 -29.62 -0.059246887 -29.63 -0.068164831 -29.64 -0.076699902 -29.65 -0.084800316 -29.66 -0.09242807 -29.67 -0.099561879 -29.68 -0.10620019 -29.69 -0.11236423 -29.7 -0.11810099 -29.71 -0.12348613 -29.72 -0.1286266 -29.73 -0.13366296 -29.74 -0.13877119 -29.75 -0.1441639 -29.76 -0.15009074 -29.77 -0.15683782 -29.78 -0.1647261 -29.79 -0.17410842 -29.8 -0.18536526 -29.81 -0.19889894 -29.82 -0.21512641 -29.83 -0.23447056 -29.84 -0.25735017 -29.85 -0.28416874 -29.86 -0.31530241 -29.87 -0.35108737 -29.88 -0.39180718 -29.89 -0.43768047 -29.9 -0.48884956 -29.91 -0.54537056 -29.92 -0.6072054 -29.93 -0.67421643 -29.94 -0.74616372 -29.95 -0.82270569 -29.96 -0.90340293 -29.97 -0.98772542 -29.98 -1.0750629 -29.99 -1.164738 -30 -1.2560221 -& -@target G2.S7 -@type xy -0 -2 -0.01 -2.0653215 -0.02 -2.0379431 -0.03 -2.0293373 -0.04 -2.0252003 -0.05 -2.0226236 -0.06 -2.020618 -0.07 -2.0187616 -0.08 -2.0168626 -0.09 -2.0148454 -0.1 -2.0127031 -0.11 -2.0104731 -0.12 -2.0082202 -0.13 -2.0060424 -0.14 -2.0040316 -0.15 -2.0022747 -0.16 -2.0008478 -0.17 -1.9998105 -0.18 -1.9992003 -0.19 -1.99903 -0.2 -1.999286 -0.21 -1.9999284 -0.22 -2.0008933 -0.23 -2.0021026 -0.24 -2.0034431 -0.25 -2.0047974 -0.26 -2.0060543 -0.27 -2.0071087 -0.28 -2.0078681 -0.29 -2.0082584 -0.3 -2.0082285 -0.31 -2.0077535 -0.32 -2.0068371 -0.33 -2.0055107 -0.34 -2.0038251 -0.35 -2.0018646 -0.36 -1.9997483 -0.37 -1.9975899 -0.38 -1.9955076 -0.39 -1.9936181 -0.4 -1.9920295 -0.41 -1.9908356 -0.42 -1.9901117 -0.43 -1.9899103 -0.44 -1.9902602 -0.45 -1.9911697 -0.46 -1.9926368 -0.47 -1.9945904 -0.48 -1.9969721 -0.49 -1.999714 -0.5 -2.0027432 -0.51 -2.0059886 -0.52 -2.0093852 -0.53 -2.0128792 -0.54 -2.0164307 -0.55 -2.0200159 -0.56 -2.0236272 -0.57 -2.0272645 -0.58 -2.030959 -0.59 -2.0347381 -0.6 -2.0386288 -0.61 -2.0426511 -0.62 -2.0468123 -0.63 -2.0511001 -0.64 -2.0554775 -0.65 -2.0598791 -0.66 -2.0642083 -0.67 -2.0683379 -0.68 -2.072092 -0.69 -2.0752825 -0.7 -2.0777141 -0.71 -2.0791803 -0.72 -2.0794792 -0.73 -2.0784244 -0.74 -2.0758578 -0.75 -2.0716597 -0.76 -2.0657606 -0.77 -2.0581481 -0.78 -2.0488744 -0.79 -2.0380151 -0.8 -2.0257827 -0.81 -2.0124843 -0.82 -1.9984348 -0.83 -1.9839927 -0.84 -1.9695465 -0.85 -1.9554991 -0.86 -1.9422507 -0.87 -1.930181 -0.88 -1.9196329 -0.89 -1.9108963 -0.9 -1.9042433 -0.91 -1.8998875 -0.92 -1.8977684 -0.93 -1.8978401 -0.94 -1.8999761 -0.95 -1.903965 -0.96 -1.9095313 -0.97 -1.916341 -0.98 -1.9240198 -0.99 -1.9321738 -1 -1.9404076 -1.01 -1.9483376 -1.02 -1.9555656 -1.03 -1.9618263 -1.04 -1.966904 -1.05 -1.9706584 -1.06 -1.973028 -1.07 -1.9740303 -1.08 -1.9737574 -1.09 -1.9723675 -1.1 -1.9700735 -1.11 -1.9671273 -1.12 -1.9638042 -1.13 -1.9604014 -1.14 -1.9572033 -1.15 -1.954443 -1.16 -1.9523098 -1.17 -1.9509378 -1.18 -1.9504005 -1.19 -1.950708 -1.2 -1.9518094 -1.21 -1.9535979 -1.22 -1.9559212 -1.23 -1.9585937 -1.24 -1.9614041 -1.25 -1.9641261 -1.26 -1.9665701 -1.27 -1.96858 -1.28 -1.9700434 -1.29 -1.9709021 -1.3 -1.9711567 -1.31 -1.9708683 -1.32 -1.970155 -1.33 -1.9691856 -1.34 -1.9681668 -1.35 -1.9673391 -1.36 -1.9669642 -1.37 -1.9672602 -1.38 -1.9684141 -1.39 -1.9705611 -1.4 -1.9737712 -1.41 -1.9780381 -1.42 -1.9832734 -1.43 -1.9893054 -1.44 -1.9958841 -1.45 -2.0026911 -1.46 -2.0093435 -1.47 -2.0153794 -1.48 -2.0204005 -1.49 -2.0240163 -1.5 -2.0258841 -1.51 -2.0257315 -1.52 -2.0233825 -1.53 -2.0187741 -1.54 -2.0119672 -1.55 -2.003154 -1.56 -1.9926548 -1.57 -1.9809104 -1.58 -1.9684808 -1.59 -1.9560717 -1.6 -1.9443631 -1.61 -1.9340433 -1.62 -1.9257738 -1.63 -1.9201496 -1.64 -1.9176655 -1.65 -1.9186826 -1.66 -1.9234027 -1.67 -1.9318484 -1.68 -1.9438525 -1.69 -1.95921 -1.7 -1.977169 -1.71 -1.9969583 -1.72 -2.0177218 -1.73 -2.0385178 -1.74 -2.0583594 -1.75 -2.0762646 -1.76 -2.0913065 -1.77 -2.1026621 -1.78 -2.1096565 -1.79 -2.1118034 -1.8 -2.1086003 -1.81 -2.100134 -1.82 -2.0868327 -1.83 -2.069218 -1.84 -2.0480306 -1.85 -2.02421 -1.86 -1.99885 -1.87 -1.9731463 -1.88 -1.9483448 -1.89 -1.9256776 -1.9 -1.906305 -1.91 -1.8914144 -1.92 -1.8819967 -1.93 -1.8783989 -1.94 -1.88091 -1.95 -1.8895285 -1.96 -1.903958 -1.97 -1.923617 -1.98 -1.9476623 -1.99 -1.9750276 -2 -2.004471 -2.01 -2.0346324 -2.02 -2.0640728 -2.03 -2.0911782 -2.04 -2.1147228 -2.05 -2.1335856 -2.06 -2.1468697 -2.07 -2.1539417 -2.08 -2.1544676 -2.09 -2.1484307 -2.1 -2.1361342 -2.11 -2.1181869 -2.12 -2.0954804 -2.13 -2.0691414 -2.14 -2.0404025 -2.15 -2.010977 -2.16 -1.9823514 -2.17 -1.955968 -2.18 -1.9331591 -2.19 -1.9150857 -2.2 -1.9026774 -2.21 -1.8965887 -2.22 -1.8971691 -2.23 -1.9044449 -2.24 -1.9181165 -2.25 -1.9378419 -2.26 -1.9624175 -2.27 -1.9905906 -2.28 -2.0210434 -2.29 -2.0523644 -2.3 -2.0831135 -2.31 -2.1118955 -2.32 -2.137424 -2.33 -2.1585882 -2.34 -2.174498 -2.35 -2.1845323 -2.36 -2.1880569 -2.37 -2.1851062 -2.38 -2.1762595 -2.39 -2.1621157 -2.4 -2.1435088 -2.41 -2.1214632 -2.42 -2.0971328 -2.43 -2.071741 -2.44 -2.0465139 -2.45 -2.0226167 -2.46 -2.0010955 -2.47 -1.9828765 -2.48 -1.9687173 -2.49 -1.9588993 -2.5 -1.9535198 -2.51 -1.9524124 -2.52 -1.9551614 -2.53 -1.9611332 -2.54 -1.9695125 -2.55 -1.9793564 -2.56 -1.9896448 -2.57 -1.9993451 -2.58 -2.0074553 -2.59 -2.0129598 -2.6 -2.0152401 -2.61 -2.0138014 -2.62 -2.0083774 -2.63 -1.9989475 -2.64 -1.985735 -2.65 -1.9691998 -2.66 -1.9500113 -2.67 -1.9290119 -2.68 -1.9071735 -2.69 -1.885544 -2.7 -1.8655953 -2.71 -1.8481197 -2.72 -1.8339814 -2.73 -1.8239245 -2.74 -1.8184975 -2.75 -1.8180252 -2.76 -1.8225912 -2.77 -1.8320271 -2.78 -1.8459284 -2.79 -1.8636691 -2.8 -1.8844352 -2.81 -1.907397 -2.82 -1.9312539 -2.83 -1.9548113 -2.84 -1.9769944 -2.85 -1.9968044 -2.86 -2.013372 -2.87 -2.0260031 -2.88 -2.0342024 -2.89 -2.0377068 -2.9 -2.0364889 -2.91 -2.0307575 -2.92 -2.020779 -2.93 -2.0072416 -2.94 -1.9911705 -2.95 -1.9735005 -2.96 -1.9552276 -2.97 -1.9373569 -2.98 -1.920853 -2.99 -1.9065916 -3 -1.8953173 -3.01 -1.8876097 -3.02 -1.8838567 -3.03 -1.8843008 -3.04 -1.8890039 -3.05 -1.8975298 -3.06 -1.9094261 -3.07 -1.9240872 -3.08 -1.9407904 -3.09 -1.9587358 -3.1 -1.9770885 -3.11 -1.9950279 -3.12 -2.011783 -3.13 -2.0266757 -3.14 -2.0391357 -3.15 -2.0485163 -3.16 -2.0548209 -3.17 -2.058012 -3.18 -2.0582157 -3.19 -2.0557134 -3.2 -2.0509156 -3.21 -2.0443353 -3.22 -2.0365565 -3.23 -2.0282002 -3.24 -2.019884 -3.25 -2.012191 -3.26 -2.0057188 -3.27 -2.0008635 -3.28 -1.9978928 -3.29 -1.996958 -3.3 -1.9980737 -3.31 -2.0011263 -3.32 -2.0058852 -3.33 -2.0120199 -3.34 -2.0191219 -3.35 -2.0267383 -3.36 -2.0343923 -3.37 -2.0415632 -3.38 -2.0478015 -3.39 -2.0527855 -3.4 -2.0562607 -3.41 -2.0580797 -3.42 -2.0582072 -3.43 -2.0567212 -3.44 -2.0538074 -3.45 -2.0497481 -3.46 -2.0449016 -3.47 -2.0396849 -3.48 -2.0345048 -3.49 -2.0298258 -3.5 -2.0261282 -3.51 -2.0237764 -3.52 -2.0230592 -3.53 -2.0241725 -3.54 -2.0272085 -3.55 -2.0321508 -3.56 -2.03887 -3.57 -2.0471385 -3.58 -2.0566353 -3.59 -2.0669318 -3.6 -2.0774593 -3.61 -2.0878412 -3.62 -2.0976033 -3.63 -2.106296 -3.64 -2.1135161 -3.65 -2.1189254 -3.66 -2.1222667 -3.67 -2.1233715 -3.68 -2.1221691 -3.69 -2.1186828 -3.7 -2.1130228 -3.71 -2.1053294 -3.72 -2.096016 -3.73 -2.0853915 -3.74 -2.073788 -3.75 -2.0615374 -3.76 -2.048953 -3.77 -2.0363155 -3.78 -2.0238553 -3.79 -2.0117427 -3.8 -2.0000838 -3.81 -1.988917 -3.82 -1.978537 -3.83 -1.9686359 -3.84 -1.9589823 -3.85 -1.9494104 -3.86 -1.9397438 -3.87 -1.9298159 -3.88 -1.9194875 -3.89 -1.9086613 -3.9 -1.8972955 -3.91 -1.8854143 -3.92 -1.8731113 -3.93 -1.8606878 -3.94 -1.8483267 -3.95 -1.8362173 -3.96 -1.8246975 -3.97 -1.8141357 -3.98 -1.8049038 -3.99 -1.7973641 -4 -1.7918426 -4.01 -1.7886133 -4.02 -1.7878792 -4.03 -1.789757 -4.04 -1.7943024 -4.05 -1.8014178 -4.06 -1.8108441 -4.07 -1.8223009 -4.08 -1.8354274 -4.09 -1.8497997 -4.1 -1.8649453 -4.11 -1.8803707 -4.12 -1.89558 -4.13 -1.9101006 -4.14 -1.9235053 -4.15 -1.935388 -4.16 -1.9452325 -4.17 -1.9531417 -4.18 -1.9590592 -4.19 -1.9630307 -4.2 -1.9652069 -4.21 -1.9658259 -4.22 -1.9652048 -4.23 -1.9637182 -4.24 -1.9617802 -4.25 -1.959819 -4.26 -1.9582582 -4.27 -1.9574845 -4.28 -1.9578887 -4.29 -1.9597252 -4.3 -1.9631608 -4.31 -1.9682687 -4.32 -1.9750234 -4.33 -1.9833062 -4.34 -1.9929125 -4.35 -2.0035584 -4.36 -2.0149039 -4.37 -2.0265642 -4.38 -2.0380688 -4.39 -2.0490123 -4.4 -2.0590428 -4.41 -2.0678378 -4.42 -2.0751389 -4.43 -2.0807667 -4.44 -2.0846226 -4.45 -2.0867028 -4.46 -2.0870883 -4.47 -2.0859436 -4.48 -2.0835036 -4.49 -2.0800198 -4.5 -2.0758732 -4.51 -2.0714776 -4.52 -2.0671862 -4.53 -2.063328 -4.54 -2.0601882 -4.55 -2.0579917 -4.56 -2.0568914 -4.57 -2.0569616 -4.58 -2.0581904 -4.59 -2.0604824 -4.6 -2.063698 -4.61 -2.0676277 -4.62 -2.0718778 -4.63 -2.0761069 -4.64 -2.0799581 -4.65 -2.0830797 -4.66 -2.0851449 -4.67 -2.0858702 -4.68 -2.085032 -4.69 -2.0824798 -4.7 -2.0781455 -4.71 -2.0720498 -4.72 -2.0643258 -4.73 -2.0551706 -4.74 -2.0448583 -4.75 -2.0337218 -4.76 -2.0221354 -4.77 -2.0104969 -4.78 -1.9992066 -4.79 -1.9886482 -4.8 -1.9791686 -4.81 -1.9710612 -4.82 -1.9645506 -4.83 -1.9599484 -4.84 -1.9571487 -4.85 -1.9560793 -4.86 -1.9566096 -4.87 -1.9585321 -4.88 -1.9615749 -4.89 -1.9654168 -4.9 -1.9697043 -4.91 -1.9740736 -4.92 -1.9781661 -4.93 -1.9816531 -4.94 -1.9841609 -4.95 -1.9854842 -4.96 -1.9855336 -4.97 -1.9842665 -4.98 -1.9817262 -4.99 -1.9780433 -5 -1.9734283 -5.01 -1.9681629 -5.02 -1.9625873 -5.03 -1.9570806 -5.04 -1.9520428 -5.05 -1.9478801 -5.06 -1.9450091 -5.07 -1.9437642 -5.08 -1.9444124 -5.09 -1.9471457 -5.1 -1.9520629 -5.11 -1.9591722 -5.12 -1.9683819 -5.13 -1.9795048 -5.14 -1.9922677 -5.15 -2.0063174 -5.16 -2.0212215 -5.17 -2.0364452 -5.18 -2.051525 -5.19 -2.0659737 -5.2 -2.0793279 -5.21 -2.0911678 -5.22 -2.1011297 -5.23 -2.1089306 -5.24 -2.1143697 -5.25 -2.1173455 -5.26 -2.117852 -5.27 -2.1159774 -5.28 -2.1117558 -5.29 -2.1056775 -5.3 -2.0980902 -5.31 -2.0893857 -5.32 -2.0799854 -5.33 -2.07032 -5.34 -2.0608061 -5.35 -2.0518319 -5.36 -2.0437348 -5.37 -2.0367929 -5.38 -2.0312075 -5.39 -2.0272875 -5.4 -2.0249285 -5.41 -2.0240188 -5.42 -2.0244119 -5.43 -2.0258919 -5.44 -2.0281887 -5.45 -2.0309914 -5.46 -2.0339694 -5.47 -2.0367848 -5.48 -2.0391146 -5.49 -2.0406677 -5.5 -2.0411964 -5.51 -2.0404864 -5.52 -2.0384315 -5.53 -2.0350077 -5.54 -2.0302691 -5.55 -2.0243498 -5.56 -2.0174531 -5.57 -2.0098414 -5.58 -2.0018269 -5.59 -1.993754 -5.6 -1.9859839 -5.61 -1.9788804 -5.62 -1.9728001 -5.63 -1.9680383 -5.64 -1.9648386 -5.65 -1.9633795 -5.66 -1.9637694 -5.67 -1.9660383 -5.68 -1.9701388 -5.69 -1.9759489 -5.7 -1.9832792 -5.71 -1.9918821 -5.72 -2.001441 -5.73 -2.011513 -5.74 -2.0218454 -5.75 -2.0321101 -5.76 -2.0420007 -5.77 -2.0512493 -5.78 -2.0596379 -5.79 -2.067006 -5.8 -2.0732633 -5.81 -2.078384 -5.82 -2.0824123 -5.83 -2.0854564 -5.84 -2.0874857 -5.85 -2.0889481 -5.86 -2.0900949 -5.87 -2.0911795 -5.88 -2.0924482 -5.89 -2.094124 -5.9 -2.0963908 -5.91 -2.0993788 -5.92 -2.1031575 -5.93 -2.1077198 -5.94 -2.1129886 -5.95 -2.118894 -5.96 -2.1251594 -5.97 -2.1314551 -5.98 -2.1374273 -5.99 -2.142687 -6 -2.1468279 -6.01 -2.1494482 -6.02 -2.1501637 -6.03 -2.1486354 -6.04 -2.1445774 -6.05 -2.137784 -6.06 -2.1281857 -6.07 -2.1157642 -6.08 -2.1005596 -6.09 -2.082756 -6.1 -2.0626309 -6.11 -2.0405494 -6.12 -2.016948 -6.13 -1.9923165 -6.14 -1.9671856 -6.15 -1.9421 -6.16 -1.9176018 -6.17 -1.8943047 -6.18 -1.8727894 -6.19 -1.8532525 -6.2 -1.8360146 -6.21 -1.8213069 -6.22 -1.8092741 -6.23 -1.7999683 -6.24 -1.7933549 -6.25 -1.7893174 -6.26 -1.7876753 -6.27 -1.7881879 -6.28 -1.7905769 -6.29 -1.7944598 -6.3 -1.7995433 -6.31 -1.8055507 -6.32 -1.8122433 -6.33 -1.8194228 -6.34 -1.8269494 -6.35 -1.8347393 -6.36 -1.8427744 -6.37 -1.8510899 -6.38 -1.8597746 -6.39 -1.8689596 -6.4 -1.8785967 -6.41 -1.8890748 -6.42 -1.9005915 -6.43 -1.9132937 -6.44 -1.9272854 -6.45 -1.9426174 -6.46 -1.9592702 -6.47 -1.9771486 -6.48 -1.9960775 -6.49 -2.0157991 -6.5 -2.0359791 -6.51 -2.0561581 -6.52 -2.0759007 -6.53 -2.0947298 -6.54 -2.1121222 -6.55 -2.1275591 -6.56 -2.140545 -6.57 -2.150628 -6.58 -2.1574245 -6.59 -2.1606312 -6.6 -2.1600452 -6.61 -2.155569 -6.62 -2.1472331 -6.63 -2.1352206 -6.64 -2.1197954 -6.65 -2.101315 -6.66 -2.0802234 -6.67 -2.0570404 -6.68 -2.0323308 -6.69 -2.006694 -6.7 -1.9807318 -6.71 -1.9550361 -6.72 -1.9301588 -6.73 -1.9067004 -6.74 -1.885283 -6.75 -1.8659291 -6.76 -1.8488659 -6.77 -1.8342225 -6.78 -1.8220326 -6.79 -1.8122461 -6.8 -1.8047298 -6.81 -1.7992873 -6.82 -1.795673 -6.83 -1.7936044 -6.84 -1.7927866 -6.85 -1.7929119 -6.86 -1.793642 -6.87 -1.7947467 -6.88 -1.796044 -6.89 -1.7974059 -6.9 -1.7987658 -6.91 -1.8001165 -6.92 -1.8015088 -6.93 -1.8030447 -6.94 -1.8048687 -6.95 -1.8071575 -6.96 -1.8100217 -6.97 -1.8137557 -6.98 -1.8185635 -6.99 -1.8246063 -7 -1.8320064 -7.01 -1.8408369 -7.02 -1.8511174 -7.03 -1.8628081 -7.04 -1.8758111 -7.05 -1.8899713 -7.06 -1.9050799 -7.07 -1.920852 -7.08 -1.9369965 -7.09 -1.9532203 -7.1 -1.9692084 -7.11 -1.9846537 -7.12 -1.9992703 -7.13 -2.0128029 -7.14 -2.0250373 -7.15 -2.0358096 -7.16 -2.0450129 -7.17 -2.0525952 -7.18 -2.0585072 -7.19 -2.0628007 -7.2 -2.0656808 -7.21 -2.0673101 -7.22 -2.0678855 -7.23 -2.0676229 -7.24 -2.0667558 -7.25 -2.065517 -7.26 -2.0641305 -7.27 -2.0628075 -7.28 -2.0617318 -7.29 -2.0610583 -7.3 -2.060909 -7.31 -2.0613694 -7.32 -2.0624822 -7.33 -2.0642565 -7.34 -2.0666722 -7.35 -2.0696838 -7.36 -2.073224 -7.37 -2.0772124 -7.38 -2.0815612 -7.39 -2.086179 -7.4 -2.0909769 -7.41 -2.0958019 -7.42 -2.1006433 -7.43 -2.1054434 -7.44 -2.1101586 -7.45 -2.1147544 -7.46 -2.1192077 -7.47 -2.1235018 -7.48 -2.1276241 -7.49 -2.1315669 -7.5 -2.1353161 -7.51 -2.1388569 -7.52 -2.1421359 -7.53 -2.1451524 -7.54 -2.1478737 -7.55 -2.1502475 -7.56 -2.1522131 -7.57 -2.1537034 -7.58 -2.1546459 -7.59 -2.1549687 -7.6 -2.1546014 -7.61 -2.1534788 -7.62 -2.1515481 -7.63 -2.1487826 -7.64 -2.1451635 -7.65 -2.140676 -7.66 -2.1353344 -7.67 -2.1291729 -7.68 -2.1222467 -7.69 -2.114628 -7.7 -2.1064063 -7.71 -2.0976876 -7.72 -2.0885889 -7.73 -2.0792364 -7.74 -2.0697865 -7.75 -2.060394 -7.76 -2.0511455 -7.77 -2.0421705 -7.78 -2.0335953 -7.79 -2.0255423 -7.8 -2.0181271 -7.81 -2.011456 -7.82 -2.0056297 -7.83 -2.0007408 -7.84 -1.9968726 -7.85 -1.9940979 -7.86 -1.9924635 -7.87 -1.9920277 -7.88 -1.9928334 -7.89 -1.9949093 -7.9 -1.9982677 -7.91 -2.0029013 -7.92 -2.0087812 -7.93 -2.0158539 -7.94 -2.024039 -7.95 -2.0332278 -7.96 -2.0432813 -7.97 -2.0539745 -7.98 -2.0651599 -7.99 -2.0766181 -8 -2.0881023 -8.01 -2.0993472 -8.02 -2.1100757 -8.03 -2.1200059 -8.04 -2.1288591 -8.05 -2.1363686 -8.06 -2.1422896 -8.07 -2.1464034 -8.08 -2.1485123 -8.09 -2.1485135 -8.1 -2.1463414 -8.11 -2.1419749 -8.12 -2.135448 -8.13 -2.1268528 -8.14 -2.1163376 -8.15 -2.1041024 -8.16 -2.0903888 -8.17 -2.0754798 -8.18 -2.0596849 -8.19 -2.0434133 -8.2 -2.0270158 -8.21 -2.0107404 -8.22 -1.9948961 -8.23 -1.9797645 -8.24 -1.9655947 -8.25 -1.9525985 -8.26 -1.9409415 -8.27 -1.9307455 -8.28 -1.9220843 -8.29 -1.9149847 -8.3 -1.9094479 -8.31 -1.905413 -8.32 -1.9027425 -8.33 -1.901333 -8.34 -1.9010693 -8.35 -1.9018279 -8.36 -1.9034865 -8.37 -1.9059294 -8.38 -1.9090522 -8.39 -1.9127637 -8.4 -1.9169883 -8.41 -1.9216568 -8.42 -1.9266327 -8.43 -1.9320013 -8.44 -1.9377406 -8.45 -1.9438298 -8.46 -1.9502393 -8.47 -1.9569285 -8.48 -1.9638412 -8.49 -1.9709005 -8.5 -1.9780047 -8.51 -1.9850295 -8.52 -1.9918285 -8.53 -1.9982612 -8.54 -2.0041233 -8.55 -2.0092105 -8.56 -2.0133181 -8.57 -2.0162496 -8.58 -2.0178251 -8.59 -2.0178889 -8.6 -2.0163236 -8.61 -2.0130526 -8.62 -2.0080519 -8.63 -2.0013511 -8.64 -1.99306 -8.65 -1.9833229 -8.66 -1.9723369 -8.67 -1.9603623 -8.68 -1.9477033 -8.69 -1.9346986 -8.7 -1.9217107 -8.71 -1.9091104 -8.72 -1.8972697 -8.73 -1.8865412 -8.74 -1.8772516 -8.75 -1.8697244 -8.76 -1.864197 -8.77 -1.8607849 -8.78 -1.8595859 -8.79 -1.8606288 -8.8 -1.8638719 -8.81 -1.86921 -8.82 -1.8764698 -8.83 -1.8854265 -8.84 -1.895808 -8.85 -1.9073076 -8.86 -1.9195783 -8.87 -1.932221 -8.88 -1.9449427 -8.89 -1.9574226 -8.9 -1.9693619 -8.91 -1.9804954 -8.92 -1.9905972 -8.93 -1.9994852 -8.94 -2.0070248 -8.95 -2.0131287 -8.96 -2.017757 -8.97 -2.020912 -8.98 -2.0226094 -8.99 -2.0229873 -9 -2.0221486 -9.01 -2.020215 -9.02 -2.01732 -9.03 -2.0136026 -9.04 -2.0092024 -9.05 -2.0042539 -9.06 -1.9988839 -9.07 -1.9932083 -9.08 -1.9873309 -9.09 -1.9814079 -9.1 -1.9754639 -9.11 -1.9695477 -9.12 -1.9637169 -9.13 -1.9580245 -9.14 -1.9525205 -9.15 -1.9472545 -9.16 -1.9422772 -9.17 -1.9376411 -9.18 -1.9334014 -9.19 -1.9296155 -9.2 -1.9263481 -9.21 -1.9236495 -9.22 -1.9215717 -9.23 -1.9201655 -9.24 -1.9194749 -9.25 -1.9195325 -9.26 -1.9203578 -9.27 -1.9219523 -9.28 -1.9243058 -9.29 -1.9273843 -9.3 -1.9311412 -9.31 -1.9355017 -9.32 -1.9403766 -9.33 -1.9456866 -9.34 -1.95133 -9.35 -1.9572023 -9.36 -1.9631993 -9.37 -1.9692187 -9.38 -1.9751662 -9.39 -1.9809593 -9.4 -1.9865282 -9.41 -1.9918213 -9.42 -1.9967946 -9.43 -2.0013917 -9.44 -2.0056668 -9.45 -2.0096401 -9.46 -2.0133487 -9.47 -2.0168404 -9.48 -2.0201746 -9.49 -2.0234129 -9.5 -2.0266221 -9.51 -2.0298663 -9.52 -2.0332047 -9.53 -2.0366894 -9.54 -2.0403172 -9.55 -2.0441588 -9.56 -2.0482292 -9.57 -2.0525301 -9.58 -2.0570466 -9.59 -2.0617509 -9.6 -2.0666048 -9.61 -2.0715573 -9.62 -2.0765506 -9.63 -2.0815168 -9.64 -2.0863883 -9.65 -2.0910611 -9.66 -2.0954864 -9.67 -2.0996081 -9.68 -2.103362 -9.69 -2.1066881 -9.7 -2.1095358 -9.71 -2.1118603 -9.72 -2.1136269 -9.73 -2.1148126 -9.74 -2.1154051 -9.75 -2.115404 -9.76 -2.1148158 -9.77 -2.1136673 -9.78 -2.1120078 -9.79 -2.1098935 -9.8 -2.1073951 -9.81 -2.1045985 -9.82 -2.1016035 -9.83 -2.0985239 -9.84 -2.0954843 -9.85 -2.0926191 -9.86 -2.090068 -9.87 -2.0879637 -9.88 -2.086434 -9.89 -2.0856338 -9.9 -2.0856852 -9.91 -2.0866923 -9.92 -2.0887363 -9.93 -2.0918703 -9.94 -2.0961117 -9.95 -2.1014451 -9.96 -2.1078113 -9.97 -2.1151094 -9.98 -2.1231925 -9.99 -2.131843 -10 -2.1408722 -10.01 -2.1500241 -10.02 -2.1590129 -10.03 -2.1675332 -10.04 -2.1752662 -10.05 -2.1818905 -10.06 -2.1870894 -10.07 -2.1905638 -10.08 -2.1920387 -10.09 -2.1912742 -10.1 -2.1880918 -10.11 -2.1823614 -10.12 -2.1739941 -10.13 -2.1629592 -10.14 -2.1492839 -10.15 -2.1330526 -10.16 -2.1144052 -10.17 -2.0935279 -10.18 -2.0706561 -10.19 -2.0460594 -10.2 -2.0200354 -10.21 -1.9930922 -10.22 -1.9654823 -10.23 -1.9374449 -10.24 -1.9092965 -10.25 -1.88134 -10.26 -1.8538593 -10.27 -1.8271159 -10.28 -1.8013443 -10.29 -1.7767521 -10.3 -1.7535163 -10.31 -1.7317896 -10.32 -1.711792 -10.33 -1.6936088 -10.34 -1.6772033 -10.35 -1.6626433 -10.36 -1.6499878 -10.37 -1.6392883 -10.38 -1.6305868 -10.39 -1.6239239 -10.4 -1.6193352 -10.41 -1.6168508 -10.42 -1.6164957 -10.43 -1.618282 -10.44 -1.6221967 -10.45 -1.628236 -10.46 -1.6363755 -10.47 -1.6465686 -10.48 -1.6587455 -10.49 -1.672809 -10.5 -1.6886352 -10.51 -1.7060737 -10.52 -1.7249476 -10.53 -1.745055 -10.54 -1.7661713 -10.55 -1.7879373 -10.56 -1.8102155 -10.57 -1.8327569 -10.58 -1.8553183 -10.59 -1.8776645 -10.6 -1.8995802 -10.61 -1.9208692 -10.62 -1.9413629 -10.63 -1.9609229 -10.64 -1.9794429 -10.65 -1.9968495 -10.66 -2.0129608 -10.67 -2.0278948 -10.68 -2.0417029 -10.69 -2.05443 -10.7 -2.0661353 -10.71 -2.0768953 -10.72 -2.0867893 -10.73 -2.0958984 -10.74 -2.1043032 -10.75 -2.1120747 -10.76 -2.1192751 -10.77 -2.1259104 -10.78 -2.1320375 -10.79 -2.1377105 -10.8 -2.1429411 -10.81 -2.1477343 -10.82 -2.1520939 -10.83 -2.1560211 -10.84 -2.1595233 -10.85 -2.162614 -10.86 -2.165317 -10.87 -2.1676718 -10.88 -2.1696981 -10.89 -2.1714491 -10.9 -2.173057 -10.91 -2.1746148 -10.92 -2.1762238 -10.93 -2.1779877 -10.94 -2.1800075 -10.95 -2.1823773 -10.96 -2.1851763 -10.97 -2.1884668 -10.98 -2.1922818 -10.99 -2.1966285 -11 -2.2014716 -11.01 -2.2067725 -11.02 -2.2124421 -11.03 -2.2183591 -11.04 -2.2243746 -11.05 -2.230321 -11.06 -2.2360117 -11.07 -2.2412524 -11.08 -2.2458477 -11.09 -2.2496073 -11.1 -2.2523544 -11.11 -2.253908 -11.12 -2.2541738 -11.13 -2.2530607 -11.14 -2.250513 -11.15 -2.246512 -11.16 -2.241076 -11.17 -2.23426 -11.18 -2.2261513 -11.19 -2.2168663 -11.2 -2.2065439 -11.21 -2.1953429 -11.22 -2.1834919 -11.23 -2.1711341 -11.24 -2.1584207 -11.25 -2.1455085 -11.26 -2.1325452 -11.27 -2.1196596 -11.28 -2.1069669 -11.29 -2.0945574 -11.3 -2.0825077 -11.31 -2.070873 -11.32 -2.0596925 -11.33 -2.0490303 -11.34 -2.0388841 -11.35 -2.02923 -11.36 -2.0200708 -11.37 -2.0114079 -11.38 -2.0032423 -11.39 -1.9955728 -11.4 -1.9883976 -11.41 -1.9817143 -11.42 -1.9755178 -11.43 -1.9697967 -11.44 -1.9645564 -11.45 -1.9597941 -11.46 -1.9554238 -11.47 -1.9513845 -11.48 -1.9476016 -11.49 -1.9439823 -11.5 -1.9404197 -11.51 -1.9367941 -11.52 -1.9329785 -11.53 -1.9288421 -11.54 -1.9242543 -11.55 -1.9191033 -11.56 -1.9133098 -11.57 -1.9067541 -11.58 -1.8993875 -11.59 -1.8912042 -11.6 -1.8822362 -11.61 -1.8725633 -11.62 -1.8623078 -11.63 -1.8516361 -11.64 -1.8407562 -11.65 -1.8299092 -11.66 -1.8193633 -11.67 -1.809469 -11.68 -1.8004736 -11.69 -1.7926552 -11.7 -1.7862756 -11.71 -1.7815622 -11.72 -1.7787023 -11.73 -1.7778308 -11.74 -1.7790234 -11.75 -1.7822942 -11.76 -1.7875897 -11.77 -1.794793 -11.78 -1.8037523 -11.79 -1.8141866 -11.8 -1.8258044 -11.81 -1.8382996 -11.82 -1.85135 -11.83 -1.8646323 -11.84 -1.8778352 -11.85 -1.8906734 -11.86 -1.9028989 -11.87 -1.9143121 -11.88 -1.9247689 -11.89 -1.9341041 -11.9 -1.9423018 -11.91 -1.9494989 -11.92 -1.9558014 -11.93 -1.9613619 -11.94 -1.9663698 -11.95 -1.9710368 -11.96 -1.975584 -11.97 -1.9802309 -11.98 -1.9851764 -11.99 -1.9905923 -12 -1.9966087 -12.01 -2.0033152 -12.02 -2.0107294 -12.03 -2.0188073 -12.04 -2.0274511 -12.05 -2.0365075 -12.06 -2.0457817 -12.07 -2.0550478 -12.08 -2.0640539 -12.09 -2.0725445 -12.1 -2.080269 -12.11 -2.086991 -12.12 -2.0924229 -12.13 -2.096502 -12.14 -2.0991425 -12.15 -2.1003202 -12.16 -2.1000744 -12.17 -2.0985072 -12.18 -2.0957786 -12.19 -2.0920997 -12.2 -2.0877213 -12.21 -2.0829221 -12.22 -2.0779946 -12.23 -2.0732619 -12.24 -2.0690035 -12.25 -2.0654527 -12.26 -2.0627992 -12.27 -2.0611773 -12.28 -2.0606557 -12.29 -2.061241 -12.3 -2.0628681 -12.31 -2.0654106 -12.32 -2.0686805 -12.33 -2.0724456 -12.34 -2.0764471 -12.35 -2.0803585 -12.36 -2.0838626 -12.37 -2.0866675 -12.38 -2.0885096 -12.39 -2.0891564 -12.4 -2.0884314 -12.41 -2.0862101 -12.42 -2.0824348 -12.43 -2.0771106 -12.44 -2.0703101 -12.45 -2.0621591 -12.46 -2.052867 -12.47 -2.0426819 -12.48 -2.0318636 -12.49 -2.0206893 -12.5 -2.009437 -12.51 -1.9983706 -12.52 -1.9877318 -12.53 -1.9777237 -12.54 -1.9685052 -12.55 -1.9601853 -12.56 -1.9528471 -12.57 -1.9465532 -12.58 -1.9411318 -12.59 -1.936472 -12.6 -1.9324237 -12.61 -1.9288117 -12.62 -1.9254415 -12.63 -1.9221155 -12.64 -1.91864 -12.65 -1.9148413 -12.66 -1.9105714 -12.67 -1.9057172 -12.68 -1.9001959 -12.69 -1.893995 -12.7 -1.8871422 -12.71 -1.8797104 -12.72 -1.8718066 -12.73 -1.863575 -12.74 -1.85518 -12.75 -1.8468051 -12.76 -1.8386382 -12.77 -1.8308646 -12.78 -1.8236578 -12.79 -1.8172517 -12.8 -1.8117209 -12.81 -1.8071342 -12.82 -1.8035464 -12.83 -1.8009788 -12.84 -1.799421 -12.85 -1.798835 -12.86 -1.7991603 -12.87 -1.8003191 -12.88 -1.8022275 -12.89 -1.8047961 -12.9 -1.8079367 -12.91 -1.8115583 -12.92 -1.8156087 -12.93 -1.8200617 -12.94 -1.8249149 -12.95 -1.8301891 -12.96 -1.8359294 -12.97 -1.8422014 -12.98 -1.8490853 -12.99 -1.8566717 -13 -1.8650548 -13.01 -1.8742951 -13.02 -1.8844539 -13.03 -1.8956399 -13.04 -1.9078872 -13.05 -1.9212025 -13.06 -1.9355618 -13.07 -1.950905 -13.08 -1.967139 -13.09 -1.9841408 -13.1 -2.0017553 -13.11 -2.0198055 -13.12 -2.0380781 -13.13 -2.0562792 -13.14 -2.0742865 -13.15 -2.0918914 -13.16 -2.1088914 -13.17 -2.1250984 -13.18 -2.1403455 -13.19 -2.1544843 -13.2 -2.167397 -13.21 -2.1789885 -13.22 -2.1891918 -13.23 -2.1979666 -13.24 -2.2052158 -13.25 -2.2110408 -13.26 -2.2154716 -13.27 -2.2185463 -13.28 -2.2203191 -13.29 -2.2208476 -13.3 -2.2201997 -13.31 -2.218448 -13.32 -2.2156695 -13.33 -2.2119423 -13.34 -2.2073519 -13.35 -2.2019959 -13.36 -2.1959672 -13.37 -2.1893635 -13.38 -2.1822896 -13.39 -2.1748623 -13.4 -2.1672063 -13.41 -2.1594558 -13.42 -2.1517519 -13.43 -2.1442426 -13.44 -2.1370786 -13.45 -2.130413 -13.46 -2.1244128 -13.47 -2.1192162 -13.48 -2.1149341 -13.49 -2.1116794 -13.5 -2.1095415 -13.51 -2.1085914 -13.52 -2.1088729 -13.53 -2.1104014 -13.54 -2.1131697 -13.55 -2.1171403 -13.56 -2.1222504 -13.57 -2.1284022 -13.58 -2.1354547 -13.59 -2.1433236 -13.6 -2.1518814 -13.61 -2.1609985 -13.62 -2.1705422 -13.63 -2.1803825 -13.64 -2.1903941 -13.65 -2.2004579 -13.66 -2.2104615 -13.67 -2.2202998 -13.68 -2.2298639 -13.69 -2.2389969 -13.7 -2.247692 -13.71 -2.2558516 -13.72 -2.2633705 -13.73 -2.2701311 -13.74 -2.2760025 -13.75 -2.2808384 -13.76 -2.2844768 -13.77 -2.2867415 -13.78 -2.2874436 -13.79 -2.2863853 -13.8 -2.2833982 -13.81 -2.2782682 -13.82 -2.2708116 -13.83 -2.2608686 -13.84 -2.2483124 -13.85 -2.2330595 -13.86 -2.215073 -13.87 -2.1943728 -13.88 -2.171043 -13.89 -2.1452271 -13.9 -2.1171373 -13.91 -2.0871306 -13.92 -2.0555223 -13.93 -2.0226604 -13.94 -1.9889676 -13.95 -1.9548929 -13.96 -1.920897 -13.97 -1.8874395 -13.98 -1.8549661 -13.99 -1.8238889 -14 -1.7945781 -14.01 -1.7673495 -14.02 -1.7425808 -14.03 -1.7204614 -14.04 -1.7009401 -14.05 -1.6840387 -14.06 -1.6697128 -14.07 -1.6578513 -14.08 -1.6482934 -14.09 -1.6408357 -14.1 -1.6352448 -14.11 -1.6312752 -14.12 -1.6286785 -14.13 -1.6272233 -14.14 -1.626679 -14.15 -1.626863 -14.16 -1.6276592 -14.17 -1.6290032 -14.18 -1.6308851 -14.19 -1.633344 -14.2 -1.6364704 -14.21 -1.6403912 -14.22 -1.6452687 -14.23 -1.6512828 -14.24 -1.6586231 -14.25 -1.6674534 -14.26 -1.6779709 -14.27 -1.6903077 -14.28 -1.7045549 -14.29 -1.7207551 -14.3 -1.738898 -14.31 -1.7589169 -14.32 -1.7806918 -14.33 -1.8040483 -14.34 -1.8287684 -14.35 -1.8545955 -14.36 -1.8811242 -14.37 -1.9081132 -14.38 -1.935282 -14.39 -1.962341 -14.4 -1.9890177 -14.41 -2.0150692 -14.42 -2.0402898 -14.43 -2.0645131 -14.44 -2.0876192 -14.45 -2.1095298 -14.46 -2.1302082 -14.47 -2.1495351 -14.48 -2.1676118 -14.49 -2.1845787 -14.5 -2.2005031 -14.51 -2.2154561 -14.52 -2.2294984 -14.53 -2.242675 -14.54 -2.2550094 -14.55 -2.2664998 -14.56 -2.2771107 -14.57 -2.2867778 -14.58 -2.2954021 -14.59 -2.302864 -14.6 -2.3090403 -14.61 -2.3137808 -14.62 -2.3169336 -14.63 -2.318355 -14.64 -2.3179176 -14.65 -2.3155191 -14.66 -2.3110885 -14.67 -2.3045918 -14.68 -2.2960363 -14.69 -2.28547 -14.7 -2.2730014 -14.71 -2.2587615 -14.72 -2.2429108 -14.73 -2.2256338 -14.74 -2.2071312 -14.75 -2.1876082 -14.76 -2.1672694 -14.77 -2.1463047 -14.78 -2.1248874 -14.79 -2.1031631 -14.8 -2.0812494 -14.81 -2.0593888 -14.82 -2.0374823 -14.83 -2.0155427 -14.84 -1.9935619 -14.85 -1.9715155 -14.86 -1.9493659 -14.87 -1.9270768 -14.88 -1.9046186 -14.89 -1.8819788 -14.9 -1.8591703 -14.91 -1.8362351 -14.92 -1.8133489 -14.93 -1.7905664 -14.94 -1.768023 -14.95 -1.7459183 -14.96 -1.7244809 -14.97 -1.7039684 -14.98 -1.6846491 -14.99 -1.6667987 -15 -1.6506852 -15.01 -1.6365602 -15.02 -1.6246469 -15.03 -1.6152107 -15.04 -1.6083623 -15.05 -1.6041067 -15.06 -1.6024625 -15.07 -1.6033944 -15.08 -1.6068085 -15.09 -1.6125635 -15.1 -1.6204747 -15.11 -1.6303243 -15.12 -1.6418715 -15.13 -1.6548625 -15.14 -1.6690163 -15.15 -1.6840371 -15.16 -1.6997579 -15.17 -1.7159988 -15.18 -1.7326181 -15.19 -1.749515 -15.2 -1.7666307 -15.21 -1.7839453 -15.22 -1.8014779 -15.23 -1.8192738 -15.24 -1.8374035 -15.25 -1.8559342 -15.26 -1.8748805 -15.27 -1.8944129 -15.28 -1.9145825 -15.29 -1.9354053 -15.3 -1.9568658 -15.31 -1.9789047 -15.32 -2.0014188 -15.33 -2.0242647 -15.34 -2.0472588 -15.35 -2.0701838 -15.36 -2.0927965 -15.37 -2.1147258 -15.38 -2.1357859 -15.39 -2.1557325 -15.4 -2.1743329 -15.41 -2.1913829 -15.42 -2.2067218 -15.43 -2.2202353 -15.44 -2.231861 -15.45 -2.241593 -15.46 -2.2494803 -15.47 -2.2556243 -15.48 -2.2600907 -15.49 -2.2631424 -15.5 -2.2650381 -15.51 -2.2660111 -15.52 -2.2662994 -15.53 -2.266133 -15.54 -2.2657231 -15.55 -2.2652527 -15.56 -2.2648681 -15.57 -2.2646724 -15.58 -2.264723 -15.59 -2.2650469 -15.6 -2.2656049 -15.61 -2.2663 -15.62 -2.2670136 -15.63 -2.2676045 -15.64 -2.2679154 -15.65 -2.2677828 -15.66 -2.2670457 -15.67 -2.2655562 -15.68 -2.2631867 -15.69 -2.2598408 -15.7 -2.2554428 -15.71 -2.2499565 -15.72 -2.243415 -15.73 -2.2358662 -15.74 -2.227388 -15.75 -2.2180842 -15.76 -2.2080777 -15.77 -2.1975029 -15.78 -2.1864985 -15.79 -2.1751996 -15.8 -2.163732 -15.81 -2.1522085 -15.82 -2.1407965 -15.83 -2.1294845 -15.84 -2.1183089 -15.85 -2.1072823 -15.86 -2.0963975 -15.87 -2.0856291 -15.88 -2.074942 -15.89 -2.0642942 -15.9 -2.0536444 -15.91 -2.0429581 -15.92 -2.0322097 -15.93 -2.0214346 -15.94 -2.0106063 -15.95 -1.9997497 -15.96 -1.9889217 -15.97 -1.9781947 -15.98 -1.9676586 -15.99 -1.9574143 -16 -1.9475687 -16.01 -1.9382258 -16.02 -1.9294869 -16.03 -1.9214387 -16.04 -1.9141942 -16.05 -1.9077803 -16.06 -1.9021914 -16.07 -1.8974195 -16.08 -1.8934321 -16.09 -1.8901742 -16.1 -1.887568 -16.11 -1.8855238 -16.12 -1.8839414 -16.13 -1.8827184 -16.14 -1.8817548 -16.15 -1.8809646 -16.16 -1.8802721 -16.17 -1.8796213 -16.18 -1.878989 -16.19 -1.878372 -16.2 -1.8777942 -16.21 -1.8772986 -16.22 -1.8769445 -16.23 -1.8768038 -16.24 -1.8769554 -16.25 -1.8774756 -16.26 -1.8784408 -16.27 -1.8799311 -16.28 -1.8819413 -16.29 -1.8844739 -16.3 -1.8875036 -16.31 -1.8909782 -16.32 -1.89482 -16.33 -1.8989301 -16.34 -1.9031938 -16.35 -1.9074891 -16.36 -1.9116944 -16.37 -1.9156981 -16.38 -1.9193213 -16.39 -1.9225693 -16.4 -1.9254233 -16.41 -1.927908 -16.42 -1.9300947 -16.43 -1.9321022 -16.44 -1.9340937 -16.45 -1.9362718 -16.46 -1.9388705 -16.47 -1.9421437 -16.48 -1.9463531 -16.49 -1.9517509 -16.5 -1.9585989 -16.51 -1.9670906 -16.52 -1.9773607 -16.53 -1.9894769 -16.54 -2.0034302 -16.55 -2.0191285 -16.56 -2.0363929 -16.57 -2.0549601 -16.58 -2.0744864 -16.59 -2.094557 -16.6 -2.1146712 -16.61 -2.1342853 -16.62 -2.1528728 -16.63 -2.1698966 -16.64 -2.1848415 -16.65 -2.197234 -16.66 -2.2066621 -16.67 -2.2127916 -16.68 -2.2153793 -16.69 -2.2142827 -16.7 -2.2094655 -16.71 -2.200963 -16.72 -2.1889615 -16.73 -2.1738197 -16.74 -2.1558965 -16.75 -2.1356138 -16.76 -2.113437 -16.77 -2.0898566 -16.78 -2.0653674 -16.79 -2.0404477 -16.8 -2.0155459 -16.81 -1.9910605 -16.82 -1.9673662 -16.83 -1.9448955 -16.84 -1.9236377 -16.85 -1.9037028 -16.86 -1.8851358 -16.87 -1.8679274 -16.88 -1.8520241 -16.89 -1.8373427 -16.9 -1.8237878 -16.91 -1.8112649 -16.92 -1.799697 -16.93 -1.789038 -16.94 -1.7792653 -16.95 -1.7704193 -16.96 -1.7626132 -16.97 -1.7560137 -16.98 -1.7508359 -16.99 -1.7473343 -17 -1.7457904 -17.01 -1.7464974 -17.02 -1.7497432 -17.03 -1.7557935 -17.04 -1.7648723 -17.05 -1.7771737 -17.06 -1.7927759 -17.07 -1.8116637 -17.08 -1.8337406 -17.09 -1.8588097 -17.1 -1.8865828 -17.11 -1.9166819 -17.12 -1.9486523 -17.13 -1.981979 -17.14 -2.0160997 -17.15 -2.0504325 -17.16 -2.0842874 -17.17 -2.1170665 -17.18 -2.1483428 -17.19 -2.1776671 -17.2 -2.2046718 -17.21 -2.2290796 -17.22 -2.2507115 -17.23 -2.269486 -17.24 -2.2854218 -17.25 -2.2986244 -17.26 -2.3092768 -17.27 -2.317587 -17.28 -2.323838 -17.29 -2.3284592 -17.3 -2.3317656 -17.31 -2.3340475 -17.32 -2.3355585 -17.33 -2.3364959 -17.34 -2.3369904 -17.35 -2.337099 -17.36 -2.3368016 -17.37 -2.3360031 -17.38 -2.3345459 -17.39 -2.332254 -17.4 -2.3287768 -17.41 -2.3238201 -17.42 -2.3170819 -17.43 -2.308281 -17.44 -2.297168 -17.45 -2.283552 -17.46 -2.2673071 -17.47 -2.2483902 -17.48 -2.2268434 -17.49 -2.2028015 -17.5 -2.176495 -17.51 -2.148266 -17.52 -2.1185072 -17.53 -2.0876605 -17.54 -2.0562067 -17.55 -2.0246428 -17.56 -1.9934623 -17.57 -1.9631364 -17.58 -1.9340931 -17.59 -1.906702 -17.6 -1.8812605 -17.61 -1.8581512 -17.62 -1.8374129 -17.63 -1.8189871 -17.64 -1.8028163 -17.65 -1.7887712 -17.66 -1.7766613 -17.67 -1.7662492 -17.68 -1.7572717 -17.69 -1.7494541 -17.7 -1.7425279 -17.71 -1.7362529 -17.72 -1.7304221 -17.73 -1.7248647 -17.74 -1.7194992 -17.75 -1.714318 -17.76 -1.7093823 -17.77 -1.7048154 -17.78 -1.7007945 -17.79 -1.6975455 -17.8 -1.6953206 -17.81 -1.6943891 -17.82 -1.6950176 -17.83 -1.6974673 -17.84 -1.701986 -17.85 -1.7087056 -17.86 -1.7177223 -17.87 -1.7290617 -17.88 -1.7426776 -17.89 -1.7584499 -17.9 -1.7761891 -17.91 -1.7956435 -17.92 -1.8165097 -17.93 -1.8384449 -17.94 -1.8610801 -17.95 -1.8839365 -17.96 -1.9067106 -17.97 -1.9290652 -17.98 -1.9507018 -17.99 -1.9713718 -18 -1.9908857 -18.01 -2.0091129 -18.02 -2.0259889 -18.03 -2.0415094 -18.04 -2.0557267 -18.05 -2.0687396 -18.06 -2.0805917 -18.07 -2.0915487 -18.08 -2.1018058 -18.09 -2.111531 -18.1 -2.1208729 -18.11 -2.1299512 -18.12 -2.1388488 -18.13 -2.1476043 -18.14 -2.1562068 -18.15 -2.1646008 -18.16 -2.1726813 -18.17 -2.1802985 -18.18 -2.1872658 -18.19 -2.1933831 -18.2 -2.198438 -18.21 -2.2022205 -18.22 -2.2045345 -18.23 -2.2052087 -18.24 -2.2041066 -18.25 -2.201133 -18.26 -2.1962398 -18.27 -2.1894286 -18.28 -2.1807405 -18.29 -2.1702873 -18.3 -2.158237 -18.31 -2.1447678 -18.32 -2.1300806 -18.33 -2.1143902 -18.34 -2.0979139 -18.35 -2.080862 -18.36 -2.0634289 -18.37 -2.0457849 -18.38 -2.0280713 -18.39 -2.0104179 -18.4 -1.9929801 -18.41 -1.975687 -18.42 -1.9585372 -18.43 -1.9415113 -18.44 -1.9245716 -18.45 -1.9076753 -18.46 -1.8907799 -18.47 -1.8738561 -18.48 -1.8568933 -18.49 -1.8399069 -18.5 -1.8229469 -18.51 -1.8061496 -18.52 -1.789591 -18.53 -1.7734359 -18.54 -1.757883 -18.55 -1.7431576 -18.56 -1.7295033 -18.57 -1.7171729 -18.58 -1.7064174 -18.59 -1.697476 -18.6 -1.6905649 -18.61 -1.6858678 -18.62 -1.6836014 -18.63 -1.683802 -18.64 -1.6864783 -18.65 -1.6916099 -18.66 -1.6991221 -18.67 -1.7088916 -18.68 -1.7207502 -18.69 -1.7344912 -18.7 -1.7498837 -18.71 -1.7666765 -18.72 -1.784614 -18.73 -1.8033939 -18.74 -1.8227615 -18.75 -1.8425475 -18.76 -1.8625766 -18.77 -1.8827141 -18.78 -1.9028616 -18.79 -1.9229659 -18.8 -1.9430094 -18.81 -1.9630079 -18.82 -1.9830077 -18.83 -2.0030756 -18.84 -2.0232571 -18.85 -2.0436095 -18.86 -2.064282 -18.87 -2.0853312 -18.88 -2.1067895 -18.89 -2.1286584 -18.9 -2.150905 -18.91 -2.1734568 -18.92 -2.1962064 -18.93 -2.21901 -18.94 -2.2416908 -18.95 -2.2640349 -18.96 -2.2857276 -18.97 -2.3066222 -18.98 -2.3264867 -18.99 -2.345094 -19 -2.3622349 -19.01 -2.377724 -19.02 -2.3914043 -19.03 -2.403153 -19.04 -2.4128829 -19.05 -2.4205443 -19.06 -2.4261258 -19.07 -2.4295571 -19.08 -2.4310027 -19.09 -2.4305533 -19.1 -2.4283048 -19.11 -2.4243631 -19.12 -2.4188382 -19.13 -2.4118348 -19.14 -2.4034502 -19.15 -2.3937683 -19.16 -2.3828555 -19.17 -2.3707606 -19.18 -2.3575634 -19.19 -2.343256 -19.2 -2.327811 -19.21 -2.3112123 -19.22 -2.2934392 -19.23 -2.2744738 -19.24 -2.2543059 -19.25 -2.2329393 -19.26 -2.2103961 -19.27 -2.1867246 -19.28 -2.1620018 -19.29 -2.1363679 -19.3 -2.10997 -19.31 -2.0829428 -19.32 -2.055488 -19.33 -2.0278321 -19.34 -2.0002206 -19.35 -1.9729157 -19.36 -1.9461854 -19.37 -1.9202984 -19.38 -1.895518 -19.39 -1.8720945 -19.4 -1.8502953 -19.41 -1.8303958 -19.42 -1.8124634 -19.43 -1.7966364 -19.44 -1.7830182 -19.45 -1.7716775 -19.46 -1.7626494 -19.47 -1.7559351 -19.48 -1.7515071 -19.49 -1.7493121 -19.5 -1.7492763 -19.51 -1.751307 -19.52 -1.7553258 -19.53 -1.7611618 -19.54 -1.7686949 -19.55 -1.777809 -19.56 -1.7883844 -19.57 -1.800308 -19.58 -1.8134708 -19.59 -1.8277691 -19.6 -1.8431017 -19.61 -1.8593755 -19.62 -1.8764945 -19.63 -1.8943043 -19.64 -1.9127558 -19.65 -1.9317651 -19.66 -1.9512325 -19.67 -1.9710521 -19.68 -1.991111 -19.69 -2.0112886 -19.7 -2.0314564 -19.71 -2.0514784 -19.72 -2.0712122 -19.73 -2.0905094 -19.74 -2.109157 -19.75 -2.1270262 -19.76 -2.1439992 -19.77 -2.1599232 -19.78 -2.1746489 -19.79 -2.1880317 -19.8 -2.1999333 -19.81 -2.2102233 -19.82 -2.2187797 -19.83 -2.2254926 -19.84 -2.2302609 -19.85 -2.2329801 -19.86 -2.233578 -19.87 -2.2320243 -19.88 -2.2282739 -19.89 -2.2222974 -19.9 -2.2140833 -19.91 -2.2036352 -19.92 -2.1909808 -19.93 -2.1761657 -19.94 -2.1592597 -19.95 -2.1403563 -19.96 -2.1195853 -19.97 -2.097129 -19.98 -2.0731227 -19.99 -2.0477638 -20 -2.0212714 -20.01 -1.9938915 -20.02 -1.9658907 -20.03 -1.9375508 -20.04 -1.9091725 -20.05 -1.8810625 -20.06 -1.8535347 -20.07 -1.8269036 -20.08 -1.801608 -20.09 -1.7778157 -20.1 -1.755801 -20.11 -1.7358129 -20.12 -1.7180731 -20.13 -1.7027691 -20.14 -1.6900507 -20.15 -1.6800279 -20.16 -1.6727686 -20.17 -1.6682996 -20.18 -1.666602 -20.19 -1.6676725 -20.2 -1.6713496 -20.21 -1.6774801 -20.22 -1.6858959 -20.23 -1.6964041 -20.24 -1.7087892 -20.25 -1.7228193 -20.26 -1.7382535 -20.27 -1.7548426 -20.28 -1.7723391 -20.29 -1.7904994 -20.3 -1.8090488 -20.31 -1.827766 -20.32 -1.8464745 -20.33 -1.8649885 -20.34 -1.8831409 -20.35 -1.9007846 -20.36 -1.917792 -20.37 -1.9340556 -20.38 -1.9494865 -20.39 -1.9640128 -20.4 -1.9775798 -20.41 -1.9901257 -20.42 -2.0016088 -20.43 -2.0120565 -20.44 -2.0214614 -20.45 -2.0298255 -20.46 -2.0371593 -20.47 -2.0434779 -20.48 -2.0488028 -20.49 -2.0531632 -20.5 -2.0565927 -20.51 -2.0591299 -20.52 -2.0608167 -20.53 -2.0616755 -20.54 -2.0618014 -20.55 -2.0612609 -20.56 -2.0601284 -20.57 -2.0584831 -20.58 -2.0564129 -20.59 -2.0540094 -20.6 -2.0513687 -20.61 -2.0485913 -20.62 -2.0457766 -20.63 -2.0430259 -20.64 -2.0404328 -20.65 -2.0380988 -20.66 -2.0361066 -20.67 -2.0345228 -20.68 -2.0334029 -20.69 -2.0327826 -20.7 -2.0326811 -20.71 -2.0330925 -20.72 -2.033993 -20.73 -2.0353338 -20.74 -2.037046 -20.75 -2.0390584 -20.76 -2.0412422 -20.77 -2.0434561 -20.78 -2.0455603 -20.79 -2.0474048 -20.8 -2.0488354 -20.81 -2.0497038 -20.82 -2.049867 -20.83 -2.0491995 -20.84 -2.0475945 -20.85 -2.0449704 -20.86 -2.0412589 -20.87 -2.0364443 -20.88 -2.0305696 -20.89 -2.0237018 -20.9 -2.0159466 -20.91 -2.0074513 -20.92 -1.998397 -20.93 -1.988999 -20.94 -1.9794997 -20.95 -1.9701619 -20.96 -1.9612608 -20.97 -1.9530912 -20.98 -1.9459625 -20.99 -1.9401048 -21 -1.9357559 -21.01 -1.9331188 -21.02 -1.9323611 -21.03 -1.9336061 -21.04 -1.9369283 -21.05 -1.9423515 -21.06 -1.9498465 -21.07 -1.9593327 -21.08 -1.9706847 -21.09 -1.9837193 -21.1 -1.9981996 -21.11 -2.0138819 -21.12 -2.0305043 -21.13 -2.04779 -21.14 -2.0654583 -21.15 -2.0832371 -21.16 -2.1008612 -21.17 -2.1180897 -21.18 -2.1347026 -21.19 -2.1505103 -21.2 -2.1652489 -21.21 -2.1788946 -21.22 -2.1913739 -21.23 -2.2026251 -21.24 -2.2126065 -21.25 -2.2212943 -21.26 -2.2286741 -21.27 -2.2347361 -21.28 -2.2394682 -21.29 -2.2428519 -21.3 -2.2448555 -21.31 -2.2454473 -21.32 -2.2445651 -21.33 -2.2421151 -21.34 -2.2379926 -21.35 -2.2320819 -21.36 -2.224261 -21.37 -2.2144091 -21.38 -2.2024149 -21.39 -2.1881851 -21.4 -2.1716535 -21.41 -2.1527903 -21.42 -2.1316112 -21.43 -2.1081836 -21.44 -2.0826338 -21.45 -2.0551513 -21.46 -2.0259861 -21.47 -1.9954482 -21.48 -1.9639015 -21.49 -1.931758 -21.5 -1.8994666 -21.51 -1.8675063 -21.52 -1.8363699 -21.53 -1.806584 -21.54 -1.7787277 -21.55 -1.7531491 -21.56 -1.730257 -21.57 -1.7104058 -21.58 -1.6938905 -21.59 -1.680933 -21.6 -1.6716851 -21.61 -1.6662203 -21.62 -1.6645385 -21.63 -1.6665684 -21.64 -1.672175 -21.65 -1.681219 -21.66 -1.6933511 -21.67 -1.708295 -21.68 -1.7257533 -21.69 -1.7454198 -21.7 -1.7669905 -21.71 -1.7901732 -21.72 -1.8146965 -21.73 -1.840317 -21.74 -1.8668209 -21.75 -1.8940279 -21.76 -1.921679 -21.77 -1.9497486 -21.78 -1.978176 -21.79 -2.0068926 -21.8 -2.0358371 -21.81 -2.0649499 -21.82 -2.094159 -21.83 -2.1233782 -21.84 -2.152497 -21.85 -2.1813736 -21.86 -2.2098337 -21.87 -2.237621 -21.88 -2.2645019 -21.89 -2.2902208 -21.9 -2.3144706 -21.91 -2.3369255 -21.92 -2.3572509 -21.93 -2.3751147 -21.94 -2.3901975 -21.95 -2.4022083 -21.96 -2.4108915 -21.97 -2.4160368 -21.98 -2.417441 -21.99 -2.4149926 -22 -2.4087669 -22.01 -2.398827 -22.02 -2.3853056 -22.03 -2.3684042 -22.04 -2.3483872 -22.05 -2.3255743 -22.06 -2.3003314 -22.07 -2.2730599 -22.08 -2.2441852 -22.09 -2.2141609 -22.1 -2.1835094 -22.11 -2.1525923 -22.12 -2.1218028 -22.13 -2.0915034 -22.14 -2.0620197 -22.15 -2.0336311 -22.16 -2.0065734 -22.17 -1.9810344 -22.18 -1.9571565 -22.19 -1.9350393 -22.2 -1.9147439 -22.21 -1.896421 -22.22 -1.8799274 -22.23 -1.865242 -22.24 -1.8523314 -22.25 -1.8411617 -22.26 -1.831693 -22.27 -1.8238925 -22.28 -1.8177293 -22.29 -1.813182 -22.3 -1.8102361 -22.31 -1.8088814 -22.32 -1.8091208 -22.33 -1.8109431 -22.34 -1.8143405 -22.35 -1.8193001 -22.36 -1.8257949 -22.37 -1.8337835 -22.38 -1.8432028 -22.39 -1.8539691 -22.4 -1.8659746 -22.41 -1.8790854 -22.42 -1.8931461 -22.43 -1.9079743 -22.44 -1.9233637 -22.45 -1.9390919 -22.46 -1.9549298 -22.47 -1.9706396 -22.48 -1.9859828 -22.49 -2.0007255 -22.5 -2.0146401 -22.51 -2.0275152 -22.52 -2.0391548 -22.53 -2.0493855 -22.54 -2.0580371 -22.55 -2.0649634 -22.56 -2.0701138 -22.57 -2.0734235 -22.58 -2.0748553 -22.59 -2.0743982 -22.6 -2.0720668 -22.61 -2.0678991 -22.62 -2.0619548 -22.63 -2.0543134 -22.64 -2.0450728 -22.65 -2.0343455 -22.66 -2.0222636 -22.67 -2.008981 -22.68 -1.9946492 -22.69 -1.9794305 -22.7 -1.9634959 -22.71 -1.9470239 -22.72 -1.9301984 -22.73 -1.9132072 -22.74 -1.8962434 -22.75 -1.8794995 -22.76 -1.863164 -22.77 -1.8474958 -22.78 -1.832618 -22.79 -1.8186923 -22.8 -1.805873 -22.81 -1.794301 -22.82 -1.7840993 -22.83 -1.7753712 -22.84 -1.7681983 -22.85 -1.7626404 -22.86 -1.7587345 -22.87 -1.7564948 -22.88 -1.755947 -22.89 -1.7570318 -22.9 -1.7596862 -22.91 -1.7638508 -22.92 -1.7694558 -22.93 -1.7764238 -22.94 -1.7846738 -22.95 -1.7941241 -22.96 -1.8046968 -22.97 -1.8163163 -22.98 -1.828916 -22.99 -1.8424161 -23 -1.8567598 -23.01 -1.8719249 -23.02 -1.8878781 -23.03 -1.9045874 -23.04 -1.9220257 -23.05 -1.940161 -23.06 -1.9589597 -23.07 -1.9783817 -23.08 -1.998375 -23.09 -2.0188782 -23.1 -2.039798 -23.11 -2.0610062 -23.12 -2.0824397 -23.13 -2.1039758 -23.14 -2.1254781 -23.15 -2.1468011 -23.16 -2.167792 -23.17 -2.1882929 -23.18 -2.2081461 -23.19 -2.227195 -23.2 -2.2452929 -23.21 -2.2622957 -23.22 -2.2779753 -23.23 -2.292333 -23.24 -2.3052793 -23.25 -2.3167387 -23.26 -2.3266541 -23.27 -2.334979 -23.28 -2.3416817 -23.29 -2.3467414 -23.3 -2.3501423 -23.31 -2.3518757 -23.32 -2.351931 -23.33 -2.3502909 -23.34 -2.3469672 -23.35 -2.3419477 -23.36 -2.3352134 -23.37 -2.3267442 -23.38 -2.31652 -23.39 -2.3045249 -23.4 -2.2907507 -23.41 -2.2752011 -23.42 -2.2578967 -23.43 -2.2388797 -23.44 -2.2182299 -23.45 -2.1960456 -23.46 -2.1724537 -23.47 -2.1476236 -23.48 -2.1217616 -23.49 -2.0951059 -23.5 -2.0679267 -23.51 -2.0405229 -23.52 -2.0132105 -23.53 -1.9863233 -23.54 -1.9601962 -23.55 -1.9352122 -23.56 -1.9117245 -23.57 -1.8899626 -23.58 -1.8701872 -23.59 -1.8526176 -23.6 -1.837429 -23.61 -1.8247417 -23.62 -1.8146249 -23.63 -1.8070905 -23.64 -1.8020961 -23.65 -1.7995487 -23.66 -1.7993235 -23.67 -1.8012674 -23.68 -1.8050915 -23.69 -1.8105597 -23.7 -1.8174201 -23.71 -1.825421 -23.72 -1.8343122 -23.73 -1.8438578 -23.74 -1.8538367 -23.75 -1.8640545 -23.76 -1.8743426 -23.77 -1.8845609 -23.78 -1.8945497 -23.79 -1.9042775 -23.8 -1.9136855 -23.81 -1.9227322 -23.82 -1.9313866 -23.83 -1.9396233 -23.84 -1.9474172 -23.85 -1.9547378 -23.86 -1.9615448 -23.87 -1.9677852 -23.88 -1.9733909 -23.89 -1.9782828 -23.9 -1.9823552 -23.91 -1.9854941 -23.92 -1.9875822 -23.93 -1.9885022 -23.94 -1.9881448 -23.95 -1.9864149 -23.96 -1.9832397 -23.97 -1.9785752 -23.98 -1.9724127 -23.99 -1.9647837 -24 -1.9557393 -24.01 -1.9454128 -24.02 -1.933997 -24.03 -1.9217072 -24.04 -1.9087962 -24.05 -1.8955481 -24.06 -1.88227 -24.07 -1.8692828 -24.08 -1.8569111 -24.09 -1.8454725 -24.1 -1.8352676 -24.11 -1.8265984 -24.12 -1.8197341 -24.13 -1.8148136 -24.14 -1.8119738 -24.15 -1.8112996 -24.16 -1.8128221 -24.17 -1.81652 -24.18 -1.8223233 -24.19 -1.8301172 -24.2 -1.8397505 -24.21 -1.8510394 -24.22 -1.8637806 -24.23 -1.8777289 -24.24 -1.8926668 -24.25 -1.9083833 -24.26 -1.9246817 -24.27 -1.941381 -24.28 -1.9583251 -24.29 -1.9753807 -24.3 -1.9924401 -24.31 -2.0094216 -24.32 -2.0262617 -24.33 -2.0429171 -24.34 -2.0592966 -24.35 -2.0754437 -24.36 -2.0913406 -24.37 -2.1069609 -24.38 -2.1222641 -24.39 -2.1371987 -24.4 -2.1516949 -24.41 -2.1656653 -24.42 -2.1790059 -24.43 -2.1915933 -24.44 -2.2032942 -24.45 -2.2139297 -24.46 -2.2233653 -24.47 -2.231469 -24.48 -2.2381057 -24.49 -2.2431612 -24.5 -2.2465401 -24.51 -2.248176 -24.52 -2.2480355 -24.53 -2.2461191 -24.54 -2.242464 -24.55 -2.2371408 -24.56 -2.2302345 -24.57 -2.2218944 -24.58 -2.2123151 -24.59 -2.2016769 -24.6 -2.1901771 -24.61 -2.1780139 -24.62 -2.1653855 -24.63 -2.1524807 -24.64 -2.1394736 -24.65 -2.1265195 -24.66 -2.11375 -24.67 -2.101291 -24.68 -2.0892519 -24.69 -2.0776371 -24.7 -2.0664732 -24.71 -2.0557674 -24.72 -2.0455111 -24.73 -2.0356859 -24.74 -2.0262678 -24.75 -2.0172329 -24.76 -2.0085625 -24.77 -2.0002463 -24.78 -1.9922891 -24.79 -1.9847296 -24.8 -1.9775763 -24.81 -1.9708804 -24.82 -1.9647069 -24.83 -1.9591316 -24.84 -1.9542375 -24.85 -1.9501104 -24.86 -1.9468338 -24.87 -1.9444844 -24.88 -1.9431266 -24.89 -1.9428092 -24.9 -1.9435912 -24.91 -1.9454465 -24.92 -1.9483475 -24.93 -1.9522479 -24.94 -1.957077 -24.95 -1.9627429 -24.96 -1.9691347 -24.97 -1.976127 -24.98 -1.983584 -24.99 -1.9913639 -25 -1.9993237 -25.01 -2.0072979 -25.02 -2.0151616 -25.03 -2.0228103 -25.04 -2.0301402 -25.05 -2.0370622 -25.06 -2.0435018 -25.07 -2.0493979 -25.08 -2.0547017 -25.09 -2.059374 -25.1 -2.0633822 -25.11 -2.0666977 -25.12 -2.0692922 -25.13 -2.0711428 -25.14 -2.0722145 -25.15 -2.0724633 -25.16 -2.0718382 -25.17 -2.0702823 -25.18 -2.0677348 -25.19 -2.0641343 -25.2 -2.0594224 -25.21 -2.053549 -25.22 -2.0464769 -25.23 -2.038186 -25.24 -2.0286729 -25.25 -2.0179806 -25.26 -2.0061824 -25.27 -1.993389 -25.28 -1.9797502 -25.29 -1.9654552 -25.3 -1.9507303 -25.31 -1.9358361 -25.32 -1.9210617 -25.33 -1.9067183 -25.34 -1.8931316 -25.35 -1.880682 -25.36 -1.8696631 -25.37 -1.8603823 -25.38 -1.8531202 -25.39 -1.8481222 -25.4 -1.8455899 -25.41 -1.8456747 -25.42 -1.8484729 -25.43 -1.8540225 -25.44 -1.8623022 -25.45 -1.8732324 -25.46 -1.8867036 -25.47 -1.9024829 -25.48 -1.9203292 -25.49 -1.9399759 -25.5 -1.9611316 -25.51 -1.9834883 -25.52 -2.0067311 -25.53 -2.0305468 -25.54 -2.0546317 -25.55 -2.0786988 -25.56 -2.1024826 -25.57 -2.1256766 -25.58 -2.1480916 -25.59 -2.1695976 -25.6 -2.1900451 -25.61 -2.209308 -25.62 -2.2272798 -25.63 -2.2438688 -25.64 -2.2589934 -25.65 -2.2725766 -25.66 -2.2845412 -25.67 -2.2948058 -25.68 -2.3032714 -25.69 -2.3098389 -25.7 -2.3144149 -25.71 -2.3168773 -25.72 -2.3170976 -25.73 -2.3149455 -25.74 -2.3102942 -25.75 -2.3030268 -25.76 -2.2930438 -25.77 -2.280268 -25.78 -2.2646566 -25.79 -2.2461965 -25.8 -2.2249022 -25.81 -2.2008973 -25.82 -2.1743282 -25.83 -2.1453908 -25.84 -2.1143376 -25.85 -2.0814682 -25.86 -2.0471272 -25.87 -2.0116994 -25.88 -1.9755996 -25.89 -1.9392646 -25.9 -1.903143 -25.91 -1.867808 -25.92 -1.8336151 -25.93 -1.8009728 -25.94 -1.7702652 -25.95 -1.741839 -25.96 -1.7159935 -25.97 -1.6929759 -25.98 -1.6729791 -25.99 -1.6561393 -26 -1.6425378 -26.01 -1.6321974 -26.02 -1.6251915 -26.03 -1.621355 -26.04 -1.620528 -26.05 -1.6225603 -26.06 -1.627275 -26.07 -1.6344744 -26.08 -1.6439516 -26.09 -1.655491 -26.1 -1.6688783 -26.11 -1.6839002 -26.12 -1.7003534 -26.13 -1.7180211 -26.14 -1.7367118 -26.15 -1.7562728 -26.16 -1.7765439 -26.17 -1.7973723 -26.18 -1.8186104 -26.19 -1.8401127 -26.2 -1.8617342 -26.21 -1.883327 -26.22 -1.9047394 -26.23 -1.9258139 -26.24 -1.9463716 -26.25 -1.9662236 -26.26 -1.9852267 -26.27 -2.0032009 -26.28 -2.0199695 -26.29 -2.0353568 -26.3 -2.0491974 -26.31 -2.0613365 -26.32 -2.0716392 -26.33 -2.0799921 -26.34 -2.0863051 -26.35 -2.0905145 -26.36 -2.0925346 -26.37 -2.0924476 -26.38 -2.0903041 -26.39 -2.0861913 -26.4 -2.0802309 -26.41 -2.0725766 -26.42 -2.0634142 -26.43 -2.0529535 -26.44 -2.041427 -26.45 -2.0290809 -26.46 -2.0161753 -26.47 -2.002988 -26.48 -1.9897824 -26.49 -1.9768115 -26.5 -1.9643166 -26.51 -1.9525219 -26.52 -1.9416327 -26.53 -1.9318297 -26.54 -1.9232714 -26.55 -1.9160905 -26.56 -1.9103916 -26.57 -1.9062557 -26.58 -1.9037679 -26.59 -1.9029367 -26.6 -1.9037556 -26.61 -1.906215 -26.62 -1.9102869 -26.63 -1.9159322 -26.64 -1.9230947 -26.65 -1.9317089 -26.66 -1.9417011 -26.67 -1.9529863 -26.68 -1.9654715 -26.69 -1.9790506 -26.7 -1.9936095 -26.71 -2.0090376 -26.72 -2.0252113 -26.73 -2.0419974 -26.74 -2.0592533 -26.75 -2.0768276 -26.76 -2.0945618 -26.77 -2.1122879 -26.78 -2.1298309 -26.79 -2.1470121 -26.8 -2.1636345 -26.81 -2.1794841 -26.82 -2.1944169 -26.83 -2.2082598 -26.84 -2.2208481 -26.85 -2.2320313 -26.86 -2.2416743 -26.87 -2.2496638 -26.88 -2.2559098 -26.89 -2.2603482 -26.9 -2.262943 -26.91 -2.2636851 -26.92 -2.2625478 -26.93 -2.2596486 -26.94 -2.2550743 -26.95 -2.2489342 -26.96 -2.2413658 -26.97 -2.2325245 -26.98 -2.2225846 -26.99 -2.2117308 -27 -2.2001589 -27.01 -2.1880668 -27.02 -2.1756515 -27.03 -2.1631256 -27.04 -2.1506633 -27.05 -2.1384286 -27.06 -2.1265734 -27.07 -2.1152311 -27.08 -2.1045157 -27.09 -2.0945203 -27.1 -2.0853172 -27.11 -2.076958 -27.12 -2.0694744 -27.13 -2.0628792 -27.14 -2.0571873 -27.15 -2.0523697 -27.16 -2.0483811 -27.17 -2.0451767 -27.18 -2.0427013 -27.19 -2.0408915 -27.2 -2.0396759 -27.21 -2.038977 -27.22 -2.0387112 -27.23 -2.0387897 -27.24 -2.039121 -27.25 -2.0396171 -27.26 -2.0401841 -27.27 -2.040697 -27.28 -2.0410471 -27.29 -2.0411243 -27.3 -2.0408161 -27.31 -2.0400147 -27.32 -2.0386143 -27.33 -2.0365137 -27.34 -2.0336228 -27.35 -2.0298623 -27.36 -2.0251668 -27.37 -2.0194855 -27.38 -2.0127935 -27.39 -2.0050933 -27.4 -1.996413 -27.41 -1.9868061 -27.42 -1.9763566 -27.43 -1.9651776 -27.44 -1.9534047 -27.45 -1.9412027 -27.46 -1.9287545 -27.47 -1.9162616 -27.48 -1.903967 -27.49 -1.8920768 -27.5 -1.8808106 -27.51 -1.8703838 -27.52 -1.8609975 -27.53 -1.8528352 -27.54 -1.8460576 -27.55 -1.8407952 -27.56 -1.8371475 -27.57 -1.835181 -27.58 -1.8349251 -27.59 -1.836408 -27.6 -1.8395529 -27.61 -1.8442699 -27.62 -1.8504555 -27.63 -1.8579827 -27.64 -1.866706 -27.65 -1.8764676 -27.66 -1.8871027 -27.67 -1.8984454 -27.68 -1.9103335 -27.69 -1.922613 -27.7 -1.9351194 -27.71 -1.9477283 -27.72 -1.9603511 -27.73 -1.9728987 -27.74 -1.9852983 -27.75 -1.9974912 -27.76 -2.0094307 -27.77 -2.0210786 -27.78 -2.0324016 -27.79 -2.0433678 -27.8 -2.0539427 -27.81 -2.0640799 -27.82 -2.0737255 -27.83 -2.0828294 -27.84 -2.0913181 -27.85 -2.0991069 -27.86 -2.1061018 -27.87 -2.1122017 -27.88 -2.1173025 -27.89 -2.1213004 -27.9 -2.1240973 -27.91 -2.1256062 -27.92 -2.125748 -27.93 -2.1244308 -27.94 -2.1216786 -27.95 -2.1174989 -27.96 -2.1119305 -27.97 -2.1050438 -27.98 -2.096941 -27.99 -2.0877538 -28 -2.0776406 -28.01 -2.066782 -28.02 -2.0553752 -28.03 -2.0436284 -28.04 -2.0317887 -28.05 -2.0200517 -28.06 -2.008611 -28.07 -1.9976462 -28.08 -1.9873146 -28.09 -1.977748 -28.1 -1.9690497 -28.11 -1.9612935 -28.12 -1.9545233 -28.13 -1.9487552 -28.14 -1.9439799 -28.15 -1.9401916 -28.16 -1.9373146 -28.17 -1.9352791 -28.18 -1.9340245 -28.19 -1.9334926 -28.2 -1.9336318 -28.21 -1.9344018 -28.22 -1.9357759 -28.23 -1.9377434 -28.24 -1.9403092 -28.25 -1.9434927 -28.26 -1.9473221 -28.27 -1.9518439 -28.28 -1.9571069 -28.29 -1.9631494 -28.3 -1.9699989 -28.31 -1.9776648 -28.32 -1.9861332 -28.33 -1.9953611 -28.34 -2.0052728 -28.35 -2.0157573 -28.36 -2.0266673 -28.37 -2.0378229 -28.38 -2.0490016 -28.39 -2.0599479 -28.4 -2.0703972 -28.41 -2.0800742 -28.42 -2.088702 -28.43 -2.0960125 -28.44 -2.1017563 -28.45 -2.1057128 -28.46 -2.1076994 -28.47 -2.107579 -28.48 -2.1052617 -28.49 -2.100659 -28.5 -2.0938833 -28.51 -2.0850316 -28.52 -2.074256 -28.53 -2.061759 -28.54 -2.0477862 -28.55 -2.0326177 -28.56 -2.0165584 -28.57 -1.9999275 -28.58 -1.9830473 -28.59 -1.966233 -28.6 -1.9498541 -28.61 -1.9341336 -28.62 -1.9192907 -28.63 -1.9055168 -28.64 -1.8929617 -28.65 -1.8817336 -28.66 -1.8718996 -28.67 -1.8634894 -28.68 -1.8565009 -28.69 -1.850905 -28.7 -1.8466542 -28.71 -1.8436927 -28.72 -1.8419389 -28.73 -1.8413305 -28.74 -1.8418219 -28.75 -1.8433813 -28.76 -1.845994 -28.77 -1.8496627 -28.78 -1.8544065 -28.79 -1.8602587 -28.8 -1.867261 -28.81 -1.8754596 -28.82 -1.8849038 -28.83 -1.8956393 -28.84 -1.9076726 -28.85 -1.9209884 -28.86 -1.9355385 -28.87 -1.9512382 -28.88 -1.9679625 -28.89 -1.9855459 -28.9 -2.0037843 -28.91 -2.0224373 -28.92 -2.0412348 -28.93 -2.0598792 -28.94 -2.0780323 -28.95 -2.095389 -28.96 -2.1116493 -28.97 -2.1265304 -28.98 -2.1397832 -28.99 -2.1512002 -29 -2.1606203 -29.01 -2.1679378 -29.02 -2.1731063 -29.03 -2.1761384 -29.04 -2.1771072 -29.05 -2.1760514 -29.06 -2.1732627 -29.07 -2.1689691 -29.08 -2.1634249 -29.09 -2.1569055 -29.1 -2.1496929 -29.11 -2.1420683 -29.12 -2.1342966 -29.13 -2.1266188 -29.14 -2.1192438 -29.15 -2.1123406 -29.16 -2.1060743 -29.17 -2.1004948 -29.18 -2.0956193 -29.19 -2.0914325 -29.2 -2.0878811 -29.21 -2.0848814 -29.22 -2.0823255 -29.23 -2.0800908 -29.24 -2.0780482 -29.25 -2.0760703 -29.26 -2.0740395 -29.27 -2.0718434 -29.28 -2.0694038 -29.29 -2.0666792 -29.3 -2.0636474 -29.31 -2.0603122 -29.32 -2.056701 -29.33 -2.0528605 -29.34 -2.0488515 -29.35 -2.0447431 -29.36 -2.0406055 -29.37 -2.0365035 -29.38 -2.0325083 -29.39 -2.028673 -29.4 -2.024981 -29.41 -2.0214171 -29.42 -2.0179407 -29.43 -2.0144873 -29.44 -2.0109711 -29.45 -2.00729 -29.46 -2.0033306 -29.47 -1.9989763 -29.48 -1.9941137 -29.49 -1.9886402 -29.5 -1.9824593 -29.51 -1.9755225 -29.52 -1.9678128 -29.53 -1.9593506 -29.54 -1.9501961 -29.55 -1.9404494 -29.56 -1.9302486 -29.57 -1.9197661 -29.58 -1.9092021 -29.59 -1.8987775 -29.6 -1.8887251 -29.61 -1.8793207 -29.62 -1.8707691 -29.63 -1.8632707 -29.64 -1.8569964 -29.65 -1.8520775 -29.66 -1.8485968 -29.67 -1.846584 -29.68 -1.8460103 -29.69 -1.8467863 -29.7 -1.8487618 -29.71 -1.8517275 -29.72 -1.8554343 -29.73 -1.8595325 -29.74 -1.8636505 -29.75 -1.8673911 -29.76 -1.8703293 -29.77 -1.8720204 -29.78 -1.8720094 -29.79 -1.8698384 -29.8 -1.8650546 -29.81 -1.8572188 -29.82 -1.8459114 -29.83 -1.8307132 -29.84 -1.8112768 -29.85 -1.7873135 -29.86 -1.7585504 -29.87 -1.7247635 -29.88 -1.6857818 -29.89 -1.6414921 -29.9 -1.5918431 -29.91 -1.5368493 -29.92 -1.4765941 -29.93 -1.4112317 -29.94 -1.3409885 -29.95 -1.266156 -29.96 -1.1870946 -29.97 -1.1042353 -29.98 -1.0180727 -29.99 -0.92915853 -30 -0.83809348 -& -@target G3.S0 -@type xy -0 -2 -0.01 -2 -0.02 -2 -0.03 -2 -0.04 -2 -0.05 -2 -0.06 -2 -0.07 -2 -0.08 -2 -0.09 -2 -0.1 -2 -0.11 -2 -0.12 -2 -0.13 -2 -0.14 -2 -0.15 -2 -0.16 -2 -0.17 -2 -0.18 -2 -0.19 -2 -0.2 -2 -0.21 -2 -0.22 -2 -0.23 -2 -0.24 -2 -0.25 -2 -0.26 -2 -0.27 -2 -0.28 -2 -0.29 -2 -0.3 -2 -0.31 -2 -0.32 -2 -0.33 -2 -0.34 -2 -0.35 -2 -0.36 -2 -0.37 -2 -0.38 -2 -0.39 -2 -0.4 -2 -0.41 -2 -0.42 -2 -0.43 -2 -0.44 -2 -0.45 -2 -0.46 -2 -0.47 -2 -0.48 -2 -0.49 -2 -0.5 -2 -0.51 -2 -0.52 -2 -0.53 -2 -0.54 -2 -0.55 -2 -0.56 -2 -0.57 -2 -0.58 -2 -0.59 -2 -0.6 -2 -0.61 -2 -0.62 -2 -0.63 -2 -0.64 -2 -0.65 -2 -0.66 -2 -0.67 -2 -0.68 -2 -0.69 -2 -0.7 -2 -0.71 -2 -0.72 -2 -0.73 -2 -0.74 -2 -0.75 -2 -0.76 -2 -0.77 -2 -0.78 -2 -0.79 -2 -0.8 -2 -0.81 -2 -0.82 -2 -0.83 -2 -0.84 -2 -0.85 -2 -0.86 -2 -0.87 -2 -0.88 -2 -0.89 -2 -0.9 -2 -0.91 -2 -0.92 -2 -0.93 -2 -0.94 -2 -0.95 -2 -0.96 -2 -0.97 -2 -0.98 -2 -0.99 -2 -1 -2 -1.01 -2 -1.02 -2 -1.03 -2 -1.04 -2 -1.05 -2 -1.06 -2 -1.07 -2 -1.08 -2 -1.09 -2 -1.1 -2 -1.11 -2 -1.12 -2 -1.13 -2 -1.14 -2 -1.15 -2 -1.16 -2 -1.17 -2 -1.18 -2 -1.19 -2 -1.2 -2 -1.21 -2 -1.22 -2 -1.23 -2 -1.24 -2 -1.25 -2 -1.26 -2 -1.27 -2 -1.28 -2 -1.29 -2 -1.3 -2 -1.31 -2 -1.32 -2 -1.33 -2 -1.34 -2 -1.35 -2 -1.36 -2 -1.37 -2 -1.38 -2 -1.39 -2 -1.4 -2 -1.41 -2 -1.42 -2 -1.43 -2 -1.44 -2 -1.45 -2 -1.46 -2 -1.47 -2 -1.48 -2 -1.49 -2 -1.5 -2 -1.51 -2 -1.52 -2 -1.53 -2 -1.54 -2 -1.55 -2 -1.56 -2 -1.57 -2 -1.58 -2 -1.59 -2 -1.6 -2 -1.61 -2 -1.62 -2 -1.63 -2 -1.64 -2 -1.65 -2 -1.66 -2 -1.67 -2 -1.68 -2 -1.69 -2 -1.7 -2 -1.71 -2 -1.72 -2 -1.73 -2 -1.74 -2 -1.75 -2 -1.76 -2 -1.77 -2 -1.78 -2 -1.79 -2 -1.8 -2 -1.81 -2 -1.82 -2 -1.83 -2 -1.84 -2 -1.85 -2 -1.86 -2 -1.87 -2 -1.88 -2 -1.89 -2 -1.9 -2 -1.91 -2 -1.92 -2 -1.93 -2 -1.94 -2 -1.95 -2 -1.96 -2 -1.97 -2 -1.98 -2 -1.99 -2 -2 -2 -2.01 -2 -2.02 -2 -2.03 -2 -2.04 -2 -2.05 -2 -2.06 -2 -2.07 -2 -2.08 -2 -2.09 -2 -2.1 -2 -2.11 -2 -2.12 -2 -2.13 -2 -2.14 -2 -2.15 -2 -2.16 -2 -2.17 -2 -2.18 -2 -2.19 -2 -2.2 -2 -2.21 -2 -2.22 -2 -2.23 -2 -2.24 -2 -2.25 -2 -2.26 -2 -2.27 -2 -2.28 -2 -2.29 -2 -2.3 -2 -2.31 -2 -2.32 -2 -2.33 -2 -2.34 -2 -2.35 -2 -2.36 -2 -2.37 -2 -2.38 -2 -2.39 -2 -2.4 -2 -2.41 -2 -2.42 -2 -2.43 -2 -2.44 -2 -2.45 -2 -2.46 -2 -2.47 -2 -2.48 -2 -2.49 -2 -2.5 -2 -2.51 -2 -2.52 -2 -2.53 -2 -2.54 -2 -2.55 -2 -2.56 -2 -2.57 -2 -2.58 -2 -2.59 -2 -2.6 -2 -2.61 -2 -2.62 -2 -2.63 -2 -2.64 -2 -2.65 -2 -2.66 -2 -2.67 -2 -2.68 -2 -2.69 -2 -2.7 -2 -2.71 -2 -2.72 -2 -2.73 -2 -2.74 -2 -2.75 -2 -2.76 -2 -2.77 -2 -2.78 -2 -2.79 -2 -2.8 -2 -2.81 -2 -2.82 -2 -2.83 -2 -2.84 -2 -2.85 -2 -2.86 -2 -2.87 -2 -2.88 -2 -2.89 -2 -2.9 -2 -2.91 -2 -2.92 -2 -2.93 -2 -2.94 -2 -2.95 -2 -2.96 -2 -2.97 -2 -2.98 -2 -2.99 -2 -3 -2 -3.01 -2 -3.02 -2 -3.03 -2 -3.04 -2 -3.05 -2 -3.06 -2 -3.07 -2 -3.08 -2 -3.09 -2 -3.1 -2 -3.11 -2 -3.12 -2 -3.13 -2 -3.14 -2 -3.15 -2 -3.16 -2 -3.17 -2 -3.18 -2 -3.19 -2 -3.2 -2 -3.21 -2 -3.22 -2 -3.23 -2 -3.24 -2 -3.25 -2 -3.26 -2 -3.27 -2 -3.28 -2 -3.29 -2 -3.3 -2 -3.31 -2 -3.32 -2 -3.33 -2 -3.34 -2 -3.35 -2 -3.36 -2 -3.37 -2 -3.38 -2 -3.39 -2 -3.4 -2 -3.41 -2 -3.42 -2 -3.43 -2 -3.44 -2 -3.45 -2 -3.46 -2 -3.47 -2 -3.48 -2 -3.49 -2 -3.5 -2 -3.51 -2 -3.52 -2 -3.53 -2 -3.54 -2 -3.55 -2 -3.56 -2 -3.57 -2 -3.58 -2 -3.59 -2 -3.6 -2 -3.61 -2 -3.62 -2 -3.63 -2 -3.64 -2 -3.65 -2 -3.66 -2 -3.67 -2 -3.68 -2 -3.69 -2 -3.7 -2 -3.71 -2 -3.72 -2 -3.73 -2 -3.74 -2 -3.75 -2 -3.76 -2 -3.77 -2 -3.78 -2 -3.79 -2 -3.8 -2 -3.81 -2 -3.82 -2 -3.83 -2 -3.84 -2 -3.85 -2 -3.86 -2 -3.87 -2 -3.88 -2 -3.89 -2 -3.9 -2 -3.91 -2 -3.92 -2 -3.93 -2 -3.94 -2 -3.95 -2 -3.96 -2 -3.97 -2 -3.98 -2 -3.99 -2 -4 -2 -4.01 -2 -4.02 -2 -4.03 -2 -4.04 -2 -4.05 -2 -4.06 -2 -4.07 -2 -4.08 -2 -4.09 -2 -4.1 -2 -4.11 -2 -4.12 -2 -4.13 -2 -4.14 -2 -4.15 -2 -4.16 -2 -4.17 -2 -4.18 -2 -4.19 -2 -4.2 -2 -4.21 -2 -4.22 -2 -4.23 -2 -4.24 -2 -4.25 -2 -4.26 -2 -4.27 -2 -4.28 -2 -4.29 -2 -4.3 -2 -4.31 -2 -4.32 -2 -4.33 -2 -4.34 -2 -4.35 -2 -4.36 -2 -4.37 -2 -4.38 -2 -4.39 -2 -4.4 -2 -4.41 -2 -4.42 -2 -4.43 -2 -4.44 -2 -4.45 -2 -4.46 -2 -4.47 -2 -4.48 -2 -4.49 -2 -4.5 -2 -4.51 -2 -4.52 -2 -4.53 -2 -4.54 -2 -4.55 -2 -4.56 -2 -4.57 -2 -4.58 -2 -4.59 -2 -4.6 -2 -4.61 -2 -4.62 -2 -4.63 -2 -4.64 -2 -4.65 -2 -4.66 -2 -4.67 -2 -4.68 -2 -4.69 -2 -4.7 -2 -4.71 -2 -4.72 -2 -4.73 -2 -4.74 -2 -4.75 -2 -4.76 -2 -4.77 -2 -4.78 -2 -4.79 -2 -4.8 -2 -4.81 -2 -4.82 -2 -4.83 -2 -4.84 -2 -4.85 -2 -4.86 -2 -4.87 -2 -4.88 -2 -4.89 -2 -4.9 -2 -4.91 -2 -4.92 -2 -4.93 -2 -4.94 -2 -4.95 -2 -4.96 -2 -4.97 -2 -4.98 -2 -4.99 -2 -5 -2 -5.01 -2 -5.02 -2 -5.03 -2 -5.04 -2 -5.05 -2 -5.06 -2 -5.07 -2 -5.08 -2 -5.09 -2 -5.1 -2 -5.11 -2 -5.12 -2 -5.13 -2 -5.14 -2 -5.15 -2 -5.16 -2 -5.17 -2 -5.18 -2 -5.19 -2 -5.2 -2 -5.21 -2 -5.22 -2 -5.23 -2 -5.24 -2 -5.25 -2 -5.26 -2 -5.27 -2 -5.28 -2 -5.29 -2 -5.3 -2 -5.31 -2 -5.32 -2 -5.33 -2 -5.34 -2 -5.35 -2 -5.36 -2 -5.37 -2 -5.38 -2 -5.39 -2 -5.4 -2 -5.41 -2 -5.42 -2 -5.43 -2 -5.44 -2 -5.45 -2 -5.46 -2 -5.47 -2 -5.48 -2 -5.49 -2 -5.5 -2 -5.51 -2 -5.52 -2 -5.53 -2 -5.54 -2 -5.55 -2 -5.56 -2 -5.57 -2 -5.58 -2 -5.59 -2 -5.6 -2 -5.61 -2 -5.62 -2 -5.63 -2 -5.64 -2 -5.65 -2 -5.66 -2 -5.67 -2 -5.68 -2 -5.69 -2 -5.7 -2 -5.71 -2 -5.72 -2 -5.73 -2 -5.74 -2 -5.75 -2 -5.76 -2 -5.77 -2 -5.78 -2 -5.79 -2 -5.8 -2 -5.81 -2 -5.82 -2 -5.83 -2 -5.84 -2 -5.85 -2 -5.86 -2 -5.87 -2 -5.88 -2 -5.89 -2 -5.9 -2 -5.91 -2 -5.92 -2 -5.93 -2 -5.94 -2 -5.95 -2 -5.96 -2 -5.97 -2 -5.98 -2 -5.99 -2 -6 -2 -6.01 -2 -6.02 -2 -6.03 -2 -6.04 -2 -6.05 -2 -6.06 -2 -6.07 -2 -6.08 -2 -6.09 -2 -6.1 -2 -6.11 -2 -6.12 -2 -6.13 -2 -6.14 -2 -6.15 -2 -6.16 -2 -6.17 -2 -6.18 -2 -6.19 -2 -6.2 -2 -6.21 -2 -6.22 -2 -6.23 -2 -6.24 -2 -6.25 -2 -6.26 -2 -6.27 -2 -6.28 -2 -6.29 -2 -6.3 -2 -6.31 -2 -6.32 -2 -6.33 -2 -6.34 -2 -6.35 -2 -6.36 -2 -6.37 -2 -6.38 -2 -6.39 -2 -6.4 -2 -6.41 -2 -6.42 -2 -6.43 -2 -6.44 -2 -6.45 -2 -6.46 -2 -6.47 -2 -6.48 -2 -6.49 -2 -6.5 -2 -6.51 -2 -6.52 -2 -6.53 -2 -6.54 -2 -6.55 -2 -6.56 -2 -6.57 -2 -6.58 -2 -6.59 -2 -6.6 -2 -6.61 -2 -6.62 -2 -6.63 -2 -6.64 -2 -6.65 -2 -6.66 -2 -6.67 -2 -6.68 -2 -6.69 -2 -6.7 -2 -6.71 -2 -6.72 -2 -6.73 -2 -6.74 -2 -6.75 -2 -6.76 -2 -6.77 -2 -6.78 -2 -6.79 -2 -6.8 -2 -6.81 -2 -6.82 -2 -6.83 -2 -6.84 -2 -6.85 -2 -6.86 -2 -6.87 -2 -6.88 -2 -6.89 -2 -6.9 -2 -6.91 -2 -6.92 -2 -6.93 -2 -6.94 -2 -6.95 -2 -6.96 -2 -6.97 -2 -6.98 -2 -6.99 -2 -7 -2 -7.01 -2 -7.02 -2 -7.03 -2 -7.04 -2 -7.05 -2 -7.06 -2 -7.07 -2 -7.08 -2 -7.09 -2 -7.1 -2 -7.11 -2 -7.12 -2 -7.13 -2 -7.14 -2 -7.15 -2 -7.16 -2 -7.17 -2 -7.18 -2 -7.19 -2 -7.2 -2 -7.21 -2 -7.22 -2 -7.23 -2 -7.24 -2 -7.25 -2 -7.26 -2 -7.27 -2 -7.28 -2 -7.29 -2 -7.3 -2 -7.31 -2 -7.32 -2 -7.33 -2 -7.34 -2 -7.35 -2 -7.36 -2 -7.37 -2 -7.38 -2 -7.39 -2 -7.4 -2 -7.41 -2 -7.42 -2 -7.43 -2 -7.44 -2 -7.45 -2 -7.46 -2 -7.47 -2 -7.48 -2 -7.49 -2 -7.5 -2 -7.51 -2 -7.52 -2 -7.53 -2 -7.54 -2 -7.55 -2 -7.56 -2 -7.57 -2 -7.58 -2 -7.59 -2 -7.6 -2 -7.61 -2 -7.62 -2 -7.63 -2 -7.64 -2 -7.65 -2 -7.66 -2 -7.67 -2 -7.68 -2 -7.69 -2 -7.7 -2 -7.71 -2 -7.72 -2 -7.73 -2 -7.74 -2 -7.75 -2 -7.76 -2 -7.77 -2 -7.78 -2 -7.79 -2 -7.8 -2 -7.81 -2 -7.82 -2 -7.83 -2 -7.84 -2 -7.85 -2 -7.86 -2 -7.87 -2 -7.88 -2 -7.89 -2 -7.9 -2 -7.91 -2 -7.92 -2 -7.93 -2 -7.94 -2 -7.95 -2 -7.96 -2 -7.97 -2 -7.98 -2 -7.99 -2 -8 -2 -8.01 -2 -8.02 -2 -8.03 -2 -8.04 -2 -8.05 -2 -8.06 -2 -8.07 -2 -8.08 -2 -8.09 -2 -8.1 -2 -8.11 -2 -8.12 -2 -8.13 -2 -8.14 -2 -8.15 -2 -8.16 -2 -8.17 -2 -8.18 -2 -8.19 -2 -8.2 -2 -8.21 -2 -8.22 -2 -8.23 -2 -8.24 -2 -8.25 -2 -8.26 -2 -8.27 -2 -8.28 -2 -8.29 -2 -8.3 -2 -8.31 -2 -8.32 -2 -8.33 -2 -8.34 -2 -8.35 -2 -8.36 -2 -8.37 -2 -8.38 -2 -8.39 -2 -8.4 -2 -8.41 -2 -8.42 -2 -8.43 -2 -8.44 -2 -8.45 -2 -8.46 -2 -8.47 -2 -8.48 -2 -8.49 -2 -8.5 -2 -8.51 -2 -8.52 -2 -8.53 -2 -8.54 -2 -8.55 -2 -8.56 -2 -8.57 -2 -8.58 -2 -8.59 -2 -8.6 -2 -8.61 -2 -8.62 -2 -8.63 -2 -8.64 -2 -8.65 -2 -8.66 -2 -8.67 -2 -8.68 -2 -8.69 -2 -8.7 -2 -8.71 -2 -8.72 -2 -8.73 -2 -8.74 -2 -8.75 -2 -8.76 -2 -8.77 -2 -8.78 -2 -8.79 -2 -8.8 -2 -8.81 -2 -8.82 -2 -8.83 -2 -8.84 -2 -8.85 -2 -8.86 -2 -8.87 -2 -8.88 -2 -8.89 -2 -8.9 -2 -8.91 -2 -8.92 -2 -8.93 -2 -8.94 -2 -8.95 -2 -8.96 -2 -8.97 -2 -8.98 -2 -8.99 -2 -9 -2 -9.01 -2 -9.02 -2 -9.03 -2 -9.04 -2 -9.05 -2 -9.06 -2 -9.07 -2 -9.08 -2 -9.09 -2 -9.1 -2 -9.11 -2 -9.12 -2 -9.13 -2 -9.14 -2 -9.15 -2 -9.16 -2 -9.17 -2 -9.18 -2 -9.19 -2 -9.2 -2 -9.21 -2 -9.22 -2 -9.23 -2 -9.24 -2 -9.25 -2 -9.26 -2 -9.27 -2 -9.28 -2 -9.29 -2 -9.3 -2 -9.31 -2 -9.32 -2 -9.33 -2 -9.34 -2 -9.35 -2 -9.36 -2 -9.37 -2 -9.38 -2 -9.39 -2 -9.4 -2 -9.41 -2 -9.42 -2 -9.43 -2 -9.44 -2 -9.45 -2 -9.46 -2 -9.47 -2 -9.48 -2 -9.49 -2 -9.5 -2 -9.51 -2 -9.52 -2 -9.53 -2 -9.54 -2 -9.55 -2 -9.56 -2 -9.57 -2 -9.58 -2 -9.59 -2 -9.6 -2 -9.61 -2 -9.62 -2 -9.63 -2 -9.64 -2 -9.65 -2 -9.66 -2 -9.67 -2 -9.68 -2 -9.69 -2 -9.7 -2 -9.71 -2 -9.72 -2 -9.73 -2 -9.74 -2 -9.75 -2 -9.76 -2 -9.77 -2 -9.78 -2 -9.79 -2 -9.8 -2 -9.81 -2 -9.82 -2 -9.83 -2 -9.84 -2 -9.85 -2 -9.86 -2 -9.87 -2 -9.88 -2 -9.89 -2 -9.9 -2 -9.91 -2 -9.92 -2 -9.93 -2 -9.94 -2 -9.95 -2 -9.96 -2 -9.97 -2 -9.98 -2 -9.99 -2 -10 -2 -10.01 -2 -10.02 -2 -10.03 -2 -10.04 -2 -10.05 -2 -10.06 -2 -10.07 -2 -10.08 -2 -10.09 -2 -10.1 -2 -10.11 -2 -10.12 -2 -10.13 -2 -10.14 -2 -10.15 -2 -10.16 -2 -10.17 -2 -10.18 -2 -10.19 -2 -10.2 -2 -10.21 -2 -10.22 -2 -10.23 -2 -10.24 -2 -10.25 -2 -10.26 -2 -10.27 -2 -10.28 -2 -10.29 -2 -10.3 -2 -10.31 -2 -10.32 -2 -10.33 -2 -10.34 -2 -10.35 -2 -10.36 -2 -10.37 -2 -10.38 -2 -10.39 -2 -10.4 -2 -10.41 -2 -10.42 -2 -10.43 -2 -10.44 -2 -10.45 -2 -10.46 -2 -10.47 -2 -10.48 -2 -10.49 -2 -10.5 -2 -10.51 -2 -10.52 -2 -10.53 -2 -10.54 -2 -10.55 -2 -10.56 -2 -10.57 -2 -10.58 -2 -10.59 -2 -10.6 -2 -10.61 -2 -10.62 -2 -10.63 -2 -10.64 -2 -10.65 -2 -10.66 -2 -10.67 -2 -10.68 -2 -10.69 -2 -10.7 -2 -10.71 -2 -10.72 -2 -10.73 -2 -10.74 -2 -10.75 -2 -10.76 -2 -10.77 -2 -10.78 -2 -10.79 -2 -10.8 -2 -10.81 -2 -10.82 -2 -10.83 -2 -10.84 -2 -10.85 -2 -10.86 -2 -10.87 -2 -10.88 -2 -10.89 -2 -10.9 -2 -10.91 -2 -10.92 -2 -10.93 -2 -10.94 -2 -10.95 -2 -10.96 -2 -10.97 -2 -10.98 -2 -10.99 -2 -11 -2 -11.01 -2 -11.02 -2 -11.03 -2 -11.04 -2 -11.05 -2 -11.06 -2 -11.07 -2 -11.08 -2 -11.09 -2 -11.1 -2 -11.11 -2 -11.12 -2 -11.13 -2 -11.14 -2 -11.15 -2 -11.16 -2 -11.17 -2 -11.18 -2 -11.19 -2 -11.2 -2 -11.21 -2 -11.22 -2 -11.23 -2 -11.24 -2 -11.25 -2 -11.26 -2 -11.27 -2 -11.28 -2 -11.29 -2 -11.3 -2 -11.31 -2 -11.32 -2 -11.33 -2 -11.34 -2 -11.35 -2 -11.36 -2 -11.37 -2 -11.38 -2 -11.39 -2 -11.4 -2 -11.41 -2 -11.42 -2 -11.43 -2 -11.44 -2 -11.45 -2 -11.46 -2 -11.47 -2 -11.48 -2 -11.49 -2 -11.5 -2 -11.51 -2 -11.52 -2 -11.53 -2 -11.54 -2 -11.55 -2 -11.56 -2 -11.57 -2 -11.58 -2 -11.59 -2 -11.6 -2 -11.61 -2 -11.62 -2 -11.63 -2 -11.64 -2 -11.65 -2 -11.66 -2 -11.67 -2 -11.68 -2 -11.69 -2 -11.7 -2 -11.71 -2 -11.72 -2 -11.73 -2 -11.74 -2 -11.75 -2 -11.76 -2 -11.77 -2 -11.78 -2 -11.79 -2 -11.8 -2 -11.81 -2 -11.82 -2 -11.83 -2 -11.84 -2 -11.85 -2 -11.86 -2 -11.87 -2 -11.88 -2 -11.89 -2 -11.9 -2 -11.91 -2 -11.92 -2 -11.93 -2 -11.94 -2 -11.95 -2 -11.96 -2 -11.97 -2 -11.98 -2 -11.99 -2 -12 -2 -12.01 -2 -12.02 -2 -12.03 -2 -12.04 -2 -12.05 -2 -12.06 -2 -12.07 -2 -12.08 -2 -12.09 -2 -12.1 -2 -12.11 -2 -12.12 -2 -12.13 -2 -12.14 -2 -12.15 -2 -12.16 -2 -12.17 -2 -12.18 -2 -12.19 -2 -12.2 -2 -12.21 -2 -12.22 -2 -12.23 -2 -12.24 -2 -12.25 -2 -12.26 -2 -12.27 -2 -12.28 -2 -12.29 -2 -12.3 -2 -12.31 -2 -12.32 -2 -12.33 -2 -12.34 -2 -12.35 -2 -12.36 -2 -12.37 -2 -12.38 -2 -12.39 -2 -12.4 -2 -12.41 -2 -12.42 -2 -12.43 -2 -12.44 -2 -12.45 -2 -12.46 -2 -12.47 -2 -12.48 -2 -12.49 -2 -12.5 -2 -12.51 -2 -12.52 -2 -12.53 -2 -12.54 -2 -12.55 -2 -12.56 -2 -12.57 -2 -12.58 -2 -12.59 -2 -12.6 -2 -12.61 -2 -12.62 -2 -12.63 -2 -12.64 -2 -12.65 -2 -12.66 -2 -12.67 -2 -12.68 -2 -12.69 -2 -12.7 -2 -12.71 -2 -12.72 -2 -12.73 -2 -12.74 -2 -12.75 -2 -12.76 -2 -12.77 -2 -12.78 -2 -12.79 -2 -12.8 -2 -12.81 -2 -12.82 -2 -12.83 -2 -12.84 -2 -12.85 -2 -12.86 -2 -12.87 -2 -12.88 -2 -12.89 -2 -12.9 -2 -12.91 -2 -12.92 -2 -12.93 -2 -12.94 -2 -12.95 -2 -12.96 -2 -12.97 -2 -12.98 -2 -12.99 -2 -13 -2 -13.01 -2 -13.02 -2 -13.03 -2 -13.04 -2 -13.05 -2 -13.06 -2 -13.07 -2 -13.08 -2 -13.09 -2 -13.1 -2 -13.11 -2 -13.12 -2 -13.13 -2 -13.14 -2 -13.15 -2 -13.16 -2 -13.17 -2 -13.18 -2 -13.19 -2 -13.2 -2 -13.21 -2 -13.22 -2 -13.23 -2 -13.24 -2 -13.25 -2 -13.26 -2 -13.27 -2 -13.28 -2 -13.29 -2 -13.3 -2 -13.31 -2 -13.32 -2 -13.33 -2 -13.34 -2 -13.35 -2 -13.36 -2 -13.37 -2 -13.38 -2 -13.39 -2 -13.4 -2 -13.41 -2 -13.42 -2 -13.43 -2 -13.44 -2 -13.45 -2 -13.46 -2 -13.47 -2 -13.48 -2 -13.49 -2 -13.5 -2 -13.51 -2 -13.52 -2 -13.53 -2 -13.54 -2 -13.55 -2 -13.56 -2 -13.57 -2 -13.58 -2 -13.59 -2 -13.6 -2 -13.61 -2 -13.62 -2 -13.63 -2 -13.64 -2 -13.65 -2 -13.66 -2 -13.67 -2 -13.68 -2 -13.69 -2 -13.7 -2 -13.71 -2 -13.72 -2 -13.73 -2 -13.74 -2 -13.75 -2 -13.76 -2 -13.77 -2 -13.78 -2 -13.79 -2 -13.8 -2 -13.81 -2 -13.82 -2 -13.83 -2 -13.84 -2 -13.85 -2 -13.86 -2 -13.87 -2 -13.88 -2 -13.89 -2 -13.9 -2 -13.91 -2 -13.92 -2 -13.93 -2 -13.94 -2 -13.95 -2 -13.96 -2 -13.97 -2 -13.98 -2 -13.99 -2 -14 -2 -14.01 -2 -14.02 -2 -14.03 -2 -14.04 -2 -14.05 -2 -14.06 -2 -14.07 -2 -14.08 -2 -14.09 -2 -14.1 -2 -14.11 -2 -14.12 -2 -14.13 -2 -14.14 -2 -14.15 -2 -14.16 -2 -14.17 -2 -14.18 -2 -14.19 -2 -14.2 -2 -14.21 -2 -14.22 -2 -14.23 -2 -14.24 -2 -14.25 -2 -14.26 -2 -14.27 -2 -14.28 -2 -14.29 -2 -14.3 -2 -14.31 -2 -14.32 -2 -14.33 -2 -14.34 -2 -14.35 -2 -14.36 -2 -14.37 -2 -14.38 -2 -14.39 -2 -14.4 -2 -14.41 -2 -14.42 -2 -14.43 -2 -14.44 -2 -14.45 -2 -14.46 -2 -14.47 -2 -14.48 -2 -14.49 -2 -14.5 -2 -14.51 -2 -14.52 -2 -14.53 -2 -14.54 -2 -14.55 -2 -14.56 -2 -14.57 -2 -14.58 -2 -14.59 -2 -14.6 -2 -14.61 -2 -14.62 -2 -14.63 -2 -14.64 -2 -14.65 -2 -14.66 -2 -14.67 -2 -14.68 -2 -14.69 -2 -14.7 -2 -14.71 -2 -14.72 -2 -14.73 -2 -14.74 -2 -14.75 -2 -14.76 -2 -14.77 -2 -14.78 -2 -14.79 -2 -14.8 -2 -14.81 -2 -14.82 -2 -14.83 -2 -14.84 -2 -14.85 -2 -14.86 -2 -14.87 -2 -14.88 -2 -14.89 -2 -14.9 -2 -14.91 -2 -14.92 -2 -14.93 -2 -14.94 -2 -14.95 -2 -14.96 -2 -14.97 -2 -14.98 -2 -14.99 -2 -15 -2 -15.01 -2 -15.02 -2 -15.03 -2 -15.04 -2 -15.05 -2 -15.06 -2 -15.07 -2 -15.08 -2 -15.09 -2 -15.1 -2 -15.11 -2 -15.12 -2 -15.13 -2 -15.14 -2 -15.15 -2 -15.16 -2 -15.17 -2 -15.18 -2 -15.19 -2 -15.2 -2 -15.21 -2 -15.22 -2 -15.23 -2 -15.24 -2 -15.25 -2 -15.26 -2 -15.27 -2 -15.28 -2 -15.29 -2 -15.3 -2 -15.31 -2 -15.32 -2 -15.33 -2 -15.34 -2 -15.35 -2 -15.36 -2 -15.37 -2 -15.38 -2 -15.39 -2 -15.4 -2 -15.41 -2 -15.42 -2 -15.43 -2 -15.44 -2 -15.45 -2 -15.46 -2 -15.47 -2 -15.48 -2 -15.49 -2 -15.5 -2 -15.51 -2 -15.52 -2 -15.53 -2 -15.54 -2 -15.55 -2 -15.56 -2 -15.57 -2 -15.58 -2 -15.59 -2 -15.6 -2 -15.61 -2 -15.62 -2 -15.63 -2 -15.64 -2 -15.65 -2 -15.66 -2 -15.67 -2 -15.68 -2 -15.69 -2 -15.7 -2 -15.71 -2 -15.72 -2 -15.73 -2 -15.74 -2 -15.75 -2 -15.76 -2 -15.77 -2 -15.78 -2 -15.79 -2 -15.8 -2 -15.81 -2 -15.82 -2 -15.83 -2 -15.84 -2 -15.85 -2 -15.86 -2 -15.87 -2 -15.88 -2 -15.89 -2 -15.9 -2 -15.91 -2 -15.92 -2 -15.93 -2 -15.94 -2 -15.95 -2 -15.96 -2 -15.97 -2 -15.98 -2 -15.99 -2 -16 -2 -16.01 -2 -16.02 -2 -16.03 -2 -16.04 -2 -16.05 -2 -16.06 -2 -16.07 -2 -16.08 -2 -16.09 -2 -16.1 -2 -16.11 -2 -16.12 -2 -16.13 -2 -16.14 -2 -16.15 -2 -16.16 -2 -16.17 -2 -16.18 -2 -16.19 -2 -16.2 -2 -16.21 -2 -16.22 -2 -16.23 -2 -16.24 -2 -16.25 -2 -16.26 -2 -16.27 -2 -16.28 -2 -16.29 -2 -16.3 -2 -16.31 -2 -16.32 -2 -16.33 -2 -16.34 -2 -16.35 -2 -16.36 -2 -16.37 -2 -16.38 -2 -16.39 -2 -16.4 -2 -16.41 -2 -16.42 -2 -16.43 -2 -16.44 -2 -16.45 -2 -16.46 -2 -16.47 -2 -16.48 -2 -16.49 -2 -16.5 -2 -16.51 -2 -16.52 -2 -16.53 -2 -16.54 -2 -16.55 -2 -16.56 -2 -16.57 -2 -16.58 -2 -16.59 -2 -16.6 -2 -16.61 -2 -16.62 -2 -16.63 -2 -16.64 -2 -16.65 -2 -16.66 -2 -16.67 -2 -16.68 -2 -16.69 -2 -16.7 -2 -16.71 -2 -16.72 -2 -16.73 -2 -16.74 -2 -16.75 -2 -16.76 -2 -16.77 -2 -16.78 -2 -16.79 -2 -16.8 -2 -16.81 -2 -16.82 -2 -16.83 -2 -16.84 -2 -16.85 -2 -16.86 -2 -16.87 -2 -16.88 -2 -16.89 -2 -16.9 -2 -16.91 -2 -16.92 -2 -16.93 -2 -16.94 -2 -16.95 -2 -16.96 -2 -16.97 -2 -16.98 -2 -16.99 -2 -17 -2 -17.01 -2 -17.02 -2 -17.03 -2 -17.04 -2 -17.05 -2 -17.06 -2 -17.07 -2 -17.08 -2 -17.09 -2 -17.1 -2 -17.11 -2 -17.12 -2 -17.13 -2 -17.14 -2 -17.15 -2 -17.16 -2 -17.17 -2 -17.18 -2 -17.19 -2 -17.2 -2 -17.21 -2 -17.22 -2 -17.23 -2 -17.24 -2 -17.25 -2 -17.26 -2 -17.27 -2 -17.28 -2 -17.29 -2 -17.3 -2 -17.31 -2 -17.32 -2 -17.33 -2 -17.34 -2 -17.35 -2 -17.36 -2 -17.37 -2 -17.38 -2 -17.39 -2 -17.4 -2 -17.41 -2 -17.42 -2 -17.43 -2 -17.44 -2 -17.45 -2 -17.46 -2 -17.47 -2 -17.48 -2 -17.49 -2 -17.5 -2 -17.51 -2 -17.52 -2 -17.53 -2 -17.54 -2 -17.55 -2 -17.56 -2 -17.57 -2 -17.58 -2 -17.59 -2 -17.6 -2 -17.61 -2 -17.62 -2 -17.63 -2 -17.64 -2 -17.65 -2 -17.66 -2 -17.67 -2 -17.68 -2 -17.69 -2 -17.7 -2 -17.71 -2 -17.72 -2 -17.73 -2 -17.74 -2 -17.75 -2 -17.76 -2 -17.77 -2 -17.78 -2 -17.79 -2 -17.8 -2 -17.81 -2 -17.82 -2 -17.83 -2 -17.84 -2 -17.85 -2 -17.86 -2 -17.87 -2 -17.88 -2 -17.89 -2 -17.9 -2 -17.91 -2 -17.92 -2 -17.93 -2 -17.94 -2 -17.95 -2 -17.96 -2 -17.97 -2 -17.98 -2 -17.99 -2 -18 -2 -18.01 -2 -18.02 -2 -18.03 -2 -18.04 -2 -18.05 -2 -18.06 -2 -18.07 -2 -18.08 -2 -18.09 -2 -18.1 -2 -18.11 -2 -18.12 -2 -18.13 -2 -18.14 -2 -18.15 -2 -18.16 -2 -18.17 -2 -18.18 -2 -18.19 -2 -18.2 -2 -18.21 -2 -18.22 -2 -18.23 -2 -18.24 -2 -18.25 -2 -18.26 -2 -18.27 -2 -18.28 -2 -18.29 -2 -18.3 -2 -18.31 -2 -18.32 -2 -18.33 -2 -18.34 -2 -18.35 -2 -18.36 -2 -18.37 -2 -18.38 -2 -18.39 -2 -18.4 -2 -18.41 -2 -18.42 -2 -18.43 -2 -18.44 -2 -18.45 -2 -18.46 -2 -18.47 -2 -18.48 -2 -18.49 -2 -18.5 -2 -18.51 -2 -18.52 -2 -18.53 -2 -18.54 -2 -18.55 -2 -18.56 -2 -18.57 -2 -18.58 -2 -18.59 -2 -18.6 -2 -18.61 -2 -18.62 -2 -18.63 -2 -18.64 -2 -18.65 -2 -18.66 -2 -18.67 -2 -18.68 -2 -18.69 -2 -18.7 -2 -18.71 -2 -18.72 -2 -18.73 -2 -18.74 -2 -18.75 -2 -18.76 -2 -18.77 -2 -18.78 -2 -18.79 -2 -18.8 -2 -18.81 -2 -18.82 -2 -18.83 -2 -18.84 -2 -18.85 -2 -18.86 -2 -18.87 -2 -18.88 -2 -18.89 -2 -18.9 -2 -18.91 -2 -18.92 -2 -18.93 -2 -18.94 -2 -18.95 -2 -18.96 -2 -18.97 -2 -18.98 -2 -18.99 -2 -19 -2 -19.01 -2 -19.02 -2 -19.03 -2 -19.04 -2 -19.05 -2 -19.06 -2 -19.07 -2 -19.08 -2 -19.09 -2 -19.1 -2 -19.11 -2 -19.12 -2 -19.13 -2 -19.14 -2 -19.15 -2 -19.16 -2 -19.17 -2 -19.18 -2 -19.19 -2 -19.2 -2 -19.21 -2 -19.22 -2 -19.23 -2 -19.24 -2 -19.25 -2 -19.26 -2 -19.27 -2 -19.28 -2 -19.29 -2 -19.3 -2 -19.31 -2 -19.32 -2 -19.33 -2 -19.34 -2 -19.35 -2 -19.36 -2 -19.37 -2 -19.38 -2 -19.39 -2 -19.4 -2 -19.41 -2 -19.42 -2 -19.43 -2 -19.44 -2 -19.45 -2 -19.46 -2 -19.47 -2 -19.48 -2 -19.49 -2 -19.5 -2 -19.51 -2 -19.52 -2 -19.53 -2 -19.54 -2 -19.55 -2 -19.56 -2 -19.57 -2 -19.58 -2 -19.59 -2 -19.6 -2 -19.61 -2 -19.62 -2 -19.63 -2 -19.64 -2 -19.65 -2 -19.66 -2 -19.67 -2 -19.68 -2 -19.69 -2 -19.7 -2 -19.71 -2 -19.72 -2 -19.73 -2 -19.74 -2 -19.75 -2 -19.76 -2 -19.77 -2 -19.78 -2 -19.79 -2 -19.8 -2 -19.81 -2 -19.82 -2 -19.83 -2 -19.84 -2 -19.85 -2 -19.86 -2 -19.87 -2 -19.88 -2 -19.89 -2 -19.9 -2 -19.91 -2 -19.92 -2 -19.93 -2 -19.94 -2 -19.95 -2 -19.96 -2 -19.97 -2 -19.98 -2 -19.99 -2 -20 -2 -20.01 -2 -20.02 -2 -20.03 -2 -20.04 -2 -20.05 -2 -20.06 -2 -20.07 -2 -20.08 -2 -20.09 -2 -20.1 -2 -20.11 -2 -20.12 -2 -20.13 -2 -20.14 -2 -20.15 -2 -20.16 -2 -20.17 -2 -20.18 -2 -20.19 -2 -20.2 -2 -20.21 -2 -20.22 -2 -20.23 -2 -20.24 -2 -20.25 -2 -20.26 -2 -20.27 -2 -20.28 -2 -20.29 -2 -20.3 -2 -20.31 -2 -20.32 -2 -20.33 -2 -20.34 -2 -20.35 -2 -20.36 -2 -20.37 -2 -20.38 -2 -20.39 -2 -20.4 -2 -20.41 -2 -20.42 -2 -20.43 -2 -20.44 -2 -20.45 -2 -20.46 -2 -20.47 -2 -20.48 -2 -20.49 -2 -20.5 -2 -20.51 -2 -20.52 -2 -20.53 -2 -20.54 -2 -20.55 -2 -20.56 -2 -20.57 -2 -20.58 -2 -20.59 -2 -20.6 -2 -20.61 -2 -20.62 -2 -20.63 -2 -20.64 -2 -20.65 -2 -20.66 -2 -20.67 -2 -20.68 -2 -20.69 -2 -20.7 -2 -20.71 -2 -20.72 -2 -20.73 -2 -20.74 -2 -20.75 -2 -20.76 -2 -20.77 -2 -20.78 -2 -20.79 -2 -20.8 -2 -20.81 -2 -20.82 -2 -20.83 -2 -20.84 -2 -20.85 -2 -20.86 -2 -20.87 -2 -20.88 -2 -20.89 -2 -20.9 -2 -20.91 -2 -20.92 -2 -20.93 -2 -20.94 -2 -20.95 -2 -20.96 -2 -20.97 -2 -20.98 -2 -20.99 -2 -21 -2 -21.01 -2 -21.02 -2 -21.03 -2 -21.04 -2 -21.05 -2 -21.06 -2 -21.07 -2 -21.08 -2 -21.09 -2 -21.1 -2 -21.11 -2 -21.12 -2 -21.13 -2 -21.14 -2 -21.15 -2 -21.16 -2 -21.17 -2 -21.18 -2 -21.19 -2 -21.2 -2 -21.21 -2 -21.22 -2 -21.23 -2 -21.24 -2 -21.25 -2 -21.26 -2 -21.27 -2 -21.28 -2 -21.29 -2 -21.3 -2 -21.31 -2 -21.32 -2 -21.33 -2 -21.34 -2 -21.35 -2 -21.36 -2 -21.37 -2 -21.38 -2 -21.39 -2 -21.4 -2 -21.41 -2 -21.42 -2 -21.43 -2 -21.44 -2 -21.45 -2 -21.46 -2 -21.47 -2 -21.48 -2 -21.49 -2 -21.5 -2 -21.51 -2 -21.52 -2 -21.53 -2 -21.54 -2 -21.55 -2 -21.56 -2 -21.57 -2 -21.58 -2 -21.59 -2 -21.6 -2 -21.61 -2 -21.62 -2 -21.63 -2 -21.64 -2 -21.65 -2 -21.66 -2 -21.67 -2 -21.68 -2 -21.69 -2 -21.7 -2 -21.71 -2 -21.72 -2 -21.73 -2 -21.74 -2 -21.75 -2 -21.76 -2 -21.77 -2 -21.78 -2 -21.79 -2 -21.8 -2 -21.81 -2 -21.82 -2 -21.83 -2 -21.84 -2 -21.85 -2 -21.86 -2 -21.87 -2 -21.88 -2 -21.89 -2 -21.9 -2 -21.91 -2 -21.92 -2 -21.93 -2 -21.94 -2 -21.95 -2 -21.96 -2 -21.97 -2 -21.98 -2 -21.99 -2 -22 -2 -22.01 -2 -22.02 -2 -22.03 -2 -22.04 -2 -22.05 -2 -22.06 -2 -22.07 -2 -22.08 -2 -22.09 -2 -22.1 -2 -22.11 -2 -22.12 -2 -22.13 -2 -22.14 -2 -22.15 -2 -22.16 -2 -22.17 -2 -22.18 -2 -22.19 -2 -22.2 -2 -22.21 -2 -22.22 -2 -22.23 -2 -22.24 -2 -22.25 -2 -22.26 -2 -22.27 -2 -22.28 -2 -22.29 -2 -22.3 -2 -22.31 -2 -22.32 -2 -22.33 -2 -22.34 -2 -22.35 -2 -22.36 -2 -22.37 -2 -22.38 -2 -22.39 -2 -22.4 -2 -22.41 -2 -22.42 -2 -22.43 -2 -22.44 -2 -22.45 -2 -22.46 -2 -22.47 -2 -22.48 -2 -22.49 -2 -22.5 -2 -22.51 -2 -22.52 -2 -22.53 -2 -22.54 -2 -22.55 -2 -22.56 -2 -22.57 -2 -22.58 -2 -22.59 -2 -22.6 -2 -22.61 -2 -22.62 -2 -22.63 -2 -22.64 -2 -22.65 -2 -22.66 -2 -22.67 -2 -22.68 -2 -22.69 -2 -22.7 -2 -22.71 -2 -22.72 -2 -22.73 -2 -22.74 -2 -22.75 -2 -22.76 -2 -22.77 -2 -22.78 -2 -22.79 -2 -22.8 -2 -22.81 -2 -22.82 -2 -22.83 -2 -22.84 -2 -22.85 -2 -22.86 -2 -22.87 -2 -22.88 -2 -22.89 -2 -22.9 -2 -22.91 -2 -22.92 -2 -22.93 -2 -22.94 -2 -22.95 -2 -22.96 -2 -22.97 -2 -22.98 -2 -22.99 -2 -23 -2 -23.01 -2 -23.02 -2 -23.03 -2 -23.04 -2 -23.05 -2 -23.06 -2 -23.07 -2 -23.08 -2 -23.09 -2 -23.1 -2 -23.11 -2 -23.12 -2 -23.13 -2 -23.14 -2 -23.15 -2 -23.16 -2 -23.17 -2 -23.18 -2 -23.19 -2 -23.2 -2 -23.21 -2 -23.22 -2 -23.23 -2 -23.24 -2 -23.25 -2 -23.26 -2 -23.27 -2 -23.28 -2 -23.29 -2 -23.3 -2 -23.31 -2 -23.32 -2 -23.33 -2 -23.34 -2 -23.35 -2 -23.36 -2 -23.37 -2 -23.38 -2 -23.39 -2 -23.4 -2 -23.41 -2 -23.42 -2 -23.43 -2 -23.44 -2 -23.45 -2 -23.46 -2 -23.47 -2 -23.48 -2 -23.49 -2 -23.5 -2 -23.51 -2 -23.52 -2 -23.53 -2 -23.54 -2 -23.55 -2 -23.56 -2 -23.57 -2 -23.58 -2 -23.59 -2 -23.6 -2 -23.61 -2 -23.62 -2 -23.63 -2 -23.64 -2 -23.65 -2 -23.66 -2 -23.67 -2 -23.68 -2 -23.69 -2 -23.7 -2 -23.71 -2 -23.72 -2 -23.73 -2 -23.74 -2 -23.75 -2 -23.76 -2 -23.77 -2 -23.78 -2 -23.79 -2 -23.8 -2 -23.81 -2 -23.82 -2 -23.83 -2 -23.84 -2 -23.85 -2 -23.86 -2 -23.87 -2 -23.88 -2 -23.89 -2 -23.9 -2 -23.91 -2 -23.92 -2 -23.93 -2 -23.94 -2 -23.95 -2 -23.96 -2 -23.97 -2 -23.98 -2 -23.99 -2 -24 -2 -24.01 -2 -24.02 -2 -24.03 -2 -24.04 -2 -24.05 -2 -24.06 -2 -24.07 -2 -24.08 -2 -24.09 -2 -24.1 -2 -24.11 -2 -24.12 -2 -24.13 -2 -24.14 -2 -24.15 -2 -24.16 -2 -24.17 -2 -24.18 -2 -24.19 -2 -24.2 -2 -24.21 -2 -24.22 -2 -24.23 -2 -24.24 -2 -24.25 -2 -24.26 -2 -24.27 -2 -24.28 -2 -24.29 -2 -24.3 -2 -24.31 -2 -24.32 -2 -24.33 -2 -24.34 -2 -24.35 -2 -24.36 -2 -24.37 -2 -24.38 -2 -24.39 -2 -24.4 -2 -24.41 -2 -24.42 -2 -24.43 -2 -24.44 -2 -24.45 -2 -24.46 -2 -24.47 -2 -24.48 -2 -24.49 -2 -24.5 -2 -24.51 -2 -24.52 -2 -24.53 -2 -24.54 -2 -24.55 -2 -24.56 -2 -24.57 -2 -24.58 -2 -24.59 -2 -24.6 -2 -24.61 -2 -24.62 -2 -24.63 -2 -24.64 -2 -24.65 -2 -24.66 -2 -24.67 -2 -24.68 -2 -24.69 -2 -24.7 -2 -24.71 -2 -24.72 -2 -24.73 -2 -24.74 -2 -24.75 -2 -24.76 -2 -24.77 -2 -24.78 -2 -24.79 -2 -24.8 -2 -24.81 -2 -24.82 -2 -24.83 -2 -24.84 -2 -24.85 -2 -24.86 -2 -24.87 -2 -24.88 -2 -24.89 -2 -24.9 -2 -24.91 -2 -24.92 -2 -24.93 -2 -24.94 -2 -24.95 -2 -24.96 -2 -24.97 -2 -24.98 -2 -24.99 -2 -25 -2 -25.01 -2 -25.02 -2 -25.03 -2 -25.04 -2 -25.05 -2 -25.06 -2 -25.07 -2 -25.08 -2 -25.09 -2 -25.1 -2 -25.11 -2 -25.12 -2 -25.13 -2 -25.14 -2 -25.15 -2 -25.16 -2 -25.17 -2 -25.18 -2 -25.19 -2 -25.2 -2 -25.21 -2 -25.22 -2 -25.23 -2 -25.24 -2 -25.25 -2 -25.26 -2 -25.27 -2 -25.28 -2 -25.29 -2 -25.3 -2 -25.31 -2 -25.32 -2 -25.33 -2 -25.34 -2 -25.35 -2 -25.36 -2 -25.37 -2 -25.38 -2 -25.39 -2 -25.4 -2 -25.41 -2 -25.42 -2 -25.43 -2 -25.44 -2 -25.45 -2 -25.46 -2 -25.47 -2 -25.48 -2 -25.49 -2 -25.5 -2 -25.51 -2 -25.52 -2 -25.53 -2 -25.54 -2 -25.55 -2 -25.56 -2 -25.57 -2 -25.58 -2 -25.59 -2 -25.6 -2 -25.61 -2 -25.62 -2 -25.63 -2 -25.64 -2 -25.65 -2 -25.66 -2 -25.67 -2 -25.68 -2 -25.69 -2 -25.7 -2 -25.71 -2 -25.72 -2 -25.73 -2 -25.74 -2 -25.75 -2 -25.76 -2 -25.77 -2 -25.78 -2 -25.79 -2 -25.8 -2 -25.81 -2 -25.82 -2 -25.83 -2 -25.84 -2 -25.85 -2 -25.86 -2 -25.87 -2 -25.88 -2 -25.89 -2 -25.9 -2 -25.91 -2 -25.92 -2 -25.93 -2 -25.94 -2 -25.95 -2 -25.96 -2 -25.97 -2 -25.98 -2 -25.99 -2 -26 -2 -26.01 -2 -26.02 -2 -26.03 -2 -26.04 -2 -26.05 -2 -26.06 -2 -26.07 -2 -26.08 -2 -26.09 -2 -26.1 -2 -26.11 -2 -26.12 -2 -26.13 -2 -26.14 -2 -26.15 -2 -26.16 -2 -26.17 -2 -26.18 -2 -26.19 -2 -26.2 -2 -26.21 -2 -26.22 -2 -26.23 -2 -26.24 -2 -26.25 -2 -26.26 -2 -26.27 -2 -26.28 -2 -26.29 -2 -26.3 -2 -26.31 -2 -26.32 -2 -26.33 -2 -26.34 -2 -26.35 -2 -26.36 -2 -26.37 -2 -26.38 -2 -26.39 -2 -26.4 -2 -26.41 -2 -26.42 -2 -26.43 -2 -26.44 -2 -26.45 -2 -26.46 -2 -26.47 -2 -26.48 -2 -26.49 -2 -26.5 -2 -26.51 -2 -26.52 -2 -26.53 -2 -26.54 -2 -26.55 -2 -26.56 -2 -26.57 -2 -26.58 -2 -26.59 -2 -26.6 -2 -26.61 -2 -26.62 -2 -26.63 -2 -26.64 -2 -26.65 -2 -26.66 -2 -26.67 -2 -26.68 -2 -26.69 -2 -26.7 -2 -26.71 -2 -26.72 -2 -26.73 -2 -26.74 -2 -26.75 -2 -26.76 -2 -26.77 -2 -26.78 -2 -26.79 -2 -26.8 -2 -26.81 -2 -26.82 -2 -26.83 -2 -26.84 -2 -26.85 -2 -26.86 -2 -26.87 -2 -26.88 -2 -26.89 -2 -26.9 -2 -26.91 -2 -26.92 -2 -26.93 -2 -26.94 -2 -26.95 -2 -26.96 -2 -26.97 -2 -26.98 -2 -26.99 -2 -27 -2 -27.01 -2 -27.02 -2 -27.03 -2 -27.04 -2 -27.05 -2 -27.06 -2 -27.07 -2 -27.08 -2 -27.09 -2 -27.1 -2 -27.11 -2 -27.12 -2 -27.13 -2 -27.14 -2 -27.15 -2 -27.16 -2 -27.17 -2 -27.18 -2 -27.19 -2 -27.2 -2 -27.21 -2 -27.22 -2 -27.23 -2 -27.24 -2 -27.25 -2 -27.26 -2 -27.27 -2 -27.28 -2 -27.29 -2 -27.3 -2 -27.31 -2 -27.32 -2 -27.33 -2 -27.34 -2 -27.35 -2 -27.36 -2 -27.37 -2 -27.38 -2 -27.39 -2 -27.4 -2 -27.41 -2 -27.42 -2 -27.43 -2 -27.44 -2 -27.45 -2 -27.46 -2 -27.47 -2 -27.48 -2 -27.49 -2 -27.5 -2 -27.51 -2 -27.52 -2 -27.53 -2 -27.54 -2 -27.55 -2 -27.56 -2 -27.57 -2 -27.58 -2 -27.59 -2 -27.6 -2 -27.61 -2 -27.62 -2 -27.63 -2 -27.64 -2 -27.65 -2 -27.66 -2 -27.67 -2 -27.68 -2 -27.69 -2 -27.7 -2 -27.71 -2 -27.72 -2 -27.73 -2 -27.74 -2 -27.75 -2 -27.76 -2 -27.77 -2 -27.78 -2 -27.79 -2 -27.8 -2 -27.81 -2 -27.82 -2 -27.83 -2 -27.84 -2 -27.85 -2 -27.86 -2 -27.87 -2 -27.88 -2 -27.89 -2 -27.9 -2 -27.91 -2 -27.92 -2 -27.93 -2 -27.94 -2 -27.95 -2 -27.96 -2 -27.97 -2 -27.98 -2 -27.99 -2 -28 -2 -28.01 -2 -28.02 -2 -28.03 -2 -28.04 -2 -28.05 -2 -28.06 -2 -28.07 -2 -28.08 -2 -28.09 -2 -28.1 -2 -28.11 -2 -28.12 -2 -28.13 -2 -28.14 -2 -28.15 -2 -28.16 -2 -28.17 -2 -28.18 -2 -28.19 -2 -28.2 -2 -28.21 -2 -28.22 -2 -28.23 -2 -28.24 -2 -28.25 -2 -28.26 -2 -28.27 -2 -28.28 -2 -28.29 -2 -28.3 -2 -28.31 -2 -28.32 -2 -28.33 -2 -28.34 -2 -28.35 -2 -28.36 -2 -28.37 -2 -28.38 -2 -28.39 -2 -28.4 -2 -28.41 -2 -28.42 -2 -28.43 -2 -28.44 -2 -28.45 -2 -28.46 -2 -28.47 -2 -28.48 -2 -28.49 -2 -28.5 -2 -28.51 -2 -28.52 -2 -28.53 -2 -28.54 -2 -28.55 -2 -28.56 -2 -28.57 -2 -28.58 -2 -28.59 -2 -28.6 -2 -28.61 -2 -28.62 -2 -28.63 -2 -28.64 -2 -28.65 -2 -28.66 -2 -28.67 -2 -28.68 -2 -28.69 -2 -28.7 -2 -28.71 -2 -28.72 -2 -28.73 -2 -28.74 -2 -28.75 -2 -28.76 -2 -28.77 -2 -28.78 -2 -28.79 -2 -28.8 -2 -28.81 -2 -28.82 -2 -28.83 -2 -28.84 -2 -28.85 -2 -28.86 -2 -28.87 -2 -28.88 -2 -28.89 -2 -28.9 -2 -28.91 -2 -28.92 -2 -28.93 -2 -28.94 -2 -28.95 -2 -28.96 -2 -28.97 -2 -28.98 -2 -28.99 -2 -29 -2 -29.01 -2 -29.02 -2 -29.03 -2 -29.04 -2 -29.05 -2 -29.06 -2 -29.07 -2 -29.08 -2 -29.09 -2 -29.1 -2 -29.11 -2 -29.12 -2 -29.13 -2 -29.14 -2 -29.15 -2 -29.16 -2 -29.17 -2 -29.18 -2 -29.19 -2 -29.2 -2 -29.21 -2 -29.22 -2 -29.23 -2 -29.24 -2 -29.25 -2 -29.26 -2 -29.27 -2 -29.28 -2 -29.29 -2 -29.3 -2 -29.31 -2 -29.32 -2 -29.33 -2 -29.34 -2 -29.35 -2 -29.36 -2 -29.37 -2 -29.38 -2 -29.39 -2 -29.4 -2 -29.41 -2 -29.42 -2 -29.43 -2 -29.44 -2 -29.45 -2 -29.46 -2 -29.47 -2 -29.48 -2 -29.49 -2 -29.5 -2 -29.51 -2 -29.52 -2 -29.53 -2 -29.54 -2 -29.55 -2 -29.56 -2 -29.57 -2 -29.58 -2 -29.59 -2 -29.6 -2 -29.61 -2 -29.62 -2 -29.63 -2 -29.64 -2 -29.65 -2 -29.66 -2 -29.67 -2 -29.68 -2 -29.69 -2 -29.7 -2 -29.71 -2 -29.72 -2 -29.73 -2 -29.74 -2 -29.75 -2 -29.76 -2 -29.77 -2 -29.78 -2 -29.79 -2 -29.8 -2 -29.81 -2 -29.82 -2 -29.83 -2 -29.84 -2 -29.85 -2 -29.86 -2 -29.87 -2 -29.88 -2 -29.89 -2 -29.9 -2 -29.91 -2 -29.92 -2 -29.93 -2 -29.94 -2 -29.95 -2 -29.96 -2 -29.97 -2 -29.98 -2 -29.99 -2 -30 -2 -& -@target G3.S1 -@type xy -0 0 -0.01 -0.00163006 -0.02 -0.00314664 -0.03 -0.0044514 -0.04 -0.0054598 -0.05 -0.00610652 -0.06 -0.0063496 -0.07 -0.00617312 -0.08 -0.00558817 -0.09 -0.00463223 -0.1 -0.00336677 -0.11 -0.00187339 -0.12 -0.00024718 -0.13 0.00139186 -0.14 0.0029351 -0.15 0.00428218 -0.16 0.00534551 -0.17 0.00605582 -0.18 0.00636653 -0.19 0.00625684 -0.2 0.00573299 -0.21 0.00482799 -0.22 0.00359955 -0.23 0.0021201 -0.24 0.000498006 -0.25 -0.00115308 -0.26 -0.00272522 -0.27 -0.00411539 -0.28 -0.00523204 -0.29 -0.0060008 -0.3 -0.00636922 -0.31 -0.00631004 -0.32 -0.00582294 -0.33 -0.00493455 -0.34 -0.00368936 -0.35 -0.00216465 -0.36 -0.000471089 -0.37 0.00128688 -0.38 0.00300088 -0.39 0.00456524 -0.4 0.00588331 -0.41 0.00687308 -0.42 0.00747184 -0.43 0.00763941 -0.44 0.00735992 -0.45 0.00663733 -0.46 0.005486 -0.47 0.00398872 -0.48 0.00221461 -0.49 0.000241712 -0.5 -0.00184891 -0.51 -0.00397911 -0.52 -0.00607925 -0.53 -0.0080929 -0.54 -0.00998045 -0.55 -0.0117212 -0.56 -0.0133138 -0.57 -0.0147681 -0.58 -0.0161286 -0.59 -0.0174398 -0.6 -0.0187493 -0.61 -0.0201015 -0.62 -0.0215309 -0.63 -0.0230556 -0.64 -0.0246713 -0.65 -0.0263468 -0.66 -0.028021 -0.67 -0.0296022 -0.68 -0.0309494 -0.69 -0.0319079 -0.7 -0.032313 -0.71 -0.0319858 -0.72 -0.0307474 -0.73 -0.0284299 -0.74 -0.0248878 -0.75 -0.0200084 -0.76 -0.0137228 -0.77 -0.00601333 -0.78 0.00307943 -0.79 0.0134966 -0.8 0.0250478 -0.81 0.037452 -0.82 0.0504235 -0.83 0.0636352 -0.84 0.076731 -0.85 0.0893401 -0.86 0.101093 -0.87 0.111638 -0.88 0.120657 -0.89 0.12788 -0.9 0.13305 -0.91 0.135963 -0.92 0.136683 -0.93 0.135254 -0.94 0.131795 -0.95 0.126505 -0.96 0.119643 -0.97 0.111523 -0.98 0.102497 -0.99 0.0929355 -1 0.0832105 -1.01 0.073683 -1.02 0.064731 -1.03 0.0566024 -1.04 0.0494992 -1.05 0.0435525 -1.06 0.0388192 -1.07 0.0352821 -1.08 0.0328539 -1.09 0.0313858 -1.1 0.0306782 -1.11 0.0304955 -1.12 0.0305815 -1.13 0.0306597 -1.14 0.030467 -1.15 0.0297917 -1.16 0.0284652 -1.17 0.0263724 -1.18 0.0234569 -1.19 0.0197235 -1.2 0.0152354 -1.21 0.0101091 -1.22 0.00450444 -1.23 -0.00138742 -1.24 -0.00735146 -1.25 -0.0131584 -1.26 -0.0186161 -1.27 -0.023566 -1.28 -0.0278926 -1.29 -0.0315334 -1.3 -0.0344834 -1.31 -0.0367966 -1.32 -0.0385826 -1.33 -0.0400001 -1.34 -0.0412451 -1.35 -0.0425469 -1.36 -0.0441564 -1.37 -0.0462819 -1.38 -0.0491024 -1.39 -0.052748 -1.4 -0.0572872 -1.41 -0.0627163 -1.42 -0.0689542 -1.43 -0.0758418 -1.44 -0.0831468 -1.45 -0.0905735 -1.46 -0.0977667 -1.47 -0.104296 -1.48 -0.109798 -1.49 -0.113919 -1.5 -0.116354 -1.51 -0.116868 -1.52 -0.11532 -1.53 -0.111679 -1.54 -0.106033 -1.55 -0.0985954 -1.56 -0.0897008 -1.57 -0.0797968 -1.58 -0.0694419 -1.59 -0.0593322 -1.6 -0.05013 -1.61 -0.0424988 -1.62 -0.0370681 -1.63 -0.034396 -1.64 -0.0349358 -1.65 -0.039005 -1.66 -0.0467605 -1.67 -0.0581809 -1.68 -0.0730574 -1.69 -0.0911475 -1.7 -0.111667 -1.71 -0.133819 -1.72 -0.156729 -1.73 -0.179445 -1.74 -0.200978 -1.75 -0.220352 -1.76 -0.236654 -1.77 -0.249082 -1.78 -0.256988 -1.79 -0.259918 -1.8 -0.257405 -1.81 -0.249574 -1.82 -0.236892 -1.83 -0.219919 -1.84 -0.199432 -1.85 -0.176404 -1.86 -0.151958 -1.87 -0.127314 -1.88 -0.103737 -1.89 -0.082472 -1.9 -0.0646866 -1.91 -0.0515696 -1.92 -0.0441078 -1.93 -0.0426392 -1.94 -0.0474392 -1.95 -0.0584893 -1.96 -0.075473 -1.97 -0.0977865 -1.98 -0.124563 -1.99 -0.154712 -2 -0.186967 -2.01 -0.219944 -2.02 -0.252181 -2.03 -0.282042 -2.04 -0.308281 -2.05 -0.329758 -2.06 -0.345559 -2.07 -0.355035 -2.08 -0.357838 -2.09 -0.353939 -2.1 -0.34363 -2.11 -0.32751 -2.12 -0.306462 -2.13 -0.281605 -2.14 -0.254165 -2.15 -0.225849 -2.16 -0.198138 -2.17 -0.172469 -2.18 -0.150169 -2.19 -0.132393 -2.2 -0.120064 -2.21 -0.113828 -2.22 -0.114024 -2.23 -0.120665 -2.24 -0.133434 -2.25 -0.151967 -2.26 -0.175033 -2.27 -0.201345 -2.28 -0.229544 -2.29 -0.258169 -2.3 -0.285722 -2.31 -0.310741 -2.32 -0.331864 -2.33 -0.347896 -2.34 -0.357855 -2.35 -0.361021 -2.36 -0.356656 -2.37 -0.344687 -2.38 -0.325585 -2.39 -0.299842 -2.4 -0.26819 -2.41 -0.231559 -2.42 -0.19102 -2.43 -0.147728 -2.44 -0.102859 -2.45 -0.0575495 -2.46 -0.0128415 -2.47 0.0303157 -2.48 0.0711116 -2.49 0.109181 -2.5 0.14431 -2.51 0.176516 -2.52 0.206033 -2.53 0.233282 -2.54 0.258836 -2.55 0.283369 -2.56 0.307609 -2.57 0.332277 -2.58 0.358049 -2.59 0.385605 -2.6 0.415224 -2.61 0.447063 -2.62 0.481058 -2.63 0.516913 -2.64 0.554107 -2.65 0.591907 -2.66 0.6294 -2.67 0.665534 -2.68 0.699165 -2.69 0.729114 -2.7 0.753821 -2.71 0.77245 -2.72 0.784138 -2.73 0.788187 -2.74 0.784138 -2.75 0.771797 -2.76 0.75125 -2.77 0.72287 -2.78 0.687297 -2.79 0.645419 -2.8 0.598333 -2.81 0.547168 -2.82 0.493534 -2.83 0.43894 -2.84 0.384775 -2.85 0.332346 -2.86 0.28282 -2.87 0.237174 -2.88 0.196167 -2.89 0.160304 -2.9 0.129829 -2.91 0.104723 -2.92 0.0848813 -2.93 0.0697485 -2.94 0.0584037 -2.95 0.0499883 -2.96 0.0435559 -2.97 0.0381262 -2.98 0.032737 -2.99 0.0264951 -3 0.0186212 -3.01 0.00848747 -3.02 -0.00435354 -3.03 -0.0202116 -3.04 -0.0392207 -3.05 -0.0610193 -3.06 -0.0852295 -3.07 -0.111318 -3.08 -0.138631 -3.09 -0.166432 -3.1 -0.193944 -3.11 -0.220398 -3.12 -0.245068 -3.13 -0.267315 -3.14 -0.286602 -3.15 -0.302311 -3.16 -0.31447 -3.17 -0.323063 -3.18 -0.328236 -3.19 -0.330289 -3.2 -0.329651 -3.21 -0.326854 -3.22 -0.322502 -3.23 -0.317237 -3.24 -0.311699 -3.25 -0.306494 -3.26 -0.302243 -3.27 -0.299365 -3.28 -0.298149 -3.29 -0.298765 -3.3 -0.301242 -3.31 -0.305476 -3.32 -0.311239 -3.33 -0.318195 -3.34 -0.325921 -3.35 -0.333939 -3.36 -0.341736 -3.37 -0.348743 -3.38 -0.35445 -3.39 -0.358462 -3.4 -0.360439 -3.41 -0.360136 -3.42 -0.357409 -3.43 -0.352217 -3.44 -0.344618 -3.45 -0.334759 -3.46 -0.322858 -3.47 -0.309188 -3.48 -0.294011 -3.49 -0.277648 -3.5 -0.26044 -3.51 -0.242619 -3.52 -0.224351 -3.53 -0.205722 -3.54 -0.18673 -3.55 -0.167283 -3.56 -0.147198 -3.57 -0.126218 -3.58 -0.10402 -3.59 -0.0802034 -3.6 -0.0542593 -3.61 -0.0259048 -3.62 0.00520484 -3.63 0.0393535 -3.64 0.0767417 -3.65 0.117468 -3.66 0.161514 -3.67 0.208738 -3.68 0.258868 -3.69 0.311509 -3.7 0.366153 -3.71 0.422241 -3.72 0.478925 -3.73 0.535451 -3.74 0.591038 -3.75 0.644908 -3.76 0.696311 -3.77 0.744547 -3.78 0.78899 -3.79 0.829105 -3.8 0.864459 -3.81 0.89473 -3.82 0.919389 -3.83 0.938563 -3.84 0.95236 -3.85 0.960882 -3.86 0.964303 -3.87 0.962849 -3.88 0.956779 -3.89 0.946369 -3.9 0.931895 -3.91 0.913618 -3.92 0.891776 -3.93 0.866439 -3.94 0.837829 -3.95 0.806188 -3.96 0.771628 -3.97 0.734242 -3.98 0.694123 -3.99 0.65137 -4 0.606108 -4.01 0.558497 -4.02 0.508745 -4.03 0.457119 -4.04 0.403915 -4.05 0.349547 -4.06 0.294553 -4.07 0.239453 -4.08 0.184808 -4.09 0.131202 -4.1 0.0792293 -4.11 0.0294679 -4.12 -0.0175368 -4.13 -0.0612949 -4.14 -0.101391 -4.15 -0.137457 -4.16 -0.169037 -4.17 -0.196313 -4.18 -0.219323 -4.19 -0.238219 -4.2 -0.253266 -4.21 -0.264822 -4.22 -0.273326 -4.23 -0.279274 -4.24 -0.283199 -4.25 -0.285643 -4.26 -0.287137 -4.27 -0.288167 -4.28 -0.289214 -4.29 -0.290613 -4.3 -0.292601 -4.31 -0.295311 -4.32 -0.298767 -4.33 -0.30289 -4.34 -0.307506 -4.35 -0.312353 -4.36 -0.317106 -4.37 -0.321389 -4.38 -0.324736 -4.39 -0.326743 -4.4 -0.327058 -4.41 -0.325359 -4.42 -0.32139 -4.43 -0.314978 -4.44 -0.306036 -4.45 -0.294579 -4.46 -0.280715 -4.47 -0.264645 -4.48 -0.246651 -4.49 -0.227043 -4.5 -0.206272 -4.51 -0.184834 -4.52 -0.163176 -4.53 -0.141732 -4.54 -0.120903 -4.55 -0.101039 -4.56 -0.0824265 -4.57 -0.0652796 -4.58 -0.0497315 -4.59 -0.0358344 -4.6 -0.0235973 -4.61 -0.0129578 -4.62 -0.00366583 -4.63 0.00448234 -4.64 0.0117136 -4.65 0.0182601 -4.66 0.0243406 -4.67 0.0301444 -4.68 0.0358159 -4.69 0.0414428 -4.7 0.0470479 -4.71 0.0525834 -4.72 0.0579074 -4.73 0.062833 -4.74 0.0671146 -4.75 0.0704661 -4.76 0.0725772 -4.77 0.0731307 -4.78 0.0718218 -4.79 0.0683763 -4.8 0.0625685 -4.81 0.0542368 -4.82 0.0432964 -4.83 0.0295821 -4.84 0.0133501 -4.85 -0.00517487 -4.86 -0.0257094 -4.87 -0.0478956 -4.88 -0.0713147 -4.89 -0.095504 -4.9 -0.119976 -4.91 -0.144241 -4.92 -0.167824 -4.93 -0.19029 -4.94 -0.21117 -4.95 -0.230174 -4.96 -0.247139 -4.97 -0.261959 -4.98 -0.274624 -4.99 -0.28522 -5 -0.293921 -5.01 -0.300979 -5.02 -0.30671 -5.03 -0.311473 -5.04 -0.315651 -5.05 -0.319635 -5.06 -0.323827 -5.07 -0.328547 -5.08 -0.334047 -5.09 -0.340503 -5.1 -0.347997 -5.11 -0.35652 -5.12 -0.365963 -5.13 -0.376123 -5.14 -0.386713 -5.15 -0.39737 -5.16 -0.407657 -5.17 -0.417042 -5.18 -0.425073 -5.19 -0.431285 -5.2 -0.435249 -5.21 -0.436593 -5.22 -0.435016 -5.23 -0.430313 -5.24 -0.422377 -5.25 -0.411216 -5.26 -0.396949 -5.27 -0.379803 -5.28 -0.359964 -5.29 -0.338085 -5.3 -0.314685 -5.31 -0.290333 -5.32 -0.265631 -5.33 -0.24119 -5.34 -0.217604 -5.35 -0.195432 -5.36 -0.175173 -5.37 -0.157254 -5.38 -0.14201 -5.39 -0.129866 -5.4 -0.120814 -5.41 -0.114817 -5.42 -0.111781 -5.43 -0.111519 -5.44 -0.113766 -5.45 -0.118193 -5.46 -0.124428 -5.47 -0.13207 -5.48 -0.140712 -5.49 -0.14996 -5.5 -0.159446 -5.51 -0.16882 -5.52 -0.177827 -5.53 -0.186283 -5.54 -0.194073 -5.55 -0.201155 -5.56 -0.207551 -5.57 -0.213339 -5.58 -0.218645 -5.59 -0.223627 -5.6 -0.228461 -5.61 -0.233328 -5.62 -0.238405 -5.63 -0.243812 -5.64 -0.249622 -5.65 -0.255849 -5.66 -0.262443 -5.67 -0.269283 -5.68 -0.276178 -5.69 -0.282871 -5.7 -0.289047 -5.71 -0.294343 -5.72 -0.298338 -5.73 -0.300497 -5.74 -0.300489 -5.75 -0.297922 -5.76 -0.292442 -5.77 -0.283751 -5.78 -0.27162 -5.79 -0.255898 -5.8 -0.236526 -5.81 -0.213533 -5.82 -0.187042 -5.83 -0.157266 -5.84 -0.124305 -5.85 -0.0887644 -5.86 -0.0510801 -5.87 -0.0117167 -5.88 0.0288421 -5.89 0.0701108 -5.9 0.111619 -5.91 0.152929 -5.92 0.193644 -5.93 0.233428 -5.94 0.272002 -5.95 0.309071 -5.96 0.344542 -5.97 0.378375 -5.98 0.410559 -5.99 0.441128 -6 0.470148 -6.01 0.497701 -6.02 0.523876 -6.03 0.548747 -6.04 0.572369 -6.05 0.594755 -6.06 0.615824 -6.07 0.635488 -6.08 0.653648 -6.09 0.670109 -6.1 0.684632 -6.11 0.696939 -6.12 0.706729 -6.13 0.713694 -6.14 0.717529 -6.15 0.717956 -6.16 0.714737 -6.17 0.707595 -6.18 0.696315 -6.19 0.681089 -6.2 0.662004 -6.21 0.639249 -6.22 0.613108 -6.23 0.58396 -6.24 0.552269 -6.25 0.518574 -6.26 0.483467 -6.27 0.447585 -6.28 0.411584 -6.29 0.376202 -6.3 0.342063 -6.31 0.309747 -6.32 0.279766 -6.33 0.25256 -6.34 0.228477 -6.35 0.207774 -6.36 0.190606 -6.37 0.177037 -6.38 0.167039 -6.39 0.160502 -6.4 0.157455 -6.41 0.157449 -6.42 0.160185 -6.43 0.165373 -6.44 0.172725 -6.45 0.181965 -6.46 0.192848 -6.47 0.205166 -6.48 0.218755 -6.49 0.2335 -6.5 0.249332 -6.51 0.266281 -6.52 0.284331 -6.53 0.303491 -6.54 0.323805 -6.55 0.345308 -6.56 0.368013 -6.57 0.391898 -6.58 0.416888 -6.59 0.44285 -6.6 0.469579 -6.61 0.4968 -6.62 0.524151 -6.63 0.551163 -6.64 0.577337 -6.65 0.602134 -6.66 0.624985 -6.67 0.645303 -6.68 0.662514 -6.69 0.676067 -6.7 0.685464 -6.71 0.69027 -6.72 0.690139 -6.73 0.684721 -6.74 0.673684 -6.75 0.657329 -6.76 0.63578 -6.77 0.60928 -6.78 0.578182 -6.79 0.542931 -6.8 0.504057 -6.81 0.462149 -6.82 0.417836 -6.83 0.371769 -6.84 0.324593 -6.85 0.276943 -6.86 0.229459 -6.87 0.182645 -6.88 0.136927 -6.89 0.0926464 -6.9 0.0500517 -6.91 0.00930097 -6.92 -0.0295364 -6.93 -0.0664719 -6.94 -0.101588 -6.95 -0.135026 -6.96 -0.166886 -6.97 -0.197475 -6.98 -0.22703 -6.99 -0.255764 -7 -0.283867 -7.01 -0.311494 -7.02 -0.338758 -7.03 -0.365722 -7.04 -0.392398 -7.05 -0.418746 -7.06 -0.444675 -7.07 -0.470019 -7.08 -0.494605 -7.09 -0.518255 -7.1 -0.540765 -7.11 -0.561933 -7.12 -0.581571 -7.13 -0.599513 -7.14 -0.615625 -7.15 -0.629813 -7.16 -0.642029 -7.17 -0.652269 -7.18 -0.66052 -7.19 -0.666859 -7.2 -0.671505 -7.21 -0.674624 -7.22 -0.676406 -7.23 -0.677051 -7.24 -0.676768 -7.25 -0.675758 -7.26 -0.674207 -7.27 -0.672283 -7.28 -0.670123 -7.29 -0.667832 -7.3 -0.665481 -7.31 -0.663104 -7.32 -0.660693 -7.33 -0.658208 -7.34 -0.655583 -7.35 -0.65273 -7.36 -0.649544 -7.37 -0.645912 -7.38 -0.64172 -7.39 -0.636857 -7.4 -0.631222 -7.41 -0.624658 -7.42 -0.617159 -7.43 -0.608681 -7.44 -0.599204 -7.45 -0.588727 -7.46 -0.577271 -7.47 -0.564874 -7.48 -0.551589 -7.49 -0.537485 -7.5 -0.522635 -7.51 -0.507122 -7.52 -0.491 -7.53 -0.474385 -7.54 -0.457369 -7.55 -0.440031 -7.56 -0.422447 -7.57 -0.40469 -7.58 -0.386829 -7.59 -0.368933 -7.6 -0.351069 -7.61 -0.333304 -7.62 -0.315709 -7.63 -0.29837 -7.64 -0.281368 -7.65 -0.264772 -7.66 -0.248662 -7.67 -0.233118 -7.68 -0.218219 -7.69 -0.204038 -7.7 -0.190641 -7.71 -0.178086 -7.72 -0.166417 -7.73 -0.155663 -7.74 -0.14586 -7.75 -0.13702 -7.76 -0.129067 -7.77 -0.12195 -7.78 -0.1156 -7.79 -0.109932 -7.8 -0.104846 -7.81 -0.100228 -7.82 -0.0959576 -7.83 -0.0919098 -7.84 -0.0879575 -7.85 -0.0839745 -7.86 -0.0798243 -7.87 -0.0754008 -7.88 -0.0706054 -7.89 -0.0653512 -7.9 -0.0595635 -7.91 -0.0531793 -7.92 -0.0461469 -7.93 -0.0384243 -7.94 -0.0299776 -7.95 -0.0207795 -7.96 -0.0108074 -7.97 1.4324e-05 -7.98 0.011652 -7.99 0.0241148 -8 0.0374133 -8.01 0.051554 -8.02 0.066537 -8.03 0.0823533 -8.04 0.0989818 -8.05 0.116386 -8.06 0.134509 -8.07 0.153275 -8.08 0.1726 -8.09 0.192323 -8.1 0.212269 -8.11 0.232246 -8.12 0.252039 -8.13 0.271411 -8.14 0.290107 -8.15 0.307862 -8.16 0.324412 -8.17 0.339495 -8.18 0.352866 -8.19 0.364223 -8.2 0.373363 -8.21 0.380224 -8.22 0.384718 -8.23 0.386815 -8.24 0.386544 -8.25 0.383992 -8.26 0.379308 -8.27 0.372694 -8.28 0.364404 -8.29 0.354736 -8.3 0.344005 -8.31 0.332574 -8.32 0.320862 -8.33 0.309229 -8.34 0.298017 -8.35 0.287542 -8.36 0.278082 -8.37 0.269868 -8.38 0.263078 -8.39 0.257834 -8.4 0.254199 -8.41 0.252187 -8.42 0.251838 -8.43 0.252931 -8.44 0.255316 -8.45 0.258809 -8.46 0.263206 -8.47 0.26829 -8.48 0.273841 -8.49 0.279646 -8.5 0.285509 -8.51 0.291255 -8.52 0.296735 -8.53 0.301804 -8.54 0.306396 -8.55 0.310466 -8.56 0.313995 -8.57 0.316986 -8.58 0.319459 -8.59 0.321447 -8.6 0.322984 -8.61 0.324104 -8.62 0.32483 -8.63 0.325173 -8.64 0.325104 -8.65 0.324598 -8.66 0.323613 -8.67 0.322076 -8.68 0.319898 -8.69 0.316979 -8.7 0.313213 -8.71 0.308498 -8.72 0.302737 -8.73 0.295853 -8.74 0.287789 -8.75 0.27848 -8.76 0.26793 -8.77 0.256243 -8.78 0.243514 -8.79 0.229877 -8.8 0.215503 -8.81 0.200591 -8.82 0.185371 -8.83 0.170087 -8.84 0.154993 -8.85 0.140342 -8.86 0.126393 -8.87 0.113426 -8.88 0.101587 -8.89 0.0910259 -8.9 0.0818508 -8.91 0.0741216 -8.92 0.0678485 -8.93 0.0629928 -8.94 0.0594682 -8.95 0.0571451 -8.96 0.0558558 -8.97 0.0554028 -8.98 0.0555921 -8.99 0.0561267 -9 0.0567672 -9.01 0.0572795 -9.02 0.0574434 -9.03 0.0570594 -9.04 0.0559545 -9.05 0.0539866 -9.06 0.0510472 -9.07 0.0470627 -9.08 0.0419941 -9.09 0.0357703 -9.1 0.0284698 -9.11 0.0201625 -9.12 0.0109218 -9.13 0.000835564 -9.14 -0.00999868 -9.15 -0.021479 -9.16 -0.0335036 -9.17 -0.0459744 -9.18 -0.0588001 -9.19 -0.0718986 -9.2 -0.0852037 -9.21 -0.0986458 -9.22 -0.112169 -9.23 -0.12573 -9.24 -0.139293 -9.25 -0.152826 -9.26 -0.166299 -9.27 -0.179679 -9.28 -0.192936 -9.29 -0.20603 -9.3 -0.218921 -9.31 -0.231552 -9.32 -0.243861 -9.33 -0.255804 -9.34 -0.26732 -9.35 -0.278349 -9.36 -0.288833 -9.37 -0.298715 -9.38 -0.307944 -9.39 -0.316476 -9.4 -0.324274 -9.41 -0.331312 -9.42 -0.337563 -9.43 -0.342979 -9.44 -0.347613 -9.45 -0.351475 -9.46 -0.354583 -9.47 -0.356958 -9.48 -0.358626 -9.49 -0.35961 -9.5 -0.359935 -9.51 -0.359622 -9.52 -0.358688 -9.53 -0.357146 -9.54 -0.354959 -9.55 -0.352171 -9.56 -0.34878 -9.57 -0.344781 -9.58 -0.340165 -9.59 -0.334923 -9.6 -0.329049 -9.61 -0.322538 -9.62 -0.315391 -9.63 -0.307611 -9.64 -0.299212 -9.65 -0.29018 -9.66 -0.280563 -9.67 -0.270405 -9.68 -0.259743 -9.69 -0.248616 -9.7 -0.237067 -9.71 -0.225136 -9.72 -0.212862 -9.73 -0.200281 -9.74 -0.187423 -9.75 -0.174311 -9.76 -0.160954 -9.77 -0.14736 -9.78 -0.133537 -9.79 -0.119478 -9.8 -0.105169 -9.81 -0.0905918 -9.82 -0.075724 -9.83 -0.0605421 -9.84 -0.0450219 -9.85 -0.0291406 -9.86 -0.012877 -9.87 0.00379658 -9.88 0.0209077 -9.89 0.0384463 -9.9 0.0564207 -9.91 0.0748373 -9.92 0.0937015 -9.93 0.113019 -9.94 0.132799 -9.95 0.153049 -9.96 0.173783 -9.97 0.195018 -9.98 0.216777 -9.99 0.239114 -10 0.262015 -10.01 0.285496 -10.02 0.309568 -10.03 0.33423 -10.04 0.359467 -10.05 0.385244 -10.06 0.411504 -10.07 0.438161 -10.08 0.4651 -10.09 0.492172 -10.1 0.519175 -10.11 0.545873 -10.12 0.57201 -10.13 0.597299 -10.14 0.621428 -10.15 0.644066 -10.16 0.664869 -10.17 0.683493 -10.18 0.699594 -10.19 0.712845 -10.2 0.722943 -10.21 0.729427 -10.22 0.732143 -10.23 0.731 -10.24 0.725877 -10.25 0.71671 -10.26 0.703494 -10.27 0.686281 -10.28 0.66518 -10.29 0.640351 -10.3 0.612003 -10.31 0.580382 -10.32 0.545673 -10.33 0.508197 -10.34 0.468392 -10.35 0.426582 -10.36 0.383085 -10.37 0.338208 -10.38 0.292245 -10.39 0.245466 -10.4 0.198118 -10.41 0.150424 -10.42 0.102581 -10.43 0.0547676 -10.44 0.00715589 -10.45 -0.040122 -10.46 -0.0869436 -10.47 -0.133193 -10.48 -0.178758 -10.49 -0.223524 -10.5 -0.267373 -10.51 -0.310181 -10.52 -0.351816 -10.53 -0.392137 -10.54 -0.430994 -10.55 -0.468114 -10.56 -0.503455 -10.57 -0.536871 -10.58 -0.568227 -10.59 -0.5974 -10.6 -0.624289 -10.61 -0.648813 -10.62 -0.670918 -10.63 -0.690579 -10.64 -0.7078 -10.65 -0.722615 -10.66 -0.734945 -10.67 -0.745006 -10.68 -0.752942 -10.69 -0.758884 -10.7 -0.762971 -10.71 -0.765352 -10.72 -0.766171 -10.73 -0.765566 -10.74 -0.763666 -10.75 -0.760582 -10.76 -0.756407 -10.77 -0.751169 -10.78 -0.744938 -10.79 -0.737772 -10.8 -0.729678 -10.81 -0.720648 -10.82 -0.710665 -10.83 -0.699702 -10.84 -0.687732 -10.85 -0.674729 -10.86 -0.660673 -10.87 -0.645557 -10.88 -0.629353 -10.89 -0.612067 -10.9 -0.593786 -10.91 -0.574562 -10.92 -0.554461 -10.93 -0.533559 -10.94 -0.511939 -10.95 -0.489688 -10.96 -0.466891 -10.97 -0.44363 -10.98 -0.419973 -10.99 -0.395978 -11 -0.371677 -11.01 -0.347115 -11.02 -0.322303 -11.03 -0.297235 -11.04 -0.271892 -11.05 -0.246249 -11.06 -0.220273 -11.07 -0.193932 -11.08 -0.167199 -11.09 -0.140055 -11.1 -0.112495 -11.11 -0.0845068 -11.12 -0.0561584 -11.13 -0.027512 -11.14 0.00134747 -11.15 0.0303133 -11.16 0.0592592 -11.17 0.0880424 -11.18 0.116509 -11.19 0.144499 -11.2 0.171853 -11.21 0.198415 -11.22 0.223982 -11.23 0.248458 -11.24 0.271759 -11.25 0.293813 -11.26 0.314572 -11.27 0.334019 -11.28 0.352159 -11.29 0.369027 -11.3 0.384673 -11.31 0.399166 -11.32 0.412585 -11.33 0.424975 -11.34 0.436435 -11.35 0.447071 -11.36 0.456945 -11.37 0.466102 -11.38 0.474568 -11.39 0.482351 -11.4 0.48944 -11.41 0.495806 -11.42 0.501405 -11.43 0.506184 -11.44 0.51006 -11.45 0.512948 -11.46 0.514839 -11.47 0.515695 -11.48 0.515491 -11.49 0.514223 -11.5 0.511907 -11.51 0.508581 -11.52 0.504302 -11.53 0.499145 -11.54 0.493201 -11.55 0.48656 -11.56 0.479298 -11.57 0.471551 -11.58 0.463403 -11.59 0.454914 -11.6 0.446124 -11.61 0.437042 -11.62 0.427649 -11.63 0.417895 -11.64 0.407699 -11.65 0.396955 -11.66 0.385536 -11.67 0.373236 -11.68 0.359953 -11.69 0.345553 -11.7 0.329915 -11.71 0.312947 -11.72 0.29459 -11.73 0.274829 -11.74 0.253699 -11.75 0.231286 -11.76 0.207733 -11.77 0.183235 -11.78 0.158011 -11.79 0.132398 -11.8 0.106733 -11.81 0.0813574 -11.82 0.0566192 -11.83 0.0328585 -11.84 0.0103954 -11.85 -0.0104835 -11.86 -0.0295358 -11.87 -0.0465733 -11.88 -0.061469 -11.89 -0.0740796 -11.9 -0.0844157 -11.91 -0.0926447 -11.92 -0.098907 -11.93 -0.103393 -11.94 -0.106333 -11.95 -0.107983 -11.96 -0.108611 -11.97 -0.108486 -11.98 -0.107859 -11.99 -0.106956 -12 -0.105963 -12.01 -0.105027 -12.02 -0.104224 -12.03 -0.103569 -12.04 -0.103023 -12.05 -0.102491 -12.06 -0.101835 -12.07 -0.100884 -12.08 -0.0994386 -12.09 -0.0972924 -12.1 -0.0942401 -12.11 -0.0900864 -12.12 -0.0845802 -12.13 -0.0776902 -12.14 -0.0693571 -12.15 -0.0595779 -12.16 -0.0484085 -12.17 -0.0359627 -12.18 -0.0224085 -12.19 -0.00796127 -12.2 0.00712637 -12.21 0.0225757 -12.22 0.0380951 -12.23 0.053362 -12.24 0.0680959 -12.25 0.0820604 -12.26 0.0950592 -12.27 0.106947 -12.28 0.117639 -12.29 0.127107 -12.3 0.135388 -12.31 0.142574 -12.32 0.148812 -12.33 0.154287 -12.34 0.159205 -12.35 0.163834 -12.36 0.168429 -12.37 0.173216 -12.38 0.178391 -12.39 0.184118 -12.4 0.190506 -12.41 0.197614 -12.42 0.205438 -12.43 0.213916 -12.44 0.222925 -12.45 0.232296 -12.46 0.241785 -12.47 0.251118 -12.48 0.260019 -12.49 0.268204 -12.5 0.275398 -12.51 0.281349 -12.52 0.285836 -12.53 0.288684 -12.54 0.289769 -12.55 0.289022 -12.56 0.286404 -12.57 0.281899 -12.58 0.275726 -12.59 0.268043 -12.6 0.259045 -12.61 0.248949 -12.62 0.237987 -12.63 0.226389 -12.64 0.214375 -12.65 0.202139 -12.66 0.189843 -12.67 0.177608 -12.68 0.165519 -12.69 0.153586 -12.7 0.141775 -12.71 0.130004 -12.72 0.118156 -12.73 0.106077 -12.74 0.0935946 -12.75 0.0805212 -12.76 0.06667 -12.77 0.0518634 -12.78 0.0359441 -12.79 0.0187036 -12.8 0.000103478 -12.81 -0.0198776 -12.82 -0.0412351 -12.83 -0.0639187 -12.84 -0.0878345 -12.85 -0.112849 -12.86 -0.138795 -12.87 -0.165478 -12.88 -0.192688 -12.89 -0.220202 -12.9 -0.247792 -12.91 -0.275223 -12.92 -0.302296 -12.93 -0.328838 -12.94 -0.354701 -12.95 -0.379764 -12.96 -0.403936 -12.97 -0.427154 -12.98 -0.449379 -12.99 -0.470594 -13 -0.490798 -13.01 -0.509971 -13.02 -0.528109 -13.03 -0.545272 -13.04 -0.561463 -13.05 -0.576675 -13.06 -0.590889 -13.07 -0.604068 -13.08 -0.61616 -13.09 -0.627101 -13.1 -0.636812 -13.11 -0.645208 -13.12 -0.652183 -13.13 -0.657564 -13.14 -0.661362 -13.15 -0.663512 -13.16 -0.663964 -13.17 -0.662689 -13.18 -0.659684 -13.19 -0.654967 -13.2 -0.648587 -13.21 -0.640614 -13.22 -0.631142 -13.23 -0.620286 -13.24 -0.608096 -13.25 -0.594811 -13.26 -0.580587 -13.27 -0.565575 -13.28 -0.549928 -13.29 -0.533787 -13.3 -0.517287 -13.31 -0.500551 -13.32 -0.483689 -13.33 -0.466795 -13.34 -0.449953 -13.35 -0.433242 -13.36 -0.41672 -13.37 -0.400434 -13.38 -0.384423 -13.39 -0.368724 -13.4 -0.353369 -13.41 -0.338388 -13.42 -0.323807 -13.43 -0.30965 -13.44 -0.295936 -13.45 -0.28268 -13.46 -0.269906 -13.47 -0.257606 -13.48 -0.245743 -13.49 -0.234282 -13.5 -0.223166 -13.51 -0.212323 -13.52 -0.201659 -13.53 -0.191059 -13.54 -0.180394 -13.55 -0.169516 -13.56 -0.158265 -13.57 -0.146461 -13.58 -0.133898 -13.59 -0.120446 -13.6 -0.105953 -13.61 -0.0902876 -13.62 -0.07334 -13.63 -0.0550287 -13.64 -0.0353036 -13.65 -0.0141482 -13.66 0.00841948 -13.67 0.0323473 -13.68 0.0575597 -13.69 0.0840044 -13.7 0.111455 -13.71 0.139755 -13.72 0.168737 -13.73 0.198231 -13.74 0.228069 -13.75 0.258091 -13.76 0.28815 -13.77 0.318115 -13.78 0.347874 -13.79 0.377335 -13.8 0.406392 -13.81 0.435005 -13.82 0.463127 -13.83 0.490715 -13.84 0.517723 -13.85 0.544095 -13.86 0.569763 -13.87 0.594638 -13.88 0.618603 -13.89 0.641518 -13.9 0.663209 -13.91 0.683391 -13.92 0.701852 -13.93 0.718376 -13.94 0.732698 -13.95 0.744549 -13.96 0.753667 -13.97 0.759806 -13.98 0.762745 -13.99 0.762304 -14 0.758349 -14.01 0.750801 -14.02 0.739517 -14.03 0.724537 -14.04 0.706135 -14.05 0.684503 -14.06 0.659889 -14.07 0.632597 -14.08 0.602969 -14.09 0.571378 -14.1 0.538216 -14.11 0.503876 -14.12 0.468744 -14.13 0.43318 -14.14 0.397535 -14.15 0.362105 -14.16 0.327114 -14.17 0.292729 -14.18 0.259059 -14.19 0.226161 -14.2 0.194038 -14.21 0.162655 -14.22 0.13194 -14.23 0.101802 -14.24 0.0721388 -14.25 0.0428723 -14.26 0.0138887 -14.27 -0.0148634 -14.28 -0.0433981 -14.29 -0.0716855 -14.3 -0.0996482 -14.31 -0.127159 -14.32 -0.154045 -14.33 -0.180088 -14.34 -0.205036 -14.35 -0.22861 -14.36 -0.250394 -14.37 -0.27015 -14.38 -0.287615 -14.39 -0.302532 -14.4 -0.314677 -14.41 -0.323872 -14.42 -0.329993 -14.43 -0.332972 -14.44 -0.332804 -14.45 -0.329542 -14.46 -0.323296 -14.47 -0.314108 -14.48 -0.302254 -14.49 -0.288061 -14.5 -0.271793 -14.51 -0.253726 -14.52 -0.234132 -14.53 -0.213271 -14.54 -0.191383 -14.55 -0.168682 -14.56 -0.145345 -14.57 -0.121515 -14.58 -0.0972923 -14.59 -0.0727474 -14.6 -0.0479358 -14.61 -0.0228731 -14.62 0.00244032 -14.63 0.0280105 -14.64 0.0538422 -14.65 0.07993 -14.66 0.106252 -14.67 0.132763 -14.68 0.15939 -14.69 0.186031 -14.7 0.212534 -14.71 0.238734 -14.72 0.264444 -14.73 0.289459 -14.74 0.313563 -14.75 0.336539 -14.76 0.358173 -14.77 0.378268 -14.78 0.396645 -14.79 0.413154 -14.8 0.427675 -14.81 0.439965 -14.82 0.450126 -14.83 0.458152 -14.84 0.464064 -14.85 0.467906 -14.86 0.469744 -14.87 0.469653 -14.88 0.467713 -14.89 0.464 -14.9 0.458579 -14.91 0.451501 -14.92 0.442699 -14.93 0.432243 -14.94 0.420138 -14.95 0.40634 -14.96 0.39079 -14.97 0.373413 -14.98 0.354134 -14.99 0.33288 -15 0.309592 -15.01 0.284232 -15.02 0.256792 -15.03 0.227221 -15.04 0.195619 -15.05 0.162186 -15.06 0.1271 -15.07 0.0905823 -15.08 0.0529009 -15.09 0.0143571 -15.1 -0.0247195 -15.11 -0.0639822 -15.12 -0.103078 -15.13 -0.141658 -15.14 -0.179363 -15.15 -0.215836 -15.16 -0.250865 -15.17 -0.284241 -15.18 -0.315808 -15.19 -0.345465 -15.2 -0.373166 -15.21 -0.398916 -15.22 -0.42277 -15.23 -0.444819 -15.24 -0.465188 -15.25 -0.484007 -15.26 -0.50136 -15.27 -0.517493 -15.28 -0.532538 -15.29 -0.546596 -15.3 -0.55974 -15.31 -0.572002 -15.32 -0.583372 -15.33 -0.593801 -15.34 -0.6032 -15.35 -0.611446 -15.36 -0.618389 -15.37 -0.623749 -15.38 -0.627429 -15.39 -0.62927 -15.4 -0.629121 -15.41 -0.626855 -15.42 -0.622384 -15.43 -0.615661 -15.44 -0.606686 -15.45 -0.59551 -15.46 -0.582234 -15.47 -0.567006 -15.48 -0.549934 -15.49 -0.531319 -15.5 -0.511454 -15.51 -0.490604 -15.52 -0.469036 -15.53 -0.447008 -15.54 -0.424758 -15.55 -0.402496 -15.56 -0.380396 -15.57 -0.35859 -15.58 -0.337166 -15.59 -0.316184 -15.6 -0.29564 -15.61 -0.275475 -15.62 -0.255611 -15.63 -0.23595 -15.64 -0.21638 -15.65 -0.196785 -15.66 -0.177053 -15.67 -0.157086 -15.68 -0.136807 -15.69 -0.11617 -15.7 -0.095149 -15.71 -0.0737562 -15.72 -0.0520715 -15.73 -0.0301868 -15.74 -0.00822149 -15.75 0.0136824 -15.76 0.0353678 -15.77 0.0566697 -15.78 0.0774233 -15.79 0.0974717 -15.8 0.116672 -15.81 0.134899 -15.82 0.151978 -15.83 0.167918 -15.84 0.182685 -15.85 0.196274 -15.86 0.208705 -15.87 0.220021 -15.88 0.23028 -15.89 0.239552 -15.9 0.247911 -15.91 0.255429 -15.92 0.262174 -15.93 0.268157 -15.94 0.273455 -15.95 0.278097 -15.96 0.282083 -15.97 0.2854 -15.98 0.288019 -15.99 0.289901 -16 0.291001 -16.01 0.291276 -16.02 0.290684 -16.03 0.289195 -16.04 0.286749 -16.05 0.283368 -16.06 0.279101 -16.07 0.273994 -16.08 0.268111 -16.09 0.261532 -16.1 0.254353 -16.11 0.246675 -16.12 0.238603 -16.13 0.230238 -16.14 0.221673 -16.15 0.212982 -16.16 0.204225 -16.17 0.195439 -16.18 0.186627 -16.19 0.177771 -16.2 0.168827 -16.21 0.159734 -16.22 0.150418 -16.23 0.140797 -16.24 0.130788 -16.25 0.120317 -16.26 0.109318 -16.27 0.0977294 -16.28 0.0855838 -16.29 0.0729155 -16.3 0.0597955 -16.31 0.0463314 -16.32 0.0326648 -16.33 0.018967 -16.34 0.00543241 -16.35 -0.00773025 -16.36 -0.0203074 -16.37 -0.0320913 -16.38 -0.042804 -16.39 -0.0523506 -16.4 -0.0606124 -16.41 -0.0675165 -16.42 -0.0730407 -16.43 -0.0772157 -16.44 -0.0801247 -16.45 -0.0818994 -16.46 -0.0827141 -16.47 -0.0827762 -16.48 -0.0823151 -16.49 -0.0815667 -16.5 -0.0807937 -16.51 -0.080209 -16.52 -0.0799857 -16.53 -0.08025 -16.54 -0.0810714 -16.55 -0.0824567 -16.56 -0.0843463 -16.57 -0.0866153 -16.58 -0.0890774 -16.59 -0.0914926 -16.6 -0.0935506 -16.61 -0.0949124 -16.62 -0.0952677 -16.63 -0.0943048 -16.64 -0.0917401 -16.65 -0.0873353 -16.66 -0.0809134 -16.67 -0.072372 -16.68 -0.0616926 -16.69 -0.0489475 -16.7 -0.0343011 -16.71 -0.0179722 -16.72 -0.00031035 -16.73 0.0181861 -16.74 0.0370443 -16.75 0.0557572 -16.76 0.0738041 -16.77 0.0906715 -16.78 0.105874 -16.79 0.118976 -16.8 0.129605 -16.81 0.137471 -16.82 0.142339 -16.83 0.143946 -16.84 0.1425 -16.85 0.138113 -16.86 0.130984 -16.87 0.121385 -16.88 0.109647 -16.89 0.096142 -16.9 0.0812613 -16.91 0.0653983 -16.92 0.0489281 -16.93 0.0321902 -16.94 0.0154919 -16.95 -0.000934485 -16.96 -0.0169447 -16.97 -0.0324661 -16.98 -0.0474953 -16.99 -0.0620906 -17 -0.0763618 -17.01 -0.090456 -17.02 -0.104541 -17.03 -0.118789 -17.04 -0.133357 -17.05 -0.148398 -17.06 -0.163974 -17.07 -0.180078 -17.08 -0.196644 -17.09 -0.213527 -17.1 -0.23051 -17.11 -0.247304 -17.12 -0.263559 -17.13 -0.278879 -17.14 -0.292833 -17.15 -0.304981 -17.16 -0.314784 -17.17 -0.321803 -17.18 -0.325776 -17.19 -0.326424 -17.2 -0.323554 -17.21 -0.317066 -17.22 -0.306961 -17.23 -0.293339 -17.24 -0.276401 -17.25 -0.256435 -17.26 -0.233806 -17.27 -0.208903 -17.28 -0.182188 -17.29 -0.154267 -17.3 -0.125628 -17.31 -0.0967304 -17.32 -0.0679916 -17.33 -0.0397668 -17.34 -0.0123375 -17.35 0.0140965 -17.36 0.0394213 -17.37 0.0636081 -17.38 0.0867012 -17.39 0.108775 -17.4 0.130091 -17.41 0.150867 -17.42 0.171342 -17.43 0.191748 -17.44 0.212299 -17.45 0.233164 -17.46 0.254461 -17.47 0.276238 -17.48 0.298471 -17.49 0.321055 -17.5 0.343801 -17.51 0.366419 -17.52 0.388578 -17.53 0.409907 -17.54 0.430004 -17.55 0.448458 -17.56 0.464868 -17.57 0.478861 -17.58 0.490112 -17.59 0.498359 -17.6 0.503416 -17.61 0.505015 -17.62 0.503235 -17.63 0.498255 -17.64 0.490255 -17.65 0.479489 -17.66 0.466274 -17.67 0.450975 -17.68 0.433984 -17.69 0.415705 -17.7 0.396536 -17.71 0.376846 -17.72 0.35697 -17.73 0.337205 -17.74 0.317756 -17.75 0.298751 -17.76 0.280245 -17.77 0.262226 -17.78 0.244622 -17.79 0.227306 -17.8 0.210117 -17.81 0.192869 -17.82 0.17537 -17.83 0.157424 -17.84 0.138839 -17.85 0.119529 -17.86 0.0994338 -17.87 0.0785537 -17.88 0.0569512 -17.89 0.0347531 -17.9 0.0121463 -17.91 -0.0106287 -17.92 -0.033288 -17.93 -0.0555161 -17.94 -0.0769782 -17.95 -0.0972364 -17.96 -0.116034 -17.97 -0.133086 -17.98 -0.148151 -17.99 -0.161042 -18 -0.171635 -18.01 -0.179869 -18.02 -0.185752 -18.03 -0.189356 -18.04 -0.190812 -18.05 -0.190301 -18.06 -0.187951 -18.07 -0.184115 -18.08 -0.179078 -18.09 -0.1731 -18.1 -0.166424 -18.11 -0.159266 -18.12 -0.151807 -18.13 -0.144185 -18.14 -0.13649 -18.15 -0.128768 -18.16 -0.121016 -18.17 -0.113186 -18.18 -0.105193 -18.19 -0.0969371 -18.2 -0.088305 -18.21 -0.0791834 -18.22 -0.0694707 -18.23 -0.0590869 -18.24 -0.0479831 -18.25 -0.036148 -18.26 -0.0236125 -18.27 -0.0104526 -18.28 0.00322193 -18.29 0.0172363 -18.3 0.0313659 -18.31 0.0453827 -18.32 0.0590429 -18.33 0.0720968 -18.34 0.0842998 -18.35 0.0954229 -18.36 0.105262 -18.37 0.113646 -18.38 0.120443 -18.39 0.125542 -18.4 0.128817 -18.41 0.130379 -18.42 0.13028 -18.43 0.128601 -18.44 0.125452 -18.45 0.120959 -18.46 0.115258 -18.47 0.108482 -18.48 0.100755 -18.49 0.0921838 -18.5 0.0828486 -18.51 0.072751 -18.52 0.0619584 -18.53 0.050455 -18.54 0.0381944 -18.55 0.0251063 -18.56 0.0111029 -18.57 -0.00391297 -18.58 -0.0200387 -18.59 -0.0373628 -18.6 -0.0559555 -18.61 -0.0758601 -18.62 -0.0971597 -18.63 -0.119765 -18.64 -0.143568 -18.65 -0.168441 -18.66 -0.194212 -18.67 -0.220671 -18.68 -0.247574 -18.69 -0.274649 -18.7 -0.301611 -18.71 -0.328165 -18.72 -0.354022 -18.73 -0.378856 -18.74 -0.402398 -18.75 -0.424473 -18.76 -0.444908 -18.77 -0.463578 -18.78 -0.480401 -18.79 -0.495346 -18.8 -0.508423 -18.81 -0.51968 -18.82 -0.5292 -18.83 -0.53709 -18.84 -0.543439 -18.85 -0.548351 -18.86 -0.552025 -18.87 -0.55457 -18.88 -0.556074 -18.89 -0.556597 -18.9 -0.556168 -18.91 -0.55478 -18.92 -0.552395 -18.93 -0.548943 -18.94 -0.544326 -18.95 -0.538414 -18.96 -0.530982 -18.97 -0.521979 -18.98 -0.511275 -18.99 -0.498752 -19 -0.484316 -19.01 -0.467904 -19.02 -0.449488 -19.03 -0.42908 -19.04 -0.406734 -19.05 -0.382546 -19.06 -0.356655 -19.07 -0.329144 -19.08 -0.300333 -19.09 -0.270469 -19.1 -0.239803 -19.11 -0.208594 -19.12 -0.177101 -19.13 -0.145572 -19.14 -0.11424 -19.15 -0.0833156 -19.16 -0.0529813 -19.17 -0.0233893 -19.18 0.00529046 -19.19 0.0329909 -19.2 0.0596804 -19.21 0.0853328 -19.22 0.109944 -19.23 0.133525 -19.24 0.156097 -19.25 0.177685 -19.26 0.198313 -19.27 0.217996 -19.28 0.236736 -19.29 0.254487 -19.3 0.27121 -19.31 0.286891 -19.32 0.30146 -19.33 0.314832 -19.34 0.326911 -19.35 0.337591 -19.36 0.346765 -19.37 0.354329 -19.38 0.360186 -19.39 0.364253 -19.4 0.366429 -19.41 0.366603 -19.42 0.364869 -19.43 0.361246 -19.44 0.355783 -19.45 0.348558 -19.46 0.339676 -19.47 0.329269 -19.48 0.31749 -19.49 0.30451 -19.5 0.290512 -19.51 0.275689 -19.52 0.260211 -19.53 0.244331 -19.54 0.228242 -19.55 0.212123 -19.56 0.196147 -19.57 0.18047 -19.58 0.165234 -19.59 0.150565 -19.6 0.136576 -19.61 0.123361 -19.62 0.111006 -19.63 0.0996443 -19.64 0.0892923 -19.65 0.07999 -19.66 0.0717814 -19.67 0.064705 -19.68 0.0587946 -19.69 0.0540798 -19.7 0.0505863 -19.71 0.0483357 -19.72 0.0473448 -19.73 0.047625 -19.74 0.0492418 -19.75 0.0521664 -19.76 0.0563498 -19.77 0.0617695 -19.78 0.0683922 -19.79 0.0761738 -19.8 0.0850593 -19.81 0.0949829 -19.82 0.105869 -19.83 0.117631 -19.84 0.130176 -19.85 0.14342 -19.86 0.157254 -19.87 0.171537 -19.88 0.186155 -19.89 0.200993 -19.9 0.215935 -19.91 0.230869 -19.92 0.24568 -19.93 0.260258 -19.94 0.274493 -19.95 0.288277 -19.96 0.301492 -19.97 0.313994 -19.98 0.325713 -19.99 0.336543 -20 0.346382 -20.01 0.355125 -20.02 0.362669 -20.03 0.368916 -20.04 0.373767 -20.05 0.377132 -20.06 0.378926 -20.07 0.379072 -20.08 0.377374 -20.09 0.373909 -20.1 0.368646 -20.11 0.361574 -20.12 0.352701 -20.13 0.342058 -20.14 0.329699 -20.15 0.315701 -20.16 0.300164 -20.17 0.283208 -20.18 0.264976 -20.19 0.245572 -20.2 0.225234 -20.21 0.204167 -20.22 0.182567 -20.23 0.160631 -20.24 0.138556 -20.25 0.116534 -20.26 0.0947464 -20.27 0.0733648 -20.28 0.0525435 -20.29 0.0324195 -20.3 0.0131494 -20.31 -0.00517183 -20.32 -0.0225006 -20.33 -0.0387874 -20.34 -0.0540031 -20.35 -0.0681371 -20.36 -0.0811954 -20.37 -0.0931986 -20.38 -0.104179 -20.39 -0.114177 -20.4 -0.12324 -20.41 -0.131397 -20.42 -0.138685 -20.43 -0.145197 -20.44 -0.150978 -20.45 -0.156069 -20.46 -0.160506 -20.47 -0.164317 -20.48 -0.167524 -20.49 -0.170145 -20.5 -0.172192 -20.51 -0.173673 -20.52 -0.174591 -20.53 -0.174923 -20.54 -0.174714 -20.55 -0.173977 -20.56 -0.172731 -20.57 -0.171 -20.58 -0.168818 -20.59 -0.166226 -20.6 -0.163274 -20.61 -0.160022 -20.62 -0.156536 -20.63 -0.152892 -20.64 -0.149167 -20.65 -0.145455 -20.66 -0.141841 -20.67 -0.138404 -20.68 -0.135221 -20.69 -0.132359 -20.7 -0.129877 -20.71 -0.127817 -20.72 -0.12621 -20.73 -0.125068 -20.74 -0.124387 -20.75 -0.124164 -20.76 -0.12434 -20.77 -0.124843 -20.78 -0.125601 -20.79 -0.126528 -20.8 -0.127529 -20.81 -0.128508 -20.82 -0.129366 -20.83 -0.130012 -20.84 -0.130363 -20.85 -0.130349 -20.86 -0.129901 -20.87 -0.128989 -20.88 -0.127628 -20.89 -0.125843 -20.9 -0.123684 -20.91 -0.121229 -20.92 -0.118577 -20.93 -0.115849 -20.94 -0.113182 -20.95 -0.110724 -20.96 -0.108627 -20.97 -0.107056 -20.98 -0.106186 -20.99 -0.10611 -21 -0.106928 -21.01 -0.108707 -21.02 -0.111482 -21.03 -0.11525 -21.04 -0.119967 -21.05 -0.125549 -21.06 -0.131871 -21.07 -0.138771 -21.08 -0.146058 -21.09 -0.153501 -21.1 -0.160834 -21.11 -0.167804 -21.12 -0.174161 -21.13 -0.179661 -21.14 -0.184078 -21.15 -0.187216 -21.16 -0.188907 -21.17 -0.189028 -21.18 -0.187496 -21.19 -0.184277 -21.2 -0.179279 -21.21 -0.172665 -21.22 -0.164561 -21.23 -0.155115 -21.24 -0.144503 -21.25 -0.132924 -21.26 -0.120589 -21.27 -0.107713 -21.28 -0.0945053 -21.29 -0.0811629 -21.3 -0.0678603 -21.31 -0.0547603 -21.32 -0.0419808 -21.33 -0.029591 -21.34 -0.0176304 -21.35 -0.00610604 -21.36 0.0050041 -21.37 0.0157452 -21.38 0.0261785 -21.39 0.0363736 -21.4 0.0463997 -21.41 0.0563166 -21.42 0.0661652 -21.43 0.0759609 -21.44 0.0856855 -21.45 0.0952817 -21.46 0.104654 -21.47 0.113668 -21.48 0.122154 -21.49 0.129911 -21.5 0.136715 -21.51 0.142324 -21.52 0.146491 -21.53 0.148942 -21.54 0.149354 -21.55 0.147636 -21.56 0.143635 -21.57 0.137248 -21.58 0.128425 -21.59 0.11718 -21.6 0.103586 -21.61 0.0877812 -21.62 0.0699621 -21.63 0.0503801 -21.64 0.0293318 -21.65 0.00709907 -21.66 -0.0158471 -21.67 -0.0391295 -21.68 -0.0623721 -21.69 -0.0852122 -21.7 -0.107312 -21.71 -0.128368 -21.72 -0.14812 -21.73 -0.166358 -21.74 -0.182923 -21.75 -0.197711 -21.76 -0.210559 -21.77 -0.221557 -21.78 -0.230778 -21.79 -0.238304 -21.8 -0.24424 -21.81 -0.248707 -21.82 -0.251826 -21.83 -0.253715 -21.84 -0.254477 -21.85 -0.254191 -21.86 -0.252909 -21.87 -0.250605 -21.88 -0.247277 -21.89 -0.242901 -21.9 -0.237399 -21.91 -0.23067 -21.92 -0.222598 -21.93 -0.213061 -21.94 -0.20194 -21.95 -0.189132 -21.96 -0.174556 -21.97 -0.158161 -21.98 -0.139886 -21.99 -0.119744 -22 -0.0979152 -22.01 -0.0745473 -22.02 -0.0498366 -22.03 -0.0240263 -22.04 0.00259957 -22.05 0.029724 -22.06 0.057006 -22.07 0.0840911 -22.08 0.110622 -22.09 0.136234 -22.1 0.160513 -22.11 0.183224 -22.12 0.204117 -22.13 0.222988 -22.14 0.239683 -22.15 0.254105 -22.16 0.26621 -22.17 0.276008 -22.18 0.283559 -22.19 0.288967 -22.2 0.292374 -22.21 0.293829 -22.22 0.293669 -22.23 0.292101 -22.24 0.289334 -22.25 0.285565 -22.26 0.280983 -22.27 0.275754 -22.28 0.270025 -22.29 0.263915 -22.3 0.257517 -22.31 0.2509 -22.32 0.2441 -22.33 0.237147 -22.34 0.230048 -22.35 0.222796 -22.36 0.21538 -22.37 0.207786 -22.38 0.200006 -22.39 0.192038 -22.4 0.183891 -22.41 0.175589 -22.42 0.167168 -22.43 0.158683 -22.44 0.150207 -22.45 0.141825 -22.46 0.133626 -22.47 0.125707 -22.48 0.118166 -22.49 0.111099 -22.5 0.104599 -22.51 0.0987472 -22.52 0.0936157 -22.53 0.0892606 -22.54 0.0857422 -22.55 0.0831058 -22.56 0.0813097 -22.57 0.0803363 -22.58 0.0801506 -22.59 0.0807019 -22.6 0.0819249 -22.61 0.083742 -22.62 0.0860655 -22.63 0.0887991 -22.64 0.0918403 -22.65 0.0950831 -22.66 0.098414 -22.67 0.101709 -22.68 0.104858 -22.69 0.107751 -22.7 0.11028 -22.71 0.11234 -22.72 0.11383 -22.73 0.114654 -22.74 0.114719 -22.75 0.11394 -22.76 0.112242 -22.77 0.109485 -22.78 0.105669 -22.79 0.100758 -22.8 0.094725 -22.81 0.0875569 -22.82 0.0792574 -22.83 0.0698478 -22.84 0.0593673 -22.85 0.0478729 -22.86 0.0354384 -22.87 0.022154 -22.88 0.00809095 -22.89 -0.00660229 -22.9 -0.0217821 -22.91 -0.0373174 -22.92 -0.0530754 -22.93 -0.0689251 -22.94 -0.0847404 -22.95 -0.100403 -22.96 -0.115807 -22.97 -0.130856 -22.98 -0.14547 -22.99 -0.159562 -23 -0.173074 -23.01 -0.185988 -23.02 -0.198279 -23.03 -0.209928 -23.04 -0.220924 -23.05 -0.231255 -23.06 -0.24091 -23.07 -0.249875 -23.08 -0.258127 -23.09 -0.265637 -23.1 -0.272348 -23.11 -0.278172 -23.12 -0.283091 -23.13 -0.287033 -23.14 -0.289918 -23.15 -0.291664 -23.16 -0.292189 -23.17 -0.291414 -23.18 -0.289269 -23.19 -0.285694 -23.2 -0.280648 -23.21 -0.274102 -23.22 -0.265952 -23.23 -0.256332 -23.24 -0.245293 -23.25 -0.232907 -23.26 -0.21927 -23.27 -0.204493 -23.28 -0.188704 -23.29 -0.172043 -23.3 -0.154653 -23.31 -0.136681 -23.32 -0.118266 -23.33 -0.0995322 -23.34 -0.0806224 -23.35 -0.0616432 -23.36 -0.0426796 -23.37 -0.0237991 -23.38 -0.00505137 -23.39 0.0135291 -23.4 0.0319205 -23.41 0.0501101 -23.42 0.0680896 -23.43 0.0858504 -23.44 0.103367 -23.45 0.120616 -23.46 0.137564 -23.47 0.154153 -23.48 0.170304 -23.49 0.18592 -23.5 0.200884 -23.51 0.21506 -23.52 0.228302 -23.53 0.240451 -23.54 0.251349 -23.55 0.26079 -23.56 0.268595 -23.57 0.274704 -23.58 0.279019 -23.59 0.281474 -23.6 0.282037 -23.61 0.280718 -23.62 0.277565 -23.63 0.272668 -23.64 0.266156 -23.65 0.258192 -23.66 0.248954 -23.67 0.238631 -23.68 0.227531 -23.69 0.215892 -23.7 0.203951 -23.71 0.191929 -23.72 0.18003 -23.73 0.168429 -23.74 0.157273 -23.75 0.14667 -23.76 0.136691 -23.77 0.127369 -23.78 0.118749 -23.79 0.110741 -23.8 0.103278 -23.81 0.0962729 -23.82 0.0896272 -23.83 0.0832376 -23.84 0.0770036 -23.85 0.0708346 -23.86 0.0646564 -23.87 0.0584156 -23.88 0.0520836 -23.89 0.0456543 -23.9 0.0391607 -23.91 0.0326576 -23.92 0.0262179 -23.93 0.0199295 -23.94 0.0138885 -23.95 0.00819223 -23.96 0.00293198 -23.97 -0.00181432 -23.98 -0.00598887 -23.99 -0.00955967 -24 -0.0125007 -24.01 -0.0148561 -24.02 -0.0167182 -24.03 -0.0181923 -24.04 -0.0194129 -24.05 -0.0205396 -24.06 -0.0217498 -24.07 -0.0232315 -24.08 -0.0251749 -24.09 -0.0277635 -24.1 -0.0311651 -24.11 -0.0355525 -24.12 -0.0410702 -24.13 -0.0477385 -24.14 -0.0555831 -24.15 -0.0645861 -24.16 -0.0746854 -24.17 -0.085777 -24.18 -0.0977193 -24.19 -0.110338 -24.2 -0.123435 -24.21 -0.136792 -24.22 -0.150185 -24.23 -0.163361 -24.24 -0.176108 -24.25 -0.188234 -24.26 -0.199574 -24.27 -0.209991 -24.28 -0.219385 -24.29 -0.22769 -24.3 -0.234876 -24.31 -0.240948 -24.32 -0.245938 -24.33 -0.249905 -24.34 -0.252866 -24.35 -0.254977 -24.36 -0.256336 -24.37 -0.257034 -24.38 -0.257148 -24.39 -0.256743 -24.4 -0.255863 -24.41 -0.254531 -24.42 -0.252748 -24.43 -0.25049 -24.44 -0.247716 -24.45 -0.244332 -24.46 -0.24028 -24.47 -0.235496 -24.48 -0.229904 -24.49 -0.22344 -24.5 -0.21605 -24.51 -0.2077 -24.52 -0.198381 -24.53 -0.18811 -24.54 -0.176933 -24.55 -0.164923 -24.56 -0.152161 -24.57 -0.138787 -24.58 -0.124981 -24.59 -0.110905 -24.6 -0.0967337 -24.61 -0.0826401 -24.62 -0.068794 -24.63 -0.0553537 -24.64 -0.042461 -24.65 -0.0302367 -24.66 -0.0187768 -24.67 -0.00816981 -24.68 0.00151323 -24.69 0.0103079 -24.7 0.0182287 -24.71 0.0253111 -24.72 0.0316074 -24.73 0.0371814 -24.74 0.0421037 -24.75 0.0464463 -24.76 0.0502776 -24.77 0.0536587 -24.78 0.0566369 -24.79 0.0592268 -24.8 0.0614741 -24.81 0.0633824 -24.82 0.064942 -24.83 0.0661323 -24.84 0.066925 -24.85 0.0672882 -24.86 0.0671908 -24.87 0.0666063 -24.88 0.0655177 -24.89 0.0639203 -24.9 0.0617948 -24.91 0.0592019 -24.92 0.0561977 -24.93 0.0528507 -24.94 0.0492457 -24.95 0.0454808 -24.96 0.0416635 -24.97 0.0379063 -24.98 0.0343219 -24.99 0.031018 -25 0.0280925 -25.01 0.0256548 -25.02 0.0237629 -25.03 0.0224437 -25.04 0.0217133 -25.05 0.0215642 -25.06 0.0219662 -25.07 0.0228689 -25.08 0.0242047 -25.09 0.0258931 -25.1 0.0278454 -25.11 0.0299699 -25.12 0.0321775 -25.13 0.0343791 -25.14 0.036505 -25.15 0.0385045 -25.16 0.0403458 -25.17 0.0420168 -25.18 0.0435252 -25.19 0.0448963 -25.2 0.0461711 -25.21 0.0474017 -25.22 0.048647 -25.23 0.0499694 -25.24 0.0514344 -25.25 0.0530806 -25.26 0.054935 -25.27 0.0570046 -25.28 0.059273 -25.29 0.0616985 -25.3 0.0642142 -25.31 0.0667287 -25.32 0.0691293 -25.33 0.0712859 -25.34 0.0730562 -25.35 0.0742428 -25.36 0.0747319 -25.37 0.0743909 -25.38 0.0731058 -25.39 0.0707879 -25.4 0.06738 -25.41 0.0628611 -25.42 0.0572495 -25.43 0.0506045 -25.44 0.0430259 -25.45 0.0346523 -25.46 0.0256317 -25.47 0.0162143 -25.48 0.0066371 -25.49 -0.00285929 -25.5 -0.0120306 -25.51 -0.0206376 -25.52 -0.0284547 -25.53 -0.0352777 -25.54 -0.0409313 -25.55 -0.0452741 -25.56 -0.0482027 -25.57 -0.0495876 -25.58 -0.0494289 -25.59 -0.0477973 -25.6 -0.0447525 -25.61 -0.040384 -25.62 -0.0348051 -25.63 -0.0281458 -25.64 -0.020545 -25.65 -0.0121433 -25.66 -0.00307515 -25.67 0.00653699 -25.68 0.0165988 -25.69 0.0270286 -25.7 0.0377533 -25.71 0.0487448 -25.72 0.0599991 -25.73 0.0715331 -25.74 0.0833804 -25.75 0.0955855 -25.76 0.108197 -25.77 0.121263 -25.78 0.134819 -25.79 0.148892 -25.8 0.163503 -25.81 0.178584 -25.82 0.194064 -25.83 0.209841 -25.84 0.225774 -25.85 0.241691 -25.86 0.25739 -25.87 0.272642 -25.88 0.2872 -25.89 0.300805 -25.9 0.313195 -25.91 0.32399 -25.92 0.333033 -25.93 0.340117 -25.94 0.345061 -25.95 0.347721 -25.96 0.347998 -25.97 0.345841 -25.98 0.341247 -25.99 0.334262 -26 0.324977 -26.01 0.31353 -26.02 0.299995 -26.03 0.28467 -26.04 0.267831 -26.05 0.249727 -26.06 0.230615 -26.07 0.210753 -26.08 0.190388 -26.09 0.169755 -26.1 0.149067 -26.11 0.128515 -26.12 0.10826 -26.13 0.0884569 -26.14 0.0692168 -26.15 0.0505947 -26.16 0.0326372 -26.17 0.0153695 -26.18 -0.00120023 -26.19 -0.0170766 -26.2 -0.032272 -26.21 -0.046802 -26.22 -0.0606816 -26.23 -0.073921 -26.24 -0.0865077 -26.25 -0.0984159 -26.26 -0.10966 -26.27 -0.12021 -26.28 -0.13003 -26.29 -0.139074 -26.3 -0.147294 -26.31 -0.154639 -26.32 -0.161063 -26.33 -0.166526 -26.34 -0.170995 -26.35 -0.174447 -26.36 -0.17682 -26.37 -0.178203 -26.38 -0.178637 -26.39 -0.178183 -26.4 -0.176921 -26.41 -0.174948 -26.42 -0.172379 -26.43 -0.16934 -26.44 -0.165968 -26.45 -0.162403 -26.46 -0.15879 -26.47 -0.155284 -26.48 -0.15202 -26.49 -0.149118 -26.5 -0.146684 -26.51 -0.144806 -26.52 -0.143554 -26.53 -0.142976 -26.54 -0.143102 -26.55 -0.143942 -26.56 -0.145485 -26.57 -0.147705 -26.58 -0.15059 -26.59 -0.154062 -26.6 -0.15804 -26.61 -0.162452 -26.62 -0.167221 -26.63 -0.172272 -26.64 -0.177527 -26.65 -0.182912 -26.66 -0.188359 -26.67 -0.193802 -26.68 -0.19918 -26.69 -0.204432 -26.7 -0.209501 -26.71 -0.214345 -26.72 -0.21892 -26.73 -0.223182 -26.74 -0.227087 -26.75 -0.23059 -26.76 -0.233646 -26.77 -0.236206 -26.78 -0.238219 -26.79 -0.239633 -26.8 -0.24038 -26.81 -0.240375 -26.82 -0.239602 -26.83 -0.238013 -26.84 -0.235564 -26.85 -0.232219 -26.86 -0.22795 -26.87 -0.222741 -26.88 -0.216589 -26.89 -0.209504 -26.9 -0.201511 -26.91 -0.192647 -26.92 -0.182916 -26.93 -0.17245 -26.94 -0.161334 -26.95 -0.149659 -26.96 -0.137528 -26.97 -0.125047 -26.98 -0.112326 -26.99 -0.0994729 -27 -0.0865953 -27.01 -0.0737934 -27.02 -0.0611597 -27.03 -0.0487974 -27.04 -0.0367691 -27.05 -0.0251277 -27.06 -0.0139167 -27.07 -0.0031668 -27.08 0.00710326 -27.09 0.0168853 -27.1 0.0261803 -27.11 0.0349965 -27.12 0.0433473 -27.13 0.0512493 -27.14 0.0587011 -27.15 0.0657288 -27.16 0.0723592 -27.17 0.0786032 -27.18 0.0844677 -27.19 0.0899554 -27.2 0.0950651 -27.21 0.0997926 -27.22 0.104132 -27.23 0.108077 -27.24 0.111621 -27.25 0.114752 -27.26 0.117465 -27.27 0.119789 -27.28 0.121741 -27.29 0.123346 -27.3 0.124639 -27.31 0.12566 -27.32 0.126457 -27.33 0.127085 -27.34 0.1276 -27.35 0.12806 -27.36 0.128522 -27.37 0.129042 -27.38 0.129663 -27.39 0.130414 -27.4 0.131311 -27.41 0.132357 -27.42 0.133536 -27.43 0.134814 -27.44 0.136144 -27.45 0.137459 -27.46 0.138681 -27.47 0.13972 -27.48 0.140449 -27.49 0.140781 -27.5 0.140617 -27.51 0.139862 -27.52 0.138433 -27.53 0.136261 -27.54 0.133294 -27.55 0.129503 -27.56 0.124881 -27.57 0.119444 -27.58 0.113233 -27.59 0.106278 -27.6 0.0987003 -27.61 0.0906202 -27.62 0.0821574 -27.63 0.0734408 -27.64 0.0646037 -27.65 0.0557781 -27.66 0.0470905 -27.67 0.0386569 -27.68 0.0305791 -27.69 0.0229417 -27.7 0.0158324 -27.71 0.00929269 -27.72 0.00332415 -27.73 -0.00207426 -27.74 -0.00692101 -27.75 -0.0112489 -27.76 -0.0151014 -27.77 -0.0185281 -27.78 -0.0215807 -27.79 -0.0243081 -27.8 -0.0267527 -27.81 -0.0289401 -27.82 -0.0308838 -27.83 -0.0325962 -27.84 -0.0340613 -27.85 -0.0352475 -27.86 -0.0361094 -27.87 -0.03659 -27.88 -0.036625 -27.89 -0.0361464 -27.9 -0.0350877 -27.91 -0.0333891 -27.92 -0.0309946 -27.93 -0.0278305 -27.94 -0.0239341 -27.95 -0.0193208 -27.96 -0.0140315 -27.97 -0.00813249 -27.98 -0.00171528 -27.99 0.0051061 -28 0.0121984 -28.01 0.0194134 -28.02 0.0265939 -28.03 0.0335792 -28.04 0.0401768 -28.05 0.0462527 -28.06 0.0516808 -28.07 0.0563549 -28.08 0.0601955 -28.09 0.0631523 -28.1 0.0652061 -28.11 0.0663689 -28.12 0.0666826 -28.13 0.0662161 -28.14 0.0650614 -28.15 0.063304 -28.16 0.0610949 -28.17 0.0585736 -28.18 0.0558642 -28.19 0.0530815 -28.2 0.0503254 -28.21 0.0476764 -28.22 0.0451921 -28.23 0.0429048 -28.24 0.0408214 -28.25 0.038924 -28.26 0.037176 -28.27 0.0355118 -28.28 0.0338532 -28.29 0.0321219 -28.3 0.0302403 -28.31 0.0281385 -28.32 0.0257603 -28.33 0.0230689 -28.34 0.0200514 -28.35 0.0167218 -28.36 0.0131229 -28.37 0.00932394 -28.38 0.00543114 -28.39 0.00158007 -28.4 -0.00208715 -28.41 -0.00541824 -28.42 -0.0082583 -28.43 -0.0104579 -28.44 -0.0118812 -28.45 -0.0124138 -28.46 -0.0119698 -28.47 -0.0104976 -28.48 -0.00797901 -28.49 -0.00438239 -28.5 0.000140031 -28.51 0.00546931 -28.52 0.0114503 -28.53 0.0178974 -28.54 0.0246015 -28.55 0.0313389 -28.56 0.0378803 -28.57 0.0440001 -28.58 0.0494867 -28.59 0.0541505 -28.6 0.0577609 -28.61 0.0602447 -28.62 0.0615405 -28.63 0.0616205 -28.64 0.0605012 -28.65 0.0582409 -28.66 0.054936 -28.67 0.0507148 -28.68 0.0457296 -28.69 0.0401491 -28.7 0.0341482 -28.71 0.0278954 -28.72 0.0215697 -28.73 0.0153135 -28.74 0.00923498 -28.75 0.00340998 -28.76 -0.00212107 -28.77 -0.00735357 -28.78 -0.0123173 -28.79 -0.0170731 -28.8 -0.0217069 -28.81 -0.0263237 -28.82 -0.0310457 -28.83 -0.0360035 -28.84 -0.0412989 -28.85 -0.0470208 -28.86 -0.0532323 -28.87 -0.0599648 -28.88 -0.067213 -28.89 -0.0749323 -28.9 -0.083039 -28.91 -0.091411 -28.92 -0.0998926 -28.93 -0.108295 -28.94 -0.116382 -28.95 -0.123942 -28.96 -0.130759 -28.97 -0.136624 -28.98 -0.14135 -28.99 -0.14478 -29 -0.146791 -29.01 -0.147303 -29.02 -0.146283 -29.03 -0.143745 -29.04 -0.139752 -29.05 -0.134322 -29.06 -0.127716 -29.07 -0.120123 -29.08 -0.111751 -29.09 -0.102823 -29.1 -0.0935646 -29.11 -0.0841975 -29.12 -0.0749261 -29.13 -0.0659314 -29.14 -0.0573638 -29.15 -0.0493375 -29.16 -0.0419669 -29.17 -0.0352573 -29.18 -0.0291876 -29.19 -0.0237116 -29.2 -0.0187531 -29.21 -0.0142135 -29.22 -0.00997855 -29.23 -0.00592744 -29.24 -0.00194072 -29.25 0.00209154 -29.26 0.00626264 -29.27 0.0106544 -29.28 0.0153087 -29.29 0.0202263 -29.3 0.0253848 -29.31 0.0307327 -29.32 0.0361932 -29.33 0.0416691 -29.34 0.0470488 -29.35 0.0522131 -29.36 0.0570431 -29.37 0.0614273 -29.38 0.0652511 -29.39 0.0684209 -29.4 0.0709174 -29.41 0.0727244 -29.42 0.0738561 -29.43 0.0743566 -29.44 0.0742972 -29.45 0.0737724 -29.46 0.0728945 -29.47 0.0717868 -29.48 0.0705764 -29.49 0.0693878 -29.5 0.068347 -29.51 0.0675399 -29.52 0.0670286 -29.53 0.0668452 -29.54 0.0669891 -29.55 0.067426 -29.56 0.0680894 -29.57 0.0688831 -29.58 0.0696864 -29.59 0.07036 -29.6 0.0707532 -29.61 0.0706705 -29.62 0.069984 -29.63 0.0685645 -29.64 0.0663037 -29.65 0.0631222 -29.66 0.0589751 -29.67 0.0538541 -29.68 0.0477895 -29.69 0.0408495 -29.7 0.0331372 -29.71 0.0247864 -29.72 0.0159391 -29.73 0.00680459 -29.74 -0.00242173 -29.75 -0.011555 -29.76 -0.02042 -29.77 -0.0288582 -29.78 -0.0367355 -29.79 -0.0439468 -29.8 -0.0504199 -29.81 -0.0561177 -29.82 -0.0610378 -29.83 -0.0651838 -29.84 -0.068627 -29.85 -0.0714822 -29.86 -0.0738528 -29.87 -0.0758509 -29.88 -0.077589 -29.89 -0.0791726 -29.9 -0.0806927 -29.91 -0.0822199 -29.92 -0.0837995 -29.93 -0.0854481 -29.94 -0.0871522 -29.95 -0.0888617 -29.96 -0.0904975 -29.97 -0.0919607 -29.98 -0.0931356 -29.99 -0.0938965 -30 -0.0941156 -& -@target G3.S2 -@type xy -0 0 -0.01 0.065853777 -0.02 0.035965931 -0.03 0.025705891 -0.04 0.020372271 -0.05 0.017025507 -0.06 0.014686178 -0.07 0.012934717 -0.08 0.011561293 -0.09 0.010449071 -0.1 0.0095274841 -0.11 0.0087509729 -0.12 0.0080883437 -0.13 0.0075170365 -0.14 0.0070198581 -0.15 0.0065830382 -0.16 0.0061950404 -0.17 0.0058458268 -0.18 0.0055264056 -0.19 0.0052285664 -0.2 0.0049447392 -0.21 0.004667942 -0.22 0.0043917857 -0.23 0.0041105213 -0.24 0.0038191116 -0.25 0.0035133168 -0.26 0.003189785 -0.27 0.0028461393 -0.28 0.0024810551 -0.29 0.0020943241 -0.3 0.0016869004 -0.31 0.0012609264 -0.32 0.00081973981 -0.33 0.00036785926 -0.34 -8.904872e-05 -0.35 -0.00054421993 -0.36 -0.00098985805 -0.37 -0.0014172132 -0.38 -0.0018166712 -0.39 -0.0021778526 -0.4 -0.0024897197 -0.41 -0.0027406924 -0.42 -0.0029187725 -0.43 -0.0030116796 -0.44 -0.0030069994 -0.45 -0.0028923481 -0.46 -0.0026555556 -0.47 -0.0022848705 -0.48 -0.0017691885 -0.49 -0.0010983051 -0.5 -0.00026319345 -0.51 0.00074369806 -0.52 0.00192813 -0.53 0.0032937477 -0.54 0.0048417562 -0.55 0.0065706085 -0.56 0.0084757183 -0.57 0.010549215 -0.58 0.012779754 -0.59 0.015152406 -0.6 0.017648626 -0.61 0.02024633 -0.62 0.022920085 -0.63 0.025641416 -0.64 0.028379233 -0.65 0.031100379 -0.66 0.033770287 -0.67 0.036353735 -0.68 0.038815675 -0.69 0.041122111 -0.7 0.043241008 -0.71 0.045143181 -0.72 0.046803143 -0.73 0.048199879 -0.74 0.049317497 -0.75 0.050145739 -0.76 0.050680323 -0.77 0.050923088 -0.78 0.050881937 -0.79 0.050570564 -0.8 0.050007975 -0.81 0.049217814 -0.82 0.048227515 -0.83 0.047067302 -0.84 0.045769092 -0.85 0.04436532 -0.86 0.042887753 -0.87 0.041366333 -0.88 0.03982809 -0.89 0.038296186 -0.9 0.036789116 -0.91 0.035320115 -0.92 0.03389678 -0.93 0.032520937 -0.94 0.031188751 -0.95 0.029891076 -0.96 0.028614026 -0.97 0.027339743 -0.98 0.026047322 -0.99 0.024713855 -1 0.023315542 -1.01 0.021828818 -1.02 0.020231443 -1.03 0.018503513 -1.04 0.016628338 -1.05 0.014593151 -1.06 0.012389625 -1.07 0.010014171 -1.08 0.0074680163 -1.09 0.0047570589 -1.1 0.0018915171 -1.11 -0.0011145998 -1.12 -0.0042441706 -1.13 -0.0074777473 -1.14 -0.010794403 -1.15 -0.014172592 -1.16 -0.017590983 -1.17 -0.021029213 -1.18 -0.024468522 -1.19 -0.027892253 -1.2 -0.031286178 -1.21 -0.034638643 -1.22 -0.037940543 -1.23 -0.04118512 -1.24 -0.044367617 -1.25 -0.047484813 -1.26 -0.05053448 -1.27 -0.053514793 -1.28 -0.056423754 -1.29 -0.05925866 -1.3 -0.062015662 -1.31 -0.064689452 -1.32 -0.067273104 -1.33 -0.06975809 -1.34 -0.072134475 -1.35 -0.074391296 -1.36 -0.076517099 -1.37 -0.078500614 -1.38 -0.080331536 -1.39 -0.082001359 -1.4 -0.083504224 -1.41 -0.08483772 -1.42 -0.086003589 -1.43 -0.087008297 -1.44 -0.087863402 -1.45 -0.088585718 -1.46 -0.089197219 -1.47 -0.08972469 -1.48 -0.090199129 -1.49 -0.090654895 -1.5 -0.091128657 -1.51 -0.091658157 -1.52 -0.092280862 -1.53 -0.093032548 -1.54 -0.093945881 -1.55 -0.095049074 -1.56 -0.096364661 -1.57 -0.097908472 -1.58 -0.099688842 -1.59 -0.10170611 -1.6 -0.10395242 -1.61 -0.10641187 -1.62 -0.10906098 -1.63 -0.11186946 -1.64 -0.11480125 -1.65 -0.11781588 -1.66 -0.12086992 -1.67 -0.12391861 -1.68 -0.12691752 -1.69 -0.1298242 -1.7 -0.13259979 -1.71 -0.13521039 -1.72 -0.13762832 -1.73 -0.13983304 -1.74 -0.14181184 -1.75 -0.14356017 -1.76 -0.14508166 -1.77 -0.14638784 -1.78 -0.14749752 -1.79 -0.14843597 -1.8 -0.14923379 -1.81 -0.14992568 -1.82 -0.15054907 -1.83 -0.15114272 -1.84 -0.15174526 -1.85 -0.15239391 -1.86 -0.1531232 -1.87 -0.15396392 -1.88 -0.15494227 -1.89 -0.15607919 -1.9 -0.15738995 -1.91 -0.15888394 -1.92 -0.16056476 -1.93 -0.16243043 -1.94 -0.1644738 -1.95 -0.16668313 -1.96 -0.16904278 -1.97 -0.17153389 -1.98 -0.17413519 -1.99 -0.17682376 -2 -0.1795757 -2.01 -0.18236684 -2.02 -0.18517326 -2.03 -0.18797178 -2.04 -0.19074034 -2.05 -0.19345821 -2.06 -0.19610623 -2.07 -0.19866682 -2.08 -0.20112407 -2.09 -0.20346362 -2.1 -0.20567266 -2.11 -0.20773976 -2.12 -0.20965482 -2.13 -0.21140891 -2.14 -0.21299416 -2.15 -0.21440363 -2.16 -0.21563119 -2.17 -0.21667134 -2.18 -0.21751904 -2.19 -0.21816941 -2.2 -0.21861748 -2.21 -0.21885775 -2.22 -0.21888373 -2.23 -0.21868733 -2.24 -0.21825816 -2.25 -0.21758282 -2.26 -0.21664398 -2.27 -0.21541955 -2.28 -0.21388174 -2.29 -0.21199618 -2.3 -0.20972116 -2.31 -0.20700691 -2.32 -0.20379513 -2.33 -0.20001872 -2.34 -0.19560185 -2.35 -0.19046025 -2.36 -0.184502 -2.37 -0.17762863 -2.38 -0.16973662 -2.39 -0.16071935 -2.4 -0.15046943 -2.41 -0.13888132 -2.42 -0.12585431 -2.43 -0.11129572 -2.44 -0.09512427 -2.45 -0.077273434 -2.46 -0.057694869 -2.47 -0.03636163 -2.48 -0.013271163 -2.49 0.011552067 -2.5 0.038054384 -2.51 0.066151269 -2.52 0.095726341 -2.53 0.12663103 -2.54 0.15868495 -2.55 0.19167708 -2.56 0.22536765 -2.57 0.25949081 -2.58 0.29375794 -2.59 0.32786169 -2.6 0.3614805 -2.61 0.39428363 -2.62 0.42593652 -2.63 0.45610646 -2.64 0.48446824 -2.65 0.51070992 -2.66 0.53453832 -2.67 0.55568431 -2.68 0.57390764 -2.69 0.58900128 -2.7 0.60079512 -2.71 0.60915897 -2.72 0.6140048 -2.73 0.6152881 -2.74 0.6130085 -2.75 0.60720943 -2.76 0.597977 -2.77 0.58543803 -2.78 0.56975737 -2.79 0.55113448 -2.8 0.52979947 -2.81 0.50600854 -2.82 0.48003913 -2.83 0.45218473 -2.84 0.42274953 -2.85 0.39204302 -2.86 0.36037472 -2.87 0.32804909 -2.88 0.2953607 -2.89 0.26258987 -2.9 0.22999878 -2.91 0.19782816 -2.92 0.16629454 -2.93 0.13558828 -2.94 0.10587216 -2.95 0.077280713 -2.96 0.049920243 -2.97 0.023869429 -2.98 -0.00081946462 -2.99 -0.024118854 -3 -0.046023673 -3.01 -0.066548852 -3.02 -0.08572653 -3.03 -0.10360311 -3.04 -0.12023624 -3.05 -0.13569184 -3.06 -0.15004121 -3.07 -0.16335837 -3.08 -0.17571765 -3.09 -0.18719161 -3.1 -0.19784935 -3.11 -0.2077551 -3.12 -0.21696739 -3.13 -0.22553845 -3.14 -0.23351408 -3.15 -0.24093381 -3.16 -0.24783136 -3.17 -0.25423538 -3.18 -0.26017028 -3.19 -0.26565721 -3.2 -0.2707151 -3.21 -0.27536164 -3.22 -0.27961413 -3.23 -0.28349029 -3.24 -0.28700875 -3.25 -0.29018944 -3.26 -0.2930536 -3.27 -0.29562368 -3.28 -0.29792282 -3.29 -0.29997424 -3.3 -0.3018003 -3.31 -0.30342144 -3.32 -0.30485496 -3.33 -0.30611368 -3.34 -0.30720463 -3.35 -0.30812769 -3.36 -0.30887431 -3.37 -0.30942635 -3.38 -0.30975511 -3.39 -0.30982049 -3.4 -0.30957043 -3.41 -0.30894063 -3.42 -0.30785449 -3.43 -0.30622337 -3.44 -0.30394715 -3.45 -0.30091507 -3.46 -0.2970068 -3.47 -0.2920939 -3.48 -0.2860414 -3.49 -0.27870971 -3.5 -0.26995671 -3.51 -0.25964002 -3.52 -0.24761948 -3.53 -0.23375971 -3.54 -0.2179329 -3.55 -0.20002156 -3.56 -0.17992142 -3.57 -0.15754436 -3.58 -0.13282125 -3.59 -0.10570486 -3.6 -0.076172561 -3.61 -0.044228934 -3.62 -0.0099081532 -3.63 0.026723894 -3.64 0.065567831 -3.65 0.10648942 -3.66 0.14931863 -3.67 0.19384933 -3.68 0.23983943 -3.69 0.28701184 -3.7 0.33505596 -3.71 0.38363003 -3.72 0.43236412 -3.73 0.48086388 -3.74 0.52871501 -3.75 0.57548834 -3.76 0.62074552 -3.77 0.66404527 -3.78 0.70494989 -3.79 0.74303215 -3.8 0.77788224 -3.81 0.8091147 -3.82 0.83637517 -3.83 0.85934675 -3.84 0.87775588 -3.85 0.89137751 -3.86 0.90003953 -3.87 0.90362618 -3.88 0.90208053 -3.89 0.89540577 -3.9 0.88366544 -3.91 0.86698245 -3.92 0.84553697 -3.93 0.81956325 -3.94 0.7893454 -3.95 0.7552123 -3.96 0.71753169 -3.97 0.67670366 -3.98 0.63315365 -3.99 0.58732519 -4 0.53967247 -4.01 0.490653 -4.02 0.44072048 -4.03 0.39031804 -4.04 0.33987202 -4.05 0.28978635 -4.06 0.2404377 -4.07 0.1921714 -4.08 0.14529819 -4.09 0.10009195 -4.1 0.056788155 -4.11 0.015583284 -4.12 -0.023365044 -4.13 -0.05993716 -4.14 -0.094049802 -4.15 -0.12565399 -4.16 -0.15473246 -4.17 -0.18129668 -4.18 -0.20538363 -4.19 -0.22705239 -4.2 -0.24638064 -4.21 -0.26346118 -4.22 -0.27839846 -4.23 -0.29130532 -4.24 -0.30229983 -4.25 -0.31150249 -4.26 -0.31903352 -4.27 -0.32501059 -4.28 -0.32954677 -4.29 -0.33274882 -4.3 -0.33471581 -4.31 -0.33553799 -4.32 -0.33529604 -4.33 -0.3340606 -4.34 -0.33189203 -4.35 -0.32884054 -4.36 -0.32494651 -4.37 -0.32024104 -4.38 -0.31474682 -4.39 -0.30847908 -4.4 -0.30144682 -4.41 -0.29365416 -4.42 -0.2851018 -4.43 -0.27578861 -4.44 -0.26571328 -4.45 -0.25487598 -4.46 -0.24328008 -4.47 -0.23093369 -4.48 -0.21785126 -4.49 -0.20405497 -4.5 -0.18957598 -4.51 -0.17445546 -4.52 -0.15874544 -4.53 -0.14250932 -4.54 -0.1258222 -4.55 -0.10877085 -4.56 -0.091453373 -4.57 -0.07397863 -4.58 -0.056465317 -4.59 -0.039040794 -4.6 -0.021839661 -4.61 -0.0050021035 -4.62 0.011327941 -4.63 0.027004764 -4.64 0.041882968 -4.65 0.055819616 -4.66 0.068676377 -4.67 0.080321654 -4.68 0.09063262 -4.69 0.099497145 -4.7 0.10681556 -4.71 0.11250221 -4.72 0.11648687 -4.73 0.11871576 -4.74 0.11915248 -4.75 0.11777852 -4.76 0.11459359 -4.77 0.1096156 -4.78 0.10288039 -4.79 0.094441185 -4.8 0.084367766 -4.81 0.072745421 -4.82 0.059673652 -4.83 0.04526469 -4.84 0.029641829 -4.85 0.012937625 -4.86 -0.0047080307 -4.87 -0.023149895 -4.88 -0.042239407 -4.89 -0.061826714 -4.9 -0.081762657 -4.91 -0.10190067 -4.92 -0.12209856 -4.93 -0.14222013 -4.94 -0.16213661 -4.95 -0.18172781 -4.96 -0.20088315 -4.97 -0.21950228 -4.98 -0.23749547 -4.99 -0.25478375 -5 -0.27129874 -5.01 -0.28698218 -5.02 -0.30178526 -5.03 -0.31566774 -5.04 -0.32859686 -5.05 -0.34054616 -5.06 -0.35149421 -5.07 -0.36142334 -5.08 -0.37031839 -5.09 -0.3781656 -5.1 -0.38495159 -5.11 -0.39066264 -5.12 -0.39528414 -5.13 -0.39880035 -5.14 -0.40119448 -5.15 -0.40244906 -5.16 -0.40254666 -5.17 -0.40147081 -5.18 -0.39920732 -5.19 -0.39574568 -5.2 -0.39108074 -5.21 -0.38521436 -5.22 -0.37815723 -5.23 -0.36993049 -5.24 -0.36056735 -5.25 -0.35011444 -5.26 -0.33863287 -5.27 -0.32619901 -5.28 -0.31290483 -5.29 -0.29885786 -5.3 -0.28418066 -5.31 -0.26900985 -5.32 -0.25349468 -5.33 -0.2377952 -5.34 -0.22208001 -5.35 -0.2065237 -5.36 -0.19130401 -5.37 -0.17659885 -5.38 -0.16258311 -5.39 -0.1494256 -5.4 -0.13728589 -5.41 -0.12631146 -5.42 -0.11663494 -5.43 -0.10837175 -5.44 -0.10161805 -5.45 -0.096449061 -5.46 -0.092917919 -5.47 -0.09105486 -5.48 -0.090866937 -5.49 -0.092338148 -5.5 -0.095429979 -5.51 -0.10008233 -5.52 -0.10621478 -5.53 -0.11372812 -5.54 -0.12250609 -5.55 -0.13241732 -5.56 -0.14331736 -5.57 -0.1550507 -5.58 -0.16745283 -5.59 -0.18035225 -5.6 -0.19357235 -5.61 -0.20693316 -5.62 -0.22025298 -5.63 -0.23334981 -5.64 -0.24604267 -5.65 -0.2581527 -5.66 -0.26950414 -5.67 -0.27992519 -5.68 -0.28924876 -5.69 -0.29731316 -5.7 -0.30396269 -5.71 -0.30904831 -5.72 -0.31242821 -5.73 -0.31396852 -5.74 -0.31354404 -5.75 -0.31103904 -5.76 -0.30634819 -5.77 -0.29937754 -5.78 -0.2900457 -5.79 -0.27828499 -5.8 -0.26404279 -5.81 -0.24728291 -5.82 -0.22798696 -5.83 -0.20615584 -5.84 -0.18181109 -5.85 -0.15499628 -5.86 -0.12577819 -5.87 -0.094247954 -5.88 -0.060521893 -5.89 -0.024742182 -5.9 0.012922811 -5.91 0.052278524 -5.92 0.093104564 -5.93 0.1351555 -5.94 0.17816207 -5.95 0.2218329 -5.96 0.26585662 -5.97 0.30990455 -5.98 0.35363376 -5.99 0.39669061 -6 0.43871469 -6.01 0.47934311 -6.02 0.51821509 -6.03 0.55497676 -6.04 0.58928608 -6.05 0.62081784 -6.06 0.64926861 -6.07 0.67436145 -6.08 0.69585051 -6.09 0.71352511 -6.1 0.72721351 -6.11 0.736786 -6.12 0.74215751 -6.13 0.74328939 -6.14 0.7401906 -6.15 0.732918 -6.16 0.721576 -6.17 0.70631534 -6.18 0.68733119 -6.19 0.66486053 -6.2 0.63917895 -6.21 0.61059683 -6.22 0.57945512 -6.23 0.54612072 -6.24 0.51098164 -6.25 0.47444196 -6.26 0.43691676 -6.27 0.39882714 -6.28 0.36059525 -6.29 0.32263968 -6.3 0.28537101 -6.31 0.24918774 -6.32 0.21447251 -6.33 0.18158873 -6.34 0.15087755 -6.35 0.1226552 -6.36 0.097210617 -6.37 0.074803399 -6.38 0.05566201 -6.39 0.039982193 -6.4 0.027925571 -6.41 0.019618408 -6.42 0.015150491 -6.43 0.014574135 -6.44 0.017903308 -6.45 0.025112886 -6.46 0.036138068 -6.47 0.050873983 -6.48 0.069175555 -6.49 0.090857658 -6.5 0.11569564 -6.51 0.14342629 -6.52 0.17374924 -6.53 0.20632903 -6.54 0.24079759 -6.55 0.27675749 -6.56 0.31378573 -6.57 0.35143817 -6.58 0.38925456 -6.59 0.42676407 -6.6 0.46349131 -6.61 0.49896268 -6.62 0.53271298 -6.63 0.56429213 -6.64 0.59327179 -6.65 0.61925194 -6.66 0.64186692 -6.67 0.66079117 -6.68 0.67574419 -6.69 0.68649484 -6.7 0.69286472 -6.71 0.69473057 -6.72 0.69202574 -6.73 0.68474054 -6.74 0.67292151 -6.75 0.65666976 -6.76 0.63613825 -6.77 0.61152818 -6.78 0.5830846 -6.79 0.55109138 -6.8 0.51586556 -6.81 0.47775134 -6.82 0.43711386 -6.83 0.39433286 -6.84 0.34979635 -6.85 0.30389453 -6.86 0.257014 -6.87 0.20953239 -6.88 0.16181346 -6.89 0.11420284 -6.9 0.067024356 -6.91 0.020576981 -6.92 -0.0248675 -6.93 -0.069066221 -6.94 -0.11180633 -6.95 -0.15290551 -6.96 -0.19221197 -6.97 -0.22960391 -6.98 -0.2649887 -6.99 -0.29830155 -7 -0.32950402 -7.01 -0.35858222 -7.02 -0.38554488 -7.03 -0.41042127 -7.04 -0.43325905 -7.05 -0.45412209 -7.06 -0.47308821 -7.07 -0.49024701 -7.08 -0.5056977 -7.09 -0.51954691 -7.1 -0.53190665 -7.11 -0.54289233 -7.12 -0.55262074 -7.13 -0.56120829 -7.14 -0.56876924 -7.15 -0.57541406 -7.16 -0.58124795 -7.17 -0.58636948 -7.18 -0.59086937 -7.19 -0.59482948 -7.2 -0.59832194 -7.21 -0.60140849 -7.22 -0.60414004 -7.23 -0.60655641 -7.24 -0.60868629 -7.25 -0.61054738 -7.26 -0.61214676 -7.27 -0.61348139 -7.28 -0.61453887 -7.29 -0.61529821 -7.3 -0.6157308 -7.31 -0.61580149 -7.32 -0.61546966 -7.33 -0.61469042 -7.34 -0.61341574 -7.35 -0.61159562 -7.36 -0.60917922 -7.37 -0.60611597 -7.38 -0.60235659 -7.39 -0.59785406 -7.4 -0.59256454 -7.41 -0.58644822 -7.42 -0.57947008 -7.43 -0.57160065 -7.44 -0.56281668 -7.45 -0.55310176 -7.46 -0.54244696 -7.47 -0.53085139 -7.48 -0.51832271 -7.49 -0.50487768 -7.5 -0.49054256 -7.51 -0.47535355 -7.52 -0.45935713 -7.53 -0.44261025 -7.54 -0.42518047 -7.55 -0.40714598 -7.56 -0.38859534 -7.57 -0.36962717 -7.58 -0.35034954 -7.59 -0.33087915 -7.6 -0.31134031 -7.61 -0.29186358 -7.62 -0.27258427 -7.63 -0.25364063 -7.64 -0.23517187 -7.65 -0.21731593 -7.66 -0.20020716 -7.67 -0.18397388 -7.68 -0.1687358 -7.69 -0.15460158 -7.7 -0.14166629 -7.71 -0.13000913 -7.72 -0.11969121 -7.73 -0.11075368 -7.74 -0.10321605 -7.75 -0.097074962 -7.76 -0.09230328 -7.77 -0.08884966 -7.78 -0.086638551 -7.79 -0.085570681 -7.8 -0.085524028 -7.81 -0.08635526 -7.82 -0.087901637 -7.83 -0.089983355 -7.84 -0.092406284 -7.85 -0.094965058 -7.86 -0.097446479 -7.87 -0.099633153 -7.88 -0.10130732 -7.89 -0.10225476 -7.9 -0.10226883 -7.91 -0.10115433 -7.92 -0.098731394 -7.93 -0.094839122 -7.94 -0.089339011 -7.95 -0.082118041 -7.96 -0.073091401 -7.97 -0.062204772 -7.98 -0.049436124 -7.99 -0.034796982 -8 -0.018333126 -8.01 -0.00012469092 -8.02 0.01971435 -8.03 0.041037321 -8.04 0.063666597 -8.05 0.087395974 -8.06 0.11199361 -8.07 0.1372055 -8.08 0.16275947 -8.09 0.18836957 -8.1 0.21374087 -8.11 0.23857445 -8.12 0.26257269 -8.13 0.28544455 -8.14 0.30691092 -8.15 0.32670976 -8.16 0.34460111 -8.17 0.36037168 -8.18 0.37383911 -8.19 0.38485562 -8.2 0.39331106 -8.21 0.39913536 -8.22 0.40230014 -8.23 0.40281957 -8.24 0.40075047 -8.25 0.3961915 -8.26 0.38928158 -8.27 0.38019755 -8.28 0.36915103 -8.29 0.35638462 -8.3 0.34216753 -8.31 0.32679059 -8.32 0.31056094 -8.33 0.29379638 -8.34 0.27681947 -8.35 0.25995162 -8.36 0.24350717 -8.37 0.22778764 -8.38 0.21307626 -8.39 0.19963282 -8.4 0.18768904 -8.41 0.17744449 -8.42 0.16906308 -8.43 0.1626703 -8.44 0.15835115 -8.45 0.15614889 -8.46 0.15606448 -8.47 0.15805692 -8.48 0.16204428 -8.49 0.16790554 -8.5 0.1754831 -8.51 0.18458602 -8.52 0.19499378 -8.53 0.2064607 -8.54 0.21872068 -8.55 0.23149243 -8.56 0.24448492 -8.57 0.25740299 -8.58 0.2699531 -8.59 0.28184901 -8.6 0.29281728 -8.61 0.30260264 -8.62 0.31097285 -8.63 0.3177233 -8.64 0.32268091 -8.65 0.32570749 -8.66 0.32670238 -8.67 0.32560435 -8.68 0.3223927 -8.69 0.31708746 -8.7 0.30974884 -8.71 0.30047579 -8.72 0.28940373 -8.73 0.27670156 -8.74 0.26256787 -8.75 0.24722661 -8.76 0.23092217 -8.77 0.21391405 -8.78 0.19647118 -8.79 0.17886616 -8.8 0.16136932 -8.81 0.144243 -8.82 0.127736 -8.83 0.11207838 -8.84 0.09747674 -8.85 0.08411014 -8.86 0.072126632 -8.87 0.061640577 -8.88 0.052730771 -8.89 0.045439406 -8.9 0.039771878 -8.91 0.035697444 -8.92 0.033150678 -8.93 0.032033681 -8.94 0.032218967 -8.95 0.033552949 -8.96 0.035859912 -8.97 0.038946361 -8.98 0.042605647 -8.99 0.046622727 -9 0.050778958 -9.01 0.054856801 -9.02 0.058644333 -9.03 0.061939473 -9.04 0.064553826 -9.05 0.066316089 -9.06 0.067074955 -9.07 0.066701465 -9.08 0.065090809 -9.09 0.062163537 -9.1 0.057866204 -9.11 0.052171457 -9.12 0.045077594 -9.13 0.036607641 -9.14 0.026807979 -9.15 0.01574659 -9.16 0.003510963 -9.17 -0.009794268 -9.18 -0.024049896 -9.19 -0.039124871 -9.2 -0.054879112 -9.21 -0.071166368 -9.22 -0.087837047 -9.23 -0.10474098 -9.24 -0.12173009 -9.25 -0.13866082 -9.26 -0.15539651 -9.27 -0.17180939 -9.28 -0.18778238 -9.29 -0.2032106 -9.3 -0.2180026 -9.31 -0.23208113 -9.32 -0.24538378 -9.33 -0.25786306 -9.34 -0.26948633 -9.35 -0.28023525 -9.36 -0.29010498 -9.37 -0.2991031 -9.38 -0.3072482 -9.39 -0.3145683 -9.4 -0.32109901 -9.41 -0.32688161 -9.42 -0.33196102 -9.43 -0.33638373 -9.44 -0.34019572 -9.45 -0.34344057 -9.46 -0.3461576 -9.47 -0.34838033 -9.48 -0.35013507 -9.49 -0.3514399 -9.5 -0.35230399 -9.51 -0.35272725 -9.52 -0.35270035 -9.53 -0.3522052 -9.54 -0.35121569 -9.55 -0.34969892 -9.56 -0.3476166 -9.57 -0.34492686 -9.58 -0.34158616 -9.59 -0.33755139 -9.6 -0.33278209 -9.61 -0.32724255 -9.62 -0.32090392 -9.63 -0.31374612 -9.64 -0.30575948 -9.65 -0.29694614 -9.66 -0.28732101 -9.67 -0.27691235 -9.68 -0.26576187 -9.69 -0.25392441 -9.7 -0.24146706 -9.71 -0.22846787 -9.72 -0.2150141 -9.73 -0.20120005 -9.74 -0.18712461 -9.75 -0.17288843 -9.76 -0.15859098 -9.77 -0.14432748 -9.78 -0.13018578 -9.79 -0.11624336 -9.8 -0.10256448 -9.81 -0.089197637 -9.82 -0.076173314 -9.83 -0.063502229 -9.84 -0.051174051 -9.85 -0.039156685 -9.86 -0.027396165 -9.87 -0.015817159 -9.88 -0.0043241264 -9.89 0.0071969087 -9.9 0.018875974 -9.91 0.030856205 -9.92 0.043290395 -9.93 0.056337105 -9.94 0.070156429 -9.95 0.084905495 -9.96 0.10073381 -9.97 0.11777856 -9.98 0.13615998 -9.99 0.15597688 -10 0.1773025 -10.01 0.20018072 -10.02 0.22462282 -10.03 0.25060475 -10.04 0.27806516 -10.05 0.30690409 -10.06 0.33698251 -10.07 0.3681226 -10.08 0.40010895 -10.09 0.43269054 -10.1 0.46558352 -10.11 0.49847483 -10.12 0.53102639 -10.13 0.56288011 -10.14 0.59366327 -10.15 0.62299444 -10.16 0.65048967 -10.17 0.67576889 -10.18 0.69846236 -10.19 0.71821706 -10.2 0.73470285 -10.21 0.74761829 -10.22 0.75669603 -10.23 0.76170757 -10.24 0.76246735 -10.25 0.75883616 -10.26 0.75072355 -10.27 0.73808953 -10.28 0.72094528 -10.29 0.69935289 -10.3 0.67342435 -10.31 0.64331951 -10.32 0.60924335 -10.33 0.57144245 -10.34 0.53020079 -10.35 0.48583512 -10.36 0.43868969 -10.37 0.38913089 -10.38 0.3375415 -10.39 0.28431497 -10.4 0.22984973 -10.41 0.17454362 -10.42 0.11878867 -10.43 0.062966082 -10.44 0.0074418509 -10.45 -0.047437279 -10.46 -0.10134721 -10.47 -0.15398932 -10.48 -0.2050927 -10.49 -0.25441576 -10.5 -0.30174723 -10.51 -0.34690664 -10.52 -0.38974419 -10.53 -0.43014022 -10.54 -0.46800416 -10.55 -0.50327317 -10.56 -0.5359105 -10.57 -0.56590349 -10.58 -0.59326154 -10.59 -0.61801385 -10.6 -0.64020719 -10.61 -0.65990357 -10.62 -0.67717805 -10.63 -0.69211654 -10.64 -0.70481377 -10.65 -0.71537133 -10.66 -0.7238959 -10.67 -0.73049764 -10.68 -0.73528866 -10.69 -0.73838171 -10.7 -0.73988904 -10.71 -0.73992125 -10.72 -0.73858644 -10.73 -0.73598935 -10.74 -0.73223057 -10.75 -0.72740595 -10.76 -0.72160594 -10.77 -0.71491503 -10.78 -0.7074113 -10.79 -0.69916589 -10.8 -0.69024259 -10.81 -0.68069747 -10.82 -0.67057853 -10.83 -0.65992537 -10.84 -0.64876906 -10.85 -0.63713189 -10.86 -0.62502742 -10.87 -0.61246044 -10.88 -0.59942724 -10.89 -0.58591583 -10.9 -0.57190648 -10.91 -0.55737231 -10.92 -0.54228007 -10.93 -0.52659111 -10.94 -0.51026251 -10.95 -0.49324833 -10.96 -0.47550109 -10.97 -0.45697331 -10.98 -0.43761917 -10.99 -0.41739632 -11 -0.39626759 -11.01 -0.37420288 -11.02 -0.35118086 -11.03 -0.32719072 -11.04 -0.30223364 -11.05 -0.27632422 -11.06 -0.24949163 -11.07 -0.22178045 -11.08 -0.19325125 -11.09 -0.16398081 -11.1 -0.13406196 -11.11 -0.10360301 -11.12 -0.072726837 -11.13 -0.041569498 -11.14 -0.010278504 -11.15 0.020989278 -11.16 0.052070049 -11.17 0.082795771 -11.18 0.11299708 -11.19 0.14250634 -11.2 0.17116077 -11.21 0.19880558 -11.22 0.22529696 -11.23 0.25050496 -11.24 0.27431604 -11.25 0.29663534 -11.26 0.31738848 -11.27 0.33652295 -11.28 0.3540089 -11.29 0.36983949 -11.3 0.38403056 -11.31 0.39661975 -11.32 0.40766515 -11.33 0.41724328 -11.34 0.42544672 -11.35 0.43238127 -11.36 0.43816273 -11.37 0.44291358 -11.38 0.44675935 -11.39 0.44982502 -11.4 0.45223152 -11.41 0.45409229 -11.42 0.45551018 -11.43 0.45657468 -11.44 0.45735959 -11.45 0.45792114 -11.46 0.45829674 -11.47 0.45850428 -11.48 0.45854196 -11.49 0.45838888 -11.5 0.45800602 -11.51 0.45733791 -11.52 0.4563147 -11.53 0.45485468 -11.54 0.4528671 -11.55 0.45025532 -11.56 0.44691999 -11.57 0.44276239 -11.58 0.43768766 -11.59 0.43160794 -11.6 0.42444524 -11.61 0.41613404 -11.62 0.4066235 -11.63 0.39587926 -11.64 0.38388475 -11.65 0.37064208 -11.66 0.35617233 -11.67 0.34051549 -11.68 0.32372976 -11.69 0.30589062 -11.7 0.28708932 -11.71 0.26743119 -11.72 0.24703361 -11.73 0.22602379 -11.74 0.20453644 -11.75 0.18271133 -11.76 0.16069095 -11.77 0.13861815 -11.78 0.11663395 -11.79 0.094875529 -11.8 0.073474416 -11.81 0.052554929 -11.82 0.032232896 -11.83 0.012614635 -11.84 -0.0062037783 -11.85 -0.024136977 -11.86 -0.041110516 -11.87 -0.05706086 -11.88 -0.071935165 -11.89 -0.085690898 -11.9 -0.098295318 -11.91 -0.10972487 -11.92 -0.11996449 -11.93 -0.12900693 -11.94 -0.13685202 -11.95 -0.14350601 -11.96 -0.14898091 -11.97 -0.15329392 -11.98 -0.15646692 -11.99 -0.15852605 -12 -0.1595013 -12.01 -0.15942626 -12.02 -0.15833782 -12.03 -0.156276 -12.04 -0.15328374 -12.05 -0.14940674 -12.06 -0.14469329 -12.07 -0.13919402 -12.08 -0.13296169 -12.09 -0.12605086 -12.1 -0.11851757 -12.11 -0.11041889 -12.12 -0.10181246 -12.13 -0.092755928 -12.14 -0.083306383 -12.15 -0.073519729 -12.16 -0.063450043 -12.17 -0.053148937 -12.18 -0.042664941 -12.19 -0.032042942 -12.2 -0.021323677 -12.21 -0.010543334 -12.22 0.00026674522 -12.23 0.011080223 -12.24 0.021875785 -12.25 0.032637002 -12.26 0.043352033 -12.27 0.054013173 -12.28 0.064616251 -12.29 0.07515989 -12.3 0.08564465 -12.31 0.09607208 -12.32 0.1064437 -12.33 0.11675997 -12.34 0.12701921 -12.35 0.13721665 -12.36 0.14734345 -12.37 0.15738591 -12.38 0.16732479 -12.39 0.1771348 -12.4 0.18678432 -12.41 0.19623527 -12.42 0.20544328 -12.43 0.21435801 -12.44 0.2229238 -12.45 0.23108038 -12.46 0.23876393 -12.47 0.24590819 -12.48 0.25244578 -12.49 0.2583095 -12.5 0.26343384 -12.51 0.26775633 -12.52 0.27121895 -12.53 0.27376944 -12.54 0.27536239 -12.55 0.27596027 -12.56 0.27553421 -12.57 0.2740645 -12.58 0.27154089 -12.59 0.26796261 -12.6 0.26333809 -12.61 0.25768448 -12.62 0.25102687 -12.63 0.24339731 -12.64 0.23483364 -12.65 0.22537816 -12.66 0.21507627 -12.67 0.20397492 -12.68 0.19212121 -12.69 0.17956093 -12.7 0.16633724 -12.71 0.1524895 -12.72 0.13805233 -12.73 0.12305476 -12.74 0.1075198 -12.75 0.091464191 -12.76 0.074898417 -12.77 0.057827075 -12.78 0.04024946 -12.79 0.022160433 -12.8 0.0035515062 -12.81 -0.015587868 -12.82 -0.035268862 -12.83 -0.055501724 -12.84 -0.076294171 -12.85 -0.097649772 -12.86 -0.11956638 -12.87 -0.14203463 -12.88 -0.16503662 -12.89 -0.18854473 -12.9 -0.21252067 -12.91 -0.23691478 -12.92 -0.26166559 -12.93 -0.28669964 -12.94 -0.31193165 -12.95 -0.33726491 -12.96 -0.36259201 -12.97 -0.38779573 -12.98 -0.41275033 -12.99 -0.43732291 -13 -0.46137504 -13.01 -0.48476449 -13.02 -0.50734712 -13.03 -0.52897883 -13.04 -0.54951751 -13.05 -0.56882506 -13.06 -0.58676934 -13.07 -0.60322605 -13.08 -0.6180805 -13.09 -0.63122935 -13.1 -0.64258202 -13.11 -0.65206214 -13.12 -0.65960862 -13.13 -0.66517667 -13.14 -0.66873847 -13.15 -0.67028372 -13.16 -0.66981989 -13.17 -0.66737228 -13.18 -0.6629838 -13.19 -0.65671453 -13.2 -0.64864108 -13.21 -0.6388557 -13.22 -0.62746516 -13.23 -0.61458948 -13.24 -0.60036043 -13.25 -0.5849199 -13.26 -0.56841809 -13.27 -0.55101163 -13.28 -0.53286156 -13.29 -0.51413128 -13.3 -0.49498446 -13.31 -0.47558291 -13.32 -0.45608456 -13.33 -0.43664142 -13.34 -0.4173977 -13.35 -0.398488 -13.36 -0.3800357 -13.37 -0.3621515 -13.38 -0.34493214 -13.39 -0.32845938 -13.4 -0.31279917 -13.41 -0.29800104 -13.42 -0.28409776 -13.43 -0.27110516 -13.44 -0.25902228 -13.45 -0.24783161 -13.46 -0.23749956 -13.47 -0.22797716 -13.48 -0.21920084 -13.49 -0.21109333 -13.5 -0.20356478 -13.51 -0.19651382 -13.52 -0.18982885 -13.53 -0.18338926 -13.54 -0.1770668 -13.55 -0.17072694 -13.56 -0.16423027 -13.57 -0.15743401 -13.58 -0.15019343 -13.59 -0.14236351 -13.6 -0.13380044 -13.61 -0.12436338 -13.62 -0.11391612 -13.63 -0.10232893 -13.64 -0.089480414 -13.65 -0.075259413 -13.66 -0.059566997 -13.67 -0.042318441 -13.68 -0.023445225 -13.69 -0.0028969789 -13.7 0.019356631 -13.71 0.043324152 -13.72 0.068990756 -13.73 0.096316889 -13.74 0.12523719 -13.75 0.15565975 -13.76 0.18746577 -13.77 0.22050962 -13.78 0.2546194 -13.79 0.28959798 -13.8 0.32522458 -13.81 0.36125681 -13.82 0.39743325 -13.83 0.43347655 -13.84 0.46909687 -13.85 0.50399575 -13.86 0.53787029 -13.87 0.57041756 -13.88 0.60133908 -13.89 0.63034539 -13.9 0.65716054 -13.91 0.68152636 -13.92 0.7032065 -13.93 0.72199007 -13.94 0.73769477 -13.95 0.7501696 -13.96 0.75929682 -13.97 0.76499339 -13.98 0.76721164 -13.99 0.76593935 -14 0.76119913 -14.01 0.75304709 -14.02 0.74157108 -14.03 0.72688826 -14.04 0.70914228 -14.05 0.68850014 -14.06 0.66514872 -14.07 0.63929116 -14.08 0.61114321 -14.09 0.58092956 -14.1 0.54888034 -14.11 0.51522775 -14.12 0.4802031 -14.13 0.44403399 -14.14 0.40694209 -14.15 0.36914113 -14.16 0.33083545 -14.17 0.29221894 -14.18 0.25347435 -14.19 0.21477302 -14.2 0.176275 -14.21 0.13812938 -14.22 0.10047498 -14.23 0.063441167 -14.24 0.027148814 -14.25 -0.008288596 -14.26 -0.042763896 -14.27 -0.07617515 -14.28 -0.10842464 -14.29 -0.13941798 -14.3 -0.16906329 -14.31 -0.19727065 -14.32 -0.22395163 -14.33 -0.24901904 -14.34 -0.27238689 -14.35 -0.29397052 -14.36 -0.31368691 -14.37 -0.33145517 -14.38 -0.3471972 -14.39 -0.36083844 -14.4 -0.37230878 -14.41 -0.38154355 -14.42 -0.38848461 -14.43 -0.39308143 -14.44 -0.39529226 -14.45 -0.39508528 -14.46 -0.39243975 -14.47 -0.38734704 -14.48 -0.37981171 -14.49 -0.36985238 -14.5 -0.35750255 -14.51 -0.34281124 -14.52 -0.3258435 -14.53 -0.30668064 -14.54 -0.28542034 -14.55 -0.26217648 -14.56 -0.2370787 -14.57 -0.21027176 -14.58 -0.18191457 -14.59 -0.15217901 -14.6 -0.12124851 -14.61 -0.089316325 -14.62 -0.056583668 -14.63 -0.023257657 -14.64 0.010450892 -14.65 0.044329746 -14.66 0.07816758 -14.67 0.11175628 -14.68 0.14489315 -14.69 0.17738307 -14.7 0.20904034 -14.71 0.23969036 -14.72 0.26917108 -14.73 0.29733401 -14.74 0.32404501 -14.75 0.34918465 -14.76 0.37264822 -14.77 0.39434546 -14.78 0.41419991 -14.79 0.43214799 -14.8 0.44813786 -14.81 0.46212809 -14.82 0.47408624 -14.83 0.48398733 -14.84 0.49181244 -14.85 0.49754726 -14.86 0.50118095 -14.87 0.50270507 -14.88 0.50211288 -14.89 0.49939885 -14.9 0.49455855 -14.91 0.48758885 -14.92 0.47848843 -14.93 0.46725858 -14.94 0.45390431 -14.95 0.43843566 -14.96 0.4208691 -14.97 0.40122918 -14.98 0.37955001 -14.99 0.35587688 -15 0.3302676 -15.01 0.30279372 -15.02 0.27354151 -15.03 0.24261259 -15.04 0.21012422 -15.05 0.17620923 -15.06 0.14101552 -15.07 0.10470522 -15.08 0.06745341 -15.09 0.029446548 -15.1 -0.0091194454 -15.11 -0.048041346 -15.12 -0.08711098 -15.13 -0.12611771 -15.14 -0.16485098 -15.15 -0.20310285 -15.16 -0.24067046 -15.17 -0.27735838 -15.18 -0.3129807 -15.19 -0.34736297 -15.2 -0.3803438 -15.21 -0.4117762 -15.22 -0.44152862 -15.23 -0.46948562 -15.24 -0.49554831 -15.25 -0.51963444 -15.26 -0.54167828 -15.27 -0.56163021 -15.28 -0.57945619 -15.29 -0.59513699 -15.3 -0.60866736 -15.31 -0.62005508 -15.32 -0.62931996 -15.33 -0.63649285 -15.34 -0.64161459 -15.35 -0.64473502 -15.36 -0.64591203 -15.37 -0.64521061 -15.38 -0.64270196 -15.39 -0.63846265 -15.4 -0.63257381 -15.41 -0.62512032 -15.42 -0.61619005 -15.43 -0.60587313 -15.44 -0.59426115 -15.45 -0.58144649 -15.46 -0.56752149 -15.47 -0.55257782 -15.48 -0.53670568 -15.49 -0.51999314 -15.5 -0.50252548 -15.51 -0.48438457 -15.52 -0.46564831 -15.53 -0.44639023 -15.54 -0.42667903 -15.55 -0.4065784 -15.56 -0.38614687 -15.57 -0.36543776 -15.58 -0.34449938 -15.59 -0.32337524 -15.6 -0.30210444 -15.61 -0.28072217 -15.62 -0.25926028 -15.63 -0.23774796 -15.64 -0.21621243 -15.65 -0.19467971 -15.66 -0.17317532 -15.67 -0.151725 -15.68 -0.13035535 -15.69 -0.10909443 -15.7 -0.087972231 -15.71 -0.067021016 -15.72 -0.046275592 -15.73 -0.025773414 -15.74 -0.005554575 -15.75 0.014338337 -15.76 0.033860488 -15.77 0.052965152 -15.78 0.07160415 -15.79 0.089728358 -15.8 0.10728826 -15.81 0.12423451 -15.82 0.14051856 -15.83 0.15609317 -15.84 0.17091302 -15.85 0.18493518 -15.86 0.19811956 -15.87 0.21042937 -15.88 0.22183142 -15.89 0.23229642 -15.9 0.24179926 -15.91 0.25031916 -15.92 0.25783985 -15.93 0.26434969 -15.94 0.26984175 -15.95 0.2743139 -15.96 0.27776885 -15.97 0.28021422 -15.98 0.28166254 -15.99 0.28213126 -16 0.28164276 -16.01 0.2802243 -16.02 0.27790793 -16.03 0.27473036 -16.04 0.27073277 -16.05 0.26596059 -16.06 0.26046311 -16.07 0.25429308 -16.08 0.24750623 -16.09 0.24016066 -16.1 0.23231613 -16.11 0.22403337 -16.12 0.21537322 -16.13 0.20639576 -16.14 0.19715949 -16.15 0.18772033 -16.16 0.17813085 -16.17 0.16843939 -16.18 0.15868934 -16.19 0.14891849 -16.2 0.13915849 -16.21 0.12943452 -16.22 0.11976508 -16.23 0.11016194 -16.24 0.10063032 -16.25 0.091169257 -16.26 0.081772116 -16.27 0.072427312 -16.28 0.063119179 -16.29 0.053828978 -16.3 0.044536019 -16.31 0.035218868 -16.32 0.025856602 -16.33 0.016430091 -16.34 0.0069232592 -16.35 -0.0026756944 -16.36 -0.012373163 -16.37 -0.022169103 -16.38 -0.032056144 -16.39 -0.042018857 -16.4 -0.0520332 -16.41 -0.06206616 -16.42 -0.072075595 -16.43 -0.082010284 -16.44 -0.091810192 -16.45 -0.10140693 -16.46 -0.11072444 -16.47 -0.11967981 -16.48 -0.12818438 -16.49 -0.13614487 -16.5 -0.14346476 -16.51 -0.15004574 -16.52 -0.15578929 -16.53 -0.16059833 -16.54 -0.16437896 -16.55 -0.16704219 -16.56 -0.16850571 -16.57 -0.16869568 -16.58 -0.16754843 -16.59 -0.16501214 -16.6 -0.16104843 -16.61 -0.1556338 -16.62 -0.14876097 -16.63 -0.14044005 -16.64 -0.13069949 -16.65 -0.11958684 -16.66 -0.10716921 -16.67 -0.093533546 -16.68 -0.07878654 -16.69 -0.063054266 -16.7 -0.046481499 -16.71 -0.029230694 -16.72 -0.011480636 -16.73 0.0065752349 -16.74 0.024730823 -16.75 0.042769679 -16.76 0.060467582 -16.77 0.07759537 -16.78 0.093921987 -16.79 0.10921769 -16.8 0.12325738 -16.81 0.13582401 -16.82 0.14671195 -16.83 0.15573037 -16.84 0.16270643 -16.85 0.16748832 -16.86 0.16994806 -16.87 0.16998396 -16.88 0.16752276 -16.89 0.16252136 -16.9 0.15496803 -16.91 0.14488325 -16.92 0.13231994 -16.93 0.11736322 -16.94 0.10012967 -16.95 0.080766027 -16.96 0.059447408 -16.97 0.036375087 -16.98 0.011773829 -16.99 -0.014111134 -17 -0.041017451 -17.01 -0.068669247 -17.02 -0.096780893 -17.03 -0.12506089 -17.04 -0.15321578 -17.05 -0.18095405 -17.06 -0.20798982 -17.07 -0.23404653 -17.08 -0.25886018 -17.09 -0.28218242 -17.1 -0.30378324 -17.11 -0.32345328 -17.12 -0.3410057 -17.13 -0.35627771 -17.14 -0.36913157 -17.15 -0.37945519 -17.16 -0.38716239 -17.17 -0.39219266 -17.18 -0.39451063 -17.19 -0.3941052 -17.2 -0.39098843 -17.21 -0.38519415 -17.22 -0.37677644 -17.23 -0.36580798 -17.24 -0.35237831 -17.25 -0.33659207 -17.26 -0.31856728 -17.27 -0.29843363 -17.28 -0.27633087 -17.29 -0.25240735 -17.3 -0.22681857 -17.31 -0.19972601 -17.32 -0.17129594 -17.33 -0.14169847 -17.34 -0.11110665 -17.35 -0.079695699 -17.36 -0.047642271 -17.37 -0.015123828 -17.38 0.017681999 -17.39 0.050598016 -17.4 0.083448092 -17.41 0.11605781 -17.42 0.14825519 -17.43 0.17987137 -17.44 0.21074151 -17.45 0.24070556 -17.46 0.26960921 -17.47 0.29730484 -17.48 0.32365245 -17.49 0.34852061 -17.5 0.37178744 -17.51 0.39334144 -17.52 0.4130823 -17.53 0.43092167 -17.54 0.44678368 -17.55 0.46060545 -17.56 0.47233735 -17.57 0.48194321 -17.58 0.48940025 -17.59 0.49469898 -17.6 0.49784278 -17.61 0.49884752 -17.62 0.49774096 -17.63 0.49456203 -17.64 0.48936011 -17.65 0.48219415 -17.66 0.47313192 -17.67 0.46224906 -17.68 0.44962833 -17.69 0.43535875 -17.7 0.41953492 -17.71 0.40225633 -17.72 0.38362674 -17.73 0.36375369 -17.74 0.34274803 -17.75 0.32072352 -17.76 0.29779652 -17.77 0.27408567 -17.78 0.24971162 -17.79 0.22479675 -17.8 0.19946486 -17.81 0.17384088 -17.82 0.14805047 -17.83 0.12221958 -17.84 0.096473995 -17.85 0.070938719 -17.86 0.045737359 -17.87 0.020991415 -17.88 -0.0031804749 -17.89 -0.026663339 -17.9 -0.04934669 -17.91 -0.071125356 -17.92 -0.091900285 -17.93 -0.11157932 -17.94 -0.13007791 -17.95 -0.14731972 -17.96 -0.16323719 -17.97 -0.17777195 -17.98 -0.19087509 -17.99 -0.20250737 -18 -0.21263921 -18.01 -0.22125066 -18.02 -0.22833116 -18.03 -0.23387927 -18.04 -0.2379022 -18.05 -0.24041544 -18.06 -0.24144214 -18.07 -0.2410126 -18.08 -0.23916371 -18.09 -0.23593833 -18.1 -0.23138479 -18.11 -0.22555635 -18.12 -0.21851075 -18.13 -0.21030981 -18.14 -0.20101903 -18.15 -0.19070735 -18.16 -0.17944685 -18.17 -0.16731263 -18.18 -0.15438257 -18.19 -0.14073727 -18.2 -0.12645991 -18.21 -0.11163617 -18.22 -0.096354057 -18.23 -0.080703864 -18.24 -0.064777942 -18.25 -0.048670533 -18.26 -0.032477533 -18.27 -0.016296215 -18.28 -0.00022490144 -18.29 0.015637394 -18.3 0.031191375 -18.31 0.046337895 -18.32 0.060978421 -18.33 0.075015515 -18.34 0.088353328 -18.35 0.1008981 -18.36 0.11255864 -18.37 0.12324684 -18.38 0.13287815 -18.39 0.141372 -18.4 0.14865232 -18.41 0.15464791 -18.42 0.15929293 -18.43 0.16252726 -18.44 0.16429694 -18.45 0.16455457 -18.46 0.16325974 -18.47 0.16037941 -18.48 0.15588831 -18.49 0.14976941 -18.5 0.14201425 -18.51 0.13262339 -18.52 0.12160674 -18.53 0.10898394 -18.54 0.094784645 -18.55 0.079048774 -18.56 0.06182669 -18.57 0.043179292 -18.58 0.023178016 -18.59 0.0019047182 -18.6 -0.020548559 -18.61 -0.044079955 -18.62 -0.068578289 -18.63 -0.0939237 -18.64 -0.11998842 -18.65 -0.14663769 -18.66 -0.17373077 -18.67 -0.20112208 -18.68 -0.22866242 -18.69 -0.25620028 -18.7 -0.28358317 -18.71 -0.31065896 -18.72 -0.33727731 -18.73 -0.36329096 -18.74 -0.38855701 -18.75 -0.41293816 -18.76 -0.43630383 -18.77 -0.4585311 -18.78 -0.47950563 -18.79 -0.49912237 -18.8 -0.51728609 -18.81 -0.53391181 -18.82 -0.54892505 -18.83 -0.56226192 -18.84 -0.57386905 -18.85 -0.5837034 -18.86 -0.59173196 -18.87 -0.59793126 -18.88 -0.60228693 -18.89 -0.60479307 -18.9 -0.60545158 -18.91 -0.60427156 -18.92 -0.60126857 -18.93 -0.59646396 -18.94 -0.58988428 -18.95 -0.58156065 -18.96 -0.57152823 -18.97 -0.55982578 -18.98 -0.54649526 -18.99 -0.53158161 -19 -0.51513251 -19.01 -0.49719837 -19.02 -0.4778323 -19.03 -0.45709025 -19.04 -0.43503126 -19.05 -0.41171767 -19.06 -0.38721555 -19.07 -0.36159503 -19.08 -0.3349308 -19.09 -0.3073025 -19.1 -0.27879519 -19.11 -0.24949973 -19.12 -0.21951312 -19.13 -0.18893877 -19.14 -0.15788668 -19.15 -0.12647346 -19.16 -0.094822252 -19.17 -0.063062475 -19.18 -0.031329423 -19.19 0.00023632317 -19.2 0.03148965 -19.21 0.062281839 -19.22 0.092461658 -19.23 0.12187661 -19.24 0.1503743 -19.25 0.17780395 -19.26 0.20401796 -19.27 0.22887356 -19.28 0.25223445 -19.29 0.2739725 -19.3 0.29396932 -19.31 0.31211782 -19.32 0.32832362 -19.33 0.34250635 -19.34 0.35460074 -19.35 0.36455756 -19.36 0.3723443 -19.37 0.37794564 -19.38 0.38136373 -19.39 0.38261812 -19.4 0.38174557 -19.41 0.37879954 -19.42 0.37384955 -19.43 0.36698025 -19.44 0.35829041 -19.45 0.34789167 -19.46 0.33590726 -19.47 0.32247055 -19.48 0.3077236 -19.49 0.29181562 -19.5 0.27490148 -19.51 0.25714018 -19.52 0.23869345 -19.53 0.21972427 -19.54 0.20039565 -19.55 0.18086933 -19.56 0.16130469 -19.57 0.1418577 -19.58 0.12268003 -19.59 0.10391821 -19.6 0.085712909 -19.61 0.068198325 -19.62 0.051501644 -19.63 0.03574257 -19.64 0.021032931 -19.65 0.0074763413 -19.66 -0.0048320935 -19.67 -0.015806031 -19.68 -0.025368116 -19.69 -0.033450191 -19.7 -0.03999348 -19.71 -0.044948773 -19.72 -0.048276604 -19.73 -0.049947419 -19.74 -0.04994176 -19.75 -0.048250434 -19.76 -0.044874692 -19.77 -0.039826409 -19.78 -0.033128248 -19.79 -0.024813833 -19.8 -0.014927894 -19.81 -0.0035264029 -19.82 0.0093233269 -19.83 0.023542574 -19.84 0.039041192 -19.85 0.055717657 -19.86 0.073459185 -19.87 0.092141943 -19.88 0.11163136 -19.89 0.13178256 -19.9 0.15244094 -19.91 0.17344286 -19.92 0.19461653 -19.93 0.21578307 -19.94 0.23675769 -19.95 0.25735115 -19.96 0.27737127 -19.97 0.29662472 -19.98 0.31491894 -19.99 0.33206415 -20 0.34787557 -20.01 0.36217565 -20.02 0.3747964 -20.03 0.38558172 -20.04 0.39438974 -20.05 0.401095 -20.06 0.40559063 -20.07 0.40779027 -20.08 0.40762978 -20.09 0.40506874 -20.1 0.40009157 -20.11 0.39270837 -20.12 0.38295534 -20.13 0.3708948 -20.14 0.35661483 -20.15 0.34022844 -20.16 0.32187234 -20.17 0.30170534 -20.18 0.27990628 -20.19 0.2566717 -20.2 0.23221315 -20.21 0.20675424 -20.22 0.1805275 -20.23 0.1537711 -20.24 0.12672543 -20.25 0.099629774 -20.26 0.072718887 -20.27 0.046219812 -20.28 0.020348797 -20.29 -0.0046915411 -20.3 -0.028714773 -20.31 -0.051552891 -20.32 -0.073058196 -20.33 -0.093104787 -20.34 -0.11158966 -20.35 -0.12843341 -20.36 -0.14358047 -20.37 -0.15699903 -20.38 -0.16868049 -20.39 -0.17863861 -20.4 -0.18690829 -20.41 -0.19354408 -20.42 -0.19861838 -20.43 -0.20221952 -20.44 -0.20444953 -20.45 -0.20542192 -20.46 -0.20525925 -20.47 -0.20409078 -20.48 -0.20205001 -20.49 -0.19927236 -20.5 -0.19589283 -20.51 -0.1920439 -20.52 -0.18785345 -20.53 -0.18344295 -20.54 -0.17892576 -20.55 -0.17440574 -20.56 -0.16997601 -20.57 -0.16571796 -20.58 -0.16170061 -20.59 -0.15798006 -20.6 -0.1545993 -20.61 -0.15158827 -20.62 -0.14896407 -20.63 -0.14673154 -20.64 -0.1448839 -20.65 -0.14340368 -20.66 -0.14226382 -20.67 -0.14142891 -20.68 -0.14085655 -20.69 -0.14049878 -20.7 -0.1403037 -20.71 -0.14021698 -20.72 -0.14018349 -20.73 -0.14014889 -20.74 -0.1400611 -20.75 -0.1398718 -20.76 -0.13953775 -20.77 -0.13902201 -20.78 -0.13829493 -20.79 -0.1373351 -20.8 -0.13612996 -20.81 -0.1346763 -20.82 -0.13298048 -20.83 -0.13105843 -20.84 -0.12893551 -20.85 -0.12664601 -20.86 -0.12423253 -20.87 -0.12174514 -20.88 -0.11924037 -20.89 -0.11677995 -20.9 -0.11442955 -20.91 -0.11225728 -20.92 -0.11033216 -20.93 -0.10872252 -20.94 -0.10749437 -20.95 -0.10670982 -20.96 -0.10642542 -20.97 -0.10669072 -20.98 -0.10754681 -20.99 -0.10902507 -21 -0.11114595 -21.01 -0.11391809 -21.02 -0.11733751 -21.03 -0.12138704 -21.04 -0.126036 -21.05 -0.13124012 -21.06 -0.13694163 -21.07 -0.1430697 -21.08 -0.14954102 -21.09 -0.15626068 -21.1 -0.16312324 -21.11 -0.17001407 -21.12 -0.17681075 -21.13 -0.18338483 -21.14 -0.18960356 -21.15 -0.19533191 -21.16 -0.20043453 -21.17 -0.2047779 -21.18 -0.20823247 -21.19 -0.21067478 -21.2 -0.2119896 -21.21 -0.21207196 -21.22 -0.21082914 -21.23 -0.20818245 -21.24 -0.20406896 -21.25 -0.19844296 -21.26 -0.19127722 -21.27 -0.18256406 -21.28 -0.17231614 -21.29 -0.16056692 -21.3 -0.14737094 -21.31 -0.13280372 -21.32 -0.11696138 -21.33 -0.099960007 -21.34 -0.081934624 -21.35 -0.063037981 -21.36 -0.043438999 -21.37 -0.023320977 -21.38 -0.0028795685 -21.39 0.017679462 -21.4 0.038142658 -21.41 0.058291444 -21.42 0.077904808 -21.43 0.096762064 -21.44 0.11464565 -21.45 0.13134393 -21.46 0.14665395 -21.47 0.16038409 -21.48 0.17235664 -21.49 0.18241021 -21.5 0.19040186 -21.51 0.19620916 -21.52 0.19973181 -21.53 0.20089318 -21.54 0.19964135 -21.55 0.19595001 -21.56 0.18981886 -21.57 0.18127388 -21.58 0.17036704 -21.59 0.15717588 -21.6 0.14180267 -21.61 0.12437324 -21.62 0.10503566 -21.63 0.083958475 -21.64 0.0613289 -21.65 0.037350655 -21.66 0.012241727 -21.67 -0.013768048 -21.68 -0.040439482 -21.69 -0.067526611 -21.7 -0.094779294 -21.71 -0.12194581 -21.72 -0.14877543 -21.73 -0.17502091 -21.74 -0.20044087 -21.75 -0.22480213 -21.76 -0.24788185 -21.77 -0.26946947 -21.78 -0.28936863 -21.79 -0.30739872 -21.8 -0.32339639 -21.81 -0.33721678 -21.82 -0.34873459 -21.83 -0.35784492 -21.84 -0.36446396 -21.85 -0.36852944 -21.86 -0.37000089 -21.87 -0.36885978 -21.88 -0.36510941 -21.89 -0.35877465 -21.9 -0.34990156 -21.91 -0.33855679 -21.92 -0.32482688 -21.93 -0.30881741 -21.94 -0.29065199 -21.95 -0.27047117 -21.96 -0.24843118 -21.97 -0.22470262 -21.98 -0.19946897 -21.99 -0.1729251 -22 -0.1452756 -22.01 -0.11673307 -22.02 -0.087516405 -22.03 -0.057848891 -22.04 -0.027956383 -22.05 0.0019346223 -22.06 0.031598906 -22.07 0.060814456 -22.08 0.089364385 -22.09 0.11703882 -22.1 0.14363676 -22.11 0.16896786 -22.12 0.19285412 -22.13 0.21513155 -22.14 0.23565163 -22.15 0.25428272 -22.16 0.27091129 -22.17 0.28544297 -22.18 0.29780347 -22.19 0.3079393 -22.2 0.31581823 -22.21 0.32142967 -22.22 0.32478464 -22.23 0.32591571 -22.24 0.32487658 -22.25 0.32174142 -22.26 0.31660412 -22.27 0.3095771 -22.28 0.3007901 -22.29 0.2903886 -22.3 0.27853217 -22.31 0.26539255 -22.32 0.25115161 -22.33 0.23599921 -22.34 0.22013086 -22.35 0.20374542 -22.36 0.18704264 -22.37 0.17022082 -22.38 0.15347436 -22.39 0.13699145 -22.4 0.12095187 -22.41 0.10552486 -22.42 0.090867183 -22.43 0.077121371 -22.44 0.06441422 -22.45 0.052855484 -22.46 0.042536849 -22.47 0.033531179 -22.48 0.025892036 -22.49 0.019653485 -22.5 0.014830179 -22.51 0.011417712 -22.52 0.0093932279 -22.53 0.0087162656 -22.54 0.00932982 -22.55 0.011161589 -22.56 0.014125378 -22.57 0.018122635 -22.58 0.023044075 -22.59 0.028771373 -22.6 0.035178886 -22.61 0.042135376 -22.62 0.049505713 -22.63 0.057152522 -22.64 0.064937765 -22.65 0.072724233 -22.66 0.080376942 -22.67 0.087764415 -22.68 0.09475985 -22.69 0.10124218 -22.7 0.10709701 -22.71 0.11221745 -22.72 0.11650483 -22.73 0.11986934 -22.74 0.12223058 -22.75 0.12351799 -22.76 0.12367127 -22.77 0.12264069 -22.78 0.12038734 -22.79 0.11688338 -22.8 0.11211212 -22.81 0.10606817 -22.82 0.098757445 -22.83 0.090197155 -22.84 0.080415693 -22.85 0.069452468 -22.86 0.057357649 -22.87 0.044191824 -22.88 0.030025561 -22.89 0.014938869 -22.9 -0.00097944134 -22.91 -0.017632502 -22.92 -0.034916231 -22.93 -0.052720274 -22.94 -0.070929033 -22.95 -0.089422772 -22.96 -0.10807878 -22.97 -0.1267726 -22.98 -0.14537924 -22.99 -0.16377443 -23 -0.18183587 -23.01 -0.19944437 -23.02 -0.21648499 -23.03 -0.23284809 -23.04 -0.24843022 -23.05 -0.26313496 -23.06 -0.27687355 -23.07 -0.28956544 -23.08 -0.30113861 -23.09 -0.31152979 -23.1 -0.3206845 -23.11 -0.32855694 -23.12 -0.33510972 -23.13 -0.34031355 -23.14 -0.3441467 -23.15 -0.34659452 -23.16 -0.34764879 -23.17 -0.34730708 -23.18 -0.34557218 -23.19 -0.34245145 -23.2 -0.3379563 -23.21 -0.3321017 -23.22 -0.32490587 -23.23 -0.31638997 -23.24 -0.30657802 -23.25 -0.29549692 -23.26 -0.28317659 -23.27 -0.26965029 -23.28 -0.25495503 -23.29 -0.23913207 -23.3 -0.22222757 -23.31 -0.20429324 -23.32 -0.18538703 -23.33 -0.16557385 -23.34 -0.14492621 -23.35 -0.12352476 -23.36 -0.10145884 -23.37 -0.078826698 -23.38 -0.055735682 -23.39 -0.032302151 -23.4 -0.0086511793 -23.41 0.015083995 -23.42 0.038762762 -23.43 0.062238194 -23.44 0.085358342 -23.45 0.10796776 -23.46 0.12990926 -23.47 0.1510258 -23.48 0.17116256 -23.49 0.19016909 -23.5 0.20790152 -23.51 0.22422475 -23.52 0.23901465 -23.53 0.25216008 -23.54 0.26356478 -23.55 0.27314914 -23.56 0.28085159 -23.57 0.28662982 -23.58 0.29046165 -23.59 0.29234556 -23.6 0.2923009 -23.61 0.29036772 -23.62 0.28660624 -23.63 0.28109605 -23.64 0.27393489 -23.65 0.26523724 -23.66 0.25513257 -23.67 0.24376339 -23.68 0.23128315 -23.69 0.21785398 -23.7 0.20364432 -23.71 0.18882656 -23.72 0.17357458 -23.73 0.15806148 -23.74 0.14245723 -23.75 0.12692651 -23.76 0.11162675 -23.77 0.096706183 -23.78 0.082302226 -23.79 0.068539991 -23.8 0.055531024 -23.81 0.043372251 -23.82 0.032145151 -23.83 0.021915138 -23.84 0.012731154 -23.85 0.004625471 -23.86 -0.0023863109 -23.87 -0.0083050737 -23.88 -0.013147811 -23.89 -0.016947084 -23.9 -0.019750311 -23.91 -0.021618902 -23.92 -0.022627247 -23.93 -0.022861557 -23.94 -0.022418591 -23.95 -0.021404246 -23.96 -0.01993205 -23.97 -0.018121558 -23.98 -0.016096665 -23.99 -0.013983859 -24 -0.011910428 -24.01 -0.010002645 -24.02 -0.0083839549 -24.03 -0.0071731821 -24.04 -0.006482796 -24.05 -0.0064172505 -24.06 -0.0070714306 -24.07 -0.0085292305 -24.08 -0.010862288 -24.09 -0.0141289 -24.1 -0.01837313 -24.11 -0.023624143 -24.12 -0.029895753 -24.13 -0.037186214 -24.14 -0.045478243 -24.15 -0.054739282 -24.16 -0.064921976 -24.17 -0.07596488 -24.18 -0.087793349 -24.19 -0.10032062 -24.2 -0.11344904 -24.21 -0.12707143 -24.22 -0.14107256 -24.23 -0.15533067 -24.24 -0.16971908 -24.25 -0.18410782 -24.26 -0.19836522 -24.27 -0.21235953 -24.28 -0.22596046 -24.29 -0.23904069 -24.3 -0.25147727 -24.31 -0.26315296 -24.32 -0.27395747 -24.33 -0.28378859 -24.34 -0.2925532 -24.35 -0.30016821 -24.36 -0.30656131 -24.37 -0.31167168 -24.38 -0.3154505 -24.39 -0.3178614 -24.4 -0.31888076 -24.41 -0.31849786 -24.42 -0.31671493 -24.43 -0.31354704 -24.44 -0.30902188 -24.45 -0.30317938 -24.46 -0.29607121 -24.47 -0.28776013 -24.48 -0.27831923 -24.49 -0.267831 -24.5 -0.25638636 -24.51 -0.24408349 -24.52 -0.23102668 -24.53 -0.21732496 -24.54 -0.20309084 -24.55 -0.1884389 -24.56 -0.17348441 -24.57 -0.15834199 -24.58 -0.14312424 -24.59 -0.12794055 -24.6 -0.11289588 -24.61 -0.098089721 -24.62 -0.083615186 -24.63 -0.069558195 -24.64 -0.055996862 -24.65 -0.043001029 -24.66 -0.030631955 -24.67 -0.018942178 -24.68 -0.0079755252 -24.69 0.0022327386 -24.7 0.011655624 -24.71 0.020274027 -24.72 0.028076248 -24.73 0.03505744 -24.74 0.041219008 -24.75 0.046567992 -24.76 0.05111643 -24.77 0.054880755 -24.78 0.057881207 -24.79 0.060141297 -24.8 0.061687331 -24.81 0.06254799 -24.82 0.062753983 -24.83 0.062337769 -24.84 0.061333342 -24.85 0.059776081 -24.86 0.057702658 -24.87 0.05515099 -24.88 0.052160229 -24.89 0.048770781 -24.9 0.045024341 -24.91 0.040963937 -24.92 0.036633963 -24.93 0.032080208 -24.94 0.02734986 -24.95 0.022491479 -24.96 0.017554937 -24.97 0.012591316 -24.98 0.0076527615 -24.99 0.0027922802 -25 -0.001936508 -25.01 -0.0064796817 -25.02 -0.010783385 -25.03 -0.014794254 -25.04 -0.01845991 -25.05 -0.021729503 -25.06 -0.024554326 -25.07 -0.026888474 -25.08 -0.028689559 -25.09 -0.029919471 -25.1 -0.030545162 -25.11 -0.030539462 -25.12 -0.029881893 -25.13 -0.028559473 -25.14 -0.026567489 -25.15 -0.02391021 -25.16 -0.020601523 -25.17 -0.016665462 -25.18 -0.012136606 -25.19 -0.0070603115 -25.2 -0.0014927782 -25.21 0.0044991047 -25.22 0.010838123 -25.23 0.017437342 -25.24 0.024200948 -25.25 0.031025334 -25.26 0.03780043 -25.27 0.044411245 -25.28 0.050739618 -25.29 0.056666149 -25.3 0.062072266 -25.31 0.06684239 -25.32 0.070866161 -25.33 0.074040668 -25.34 0.076272631 -25.35 0.07748049 -25.36 0.077596338 -25.37 0.076567661 -25.38 0.074358836 -25.39 0.070952346 -25.4 0.066349677 -25.41 0.060571887 -25.42 0.053659808 -25.43 0.045673896 -25.44 0.036693715 -25.45 0.026817079 -25.46 0.016158855 -25.47 0.0048494708 -25.48 -0.0069668544 -25.49 -0.019134108 -25.5 -0.031486676 -25.51 -0.043851679 -25.52 -0.056051415 -25.53 -0.067905852 -25.54 -0.079235143 -25.55 -0.089862102 -25.56 -0.099614624 -25.57 -0.10832801 -25.58 -0.11584714 -25.59 -0.12202854 -25.6 -0.12674222 -25.61 -0.12987337 -25.62 -0.13132384 -25.63 -0.13101341 -25.64 -0.12888084 -25.65 -0.1248847 -25.66 -0.11900402 -25.67 -0.11123866 -25.68 -0.10160951 -25.69 -0.090158413 -25.7 -0.076947957 -25.71 -0.062060943 -25.72 -0.045599718 -25.73 -0.027685259 -25.74 -0.0084560593 -25.75 0.011933196 -25.76 0.033313139 -25.77 0.055501416 -25.78 0.078304555 -25.79 0.10151998 -25.8 0.12493815 -25.81 0.14834482 -25.82 0.17152339 -25.83 0.19425724 -25.84 0.21633216 -25.85 0.23753871 -25.86 0.25767455 -25.87 0.27654667 -25.88 0.29397349 -25.89 0.30978687 -25.9 0.32383383 -25.91 0.33597814 -25.92 0.34610169 -25.93 0.35410561 -25.94 0.35991108 -25.95 0.36346 -25.96 0.36471528 -25.97 0.36366104 -25.98 0.3603024 -25.99 0.35466519 -26 0.34679537 -26.01 0.33675832 -26.02 0.32463791 -26.03 0.31053548 -26.04 0.29456867 -26.05 0.2768701 -26.06 0.25758605 -26.07 0.23687495 -26.08 0.21490593 -26.09 0.19185718 -26.1 0.16791436 -26.11 0.14326895 -26.12 0.1181165 -26.13 0.092654927 -26.14 0.067082727 -26.15 0.041597192 -26.16 0.0163926 -26.17 -0.0083416052 -26.18 -0.032422615 -26.19 -0.055676052 -26.2 -0.077937714 -26.21 -0.099055264 -26.22 -0.11888984 -26.23 -0.13731755 -26.24 -0.15423083 -26.25 -0.16953964 -26.26 -0.18317251 -26.27 -0.19507728 -26.28 -0.20522174 -26.29 -0.21359385 -26.3 -0.22020188 -26.31 -0.22507413 -26.32 -0.22825843 -26.33 -0.22982136 -26.34 -0.22984724 -26.35 -0.22843679 -26.36 -0.22570562 -26.37 -0.22178255 -26.38 -0.21680764 -26.39 -0.21093022 -26.4 -0.20430673 -26.41 -0.19709851 -26.42 -0.18946956 -26.43 -0.18158435 -26.44 -0.17360561 -26.45 -0.16569223 -26.46 -0.15799727 -26.47 -0.15066606 -26.48 -0.14383452 -26.49 -0.13762758 -26.5 -0.13215779 -26.51 -0.1275242 -26.52 -0.12381135 -26.53 -0.12108849 -26.54 -0.11940901 -26.55 -0.1188101 -26.56 -0.11931254 -26.57 -0.12092075 -26.58 -0.12362298 -26.59 -0.12739172 -26.6 -0.13218427 -26.61 -0.13794343 -26.62 -0.14459843 -26.63 -0.15206594 -26.64 -0.16025124 -26.65 -0.1690495 -26.66 -0.17834719 -26.67 -0.18802354 -26.68 -0.19795212 -26.69 -0.20800244 -26.7 -0.21804163 -26.71 -0.22793607 -26.72 -0.23755308 -26.73 -0.24676252 -26.74 -0.25543839 -26.75 -0.26346032 -26.76 -0.27071498 -26.77 -0.27709739 -26.78 -0.28251205 -26.79 -0.286874 -26.8 -0.2901097 -26.81 -0.29215772 -26.82 -0.29296931 -26.83 -0.29250879 -26.84 -0.2907538 -26.85 -0.28769538 -26.86 -0.2833379 -26.87 -0.27769892 -26.88 -0.27080879 -26.89 -0.26271033 -26.9 -0.25345821 -26.91 -0.24311837 -26.92 -0.23176731 -26.93 -0.21949127 -26.94 -0.20638539 -26.95 -0.19255276 -26.96 -0.17810336 -26.97 -0.16315301 -26.98 -0.14782217 -26.99 -0.13223469 -27 -0.11651646 -27.01 -0.10079408 -27.02 -0.085193275 -27.03 -0.069837482 -27.04 -0.054846206 -27.05 -0.04033345 -27.06 -0.026406114 -27.07 -0.013162424 -27.08 -0.00069041427 -27.09 0.010933489 -27.1 0.021645761 -27.11 0.031396899 -27.12 0.040152337 -27.13 0.047893116 -27.14 0.054616283 -27.15 0.060334984 -27.16 0.065078236 -27.17 0.068890371 -27.18 0.071830134 -27.19 0.073969461 -27.2 0.075391939 -27.21 0.076190991 -27.22 0.076467807 -27.23 0.076329079 -27.24 0.075884592 -27.25 0.07524473 -27.26 0.074517956 -27.27 0.073808336 -27.28 0.073213178 -27.29 0.072820833 -27.3 0.072708729 -27.31 0.072941679 -27.32 0.07357052 -27.33 0.074631089 -27.34 0.076143586 -27.35 0.078112316 -27.36 0.08052581 -27.37 0.083357321 -27.38 0.08656566 -27.39 0.090096351 -27.4 0.093883059 -27.41 0.097849246 -27.42 0.10191 -27.43 0.10597402 -27.44 0.10994562 -27.45 0.1137268 -27.46 0.11721934 -27.47 0.12032669 -27.48 0.12295593 -27.49 0.12501945 -27.5 0.12643658 -27.51 0.12713499 -27.52 0.12705192 -27.53 0.12613522 -27.54 0.12434417 -27.55 0.12165016 -27.56 0.11803713 -27.57 0.11350186 -27.58 0.10805407 -27.59 0.10171635 -27.6 0.094523963 -27.61 0.08652444 -27.62 0.077777066 -27.63 0.068352204 -27.64 0.058330477 -27.65 0.04780181 -27.66 0.036864333 -27.67 0.025623164 -27.68 0.014189052 -27.69 0.0026769225 -27.7 -0.0087956827 -27.71 -0.020110246 -27.72 -0.031148967 -27.73 -0.041796494 -27.74 -0.051941648 -27.75 -0.06147912 -27.76 -0.070311094 -27.77 -0.078348769 -27.78 -0.085513736 -27.79 -0.091739174 -27.8 -0.096970846 -27.81 -0.10116784 -27.82 -0.1043031 -27.83 -0.10636357 -27.84 -0.10735026 -27.85 -0.10727779 -27.86 -0.1061739 -27.87 -0.10407853 -27.88 -0.10104282 -27.89 -0.097127843 -27.9 -0.092403242 -27.91 -0.086945724 -27.92 -0.080837547 -27.93 -0.07416497 -27.94 -0.06701675 -27.95 -0.059482723 -27.96 -0.051652491 -27.97 -0.04361426 -27.98 -0.035453842 -27.99 -0.027253835 -28 -0.019092991 -28.01 -0.011045759 -28.02 -0.0031820013 -28.03 0.0044331481 -28.04 0.011739296 -28.05 0.01868071 -28.06 0.025206177 -28.07 0.031268832 -28.08 0.036825984 -28.09 0.041838979 -28.1 0.046273109 -28.11 0.050097602 -28.12 0.053285686 -28.13 0.055814754 -28.14 0.057666606 -28.15 0.05882777 -28.16 0.05928989 -28.17 0.059050145 -28.18 0.058111685 -28.19 0.056484059 -28.2 0.054183585 -28.21 0.051233666 -28.22 0.04766499 -28.23 0.043515618 -28.24 0.038830929 -28.25 0.033663414 -28.26 0.028072304 -28.27 0.022123046 -28.28 0.01588663 -28.29 0.0094387629 -28.3 0.0028589408 -28.31 -0.0037705929 -28.32 -0.010365953 -28.33 -0.016842769 -28.34 -0.02311735 -28.35 -0.029107856 -28.36 -0.034735417 -28.37 -0.039925213 -28.38 -0.044607471 -28.39 -0.048718379 -28.4 -0.052200908 -28.41 -0.055005528 -28.42 -0.057090833 -28.43 -0.058424063 -28.44 -0.058981537 -28.45 -0.058749002 -28.46 -0.057721908 -28.47 -0.055905605 -28.48 -0.053315477 -28.49 -0.049977021 -28.5 -0.045925847 -28.51 -0.041207615 -28.52 -0.035877902 -28.53 -0.03000197 -28.54 -0.023654441 -28.55 -0.016918851 -28.56 -0.0098870713 -28.57 -0.002658585 -28.58 0.0046603997 -28.59 0.011958008 -28.6 0.019117934 -28.61 0.026020849 -28.62 0.032545983 -28.63 0.038572861 -28.64 0.043983163 -28.65 0.0486627 -28.66 0.05250344 -28.67 0.055405568 -28.68 0.057279515 -28.69 0.058047904 -28.7 0.057647373 -28.71 0.056030207 -28.72 0.053165735 -28.73 0.049041445 -28.74 0.043663774 -28.75 0.037058547 -28.76 0.029271026 -28.77 0.020365581 -28.78 0.010424953 -28.79 -0.00045085986 -28.8 -0.01214608 -28.81 -0.024530967 -28.82 -0.03746392 -28.83 -0.050793827 -28.84 -0.064362606 -28.85 -0.078007866 -28.86 -0.091565646 -28.87 -0.10487315 -28.88 -0.11777143 -28.89 -0.13010793 -28.9 -0.14173894 -28.91 -0.15253169 -28.92 -0.16236636 -28.93 -0.17113768 -28.94 -0.17875627 -28.95 -0.18514968 -28.96 -0.19026305 -28.97 -0.1940595 -28.98 -0.19652017 -28.99 -0.19764397 -29 -0.19744707 -29.01 -0.19596213 -29.02 -0.19323727 -29.03 -0.18933488 -29.04 -0.18433024 -29.05 -0.17831003 -29.06 -0.17137069 -29.07 -0.16361669 -29.08 -0.15515882 -29.09 -0.14611234 -29.1 -0.13659521 -29.11 -0.12672628 -29.12 -0.11662355 -29.13 -0.10640246 -29.14 -0.096174303 -29.15 -0.086044648 -29.16 -0.076111988 -29.17 -0.066466451 -29.18 -0.057188691 -29.19 -0.04834895 -29.2 -0.040006309 -29.21 -0.032208138 -29.22 -0.024989765 -29.23 -0.018374363 -29.24 -0.012373061 -29.25 -0.0069852861 -29.26 -0.0021993203 -29.27 0.0020069314 -29.28 0.0056649783 -29.29 0.0088146087 -29.3 0.011502607 -29.31 0.013781354 -29.32 0.015707338 -29.33 0.017339623 -29.34 0.018738303 -29.35 0.019962976 -29.36 0.021071288 -29.37 0.022117573 -29.38 0.02315161 -29.39 0.024217546 -29.4 0.025352987 -29.41 0.026588283 -29.42 0.027946011 -29.43 0.029440661 -29.44 0.031078526 -29.45 0.032857777 -29.46 0.034768717 -29.47 0.036794192 -29.48 0.038910135 -29.49 0.041086219 -29.5 0.043286593 -29.51 0.045470669 -29.52 0.047593936 -29.53 0.049608769 -29.54 0.051465219 -29.55 0.053111738 -29.56 0.054495849 -29.57 0.0555647 -29.58 0.05626553 -29.59 0.056545981 -29.6 0.056354286 -29.61 0.05563928 -29.62 0.054350239 -29.63 0.052436538 -29.64 0.04984709 -29.65 0.046529586 -29.66 0.042429513 -29.67 0.037488954 -29.68 0.031645174 -29.69 0.024829022 -29.7 0.016963168 -29.71 0.0079602396 -29.72 -0.0022790883 -29.73 -0.013867956 -29.74 -0.026935023 -29.75 -0.041625887 -29.76 -0.058104082 -29.77 -0.076551487 -29.78 -0.097167998 -29.79 -0.1201703 -29.8 -0.14578963 -29.81 -0.17426837 -29.82 -0.20585545 -29.83 -0.24080055 -29.84 -0.27934713 -29.85 -0.32172438 -29.86 -0.3681384 -29.87 -0.41876274 -29.88 -0.47372877 -29.89 -0.53311618 -29.9 -0.5969442 -29.91 -0.66516379 -29.92 -0.73765145 -29.93 -0.81420501 -29.94 -0.89454169 -29.95 -0.97829878 -29.96 -1.0650371 -29.97 -1.1542474 -29.98 -1.2453587 -29.99 -1.3377505 -30 -1.4307653 -& -@target G3.S3 -@type xy -0 -2 -0.01 -2.0674838 -0.02 -2.0391126 -0.03 -2.0301573 -0.04 -2.0258321 -0.05 -2.023132 -0.06 -2.0210358 -0.07 -2.0191078 -0.08 -2.0171495 -0.09 -2.0150813 -0.1 -2.0128943 -0.11 -2.0106244 -0.12 -2.0083355 -0.13 -2.0061252 -0.14 -2.0040848 -0.15 -2.0023009 -0.16 -2.0008495 -0.17 -1.99979 -0.18 -1.9991599 -0.19 -1.9989717 -0.2 -1.9992117 -0.21 -1.99984 -0.22 -2.0007922 -0.23 -2.0019904 -0.24 -2.0033211 -0.25 -2.0046664 -0.26 -2.005915 -0.27 -2.0069615 -0.28 -2.0077131 -0.29 -2.0080951 -0.3 -2.0080561 -0.31 -2.007571 -0.32 -2.0066427 -0.33 -2.0053024 -0.34 -2.0036003 -0.35 -2.0016204 -0.36 -1.9994812 -0.37 -1.9972959 -0.38 -1.9951824 -0.39 -1.9932569 -0.4 -1.991627 -0.41 -1.9903862 -0.42 -1.9896094 -0.43 -1.9893489 -0.44 -1.9896331 -0.45 -1.9904703 -0.46 -1.9918584 -0.47 -1.9937264 -0.48 -1.9960162 -0.49 -1.99866 -0.5 -2.0015857 -0.51 -2.0047228 -0.52 -2.0080074 -0.53 -2.0113866 -0.54 -2.0148222 -0.55 -2.0182918 -0.56 -2.0217895 -0.57 -2.0253173 -0.58 -2.0289084 -0.59 -2.0325922 -0.6 -2.0363979 -0.61 -2.0403478 -0.62 -2.044451 -0.63 -2.048697 -0.64 -2.0530505 -0.65 -2.0574472 -0.66 -2.0617913 -0.67 -2.0659559 -0.68 -2.0697651 -0.69 -2.07303 -0.7 -2.075554 -0.71 -2.077129 -0.72 -2.0775505 -0.73 -2.0766298 -0.74 -2.0742053 -0.75 -2.0701541 -0.76 -2.0644031 -0.77 -2.0569364 -0.78 -2.0478025 -0.79 -2.037074 -0.8 -2.0249602 -0.81 -2.0117658 -0.82 -1.997804 -0.83 -1.9834321 -0.84 -1.9690381 -0.85 -1.9550252 -0.86 -1.9417948 -0.87 -1.9297283 -0.88 -1.9191711 -0.89 -1.9104162 -0.9 -1.9037391 -0.91 -1.8993571 -0.92 -1.8972138 -0.93 -1.8972669 -0.94 -1.8993938 -0.95 -1.9033861 -0.96 -1.908971 -0.97 -1.9158167 -0.98 -1.9235503 -0.99 -1.9317784 -1 -1.940105 -1.01 -1.9481458 -1.02 -1.9555004 -1.03 -1.9619011 -1.04 -1.9671291 -1.05 -1.9710407 -1.06 -1.9735704 -1.07 -1.9747321 -1.08 -1.9746141 -1.09 -1.9733713 -1.1 -1.9712133 -1.11 -1.9683899 -1.12 -1.9651743 -1.13 -1.9618626 -1.14 -1.9587386 -1.15 -1.9560357 -1.16 -1.9539438 -1.17 -1.9525984 -1.18 -1.9520746 -1.19 -1.9523842 -1.2 -1.9534784 -1.21 -1.9552523 -1.22 -1.957555 -1.23 -1.9602023 -1.24 -1.9629838 -1.25 -1.9656736 -1.26 -1.9680816 -1.27 -1.9700512 -1.28 -1.9714688 -1.29 -1.9722747 -1.3 -1.9724677 -1.31 -1.9721071 -1.32 -1.9713095 -1.33 -1.970242 -1.34 -1.9691106 -1.35 -1.9681556 -1.36 -1.9676393 -1.37 -1.9677813 -1.38 -1.9687709 -1.39 -1.9707466 -1.4 -1.973783 -1.41 -1.9778786 -1.42 -1.9829506 -1.43 -1.9888335 -1.44 -1.9952834 -1.45 -2.0019878 -1.46 -2.0085695 -1.47 -2.0145713 -1.48 -2.0195989 -1.49 -2.0232641 -1.5 -2.0252253 -1.51 -2.0252098 -1.52 -2.0230391 -1.53 -2.0186465 -1.54 -2.0120871 -1.55 -2.0035463 -1.56 -1.9933361 -1.57 -1.9818883 -1.58 -1.9697531 -1.59 -1.9576261 -1.6 -1.9461776 -1.61 -1.9360869 -1.62 -1.9280071 -1.63 -1.9225265 -1.64 -1.9201346 -1.65 -1.9211891 -1.66 -1.9258906 -1.67 -1.9342623 -1.68 -1.9461399 -1.69 -1.9613233 -1.7 -1.9790672 -1.71 -1.9986086 -1.72 -2.0191007 -1.73 -2.039612 -1.74 -2.0591662 -1.75 -2.0767918 -1.76 -2.0915723 -1.77 -2.1026942 -1.78 -2.1094905 -1.79 -2.111482 -1.8 -2.1081712 -1.81 -2.0996483 -1.82 -2.0863429 -1.83 -2.0687763 -1.84 -2.0476867 -1.85 -2.0240101 -1.86 -1.9988348 -1.87 -1.9733501 -1.88 -1.9487947 -1.89 -1.9263928 -1.9 -1.9072967 -1.91 -1.8926857 -1.92 -1.883543 -1.93 -1.8802088 -1.94 -1.8829654 -1.95 -1.8918062 -1.96 -1.9064302 -1.97 -1.9262526 -1.98 -1.9504278 -1.99 -1.9778882 -2 -2.0073913 -2.01 -2.0375772 -2.02 -2.0670077 -2.03 -2.0940702 -2.04 -2.1175407 -2.05 -2.1362998 -2.06 -2.1494528 -2.07 -2.1563682 -2.08 -2.1567139 -2.09 -2.1504754 -2.1 -2.1379573 -2.11 -2.1197702 -2.12 -2.0968072 -2.13 -2.0701961 -2.14 -2.0411708 -2.15 -2.0114454 -2.16 -1.9825068 -2.17 -1.9557977 -2.18 -1.93265 -2.19 -1.9142236 -2.2 -1.9014465 -2.21 -1.8949702 -2.22 -1.8951403 -2.23 -1.9019777 -2.24 -1.9151758 -2.25 -1.9343842 -2.26 -1.958389 -2.27 -1.9859255 -2.28 -2.0156623 -2.29 -2.0461728 -2.3 -2.0760008 -2.31 -2.1037341 -2.32 -2.1280689 -2.33 -2.1478773 -2.34 -2.1622532 -2.35 -2.1705608 -2.36 -2.172154 -2.37 -2.1670584 -2.38 -2.1558484 -2.39 -2.1391226 -2.4 -2.1177206 -2.41 -2.0926777 -2.42 -2.0651657 -2.43 -2.0364323 -2.44 -2.0077347 -2.45 -1.9802761 -2.46 -1.9551466 -2.47 -1.9333227 -2.48 -1.9156172 -2.49 -1.9023711 -2.5 -1.8937444 -2.51 -1.8896353 -2.52 -1.8896933 -2.53 -1.893349 -2.54 -1.8998489 -2.55 -1.9083081 -2.56 -1.9177586 -2.57 -1.9272138 -2.58 -1.9357089 -2.59 -1.9422567 -2.6 -1.9462565 -2.61 -1.9472206 -2.62 -1.9448785 -2.63 -1.9391935 -2.64 -1.9303612 -2.65 -1.9188029 -2.66 -1.9051383 -2.67 -1.8901503 -2.68 -1.8747426 -2.69 -1.8598873 -2.7 -1.8469741 -2.71 -1.836709 -2.72 -1.8298668 -2.73 -1.8271011 -2.74 -1.8288705 -2.75 -1.8354124 -2.76 -1.846727 -2.77 -1.862568 -2.78 -1.8824604 -2.79 -1.9057155 -2.8 -1.9314665 -2.81 -1.9588405 -2.82 -1.9865051 -2.83 -2.0132447 -2.84 -2.0379745 -2.85 -2.059697 -2.86 -2.0775547 -2.87 -2.0908751 -2.88 -2.0991937 -2.89 -2.1022859 -2.9 -2.1001698 -2.91 -2.0931052 -2.92 -2.0814132 -2.93 -2.0658398 -2.94 -2.0474685 -2.95 -2.0272924 -2.96 -2.0063643 -2.97 -1.9857432 -2.98 -1.9664435 -2.99 -1.949386 -3 -1.9353551 -3.01 -1.9249637 -3.02 -1.918627 -3.03 -1.9166085 -3.04 -1.9189845 -3.05 -1.9253275 -3.06 -1.9351883 -3.07 -1.9479596 -3.08 -1.9629134 -3.09 -1.9792404 -3.1 -1.9960947 -3.11 -2.0126429 -3.12 -2.0281006 -3.13 -2.0417765 -3.14 -2.0530879 -3.15 -2.0613772 -3.16 -2.0666386 -3.17 -2.0688276 -3.18 -2.0680657 -3.19 -2.0646318 -3.2 -2.0589359 -3.21 -2.0514924 -3.22 -2.0428879 -3.23 -2.0337467 -3.24 -2.0246902 -3.25 -2.0163046 -3.26 -2.0091894 -3.27 -2.0037413 -3.28 -2.0002262 -3.29 -1.9987908 -3.3 -1.9994417 -3.31 -2.0020546 -3.32 -2.006384 -3.33 -2.0120813 -3.34 -2.0187164 -3.35 -2.0258113 -3.36 -2.0328617 -3.37 -2.0393166 -3.38 -2.0446949 -3.39 -2.0486415 -3.4 -2.0508686 -3.41 -2.0511954 -3.42 -2.0495545 -3.43 -2.0459936 -3.44 -2.0406708 -3.45 -2.0338439 -3.46 -2.0258512 -3.47 -2.0170941 -3.48 -2.0079696 -3.49 -1.9989383 -3.5 -1.9904833 -3.51 -1.982979 -3.52 -1.9767315 -3.53 -1.9719623 -3.54 -1.9687971 -3.55 -1.9672614 -3.56 -1.9672766 -3.57 -1.9686736 -3.58 -1.9711988 -3.59 -1.9744985 -3.6 -1.9780867 -3.61 -1.9816759 -3.62 -1.984887 -3.63 -1.9873704 -3.64 -1.9888261 -3.65 -1.9890214 -3.66 -1.9878046 -3.67 -1.9851113 -3.68 -1.9809714 -3.69 -1.9755028 -3.7 -1.968903 -3.71 -1.961389 -3.72 -1.9534391 -3.73 -1.9454129 -3.74 -1.937677 -3.75 -1.9305803 -3.76 -1.9244345 -3.77 -1.9194983 -3.78 -1.9159599 -3.79 -1.9139271 -3.8 -1.9134232 -3.81 -1.9143847 -3.82 -1.9169862 -3.83 -1.9207838 -3.84 -1.9253959 -3.85 -1.9304955 -3.86 -1.9357365 -3.87 -1.9407772 -3.88 -1.9453015 -3.89 -1.9490368 -3.9 -1.9517704 -3.91 -1.9533645 -3.92 -1.953761 -3.93 -1.9531243 -3.94 -1.9515164 -3.95 -1.9490243 -3.96 -1.9459037 -3.97 -1.9424617 -3.98 -1.9390307 -3.99 -1.9359552 -4 -1.9335645 -4.01 -1.932156 -4.02 -1.9319755 -4.03 -1.933199 -4.04 -1.935957 -4.05 -1.9402394 -4.06 -1.9458847 -4.07 -1.9527184 -4.08 -1.9604902 -4.09 -1.9688899 -4.1 -1.9775589 -4.11 -1.9861154 -4.12 -1.9941718 -4.13 -2.0013577 -4.14 -2.0073412 -4.15 -2.011803 -4.16 -2.0143045 -4.17 -2.0150163 -4.18 -2.0139394 -4.19 -2.0111666 -4.2 -2.0068854 -4.21 -2.0013608 -4.22 -1.9949275 -4.23 -1.9879687 -4.24 -1.9808992 -4.25 -1.9741405 -4.26 -1.9681035 -4.27 -1.9631564 -4.28 -1.9596672 -4.29 -1.9578642 -4.3 -1.9578852 -4.31 -1.959773 -4.32 -1.963471 -4.33 -1.9688294 -4.34 -1.975614 -4.35 -1.9835125 -4.36 -1.9921595 -4.37 -2.001148 -4.38 -2.0099892 -4.39 -2.0182639 -4.4 -2.0256112 -4.41 -2.0317048 -4.42 -2.0362882 -4.43 -2.0391894 -4.44 -2.0403227 -4.45 -2.039703 -4.46 -2.0374349 -4.47 -2.0337113 -4.48 -2.0287997 -4.49 -2.022988 -4.5 -2.016696 -4.51 -2.0103785 -4.52 -2.0044306 -4.53 -1.9992227 -4.54 -1.9950808 -4.55 -1.9922682 -4.56 -1.9909731 -4.57 -1.991301 -4.58 -1.9932662 -4.59 -1.9967936 -4.6 -2.0017576 -4.61 -2.0079557 -4.62 -2.0149938 -4.63 -2.0225224 -4.64 -2.0301694 -4.65 -2.0375595 -4.66 -2.0443358 -4.67 -2.0501773 -4.68 -2.0548167 -4.69 -2.0580543 -4.7 -2.0597677 -4.71 -2.0599188 -4.72 -2.0585795 -4.73 -2.0558828 -4.74 -2.0520379 -4.75 -2.0473124 -4.76 -2.0420164 -4.77 -2.0364849 -4.78 -2.0310586 -4.79 -2.0260649 -4.8 -2.0217993 -4.81 -2.0185086 -4.82 -2.0163773 -4.83 -2.0156826 -4.84 -2.0162917 -4.85 -2.0181125 -4.86 -2.0210014 -4.87 -2.0247457 -4.88 -2.0290753 -4.89 -2.0336773 -4.9 -2.0382133 -4.91 -2.0423403 -4.92 -2.0457254 -4.93 -2.0480699 -4.94 -2.0490334 -4.95 -2.0484462 -4.96 -2.0462558 -4.97 -2.0424567 -4.98 -2.0371285 -4.99 -2.0304362 -5 -2.0226223 -5.01 -2.0139968 -5.02 -2.0049247 -5.03 -1.9958053 -5.04 -1.9870541 -5.05 -1.9790888 -5.06 -1.9723328 -5.07 -1.9671237 -5.08 -1.9637286 -5.09 -1.9623374 -5.1 -1.9630454 -5.11 -1.9658574 -5.12 -1.9706789 -5.13 -1.9773227 -5.14 -1.9855185 -5.15 -1.9949209 -5.16 -2.0051103 -5.17 -2.0155712 -5.18 -2.0258657 -5.19 -2.0355393 -5.2 -2.0441683 -5.21 -2.0513786 -5.22 -2.0568588 -5.23 -2.0603825 -5.24 -2.0618096 -5.25 -2.0611016 -5.26 -2.0583161 -5.27 -2.053604 -5.28 -2.0470592 -5.29 -2.0392271 -5.3 -2.0305043 -5.31 -2.0213232 -5.32 -2.0121363 -5.33 -2.0033948 -5.34 -1.995524 -5.35 -1.9889083 -5.36 -1.983869 -5.37 -1.9806552 -5.38 -1.9794269 -5.39 -1.9804404 -5.4 -1.9835281 -5.41 -1.9885055 -5.42 -1.9951461 -5.43 -2.0031472 -5.44 -2.012148 -5.45 -2.0217439 -5.46 -2.0315101 -5.47 -2.0410151 -5.48 -2.0498451 -5.49 -2.0576219 -5.5 -2.064016 -5.51 -2.0687377 -5.52 -2.0716122 -5.53 -2.0725549 -5.54 -2.0715669 -5.55 -2.0687377 -5.56 -2.0642336 -5.57 -2.0582883 -5.58 -2.0511922 -5.59 -2.0432747 -5.6 -2.0348886 -5.61 -2.0263948 -5.62 -2.018152 -5.63 -2.0104622 -5.64 -2.0035793 -5.65 -1.9976963 -5.66 -1.9929389 -5.67 -1.9893578 -5.68 -1.9869292 -5.69 -1.9855578 -5.7 -1.9850843 -5.71 -1.9852947 -5.72 -1.9859098 -5.73 -1.9865285 -5.74 -1.986945 -5.75 -1.986883 -5.76 -1.9860938 -5.77 -1.9843735 -5.78 -1.9815743 -5.79 -1.977613 -5.8 -1.9724832 -5.81 -1.9662501 -5.82 -1.959055 -5.83 -1.9511102 -5.84 -1.9424939 -5.85 -1.9337681 -5.86 -1.9253019 -5.87 -1.9174687 -5.88 -1.910636 -5.89 -1.905147 -5.9 -1.9013038 -5.91 -1.8993495 -5.92 -1.8994606 -5.93 -1.9017275 -5.94 -1.9061601 -5.95 -1.9127619 -5.96 -1.9213146 -5.97 -1.9315296 -5.98 -1.9430748 -5.99 -1.9555626 -6 -1.9685667 -6.01 -1.9816421 -6.02 -1.9943391 -6.03 -2.0062298 -6.04 -2.0169171 -6.05 -2.0260628 -6.06 -2.0334446 -6.07 -2.0388735 -6.08 -2.0422025 -6.09 -2.0434161 -6.1 -2.0425815 -6.11 -2.039847 -6.12 -2.0354285 -6.13 -2.0295954 -6.14 -2.0226616 -6.15 -2.014962 -6.16 -2.006839 -6.17 -1.9987203 -6.18 -1.9910162 -6.19 -1.9837715 -6.2 -1.977175 -6.21 -1.9713478 -6.22 -1.9663471 -6.23 -1.9621607 -6.24 -1.9587126 -6.25 -1.955868 -6.26 -1.9534498 -6.27 -1.9512421 -6.28 -1.9490112 -6.29 -1.9464377 -6.3 -1.943308 -6.31 -1.9394407 -6.32 -1.9347065 -6.33 -1.9290287 -6.34 -1.9224006 -6.35 -1.9148812 -6.36 -1.9066046 -6.37 -1.8977664 -6.38 -1.888623 -6.39 -1.8794802 -6.4 -1.8704706 -6.41 -1.8621694 -6.42 -1.8549655 -6.43 -1.8492011 -6.44 -1.8451783 -6.45 -1.8431479 -6.46 -1.8432901 -6.47 -1.845708 -6.48 -1.8504206 -6.49 -1.8573577 -6.5 -1.8663636 -6.51 -1.8771453 -6.52 -1.8894182 -6.53 -1.902838 -6.54 -1.9169926 -6.55 -1.9314495 -6.56 -1.9457727 -6.57 -1.9595402 -6.58 -1.9723666 -6.59 -1.9839141 -6.6 -1.9939123 -6.61 -2.0021627 -6.62 -2.008562 -6.63 -2.0131291 -6.64 -2.0159348 -6.65 -2.0171179 -6.66 -2.0168819 -6.67 -2.0154882 -6.68 -2.0132302 -6.69 -2.0104278 -6.7 -2.0074007 -6.71 -2.0044606 -6.72 -2.0018867 -6.73 -2.0000195 -6.74 -1.9992375 -6.75 -1.9993408 -6.76 -2.0003583 -6.77 -2.0022482 -6.78 -2.0049026 -6.79 -2.0081604 -6.8 -2.0118086 -6.81 -2.0156023 -6.82 -2.0192779 -6.83 -2.0225639 -6.84 -2.0252033 -6.85 -2.0269515 -6.86 -2.027555 -6.87 -2.0268874 -6.88 -2.0248865 -6.89 -2.0215564 -6.9 -2.0169727 -6.91 -2.011276 -6.92 -2.0046689 -6.93 -1.9974057 -6.94 -1.9897817 -6.95 -1.9821205 -6.96 -1.974674 -6.97 -1.9678711 -6.98 -1.9620413 -6.99 -1.9574625 -7 -1.954363 -7.01 -1.9529118 -7.02 -1.9532131 -7.03 -1.9553007 -7.04 -1.9591389 -7.05 -1.9646239 -7.06 -1.9715868 -7.07 -1.979772 -7.08 -1.9889073 -7.09 -1.9987081 -7.1 -2.0088583 -7.11 -2.0190407 -7.12 -2.0289503 -7.13 -2.0383047 -7.14 -2.0468558 -7.15 -2.0543989 -7.16 -2.060781 -7.17 -2.0658995 -7.18 -2.0696506 -7.19 -2.0720295 -7.2 -2.0731831 -7.21 -2.0732155 -7.22 -2.072266 -7.23 -2.0704946 -7.24 -2.0680817 -7.25 -2.0652106 -7.26 -2.0620602 -7.27 -2.0588016 -7.28 -2.0555841 -7.29 -2.0525338 -7.3 -2.0497502 -7.31 -2.0473025 -7.32 -2.0452233 -7.33 -2.0435176 -7.34 -2.0421673 -7.35 -2.0411344 -7.36 -2.0403648 -7.37 -2.039796 -7.38 -2.0393634 -7.39 -2.0390029 -7.4 -2.0386575 -7.41 -2.0382098 -7.42 -2.0376889 -7.43 -2.0370803 -7.44 -2.0363873 -7.45 -2.0356252 -7.46 -2.034824 -7.47 -2.0340226 -7.48 -2.0332663 -7.49 -2.0326073 -7.5 -2.0320924 -7.51 -2.0317684 -7.52 -2.0316429 -7.53 -2.0317748 -7.54 -2.0321885 -7.55 -2.032885 -7.56 -2.0338517 -7.57 -2.0350628 -7.58 -2.0364795 -7.59 -2.0380538 -7.6 -2.0397287 -7.61 -2.0414404 -7.62 -2.0431247 -7.63 -2.0447294 -7.64 -2.0461961 -7.65 -2.0474561 -7.66 -2.0484548 -7.67 -2.0491441 -7.68 -2.0494832 -7.69 -2.0494364 -7.7 -2.0489747 -7.71 -2.0480769 -7.72 -2.0467258 -7.73 -2.0449093 -7.74 -2.0426439 -7.75 -2.039945 -7.76 -2.0367637 -7.77 -2.0331003 -7.78 -2.0289614 -7.79 -2.0243613 -7.8 -2.019322 -7.81 -2.0138727 -7.82 -2.008056 -7.83 -2.0019264 -7.84 -1.9955512 -7.85 -1.9890094 -7.86 -1.9823778 -7.87 -1.9757676 -7.88 -1.9692981 -7.89 -1.9630964 -7.9 -1.9572947 -7.91 -1.952025 -7.92 -1.9474155 -7.93 -1.9435852 -7.94 -1.9406386 -7.95 -1.9386615 -7.96 -1.937716 -7.97 -1.9377809 -7.98 -1.9389119 -7.99 -1.9410882 -8 -1.9442536 -8.01 -1.9483213 -8.02 -1.9531774 -8.03 -1.958684 -8.04 -1.9646848 -8.05 -1.97101 -8.06 -1.9774846 -8.07 -1.9839305 -8.08 -1.9901595 -8.09 -1.9960466 -8.1 -2.0014719 -8.11 -2.0063284 -8.12 -2.0105337 -8.13 -2.0140336 -8.14 -2.0168039 -8.15 -2.0188478 -8.16 -2.0201891 -8.17 -2.0208767 -8.18 -2.0209731 -8.19 -2.0206326 -8.2 -2.0199481 -8.21 -2.0189114 -8.22 -2.0175821 -8.23 -2.0160046 -8.24 -2.0142065 -8.25 -2.0121995 -8.26 -2.0099736 -8.27 -2.0075035 -8.28 -2.004747 -8.29 -2.0016486 -8.3 -1.9981625 -8.31 -1.9942166 -8.32 -1.9896989 -8.33 -1.9845674 -8.34 -1.9788025 -8.35 -1.9724096 -8.36 -1.9654252 -8.37 -1.9579196 -8.38 -1.9499983 -8.39 -1.9417988 -8.4 -1.93349 -8.41 -1.9252575 -8.42 -1.9172251 -8.43 -1.9097393 -8.44 -1.9030352 -8.45 -1.8973399 -8.46 -1.8928585 -8.47 -1.8897669 -8.48 -1.8882033 -8.49 -1.8882595 -8.5 -1.8899741 -8.51 -1.893331 -8.52 -1.8982588 -8.53 -1.9046567 -8.54 -1.9123247 -8.55 -1.9210264 -8.56 -1.9304899 -8.57 -1.940417 -8.58 -1.9504941 -8.59 -1.960402 -8.6 -1.9698333 -8.61 -1.9784986 -8.62 -1.9861429 -8.63 -1.9925503 -8.64 -1.9975769 -8.65 -2.0011095 -8.66 -2.0030894 -8.67 -2.0035284 -8.68 -2.0024947 -8.69 -2.0001085 -8.7 -1.9965358 -8.71 -1.9919778 -8.72 -1.9866667 -8.73 -1.9808486 -8.74 -1.9747789 -8.75 -1.9687466 -8.76 -1.9629922 -8.77 -1.9576711 -8.78 -1.9529572 -8.79 -1.9489892 -8.8 -1.9458663 -8.81 -1.943652 -8.82 -1.942365 -8.83 -1.9419914 -8.84 -1.9424837 -8.85 -1.9437681 -8.86 -1.9457336 -8.87 -1.9482146 -8.88 -1.9511438 -8.89 -1.9544135 -8.9 -1.9579211 -8.91 -1.9615758 -8.92 -1.9653022 -8.93 -1.9690409 -8.94 -1.9727508 -8.95 -1.9764078 -8.96 -1.9800041 -8.97 -1.9835436 -8.98 -1.9870135 -8.99 -1.990496 -9 -1.9940118 -9.01 -1.9975773 -9.02 -2.0012009 -9.03 -2.0048801 -9.04 -2.0085993 -9.05 -2.0123295 -9.06 -2.0160278 -9.07 -2.0196388 -9.08 -2.0230967 -9.09 -2.0263932 -9.1 -2.0293964 -9.11 -2.032009 -9.12 -2.0341558 -9.13 -2.0357721 -9.14 -2.0368067 -9.15 -2.0372256 -9.16 -2.0370146 -9.17 -2.0361801 -9.18 -2.0347502 -9.19 -2.0327737 -9.2 -2.0303246 -9.21 -2.0274794 -9.22 -2.024332 -9.23 -2.020989 -9.24 -2.0175629 -9.25 -2.0141652 -9.26 -2.0109025 -9.27 -2.0078696 -9.28 -2.0051536 -9.29 -2.0028194 -9.3 -2.0009184 -9.31 -1.9994709 -9.32 -1.9984772 -9.33 -1.9979409 -9.34 -1.9978337 -9.35 -1.9981138 -9.36 -1.998728 -9.37 -1.9996119 -9.38 -2.0006958 -9.39 -2.0019077 -9.4 -2.003175 -9.41 -2.0044304 -9.42 -2.005602 -9.43 -2.0065953 -9.44 -2.0074173 -9.45 -2.0080344 -9.46 -2.0084254 -9.47 -2.0085777 -9.48 -2.0084909 -9.49 -2.0081701 -9.5 -2.007631 -9.51 -2.0068948 -9.52 -2.0059876 -9.53 -2.0049408 -9.54 -2.0037433 -9.55 -2.0024721 -9.56 -2.0011634 -9.57 -1.9998541 -9.58 -1.9985788 -9.59 -1.9973716 -9.6 -1.9962669 -9.61 -1.9952954 -9.62 -1.9944871 -9.63 -1.9938649 -9.64 -1.9934525 -9.65 -1.9932339 -9.66 -1.993242 -9.67 -1.9934927 -9.68 -1.9939811 -9.69 -1.9946916 -9.7 -1.9955999 -9.71 -1.9966681 -9.72 -1.9978479 -9.73 -1.9990809 -9.74 -2.0002984 -9.75 -2.0014226 -9.76 -2.002363 -9.77 -2.0030325 -9.78 -2.0033512 -9.79 -2.0032346 -9.8 -2.0026045 -9.81 -2.0013942 -9.82 -1.9995507 -9.83 -1.9970399 -9.84 -1.9938478 -9.85 -1.9899839 -9.86 -1.9854808 -9.87 -1.9803863 -9.88 -1.9747682 -9.89 -1.9687506 -9.9 -1.9624553 -9.91 -1.9560189 -9.92 -1.9495889 -9.93 -1.9433181 -9.94 -1.9373574 -9.95 -1.9318565 -9.96 -1.9269508 -9.97 -1.9227606 -9.98 -1.919383 -9.99 -1.9168629 -10 -1.9152875 -10.01 -1.9146847 -10.02 -1.9150548 -10.03 -1.9163748 -10.04 -1.9185982 -10.05 -1.9216601 -10.06 -1.9254785 -10.07 -1.9299616 -10.08 -1.9350089 -10.09 -1.9405185 -10.1 -1.9464085 -10.11 -1.9526018 -10.12 -1.9590164 -10.13 -1.9655811 -10.14 -1.9722353 -10.15 -1.9789284 -10.16 -1.9856207 -10.17 -1.9922759 -10.18 -1.9988684 -10.19 -2.0053721 -10.2 -2.0117598 -10.21 -2.0181913 -10.22 -2.024553 -10.23 -2.0307076 -10.24 -2.0365904 -10.25 -2.0421262 -10.26 -2.0472295 -10.27 -2.0518085 -10.28 -2.0557653 -10.29 -2.0590019 -10.3 -2.0614213 -10.31 -2.0629375 -10.32 -2.0635704 -10.33 -2.0632454 -10.34 -2.0618088 -10.35 -2.0592531 -10.36 -2.0556047 -10.37 -2.0509229 -10.38 -2.0452965 -10.39 -2.038849 -10.4 -2.0317317 -10.41 -2.0241196 -10.42 -2.0162077 -10.43 -2.0081985 -10.44 -2.000286 -10.45 -1.9926847 -10.46 -1.9855964 -10.47 -1.9792037 -10.48 -1.9736653 -10.49 -1.9691082 -10.5 -1.9656258 -10.51 -1.9632744 -10.52 -1.9620718 -10.53 -1.9619968 -10.54 -1.9629898 -10.55 -1.9648408 -10.56 -1.9675445 -10.57 -1.9709675 -10.58 -1.9749655 -10.59 -1.9793861 -10.6 -1.9840818 -10.61 -1.9889094 -10.62 -1.99374 -10.63 -1.9984625 -10.64 -2.0029862 -10.65 -2.0072437 -10.66 -2.0110491 -10.67 -2.0145084 -10.68 -2.0176533 -10.69 -2.0205023 -10.7 -2.023082 -10.71 -2.0254308 -10.72 -2.0275846 -10.73 -2.0295767 -10.74 -2.0314354 -10.75 -2.033176 -10.76 -2.0348011 -10.77 -2.036254 -10.78 -2.0375267 -10.79 -2.0386061 -10.8 -2.0394354 -10.81 -2.0399505 -10.82 -2.0400865 -10.83 -2.0397766 -10.84 -2.0389629 -10.85 -2.0375971 -10.86 -2.0356456 -10.87 -2.0330966 -10.88 -2.0299258 -10.89 -2.0261512 -10.9 -2.0218795 -10.91 -2.0171897 -10.92 -2.0121809 -10.93 -2.0069679 -10.94 -2.0016765 -10.95 -1.9964397 -10.96 -1.9913899 -10.97 -1.9866567 -10.98 -1.9823538 -10.99 -1.9785817 -11 -1.9754094 -11.01 -1.9729121 -11.02 -1.9711221 -11.03 -1.9700443 -11.04 -1.9696584 -11.05 -1.9699248 -11.06 -1.9707814 -11.07 -1.9721515 -11.08 -1.9739477 -11.09 -1.9760742 -11.1 -1.978433 -11.11 -1.9809038 -11.12 -1.9834316 -11.13 -1.9859425 -11.14 -1.988374 -11.15 -1.990676 -11.16 -1.9928108 -11.17 -1.9947534 -11.18 -1.9964881 -11.19 -1.9980073 -11.2 -1.9993078 -11.21 -2.0003906 -11.22 -2.001315 -11.23 -2.002047 -11.24 -2.002557 -11.25 -2.0028223 -11.26 -2.0028165 -11.27 -2.0025039 -11.28 -2.0018499 -11.29 -2.0008125 -11.3 -1.9993576 -11.31 -1.9974538 -11.32 -1.9950801 -11.33 -1.9922683 -11.34 -1.9890117 -11.35 -1.9853103 -11.36 -1.9812177 -11.37 -1.9768116 -11.38 -1.9721913 -11.39 -1.967474 -11.4 -1.9627915 -11.41 -1.9582863 -11.42 -1.9541052 -11.43 -1.9503907 -11.44 -1.9472996 -11.45 -1.9449731 -11.46 -1.9434577 -11.47 -1.9428093 -11.48 -1.943051 -11.49 -1.9441659 -11.5 -1.946099 -11.51 -1.9487569 -11.52 -1.9520127 -11.53 -1.9557097 -11.54 -1.9596661 -11.55 -1.9636953 -11.56 -1.967622 -11.57 -1.9712114 -11.58 -1.9742847 -11.59 -1.9766939 -11.6 -1.9783212 -11.61 -1.979092 -11.62 -1.9789745 -11.63 -1.9779843 -11.64 -1.9761858 -11.65 -1.9736871 -11.66 -1.9706363 -11.67 -1.9672795 -11.68 -1.9637768 -11.69 -1.9603376 -11.7 -1.9571743 -11.71 -1.9544842 -11.72 -1.9524436 -11.73 -1.9511948 -11.74 -1.9508374 -11.75 -1.9514253 -11.76 -1.9529579 -11.77 -1.9553831 -11.78 -1.9586229 -11.79 -1.9624775 -11.8 -1.9667414 -11.81 -1.9711975 -11.82 -1.9756137 -11.83 -1.9797561 -11.84 -1.9834008 -11.85 -1.9863465 -11.86 -1.9884253 -11.87 -1.9895124 -11.88 -1.9895338 -11.89 -1.9883887 -11.9 -1.9861204 -11.91 -1.9829198 -11.92 -1.9789425 -11.93 -1.9743861 -11.94 -1.969481 -11.95 -1.964477 -11.96 -1.9596301 -11.97 -1.9551921 -11.98 -1.9513921 -11.99 -1.94843 -12 -1.9464617 -12.01 -1.9456007 -12.02 -1.9458862 -12.03 -1.947293 -12.04 -1.9497393 -12.05 -1.9530843 -12.06 -1.9571417 -12.07 -1.96169 -12.08 -1.9664769 -12.09 -1.9712415 -12.1 -1.9757225 -12.11 -1.9796675 -12.12 -1.9827677 -12.13 -1.9849343 -12.14 -1.9860507 -12.15 -1.9860582 -12.16 -1.9849585 -12.17 -1.9828138 -12.18 -1.9797436 -12.19 -1.9759183 -12.2 -1.97155 -12.21 -1.966881 -12.22 -1.9621716 -12.23 -1.9577182 -12.24 -1.9537799 -12.25 -1.9505766 -12.26 -1.9482928 -12.27 -1.9470662 -12.28 -1.9469773 -12.29 -1.9480529 -12.3 -1.9502567 -12.31 -1.9534981 -12.32 -1.9576317 -12.33 -1.962473 -12.34 -1.9678142 -12.35 -1.9733827 -12.36 -1.9789145 -12.37 -1.9841699 -12.38 -1.9889338 -12.39 -1.9930168 -12.4 -1.9962783 -12.41 -1.9986213 -12.42 -2.0000053 -12.43 -2.000442 -12.44 -1.9999988 -12.45 -1.9987844 -12.46 -1.9969789 -12.47 -1.9947902 -12.48 -1.9924268 -12.49 -1.9901055 -12.5 -1.9880358 -12.51 -1.9864073 -12.52 -1.985383 -12.53 -1.9850854 -12.54 -1.9855934 -12.55 -1.9869383 -12.56 -1.9891302 -12.57 -1.9921655 -12.58 -1.9958149 -12.59 -1.9999196 -12.6 -2.0042931 -12.61 -2.0087355 -12.62 -2.0130399 -12.63 -2.0170083 -12.64 -2.0204586 -12.65 -2.0232392 -12.66 -2.0252333 -12.67 -2.0263669 -12.68 -2.0266022 -12.69 -2.0259749 -12.7 -2.0245622 -12.71 -2.0224855 -12.72 -2.0198963 -12.73 -2.0169778 -12.74 -2.0139252 -12.75 -2.010943 -12.76 -2.0082284 -12.77 -2.0059637 -12.78 -2.0043054 -12.79 -2.0034568 -12.8 -2.003448 -12.81 -2.0042897 -12.82 -2.0059662 -12.83 -2.008417 -12.84 -2.0115403 -12.85 -2.0151992 -12.86 -2.0192286 -12.87 -2.0234434 -12.88 -2.0276514 -12.89 -2.0316573 -12.9 -2.0352713 -12.91 -2.0383082 -12.92 -2.0406304 -12.93 -2.0421384 -12.94 -2.0427694 -12.95 -2.0424991 -12.96 -2.041344 -12.97 -2.0393583 -12.98 -2.0366287 -12.99 -2.0332711 -13 -2.029423 -13.01 -2.0252065 -13.02 -2.0207619 -13.03 -2.0162932 -13.04 -2.0119455 -13.05 -2.0078499 -13.06 -2.0041197 -13.07 -2.000842 -13.08 -1.9980795 -13.09 -1.9958717 -13.1 -1.99423 -13.11 -1.9931459 -13.12 -1.9925744 -13.13 -1.9923873 -13.14 -1.9926235 -13.15 -1.9932283 -13.16 -1.9941441 -13.17 -1.9953167 -13.18 -1.9967002 -13.19 -1.9982525 -13.2 -1.9999459 -13.21 -2.0017583 -13.22 -2.0036768 -13.23 -2.0056965 -13.24 -2.0077356 -13.25 -2.0098911 -13.26 -2.0121689 -13.27 -2.0145634 -13.28 -2.0170664 -13.29 -2.0196557 -13.3 -2.0223025 -13.31 -2.0249681 -13.32 -2.0276044 -13.33 -2.0301536 -13.34 -2.0325553 -13.35 -2.034754 -13.36 -2.0366843 -13.37 -2.0382825 -13.38 -2.0394909 -13.39 -2.0402646 -13.4 -2.0405698 -13.41 -2.040387 -13.42 -2.0397092 -13.43 -2.0385448 -13.44 -2.0369137 -13.45 -2.0348484 -13.46 -2.0324064 -13.47 -2.0296288 -13.48 -2.0265422 -13.49 -2.0231887 -13.5 -2.0196012 -13.51 -2.0158092 -13.52 -2.0118302 -13.53 -2.0076697 -13.54 -2.0033272 -13.55 -1.9987891 -13.56 -1.9940347 -13.57 -1.989027 -13.58 -1.9837046 -13.59 -1.9780825 -13.6 -1.9721526 -13.61 -1.9659242 -13.62 -1.9594239 -13.63 -1.9526998 -13.64 -1.9458232 -13.65 -1.9388888 -13.66 -1.9320135 -13.67 -1.9253343 -13.68 -1.9189951 -13.69 -1.9130986 -13.7 -1.9079016 -13.71 -1.9035692 -13.72 -1.9002538 -13.73 -1.8980859 -13.74 -1.8971682 -13.75 -1.8975688 -13.76 -1.8993158 -13.77 -1.9023946 -13.78 -1.9067454 -13.79 -1.912263 -13.8 -1.9188326 -13.81 -1.9262518 -13.82 -1.9343063 -13.83 -1.9427616 -13.84 -1.9513739 -13.85 -1.9599007 -13.86 -1.9681073 -13.87 -1.9757796 -13.88 -1.9827361 -13.89 -1.9888274 -13.9 -1.9939515 -13.91 -1.9981354 -13.92 -2.0013545 -13.93 -2.0036141 -13.94 -2.0049968 -13.95 -2.0056206 -13.96 -2.0056298 -13.97 -2.0051874 -13.98 -2.0044666 -13.99 -2.0036354 -14 -2.0028501 -14.01 -2.0022461 -14.02 -2.0020541 -14.03 -2.0023513 -14.04 -2.0030073 -14.05 -2.0039971 -14.06 -2.0052597 -14.07 -2.0066942 -14.08 -2.0081742 -14.09 -2.0095516 -14.1 -2.0106643 -14.11 -2.0113518 -14.12 -2.0114591 -14.13 -2.010854 -14.14 -2.0094071 -14.15 -2.0070361 -14.16 -2.0037215 -14.17 -1.9994899 -14.18 -1.9944153 -14.19 -1.988612 -14.2 -1.982237 -14.21 -1.9754744 -14.22 -1.968535 -14.23 -1.9616392 -14.24 -1.95501 -14.25 -1.9488391 -14.26 -1.9433474 -14.27 -1.9386883 -14.28 -1.9349735 -14.29 -1.9322675 -14.3 -1.9305849 -14.31 -1.9298883 -14.32 -1.9300934 -14.33 -1.931069 -14.34 -1.9326491 -14.35 -1.9346395 -14.36 -1.9367071 -14.37 -1.9386948 -14.38 -1.9404178 -14.39 -1.9416936 -14.4 -1.9423682 -14.41 -1.9423284 -14.42 -1.9415084 -14.43 -1.9398906 -14.44 -1.9375117 -14.45 -1.9344567 -14.46 -1.9308563 -14.47 -1.926761 -14.48 -1.9224423 -14.49 -1.9182086 -14.5 -1.9142905 -14.51 -1.9109148 -14.52 -1.9082885 -14.53 -1.9065904 -14.54 -1.9059627 -14.55 -1.9065055 -14.56 -1.9082663 -14.57 -1.9112432 -14.58 -1.9153777 -14.59 -1.9205684 -14.6 -1.9266873 -14.61 -1.9335568 -14.62 -1.940976 -14.63 -1.9487318 -14.64 -1.9566087 -14.65 -1.9643997 -14.66 -1.9719156 -14.67 -1.9789933 -14.68 -1.9855032 -14.69 -1.9913521 -14.7 -1.9965063 -14.71 -2.0009564 -14.72 -2.0047271 -14.73 -2.007875 -14.74 -2.010482 -14.75 -2.0126456 -14.76 -2.0144752 -14.77 -2.0160775 -14.78 -2.0175549 -14.79 -2.018994 -14.8 -2.0204629 -14.81 -2.0221631 -14.82 -2.0239602 -14.83 -2.0258353 -14.84 -2.0277484 -14.85 -2.0296413 -14.86 -2.0314369 -14.87 -2.0330521 -14.88 -2.0343999 -14.89 -2.0353988 -14.9 -2.0359796 -14.91 -2.0360879 -14.92 -2.0357894 -14.93 -2.0350156 -14.94 -2.0337663 -14.95 -2.0320957 -14.96 -2.0300791 -14.97 -2.0278162 -14.98 -2.025416 -14.99 -2.0229969 -15 -2.0206756 -15.01 -2.0185617 -15.02 -2.0167495 -15.03 -2.0153916 -15.04 -2.0145052 -15.05 -2.0140232 -15.06 -2.0139155 -15.07 -2.0141229 -15.08 -2.0145525 -15.09 -2.0150894 -15.1 -2.0156001 -15.11 -2.0159409 -15.12 -2.015967 -15.13 -2.0155403 -15.14 -2.014512 -15.15 -2.0127332 -15.16 -2.0101945 -15.17 -2.0068826 -15.18 -2.0028273 -15.19 -1.998102 -15.2 -1.9928222 -15.21 -1.9871398 -15.22 -1.9812414 -15.23 -1.9753334 -15.24 -1.9696397 -15.25 -1.9643726 -15.26 -1.9596817 -15.27 -1.9558628 -15.28 -1.9530818 -15.29 -1.951459 -15.3 -1.9510726 -15.31 -1.9519469 -15.32 -1.954052 -15.33 -1.9573081 -15.34 -1.9615854 -15.35 -1.966711 -15.36 -1.972477 -15.37 -1.9785384 -15.38 -1.984727 -15.39 -1.9908074 -15.4 -1.9965472 -15.41 -2.0017347 -15.42 -2.0061939 -15.43 -2.0097879 -15.44 -2.0124248 -15.45 -2.0140635 -15.46 -2.0147125 -15.47 -2.0144282 -15.48 -2.0132283 -15.49 -2.0113259 -15.5 -2.0089285 -15.51 -2.0062194 -15.52 -2.0033877 -15.53 -2.0006178 -15.54 -1.998079 -15.55 -1.9959176 -15.56 -1.9942491 -15.57 -1.9931522 -15.58 -1.9926666 -15.59 -1.9928088 -15.6 -1.9935356 -15.61 -1.9947528 -15.62 -1.9963507 -15.63 -1.998202 -15.64 -2.0001676 -15.65 -2.0021053 -15.66 -2.0038777 -15.67 -2.005361 -15.68 -2.0064517 -15.69 -2.0070756 -15.7 -2.0071768 -15.71 -2.0067352 -15.72 -2.0057959 -15.73 -2.0044134 -15.74 -2.0026669 -15.75 -2.0006559 -15.76 -1.9984927 -15.77 -1.9962955 -15.78 -1.9941808 -15.79 -1.9922567 -15.8 -1.9906163 -15.81 -1.9893355 -15.82 -1.9885406 -15.83 -1.9881752 -15.84 -1.988228 -15.85 -1.9886612 -15.86 -1.9894146 -15.87 -1.9904084 -15.88 -1.9915514 -15.89 -1.9927444 -15.9 -1.9938883 -15.91 -1.9948902 -15.92 -1.9956659 -15.93 -1.9961927 -15.94 -1.9963868 -15.95 -1.9962169 -15.96 -1.9956859 -15.97 -1.9948142 -15.98 -1.9936435 -15.99 -1.9922303 -16 -1.9906418 -16.01 -1.9889483 -16.02 -1.9872239 -16.03 -1.9855354 -16.04 -1.9839838 -16.05 -1.9825926 -16.06 -1.9813621 -16.07 -1.9802991 -16.08 -1.9793952 -16.09 -1.9786287 -16.1 -1.9779631 -16.11 -1.9773584 -16.12 -1.9767702 -16.13 -1.9761578 -16.14 -1.9754865 -16.15 -1.9747383 -16.16 -1.9739058 -16.17 -1.9730004 -16.18 -1.9720623 -16.19 -1.9711475 -16.2 -1.9703315 -16.21 -1.9697005 -16.22 -1.9693471 -16.23 -1.9693649 -16.24 -1.9698423 -16.25 -1.9708523 -16.26 -1.9724541 -16.27 -1.9746979 -16.28 -1.9775354 -16.29 -1.9809135 -16.3 -1.9847405 -16.31 -1.9888875 -16.32 -1.9931918 -16.33 -1.9974631 -16.34 -2.0014908 -16.35 -2.0050546 -16.36 -2.0079342 -16.37 -2.0099222 -16.38 -2.0107479 -16.39 -2.0103317 -16.4 -2.0085792 -16.41 -2.0054503 -16.42 -2.0009651 -16.43 -1.9952054 -16.44 -1.9883145 -16.45 -1.9804925 -16.46 -1.9719897 -16.47 -1.9630964 -16.48 -1.9541307 -16.49 -1.9454218 -16.5 -1.9373289 -16.51 -1.9301633 -16.52 -1.9241964 -16.53 -1.9196517 -16.54 -1.9166924 -16.55 -1.9154145 -16.56 -1.9158406 -16.57 -1.9179196 -16.58 -1.921529 -16.59 -1.9264805 -16.6 -1.9325022 -16.61 -1.9392786 -16.62 -1.9465067 -16.63 -1.9538648 -16.64 -1.9610406 -16.65 -1.9677485 -16.66 -1.9737442 -16.67 -1.9788385 -16.68 -1.9829061 -16.69 -1.9858932 -16.7 -1.9878196 -16.71 -1.9887415 -16.72 -1.9888297 -16.73 -1.9883891 -16.74 -1.9876865 -16.75 -1.9870125 -16.76 -1.9866635 -16.77 -1.9869239 -16.78 -1.988048 -16.79 -1.9902417 -16.8 -1.9936524 -16.81 -1.998353 -16.82 -2.004373 -16.83 -2.0117844 -16.84 -2.0202064 -16.85 -2.0293753 -16.86 -2.0389641 -16.87 -2.048599 -16.88 -2.0578758 -16.89 -2.0663794 -16.9 -2.0737067 -16.91 -2.079485 -16.92 -2.0833918 -16.93 -2.085173 -16.94 -2.0846378 -16.95 -2.0817005 -16.96 -2.0763921 -16.97 -2.0688412 -16.98 -2.0592691 -16.99 -2.0479795 -17 -2.0353443 -17.01 -2.0217868 -17.02 -2.0077601 -17.03 -1.9937281 -17.04 -1.9801412 -17.05 -1.967444 -17.06 -1.9559842 -17.07 -1.9460315 -17.08 -1.9377838 -17.09 -1.9313446 -17.1 -1.9267268 -17.11 -1.9238507 -17.12 -1.9225533 -17.13 -1.9226013 -17.14 -1.9237014 -17.15 -1.9255258 -17.16 -1.9276216 -17.17 -1.9296103 -17.18 -1.9312654 -17.19 -1.9323188 -17.2 -1.9325656 -17.21 -1.9318719 -17.22 -1.9301846 -17.23 -1.927531 -17.24 -1.9240227 -17.25 -1.9198429 -17.26 -1.9152387 -17.27 -1.9104694 -17.28 -1.9058571 -17.29 -1.9018597 -17.3 -1.8988094 -17.31 -1.8970044 -17.32 -1.8966957 -17.33 -1.8980683 -17.34 -1.9012308 -17.35 -1.9062078 -17.36 -1.9129364 -17.37 -1.9212681 -17.38 -1.9309808 -17.39 -1.941823 -17.4 -1.9533571 -17.41 -1.9651908 -17.42 -1.9769132 -17.43 -1.9881234 -17.44 -1.9984425 -17.45 -2.0075416 -17.46 -2.0151482 -17.47 -2.0210668 -17.48 -2.0251814 -17.49 -2.0274656 -17.5 -2.0279864 -17.51 -2.0269224 -17.52 -2.0245043 -17.53 -2.0210147 -17.54 -2.0167797 -17.55 -2.0121474 -17.56 -2.0074693 -17.57 -2.0030822 -17.58 -1.9992883 -17.59 -1.99634 -17.6 -1.9944268 -17.61 -1.9938325 -17.62 -1.994506 -17.63 -1.996307 -17.64 -1.9991051 -17.65 -2.0027052 -17.66 -2.0068579 -17.67 -2.0112741 -17.68 -2.0156443 -17.69 -2.0196537 -17.7 -2.0229989 -17.71 -2.0254103 -17.72 -2.0266567 -17.73 -2.0265487 -17.74 -2.024992 -17.75 -2.0219725 -17.76 -2.0175515 -17.77 -2.0118597 -17.78 -2.0050896 -17.79 -1.9974907 -17.8 -1.9893479 -17.81 -1.9809719 -17.82 -1.9726805 -17.83 -1.9647956 -17.84 -1.957635 -17.85 -1.9514097 -17.86 -1.9463036 -17.87 -1.9424377 -17.88 -1.9398683 -17.89 -1.9385836 -17.9 -1.938507 -17.91 -1.9395033 -17.92 -1.9413877 -17.93 -1.9439368 -17.94 -1.9469003 -17.95 -1.9499167 -17.96 -1.9527968 -17.97 -1.955314 -17.98 -1.9572759 -17.99 -1.9585346 -18 -1.9589958 -18.01 -1.9586183 -18.02 -1.9574208 -18.03 -1.9554767 -18.04 -1.9529098 -18.05 -1.9498856 -18.06 -1.9465089 -18.07 -1.9431024 -18.08 -1.9399143 -18.09 -1.9371617 -18.1 -1.9350392 -18.11 -1.9337097 -18.12 -1.9332962 -18.13 -1.9338752 -18.14 -1.935471 -18.15 -1.9380607 -18.16 -1.9415691 -18.17 -1.9458734 -18.18 -1.9508104 -18.19 -1.9561998 -18.2 -1.9618451 -18.21 -1.9675472 -18.22 -1.9731166 -18.23 -1.978383 -18.24 -1.9832052 -18.25 -1.9874775 -18.26 -1.991135 -18.27 -1.9941564 -18.28 -1.9965532 -18.29 -1.9984011 -18.3 -1.9998255 -18.31 -2.0009552 -18.32 -2.0019355 -18.33 -2.0029187 -18.34 -2.0040535 -18.35 -2.0054752 -18.36 -2.0072966 -18.37 -2.0096008 -18.38 -2.0124351 -18.39 -2.01583 -18.4 -2.0198353 -18.41 -2.0242689 -18.42 -2.0290129 -18.43 -2.0339263 -18.44 -2.0388449 -18.45 -2.0435956 -18.46 -2.0480017 -18.47 -2.0518974 -18.48 -2.0551333 -18.49 -2.0575856 -18.5 -2.0591657 -18.51 -2.0598724 -18.52 -2.0596483 -18.53 -2.0585289 -18.54 -2.0565902 -18.55 -2.0539425 -18.56 -2.0507238 -18.57 -2.0470923 -18.58 -2.0432167 -18.59 -2.0392675 -18.6 -2.0354069 -18.61 -2.0317801 -18.62 -2.0285814 -18.63 -2.0258413 -18.64 -2.0235796 -18.65 -2.0218033 -18.66 -2.0204812 -18.67 -2.0195489 -18.68 -2.0189116 -18.69 -2.0184487 -18.7 -2.0180278 -18.71 -2.017506 -18.72 -2.0167447 -18.73 -2.015565 -18.74 -2.013841 -18.75 -2.0115348 -18.76 -2.0086042 -18.77 -2.0050469 -18.78 -2.0008954 -18.79 -1.9962236 -18.8 -1.9911369 -18.81 -1.9857682 -18.82 -1.980275 -18.83 -1.9748281 -18.84 -1.9695699 -18.85 -1.9646476 -18.86 -1.960293 -18.87 -1.9566387 -18.88 -1.9537871 -18.89 -1.9518039 -18.9 -1.9507164 -18.91 -1.9505084 -18.92 -1.9511264 -18.93 -1.952479 -18.94 -1.9544417 -18.95 -1.9568533 -18.96 -1.9594538 -18.97 -1.9621532 -18.98 -1.9647797 -18.99 -1.9671704 -19 -1.9691835 -19.01 -1.9707056 -19.02 -1.9716557 -19.03 -1.9719897 -19.04 -1.9717027 -19.05 -1.9708283 -19.06 -1.9694395 -19.07 -1.967549 -19.08 -1.9654022 -19.09 -1.9631665 -19.1 -1.9610078 -19.11 -1.9590943 -19.12 -1.9575879 -19.13 -1.9566332 -19.14 -1.9563533 -19.15 -1.9568421 -19.16 -1.958159 -19.17 -1.9603268 -19.18 -1.9633801 -19.19 -1.9672454 -19.2 -1.9718093 -19.21 -1.976949 -19.22 -1.9825177 -19.23 -1.9883516 -19.24 -1.9942773 -19.25 -2.000119 -19.26 -2.005705 -19.27 -2.0108776 -19.28 -2.0154985 -19.29 -2.0194855 -19.3 -2.0227593 -19.31 -2.0252268 -19.32 -2.0268636 -19.33 -2.0276744 -19.34 -2.0276897 -19.35 -2.0269666 -19.36 -2.0255793 -19.37 -2.0236166 -19.38 -2.0211777 -19.39 -2.0183651 -19.4 -2.0153166 -19.41 -2.0121965 -19.42 -2.0089805 -19.43 -2.0057343 -19.44 -2.0025074 -19.45 -1.9993337 -19.46 -1.9962313 -19.47 -1.9932016 -19.48 -1.9902336 -19.49 -1.9873056 -19.5 -1.9843895 -19.51 -1.9814512 -19.52 -1.9784824 -19.53 -1.9753933 -19.54 -1.9721537 -19.55 -1.9687463 -19.56 -1.9651577 -19.57 -1.9613877 -19.58 -1.957446 -19.59 -1.9533532 -19.6 -1.9491369 -19.61 -1.9448373 -19.62 -1.9404956 -19.63 -1.9360983 -19.64 -1.9317406 -19.65 -1.9274863 -19.66 -1.9233865 -19.67 -1.919489 -19.68 -1.9158373 -19.69 -1.91247 -19.7 -1.9094202 -19.71 -1.9067155 -19.72 -1.9043786 -19.73 -1.9024276 -19.74 -1.9008164 -19.75 -1.8995832 -19.76 -1.8987755 -19.77 -1.8984041 -19.78 -1.8984796 -19.79 -1.8990124 -19.8 -1.9000128 -19.81 -1.9014907 -19.82 -1.9034543 -19.83 -1.9059116 -19.84 -1.9088652 -19.85 -1.9122977 -19.86 -1.9162052 -19.87 -1.9206049 -19.88 -1.9254764 -19.89 -1.9307896 -19.9 -1.9365059 -19.91 -1.9425739 -19.92 -1.9489365 -19.93 -1.9555251 -19.94 -1.9622647 -19.95 -1.9690741 -19.96 -1.9758793 -19.97 -1.9826307 -19.98 -1.9892059 -19.99 -1.9955212 -20 -2.0014936 -20.01 -2.0070507 -20.02 -2.0121274 -20.03 -2.0166657 -20.04 -2.0206227 -20.05 -2.023963 -20.06 -2.0266646 -20.07 -2.0287183 -20.08 -2.0302558 -20.09 -2.0311597 -20.1 -2.0314456 -20.11 -2.0311344 -20.12 -2.0302543 -20.13 -2.0288368 -20.14 -2.0269158 -20.15 -2.0245274 -20.16 -2.0217083 -20.17 -2.0184973 -20.18 -2.0149303 -20.19 -2.0110997 -20.2 -2.0069792 -20.21 -2.0025872 -20.22 -1.9979605 -20.23 -1.9931401 -20.24 -1.9881694 -20.25 -1.9830958 -20.26 -1.9779725 -20.27 -1.972855 -20.28 -1.9678053 -20.29 -1.962889 -20.3 -1.9581358 -20.31 -1.9536189 -20.32 -1.9494424 -20.33 -1.9456826 -20.34 -1.9424134 -20.35 -1.9397037 -20.36 -1.9376149 -20.37 -1.9361996 -20.38 -1.9354985 -20.39 -1.9355384 -20.4 -1.9363317 -20.41 -1.9378529 -20.42 -1.9400666 -20.43 -1.9429775 -20.44 -1.9465285 -20.45 -1.9506471 -20.46 -1.9552467 -20.47 -1.9602262 -20.48 -1.965474 -20.49 -1.9708726 -20.5 -1.9762992 -20.51 -1.9816291 -20.52 -1.9867375 -20.53 -1.99148 -20.54 -1.9957882 -20.55 -1.9995713 -20.56 -2.002755 -20.57 -2.005282 -20.58 -2.0071174 -20.59 -2.0082459 -20.6 -2.0086747 -20.61 -2.0084337 -20.62 -2.0075719 -20.63 -2.0061605 -20.64 -2.0042831 -20.65 -2.0020513 -20.66 -1.9995772 -20.67 -1.9969751 -20.68 -1.9943645 -20.69 -1.9918602 -20.7 -1.9895733 -20.71 -1.9876 -20.72 -1.9860265 -20.73 -1.9849191 -20.74 -1.9843259 -20.75 -1.9842922 -20.76 -1.9848022 -20.77 -1.985821 -20.78 -1.9873061 -20.79 -1.9891929 -20.8 -1.991399 -20.81 -1.9938317 -20.82 -1.9963855 -20.83 -1.9989536 -20.84 -2.0014275 -20.85 -2.003703 -20.86 -2.0056685 -20.87 -2.0072439 -20.88 -2.0083876 -20.89 -2.0090631 -20.9 -2.0092544 -20.91 -2.0089717 -20.92 -2.0082448 -20.93 -2.0071265 -20.94 -2.0056876 -20.95 -2.0040142 -20.96 -2.0022016 -20.97 -2.0003653 -20.98 -1.9986392 -20.99 -1.9970849 -21 -1.9957821 -21.01 -1.9947889 -21.02 -1.9941445 -21.03 -1.993863 -21.04 -1.993931 -21.05 -1.9943089 -21.06 -1.9949294 -21.07 -1.9957013 -21.08 -1.996517 -21.09 -1.9972403 -21.1 -1.9977108 -21.11 -1.9977899 -21.12 -1.9973502 -21.13 -1.9962762 -21.14 -1.9944744 -21.15 -1.9918841 -21.16 -1.9884725 -21.17 -1.9842501 -21.18 -1.9792635 -21.19 -1.9736022 -21.2 -1.9672894 -21.21 -1.960593 -21.22 -1.9537319 -21.23 -1.9469326 -21.24 -1.940434 -21.25 -1.934481 -21.26 -1.9293118 -21.27 -1.9251489 -21.28 -1.9221892 -21.29 -1.920596 -21.3 -1.9204894 -21.31 -1.9219566 -21.32 -1.9250194 -21.33 -1.929631 -21.34 -1.9356958 -21.35 -1.9430681 -21.36 -1.9515569 -21.37 -1.9609338 -21.38 -1.9709419 -21.39 -1.9813059 -21.4 -1.991743 -21.41 -2.0019748 -21.42 -2.0117396 -21.43 -2.0208012 -21.44 -2.0289602 -21.45 -2.0360622 -21.46 -2.0419999 -21.47 -2.0467161 -21.48 -2.0502026 -21.49 -2.0524992 -21.5 -2.0536869 -21.51 -2.0538852 -21.52 -2.0532408 -21.53 -2.0519512 -21.54 -2.0502874 -21.55 -2.048314 -21.56 -2.0461839 -21.57 -2.0440259 -21.58 -2.041942 -21.59 -2.0399959 -21.6 -2.0382167 -21.61 -2.036592 -21.62 -2.0350736 -21.63 -2.0335784 -21.64 -2.0319971 -21.65 -2.0302516 -21.66 -2.0280888 -21.67 -2.0253615 -21.68 -2.0219326 -21.69 -2.0176856 -21.7 -2.0125327 -21.71 -2.0064222 -21.72 -1.9993446 -21.73 -1.9913371 -21.74 -1.9824821 -21.75 -1.9729089 -21.76 -1.9626772 -21.77 -1.9520875 -21.78 -1.9414094 -21.79 -1.9309053 -21.8 -1.9208436 -21.81 -1.9114902 -21.82 -1.9030914 -21.83 -1.8958701 -21.84 -1.890013 -21.85 -1.8856616 -21.86 -1.8829081 -21.87 -1.8817452 -21.88 -1.8821676 -21.89 -1.8841264 -21.9 -1.8874974 -21.91 -1.8921132 -21.92 -1.8977711 -21.93 -1.9042436 -21.94 -1.911288 -21.95 -1.9186608 -21.96 -1.9261248 -21.97 -1.9334584 -21.98 -1.940417 -21.99 -1.9468189 -22 -1.9526396 -22.01 -1.9578142 -22.02 -1.9623202 -22.03 -1.9661774 -22.04 -1.969444 -22.05 -1.9722106 -22.06 -1.9745929 -22.07 -1.9767234 -22.08 -1.9787424 -22.09 -1.9808048 -22.1 -1.9831238 -22.11 -1.9857439 -22.12 -1.9887371 -22.13 -1.9921435 -22.14 -1.9959686 -22.15 -2.0001777 -22.16 -2.0047013 -22.17 -2.009435 -22.18 -2.0142445 -22.19 -2.0189723 -22.2 -2.0234442 -22.21 -2.0276007 -22.22 -2.0311156 -22.23 -2.0338147 -22.24 -2.0355426 -22.25 -2.0361764 -22.26 -2.0356211 -22.27 -2.0338231 -22.28 -2.0307651 -22.29 -2.0264736 -22.3 -2.0210152 -22.31 -2.0144925 -22.32 -2.0070516 -22.33 -1.9988522 -22.34 -1.9900829 -22.35 -1.9809494 -22.36 -1.9716626 -22.37 -1.9624348 -22.38 -1.9534684 -22.39 -1.9449535 -22.4 -1.9370609 -22.41 -1.9299359 -22.42 -1.9236992 -22.43 -1.9184384 -22.44 -1.9142072 -22.45 -1.9110305 -22.46 -1.9089108 -22.47 -1.9078242 -22.48 -1.907726 -22.49 -1.9085545 -22.5 -1.9102312 -22.51 -1.9126705 -22.52 -1.9157775 -22.53 -1.9194557 -22.54 -1.9235876 -22.55 -1.9280558 -22.56 -1.9328157 -22.57 -1.9377863 -22.58 -1.9428935 -22.59 -1.9480695 -22.6 -1.953254 -22.61 -1.9583934 -22.62 -1.9634402 -22.63 -1.9683534 -22.64 -1.9730975 -22.65 -1.9776411 -22.66 -1.9819629 -22.67 -1.9860554 -22.68 -1.9899019 -22.69 -1.9934912 -22.7 -1.996817 -22.71 -1.9998775 -22.72 -2.0026748 -22.73 -2.0052153 -22.74 -2.0075116 -22.75 -2.009578 -22.76 -2.0114293 -22.77 -2.0131557 -22.78 -2.0147183 -22.79 -2.0161254 -22.8 -2.0173871 -22.81 -2.0185113 -22.82 -2.0195 -22.83 -2.0203494 -22.84 -2.0210484 -22.85 -2.0215796 -22.86 -2.0219192 -22.87 -2.0220378 -22.88 -2.0219346 -22.89 -2.0215412 -22.9 -2.0208027 -22.91 -2.0196849 -22.92 -2.0181592 -22.93 -2.0162048 -22.94 -2.0138114 -22.95 -2.0109802 -22.96 -2.0077282 -22.97 -2.0040834 -22.98 -2.0000908 -22.99 -1.9957876 -23 -1.9912381 -23.01 -1.9865436 -23.02 -1.981794 -23.03 -1.9770799 -23.04 -1.9724938 -23.05 -1.96812 -23.06 -1.9640364 -23.07 -1.9603096 -23.08 -1.9569884 -23.09 -1.9541072 -23.1 -1.9516635 -23.11 -1.9496151 -23.12 -1.9479813 -23.13 -1.9467195 -23.14 -1.9457713 -23.15 -1.9450695 -23.16 -1.9445402 -23.17 -1.9441069 -23.18 -1.9436968 -23.19 -1.9432426 -23.2 -1.9426917 -23.21 -1.9420003 -23.22 -1.9410461 -23.23 -1.939942 -23.24 -1.938715 -23.25 -1.9374101 -23.26 -1.9360934 -23.27 -1.9348427 -23.28 -1.933749 -23.29 -1.9329109 -23.3 -1.9324254 -23.31 -1.9323878 -23.32 -1.932879 -23.33 -1.9339583 -23.34 -1.9356962 -23.35 -1.9381184 -23.36 -1.9412208 -23.37 -1.9449724 -23.38 -1.9493157 -23.39 -1.9541687 -23.4 -1.9594283 -23.41 -1.9649739 -23.42 -1.9706732 -23.43 -1.9763878 -23.44 -1.9819913 -23.45 -1.9873518 -23.46 -1.9923453 -23.47 -1.9968728 -23.48 -2.0008586 -23.49 -2.0042491 -23.5 -2.0070175 -23.51 -2.0091648 -23.52 -2.0107127 -23.53 -2.0117091 -23.54 -2.0122158 -23.55 -2.0123591 -23.56 -2.0122566 -23.57 -2.0119258 -23.58 -2.0114426 -23.59 -2.0108716 -23.6 -2.0102639 -23.61 -2.0096497 -23.62 -2.0090412 -23.63 -2.008428 -23.64 -2.0077789 -23.65 -2.0070452 -23.66 -2.0061786 -23.67 -2.0051324 -23.68 -2.0037521 -23.69 -2.001962 -23.7 -1.9996933 -23.71 -1.9968976 -23.72 -1.9935446 -23.73 -1.9896325 -23.74 -1.9851842 -23.75 -1.9802565 -23.76 -1.9749358 -23.77 -1.9693372 -23.78 -1.9635532 -23.79 -1.957799 -23.8 -1.952253 -23.81 -1.9470994 -23.82 -1.942518 -23.83 -1.9386775 -23.84 -1.9357276 -23.85 -1.9337909 -23.86 -1.9329573 -23.87 -1.9332793 -23.88 -1.9347686 -23.89 -1.9373986 -23.9 -1.941089 -23.91 -1.9457235 -23.92 -1.9511549 -23.93 -1.9572089 -23.94 -1.9636929 -23.95 -1.9704035 -23.96 -1.977136 -23.97 -1.9836928 -23.98 -1.9898922 -23.99 -1.9955758 -24 -2.0005903 -24.01 -2.0048535 -24.02 -2.0083342 -24.03 -2.0110191 -24.04 -2.0129301 -24.05 -2.0141223 -24.06 -2.0146784 -24.07 -2.0147023 -24.08 -2.0143126 -24.09 -2.0136346 -24.1 -2.012792 -24.11 -2.0119284 -24.12 -2.0111744 -24.13 -2.0105523 -24.14 -2.0101049 -24.15 -2.0098468 -24.16 -2.0097634 -24.17 -2.0098121 -24.18 -2.009926 -24.19 -2.0100174 -24.2 -2.009986 -24.21 -2.0097206 -24.22 -2.0091124 -24.23 -2.0080303 -24.24 -2.0063889 -24.25 -2.0041262 -24.26 -2.0012088 -24.27 -1.9976315 -24.28 -1.9934245 -24.29 -1.9886493 -24.3 -1.9833987 -24.31 -1.977795 -24.32 -1.9719805 -24.33 -1.9661164 -24.34 -1.9603128 -24.35 -1.9548088 -24.36 -1.9497747 -24.37 -1.9453623 -24.38 -1.9416975 -24.39 -1.9388816 -24.4 -1.9369822 -24.41 -1.9360331 -24.42 -1.9360331 -24.43 -1.936943 -24.44 -1.9386941 -24.45 -1.9411526 -24.46 -1.9442088 -24.47 -1.9477359 -24.48 -1.9515848 -24.49 -1.955609 -24.5 -1.9596636 -24.51 -1.9636165 -24.52 -1.9673543 -24.53 -1.970785 -24.54 -1.9738422 -24.55 -1.9764841 -24.56 -1.9786766 -24.57 -1.980445 -24.58 -1.9818568 -24.59 -1.9829645 -24.6 -1.9838378 -24.61 -1.9845504 -24.62 -1.9851788 -24.63 -1.9857955 -24.64 -1.9864641 -24.65 -1.9872357 -24.66 -1.9881448 -24.67 -1.9892276 -24.68 -1.9905112 -24.69 -1.9919248 -24.7 -1.9934269 -24.71 -1.9949629 -24.72 -1.9964688 -24.73 -1.997876 -24.74 -1.9991153 -24.75 -2.0001217 -24.76 -2.0008388 -24.77 -2.0012221 -24.78 -2.0012443 -24.79 -2.0009145 -24.8 -2.0002132 -24.81 -1.9991656 -24.82 -1.997812 -24.83 -1.9962055 -24.84 -1.9944083 -24.85 -1.9924879 -24.86 -1.9905119 -24.87 -1.9885447 -24.88 -1.9866425 -24.89 -1.9848505 -24.9 -1.9832295 -24.91 -1.981762 -24.92 -1.9804363 -24.93 -1.9792295 -24.94 -1.9781042 -24.95 -1.9770107 -24.96 -1.9758914 -24.97 -1.974685 -24.98 -1.9733309 -24.99 -1.9717743 -25 -1.969971 -25.01 -1.9678655 -25.02 -1.9654537 -25.03 -1.962762 -25.04 -1.9598268 -25.05 -1.9567063 -25.06 -1.9534795 -25.07 -1.9502426 -25.08 -1.9471057 -25.09 -1.9441874 -25.1 -1.9416094 -25.11 -1.9394906 -25.12 -1.9379406 -25.13 -1.9370614 -25.14 -1.9369275 -25.15 -1.9375853 -25.16 -1.9390527 -25.17 -1.9413177 -25.18 -1.9443382 -25.19 -1.9480434 -25.2 -1.9523361 -25.21 -1.9570974 -25.22 -1.9621911 -25.23 -1.9674679 -25.24 -1.9727665 -25.25 -1.9779447 -25.26 -1.9828654 -25.27 -1.9874066 -25.28 -1.9914666 -25.29 -1.9949676 -25.3 -1.9978581 -25.31 -2.0001137 -25.32 -2.0017369 -25.33 -2.0027548 -25.34 -2.0032164 -25.35 -2.0032377 -25.36 -2.0028644 -25.37 -2.0021768 -25.38 -2.001253 -25.39 -2.0001644 -25.4 -1.9989697 -25.41 -1.9977108 -25.42 -1.9964103 -25.43 -1.9950694 -25.44 -1.9936678 -25.45 -1.9921648 -25.46 -1.9905272 -25.47 -1.9886352 -25.48 -1.986396 -25.49 -1.9837252 -25.5 -1.9805439 -25.51 -1.9767859 -25.52 -1.9724033 -25.53 -1.9673718 -25.54 -1.9616962 -25.55 -1.955412 -25.56 -1.9485881 -25.57 -1.9412596 -25.58 -1.9335818 -25.59 -1.9257688 -25.6 -1.9180103 -25.61 -1.9105106 -25.62 -1.9034813 -25.63 -1.8971324 -25.64 -1.8916642 -25.65 -1.8872586 -25.66 -1.8840711 -25.67 -1.8822244 -25.68 -1.8817917 -25.69 -1.882813 -25.7 -1.8852987 -25.71 -1.8891943 -25.72 -1.8944012 -25.73 -1.9007816 -25.74 -1.9081635 -25.75 -1.9163477 -25.76 -1.9251161 -25.77 -1.9342384 -25.78 -1.9434856 -25.79 -1.952628 -25.8 -1.9614351 -25.81 -1.9697608 -25.82 -1.9774594 -25.83 -1.9844162 -25.84 -1.9905582 -25.85 -1.9958477 -25.86 -2.0002845 -25.87 -2.0039047 -25.88 -2.0067735 -25.89 -2.0089819 -25.9 -2.0106388 -25.91 -2.0119881 -25.92 -2.0130687 -25.93 -2.0139886 -25.94 -2.0148501 -25.95 -2.015739 -25.96 -2.0167173 -25.97 -2.01782 -25.98 -2.0190554 -25.99 -2.0204032 -26 -2.0218184 -26.01 -2.0232283 -26.02 -2.0246429 -26.03 -2.0258655 -26.04 -2.0267377 -26.05 -2.0271431 -26.06 -2.026971 -26.07 -2.026122 -26.08 -2.0245179 -26.09 -2.0221022 -26.1 -2.0188474 -26.11 -2.014754 -26.12 -2.0098565 -26.13 -2.004198 -26.14 -1.9978659 -26.15 -1.9910025 -26.16 -1.9837554 -26.17 -1.9762889 -26.18 -1.9687776 -26.19 -1.9614005 -26.2 -1.9543343 -26.21 -1.9477467 -26.22 -1.9417918 -26.23 -1.9366035 -26.24 -1.9322769 -26.25 -1.9288763 -26.26 -1.9264875 -26.27 -1.9251327 -26.28 -1.9248083 -26.29 -1.9254802 -26.3 -1.9270921 -26.31 -1.9295649 -26.32 -1.9328046 -26.33 -1.9367046 -26.34 -1.9411478 -26.35 -1.9460102 -26.36 -1.9511144 -26.37 -1.9564205 -26.38 -1.9618294 -26.39 -1.9672528 -26.4 -1.9726143 -26.41 -1.9778495 -26.42 -1.9829094 -26.43 -1.9877557 -26.44 -1.9923624 -26.45 -1.9967108 -26.46 -2.0007927 -26.47 -2.0046179 -26.48 -2.0081855 -26.49 -2.0114904 -26.5 -2.0145262 -26.51 -2.0172818 -26.52 -2.0197427 -26.53 -2.0218875 -26.54 -2.023693 -26.55 -2.0251319 -26.56 -2.0261725 -26.57 -2.0267843 -26.58 -2.026967 -26.59 -2.0266703 -26.6 -2.0258557 -26.61 -2.0245086 -26.62 -2.0226226 -26.63 -2.0202061 -26.64 -2.0172758 -26.65 -2.0138625 -26.66 -2.0100118 -26.67 -2.0057785 -26.68 -2.0012279 -26.69 -1.9964296 -26.7 -1.9914594 -26.71 -1.9864089 -26.72 -1.9813669 -26.73 -1.9764195 -26.74 -1.9716486 -26.75 -1.9671297 -26.76 -1.962931 -26.77 -1.9591086 -26.78 -1.955707 -26.79 -1.952759 -26.8 -1.9502703 -26.81 -1.9482173 -26.82 -1.9466327 -26.83 -1.9455042 -26.84 -1.9448102 -26.85 -1.9445236 -26.86 -1.9446121 -26.87 -1.9450421 -26.88 -1.9457802 -26.89 -1.9467937 -26.9 -1.9480528 -26.91 -1.9495286 -26.92 -1.9511487 -26.93 -1.9529587 -26.94 -1.9549486 -26.95 -1.9571062 -26.96 -1.9594246 -26.97 -1.961894 -26.98 -1.9645038 -26.99 -1.9672382 -27 -1.9700788 -27.01 -1.9729993 -27.02 -1.9759664 -27.03 -1.9789599 -27.04 -1.9819229 -27.05 -1.9847943 -27.06 -1.9875106 -27.07 -1.9900044 -27.08 -1.9922063 -27.09 -1.9940482 -27.1 -1.9954655 -27.11 -1.9964004 -27.12 -1.996805 -27.13 -1.9966438 -27.14 -1.9959152 -27.15 -1.9946062 -27.16 -1.992719 -27.17 -1.9902872 -27.18 -1.9873624 -27.19 -1.9840141 -27.2 -1.9803268 -27.21 -1.9763984 -27.22 -1.9723358 -27.23 -1.9682521 -27.24 -1.9642636 -27.25 -1.9604927 -27.26 -1.957053 -27.27 -1.9540193 -27.28 -1.9514722 -27.29 -1.9494748 -27.3 -1.9480697 -27.31 -1.9472817 -27.32 -1.9471135 -27.33 -1.9475461 -27.34 -1.9485436 -27.35 -1.9500523 -27.36 -1.9520038 -27.37 -1.9543153 -27.38 -1.9569027 -27.39 -1.9596824 -27.4 -1.9625721 -27.41 -1.9654922 -27.42 -1.968374 -27.43 -1.97116 -27.44 -1.9738016 -27.45 -1.9762678 -27.46 -1.9785383 -27.47 -1.9806067 -27.48 -1.9825069 -27.49 -1.9842385 -27.5 -1.9858196 -27.51 -1.987273 -27.52 -1.9886189 -27.53 -1.9898742 -27.54 -1.9910502 -27.55 -1.9921472 -27.56 -1.9931561 -27.57 -1.9940579 -27.58 -1.9948211 -27.59 -1.9954384 -27.6 -1.9958237 -27.61 -1.9959042 -27.62 -1.9956197 -27.63 -1.9949114 -27.64 -1.9937268 -27.65 -1.9920237 -27.66 -1.9897738 -27.67 -1.9869663 -27.68 -1.98361 -27.69 -1.9797352 -27.7 -1.9753719 -27.71 -1.9705971 -27.72 -1.9655269 -27.73 -1.9602778 -27.74 -1.9549794 -27.75 -1.9497698 -27.76 -1.9447903 -27.77 -1.9401793 -27.78 -1.936067 -27.79 -1.9325689 -27.8 -1.9297819 -27.81 -1.9277723 -27.82 -1.9265807 -27.83 -1.9262326 -27.84 -1.926711 -27.85 -1.9279697 -27.86 -1.9299355 -27.87 -1.9325115 -27.88 -1.9355822 -27.89 -1.9390186 -27.9 -1.9426845 -27.91 -1.9464434 -27.92 -1.9501571 -27.93 -1.9536655 -27.94 -1.9569174 -27.95 -1.9598381 -27.96 -1.962379 -27.97 -1.9645182 -27.98 -1.9662614 -27.99 -1.9676401 -28 -1.9687086 -28.01 -1.9695408 -28.02 -1.9702241 -28.03 -1.9708539 -28.04 -1.9715625 -28.05 -1.972428 -28.06 -1.9735254 -28.07 -1.9749139 -28.08 -1.9766305 -28.09 -1.9786867 -28.1 -1.981067 -28.11 -1.9837287 -28.12 -1.9866031 -28.13 -1.9895987 -28.14 -1.9926052 -28.15 -1.9955238 -28.16 -1.998195 -28.17 -2.0004765 -28.18 -2.0022475 -28.19 -2.0034026 -28.2 -2.0038582 -28.21 -2.0035573 -28.22 -2.0024729 -28.23 -2.0006108 -28.24 -1.9980095 -28.25 -1.9947394 -28.26 -1.9908963 -28.27 -1.9866112 -28.28 -1.9820334 -28.29 -1.9773169 -28.3 -1.9726186 -28.31 -1.9680909 -28.32 -1.9638737 -28.33 -1.9600883 -28.34 -1.9568312 -28.35 -1.9541703 -28.36 -1.9521417 -28.37 -1.9507508 -28.38 -1.9499614 -28.39 -1.9497016 -28.4 -1.9498862 -28.41 -1.9504127 -28.42 -1.9511675 -28.43 -1.9520338 -28.44 -1.9528997 -28.45 -1.9536648 -28.46 -1.9542479 -28.47 -1.954592 -28.48 -1.9546635 -28.49 -1.9544054 -28.5 -1.9539341 -28.51 -1.9533231 -28.52 -1.9526718 -28.53 -1.9521006 -28.54 -1.9517441 -28.55 -1.9517422 -28.56 -1.9522326 -28.57 -1.9533413 -28.58 -1.9551737 -28.59 -1.9578075 -28.6 -1.961357 -28.61 -1.9657761 -28.62 -1.9710055 -28.63 -1.9769524 -28.64 -1.983482 -28.65 -1.9904218 -28.66 -1.9975674 -28.67 -2.0046908 -28.68 -2.0115499 -28.69 -2.0178988 -28.7 -2.0234992 -28.71 -2.0281348 -28.72 -2.031596 -28.73 -2.0337279 -28.74 -2.0344288 -28.75 -2.0336486 -28.76 -2.0313921 -28.77 -2.0277192 -28.78 -2.0227423 -28.79 -2.0166222 -28.8 -2.0095608 -28.81 -2.0017927 -28.82 -1.9935818 -28.83 -1.9852097 -28.84 -1.9769363 -28.85 -1.9690129 -28.86 -1.9616667 -28.87 -1.9550916 -28.88 -1.9494416 -28.89 -1.9448244 -28.9 -1.9413001 -28.91 -1.9388793 -28.92 -1.9375262 -28.93 -1.9371573 -28.94 -1.9376257 -28.95 -1.9387923 -28.96 -1.9404959 -28.97 -1.9425645 -28.98 -1.9448298 -28.99 -1.947136 -29 -1.9493439 -29.01 -1.9513409 -29.02 -1.9530457 -29.03 -1.9544101 -29.04 -1.9554218 -29.05 -1.956012 -29.06 -1.9563453 -29.07 -1.9565063 -29.08 -1.9565922 -29.09 -1.9567107 -29.1 -1.9569694 -29.11 -1.9574712 -29.12 -1.9583026 -29.13 -1.9595289 -29.14 -1.9611895 -29.15 -1.9632929 -29.16 -1.9658549 -29.17 -1.9687908 -29.18 -1.9719989 -29.19 -1.9753626 -29.2 -1.9787468 -29.21 -1.9820054 -29.22 -1.9849888 -29.23 -1.9875531 -29.24 -1.9895677 -29.25 -1.9909232 -29.26 -1.991538 -29.27 -1.9913525 -29.28 -1.9903563 -29.29 -1.9885883 -29.3 -1.9861178 -29.31 -1.9830487 -29.32 -1.9795141 -29.33 -1.9756705 -29.34 -1.9716895 -29.35 -1.9677499 -29.36 -1.9640282 -29.37 -1.9606903 -29.38 -1.9579005 -29.39 -1.9557966 -29.4 -1.9544356 -29.41 -1.9538639 -29.42 -1.9540899 -29.43 -1.9550841 -29.44 -1.9567813 -29.45 -1.9590854 -29.46 -1.9618742 -29.47 -1.9650074 -29.48 -1.9683337 -29.49 -1.9716984 -29.5 -1.9749396 -29.51 -1.9779308 -29.52 -1.9805653 -29.53 -1.9827636 -29.54 -1.9844761 -29.55 -1.9856857 -29.56 -1.9864064 -29.57 -1.9866816 -29.58 -1.9865791 -29.59 -1.986186 -29.6 -1.9856011 -29.61 -1.9849688 -29.62 -1.9843662 -29.63 -1.983872 -29.64 -1.9835434 -29.65 -1.9834074 -29.66 -1.9834544 -29.67 -1.9836349 -29.68 -1.9838557 -29.69 -1.9839795 -29.7 -1.983826 -29.71 -1.9831738 -29.72 -1.9817818 -29.73 -1.9793275 -29.74 -1.9754867 -29.75 -1.9699291 -29.76 -1.9623159 -29.77 -1.9523067 -29.78 -1.9395675 -29.79 -1.9237765 -29.8 -1.9046303 -29.81 -1.8818493 -29.82 -1.8551824 -29.83 -1.8243833 -29.84 -1.7892799 -29.85 -1.7497578 -29.86 -1.7057144 -29.87 -1.6570882 -29.88 -1.6038602 -29.89 -1.5460564 -29.9 -1.4837485 -29.91 -1.4170561 -29.92 -1.346148 -29.93 -1.2712431 -29.94 -1.1926105 -29.95 -1.1105629 -29.96 -1.0254604 -29.97 -0.93771334 -29.98 -0.84777688 -29.99 -0.75614602 -30 -0.66335031 -& diff --git a/doc/manual/images/nacl_example.xcf b/doc/manual/images/nacl_example.xcf deleted file mode 100644 index 228931a0..00000000 Binary files a/doc/manual/images/nacl_example.xcf and /dev/null differ diff --git a/doc/manual/pdfmorph.pdf b/doc/manual/pdfmorph.pdf deleted file mode 100644 index 779e49f4..00000000 Binary files a/doc/manual/pdfmorph.pdf and /dev/null differ diff --git a/doc/Makefile b/docs/Makefile similarity index 100% rename from doc/Makefile rename to docs/Makefile diff --git a/doc/make.bat b/docs/make.bat similarity index 100% rename from doc/make.bat rename to docs/make.bat diff --git a/doc/manual/Makefile b/docs/manual/Makefile similarity index 100% rename from doc/manual/Makefile rename to docs/manual/Makefile diff --git a/docs/manual/README.txt b/docs/manual/README.txt new file mode 100644 index 00000000..9044a013 --- /dev/null +++ b/docs/manual/README.txt @@ -0,0 +1,3 @@ +This directory included files to build a PDF and HTML version of the diffpy.morph user manual. +We are no longer maintaining the manual or this directory, but all files are intact for legacy reasons. +All relevant information from the manual has been migrated to the website at https://www.diffpy.org/diffpy.morph. diff --git a/doc/manual/acknowledgements.texinfo b/docs/manual/acknowledgements.texinfo similarity index 100% rename from doc/manual/acknowledgements.texinfo rename to docs/manual/acknowledgements.texinfo diff --git a/doc/manual/disclaimer.texinfo b/docs/manual/disclaimer.texinfo similarity index 100% rename from doc/manual/disclaimer.texinfo rename to docs/manual/disclaimer.texinfo diff --git a/doc/manual/images/aspirin_smear.png b/docs/manual/images/aspirin_smear.png similarity index 100% rename from doc/manual/images/aspirin_smear.png rename to docs/manual/images/aspirin_smear.png diff --git a/doc/manual/images/aspirin_stretch.png b/docs/manual/images/aspirin_stretch.png similarity index 100% rename from doc/manual/images/aspirin_stretch.png rename to docs/manual/images/aspirin_stretch.png diff --git a/doc/manual/images/ex_tutorial_bar.png b/docs/manual/images/ex_tutorial_bar.png similarity index 100% rename from doc/manual/images/ex_tutorial_bar.png rename to docs/manual/images/ex_tutorial_bar.png diff --git a/doc/manual/images/ex_tutorial_download.png b/docs/manual/images/ex_tutorial_download.png similarity index 100% rename from doc/manual/images/ex_tutorial_download.png rename to docs/manual/images/ex_tutorial_download.png diff --git a/doc/manual/images/ex_tutorial_params.png b/docs/manual/images/ex_tutorial_params.png similarity index 100% rename from doc/manual/images/ex_tutorial_params.png rename to docs/manual/images/ex_tutorial_params.png diff --git a/doc/manual/images/ex_tutorial_shape_download.png b/docs/manual/images/ex_tutorial_shape_download.png similarity index 100% rename from doc/manual/images/ex_tutorial_shape_download.png rename to docs/manual/images/ex_tutorial_shape_download.png diff --git a/doc/manual/images/ex_tutorial_shape_sphere_zoomed.png b/docs/manual/images/ex_tutorial_shape_sphere_zoomed.png similarity index 100% rename from doc/manual/images/ex_tutorial_shape_sphere_zoomed.png rename to docs/manual/images/ex_tutorial_shape_sphere_zoomed.png diff --git a/doc/manual/images/ex_tutorial_stretch.png b/docs/manual/images/ex_tutorial_stretch.png similarity index 100% rename from doc/manual/images/ex_tutorial_stretch.png rename to docs/manual/images/ex_tutorial_stretch.png diff --git a/doc/manual/images/ex_tutorial_temp.png b/docs/manual/images/ex_tutorial_temp.png similarity index 100% rename from doc/manual/images/ex_tutorial_temp.png rename to docs/manual/images/ex_tutorial_temp.png diff --git a/docs/manual/images/morph_ex1.png b/docs/manual/images/morph_ex1.png new file mode 100644 index 00000000..109b40fb Binary files /dev/null and b/docs/manual/images/morph_ex1.png differ diff --git a/doc/manual/images/morph_ex2.png b/docs/manual/images/morph_ex2.png similarity index 100% rename from doc/manual/images/morph_ex2.png rename to docs/manual/images/morph_ex2.png diff --git a/docs/manual/images/nacl_example.agr b/docs/manual/images/nacl_example.agr new file mode 100644 index 00000000..4a7e1af9 Binary files /dev/null and b/docs/manual/images/nacl_example.agr differ diff --git a/docs/manual/images/nacl_example.png b/docs/manual/images/nacl_example.png new file mode 100644 index 00000000..4c8742e8 Binary files /dev/null and b/docs/manual/images/nacl_example.png differ diff --git a/doc/manual/images/pdfmorph_example.agr b/docs/manual/images/pdfmorph_example.agr similarity index 100% rename from doc/manual/images/pdfmorph_example.agr rename to docs/manual/images/pdfmorph_example.agr diff --git a/doc/manual/images/pdfmorph_example.png b/docs/manual/images/pdfmorph_example.png similarity index 100% rename from doc/manual/images/pdfmorph_example.png rename to docs/manual/images/pdfmorph_example.png diff --git a/doc/manual/images/pdfmorph_example.xcf b/docs/manual/images/pdfmorph_example.xcf similarity index 100% rename from doc/manual/images/pdfmorph_example.xcf rename to docs/manual/images/pdfmorph_example.xcf diff --git a/doc/manual/images/pdfmorph_smear.png b/docs/manual/images/pdfmorph_smear.png similarity index 100% rename from doc/manual/images/pdfmorph_smear.png rename to docs/manual/images/pdfmorph_smear.png diff --git a/doc/manual/images/pdfmorph_smear2.png b/docs/manual/images/pdfmorph_smear2.png similarity index 100% rename from doc/manual/images/pdfmorph_smear2.png rename to docs/manual/images/pdfmorph_smear2.png diff --git a/doc/manual/images/pdfmorph_stretch.png b/docs/manual/images/pdfmorph_stretch.png similarity index 100% rename from doc/manual/images/pdfmorph_stretch.png rename to docs/manual/images/pdfmorph_stretch.png diff --git a/doc/manual/images/qs_tutorial_download.png b/docs/manual/images/qs_tutorial_download.png similarity index 100% rename from doc/manual/images/qs_tutorial_download.png rename to docs/manual/images/qs_tutorial_download.png diff --git a/doc/manual/images/qs_tutorial_morphed.png b/docs/manual/images/qs_tutorial_morphed.png similarity index 100% rename from doc/manual/images/qs_tutorial_morphed.png rename to docs/manual/images/qs_tutorial_morphed.png diff --git a/doc/manual/images/qs_tutorial_scaled.png b/docs/manual/images/qs_tutorial_scaled.png similarity index 100% rename from doc/manual/images/qs_tutorial_scaled.png rename to docs/manual/images/qs_tutorial_scaled.png diff --git a/doc/manual/images/qs_tutorial_unmorphed.png b/docs/manual/images/qs_tutorial_unmorphed.png similarity index 100% rename from doc/manual/images/qs_tutorial_unmorphed.png rename to docs/manual/images/qs_tutorial_unmorphed.png diff --git a/doc/manual/make.bat b/docs/manual/make.bat similarity index 100% rename from doc/manual/make.bat rename to docs/manual/make.bat diff --git a/docs/manual/pdfmorph.pdf b/docs/manual/pdfmorph.pdf new file mode 100644 index 00000000..da02eb9c Binary files /dev/null and b/docs/manual/pdfmorph.pdf differ diff --git a/doc/manual/pdfmorph.texinfo b/docs/manual/pdfmorph.texinfo similarity index 100% rename from doc/manual/pdfmorph.texinfo rename to docs/manual/pdfmorph.texinfo diff --git a/doc/manual/redistribution.texinfo b/docs/manual/redistribution.texinfo similarity index 100% rename from doc/manual/redistribution.texinfo rename to docs/manual/redistribution.texinfo diff --git a/doc/source/_static/.placeholder b/docs/source/_static/.placeholder similarity index 100% rename from doc/source/_static/.placeholder rename to docs/source/_static/.placeholder diff --git a/doc/source/api/diffpy.morph.morph_helpers.rst b/docs/source/api/diffpy.morph.morph_helpers.rst similarity index 100% rename from doc/source/api/diffpy.morph.morph_helpers.rst rename to docs/source/api/diffpy.morph.morph_helpers.rst index e8889166..73e864d3 100644 --- a/doc/source/api/diffpy.morph.morph_helpers.rst +++ b/docs/source/api/diffpy.morph.morph_helpers.rst @@ -11,18 +11,18 @@ diffpy.morph.morph_helpers package Submodules ---------- -diffpy.morph.morph_helpers.transformpdftordf module +diffpy.morph.morph_helpers.transformrdftopdf module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morph_helpers.transformpdftordf +.. automodule:: diffpy.morph.morph_helpers.transformrdftopdf :members: :undoc-members: :show-inheritance: -diffpy.morph.morph_helpers.transformrdftopdf module +diffpy.morph.morph_helpers.transformpdftordf module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morph_helpers.transformrdftopdf +.. automodule:: diffpy.morph.morph_helpers.transformpdftordf :members: :undoc-members: :show-inheritance: diff --git a/doc/source/api/diffpy.morph.morphs.rst b/docs/source/api/diffpy.morph.morphs.rst similarity index 84% rename from doc/source/api/diffpy.morph.morphs.rst rename to docs/source/api/diffpy.morph.morphs.rst index c4b55150..2baaa24e 100644 --- a/doc/source/api/diffpy.morph.morphs.rst +++ b/docs/source/api/diffpy.morph.morphs.rst @@ -11,42 +11,58 @@ diffpy.morph.morphs package Submodules ---------- -diffpy.morph.morphs.morphishape module -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.morphs.morphscale module +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphishape +.. automodule:: diffpy.morph.morphs.morphscale :members: :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphchain module +diffpy.morph.morphs.morphshape module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphchain +.. automodule:: diffpy.morph.morphs.morphshape :members: :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphresolution module -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.morphs.morphshift module +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphresolution +.. automodule:: diffpy.morph.morphs.morphshift :members: :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphshape module +diffpy.morph.morphs.morphfuncy module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphshape +.. automodule:: diffpy.morph.morphs.morphfuncy :members: :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphshift module +diffpy.morph.morphs.morphchain module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphshift +.. automodule:: diffpy.morph.morphs.morphchain + :members: + :undoc-members: + :show-inheritance: + +diffpy.morph.morphs.morphresolution module +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. automodule:: diffpy.morph.morphs.morphresolution + :members: + :undoc-members: + :show-inheritance: + +diffpy.morph.morphs.morphstretch module +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +.. automodule:: diffpy.morph.morphs.morphstretch :members: :undoc-members: :show-inheritance: @@ -59,34 +75,34 @@ diffpy.morph.morphs.morph module :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphrgrid module -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.morphs.morphsqueeze module +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphrgrid +.. automodule:: diffpy.morph.morphs.morphsqueeze :members: :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphsmear module +diffpy.morph.morphs.morphrgrid module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphsmear +.. automodule:: diffpy.morph.morphs.morphrgrid :members: :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphstretch module -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.morphs.morphishape module +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphstretch +.. automodule:: diffpy.morph.morphs.morphishape :members: :undoc-members: :show-inheritance: -diffpy.morph.morphs.morphscale module +diffpy.morph.morphs.morphsmear module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.morphs.morphscale +.. automodule:: diffpy.morph.morphs.morphsmear :members: :undoc-members: :show-inheritance: diff --git a/doc/source/api/diffpy.morph.rst b/docs/source/api/diffpy.morph.rst similarity index 85% rename from doc/source/api/diffpy.morph.rst rename to docs/source/api/diffpy.morph.rst index f29ebe1a..0c2381a8 100644 --- a/doc/source/api/diffpy.morph.rst +++ b/docs/source/api/diffpy.morph.rst @@ -14,16 +14,16 @@ Subpackages .. toctree:: :titlesonly: - diffpy.morph.morphs diffpy.morph.morph_helpers + diffpy.morph.morphs Submodules ---------- -diffpy.morph.pdfplot module -^^^^^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.plot module +^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.pdfplot +.. automodule:: diffpy.morph.plot :members: :undoc-members: :show-inheritance: @@ -36,18 +36,18 @@ diffpy.morph.morph_api module :undoc-members: :show-inheritance: -diffpy.morph.refine module -^^^^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.tools module +^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.refine +.. automodule:: diffpy.morph.tools :members: :undoc-members: :show-inheritance: -diffpy.morph.tools module -^^^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.morphpy module +^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.tools +.. automodule:: diffpy.morph.morphpy :members: :undoc-members: :show-inheritance: @@ -60,10 +60,10 @@ diffpy.morph.morph_io module :undoc-members: :show-inheritance: -diffpy.morph.log module -^^^^^^^^^^^^^^^^^^^^^^^ +diffpy.morph.refine module +^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. automodule:: diffpy.morph.log +.. automodule:: diffpy.morph.refine :members: :undoc-members: :show-inheritance: @@ -75,3 +75,11 @@ diffpy.morph.morphapp module :members: :undoc-members: :show-inheritance: + +diffpy.morph.log module +^^^^^^^^^^^^^^^^^^^^^^^ + +.. automodule:: diffpy.morph.log + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/source/conf.py b/docs/source/conf.py similarity index 91% rename from doc/source/conf.py rename to docs/source/conf.py index aad111d5..64a5c046 100644 --- a/doc/source/conf.py +++ b/docs/source/conf.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# diffpy.morph documentation build configuration file, created by +# diffpy.morph documentation build configuration file, created by # noqa: E501 # sphinx-quickstart on Thu Jan 30 15:49:41 2014. # # This file is execfile()d with the current directory set to its @@ -18,17 +18,27 @@ from importlib.metadata import version from pathlib import Path +# Attempt to import the version dynamically from GitHub tag. +try: + fullversion = version("diffpy.morph") +except Exception: + fullversion = "No version found. The correct version will appear in the released version." # noqa: E501 + +# Import modules referenced in documentation +# (resolves `WARNING: autodoc: failed to import module`) autodoc_mock_imports = [ "diffpy.utils", ] # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the -# documentation root, use Path().resolve() to make it absolute, like shown here. +# documentation root, use Path().resolve() to make it absolute, like shown here. # noqa: E501 # sys.path.insert(0, str(Path(".").resolve())) sys.path.insert(0, str(Path("../..").resolve())) -sys.path.insert(0, str(Path("../../src").resolve())) # abbreviations -ab_authors = "Billinge Group members and community contributors" +sys.path.insert(0, str(Path("../../src").resolve())) + +# abbreviations +ab_authors = "Sangjoon Lee, Simon Billinge, Billinge Group members" # -- General configuration ------------------------------------------------ @@ -45,6 +55,7 @@ "sphinx.ext.viewcode", "sphinx.ext.intersphinx", "sphinx_rtd_theme", + "sphinx_copybutton", "m2r", ] @@ -70,7 +81,6 @@ # |version| and |release|, also used in various other places throughout the # built documents. -fullversion = version(project) # The short X.Y version. version = "".join(fullversion.split(".post")[:1]) # The full version, including alpha/beta/rc tags. @@ -90,6 +100,11 @@ # substitute YEAR in the copyright string copyright = copyright.replace("%Y", year) +# For sphinx_copybutton extension. +# Do not copy "$" for shell commands in code-blocks. +copybutton_prompt_text = r"^\$ " +copybutton_prompt_is_regexp = True + # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ["build"] @@ -125,6 +140,14 @@ # html_theme = "sphinx_rtd_theme" +html_context = { + "display_github": True, + "github_user": "diffpy", + "github_repo": "diffpy.morph", + "github_version": "main", + "conf_py_path": "/doc/source/", +} + # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. diff --git a/doc/source/images/ex_tutorial_bar.png b/docs/source/images/ex_tutorial_bar.png similarity index 100% rename from doc/source/images/ex_tutorial_bar.png rename to docs/source/images/ex_tutorial_bar.png diff --git a/doc/source/images/ex_tutorial_temp.png b/docs/source/images/ex_tutorial_temp.png similarity index 100% rename from doc/source/images/ex_tutorial_temp.png rename to docs/source/images/ex_tutorial_temp.png diff --git a/doc/source/images/qs_tutorial_morphed.png b/docs/source/images/qs_tutorial_morphed.png similarity index 100% rename from doc/source/images/qs_tutorial_morphed.png rename to docs/source/images/qs_tutorial_morphed.png diff --git a/doc/source/images/qs_tutorial_scaled.png b/docs/source/images/qs_tutorial_scaled.png similarity index 100% rename from doc/source/images/qs_tutorial_scaled.png rename to docs/source/images/qs_tutorial_scaled.png diff --git a/doc/source/images/qs_tutorial_unmorphed.png b/docs/source/images/qs_tutorial_unmorphed.png similarity index 100% rename from doc/source/images/qs_tutorial_unmorphed.png rename to docs/source/images/qs_tutorial_unmorphed.png diff --git a/doc/source/index.rst b/docs/source/index.rst similarity index 77% rename from doc/source/index.rst rename to docs/source/index.rst index 9044436d..8224e5f8 100644 --- a/doc/source/index.rst +++ b/docs/source/index.rst @@ -1,10 +1,10 @@ -############################################# +########################## diffpy.morph documentation -############################################# +########################## -diffpy.morph - Tools for manipulating and comparing diffraction data. +``diffpy.morph`` - Tools for manipulating and comparing PDF profiles -| Software version |release|. +| Software version |release| | Last updated |today|. Introduction @@ -39,17 +39,20 @@ the plotted PDFs. Finally, we note that though ``diffpy.morph`` should work on other spectra that are not PDFs, it has not been extensively tested beyond the PDF. -To get started, please visit the :ref:`quick_start`. +To get started, please visit the `quickstart tutorial `__. +For those looking to see more advanced features, you can read our +`advanced tutorials `__. +Finally, for those seeking to integrate ``diffpy.morph`` into their +Python scripts, check out the `morphpy page `__. -======== +======= Authors -======== +======= ``diffpy.morph`` is developed by members of the Billinge Group at Columbia University and Brookhaven National Laboratory including Christopher L. Farrow, Christopher J. Wright, Pavol Juhás, Chia-Hao (Timothy) Liu, Andrew Yang, and Simon J. L. Billinge. - For a detailed list of contributors see https://github.com/diffpy/diffpy.morph/graphs/contributors. @@ -60,6 +63,12 @@ Installation See the `README `_ file included with the distribution. +================ +Acknowledgements +================ + +``diffpy.morph`` is built and maintained with `scikit-package `_. + ================= Table of contents ================= @@ -67,13 +76,15 @@ Table of contents :titlesonly: quickstart + tutorials + morphpy license release Package API -======== +======= Indices -======== +======= * :ref:`genindex` * :ref:`search` diff --git a/doc/source/license.rst b/docs/source/license.rst similarity index 96% rename from doc/source/license.rst rename to docs/source/license.rst index 9ae52a98..a03a8fb8 100644 --- a/doc/source/license.rst +++ b/docs/source/license.rst @@ -9,8 +9,7 @@ OPEN SOURCE LICENSE AGREEMENT ============================= BSD 3-Clause License -Copyright (c) 2024, The Trustees of Columbia University in -the City of New York. +Copyright (c) 2024-2025, The Trustees of Columbia University in the City of New York. All Rights Reserved. Redistribution and use in source and binary forms, with or without diff --git a/docs/source/morphpy.rst b/docs/source/morphpy.rst new file mode 100644 index 00000000..d3d3af57 --- /dev/null +++ b/docs/source/morphpy.rst @@ -0,0 +1,243 @@ +.. _morphpy: + +Using diffpy.morph in Python +############################ + +On top of the command-line (CLI) usage described in the `quickstart tutorial `__, +``diffpy.morph`` also supports Python integration. +All functionality supported on the CLI is also available for Python. +This page is intended for those acquainted with the basic morphs +described in the aforementioned quickstart tutorial who want to use ``diffpy.morph`` in their +Python scripts. + +Python Morphing Functions +========================= + + 1. In the quickstart tutorial, you were asked to try a combined scale, stretch, and smear + morph on the files `darkSub_rh20_C_01.gr` and `darkSub_rh20_C_44.gr` using the command-line + command :: + + diffpy.morph --scale=0.8 --smear=-0.08 --stretch=0.005 --rmin=1.5 --rmax=30 darkSub_rh20_C_01.gr darkSub_rh20_C_44.gr + + 2. To do the same on Python, we must first create a new Python script in the same directory as the + data files `darkSub_rh20_C_01.gr` and `darkSub_rh20_C_44.gr`. + 3. Then, in that script, import :: + + from diffpy.morph.morphpy import morph + + 3. Finally, we run the ``morph`` function :: + + morph_info, morph_table = morph("darkSub_rh20_C_01.gr", "darkSub_rh20_C_44.gr", scale=0.8, smear=-0.08, stretch=0.005, rmin=1.5, rmax=30) + + * The ``morph`` function takes in two file names (or paths). You can also provide various parameters + for morphing (see the Full Parameter List below). + * If, let's say, the file `darkSub_rh20_C_01.gr` is in a subdirectory `subdir/darkSub_rh20_C_01.gr`, + you should replace ``"darkSub_rh20_C_01.gr"`` in the above example with ``"subdir/darkSub_rh20_C_01.gr"``. + + 4. The ``morph`` function returns a dictionary ``morph_info`` and a numpy array ``morph_table``. + + * ``morph_info`` contains all morphs as keys (e.g. ``"scale"``, ``"stretch"``, ``"smear"``) with + the optimized morphing parameters found by ``diffpy.morph`` as values. ``morph_info`` also contains + the Rw and Pearson correlation coefficients found post-morphing. Try printing ``print(morph_info)`` + and compare the values stored in this dictionary to those given by the CLI output! + * ``morph_table`` is a two-column array of the morphed function interpolated onto the grid of the + target function (e.g. in our example, it returns the contents of `darkSub_rh20_C_01.gr` after + the morphs are applied interpolated onto the grid of `darkSub_rh20_C_44.gr`). + 5. Notice that most parameters you are able to use are the same as the options provided in the command-line + interface version of ``diffpy.morph``. For example, the ``--apply`` option becomes the ``apply=True`` parameter. + 6. With that, you have already mastered the basics of using ``diffpy.morph`` on Python! + 7. Note that instead of passing two files to ``diffpy.morph``, you might instead want to directly + pass arrays. For example, rather than passing `darkSub_rh20_C_01.gr`, I may want to pass + a two-column array named ``ds_rh20_c_01_array`` containing the data table contents of the file + `darkSub_rh20_C_01.gr`. In this case, we have a separate function :: + + from diffpy.morph.morphpy import morph_arrays + + 8. Assuming we have loaded the data in `darkSub_rh20_C_01.gr` into ``ds_rh20_c_01_array`` and + `darkSub_rh20_C_44.gr` into ``ds_rh20_c_44_array``, we can apply the same morph as step 3 + by running :: + + morph_info, morph_table = morph_arrays(ds_rh20_c_01_array, ds_rh20_c_44_array, scale=0.8, smear=-0.08, stretch=0.5, rmin=1.5, rmax=30) + + 9. Notice that the two-column format of the input to ``morph_arrays`` is the same as the + output of ``morph`` and ``morph_arrays``. It is VERY IMPORTANT that the data is in two-column format + rather than the traditional two-row format. This is to reflect the file formats conventionally + used to store PDFs. Again, try printing ``print(morph_info)`` and compare! + 10. For a full list of parameters used by (both) ``morph`` and ``morph_arrays``, see the Full Parameter List + section below. + +Full Parameter List +=================== + +General Parameters +------------------ + +save: str or path + Save the morphed function to a the file passed to save. Use '-' for stdout. +verbose: bool + Print additional header details to saved files. These include details about the morph + inputs and outputs. +rmin: float + Minimum r-value (abscissa) to use for function comparisons. +rmax: float + Maximum r-value (abscissa) to use for function comparisons. +tolerance: float + Specify least squares refiner tolerance when optimizing for morph parameters. Default: 10e-8. +pearson: bool + The refiner instead maximizes agreement in the Pearson function + (default behavior is to minimize the residual). + Note that this is insensitive to scale. +addpearson: bool + Maximize agreement in the Pearson function as well as minimizing the residual. + +Manipulations +------------- +These parameters select the manipulations that are to be applied to the +function. The passed values will be refined unless specifically +excluded with the apply or exclude parameters. + +apply: bool + Apply morphs but do not refine. +exclude: str + Exclude a manipulation from refinement by name. +scale: float + Apply scale factor. This multiplies the function ordinate by scale. +stretch: float + Stretch function grid by a fraction stretch. Specifically, this multiplies the function grid by 1+stretch. +squeeze: list of float + Squeeze function grid given a polynomial + p(x) = squeeze[0]+squeeze[1]*x+...+squeeze[n]*x^n. n is dependent on the number + of values in the user-inputted comma-separated list. + The morph transforms the function grid from x to x+p(x). + When this parameter is given, hshift is disabled. + When n>1, stretch is disabled. +smear: float + Smear the peaks with a Gaussian of width smear. This + is done by convolving the function with a Gaussian + with standard deviation smear. If both smear and + smear_pdf are used, only smear_pdf will be + applied. +smear_pdf: float + Convert PDF to RDF. Then, smear peaks with a Gaussian + of width smear_pdf. Convert back to PDF. If both smear and + smear_pdf are used, only smear_pdf will be + applied. +slope: float + Slope of the baseline used in converting from PDF to RDF. + This is used with the option smear_pdf. The slope will + be estimated if not provided. +hshift: float + Shift the function horizontally by hshift to the right. +vshift: float + Shift the function vertically by vshift upward. +qdamp: float + Dampen PDF by a factor qdamp. +radius: float + Apply characteristic function of sphere with radius + given by parameter radius. If pradius is also specified, instead apply + characteristic function of spheroid with equatorial + radius radius and polar radius pradius. +pradius: float + Apply characteristic function of spheroid with + equatorial radius given by above parameter radius and polar radius pradius. + If only pradius is specified, instead apply + characteristic function of sphere with radius pradius. +iradius: float + Apply inverse characteristic function of sphere with + radius iradius. If ipradius is also specified, instead + apply inverse characteristic function of spheroid with + equatorial radius iradius and polar radius ipradius. +ipradius: float + Apply inverse characteristic function of spheroid with + equatorial radius iradius and polar radius ipradius. + If only ipradius is specified, instead apply inverse + characteristic function of sphere with radius ipradius. +funcy: tuple (function, dict) + This morph applies the function funcy[0] with parameters given in funcy[1]. + The function funcy[0] must be a function of both the abscissa and ordinate + (e.g. take in at least two inputs with as many additional parameters as needed). + For example, let's start with a two-column table with abscissa x and ordinate y. + let us say we want to apply the function :: + + def linear(x, y, a, b, c): + return a * x + b * y + c + + This function takes in both the abscissa and ordinate on top of three additional + parameters a, b, and c. To use the funcy parameter with initial guesses + a=1.0, b=2.0, c=3.0, we would pass ``funcy=(linear, {a: 1.0, b: 2.0, c: 3.0})``. + For an example use-case, see the Python-Specific Morphs section below. + + +Python-Specific Morphs +====================== + +Some morphs in ``diffpy.morph`` are supported only in Python. Here, we detail +how they are used and how to call them. + +MorphFuncy: Applying custom functions +------------------------------------- + +The ``MorphFuncy`` morph allows users to apply a custom Python function +to the y-axis values of a dataset, enabling flexible and user-defined +transformations. + +In this tutorial, we walk through how to use ``MorphFuncy`` with an example +transformation. Unlike other morphs that can be run from the command line, +``MorphFuncy`` requires a Python function and is therefore intended to be used +through Python scripting. + + 1. Import the necessary modules into your Python script: + + .. code-block:: python + + from diffpy.morph.morphpy import morph_arrays + import numpy as np + + 2. Define a custom Python function to apply a transformation to the data. + The function must take ``x`` and ``y`` (1D arrays of the same length) + along with named parameters, and return a transformed ``y`` array of the + same length. + For this example, we will use a simple linear transformation that + scales the input and applies an offset: + + .. code-block:: python + + def linear_function(x, y, scale, offset): + return (scale * x) * y + offset + + 3. In this example, we use a sine function for the morph data and generate + the target data by applying the linear transformation with known scale + and offset to it: + + .. code-block:: python + + x_morph = np.linspace(0, 10, 101) + y_morph = np.sin(x_morph) + x_target = x_morph.copy() + y_target = np.sin(x_target) * 20 * x_target + 0.8 + + 4. Setup and run the morph using the ``morph_arrays(...)``. + ``morph_arrays`` expects the morph and target data as **2D arrays** in + *two-column* format ``[[x0, y0], [x1, y1], ...]``. This will apply + the user-defined function and refine the parameters to best align the + morph data with the target data. This includes both the transformation + parameters (our initial guess) and the transformation function itself: + + .. code-block:: python + + morph_params, morph_table = morph_arrays(np.array([x_morph, y_morph]).T,np.array([x_target, y_target]).T, + funcy=(linear_function,{'scale': 1.2, 'offset': 0.1})) + + 5. Extract the fitted parameters from the result: + + .. code-block:: python + + fitted_params = morph_params["funcy"] + print(f"Fitted scale: {fitted_params['scale']}") + print(f"Fitted offset: {fitted_params['offset']}") + +As you can see, the fitted scale and offset values match the ones used +to generate the target (scale=20 & offset=0.8). This example shows how +``MorphFuncy`` can be used to fit and apply custom transformations. Now +it's your turn to experiment with other custom functions that may be useful +for analyzing your data. diff --git a/doc/source/quickstart.rst b/docs/source/quickstart.rst similarity index 51% rename from doc/source/quickstart.rst rename to docs/source/quickstart.rst index 0164ce20..d4487464 100644 --- a/doc/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -1,10 +1,15 @@ .. _quick_start: -diffpy.morph Tutorial -##################### +Quickstart +########## Welcome! This will be a quick tutorial to accquaint users with ``diffpy.morph`` -and some of what it can do. To see more details and definitions about +and some of what it can do on the command-line. +Tutorials for more advanced features can be found on the `advanced tutorials page `__. +For those wishing to integrate ``diffpy.morph`` into their Python scripts, +see the `morphpy tutorial `__. + +To see more details and definitions about the morphs please see the publication describing ``diffpy.morph``. To be published: @@ -46,8 +51,8 @@ Basic diffpy.morph Workflow 3. Using the ``mkdir`` command, create a directory where you'll store the tutorial PDF files and use the ``cd`` command to change into that directory. You can download the tutorial files - :download:`here <../../tutorial/tutorialData.zip>`. - Then, ``cd`` into the ``tutorialData`` directory. + :download:`here <../../tutorial/quickstartData.zip>`. + Then, ``cd`` into the ``quickstartData`` directory. * The files in this dataset were collected by Soham Banerjee at Brookhaven National Laboratory in Upton, New York. @@ -176,7 +181,7 @@ Basic diffpy.morph Workflow 8. Finally, we will examine the stretch factor. Provide an initial guess by typing :: - diffpy.morph --scale=0.8 --smear=-0.08 --stretch=0.5 --rmin=1.5 --rmax=30 -a darkSub_rh20_C_01.gr darkSub_rh20_C_44.gr + diffpy.morph --scale=0.8 --smear=-0.08 --stretch=0.005 --rmin=1.5 --rmax=30 -a darkSub_rh20_C_01.gr darkSub_rh20_C_44.gr And noting that the difference has increased. Before continuing, see if you can see which direction (higher or lower) our initial @@ -209,193 +214,6 @@ Enjoy the software! .. ------------------------------------------------- .. TODO include undoped PDF example -Extra Tutorials -=============== -``diffpy.morph`` has some more functionalities not showcased in the basic workflow above -(see `diffpy.morph --help` for an overview of these functionalities). -Tutorials for these additional functionalities are included below. Additional -files for these tutorials can be downloaded -:download:`here <../../tutorial/additionalData.zip>`. - -Performing Multiple Morphs --------------------------- - -It may be useful to morph a PDF against multiple targets: -for example, you may want to morph a PDF against multiple PDFs measured -at various temperatures to determine whether a phase change has occurred. -``diffpy.morph`` currently allows users to morph a PDF against all files in a -selected directory and plot resulting :math:`R_w` values from each morph. - -1. Within the ``additionalData`` directory, ``cd`` into the - ``morphsequence`` directory. Inside, you will find multiple PDFs of - :math:`SrFe_2As_2` measured at various temperatures. These PDFs are - from `"Atomic Pair Distribution Function Analysis: A primer" - `_. - -2. Let us start by getting the Rw of ``SrFe2As2_150K.gr`` compared to - all other files in the directory. Run :: - - diffpy.morph SrFe2As2_150K.gr . --multiple-targets - - The multiple tag indicates we are comparing PDF file (first input) - against all PDFs in a directory (second input). Our choice of file - was ``SeFe2As2_150K.gr`` and directory was the cwd, which should be - ``morphsequence``.:: - - diffpy.morph SrFe2As2_150K.gr . --multiple-targets --sort-by=temperature - -.. figure:: images/ex_tutorial_bar.png - :align: center - :figwidth: 100% - - Bar chart of :math:`R_W` values for each target file. Target files are - listed in ASCII sort order. - -3. After running this, we get chart of Rw values for each target file. - However, this chart can be a bit confusing to interpret. To get a - more understandable plot, run :: - - diffpy.morph SrFe2As2_150K.gr . --multiple-targets --sort-by=temperature - - This plots the Rw against the temperature parameter value provided - at the top of each file. Parameters are entries of the form - `` = `` and are located above - the ``r`` versus ``gr`` table in each PDF file.:: - - # SrFe2As2_150K.gr - [PDF Parameters] - temperature = 150 - wavelength = 0.1 - ... - -.. figure:: images/ex_tutorial_temp.png - :align: center - :figwidth: 100% - - The :math:`R_W` plotted against the temperature the target PDF was - measured at. - -4. Between 192K and 198K, the Rw has a sharp increase, indicating that - we may have a phase change. To confirm, let us now apply morphs - onto `` SrFe2As2_150K.gr`` with all other files in - ``morphsequence`` as targets :: - - diffpy.morph --scale=1 --stretch=0 SrFe2As2_150K.gr . --multiple-targets --sort-by=temperature - - Note that we are not applying a smear since it takes a long time to - apply and does not significantly change the Rw values in this example. - -5. We should now see a sharper increase in Rw between 192K and 198K. - -6. Go back to the terminal to see optimized morphing parameters from each morph. - -7. On the morph with ``SrFe2As2_192K.gr`` as target, ``scale = - 0.972085`` and ``stretch = 0.000508`` and with ``SrFe2As2_198K.gr`` - as target, ``scale = 0.970276`` and ``stretch = 0.000510``. These - are very similar, meaning that thermal lattice expansion (accounted - for by ``stretch``) is not occurring. This, coupled with the fact - that the Rw significantly increases suggests a phase change in this - temperature regime. (In fact, :math:`SrFe_2As_2` does transition - from orthorhombic at lower temperature to tetragonal at higher - temperature!). More sophisticated analysis can be done with - `PDFgui `_. - -8. Finally, let us save all the morphed PDFs into a directory - named ``saved-morphs``. :: - - diffpy.morph SrFe2As2_150K.gr . --scale=1 --stretch=0 --multiple-targets \ - --sort-by=temperature --plot-parameter=stretch \ - --save=saved-morphs - - Entering the directory with ``cd`` and viewing its contents with - ``ls``, we see a file named ``morph-reference-table.txt`` with data - about the input morph parameters and re- fined output parameters - and a directory named ``morphs`` containing all the morphed - PDFs. See the ``--save-names-file`` option to see how you can set - the names for these saved morphs! - -Nanoparticle Shape Effects --------------------------- - -A nanoparticle's finite size and shape can affect the shape of its PDF. -We can use ``diffpy.morph`` to morph a bulk material PDF to simulate these shape effects. -Currently, the supported nanoparticle shapes include: spheres and spheroids. - -* Within the ``additionalData`` directory, ``cd`` into the - ``morphShape`` subdirectory. Inside, you will find a sample Ni bulk - material PDF ``Ni_bulk.gr``. This PDF is from `"Atomic Pair - Distribution Function Analysis: - A primer" `_. - There are also multiple ``.cgr`` files with calculated Ni nanoparticle PDFs. - -* Let us apply various shape effect morphs on the bulk material to - reproduce these calculated PDFs. - - * Spherical Shape - 1. The ``Ni_nano_sphere.cgr`` file contains a generated - spherical nanoparticle with unknown radius. First, let us - plot ``Ni_blk.gr`` against ``Ni_nano_sphere.cgr`` :: - - diffpy.morph Ni_bulk.gr Ni_nano_sphere.cgr - - Despite the two being the same material, the Rw is quite large. - To reduce the Rw, we will apply spherical shape effects onto the PDF. - However, in order to do so, we first need the radius of the - spherical nanoparticle. - - 2. To get the radius, we can first observe a plot of - ``Ni_nano_sphere.cgr`` :: - - diffpy.morph Ni_nano_sphere.cgr Ni_nano_sphere.cgr - - 3. Nanoparticles tend to have broader peaks at r-values larger - than the particle size, corresponding to the much weaker - correlations between molecules. On our plot, beyond r=22.5, - peaks are too broad to be visible, indicating our particle - size to be about 22.4. The approximate radius of a sphere - would be half of that, or 11.2.:: - - diffpy.morph Ni_bulk.gr Ni_nano_sphere.cgr --radius=11.2 -a - - - 4. Now, we are ready to perform a morph applying spherical - effects. To do so, we use the ``--radius`` parameter :: - - diffpy.morph Ni_bulk.gr Ni_nano_sphere.cgr --radius=11.2 -a - - 5. We can see that the Rw value has significantly decreased - from before. Run without the ``-a`` tag to refine :: - - diffpy.morph Ni_bulk.gr Ni_nano_sphere.cgr --radius=11.2 - - 6. After refining, we see the actual radius of the - nanoparticle was closer to 12. - - * Spheroidal Shape - - 1. The ``Ni_nano_spheroid.cgr`` file contains a calculated - spheroidal Ni nanoparticle. Again, we can begin by plotting - the bulk material against our nanoparticle :: - - diffpy.morph Ni_bulk.gr Ni_nano_spheroid.cgr - - 2. Inside the ``Ni_nano_spheroid.cgr`` file, we are given that - the equatorial radius is 12 and polar radius is 6. This is - enough information to define our spheroid. To apply - spheroid shape effects onto our bulk, run :: - - diffpy.morph Ni_bulk.gr Ni_nano_spheroid.cgr --radius=12 --pradius=6 -a - - Note that the equatorial radius corresponds to the - ``--radius`` parameter and polar radius to ``--pradius``. - - 3. Remove the ``-a`` tag to refine. - -There is also support for morphing from a nanoparticle to a bulk. When -applying the inverse morphs, it is recommended to set ``--rmax=psize`` -where ``psize`` is the longest diameter of the nanoparticle. Bug Reports =========== diff --git a/doc/source/release.rst b/docs/source/release.rst similarity index 100% rename from doc/source/release.rst rename to docs/source/release.rst diff --git a/doc/source/tutorialfiles.rst b/docs/source/tutorialfiles.rst similarity index 72% rename from doc/source/tutorialfiles.rst rename to docs/source/tutorialfiles.rst index 04e2124b..c89cb221 100644 --- a/doc/source/tutorialfiles.rst +++ b/docs/source/tutorialfiles.rst @@ -2,7 +2,7 @@ Download Tutorial Files Here ############################ Quick start tutorial data: -:download:`tutorialData.zip <../../tutorial/tutorialData.zip>` +:download:`tutorialData.zip <../../tutorial/quickstartData.zip>` Extra tutorial data: :download:`additionalData.zip <../../tutorial/additionalData.zip>` diff --git a/docs/source/tutorials.rst b/docs/source/tutorials.rst new file mode 100644 index 00000000..01ba3455 --- /dev/null +++ b/docs/source/tutorials.rst @@ -0,0 +1,263 @@ +.. _tutorials: + +Advanced Tutorials +################## +``diffpy.morph`` has some more functionalities not showcased in the `quickstart tutorial `__. +Tutorials for these are included below. The files required for these tutorials can be downloaded +:download:`here <../../tutorial/additionalData.zip>`. + +For a full list of options offered by ``diffpy.morph``, please run ``diffpy.morph --help`` on the command line. + +Performing Multiple Morphs +========================== + +It may be useful to morph a PDF against multiple targets: +for example, you may want to morph a PDF against multiple PDFs measured +at various temperatures to determine whether a phase change has occurred. +``diffpy.morph`` currently allows users to morph a PDF against all files in a +selected directory and plot resulting :math:`R_w` values from each morph. + +1. Within the ``additionalData`` directory, ``cd`` into the + ``morphsequence`` directory. Inside, you will find multiple PDFs of + :math:`SrFe_2As_2` measured at various temperatures. These PDFs are + from `"Atomic Pair Distribution Function Analysis: A primer" + `_. + +2. Let us start by getting the :math:`R_w` of ``SrFe2As2_150K.gr`` compared to + all other files in the directory. Run :: + + diffpy.morph SrFe2As2_150K.gr . --multiple-targets + + The multiple tag indicates we are comparing PDF file (first input) + against all PDFs in a directory (second input). Our choice of file + was ``SeFe2As2_150K.gr`` and directory was the cwd, which should be + ``morphsequence``. + +.. figure:: images/ex_tutorial_bar.png + :align: center + :figwidth: 100% + + Bar chart of :math:`R_W` values for each target file. Target files are + listed in ASCII sort order. + +3. After running this, we get chart of :math:`R_w` values for each target file. + However, this chart can be a bit confusing to interpret. To get a + more understandable plot, run :: + + diffpy.morph SrFe2As2_150K.gr . --multiple-targets --sort-by=temperature + + This plots the :math:`R_w` against the temperature parameter value provided + at the top of each file. Parameters are entries of the form + `` = `` and are located above + the ``r`` versus ``gr`` table in each PDF file. :: + + # SrFe2As2_150K.gr + [PDF Parameters] + temperature = 150 + wavelength = 0.1 + ... + +.. figure:: images/ex_tutorial_temp.png + :align: center + :figwidth: 100% + + The :math:`R_W` plotted against the temperature the target PDF was + measured at. + +4. Between 192K and 198K, the Rw has a sharp increase, indicating that + we may have a phase change. To confirm, let us now apply morphs + onto `` SrFe2As2_150K.gr`` with all other files in + ``morphsequence`` as targets :: + + diffpy.morph --scale=1 --stretch=0 SrFe2As2_150K.gr . --multiple-targets --sort-by=temperature + + Note that we are not applying a smear since it takes a long time to + apply and does not significantly change the Rw values in this example. + +5. We should now see a sharper increase in :math:`R_w` between 192K and 198K. + +6. Go back to the terminal to see optimized morphing parameters from each morph. + +7. On the morph with ``SrFe2As2_192K.gr`` as target, ``scale = + 0.972085`` and ``stretch = 0.000508`` and with ``SrFe2As2_198K.gr`` + as target, ``scale = 0.970276`` and ``stretch = 0.000510``. These + are very similar, meaning that thermal lattice expansion (accounted + for by ``stretch``) is not occurring. This, coupled with the fact + that the Rw significantly increases suggests a phase change in this + temperature regime. (In fact, :math:`SrFe_2As_2` does transition + from orthorhombic at lower temperature to tetragonal at higher + temperature!). More sophisticated analysis can be done with + `PDFgui `_. + +8. Finally, let us save all the morphed PDFs into a directory + named ``saved-morphs``. :: + + diffpy.morph SrFe2As2_150K.gr . --scale=1 --stretch=0 --multiple-targets \ + --sort-by=temperature --plot-parameter=stretch \ + --save=saved-morphs + + Entering the directory with ``cd`` and viewing its contents with + ``ls``, we see a file named ``morph-reference-table.txt`` with data + about the input morph parameters and re- fined output parameters + and a directory named ``morphs`` containing all the morphed + PDFs. See the ``--save-names-file`` option to see how you can set + the names for these saved morphs! + +Polynomial Squeeze Morph +========================= + +Another advanced feature in ``diffpy.morph`` is the ``MorphSqueeze`` morph, +which applies a user-defined polynomial to squeeze the morph function along the +x-axis. This provides a flexible way to correct for higher-order distortions +that simple shift or stretch morphs cannot fully address. +Such distortions can arise from geometric artifacts in X-ray detector modules, +including tilts, curved detection planes, or angle-dependent offsets, as well +as from intrinsic structural effects in the sample. + +A first-order squeeze polynomial recovers the behavior of simple shift or stretch, +while higher-order terms enable non-linear corrections. The squeeze transformation +is defined as: + +.. math:: + + \Delta r(r) = a_0 + a_1 r + a_2 r^2 + \dots + a_n r^n + +where :math:`a_0, a_1, ..., a_n` are the polynomial coefficients defined by the user. + +In this example, we show how to apply a squeeze morph in combination +with a scale morph to match a morph function to its target. The required +files can be found in ``additionalData/morphsqueeze/``. + +1. ``cd`` into the ``morphsqueeze`` directory:: + + cd additionalData/morphsqueeze + + Here you will find: + + - ``squeeze_morph.cgr`` — the morph function with a small built-in polynomial distortion. + - ``squeeze_target.cgr`` — the target function. + +2. Suppose we know that the morph needs a quadratic and cubic squeeze, + plus a scale factor to best match the target. As an initial guess, + we can use: + + - ``squeeze = 0,-0.001,-0.0001,0.0001`` + (for a polynomial: :math:`a_0 + a_1 x + a_2 x^2 + a_3 x^3`) + - ``scale = 1.1`` + + The squeeze polynomial is provided as a comma-separated list (no spaces):: + + diffpy.morph --scale=1.1 --squeeze=0,-0.001,-0.0001,0.0001 -a squeeze_morph.cgr squeeze_target.cgr + +3. ``diffpy.morph`` will apply the polynomial squeeze and scale, + display the initial and refined coefficients, and show the final + difference ``Rw``. + + To refine the squeeze polynomial and scale automatically, remove + the ``-a`` tag if you used it. For example:: + + diffpy.morph --scale=1.1 --squeeze=0,-0.001,-0.0001,0.0001 squeeze_morph.cgr squeeze_target.cgr + +4. Check the output for the final squeeze polynomial coefficients and scale. + They should match the true values used to generate the test data: + + - ``squeeze = 0, 0.01, 0.0001, 0.001`` + - ``scale = 0.5`` + + ``diffpy.morph`` refines the coefficients to minimize the residual + between the squeezed, scaled morph function and the target. + +.. warning:: + + **Extrapolation risk:** + A polynomial squeeze can shift morph data outside the target’s ``r``-range, + so parts of the output may be extrapolated. + This is generally fine if the polynomial coefficients are small and + the distortion is therefore small. If your coefficients are large, check the + plots carefully — strong extrapolation can produce unrealistic features at + the edges. If needed, adjust the coefficients to keep the morph physically + meaningful. + +Experiment with your own squeeze polynomials to fine-tune your morphs — even +small higher-order corrections can make a big difference! + +Nanoparticle Shape Effects +========================== + +A nanoparticle's finite size and shape can affect the shape of its PDF. +We can use ``diffpy.morph`` to morph a bulk material PDF to simulate these shape effects. +Currently, the supported nanoparticle shapes include: spheres and spheroids. + +* Within the ``additionalData`` directory, ``cd`` into the + ``morphShape`` subdirectory. Inside, you will find a sample Ni bulk + material PDF ``Ni_bulk.gr``. This PDF is from `"Atomic Pair + Distribution Function Analysis: + A primer" `_. + There are also multiple ``.cgr`` files with calculated Ni nanoparticle PDFs. + +* Let us apply various shape effect morphs on the bulk material to + reproduce these calculated PDFs. + + * Spherical Shape + 1. The ``Ni_nano_sphere.cgr`` file contains a generated + spherical nanoparticle with unknown radius. First, let us + plot ``Ni_blk.gr`` against ``Ni_nano_sphere.cgr`` :: + + diffpy.morph Ni_bulk.gr Ni_nano_sphere.cgr + + Despite the two being the same material, the Rw is quite large. + To reduce the Rw, we will apply spherical shape effects onto the PDF. + However, in order to do so, we first need the radius of the + spherical nanoparticle. + + 2. To get the radius, we can first observe a plot of + ``Ni_nano_sphere.cgr`` :: + + diffpy.morph Ni_nano_sphere.cgr Ni_nano_sphere.cgr + + Nanoparticles tend to have broader peaks at r-values larger + than the particle size, corresponding to the much weaker + correlations between molecules. On our plot, beyond r=22.5, + peaks are too broad to be visible, indicating our particle + size to be about 22.4. The approximate radius of a sphere + would be half of that, or 11.2. + + + 3. Now, we are ready to perform a morph applying spherical + effects. To do so, we use the ``--radius`` parameter :: + + diffpy.morph Ni_bulk.gr Ni_nano_sphere.cgr --radius=11.2 -a --rmax=30 + + 4. We can see that the :math:`Rw` value has significantly decreased + from before. Run without the ``-a`` tag to refine :: + + diffpy.morph Ni_bulk.gr Ni_nano_sphere.cgr --radius=11.2 --rmax=30 + + 5. After refining, we see the actual radius of the + nanoparticle was closer to 12. + + * Spheroidal Shape + + 1. The ``Ni_nano_spheroid.cgr`` file contains a calculated + spheroidal Ni nanoparticle. Again, we can begin by plotting + the bulk material against our nanoparticle :: + + diffpy.morph Ni_bulk.gr Ni_nano_spheroid.cgr + + 2. Inside the ``Ni_nano_spheroid.cgr`` file, we are given that + the equatorial radius is 12 and polar radius is 6. This is + enough information to define our spheroid. To apply + spheroid shape effects onto our bulk, run :: + + diffpy.morph Ni_bulk.gr Ni_nano_spheroid.cgr --radius=12 --pradius=6 -a --rmax=30 + + Note that the equatorial radius corresponds to the + ``--radius`` parameter and polar radius to ``--pradius``. + + 3. Remove the ``-a`` tag to refine. + +There is also support for morphing from a nanoparticle to a bulk. When +applying the inverse morphs, it is recommended to set ``--rmax=psize`` +where ``psize`` is the longest diameter of the nanoparticle. diff --git a/news/add-docformatter.rst b/news/add-docformatter.rst new file mode 100644 index 00000000..41a1befc --- /dev/null +++ b/news/add-docformatter.rst @@ -0,0 +1,23 @@ +**Added:** + +* Add docformatter config to pyproject.toml + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/bugfix.rst b/news/bugfix.rst new file mode 100644 index 00000000..ec2da171 --- /dev/null +++ b/news/bugfix.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* Swap colors for morph and target. Morph is now blue and target red. + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* Multiple morphs/targets used to break given multiple subdirectories. + +**Security:** + +* diff --git a/news/dict_lists_refinement.rst b/news/dict_lists_refinement.rst new file mode 100644 index 00000000..4e7fcb39 --- /dev/null +++ b/news/dict_lists_refinement.rst @@ -0,0 +1,23 @@ +**Added:** + +* Functionality for refining lists and dictionaries + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/diffpy_morph.rst b/news/diffpy_morph.rst index 52beb663..32740fb1 100644 --- a/news/diffpy_morph.rst +++ b/news/diffpy_morph.rst @@ -1,23 +1,23 @@ -**Added:** - -* - -**Changed:** - -* Renamed PDFmorph to diffpy.morph - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* +**Added:** + +* + +**Changed:** + +* Renamed PDFmorph to diffpy.morph + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/doc.rst b/news/doc.rst new file mode 100644 index 00000000..b0ec659f --- /dev/null +++ b/news/doc.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* Support ``scikit-package`` Level 5 standard (https://scikit-package.github.io/scikit-package/). + +**Security:** + +* diff --git a/news/doc_review_2.0.rst b/news/doc_review_2.0.rst new file mode 100644 index 00000000..12317208 --- /dev/null +++ b/news/doc_review_2.0.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* Typo fixes in documentation. + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/morphfuncy.rst b/news/morphfuncy.rst new file mode 100644 index 00000000..c6410817 --- /dev/null +++ b/news/morphfuncy.rst @@ -0,0 +1,23 @@ +**Added:** + +* General morph function that applies a user-supplied Python function to the y-coordinates of morph data + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/morphpy.rst b/news/morphpy.rst new file mode 100644 index 00000000..663d12e5 --- /dev/null +++ b/news/morphpy.rst @@ -0,0 +1,24 @@ +**Added:** + +* Python interfacing to call PDFmorph +* Returns dictionary of morph metrics (dict) and the r, gr pair for plotting or further manipulation + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/morphsqueeze.rst b/news/morphsqueeze.rst new file mode 100644 index 00000000..750fbcf1 --- /dev/null +++ b/news/morphsqueeze.rst @@ -0,0 +1,23 @@ +**Added:** + +* Polynomial squeeze of x-axis of morphed data + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/qs_refactor.rst b/news/qs_refactor.rst new file mode 100644 index 00000000..a07bf294 --- /dev/null +++ b/news/qs_refactor.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* Tutorial documentation files split into three sections. + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/rm_main.rst b/news/rm_main.rst new file mode 100644 index 00000000..7fb2429d --- /dev/null +++ b/news/rm_main.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* No news: edits to test files + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/smear-update.rst b/news/smear-update.rst new file mode 100644 index 00000000..89e0e559 --- /dev/null +++ b/news/smear-update.rst @@ -0,0 +1,23 @@ +**Added:** + +* New --smear option applies the smear morph directly to the function (without transforming to RDF). + +**Changed:** + +* Former --smear option renamed to --smear-pdf (converts PDF to RDF before applying the smear morph). + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/squeeze_cli.rst b/news/squeeze_cli.rst new file mode 100644 index 00000000..5a673f0f --- /dev/null +++ b/news/squeeze_cli.rst @@ -0,0 +1,24 @@ +**Added:** + +* Squeeze morph now added to CLI. + +**Changed:** + +* Stretch disabled when squeeze is above polynomial order 0. +* Horizontal shift morph disabled when squeeze is enabled. + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/squeeze_lims.rst b/news/squeeze_lims.rst new file mode 100644 index 00000000..e27b64b0 --- /dev/null +++ b/news/squeeze_lims.rst @@ -0,0 +1,23 @@ +**Added:** + +* Error thrown when squeeze morph given improper inputs. + +**Changed:** + +* Squeeze morph now removes duplicate/repeated and trailing commas before parsing. + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/tolerance.rst b/news/tolerance.rst new file mode 100644 index 00000000..7d35607b --- /dev/null +++ b/news/tolerance.rst @@ -0,0 +1,23 @@ +**Added:** + +* Option to set tolerance for the morph refinement (default 1e-08). + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/tutorial_morphfuncy.rst b/news/tutorial_morphfuncy.rst new file mode 100644 index 00000000..e50900f3 --- /dev/null +++ b/news/tutorial_morphfuncy.rst @@ -0,0 +1,23 @@ +**Added:** + +* Added a tutorial for MorphFuncy + +**Changed:** + +* Changed docstrings location for MorphFuncy and MorphSqueeze + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/tutorial_squeeze_funcy.rst b/news/tutorial_squeeze_funcy.rst new file mode 100644 index 00000000..f4c4d7ae --- /dev/null +++ b/news/tutorial_squeeze_funcy.rst @@ -0,0 +1,23 @@ +**Added:** + +* Added tutorial for MorphSqueeze and MorphFuncy + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +* diff --git a/news/v2_doc_fix.rst b/news/v2_doc_fix.rst new file mode 100644 index 00000000..fc374d24 --- /dev/null +++ b/news/v2_doc_fix.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* diffpy.morph manual removed. + +**Fixed:** + +* + +**Security:** + +* diff --git a/pyproject.toml b/pyproject.toml index f007f315..735b5e78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,11 @@ exclude-file = ".codespell/ignore_lines.txt" ignore-words = ".codespell/ignore_words.txt" skip = "*.cif,*.dat,*agr" +[tool.docformatter] +recursive = true +wrap-summaries = 72 +wrap-descriptions = 72 + [tool.black] line-length = 79 include = '\.pyi?$' diff --git a/requirements/build.txt b/requirements/build.txt deleted file mode 100644 index f72d870d..00000000 --- a/requirements/build.txt +++ /dev/null @@ -1,2 +0,0 @@ -python -setuptools diff --git a/requirements/docs.txt b/requirements/docs.txt index ab17b1c8..5f34c6ed 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,4 +1,5 @@ sphinx sphinx_rtd_theme +sphinx-copybutton doctr m2r diff --git a/requirements/test.txt b/requirements/tests.txt similarity index 100% rename from requirements/test.txt rename to requirements/tests.txt index f33bd0e3..a7277865 100644 --- a/requirements/test.txt +++ b/requirements/tests.txt @@ -2,5 +2,5 @@ flake8 pytest codecov coverage -pytest-env pytest-cov +pytest-env diff --git a/src/diffpy/__init__.py b/src/diffpy/__init__.py index 38fef756..d8e13db0 100644 --- a/src/diffpy/__init__.py +++ b/src/diffpy/__init__.py @@ -1,25 +1,14 @@ #!/usr/bin/env python ############################################################################## # -# (c) 2024 The Trustees of Columbia University in the City of New York. +# (c) 2025 The Trustees of Columbia University in the City of New York. # All rights reserved. # # File coded by: Billinge Group members and community contributors. # # See GitHub contributions for a more detailed list of contributors. -# https://github.com/diffpy/diffpy.pdfmorph/graphs/contributors +# https://github.com/diffpy/diffpy.morph/graphs/contributors # # See LICENSE.rst for license information. # ############################################################################## - -"""morph - tools for manipulating and comparing PDF data. - -""" - - -from pkgutil import extend_path - -__path__ = extend_path(__path__, __name__) - -# End of file diff --git a/src/diffpy/morph/__init__.py b/src/diffpy/morph/__init__.py index b1006e3c..48455828 100644 --- a/src/diffpy/morph/__init__.py +++ b/src/diffpy/morph/__init__.py @@ -1,10 +1,10 @@ #!/usr/bin/env python ############################################################################## # -# (c) 2024 The Trustees of Columbia University in the City of New York. +# (c) 2025 The Trustees of Columbia University in the City of New York. # All rights reserved. # -# File coded by: Billinge Group members and community contributors. +# File coded by: Sangjoon Lee, Simon Billinge, Billinge Group members. # # See GitHub contributions for a more detailed list of contributors. # https://github.com/diffpy/diffpy.morph/graphs/contributors @@ -12,17 +12,15 @@ # See LICENSE.rst for license information. # ############################################################################## - -"""Tools for manipulating and comparing PDF profiles""" +"""Python package for manipulating and comparing PDF profiles.""" # key used when saving multiple morphs __save_morph_as__ = "save_morph_as" # package version -from diffpy.morph.version import __version__ +from diffpy.morph.version import __version__ # noqa # silence the pyflakes syntax checker assert __version__ or True - # End of file diff --git a/src/diffpy/morph/log.py b/src/diffpy/morph/log.py index 7e49af6b..c1919566 100644 --- a/src/diffpy/morph/log.py +++ b/src/diffpy/morph/log.py @@ -12,7 +12,6 @@ # See LICENSE.txt for license information. # ############################################################################## - """Configuration of loggers used in this package. Logger instances: diff --git a/src/diffpy/morph/morph_api.py b/src/diffpy/morph/morph_api.py index 65b0fa66..f4b06a72 100644 --- a/src/diffpy/morph/morph_api.py +++ b/src/diffpy/morph/morph_api.py @@ -39,14 +39,22 @@ morph_helpers.TransformXtalRDFtoPDF, ], qdamp=morphs.MorphResolutionDamping, + squeeze=morphs.MorphSqueeze, + funcy=morphs.MorphFuncy, ) _default_config = dict( - scale=None, stretch=None, smear=None, baselineslope=None, qdamp=None + scale=None, + stretch=None, + smear=None, + baselineslope=None, + qdamp=None, + squeeze=None, + funcy=None, ) def morph_default_config(**kwargs): - """function to generate default morph configuration + """Function to generate default morph configuration. Parameters ---------- @@ -88,7 +96,7 @@ def morph( verbose=False, **kwargs, ): - """function to perform PDF morphing. + """Function to perform PDF morphing. Parameters ---------- @@ -135,6 +143,8 @@ def morph( - 'smear' - 'baselineslope' - 'qdamp' + - 'squeeze' + - 'funcy' Returns ------- @@ -197,6 +207,14 @@ def morph( if k == "smear": [chain.append(el()) for el in morph_cls] refpars.append("baselineslope") + elif k == "funcy": + morph_inst = morph_cls() + morph_inst.function = rv_cfg.get("function", None) + if morph_inst.function is None: + raise ValueError( + "Must provide a 'function' when using 'parameters'" + ) + chain.append(morph_inst) else: chain.append(morph_cls()) refpars.append(k) diff --git a/src/diffpy/morph/morph_helpers/__init__.py b/src/diffpy/morph/morph_helpers/__init__.py index 46b8fe5b..c59dd2f5 100644 --- a/src/diffpy/morph/morph_helpers/__init__.py +++ b/src/diffpy/morph/morph_helpers/__init__.py @@ -10,9 +10,8 @@ # See LICENSE.txt for license information. # ############################################################################## - -"""List of helpers for certain morphing operations -(currently only used for smear).""" +"""List of helpers for certain morphing operations (currently only used +for smear).""" from diffpy.morph.morph_helpers.transformpdftordf import TransformXtalPDFtoRDF from diffpy.morph.morph_helpers.transformrdftopdf import TransformXtalRDFtoPDF diff --git a/src/diffpy/morph/morph_helpers/transformpdftordf.py b/src/diffpy/morph/morph_helpers/transformpdftordf.py index 556edcbf..31331ed7 100644 --- a/src/diffpy/morph/morph_helpers/transformpdftordf.py +++ b/src/diffpy/morph/morph_helpers/transformpdftordf.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class TransformXtalPDFtoRDF -- Transform crystal PDFs to RDFs. -""" +"""Class TransformXtalPDFtoRDF -- Transform crystal PDFs to RDFs.""" from diffpy.morph.morphs.morph import LABEL_GR, LABEL_RA, LABEL_RR, Morph @@ -34,7 +31,6 @@ class TransformXtalPDFtoRDF(Morph): With s = baselineslope, R(r) = r * (G(r) - r * s) - """ # Define input output types diff --git a/src/diffpy/morph/morph_helpers/transformrdftopdf.py b/src/diffpy/morph/morph_helpers/transformrdftopdf.py index 4dce9731..495c7dda 100644 --- a/src/diffpy/morph/morph_helpers/transformrdftopdf.py +++ b/src/diffpy/morph/morph_helpers/transformrdftopdf.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class TransformXtalRDFtoPDF -- Transform crystal RDFs to PDFs. -""" +"""Class TransformXtalRDFtoPDF -- Transform crystal RDFs to PDFs.""" import numpy @@ -36,7 +33,6 @@ class TransformXtalRDFtoPDF(Morph): With s = baselineslope, G(r) = R(r) / r + r * s - """ # Define input output types diff --git a/src/diffpy/morph/morph_io.py b/src/diffpy/morph/morph_io.py index 722771c9..4433fc79 100644 --- a/src/diffpy/morph/morph_io.py +++ b/src/diffpy/morph/morph_io.py @@ -16,6 +16,7 @@ from __future__ import print_function +import inspect import sys from pathlib import Path @@ -66,10 +67,44 @@ def single_morph_output( + "\n" ) + mr_copy = morph_results.copy() morphs_out = "# Optimized morphing parameters:\n" + # Handle special inputs (numerical) + if "squeeze" in mr_copy: + sq_dict = mr_copy.pop("squeeze") + rw_pos = list(mr_copy.keys()).index("Rw") + morph_results_list = list(mr_copy.items()) + for idx, _ in enumerate(sq_dict): + morph_results_list.insert( + rw_pos + idx, (f"squeeze a{idx}", sq_dict[f"a{idx}"]) + ) + mr_copy = dict(morph_results_list) + funcy_function = None + if "function" in mr_copy: + funcy_function = mr_copy.pop("function") + print(funcy_function) + if "funcy" in mr_copy: + fy_dict = mr_copy.pop("funcy") + rw_pos = list(mr_copy.keys()).index("Rw") + morph_results_list = list(mr_copy.items()) + for idx, key in enumerate(fy_dict): + morph_results_list.insert( + rw_pos + idx, (f"funcy {key}", fy_dict[key]) + ) + mr_copy = dict(morph_results_list) + # Normal inputs morphs_out += "\n".join( - f"# {key} = {morph_results[key]:.6f}" for key in morph_results.keys() + f"# {key} = {mr_copy[key]:.6f}" for key in mr_copy.keys() ) + # Special inputs (functional) + if funcy_function is not None: + morphs_in += '# funcy function =\n"""\n' + f_code, _ = inspect.getsourcelines(funcy_function) + n_leading = len(f_code[0]) - len(f_code[0].lstrip()) + for idx, f_line in enumerate(f_code): + f_code[idx] = f_line[n_leading:] + morphs_in += "".join(f_code) + morphs_in += '"""\n' # Printing to terminal if stdout_flag: @@ -77,7 +112,10 @@ def single_morph_output( # Saving to file if save_file is not None: - path_name = str(Path(morph_file).resolve()) + if not Path(morph_file).exists(): + path_name = "NO FILE PATH PROVIDED" + else: + path_name = str(Path(morph_file).resolve()) header = "# PDF created by diffpy.morph\n" header += f"# from {path_name}" @@ -135,9 +173,9 @@ def create_morphs_directory(save_directory): def get_multisave_names(target_list: list, save_names_file=None, mm=False): - """Create or import a dictionary that specifies names to save morphs as. - First attempt to import names from a specified file. - If names for certain morphs not found, use default naming scheme: + """Create or import a dictionary that specifies names to save morphs + as. First attempt to import names from a specified file. If names + for certain morphs not found, use default naming scheme: 'Morph_with_Target_.cgr'. Used when saving multiple morphs. @@ -204,8 +242,8 @@ def multiple_morph_output( stdout_flag=False, mm=False, ): - """Helper function for printing details about a series of multiple morphs. - Handles both printing to terminal and printing to a file. + """Helper function for printing details about a series of multiple + morphs. Handles both printing to terminal and printing to a file. Parameters ---------- @@ -320,8 +358,8 @@ def multiple_morph_output( def tabulate_results(multiple_morph_results): - """Helper function to make a data table summarizing details about the - results of multiple morphs. + """Helper function to make a data table summarizing details about + the results of multiple morphs. Parameters ---------- diff --git a/src/diffpy/morph/morphapp.py b/src/diffpy/morph/morphapp.py index b8418c70..70737bf2 100755 --- a/src/diffpy/morph/morphapp.py +++ b/src/diffpy/morph/morphapp.py @@ -18,10 +18,12 @@ import sys from pathlib import Path +import numpy + import diffpy.morph.morph_helpers as helpers import diffpy.morph.morph_io as io import diffpy.morph.morphs as morphs -import diffpy.morph.pdfplot as pdfplot +import diffpy.morph.plot as plot import diffpy.morph.refine as refine import diffpy.morph.tools as tools from diffpy.morph import __save_morph_as__ @@ -42,8 +44,8 @@ def __init__(self, *args, **kwargs): def custom_error(self, msg): """custom_error(msg : string) - Print a message incorporating 'msg' to stderr and exit. - Does not print usage. + Print a message incorporating 'msg' to stderr and exit. Does + not print usage. """ self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg)) @@ -104,6 +106,13 @@ def custom_error(self, msg): type="float", help="Maximum r-value to use for PDF comparisons.", ) + parser.add_option( + "--tolerance", + "-t", + type="float", + metavar="TOL", + help="Specify refiner tolerance as TOL. Default: 10e-8.", + ) parser.add_option( "--pearson", action="store_true", @@ -148,33 +157,73 @@ def custom_error(self, msg): action="append", dest="exclude", metavar="MANIP", - help="""Exclude a manipulation from refinement by name. This can - appear multiple times.""", + help=( + "Exclude a manipulation from refinement by name. " + "This can appear multiple times." + ), ) group.add_option( "--scale", type="float", metavar="SCALE", - help="Apply scale factor SCALE.", + help=( + "Apply scale factor SCALE. " + "This multiplies the function ordinate by SCALE." + ), ) group.add_option( "--stretch", type="float", metavar="STRETCH", - help="Stretch PDF by a fraction STRETCH.", + help=( + "Stretch function grid by a fraction STRETCH. " + "This multiplies the function grid by 1+STRETCH." + ), + ) + group.add_option( + "--squeeze", + metavar="a0,a1,...,an", + help=( + "Squeeze function grid given a polynomial " + "a0+a1*x+a2*x^2+...a_n*x^n." + "n is dependent on the number of values in the " + "user-inputted comma-separated list. " + "Repeated and trailing commas are removed before parsing." + "When this option is enabled, --hshift is disabled. " + "When n>1, --stretch is disabled. " + "See online documentation for more information." + ), ) group.add_option( "--smear", type="float", metavar="SMEAR", - help="Smear peaks with a Gaussian of width SMEAR.", + help=( + "Smear the peaks with a Gaussian of width SMEAR. " + "This is done by convolving the function with a " + "Gaussian with standard deviation SMEAR. " + "If both --smear and --smear-pdf are enabled, " + "only --smear-pdf will be applied." + ), + ) + group.add_option( + "--smear-pdf", + type="float", + metavar="SMEAR", + help=( + "Convert PDF to RDF. " + "Then, smear peaks with a Gaussian of width SMEAR. " + "Convert back to PDF. " + "If both --smear and --smear-pdf are enabled, " + "only --smear-pdf will be applied." + ), ) group.add_option( "--slope", type="float", dest="baselineslope", - help="""Slope of the baseline. This is used when applying the smear - factor. It will be estimated if not provided.""", + help="""Slope of the baseline. This is used with the option --smear-pdf + to convert from the PDF to RDF. It will be estimated if not provided.""", ) group.add_option( "--hshift", @@ -371,7 +420,8 @@ def custom_error(self, msg): "as follows: each target PDF is an entry in NAMESFILE. For each " "entry, there should be a key {__save_morph_as__} whose value " "specifies the name to save the manipulated PDF as. An example " - ".json serial file is shown in the diffpy.morph manual." + ".json serial file is included in the tutorial directory " + "on the package GitHub repository." ), ) group.add_option( @@ -403,22 +453,38 @@ def custom_error(self, msg): return parser -def single_morph(parser, opts, pargs, stdout_flag=True): +def single_morph( + parser, opts, pargs, stdout_flag=True, python_wrap=False, pymorphs=None +): if len(pargs) < 2: parser.error("You must supply FILE1 and FILE2.") - elif len(pargs) > 2: + elif len(pargs) > 2 and not python_wrap: parser.error( "Too many arguments. Make sure you only supply FILE1 and FILE2." ) + elif not (len(pargs) == 2 or len(pargs) == 6) and python_wrap: + parser.error("Python wrapper error.") # Get the PDFs - x_morph, y_morph = getPDFFromFile(pargs[0]) - x_target, y_target = getPDFFromFile(pargs[1]) + # If we get from python, we may wrap, which has input size 4 + if len(pargs) == 6 and python_wrap: + x_morph = pargs[2] + y_morph = pargs[3] + x_target = pargs[4] + y_target = pargs[5] + else: + x_morph, y_morph = getPDFFromFile(pargs[0]) + x_target, y_target = getPDFFromFile(pargs[1]) if y_morph is None: - parser.error(f"No data table found in file: {pargs[0]}.") + parser.error(f"No data table found in: {pargs[0]}.") if y_target is None: - parser.error(f"No data table found in file: {pargs[1]}.") + parser.error(f"No data table found in: {pargs[1]}.") + + # Get tolerance + tolerance = 1e-08 + if opts.tolerance is not None: + tolerance = opts.tolerance # Get configuration values scale_in = "None" @@ -444,6 +510,49 @@ def single_morph(parser, opts, pargs, stdout_flag=True): chain.append(morphs.MorphRGrid()) refpars = [] + # Python-Specific Morphs + if pymorphs is not None: + # funcy value is a tuple (function,{param_dict}) + if "funcy" in pymorphs: + mfy_function = pymorphs["funcy"][0] + mfy_params = pymorphs["funcy"][1] + chain.append(morphs.MorphFuncy()) + config["function"] = mfy_function + config["funcy"] = mfy_params + refpars.append("funcy") + + # Squeeze + squeeze_poly_deg = -1 + squeeze_dict_in = {} + if opts.squeeze is not None: + # Handles both list and csv input + if ( + len(opts.squeeze) > 1 + and opts.squeeze[0] == "[" + and opts.squeeze[-1] == "]" + ): + opts.squeeze = opts.squeeze[1:-1] + elif ( + len(opts.squeeze) > 1 + and opts.squeeze[0] == "(" + and opts.squeeze[-1] == ")" + ): + opts.squeeze = opts.squeeze[1:-1] + squeeze_coeffs = opts.squeeze.strip().split(",") + idx = 0 + for _, coeff in enumerate(squeeze_coeffs): + if coeff.strip() != "": + try: + squeeze_dict_in.update({f"a{idx}": float(coeff)}) + idx += 1 + except ValueError: + parser.error(f"{coeff} could not be converted to float.") + squeeze_poly_deg = len(squeeze_dict_in.keys()) + chain.append(morphs.MorphSqueeze()) + config["squeeze"] = squeeze_dict_in + # config["extrap_index_low"] = None + # config["extrap_index_high"] = None + refpars.append("squeeze") # Scale if opts.scale is not None: scale_in = opts.scale @@ -451,25 +560,15 @@ def single_morph(parser, opts, pargs, stdout_flag=True): config["scale"] = scale_in refpars.append("scale") # Stretch - if opts.stretch is not None: + # Only enable stretch if squeeze is lower than degree 1 + if opts.stretch is not None and squeeze_poly_deg < 1: stretch_in = opts.stretch chain.append(morphs.MorphStretch()) config["stretch"] = stretch_in refpars.append("stretch") - # Shift - if opts.hshift is not None or opts.vshift is not None: - chain.append(morphs.MorphShift()) - if opts.hshift is not None: - hshift_in = opts.hshift - config["hshift"] = hshift_in - refpars.append("hshift") - if opts.vshift is not None: - vshift_in = opts.vshift - config["vshift"] = vshift_in - refpars.append("vshift") # Smear - if opts.smear is not None: - smear_in = opts.smear + if opts.smear_pdf is not None: + smear_in = opts.smear_pdf chain.append(helpers.TransformXtalPDFtoRDF()) chain.append(morphs.MorphSmear()) chain.append(helpers.TransformXtalRDFtoPDF()) @@ -480,6 +579,25 @@ def single_morph(parser, opts, pargs, stdout_flag=True): if opts.baselineslope is None: config["baselineslope"] = -0.5 refpars.append("baselineslope") + elif opts.smear is not None: + smear_in = opts.smear + chain.append(morphs.MorphSmear()) + refpars.append("smear") + config["smear"] = smear_in + # Shift + # Only enable hshift is squeeze is not enabled + if ( + opts.hshift is not None and squeeze_poly_deg < 0 + ) or opts.vshift is not None: + chain.append(morphs.MorphShift()) + if opts.hshift is not None and squeeze_poly_deg < 0: + hshift_in = opts.hshift + config["hshift"] = hshift_in + refpars.append("hshift") + if opts.vshift is not None: + vshift_in = opts.vshift + config["vshift"] = vshift_in + refpars.append("vshift") # Size radii = [opts.radius, opts.pradius] nrad = 2 - radii.count(None) @@ -519,7 +637,9 @@ def single_morph(parser, opts, pargs, stdout_flag=True): refpars = list(set(refpars) - set(opts.exclude)) # Refine or execute the morph - refiner = refine.Refiner(chain, x_morph, y_morph, x_target, y_target) + refiner = refine.Refiner( + chain, x_morph, y_morph, x_target, y_target, tolerance=tolerance + ) if opts.pearson: refiner.residual = refiner._pearson if opts.addpearson: @@ -557,6 +677,8 @@ def single_morph(parser, opts, pargs, stdout_flag=True): chain[0] = morphs.Morph() chain(x_morph, y_morph, x_target, y_target) + # FOR FUTURE MAINTAINERS + # Any new morph should have their input morph parameters updated here # Input morph parameters morph_inputs = { "scale": scale_in, @@ -564,6 +686,17 @@ def single_morph(parser, opts, pargs, stdout_flag=True): "smear": smear_in, } morph_inputs.update({"hshift": hshift_in, "vshift": vshift_in}) + # More complex input morph parameters are only displayed conditionally + if opts.squeeze is not None: + squeeze_dict = squeeze_dict_in.copy() + for idx, _ in enumerate(squeeze_dict): + morph_inputs.update({f"squeeze a{idx}": squeeze_dict[f"a{idx}"]}) + if pymorphs is not None: + if "funcy" in pymorphs: + for funcy_param in pymorphs["funcy"][1].keys(): + morph_inputs.update( + {f"funcy {funcy_param}": pymorphs["funcy"][1][funcy_param]} + ) # Output morph parameters morph_results = dict(config.items()) @@ -588,14 +721,14 @@ def single_morph(parser, opts, pargs, stdout_flag=True): parser.custom_error(save_fail_message) if opts.plot: - pairlist = [chain.xy_morph_out, chain.xy_target_out] - labels = [pargs[0], pargs[1]] # Default is to use file names + pairlist = [chain.xy_target_out, chain.xy_morph_out] + labels = [pargs[1], pargs[0]] # Default is to use file names # If user chooses labels if opts.mlabel is not None: - labels[0] = opts.mlabel + labels[1] = opts.mlabel if opts.tlabel is not None: - labels[1] = opts.tlabel + labels[0] = opts.tlabel # Plot extent defaults to calculation extent pmin = opts.pmin if opts.pmin is not None else opts.rmin @@ -603,7 +736,7 @@ def single_morph(parser, opts, pargs, stdout_flag=True): maglim = opts.maglim mag = opts.mag l_width = opts.lwidth - pdfplot.comparePDFs( + plot.compare_funcs( pairlist, labels, rmin=pmin, @@ -614,10 +747,16 @@ def single_morph(parser, opts, pargs, stdout_flag=True): l_width=l_width, ) - return morph_results + # Return different things depending on whether it is python interfaced + if python_wrap: + morph_info = morph_results + morph_table = numpy.array([chain.x_morph_out, chain.y_morph_out]).T + return morph_info, morph_table + else: + return morph_results -def multiple_targets(parser, opts, pargs, stdout_flag=True): +def multiple_targets(parser, opts, pargs, stdout_flag=True, python_wrap=False): # Custom error messages since usage is distinct when --multiple tag is # applied if len(pargs) < 2: @@ -644,9 +783,12 @@ def multiple_targets(parser, opts, pargs, stdout_flag=True): # Get list of files from target directory target_list = list(target_directory.iterdir()) + to_remove = [] for target in target_list: if target.is_dir(): - target_list.remove(target) + to_remove.append(target) + for target in to_remove: + target_list.remove(target) # Do not morph morph_file against itself if it is in the same directory if morph_file in target_list: @@ -739,7 +881,7 @@ def multiple_targets(parser, opts, pargs, stdout_flag=True): morph_inputs = { "scale": opts.scale, "stretch": opts.stretch, - "smear": opts.smear, + "smear": opts.smear_pdf, } morph_inputs.update({"hshift": opts.hshift, "vshift": opts.vshift}) @@ -782,13 +924,9 @@ def multiple_targets(parser, opts, pargs, stdout_flag=True): else: try: if field_list is not None: - pdfplot.plot_param( - field_list, param_list, param_name, field - ) + plot.plot_param(field_list, param_list, param_name, field) else: - pdfplot.plot_param( - target_file_names, param_list, param_name - ) + plot.plot_param(target_file_names, param_list, param_name) # Can occur for non-refined plotting parameters # i.e. --smear is not selected as an option, but smear is the # plotting parameter @@ -801,7 +939,7 @@ def multiple_targets(parser, opts, pargs, stdout_flag=True): return morph_results -def multiple_morphs(parser, opts, pargs, stdout_flag=True): +def multiple_morphs(parser, opts, pargs, stdout_flag=True, python_wrap=False): # Custom error messages since usage is distinct when --multiple tag is # applied if len(pargs) < 2: @@ -828,9 +966,12 @@ def multiple_morphs(parser, opts, pargs, stdout_flag=True): # Get list of files from morph directory morph_list = list(morph_directory.iterdir()) + to_remove = [] for morph in morph_list: if morph.is_dir(): - morph_list.remove(morph) + to_remove.append(morph) + for morph in to_remove: + morph_list.remove(morph) # Do not morph target_file against itself if it is in the same directory if target_file in morph_list: @@ -923,7 +1064,7 @@ def multiple_morphs(parser, opts, pargs, stdout_flag=True): morph_inputs = { "scale": opts.scale, "stretch": opts.stretch, - "smear": opts.smear, + "smear": opts.smear_pdf, } morph_inputs.update({"hshift": opts.hshift, "vshift": opts.vshift}) @@ -967,13 +1108,9 @@ def multiple_morphs(parser, opts, pargs, stdout_flag=True): else: try: if field_list is not None: - pdfplot.plot_param( - field_list, param_list, param_name, field - ) + plot.plot_param(field_list, param_list, param_name, field) else: - pdfplot.plot_param( - morph_file_names, param_list, param_name - ) + plot.plot_param(morph_file_names, param_list, param_name) # Can occur for non-refined plotting parameters # i.e. --smear is not selected as an option, but smear is the # plotting parameter diff --git a/src/diffpy/morph/morphpy.py b/src/diffpy/morph/morphpy.py new file mode 100644 index 00000000..945ad749 --- /dev/null +++ b/src/diffpy/morph/morphpy.py @@ -0,0 +1,179 @@ +#!/usr/bin/env python + +import numpy as np + +from diffpy.morph.morphapp import create_option_parser, single_morph + + +def get_args(parser, params, kwargs): + inputs = [] + for key, value in params.items(): + if value is not None: + inputs.append(f"--{key}") + inputs.append(f"{value}") + for key, value in kwargs.items(): + key = key.replace("_", "-") + inputs.append(f"--{key}") + inputs.append(f"{value}") + (opts, pargs) = parser.parse_args(inputs) + return opts, pargs + + +# Take in file names as input. +def morph( + morph_file, + target_file, + scale=None, + stretch=None, + smear=None, + plot=False, + **kwargs, +): + """Run diffpy.morph at Python level. + + Parameters + ---------- + morph_file: str or numpy.array + Path-like object to the file to be morphed. + target_file: str or numpy.array + Path-like object to the target file. + scale: float, optional + Initial guess for the scaling parameter. + Refinement is done only for parameter that are not None. + stretch: float, optional + Initial guess for the stretching parameter. + smear: float, optional + Initial guess for the smearing parameter. + plot: bool + Show a plot of the morphed and target functions as well as the + difference curve (default: False). + kwargs: dict + See the diffpy.morph website for full list of options. + Returns + ------- + morph_info: dict + Summary of morph parameters (e.g. scale, stretch, smear, rmin, rmax) + and results (e.g. Pearson, Rw). + morph_table: list + Function after morph where morph_table[:,0] is the abscissa and + morph_table[:,1] is the ordinate. + """ + + # Check for Python-specific morphs + python_morphs = ["funcy"] + pymorphs = {} + for pmorph in python_morphs: + if pmorph in kwargs: + pmorph_value = kwargs.pop(pmorph) + pymorphs.update({pmorph: pmorph_value}) + + # Special handling of parameters with dashes + kwargs_copy = kwargs.copy() + kwargs = {} + for key in kwargs_copy.keys(): + new_key = key + if "_" in key: + new_key = key.replace("_", "-") + kwargs.update({new_key: kwargs_copy[key]}) + + # Wrap the CLI + parser = create_option_parser() + params = { + "scale": scale, + "stretch": stretch, + "smear": smear, + "noplot": True if not plot else None, + } + opts, _ = get_args(parser, params, kwargs) + + pargs = [morph_file, target_file] + + if not len(pymorphs) > 0: + pymorphs = None + return single_morph( + parser, + opts, + pargs, + stdout_flag=False, + python_wrap=True, + pymorphs=pymorphs, + ) + + +# Take in array-like objects as input. +def morph_arrays( + morph_table, + target_table, + scale=None, + stretch=None, + smear=None, + plot=False, + **kwargs, +): + """Run diffpy.morph at Python level. + + Parameters + ---------- + morph_table: numpy.array + Two-column array of (r, gr) for morphed function. + target_table: numpy.array + Two-column array of (r, gr) for target function. + scale: float, optional + Initial guess for the scaling parameter. + Refinement is done only for parameter that are not None. + stretch: float, optional + Initial guess for the stretching parameter. + smear: float, optional + Initial guess for the smearing parameter. + plot: bool + Show a plot of the morphed and target functions as well as the + difference curve (default: False). + kwargs: dict + See the diffpy.morph website for full list of options. + Returns + ------- + morph_info: dict + Summary of morph parameters (e.g. scale, stretch, smear, rmin, rmax) + and results (e.g. Pearson, Rw). + morph_table: list + Function after morph where morph_table[:,0] is the abscissa and + morph_table[:,1] is the ordinate. + """ + # Check for Python-specific morphs + python_morphs = ["funcy"] + pymorphs = {} + for pmorph in python_morphs: + if pmorph in kwargs: + pmorph_value = kwargs.pop(pmorph) + pymorphs.update({pmorph: pmorph_value}) + + # Wrap the CLI + parser = create_option_parser() + params = { + "scale": scale, + "stretch": stretch, + "smear": smear, + "noplot": True if not plot else None, + } + opts, _ = get_args(parser, params, kwargs) + + morph_table = np.array(morph_table) + target_table = np.array(target_table) + + x_morph = morph_table[:, 0] + y_morph = morph_table[:, 1] + x_target = target_table[:, 0] + y_target = target_table[:, 1] + + pargs = ["Morph", "Target", x_morph, y_morph, x_target, y_target] + + if not len(pymorphs) > 0: + pymorphs = None + return single_morph( + parser, + opts, + pargs, + stdout_flag=False, + python_wrap=True, + pymorphs=pymorphs, + ) diff --git a/src/diffpy/morph/morphs/__init__.py b/src/diffpy/morph/morphs/__init__.py index 3cc0fdc9..a1cbdc88 100644 --- a/src/diffpy/morph/morphs/__init__.py +++ b/src/diffpy/morph/morphs/__init__.py @@ -12,13 +12,12 @@ # See LICENSE.txt for license information. # ############################################################################## - -"""Definition of morphs. -""" +"""Definition of morphs.""" from diffpy.morph.morphs.morph import Morph # noqa: F401 from diffpy.morph.morphs.morphchain import MorphChain # noqa: F401 +from diffpy.morph.morphs.morphfuncy import MorphFuncy from diffpy.morph.morphs.morphishape import MorphISphere, MorphISpheroid from diffpy.morph.morphs.morphresolution import MorphResolutionDamping from diffpy.morph.morphs.morphrgrid import MorphRGrid @@ -26,6 +25,7 @@ from diffpy.morph.morphs.morphshape import MorphSphere, MorphSpheroid from diffpy.morph.morphs.morphshift import MorphShift from diffpy.morph.morphs.morphsmear import MorphSmear +from diffpy.morph.morphs.morphsqueeze import MorphSqueeze from diffpy.morph.morphs.morphstretch import MorphStretch # List of morphs @@ -40,6 +40,8 @@ MorphISpheroid, MorphResolutionDamping, MorphShift, + MorphSqueeze, + MorphFuncy, ] # End of file diff --git a/src/diffpy/morph/morphs/morph.py b/src/diffpy/morph/morphs/morph.py index 0b7cb543..5f6c2ccc 100644 --- a/src/diffpy/morph/morphs/morph.py +++ b/src/diffpy/morph/morphs/morph.py @@ -12,8 +12,6 @@ # See LICENSE.txt for license information. # ############################################################################## - - """Morph -- base class for defining a morph. """ @@ -198,7 +196,7 @@ def checkConfig(self): return def plotInputs(self, xylabels=True): - """Plot input arrays using matplotlib.pyplot + """Plot input arrays using matplotlib.pyplot. Parameters ---------- @@ -220,7 +218,7 @@ def plotInputs(self, xylabels=True): return rv def plotOutputs(self, xylabels=True, **plotargs): - """Plot output arrays using matplotlib.pyplot + """Plot output arrays using matplotlib.pyplot. Parameters ---------- diff --git a/src/diffpy/morph/morphs/morphchain.py b/src/diffpy/morph/morphs/morphchain.py index 1dc05b41..e7a8f824 100644 --- a/src/diffpy/morph/morphs/morphchain.py +++ b/src/diffpy/morph/morphs/morphchain.py @@ -12,7 +12,6 @@ # See LICENSE.txt for license information. # ############################################################################## - """MorphChain -- Chain of morphs executed in order. """ diff --git a/src/diffpy/morph/morphs/morphfuncy.py b/src/diffpy/morph/morphs/morphfuncy.py new file mode 100644 index 00000000..41716e7e --- /dev/null +++ b/src/diffpy/morph/morphs/morphfuncy.py @@ -0,0 +1,77 @@ +"""Class MorphFuncy -- apply a user-supplied python function to the +y-axis.""" + +from diffpy.morph.morphs.morph import LABEL_GR, LABEL_RA, Morph + + +class MorphFuncy(Morph): + """Apply a custom function to the y-axis of the morph function. + + General morph function that applies a user-supplied function to the + y-coordinates of morph data to make it align with a target. + + Configuration Variables + ----------------------- + function: callable + The user-supplied function that applies a transformation to the + y-coordinates of the data. + + parameters: dict + A dictionary of parameters to pass to the function. + + Returns + ------- + A tuple (x_morph_out, y_morph_out, x_target_out, y_target_out) + where the target values remain the same and the morph data is + transformed according to the user-specified function and parameters + The morphed data is returned on the same grid as the unmorphed data + + Example + ------- + Import the funcy morph function: + + >>> from diffpy.morph.morphs.morphfuncy import MorphFuncy + + Define or import the user-supplied transformation function: + + >>> def sine_function(x, y, amplitude, frequency): + >>> return amplitude * np.sin(frequency * x) * y + + Provide initial guess for parameters: + + >>> parameters = {'amplitude': 2, 'frequency': 2} + + Run the funcy morph given input morph array (x_morph, y_morph)and target + array (x_target, y_target): + + >>> morph = MorphFuncy() + >>> morph.function = sine_function + >>> morph.funcy = parameters + >>> x_morph_out, y_morph_out, x_target_out, y_target_out = + ... morph.morph(x_morph, y_morph, x_target, y_target) + + To access parameters from the morph instance: + + >>> x_morph_in = morph.x_morph_in + >>> y_morph_in = morph.y_morph_in + >>> x_target_in = morph.x_target_in + >>> y_target_in = morph.y_target_in + >>> parameters_out = morph.funcy + """ + + # Define input output types + summary = "Apply a Python function to the y-axis data" + xinlabel = LABEL_RA + yinlabel = LABEL_GR + xoutlabel = LABEL_RA + youtlabel = LABEL_GR + parnames = ["function", "funcy"] + + def morph(self, x_morph, y_morph, x_target, y_target): + """Apply the user-supplied Python function to the y-coordinates + of the morph data.""" + Morph.morph(self, x_morph, y_morph, x_target, y_target) + self.y_morph_out = self.function( + self.x_morph_in, self.y_morph_in, **self.funcy + ) + return self.xyallout diff --git a/src/diffpy/morph/morphs/morphishape.py b/src/diffpy/morph/morphs/morphishape.py index 5cf3da91..6492b9d2 100644 --- a/src/diffpy/morph/morphs/morphishape.py +++ b/src/diffpy/morph/morphs/morphishape.py @@ -12,11 +12,8 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphISphere -- apply inverse spherical shape function -class MorphISpheroid -- apply inverse spheroidal shape function -""" +"""Class MorphISphere -- apply inverse spherical shape function class +MorphISpheroid -- apply inverse spheroidal shape function.""" import numpy @@ -26,7 +23,7 @@ class MorphISpheroid -- apply inverse spheroidal shape function class MorphISphere(Morph): - """Apply inverse spherical characteristic function to the morph + """Apply inverse spherical characteristic function to the morph. Configuration Variables ----------------------- @@ -56,7 +53,7 @@ def morph(self, x_morph, y_morph, x_target, y_target): class MorphISpheroid(Morph): - """Apply inverse spherical characteristic function to the morph + """Apply inverse spherical characteristic function to the morph. Configuration Variables ----------------------- diff --git a/src/diffpy/morph/morphs/morphresolution.py b/src/diffpy/morph/morphs/morphresolution.py index a7246ad3..eb4b65b1 100644 --- a/src/diffpy/morph/morphs/morphresolution.py +++ b/src/diffpy/morph/morphs/morphresolution.py @@ -12,10 +12,8 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphResolutionDamping -- apply resolution broadening to the morph -""" +"""Class MorphResolutionDamping -- apply resolution broadening to the +morph.""" import numpy diff --git a/src/diffpy/morph/morphs/morphrgrid.py b/src/diffpy/morph/morphs/morphrgrid.py index dc9b68d3..fadce9f7 100644 --- a/src/diffpy/morph/morphs/morphrgrid.py +++ b/src/diffpy/morph/morphs/morphrgrid.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphRGrid -- put morph and target on desired grid. -""" +"""Class MorphRGrid -- put morph and target on desired grid.""" import numpy diff --git a/src/diffpy/morph/morphs/morphscale.py b/src/diffpy/morph/morphs/morphscale.py index 2f5c6b4d..c2bd86c7 100644 --- a/src/diffpy/morph/morphs/morphscale.py +++ b/src/diffpy/morph/morphs/morphscale.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphScale -- scale the morph data -""" +"""Class MorphScale -- scale the morph data.""" from diffpy.morph.morphs.morph import LABEL_GR, LABEL_RA, Morph diff --git a/src/diffpy/morph/morphs/morphshape.py b/src/diffpy/morph/morphs/morphshape.py index 9aae3d78..0405f3d1 100644 --- a/src/diffpy/morph/morphs/morphshape.py +++ b/src/diffpy/morph/morphs/morphshape.py @@ -12,11 +12,8 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphSphere -- apply a spherical shape function to the morph -class MorphSpheroid -- apply a spheroidal shape function to the morph -""" +"""Class MorphSphere -- apply a spherical shape function to the morph class +MorphSpheroid -- apply a spheroidal shape function to the morph.""" import numpy @@ -28,7 +25,7 @@ class MorphSpheroid -- apply a spheroidal shape function to the morph class MorphSphere(Morph): - """Apply a spherical characteristic function to the morph + """Apply a spherical characteristic function to the morph. Configuration Variables ----------------------- @@ -56,7 +53,7 @@ def morph(self, x_morph, y_morph, x_target, y_target): class MorphSpheroid(Morph): - """Apply a spherical characteristic function to the morph + """Apply a spherical characteristic function to the morph. Configuration Variables ----------------------- @@ -143,7 +140,6 @@ def _spheroidalCF2(r, psize, axrat): axrat -- The ratio of axis lengths From Lei et al., Phys. Rev. B, 80, 024118 (2009) - """ pelpt = axrat diff --git a/src/diffpy/morph/morphs/morphshift.py b/src/diffpy/morph/morphs/morphshift.py index b3ac8818..b4f6c9f8 100644 --- a/src/diffpy/morph/morphs/morphshift.py +++ b/src/diffpy/morph/morphs/morphshift.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphShift -- shift the morph -""" +"""Class MorphShift -- shift the morph.""" import numpy diff --git a/src/diffpy/morph/morphs/morphsmear.py b/src/diffpy/morph/morphs/morphsmear.py index 2495ee38..b8735919 100644 --- a/src/diffpy/morph/morphs/morphsmear.py +++ b/src/diffpy/morph/morphs/morphsmear.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphSmear -- smear the morph. -""" +"""Class MorphSmear -- smear the morph.""" import numpy diff --git a/src/diffpy/morph/morphs/morphsqueeze.py b/src/diffpy/morph/morphs/morphsqueeze.py new file mode 100644 index 00000000..bc0e4d49 --- /dev/null +++ b/src/diffpy/morph/morphs/morphsqueeze.py @@ -0,0 +1,88 @@ +"""Class MorphSqueeze -- Apply a polynomial to squeeze the morph +function.""" + +import numpy as np +from numpy.polynomial import Polynomial +from scipy.interpolate import CubicSpline + +from diffpy.morph.morphs.morph import LABEL_GR, LABEL_RA, Morph + + +class MorphSqueeze(Morph): + """Squeeze the morph function. + + This applies a polynomial to squeeze the morph non-linearly. + + Configuration Variables + ----------------------- + squeeze : Dictionary + The polynomial coefficients {a0, a1, ..., an} for the squeeze + function where the polynomial would be of the form + a0 + a1*x + a2*x^2 and so on. The order of the polynomial is + determined by the length of the dictionary. + + Returns + ------- + A tuple (x_morph_out, y_morph_out, x_target_out, y_target_out) + where the target values remain the same and the morph data is + shifted according to the squeeze. The morphed data is returned on + the same grid as the unmorphed data. + + Example + ------- + Import the squeeze morph function: + + >>> from diffpy.morph.morphs.morphsqueeze import MorphSqueeze + + Provide initial guess for squeezing coefficients: + + >>> squeeze_coeff = {"a0":0.1, "a1":-0.01, "a2":0.005} + + Run the squeeze morph given input morph array (x_morph, y_morph) and target + array (x_target, y_target): + + >>> morph = MorphSqueeze() + >>> morph.squeeze = squeeze_coeff + >>> x_morph_out, y_morph_out, x_target_out, y_target_out = + ... morph(x_morph, y_morph, x_target, y_target) + + To access parameters from the morph instance: + + >>> x_morph_in = morph.x_morph_in + >>> y_morph_in = morph.y_morph_in + >>> x_target_in = morph.x_target_in + >>> y_target_in = morph.y_target_in + >>> squeeze_coeff_out = morph.squeeze + """ + + # Define input output types + summary = "Squeeze morph by polynomial shift" + xinlabel = LABEL_RA + yinlabel = LABEL_GR + xoutlabel = LABEL_RA + youtlabel = LABEL_GR + parnames = ["squeeze"] + # extrap_index_low: last index before interpolation region + # extrap_index_high: first index after interpolation region + extrap_index_low = None + extrap_index_high = None + + def morph(self, x_morph, y_morph, x_target, y_target): + """Apply a polynomial to squeeze the morph function. + + The morphed data is returned on the same grid as the unmorphed + data. + """ + Morph.morph(self, x_morph, y_morph, x_target, y_target) + + coeffs = [self.squeeze[f"a{i}"] for i in range(len(self.squeeze))] + squeeze_polynomial = Polynomial(coeffs) + x_squeezed = self.x_morph_in + squeeze_polynomial(self.x_morph_in) + self.y_morph_out = CubicSpline(x_squeezed, self.y_morph_in)( + self.x_morph_in + ) + low_extrap = np.where(self.x_morph_in < x_squeezed[0])[0] + high_extrap = np.where(self.x_morph_in > x_squeezed[-1])[0] + self.extrap_index_low = low_extrap[-1] if low_extrap.size else None + self.extrap_index_high = high_extrap[0] if high_extrap.size else None + return self.xyallout diff --git a/src/diffpy/morph/morphs/morphstretch.py b/src/diffpy/morph/morphs/morphstretch.py index 6b99caea..78c25c8b 100644 --- a/src/diffpy/morph/morphs/morphstretch.py +++ b/src/diffpy/morph/morphs/morphstretch.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""class MorphStretch -- stretch the morph. -""" +"""Class MorphStretch -- stretch the morph.""" import numpy diff --git a/src/diffpy/morph/pdfplot.py b/src/diffpy/morph/plot.py similarity index 88% rename from src/diffpy/morph/pdfplot.py rename to src/diffpy/morph/plot.py index 9d4dd06a..d0ca14b0 100644 --- a/src/diffpy/morph/pdfplot.py +++ b/src/diffpy/morph/plot.py @@ -12,7 +12,8 @@ # See LICENSE.txt for license information. # ############################################################################## -"""Collection of plotting functions for PDFs.""" +"""Collection of plotting functions (originally specifically) for +PDFs.""" import matplotlib.pyplot as plt import numpy @@ -23,8 +24,8 @@ # FIXME - make this return the figure object in the future, so several views # can be composed. -def plotPDFs(pairlist, labels=None, offset="auto", rmin=None, rmax=None): - """Plots several PDFs on top of one another. +def plot_funcs(pairlist, labels=None, offset="auto", rmin=None, rmax=None): + """Plots several functions g(r) on top of one another. Parameters ---------- @@ -34,15 +35,15 @@ def plotPDFs(pairlist, labels=None, offset="auto", rmin=None, rmax=None): Iterable of names for the pairs. If this is not the same length as the pairlist, a legend will not be shown (default []). offset - Offset to place between plots. PDFs will be sequentially shifted in - the y-direction by the offset. If offset is 'auto' (default), the + Offset to place between plots. Functions will be sequentially shifted + in the y-direction by the offset. If offset is 'auto' (default), the optimal offset will be determined automatically. rmin The minimum r-value to plot. If this is None (default), the lower - bound of the PDF is not altered. + bound of the function is not altered. rmax The maximum r-value to plot. If this is None (default), the upper - bound of the PDF is not altered. + bound of the function is not altered. """ if labels is None: labels = [] @@ -68,7 +69,7 @@ def plotPDFs(pairlist, labels=None, offset="auto", rmin=None, rmax=None): return -def comparePDFs( +def compare_funcs( pairlist, labels=None, rmin=None, @@ -80,10 +81,11 @@ def comparePDFs( legend=True, l_width=1.5, ): - """Plot two PDFs on top of each other and difference curve. + """Plot two functions g(r) on top of each other and difference + curve. - The second PDF will be shown as blue circles below and the first as a red - line. The difference curve will be in green and offset for clarity. + The second function will be shown as blue circles below and the first as + a red line. The difference curve will be in green and offset for clarity. Parameters ---------- @@ -94,10 +96,10 @@ def comparePDFs( the pairlist, a legend will not be shown (default []). rmin The minimum r-value to plot. If this is None (default), the lower - bound of the PDF is not altered. + bound of the function is not altered. rmax The maximum r-value to plot. If this is None (default), the upper - bound of the PDF is not altered. + bound of the function is not altered. show Show the plot (default True) maglim @@ -158,7 +160,7 @@ def comparePDFs( offset = -1.1 * (ymax - ymin) # Scale the x-limit based on the r-extent of the signal. This gives a nice - # density of PDF peaks. + # density of function peaks. rlim = rvmax - rvmin scale = rlim / 25.0 # Set a reasonable minimum of .8 and maximum of 1 @@ -227,8 +229,7 @@ def comparePDFs( def plot_param(target_labels, param_list, param_name=None, field=None): - """ - Plot Rw values for multiple morphs. + """Plot Rw values for multiple morphs. Parameters ---------- @@ -305,21 +306,21 @@ def plot_param(target_labels, param_list, param_name=None, field=None): return -def truncatePDFs(r, gr, rmin=None, rmax=None): - """Truncate a PDF to specified bounds. +def truncate_func(r, gr, rmin=None, rmax=None): + """Truncate a function g(r) to specified bounds. Parameters ---------- r - r-values of the PDF. + The r-values of the function g(r). gr - PDF g(r) values. + Function g(r) values. rmin The minimum r-value. If this is None (default), the lower bound of - the PDF is not altered. + the function is not altered. rmax The maximum r-value. If this is None (default), the upper bound of - the PDF is not altered. + the function is not altered. Returns ------- @@ -340,7 +341,7 @@ def truncatePDFs(r, gr, rmin=None, rmax=None): def _find_offset(pairlist): - """Find an optimal offset between PDFs.""" + """Find an optimal offset between functions.""" maxlist = [max(p[1]) for p in pairlist] minlist = [min(p[1]) for p in pairlist] difflist = numpy.subtract(maxlist[:-1], minlist[1:]) diff --git a/src/diffpy/morph/refine.py b/src/diffpy/morph/refine.py index e1f55ac3..c0c5eb60 100644 --- a/src/diffpy/morph/refine.py +++ b/src/diffpy/morph/refine.py @@ -12,7 +12,6 @@ # See LICENSE.txt for license information. # ############################################################################## - """refine -- Refine a morph or morph chain """ @@ -43,20 +42,34 @@ class Refiner(object): to other functions. """ - def __init__(self, chain, x_morph, y_morph, x_target, y_target): + def __init__( + self, chain, x_morph, y_morph, x_target, y_target, tolerance=1e-08 + ): self.chain = chain self.x_morph = x_morph self.y_morph = y_morph self.x_target = x_target self.y_target = y_target + self.tolerance = tolerance self.pars = [] self.residual = self._residual + self.flat_to_grouped = {} return def _update_chain(self, pvals): """Update the parameters in the chain.""" - pairs = zip(self.pars, pvals) - self.chain.config.update(pairs) + updated = {} + for idx, value in enumerate(pvals): + param, subkey = self.flat_to_grouped[idx] + if subkey is None: # Scalar + updated[param] = value + else: + if param not in updated: + updated[param] = {} + updated[param][subkey] = value + + # Apply the reconstructed grouped parameter back to config + self.chain.config.update(updated) return def _residual(self, pvals): @@ -71,9 +84,9 @@ def _residual(self, pvals): def _pearson(self, pvals): """Pearson correlation function. - This gives e**-p (vector), where p is the pearson correlation function. - We seek to minimize this, which occurs when the correlation is the - largest. + This gives e**-p (vector), where p is the pearson correlation + function. We seek to minimize this, which occurs when the + correlation is the largest. """ self._update_chain(pvals) _x_morph, _y_morph, _x_target, _y_target = self.chain( @@ -118,11 +131,29 @@ def refine(self, *args, **kw): if not self.pars: return 0.0 - initial = [config[p] for p in self.pars] + # Build flat list of initial parameters and flat_to_grouped mapping + initial = [] + self.flat_to_grouped = {} + + for p in self.pars: + val = config[p] + if isinstance(val, dict): + for k, v in val.items(): + initial.append(v) + self.flat_to_grouped[len(initial) - 1] = (p, k) + else: + initial.append(val) + self.flat_to_grouped[len(initial) - 1] = (p, None) + sol, cov_sol, infodict, emesg, ier = leastsq( - self.residual, initial, full_output=1 + self.residual, + initial, + full_output=1, + ftol=self.tolerance, + xtol=self.tolerance, ) fvec = infodict["fvec"] + if ier not in (1, 2, 3, 4): emesg raise ValueError(emesg) @@ -131,7 +162,7 @@ def refine(self, *args, **kw): vals = sol if not hasattr(vals, "__iter__"): vals = [vals] - self.chain.config.update(zip(self.pars, vals)) + self._update_chain(vals) return dot(fvec, fvec) diff --git a/src/diffpy/morph/tools.py b/src/diffpy/morph/tools.py index f9b024dd..3b56cc87 100644 --- a/src/diffpy/morph/tools.py +++ b/src/diffpy/morph/tools.py @@ -12,10 +12,7 @@ # See LICENSE.txt for license information. # ############################################################################## - - -"""Tools used in morphs and morph chains. -""" +"""Tools used in morphs and morph chains.""" import numpy @@ -180,8 +177,8 @@ def case_insensitive_dictionary_search(key: str, dictionary: dict): def field_sort( filepaths: list, field, reverse=False, serfile=None, get_field_values=False ): - """Sort a list of files by a field stored in header information. - All files must contain this header information. + """Sort a list of files by a field stored in header information. All + files must contain this header information. Parameters ---------- @@ -243,9 +240,9 @@ def field_sort( def get_values_from_dictionary_collection( dictionary_collection: iter, target_key ): - """In an (iterable) collection of dictionaries, search for a target key - in each dictionary. Return a list of all found values corresponding - to that key. + """In an (iterable) collection of dictionaries, search for a target + key in each dictionary. Return a list of all found values + corresponding to that key. Parameters ---------- diff --git a/src/diffpy/morph/version.py b/src/diffpy/morph/version.py index 1077d2ca..f40af37f 100644 --- a/src/diffpy/morph/version.py +++ b/src/diffpy/morph/version.py @@ -1,18 +1,17 @@ #!/usr/bin/env python ############################################################################## # -# (c) 2024 The Trustees of Columbia University in the City of New York. +# (c) 2025 The Trustees of Columbia University in the City of New York. # All rights reserved. # -# File coded by: Billinge Group members and community contributors. +# File coded by: Sangjoon Lee, Simon Billinge, Billinge Group members. # # See GitHub contributions for a more detailed list of contributors. -# https://github.com/diffpy/diffpy.pdfmorph/graphs/contributors +# https://github.com/diffpy/diffpy.morph/graphs/contributors # noqa: E501 # # See LICENSE.rst for license information. # ############################################################################## - """Definition of __version__.""" # We do not use the other three variables, but can be added back if needed. diff --git a/tests/debug.py b/tests/debug.py index 0d3926c0..6497a261 100644 --- a/tests/debug.py +++ b/tests/debug.py @@ -12,9 +12,7 @@ # See LICENSE.rst for license information. # ############################################################################## - -""" -Convenience module for debugging the unit tests using +"""Convenience module for debugging the unit tests using. python -m diffpy.morph.tests.debug diff --git a/tests/run.py b/tests/run.py index dc27a05b..c34754e3 100644 --- a/tests/run.py +++ b/tests/run.py @@ -12,9 +12,8 @@ # See LICENSE.rst for license information. # ############################################################################## -"""Convenience module for executing all unit tests with -python -m diffpy.morph.tests.run -""" +"""Convenience module for executing all unit tests with python -m +diffpy.morph.tests.run.""" import sys diff --git a/tests/test_morph_func.py b/tests/test_morph_func.py index 3f62f872..cb0442d1 100644 --- a/tests/test_morph_func.py +++ b/tests/test_morph_func.py @@ -101,3 +101,58 @@ def test_smear_with_morph_func(): assert np.allclose(y0, y1, atol=1e-3) # numerical error -> 1e-4 # verify morphed param assert np.allclose(smear, morphed_cfg["smear"], atol=1e-1) + + +def test_squeeze_with_morph_func(): + squeeze_init = {"a0": 0, "a1": -0.001, "a2": -0.0001, "a3": 0.0001} + x_morph = np.linspace(0, 10, 101) + y_morph = 2 * np.sin( + x_morph + x_morph * 0.01 + 0.0001 * x_morph**2 + 0.001 * x_morph**3 + ) + expected_squeeze = {"a0": 0, "a1": 0.01, "a2": 0.0001, "a3": 0.001} + expected_scale = 1 / 2 + x_target = np.linspace(0, 10, 101) + y_target = np.sin(x_target) + cfg = morph_default_config(scale=1.1, squeeze=squeeze_init) + morph_rv = morph(x_morph, y_morph, x_target, y_target, **cfg) + morphed_cfg = morph_rv["morphed_config"] + x_morph_out, y_morph_out, x_target_out, y_target_out = morph_rv[ + "morph_chain" + ].xyallout + assert np.allclose(x_morph_out, x_target_out) + assert np.allclose(y_morph_out, y_target_out, atol=1e-6) + assert np.allclose( + expected_squeeze["a0"], morphed_cfg["squeeze"]["a0"], atol=1e-6 + ) + assert np.allclose( + expected_squeeze["a1"], morphed_cfg["squeeze"]["a1"], atol=1e-6 + ) + assert np.allclose( + expected_squeeze["a2"], morphed_cfg["squeeze"]["a2"], atol=1e-6 + ) + assert np.allclose( + expected_squeeze["a3"], morphed_cfg["squeeze"]["a3"], atol=1e-6 + ) + assert np.allclose(expected_scale, morphed_cfg["scale"], atol=1e-6) + + +def test_funcy_with_morph_func(): + def linear_function(x, y, scale, offset): + return (scale * x) * y + offset + + x_morph = np.linspace(0, 10, 101) + y_morph = np.sin(x_morph) + x_target = x_morph.copy() + y_target = np.sin(x_target) * 2 * x_target + 0.4 + cfg = morph_default_config(funcy={"scale": 1.2, "offset": 0.1}) + cfg["function"] = linear_function + morph_rv = morph(x_morph, y_morph, x_target, y_target, **cfg) + morphed_cfg = morph_rv["morphed_config"] + x_morph_out, y_morph_out, x_target_out, y_target_out = morph_rv[ + "morph_chain" + ].xyallout + assert np.allclose(x_morph_out, x_target_out) + assert np.allclose(y_morph_out, y_target_out, atol=1e-6) + fitted_parameters = morphed_cfg["funcy"] + assert np.allclose(fitted_parameters["scale"], 2, atol=1e-6) + assert np.allclose(fitted_parameters["offset"], 0.4, atol=1e-6) diff --git a/tests/test_morphapp.py b/tests/test_morphapp.py index fa39a2e5..379d9f22 100644 --- a/tests/test_morphapp.py +++ b/tests/test_morphapp.py @@ -2,6 +2,7 @@ from pathlib import Path +import numpy as np import pytest from diffpy.morph.morphapp import ( @@ -18,7 +19,7 @@ nickel_PDF = testdata_dir.joinpath("nickel_ss0.01.cgr") serial_JSON = testdata_dir.joinpath("testsequence_serialfile.json") -testsaving_dir = testdata_dir.joinpath("testsaving") +testsaving_dir = testsequence_dir.joinpath("testsaving") test_saving_succinct = testsaving_dir.joinpath("succinct") test_saving_verbose = testsaving_dir.joinpath("verbose") tssf = testdata_dir.joinpath("testsequence_serialfile.json") @@ -104,20 +105,34 @@ def test_parser_numerical(self, setup_parser): ) # Check correct value parsed assert len(n_args) == 1 # Check one leftover - def test_parser_systemexits(self, setup_parser): + def test_parser_systemexits(self, capsys, setup_parser): # ###Basic tests for any variety of morphing### # Ensure only two pargs given for morphing (opts, pargs) = self.parser.parse_args(["toofewfiles"]) with pytest.raises(SystemExit): single_morph(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "You must supply FILE1 and FILE2." in err with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "You must supply FILE and DIRECTORY." in err (opts, pargs) = self.parser.parse_args(["too", "many", "files"]) with pytest.raises(SystemExit): single_morph(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert ( + "Too many arguments. Make sure you only supply FILE1 and FILE2." + in err + ) with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert ( + "Too many arguments. You must only supply a FILE and a DIRECTORY." + in err + ) # Make sure rmax greater than rmin (opts, pargs) = self.parser.parse_args( @@ -125,6 +140,8 @@ def test_parser_systemexits(self, setup_parser): ) with pytest.raises(SystemExit): single_morph(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "rmin must be less than rmax" in err # ###Tests exclusive to multiple morphs### # Make sure we save to a directory that exists @@ -139,8 +156,12 @@ def test_parser_systemexits(self, setup_parser): ) with pytest.raises(SystemExit): single_morph(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "Unable to save to designated location." in err with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "is not a directory." in err # Ensure first parg is a FILE and second parg is a DIRECTORY (opts, pargs) = self.parser.parse_args( @@ -151,8 +172,12 @@ def test_parser_systemexits(self, setup_parser): (opts, pargs) = self.parser.parse_args( [f"{testsequence_dir}", f"{testsequence_dir}"] ) + _, err = capsys.readouterr() + assert "is not a directory." in err with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "is not a file." in err # Try sorting by non-existing field (opts, pargs) = self.parser.parse_args( @@ -160,6 +185,8 @@ def test_parser_systemexits(self, setup_parser): ) with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "The requested field is missing from a PDF file header." in err (opts, pargs) = self.parser.parse_args( [ f"{nickel_PDF}", @@ -172,6 +199,8 @@ def test_parser_systemexits(self, setup_parser): ) with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "The requested field was not found in the metadata file." in err # Try plotting an unknown parameter (opts, pargs) = self.parser.parse_args( @@ -184,6 +213,8 @@ def test_parser_systemexits(self, setup_parser): ) with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "Cannot find specified plot parameter. No plot shown." in err # Try plotting an unrefined parameter (opts, pargs) = self.parser.parse_args( @@ -196,6 +227,26 @@ def test_parser_systemexits(self, setup_parser): ) with pytest.raises(SystemExit): multiple_targets(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert ( + "The plot parameter is missing values for at " + "least one morph and target pair. " + "No plot shown." in err + ) + + # Pass a non-float list to squeeze + (opts, pargs) = self.parser.parse_args( + [ + f"{nickel_PDF}", + f"{nickel_PDF}", + "--squeeze", + "1,a,0", + ] + ) + with pytest.raises(SystemExit): + single_morph(self.parser, opts, pargs, stdout_flag=False) + _, err = capsys.readouterr() + assert "a could not be converted to float." in err def test_morphsequence(self, setup_morphsequence): # Parse arguments sorting by field @@ -255,6 +306,64 @@ def test_morphsequence(self, setup_morphsequence): ) assert s_sequence_results == sequence_results + def test_morphsmear(self, setup_parser, tmp_path): + def gaussian(x, mu, sigma): + return np.exp(-((x - mu) ** 2) / (2 * sigma**2)) / ( + sigma * np.sqrt(2 * np.pi) + ) + + # Generate the test files + x_grid = np.linspace(1, 101, 1001) + # Gaussian with STD 3 (morph) + g2 = gaussian(x_grid, 51, 3) + mf = tmp_path / "morph.txt" + with open(mf, "w") as f: + np.savetxt(f, np.array([x_grid, g2]).T) + # Gaussian with STD 5 (target) + g3 = gaussian(x_grid, 51, 5) + tf = tmp_path / "target.txt" + with open(tf, "w") as f: + np.savetxt(f, np.array([x_grid, g3]).T) + # Gaussian with STD 3 and baseline slope -0.5 (PDF morph) + g2_bl = gaussian(x_grid, 51, 3) / x_grid - 0.5 * x_grid + pmf = tmp_path / "pdf_morph.txt" + with open(pmf, "w") as f: + np.savetxt(f, np.array([x_grid, g2_bl]).T) + # Gaussian with STD 5 with baseline slope -0.5 (PDF target) + g3_bl = gaussian(x_grid, 51, 5) / x_grid - 0.5 * x_grid + ptf = tmp_path / "pdf_target.txt" + with open(ptf, "w") as f: + np.savetxt(f, np.array([x_grid, g3_bl]).T) -if __name__ == "__main__": - TestApp() + # No PDF smear (should not activate baseline slope) + (opts, _) = self.parser.parse_args( + [ + "--smear", + "1", + "-n", + ] + ) + pargs = [mf, tf] + smear_results = single_morph( + self.parser, opts, pargs, stdout_flag=False + ) + # Variances add, and 3^2+4^2=5^2 + assert pytest.approx(abs(smear_results["smear"])) == 4.0 + assert pytest.approx(smear_results["Rw"]) == 0.0 + + # PDF-specific smear (should activate baseline slope) + (opts, _) = self.parser.parse_args( + [ + "--smear", + "100", + "--smear-pdf", + "1", + "-n", + ] + ) + pargs = [pmf, ptf] + pdf_smear_results = single_morph( + self.parser, opts, pargs, stdout_flag=False + ) + assert pytest.approx(abs(pdf_smear_results["smear"])) == 4.0 + assert pytest.approx(pdf_smear_results["Rw"]) == 0.0 diff --git a/tests/test_morphchain.py b/tests/test_morphchain.py index 92ed0189..721beae0 100644 --- a/tests/test_morphchain.py +++ b/tests/test_morphchain.py @@ -27,7 +27,7 @@ def setup(self): return def test_morph(self, setup): - """check MorphChain.morph()""" + """Check MorphChain.morph()""" # Define the morphs config = { "rmin": 1, @@ -53,11 +53,3 @@ def test_morph(self, setup): pytest.approx(x_morph[1] - x_morph[0], mgrid.rstep) assert numpy.allclose(y_morph, y_target) return - - -# End of class TestMorphChain - -if __name__ == "__main__": - TestMorphChain() - -# End of file diff --git a/tests/test_morphfuncy.py b/tests/test_morphfuncy.py new file mode 100644 index 00000000..31749fd6 --- /dev/null +++ b/tests/test_morphfuncy.py @@ -0,0 +1,74 @@ +import numpy as np +import pytest + +from diffpy.morph.morphs.morphfuncy import MorphFuncy + + +def sine_function(x, y, amplitude, frequency): + return amplitude * np.sin(frequency * x) * y + + +def exponential_decay_function(x, y, amplitude, decay_rate): + return amplitude * np.exp(-decay_rate * x) * y + + +def gaussian_function(x, y, amplitude, mean, sigma): + return amplitude * np.exp(-((x - mean) ** 2) / (2 * sigma**2)) * y + + +def polynomial_function(x, y, a, b, c): + return (a * x**2 + b * x + c) * y + + +def logarithmic_function(x, y, scale): + return scale * np.log(1 + x) * y + + +@pytest.mark.parametrize( + "function, parameters, expected_function", + [ + ( + sine_function, + {"amplitude": 2, "frequency": 5}, + lambda x, y: 2 * np.sin(5 * x) * y, + ), + ( + exponential_decay_function, + {"amplitude": 5, "decay_rate": 0.1}, + lambda x, y: 5 * np.exp(-0.1 * x) * y, + ), + ( + gaussian_function, + {"amplitude": 1, "mean": 5, "sigma": 1}, + lambda x, y: np.exp(-((x - 5) ** 2) / (2 * 1**2)) * y, + ), + ( + polynomial_function, + {"a": 1, "b": 2, "c": 0}, + lambda x, y: (x**2 + 2 * x) * y, + ), + ( + logarithmic_function, + {"scale": 0.5}, + lambda x, y: 0.5 * np.log(1 + x) * y, + ), + ], +) +def test_funcy(function, parameters, expected_function): + x_morph = np.linspace(0, 10, 101) + y_morph = np.sin(x_morph) + x_target = x_morph.copy() + y_target = y_morph.copy() + x_morph_expected = x_morph + y_morph_expected = expected_function(x_morph, y_morph) + morph = MorphFuncy() + morph.function = function + morph.funcy = parameters + x_morph_actual, y_morph_actual, x_target_actual, y_target_actual = ( + morph.morph(x_morph, y_morph, x_target, y_target) + ) + + assert np.allclose(y_morph_actual, y_morph_expected) + assert np.allclose(x_morph_actual, x_morph_expected) + assert np.allclose(x_target_actual, x_target) + assert np.allclose(y_target_actual, y_target) diff --git a/tests/test_morphio.py b/tests/test_morphio.py index ed4059ff..b16d414a 100644 --- a/tests/test_morphio.py +++ b/tests/test_morphio.py @@ -2,6 +2,7 @@ from pathlib import Path +import numpy as np import pytest from diffpy.morph.morphapp import ( @@ -9,6 +10,7 @@ multiple_targets, single_morph, ) +from diffpy.morph.morphpy import morph_arrays # Support Python 2 try: @@ -21,12 +23,33 @@ testdata_dir = tests_dir.joinpath("testdata") testsequence_dir = testdata_dir.joinpath("testsequence") -testsaving_dir = testdata_dir.joinpath("testsaving") +testsaving_dir = testsequence_dir.joinpath("testsaving") test_saving_succinct = testsaving_dir.joinpath("succinct") test_saving_verbose = testsaving_dir.joinpath("verbose") tssf = testdata_dir.joinpath("testsequence_serialfile.json") +# Ignore PATH data when comparing files +def ignore_path(line): + # Lines containing FILE PATH data begin with '# from ' + if "# from " in line: + return False + # Lines containing DIRECTORY PATH data begin with '# with ' + if "# with " in line: + return False + return True + + +def isfloat(s): + """True if s is convertible to float.""" + try: + float(s) + return True + except ValueError: + pass + return False + + class TestApp: @pytest.fixture def setup(self): @@ -46,16 +69,6 @@ def setup(self): return def test_morph_outputs(self, setup, tmp_path): - # Ignore PATH data when comparing files - def ignore_path(line): - # Lines containing FILE PATH data begin with '# from ' - if "# from " in line: - return False - # Lines containing DIRECTORY PATH data begin with '# with ' - if "# with " in line: - return False - return True - morph_file = self.testfiles[0] target_file = self.testfiles[-1] @@ -137,3 +150,81 @@ def ignore_path(line): generated = filter(ignore_path, gf) target = filter(ignore_path, tf) assert all(x == y for x, y in zip(generated, target)) + + def test_morphsqueeze_outputs(self, setup, tmp_path): + # The file squeeze_morph has a squeeze and stretch applied + morph_file = testdata_dir / "squeeze_morph.cgr" + target_file = testdata_dir / "squeeze_target.cgr" + sqr = tmp_path / "squeeze_morph_result.cgr" + sqr_name = sqr.resolve().as_posix() + # Note that stretch and hshift should not be considered + (opts, _) = self.parser.parse_args( + [ + "--scale", + "2", + "--squeeze", + # Ignore duplicate commas and trailing commas + # Handle spaces and non-spaces + "0,, ,-0.001, -0.0001,0.0001,", + "--stretch", + "1", + "--hshift", + "1", + "-s", + sqr_name, + "-n", + "--verbose", + ] + ) + pargs = [morph_file, target_file] + single_morph(self.parser, opts, pargs, stdout_flag=False) + + # Check squeeze morph generates the correct output + with open(sqr) as mf: + with open(target_file) as tf: + morphed = filter(ignore_path, mf) + target = filter(ignore_path, tf) + for m, t in zip(morphed, target): + m_row = m.split() + t_row = t.split() + assert len(m_row) == len(t_row) + for idx, _ in enumerate(m_row): + if isfloat(m_row[idx]) and isfloat(t_row[idx]): + assert np.isclose( + float(m_row[idx]), float(t_row[idx]) + ) + else: + assert m_row[idx] == t_row[idx] + + def test_morphfuncy_outputs(self, tmp_path): + def quadratic(x, y, a0, a1, a2): + return a0 + a1 * x + a2 * y**2 + + r = np.linspace(0, 10, 101) + gr = np.linspace(0, 10, 101) + + morph_arrays( + np.array([r, gr]).T, + np.array([r, quadratic(r, gr, 1, 2, 3)]).T, + squeeze=[0, 0, 0], + funcy=(quadratic, {"a0": 1.0, "a1": 2.0, "a2": 3.0}), + apply=True, + save=tmp_path / "funcy_target.cgr", + verbose=True, + ) + + with open(testdata_dir.joinpath("funcy_target.cgr")) as tf: + with open(tmp_path.joinpath("funcy_target.cgr")) as gf: + generated = filter(ignore_path, gf) + target = filter(ignore_path, tf) + for m, t in zip(generated, target): + m_row = m.split() + t_row = t.split() + assert len(m_row) == len(t_row) + for idx, _ in enumerate(m_row): + if isfloat(m_row[idx]) and isfloat(t_row[idx]): + assert np.isclose( + float(m_row[idx]), float(t_row[idx]) + ) + else: + assert m_row[idx] == t_row[idx] diff --git a/tests/test_morphpdftordf.py b/tests/test_morphpdftordf.py index 1c39b534..af42625e 100644 --- a/tests/test_morphpdftordf.py +++ b/tests/test_morphpdftordf.py @@ -30,7 +30,7 @@ def setup(self): return def test_transform(self, setup): - """check TransformXtalPDFtoRDF.morph()""" + """Check TransformXtalPDFtoRDF.morph()""" config = {"baselineslope": -1.0} transform = TransformXtalPDFtoRDF(config) @@ -43,11 +43,3 @@ def test_transform(self, setup): assert numpy.allclose(rdf1, y_morph) assert numpy.allclose(rdf2, y_target) return - - -# End of class TestTransformXtalPDFtoRDF - -if __name__ == "__main__": - TestTransformXtalPDFtoRDF() - -# End of file diff --git a/tests/test_morphpy.py b/tests/test_morphpy.py new file mode 100644 index 00000000..848fe1a9 --- /dev/null +++ b/tests/test_morphpy.py @@ -0,0 +1,166 @@ +#!/usr/bin/env python + +from pathlib import Path + +import numpy as np +import pytest + +from diffpy.morph.morphapp import create_option_parser, single_morph +from diffpy.morph.morphpy import morph, morph_arrays +from diffpy.morph.tools import getRw + +thisfile = locals().get("__file__", "file.py") +tests_dir = Path(thisfile).parent.resolve() +testdata_dir = tests_dir.joinpath("testdata") +testsequence_dir = testdata_dir.joinpath("testsequence") + +nickel_PDF = testdata_dir.joinpath("nickel_ss0.01.cgr") +serial_JSON = testdata_dir.joinpath("testsequence_serialfile.json") + +testsaving_dir = testsequence_dir.joinpath("testsaving") +test_saving_succinct = testsaving_dir.joinpath("succinct") +test_saving_verbose = testsaving_dir.joinpath("verbose") +tssf = testdata_dir.joinpath("testsequence_serialfile.json") + + +class TestMorphpy: + @pytest.fixture + def setup_morph(self): + self.parser = create_option_parser() + filenames = [ + "g_174K.gr", + "f_180K.gr", + "e_186K.gr", + "d_192K.gr", + "c_198K.gr", + "b_204K.gr", + "a_210K.gr", + ] + self.testfiles = [] + self.morphapp_results = {} + + # Parse arguments sorting by field + (opts, pargs) = self.parser.parse_args( + [ + "--scale", + "1", + "--stretch", + "0", + "-n", + "--sort-by", + "temperature", + ] + ) + for filename in filenames: + self.testfiles.append(testsequence_dir.joinpath(filename)) + + # Run multiple single morphs + morph_file = self.testfiles[0] + for target_file in self.testfiles[1:]: + pargs = [morph_file, target_file] + # store in same format of dictionary as multiple_targets + self.morphapp_results.update( + { + target_file.name: single_morph( + self.parser, opts, pargs, stdout_flag=False + ) + } + ) + return + + def test_morph(self, setup_morph): + morph_results = {} + morph_file = self.testfiles[0] + for target_file in self.testfiles[1:]: + mr, grm = morph( + morph_file, + target_file, + scale=1, + stretch=0, + sort_by="temperature", + ) + _, grt = morph(target_file, target_file) + morph_results.update({target_file.name: mr}) + + class Chain: + xyallout = grm[:, 0], grm[:, 1], grt[:, 0], grt[:, 1] + + chain = Chain() + rw = getRw(chain) + del chain + assert np.allclose( + [rw], [self.morphapp_results[target_file.name]["Rw"]] + ) + assert morph_results == self.morphapp_results + + def test_morphpy(self, setup_morph): + morph_results = {} + morph_file = self.testfiles[0] + for target_file in self.testfiles[1:]: + _, grm0 = morph(morph_file, morph_file) + _, grt = morph(target_file, target_file) + mr, grm = morph_arrays( + grm0, grt, scale=1, stretch=0, sort_by="temperature" + ) + morph_results.update({target_file.name: mr}) + + class Chain: + xyallout = grm[:, 0], grm[:, 1], grt[:, 0], grt[:, 1] + + chain = Chain() + rw = getRw(chain) + del chain + assert np.allclose( + [rw], [self.morphapp_results[target_file.name]["Rw"]] + ) + assert morph_results == self.morphapp_results + + def test_morphfuncy(self, setup_morph): + def gaussian(x, mu, sigma): + return np.exp(-((x - mu) ** 2) / (2 * sigma**2)) / ( + sigma * np.sqrt(2 * np.pi) + ) + + def gaussian_like_function(x, y, mu): + return gaussian((x + y) / 2, mu, 3) + + morph_r = np.linspace(0, 100, 1001) + morph_gr = np.linspace(0, 100, 1001) + + target_r = np.linspace(0, 100, 1001) + target_gr = 0.5 * gaussian(target_r, 50, 5) + 0.05 + + morph_info, _ = morph_arrays( + np.array([morph_r, morph_gr]).T, + np.array([target_r, target_gr]).T, + scale=1, + smear=3.75, + vshift=0.01, + funcy=(gaussian_like_function, {"mu": 47.5}), + tolerance=1e-12, + ) + + assert pytest.approx(morph_info["scale"]) == 0.5 + assert pytest.approx(morph_info["vshift"]) == 0.05 + assert pytest.approx(abs(morph_info["smear"])) == 4.0 + assert pytest.approx(morph_info["funcy"]["mu"]) == 50.0 + + def test_morphpy_outputs(self, tmp_path): + r = np.linspace(0, 1, 11) + gr = np.linspace(0, 1, 11) + + def linear(x, y, s): + return s * (x + y) + + morph_info, _ = morph_arrays( + np.array([r, gr]).T, + np.array([r, gr]).T, + squeeze=[1, 2, 3, 4, 5], + funcy=(linear, {"s": 2.5}), + apply=True, + ) + + print(morph_info) + for i in range(5): + assert pytest.approx(morph_info["squeeze"][f"a{i}"]) == i + 1 + assert pytest.approx(morph_info["funcy"]["s"]) == 2.5 diff --git a/tests/test_morphrdftopdf.py b/tests/test_morphrdftopdf.py index ee139cc1..207b6c0d 100644 --- a/tests/test_morphrdftopdf.py +++ b/tests/test_morphrdftopdf.py @@ -24,7 +24,7 @@ def setup(self): return def test_transform(self, setup): - """check TransformXtalRDFtoPDF.morph()""" + """Check TransformXtalRDFtoPDF.morph()""" config = {"baselineslope": -1.0} transform = TransformXtalRDFtoPDF(config) @@ -37,11 +37,3 @@ def test_transform(self, setup): assert numpy.allclose(rdf1, y_morph) assert numpy.allclose(rdf2, y_target) return - - -# End of class TestTransformXtalRDFtoPDF - -if __name__ == "__main__": - TestTransformXtalRDFtoPDF() - -# End of file diff --git a/tests/test_morphresolution.py b/tests/test_morphresolution.py index 13a56d8d..c0d57ed0 100644 --- a/tests/test_morphresolution.py +++ b/tests/test_morphresolution.py @@ -24,7 +24,7 @@ def setup(self): return def test_morph(self, setup): - """check MorphScale.morph()""" + """Check MorphScale.morph()""" config = {"qdamp": 0.01} morph = MorphResolutionDamping(config) @@ -35,11 +35,3 @@ def test_morph(self, setup): assert numpy.allclose(self.y_target, y_target) assert numpy.allclose(y_morph, y_target) return - - -# End of class TestMorphScale - -if __name__ == "__main__": - TestMorphScale() - -# End of file diff --git a/tests/test_morphrgrid.py b/tests/test_morphrgrid.py index d823dbad..866c6332 100644 --- a/tests/test_morphrgrid.py +++ b/tests/test_morphrgrid.py @@ -34,7 +34,7 @@ def _runTests(self, xyallout, morph): return def testRangeInBounds(self, setup): - """Selected range is within input bounds""" + """Selected range is within input bounds.""" config = { "rmin": 1.0, @@ -52,7 +52,7 @@ def testRangeInBounds(self, setup): return def testRmaxOut(self, setup): - """Selected rmax is outside of input bounds""" + """Selected rmax is outside of input bounds.""" config = { "rmin": 1.0, @@ -70,7 +70,7 @@ def testRmaxOut(self, setup): return def testRminOut(self, setup): - """Selected rmin is outside of input bounds""" + """Selected rmin is outside of input bounds.""" config = { "rmin": 0.0, @@ -88,7 +88,7 @@ def testRminOut(self, setup): return def testRstepOut(self, setup): - """Selected rstep is outside of input bounds""" + """Selected rstep is outside of input bounds.""" config = { "rmin": 1.0, @@ -104,11 +104,3 @@ def testRstepOut(self, setup): pytest.approx(0.01, morph.rstep) self._runTests(xyallout, morph) return - - -# End of class TestMorphRGrid - -if __name__ == "__main__": - TestMorphRGrid() - -# End of file diff --git a/tests/test_morphscale.py b/tests/test_morphscale.py index ccabb483..e52159f8 100644 --- a/tests/test_morphscale.py +++ b/tests/test_morphscale.py @@ -24,7 +24,7 @@ def setup(self): return def test_morph(self, setup): - """check MorphScale.morph()""" + """Check MorphScale.morph()""" config = {"scale": 2.0} morph = MorphScale(config) @@ -35,11 +35,3 @@ def test_morph(self, setup): assert numpy.allclose(2 * self.y_morph, y_morph) assert numpy.allclose(self.y_target, y_target) return - - -# End of class TestMorphScale - -if __name__ == "__main__": - TestMorphScale() - -# End of file diff --git a/tests/test_morphshape.py b/tests/test_morphshape.py index 1905ebe8..6e309d11 100644 --- a/tests/test_morphshape.py +++ b/tests/test_morphshape.py @@ -27,7 +27,7 @@ def setup(self): return def test_morph(self, setup): - """check MorphSphere.morph()""" + """Check MorphSphere.morph()""" config = {"radius": 17.5} morph = MorphSphere(config) @@ -45,13 +45,14 @@ def test_morph(self, setup): class TestMorphSpheroid: # Common configs for testing MorphSpheroid and MorphISpheroid - # FIXME: add test data for prolate spheroids config_sphere = {"radius": 17.5, "pradius": 17.5} config_oblate = {"radius": 17.5, "pradius": 5.0} - spheroid_configs = [config_sphere, config_oblate] + config_prolate = {"radius": 5.0, "pradius": 17.5} + spheroid_configs = [config_sphere, config_oblate, config_prolate] iconfig_sphere = {"iradius": 17.5, "ipradius": 17.5} iconfig_oblate = {"iradius": 17.5, "ipradius": 5.0} - ispheroid_configs = [iconfig_sphere, iconfig_oblate] + iconfig_prolate = {"iradius": 5.0, "ipradius": 17.5} + ispheroid_configs = [iconfig_sphere, iconfig_oblate, iconfig_prolate] # Files used for testing flag_inverse = ( @@ -60,6 +61,7 @@ class TestMorphSpheroid: testfiles = [ ["ni_qmax25.cgr", "ni_qmax25_psize35.cgr"], # Sphere ["ni_qmax25.cgr", "ni_qmax25_e17.5_p5.0.cgr"], # Oblate spheroid + ["ni_qmax25.cgr", "ni_qmax25_e5.0_p17.5.cgr"], # Prolate spheroid ] testfile = [] # Initialize testfile array @@ -78,7 +80,7 @@ def reset(self): return def test_morph(self): - """check MorphSpheroid.morph() and MorphISpheroid.morph()""" + """Check MorphSpheroid.morph() and MorphISpheroid.morph()""" for idx in range(len(self.testfiles)): self.testfile = self.testfiles[idx] @@ -123,12 +125,3 @@ def ishape_test_helper(self, config): else: # Outside the particle morph should be zero assert y_morph[idx] == 0 return - - -# End of class TestMorphSpheroid - -if __name__ == "__main__": - TestMorphSphere() - TestMorphSpheroid() - -# End of file diff --git a/tests/test_morphshift.py b/tests/test_morphshift.py index 4f2e552b..c01f2c64 100644 --- a/tests/test_morphshift.py +++ b/tests/test_morphshift.py @@ -30,7 +30,7 @@ def setup(self): return def test_morph(self, setup): - """check MorphScale.morph()""" + """Check MorphScale.morph()""" config = {"hshift": self.hshift, "vshift": self.vshift} morph = MorphShift(config) @@ -44,11 +44,3 @@ def test_morph(self, setup): assert numpy.allclose(self.x_target, x_target) assert numpy.allclose(self.y_target, y_target) return - - -# End of class TestMorphScale - -if __name__ == "__main__": - TestMorphShift() - -# End of file diff --git a/tests/test_morphsmear.py b/tests/test_morphsmear.py index aa431c0e..b05d237d 100644 --- a/tests/test_morphsmear.py +++ b/tests/test_morphsmear.py @@ -28,7 +28,7 @@ def setup(self): return def test_morph(self, setup): - """check MorphSmear.morph()""" + """Check MorphSmear.morph()""" morph = MorphSmear() morph.smear = 0.15 @@ -46,11 +46,3 @@ def test_morph(self, setup): assert numpy.allclose(ysmear, y_morph) return - - -# End of class TestMorphSmear - -if __name__ == "__main__": - TestMorphSmear() - -# End of file diff --git a/tests/test_morphsqueeze.py b/tests/test_morphsqueeze.py new file mode 100644 index 00000000..e5ce2a56 --- /dev/null +++ b/tests/test_morphsqueeze.py @@ -0,0 +1,87 @@ +import numpy as np +import pytest +from numpy.polynomial import Polynomial + +from diffpy.morph.morphs.morphsqueeze import MorphSqueeze + +squeeze_coeffs_dic = [ + # The order of coefficients is {a0, a1, a2, ..., an} + # Negative cubic squeeze coefficients + {"a0": -0.01, "a1": -0.0005, "a2": -0.0005, "a3": -1e-6}, + # Positive cubic squeeze coefficients + {"a0": 0.2, "a1": 0.01, "a2": 0.001, "a3": 0.0001}, + # Positive and negative cubic squeeze coefficients + {"a0": 0.2, "a1": -0.01, "a2": 0.002, "a3": -0.0001}, + # Quadratic squeeze coefficients + {"a0": -0.2, "a1": 0.005, "a2": -0.0004}, + # Linear squeeze coefficients + {"a0": 0.1, "a1": 0.3}, + # 4th order squeeze coefficients + {"a0": 0.2, "a1": -0.01, "a2": 0.001, "a3": -0.001, "a4": 0.0001}, + # Zeros and non-zeros, the full polynomial is applied + {"a0": 0, "a1": 0.03, "a2": 0, "a3": -0.0001}, + # Testing zeros, expect no squeezing + {"a0": 0, "a1": 0, "a2": 0, "a3": 0, "a4": 0, "a5": 0}, +] +morph_target_grids = [ + # UCs from issue 181: https://github.com/diffpy/diffpy.morph/issues/181 + # UC2: Same range and same grid density + (np.linspace(0, 10, 101), np.linspace(0, 10, 101)), + # UC4: Target range wider than morph, same grid density + (np.linspace(0, 10, 101), np.linspace(-2, 20, 221)), + # UC6: Target range wider than morph, target grid density finer than morph + (np.linspace(0, 10, 101), np.linspace(-2, 20, 421)), + # UC8: Target range wider than morph, morph grid density finer than target + (np.linspace(0, 10, 401), np.linspace(-2, 20, 200)), + # UC10: Morph range starts and ends earlier than target, same grid density + (np.linspace(-2, 10, 121), np.linspace(0, 20, 201)), + # UC12: Morph range wider than target, same grid density + (np.linspace(-2, 20, 201), np.linspace(0, 10, 101)), +] + + +@pytest.mark.parametrize("x_morph, x_target", morph_target_grids) +@pytest.mark.parametrize("squeeze_coeffs", squeeze_coeffs_dic) +def test_morphsqueeze(x_morph, x_target, squeeze_coeffs): + y_target = np.sin(x_target) + coeffs = [squeeze_coeffs[f"a{i}"] for i in range(len(squeeze_coeffs))] + squeeze_polynomial = Polynomial(coeffs) + x_squeezed = x_morph + squeeze_polynomial(x_morph) + y_morph = np.sin(x_squeezed) + low_extrap = np.where(x_morph < x_squeezed[0])[0] + high_extrap = np.where(x_morph > x_squeezed[-1])[0] + extrap_index_low_expected = low_extrap[-1] if low_extrap.size else None + extrap_index_high_expected = high_extrap[0] if high_extrap.size else None + x_morph_expected = x_morph + y_morph_expected = np.sin(x_morph) + morph = MorphSqueeze() + morph.squeeze = squeeze_coeffs + x_morph_actual, y_morph_actual, x_target_actual, y_target_actual = morph( + x_morph, y_morph, x_target, y_target + ) + extrap_index_low = morph.extrap_index_low + extrap_index_high = morph.extrap_index_high + if extrap_index_low is None: + extrap_index_low = 0 + elif extrap_index_high is None: + extrap_index_high = -1 + assert np.allclose( + y_morph_actual[extrap_index_low + 1 : extrap_index_high], + y_morph_expected[extrap_index_low + 1 : extrap_index_high], + atol=1e-6, + ) + assert np.allclose( + y_morph_actual[:extrap_index_low], + y_morph_expected[:extrap_index_low], + atol=1e-3, + ) + assert np.allclose( + y_morph_actual[extrap_index_high:], + y_morph_expected[extrap_index_high:], + atol=1e-3, + ) + assert morph.extrap_index_low == extrap_index_low_expected + assert morph.extrap_index_high == extrap_index_high_expected + assert np.allclose(x_morph_actual, x_morph_expected) + assert np.allclose(x_target_actual, x_target) + assert np.allclose(y_target_actual, y_target) diff --git a/tests/test_morphstretch.py b/tests/test_morphstretch.py index 37b23a0c..8e97bb1f 100644 --- a/tests/test_morphstretch.py +++ b/tests/test_morphstretch.py @@ -25,7 +25,7 @@ def setup(self): return def test_morph(self, setup): - """check MorphStretch.morph()""" + """Check MorphStretch.morph()""" morph = MorphStretch() # Stretch by 50% @@ -64,18 +64,9 @@ def test_morph(self, setup): return -# End of class TestMorphSmear - - def heaviside(x, lb, ub): """The Heaviside function.""" y = numpy.ones_like(x) y[x < lb] = 0.0 y[x > ub] = 0.0 return y - - -if __name__ == "__main__": - TestMorphStretch() - -# End of file diff --git a/tests/test_refine.py b/tests/test_refine.py index d9cbd6d4..d05a3db2 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -30,7 +30,7 @@ def setup(self): return def test_refine_morph(self, setup): - """refine a morph""" + """Refine a morph.""" # Define the morphs config = { "scale": 1.0, @@ -46,11 +46,11 @@ def test_refine_morph(self, setup): assert (x_morph == x_target).all() assert numpy.allclose(y_morph, y_target) - pytest.approx(config["scale"], 3.0) + assert pytest.approx(config["scale"]) == 3.0 return def test_refine_chain(self, setup): - """refine a chain""" + """Refine a chain.""" # Give this some texture self.y_morph[30:] = 5 self.y_target[33:] = 15 @@ -74,8 +74,44 @@ def test_refine_chain(self, setup): err = 15.0 * 2 res = sum(numpy.fabs(y_target - y_morph)) assert res < err - pytest.approx(chain.scale, 3, 2) - pytest.approx(chain.stretch, 0.1, 2) + assert pytest.approx(chain.scale, 0.01, 0.01) == 3.0 + assert pytest.approx(chain.stretch, 0.01, 0.01) == 0.1 + return + + def test_refine_tolerance(self, setup): + # Check that small tolerance gives good result + stol = 1e-16 + config = { + "scale": 1.0, + } + mscale = MorphScale(config) + refiner = Refiner( + mscale, + self.x_morph, + self.y_morph, + self.x_target, + self.y_target, + tolerance=stol, + ) + refiner.refine() + assert pytest.approx(config["scale"], stol, stol) == 3.0 + + # Check that larger tolerance does not give as good of result + ltol = 100 + config = { + "scale": 1.0, + } + mscale = MorphScale(config) + refiner = Refiner( + mscale, + self.x_morph, + self.y_morph, + self.x_target, + self.y_target, + tolerance=ltol, + ) + refiner.refine() + assert not pytest.approx(config["scale"], stol, stol) == 3.0 return @@ -131,10 +167,3 @@ def test_refine(self, setup): rw = (numpy.dot(diff, diff) / numpy.dot(yrsel, yrsel)) ** 0.5 assert rw < 0.01 return - - -if __name__ == "__main__": - TestRefine() - TestRefineUC() - -# End of file diff --git a/tests/test_tools.py b/tests/test_tools.py index f0a5b497..ee4c00c9 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -1,7 +1,6 @@ #!/usr/bin/env python -"""Unit tests for tools.py -""" +"""Unit tests for tools.py.""" import os @@ -29,14 +28,14 @@ def setup(self): return def test_estimateBaselineSlope(self, setup): - """check estimateBaselineSlope() using calculated data""" + """Check estimateBaselineSlope() using calculated data.""" slope = tools.estimateBaselineSlope(self.x_morph, self.y_morph) slopecalc = -4 * numpy.pi * self.rho0 assert numpy.allclose(slopecalc, slope, 1e-2) return def test_estimateScale(self, setup): - """check estimateScale() using calculated data""" + """Check estimateScale() using calculated data.""" import random x = random.random() @@ -60,10 +59,16 @@ def test_nn_value(self, setup): pytest.approx(tools.nn_value(-value, name=None), abs(-value)) def test_field_sort(self, setup): - sequence_files = [*os.listdir(testsequence_dir)] + sequence_files = [file for file in Path(testsequence_dir).iterdir()] + to_remove = [] + for file in sequence_files: + if file.is_dir(): + to_remove.append(file) + for d in to_remove: + sequence_files.remove(d) absolute_sf = [] for file in sequence_files: - absolute_sf.append(os.path.join(testsequence_dir, file)) + absolute_sf.append(Path(testsequence_dir) / file.name) # Fisher-Yates randomization import random @@ -87,8 +92,8 @@ def test_field_sort(self, setup): # Temperature sort should produce same result as alphanumerical if # leading character is removed - sequence_files.sort(key=lambda entry: entry[2:]) - assert sequence_files == sorted_sequence + sequence_files.sort(key=lambda entry: entry.name[2:]) + assert [file.name for file in sequence_files] == sorted_sequence # Check temperatures are correct assert fvs == [174, 180, 186, 192, 198, 204, 210] @@ -103,7 +108,7 @@ def test_field_sort(self, setup): # Reversed sort should match alphanumerical sort sequence_files.sort() - assert sequence_files == reversed_sequence + assert [file.name for file in sequence_files] == reversed_sequence # Check we get the same sequence when we load header information from # a serial file @@ -116,7 +121,7 @@ def test_field_sort(self, setup): metadata_sequence = [] for path in metadata_path_sequence: metadata_sequence.append(path.name) - assert sequence_files == metadata_sequence + assert [file.name for file in sequence_files] == metadata_sequence # Check error thrown when field does not exist with pytest.raises(KeyError): @@ -148,11 +153,3 @@ def test_get_values_from_dictionary_collection(self): ) == target_list ) - - -# End of class TestTools - -if __name__ == "__main__": - TestTools() - -# End of file diff --git a/tests/test_version.py b/tests/test_version.py index 230d27c2..68915adc 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -1,7 +1,6 @@ -"""Unit tests for __version__.py -""" +"""Unit tests for __version__.py.""" -import diffpy.morph +import diffpy.morph # noqa def test_package_version(): diff --git a/tests/testdata/funcy_target.cgr b/tests/testdata/funcy_target.cgr new file mode 100644 index 00000000..5744e86a --- /dev/null +++ b/tests/testdata/funcy_target.cgr @@ -0,0 +1,136 @@ +# PDF created by diffpy.morph +# from NO FILE PATH PROVIDED + +# Input morphing parameters: +# scale = None +# stretch = None +# smear = None +# hshift = None +# vshift = None +# squeeze a0 = 0.0 +# squeeze a1 = 0.0 +# squeeze a2 = 0.0 +# funcy a0 = 1.0 +# funcy a1 = 2.0 +# funcy a2 = 3.0 +# funcy function = +""" +def quadratic(x, y, a0, a1, a2): + return a0 + a1 * x + a2 * y**2 +""" + +# Optimized morphing parameters: +# rmin = 0.000000 +# rmax = 10.100000 +# rstep = 0.100000 +# squeeze a0 = 0.000000 +# squeeze a1 = 0.000000 +# squeeze a2 = 0.000000 +# funcy a0 = 1.000000 +# funcy a1 = 2.000000 +# funcy a2 = 3.000000 +# Rw = 0.000000 +# Pearson = 1.000000 + +# Labels: [r] [gr] +0.000000000000000000e+00 1.000000000000000000e+00 +1.000000000000000056e-01 1.229999999999999982e+00 +2.000000000000000111e-01 1.520000000000000018e+00 +3.000000000000000444e-01 1.870000000000000107e+00 +4.000000000000000222e-01 2.280000000000000249e+00 +5.000000000000000000e-01 2.750000000000000000e+00 +6.000000000000000888e-01 3.280000000000000249e+00 +7.000000000000000666e-01 3.870000000000000551e+00 +8.000000000000000444e-01 4.520000000000000462e+00 +9.000000000000000222e-01 5.230000000000000426e+00 +1.000000000000000000e+00 6.000000000000000000e+00 +1.100000000000000089e+00 6.830000000000000959e+00 +1.200000000000000178e+00 7.720000000000001528e+00 +1.300000000000000044e+00 8.669999999999999929e+00 +1.400000000000000133e+00 9.680000000000001492e+00 +1.500000000000000000e+00 1.075000000000000000e+01 +1.600000000000000089e+00 1.188000000000000256e+01 +1.700000000000000178e+00 1.307000000000000206e+01 +1.800000000000000044e+00 1.432000000000000028e+01 +1.900000000000000133e+00 1.563000000000000256e+01 +2.000000000000000000e+00 1.700000000000000000e+01 +2.100000000000000089e+00 1.842999999999999972e+01 +2.200000000000000178e+00 1.992000000000000171e+01 +2.300000000000000266e+00 2.147000000000000242e+01 +2.400000000000000355e+00 2.308000000000000540e+01 +2.500000000000000000e+00 2.475000000000000000e+01 +2.600000000000000089e+00 2.648000000000000043e+01 +2.700000000000000178e+00 2.827000000000000313e+01 +2.800000000000000266e+00 3.012000000000000455e+01 +2.900000000000000355e+00 3.203000000000000114e+01 +3.000000000000000000e+00 3.400000000000000000e+01 +3.100000000000000089e+00 3.603000000000000824e+01 +3.200000000000000178e+00 3.812000000000000455e+01 +3.300000000000000266e+00 4.027000000000001023e+01 +3.400000000000000355e+00 4.248000000000000398e+01 +3.500000000000000000e+00 4.475000000000000000e+01 +3.600000000000000089e+00 4.707999999999999829e+01 +3.700000000000000178e+00 4.947000000000000597e+01 +3.800000000000000266e+00 5.192000000000000881e+01 +3.900000000000000355e+00 5.443000000000000682e+01 +4.000000000000000000e+00 5.700000000000000000e+01 +4.100000000000000533e+00 5.963000000000002387e+01 +4.200000000000000178e+00 6.232000000000000028e+01 +4.299999999999999822e+00 6.506999999999999318e+01 +4.400000000000000355e+00 6.788000000000000966e+01 +4.500000000000000000e+00 7.075000000000000000e+01 +4.600000000000000533e+00 7.368000000000000682e+01 +4.700000000000000178e+00 7.667000000000001592e+01 +4.800000000000000711e+00 7.972000000000002728e+01 +4.900000000000000355e+00 8.283000000000001251e+01 +5.000000000000000000e+00 8.600000000000000000e+01 +5.100000000000000533e+00 8.923000000000001819e+01 +5.200000000000000178e+00 9.252000000000001023e+01 +5.300000000000000711e+00 9.587000000000003297e+01 +5.400000000000000355e+00 9.928000000000001535e+01 +5.500000000000000000e+00 1.027500000000000000e+02 +5.600000000000000533e+00 1.062800000000000153e+02 +5.700000000000000178e+00 1.098700000000000045e+02 +5.800000000000000711e+00 1.135200000000000102e+02 +5.900000000000000355e+00 1.172300000000000040e+02 +6.000000000000000000e+00 1.210000000000000000e+02 +6.100000000000000533e+00 1.248300000000000267e+02 +6.200000000000000178e+00 1.287200000000000273e+02 +6.300000000000000711e+00 1.326700000000000443e+02 +6.400000000000000355e+00 1.366800000000000352e+02 +6.500000000000000000e+00 1.407500000000000000e+02 +6.600000000000000533e+00 1.448800000000000239e+02 +6.700000000000000178e+00 1.490700000000000216e+02 +6.800000000000000711e+00 1.533200000000000216e+02 +6.900000000000000355e+00 1.576300000000000239e+02 +7.000000000000000000e+00 1.620000000000000000e+02 +7.100000000000000533e+00 1.664300000000000068e+02 +7.200000000000000178e+00 1.709200000000000159e+02 +7.300000000000000711e+00 1.754700000000000273e+02 +7.400000000000000355e+00 1.800800000000000409e+02 +7.500000000000000000e+00 1.847500000000000000e+02 +7.600000000000000533e+00 1.894800000000000182e+02 +7.700000000000000178e+00 1.942700000000000102e+02 +7.800000000000000711e+00 1.991200000000000330e+02 +7.900000000000000355e+00 2.040300000000000296e+02 +8.000000000000000000e+00 2.090000000000000000e+02 +8.099999999999999645e+00 2.140299999999999727e+02 +8.200000000000001066e+00 2.191200000000000898e+02 +8.300000000000000711e+00 2.242700000000000387e+02 +8.400000000000000355e+00 2.294800000000000182e+02 +8.500000000000000000e+00 2.347500000000000000e+02 +8.599999999999999645e+00 2.400799999999999841e+02 +8.700000000000001066e+00 2.454700000000000557e+02 +8.800000000000000711e+00 2.509200000000000443e+02 +8.900000000000000355e+00 2.564300000000000068e+02 +9.000000000000000000e+00 2.620000000000000000e+02 +9.099999999999999645e+00 2.676299999999999386e+02 +9.200000000000001066e+00 2.733200000000000500e+02 +9.300000000000000711e+00 2.790700000000000500e+02 +9.400000000000000355e+00 2.848800000000000523e+02 +9.500000000000000000e+00 2.907500000000000000e+02 +9.600000000000001421e+00 2.966800000000000637e+02 +9.700000000000001066e+00 3.026700000000000159e+02 +9.800000000000000711e+00 3.087200000000000841e+02 +9.900000000000000355e+00 3.148300000000000409e+02 +1.000000000000000000e+01 3.210000000000000000e+02 diff --git a/tests/testdata/ni_qmax25_e5.0_p17.5.cgr b/tests/testdata/ni_qmax25_e5.0_p17.5.cgr new file mode 100644 index 00000000..70846dfc --- /dev/null +++ b/tests/testdata/ni_qmax25_e5.0_p17.5.cgr @@ -0,0 +1,4006 @@ +# qmax = 25 +# erad = 5.0 +# prad = 17.5 + +##### start data +#L r(A) G(r) +0.000000000000000000e+00 0.000000000000000000e+00 +1.000000000000000021e-02 -1.241842098860425521e-02 +2.000000000000000042e-02 -2.474426803467946745e-02 +2.999999999999999889e-02 -3.691951840649777133e-02 +4.000000000000000083e-02 -4.889415088366782375e-02 +5.000000000000000278e-02 -6.062934821187750123e-02 +5.999999999999999778e-02 -7.209999266033891019e-02 +7.000000000000000666e-02 -8.329629877624560030e-02 +8.000000000000000167e-02 -9.422448022583837512e-02 +8.999999999999999667e-02 -1.049064067425640456e-01 +1.000000000000000056e-01 -1.153782691624341827e-01 +1.100000000000000006e-01 -1.256883316278638585e-01 +1.199999999999999956e-01 -1.358939066321427080e-01 +1.300000000000000044e-01 -1.460577372475404256e-01 +1.400000000000000133e-01 -1.562440086665493055e-01 +1.499999999999999944e-01 -1.665142357399460593e-01 +1.600000000000000033e-01 -1.769232829317587130e-01 +1.700000000000000122e-01 -1.875157673033696626e-01 +1.799999999999999933e-01 -1.983230739753222838e-01 +1.900000000000000022e-01 -2.093611780962537083e-01 +2.000000000000000111e-01 -2.206294196379871564e-01 +2.099999999999999922e-01 -2.321103200556200175e-01 +2.200000000000000011e-01 -2.437704663364216595e-01 +2.300000000000000100e-01 -2.555624219687446796e-01 +2.399999999999999911e-01 -2.674275598621673189e-01 +2.500000000000000000e-01 -2.792996531889782585e-01 +2.600000000000000089e-01 -2.911090101871352531e-01 +2.700000000000000178e-01 -3.027869013760093875e-01 +2.800000000000000266e-01 -3.142700049156627040e-01 +2.899999999999999800e-01 -3.255045896668695704e-01 +2.999999999999999889e-01 -3.364501665913389727e-01 +3.099999999999999978e-01 -3.470823671458333481e-01 +3.200000000000000067e-01 -3.573948509064254764e-01 +3.300000000000000155e-01 -3.674001014651009367e-01 +3.400000000000000244e-01 -3.771290364615907942e-01 +3.500000000000000333e-01 -3.866294305480581506e-01 +3.599999999999999867e-01 -3.959632247624254031e-01 +3.699999999999999956e-01 -4.052028676182575229e-01 +3.800000000000000044e-01 -4.144268976750756783e-01 +3.900000000000000133e-01 -4.237150302389533496e-01 +4.000000000000000222e-01 -4.331430485705656808e-01 +4.100000000000000311e-01 -4.427778197999228671e-01 +4.199999999999999845e-01 -4.526727559540421608e-01 +4.299999999999999933e-01 -4.628640205578690159e-01 +4.400000000000000022e-01 -4.733677418722169183e-01 +4.500000000000000111e-01 -4.841784369205336391e-01 +4.600000000000000200e-01 -4.952687791144974594e-01 +4.700000000000000289e-01 -5.065907605942598924e-01 +4.799999999999999822e-01 -5.180782131992448525e-01 +4.899999999999999911e-01 -5.296505646139979540e-01 +5.000000000000000000e-01 -5.412176241972972424e-01 +5.100000000000000089e-01 -5.526851216358920071e-01 +5.200000000000000178e-01 -5.639606656936261286e-01 +5.300000000000000266e-01 -5.749597539475218566e-01 +5.400000000000000355e-01 -5.856114504035534463e-01 +5.500000000000000444e-01 -5.958633578291592237e-01 +5.600000000000000533e-01 -6.056855456249752301e-01 +5.700000000000000622e-01 -6.150731506612144850e-01 +5.799999999999999600e-01 -6.240474448247859129e-01 +5.899999999999999689e-01 -6.326552548164973144e-01 +5.999999999999999778e-01 -6.409667216433263537e-01 +6.099999999999999867e-01 -6.490714930932055537e-01 +6.199999999999999956e-01 -6.570735456370915273e-01 +6.300000000000000044e-01 -6.650849260114021222e-01 +6.400000000000000133e-01 -6.732187809111005450e-01 +6.500000000000000222e-01 -6.815821002819131280e-01 +6.600000000000000311e-01 -6.902686313225522285e-01 +6.700000000000000400e-01 -6.993524236606342148e-01 +6.800000000000000488e-01 -7.088824401322504354e-01 +6.900000000000000577e-01 -7.188786128975985790e-01 +7.000000000000000666e-01 -7.293296438469978327e-01 +7.099999999999999645e-01 -7.401927457266611610e-01 +7.199999999999999734e-01 -7.513954020129375300e-01 +7.299999999999999822e-01 -7.628390963649758216e-01 +7.399999999999999911e-01 -7.744048343641924959e-01 +7.500000000000000000e-01 -7.859601593957967758e-01 +7.600000000000000089e-01 -7.973672589370319752e-01 +7.700000000000000178e-01 -8.084916744647597797e-01 +7.800000000000000266e-01 -8.192110737499606055e-01 +7.900000000000000355e-01 -8.294235228973887430e-01 +8.000000000000000444e-01 -8.390547095678119183e-01 +8.100000000000000533e-01 -8.480636186385964725e-01 +8.200000000000000622e-01 -8.564462450779287694e-01 +8.300000000000000711e-01 -8.642370417546210160e-01 +8.399999999999999689e-01 -8.715079359729670516e-01 +8.499999999999999778e-01 -8.783648997068246311e-01 +8.599999999999999867e-01 -8.849422155712998173e-01 +8.699999999999999956e-01 -8.913947335918191994e-01 +8.800000000000000044e-01 -8.978885528229660906e-01 +8.900000000000000133e-01 -9.045906774209534484e-01 +9.000000000000000222e-01 -9.116582806737836275e-01 +9.100000000000000311e-01 -9.192282563011452412e-01 +9.200000000000000400e-01 -9.274077398543313366e-01 +9.300000000000000488e-01 -9.362662426663754811e-01 +9.400000000000000577e-01 -9.458299576916856521e-01 +9.500000000000000666e-01 -9.560786746951156490e-01 +9.599999999999999645e-01 -9.669455881942231601e-01 +9.699999999999999734e-01 -9.783201042088189858e-01 +9.799999999999999822e-01 -9.900535619062584836e-01 +9.899999999999999911e-01 -1.001967595489957619e+00 +1.000000000000000000e+00 -1.013864682442248144e+00 +1.010000000000000009e+00 -1.025540268439300240e+00 +1.020000000000000018e+00 -1.036795737724250710e+00 +1.030000000000000027e+00 -1.047451419414810125e+00 +1.040000000000000036e+00 -1.057358791599678050e+00 +1.050000000000000044e+00 -1.066411069613036222e+00 +1.060000000000000053e+00 -1.074551442721703332e+00 +1.070000000000000062e+00 -1.081778351330887844e+00 +1.080000000000000071e+00 -1.088147368092966305e+00 +1.090000000000000080e+00 -1.093769451349477562e+00 +1.100000000000000089e+00 -1.098805566017122981e+00 +1.110000000000000098e+00 -1.103457901415422659e+00 +1.120000000000000107e+00 -1.107958142747261787e+00 +1.130000000000000115e+00 -1.112553458078555879e+00 +1.140000000000000124e+00 -1.117491031754356490e+00 +1.150000000000000133e+00 -1.123002096137525996e+00 +1.159999999999999920e+00 -1.129286476980079890e+00 +1.169999999999999929e+00 -1.136498667657103168e+00 +1.179999999999999938e+00 -1.144736381836280348e+00 +1.189999999999999947e+00 -1.154032405014500773e+00 +1.199999999999999956e+00 -1.164350378986878543e+00 +1.209999999999999964e+00 -1.175584919882267654e+00 +1.219999999999999973e+00 -1.187566203435240997e+00 +1.229999999999999982e+00 -1.200068866808417845e+00 +1.239999999999999991e+00 -1.212824792325474466e+00 +1.250000000000000000e+00 -1.225539073277901014e+00 +1.260000000000000009e+00 -1.237908233274240377e+00 +1.270000000000000018e+00 -1.249639594383761265e+00 +1.280000000000000027e+00 -1.260470578701354594e+00 +1.290000000000000036e+00 -1.270186692238491011e+00 +1.300000000000000044e+00 -1.278636984011157551e+00 +1.310000000000000053e+00 -1.285745896647732422e+00 +1.320000000000000062e+00 -1.291520622439073618e+00 +1.330000000000000071e+00 -1.296053340195834958e+00 +1.340000000000000080e+00 -1.299518018798746954e+00 +1.350000000000000089e+00 -1.302161814499532388e+00 +1.360000000000000098e+00 -1.304291439835127964e+00 +1.370000000000000107e+00 -1.306255220113168081e+00 +1.380000000000000115e+00 -1.308421856542244299e+00 +1.390000000000000124e+00 -1.311157162457053049e+00 +1.400000000000000133e+00 -1.314800212867134332e+00 +1.409999999999999920e+00 -1.319640434026675191e+00 +1.419999999999999929e+00 -1.325897150342814079e+00 +1.429999999999999938e+00 -1.333702998067717749e+00 +1.439999999999999947e+00 -1.343092412477994602e+00 +1.449999999999999956e+00 -1.353996107501804991e+00 +1.459999999999999964e+00 -1.366242109698317941e+00 +1.469999999999999973e+00 -1.379563502823840881e+00 +1.479999999999999982e+00 -1.393612609479571107e+00 +1.489999999999999991e+00 -1.407980909469755959e+00 +1.500000000000000000e+00 -1.422223598195460958e+00 +1.510000000000000009e+00 -1.435887349343909714e+00 +1.520000000000000018e+00 -1.448539588219869945e+00 +1.530000000000000027e+00 -1.459797424816397404e+00 +1.540000000000000036e+00 -1.469354352842086042e+00 +1.550000000000000044e+00 -1.477002899221287135e+00 +1.560000000000000053e+00 -1.482651607298556717e+00 +1.570000000000000062e+00 -1.486335047552757027e+00 +1.580000000000000071e+00 -1.488215955984824257e+00 +1.590000000000000080e+00 -1.488579079659701598e+00 +1.600000000000000089e+00 -1.487816832804364831e+00 +1.610000000000000098e+00 -1.486407403135697969e+00 +1.620000000000000107e+00 -1.484886462489935832e+00 +1.630000000000000115e+00 -1.483814094282842611e+00 +1.640000000000000124e+00 -1.483738921133108013e+00 +1.650000000000000133e+00 -1.485161671891338520e+00 +1.660000000000000142e+00 -1.488500547485250403e+00 +1.669999999999999929e+00 -1.494060716533912592e+00 +1.679999999999999938e+00 -1.502010090806641385e+00 +1.689999999999999947e+00 -1.512363203185023819e+00 +1.699999999999999956e+00 -1.524974552374060988e+00 +1.709999999999999964e+00 -1.539542213777425950e+00 +1.719999999999999973e+00 -1.555621877087103755e+00 +1.729999999999999982e+00 -1.572650796653258132e+00 +1.739999999999999991e+00 -1.589980472818320223e+00 +1.750000000000000000e+00 -1.606916264592415100e+00 +1.760000000000000009e+00 -1.622761608308462167e+00 +1.770000000000000018e+00 -1.636864120990756843e+00 +1.780000000000000027e+00 -1.648660632057808550e+00 +1.790000000000000036e+00 -1.657718134550350220e+00 +1.800000000000000044e+00 -1.663767788389267865e+00 +1.810000000000000053e+00 -1.666729442298553243e+00 +1.820000000000000062e+00 -1.666724654623614521e+00 +1.830000000000000071e+00 -1.664076860883394682e+00 +1.840000000000000080e+00 -1.659298121073394805e+00 +1.850000000000000089e+00 -1.653062736893786910e+00 +1.860000000000000098e+00 -1.646168905975565311e+00 +1.870000000000000107e+00 -1.639490420953785499e+00 +1.880000000000000115e+00 -1.633921169782523775e+00 +1.890000000000000124e+00 -1.630315797184906934e+00 +1.900000000000000133e+00 -1.629430299546153149e+00 +1.910000000000000142e+00 -1.631866510839821371e+00 +1.919999999999999929e+00 -1.638024371999567519e+00 +1.929999999999999938e+00 -1.648065551957446528e+00 +1.939999999999999947e+00 -1.661891412818730318e+00 +1.949999999999999956e+00 -1.679137508081988583e+00 +1.959999999999999964e+00 -1.699185810787819051e+00 +1.969999999999999973e+00 -1.721194741231384606e+00 +1.979999999999999982e+00 -1.744145865915950111e+00 +1.989999999999999991e+00 -1.766904943097365122e+00 +2.000000000000000000e+00 -1.788293871669885515e+00 +2.010000000000000231e+00 -1.807169134631221974e+00 +2.020000000000000018e+00 -1.822501585911760147e+00 +2.030000000000000249e+00 -1.833451970004710940e+00 +2.040000000000000036e+00 -1.839436433560968309e+00 +2.049999999999999822e+00 -1.840176515318058037e+00 +2.060000000000000053e+00 -1.835728693654447241e+00 +2.069999999999999840e+00 -1.826489516256644574e+00 +2.080000000000000071e+00 -1.813173598443608814e+00 +2.089999999999999858e+00 -1.796763299222213117e+00 +2.100000000000000089e+00 -1.778430592068460214e+00 +2.109999999999999876e+00 -1.759433450451496794e+00 +2.120000000000000107e+00 -1.740990865279109512e+00 +2.129999999999999893e+00 -1.724142296465328128e+00 +2.140000000000000124e+00 -1.709598828020709727e+00 +2.149999999999999911e+00 -1.697594446487385111e+00 +2.160000000000000142e+00 -1.687746609975769640e+00 +2.169999999999999929e+00 -1.678935551587299901e+00 +2.180000000000000160e+00 -1.669211521738517945e+00 +2.189999999999999947e+00 -1.655738400603513849e+00 +2.200000000000000178e+00 -1.634780815260513664e+00 +2.209999999999999964e+00 -1.601740116517437640e+00 +2.220000000000000195e+00 -1.551242376907759013e+00 +2.229999999999999982e+00 -1.477279059296547015e+00 +2.240000000000000213e+00 -1.373398292309490287e+00 +2.250000000000000000e+00 -1.232941908372086504e+00 +2.260000000000000231e+00 -1.049320696462437530e+00 +2.270000000000000018e+00 -8.163178412204397105e-01 +2.280000000000000249e+00 -5.284084040144326755e-01 +2.290000000000000036e+00 -1.810810780343284632e-01 +2.300000000000000266e+00 2.288525739265880876e-01 +2.310000000000000053e+00 7.029765329944982488e-01 +2.319999999999999840e+00 1.241031136562589898e+00 +2.330000000000000071e+00 1.840729908948182114e+00 +2.339999999999999858e+00 2.497644185628400404e+00 +2.350000000000000089e+00 3.205164809027753581e+00 +2.359999999999999876e+00 3.954547122158530659e+00 +2.370000000000000107e+00 4.735042010600284179e+00 +2.379999999999999893e+00 5.534111999255005188e+00 +2.390000000000000124e+00 6.337727572241069751e+00 +2.399999999999999911e+00 7.130735136183980138e+00 +2.410000000000000142e+00 7.897284573560837906e+00 +2.419999999999999929e+00 8.621301309255461121e+00 +2.430000000000000160e+00 9.286985397528610520e+00 +2.439999999999999947e+00 9.879318459043641809e+00 +2.450000000000000178e+00 1.038455845542325306e+01 +2.459999999999999964e+00 1.079070233963798842e+01 +2.470000000000000195e+00 1.108789757888079208e+01 +2.479999999999999982e+00 1.126878538250580597e+01 +2.490000000000000213e+00 1.132876110749591625e+01 +2.500000000000000000e+00 1.126614064364450307e+01 +2.510000000000000231e+00 1.108222545081831356e+01 +2.520000000000000018e+00 1.078126315385551948e+01 +2.530000000000000249e+00 1.037030500000911459e+01 +2.540000000000000036e+00 9.858965842936713742e+00 +2.550000000000000266e+00 9.259096430397603328e+00 +2.560000000000000053e+00 8.584381445549286838e+00 +2.569999999999999840e+00 7.849879810592179652e+00 +2.580000000000000071e+00 7.071526062942436575e+00 +2.589999999999999858e+00 6.265613051786417920e+00 +2.600000000000000089e+00 5.448276713086626977e+00 +2.609999999999999876e+00 4.635003246008873035e+00 +2.620000000000000107e+00 3.840177662127465030e+00 +2.629999999999999893e+00 3.076690484503502798e+00 +2.640000000000000124e+00 2.355616451788713039e+00 +2.649999999999999911e+00 1.685975582870084422e+00 +2.660000000000000142e+00 1.074583057339164149e+00 +2.669999999999999929e+00 5.259902611777579340e-01 +2.680000000000000160e+00 4.251523809195282416e-02 +2.689999999999999947e+00 -3.756431253554815552e-01 +2.700000000000000178e+00 -7.302163816495387261e-01 +2.709999999999999964e+00 -1.024615453799191167e+00 +2.720000000000000195e+00 -1.263631700187418438e+00 +2.729999999999999982e+00 -1.453106121620752367e+00 +2.740000000000000213e+00 -1.599583414139586379e+00 +2.750000000000000000e+00 -1.709967425468083224e+00 +2.760000000000000231e+00 -1.791193620430420186e+00 +2.770000000000000018e+00 -1.849932475885790684e+00 +2.780000000000000249e+00 -1.892335419718305323e+00 +2.790000000000000036e+00 -1.923832141813964114e+00 +2.800000000000000266e+00 -1.948984999920915673e+00 +2.810000000000000053e+00 -1.971402994264991992e+00 +2.819999999999999840e+00 -1.993714568782194885e+00 +2.830000000000000071e+00 -2.017595483688944924e+00 +2.839999999999999858e+00 -2.043845347415723435e+00 +2.850000000000000089e+00 -2.072504224915228122e+00 +2.859999999999999876e+00 -2.102999152362548418e+00 +2.870000000000000107e+00 -2.134309448044082291e+00 +2.879999999999999893e+00 -2.165139440345400956e+00 +2.890000000000000124e+00 -2.194087622180209696e+00 +2.899999999999999911e+00 -2.219802236169268195e+00 +2.910000000000000142e+00 -2.241114812703276726e+00 +2.919999999999999929e+00 -2.257145112818700117e+00 +2.930000000000000160e+00 -2.267373138613787198e+00 +2.939999999999999947e+00 -2.271676222838785453e+00 +2.950000000000000178e+00 -2.270331550163321666e+00 +2.959999999999999964e+00 -2.263986654746083627e+00 +2.970000000000000195e+00 -2.253602355027676918e+00 +2.979999999999999982e+00 -2.240374120907535183e+00 +2.990000000000000213e+00 -2.225638941109441937e+00 +3.000000000000000000e+00 -2.210775320867651939e+00 +3.010000000000000231e+00 -2.197104076379126081e+00 +3.020000000000000018e+00 -2.185797120266078863e+00 +3.030000000000000249e+00 -2.177800500428659358e+00 +3.040000000000000036e+00 -2.173776639633092422e+00 +3.050000000000000266e+00 -2.174069123766122935e+00 +3.060000000000000053e+00 -2.178691617362874755e+00 +3.070000000000000284e+00 -2.187340668447263159e+00 +3.080000000000000071e+00 -2.199430423894154885e+00 +3.089999999999999858e+00 -2.214145726940230041e+00 +3.100000000000000089e+00 -2.230508810950814436e+00 +3.109999999999999876e+00 -2.247453917994676420e+00 +3.120000000000000107e+00 -2.263903711339921188e+00 +3.129999999999999893e+00 -2.278841342887978794e+00 +3.140000000000000124e+00 -2.291372474790045022e+00 +3.149999999999999911e+00 -2.300772404367861679e+00 +3.160000000000000142e+00 -2.306514641128153187e+00 +3.169999999999999929e+00 -2.308278749238044547e+00 +3.180000000000000160e+00 -2.305936896028717431e+00 +3.189999999999999947e+00 -2.299520223907984828e+00 +3.200000000000000178e+00 -2.289167773114564319e+00 +3.209999999999999964e+00 -2.275062113848493883e+00 +3.220000000000000195e+00 -2.257356997743436899e+00 +3.229999999999999982e+00 -2.236103127710099781e+00 +3.240000000000000213e+00 -2.211178512623499071e+00 +3.250000000000000000e+00 -2.182229787284280853e+00 +3.260000000000000231e+00 -2.148630336300513033e+00 +3.270000000000000018e+00 -2.109460090718925152e+00 +3.280000000000000249e+00 -2.063510524520210776e+00 +3.290000000000000036e+00 -2.009316745705202134e+00 +3.300000000000000266e+00 -1.945216755009452347e+00 +3.310000000000000053e+00 -1.869436049571355118e+00 +3.320000000000000284e+00 -1.780193901168510839e+00 +3.330000000000000071e+00 -1.675825960061762876e+00 +3.339999999999999858e+00 -1.554916438641632759e+00 +3.350000000000000089e+00 -1.416432110831448155e+00 +3.359999999999999876e+00 -1.259849798450454639e+00 +3.370000000000000107e+00 -1.085268952406974741e+00 +3.379999999999999893e+00 -8.935013923055109553e-01 +3.390000000000000124e+00 -6.861312286305520924e-01 +3.399999999999999911e+00 -4.655394115584776116e-01 +3.410000000000000142e+00 -2.348891550794597605e-01 +3.419999999999999929e+00 1.929424928218923495e-03 +3.430000000000000160e+00 2.403948632717901879e-01 +3.439999999999999947e+00 4.754872004169224398e-01 +3.450000000000000178e+00 7.018530577917561075e-01 +3.459999999999999964e+00 9.139958879978782313e-01 +3.470000000000000195e+00 1.106482741403454373e+00 +3.479999999999999982e+00 1.274157728567888892e+00 +3.490000000000000213e+00 1.412351722589583858e+00 +3.500000000000000000e+00 1.517077782353754234e+00 +3.510000000000000231e+00 1.585202299310347174e+00 +3.520000000000000018e+00 1.614582955230847716e+00 +3.530000000000000249e+00 1.604166171606270064e+00 +3.540000000000000036e+00 1.554038747964797240e+00 +3.550000000000000266e+00 1.465430715966836273e+00 +3.560000000000000053e+00 1.340668949115254804e+00 +3.570000000000000284e+00 1.183083623121541583e+00 +3.580000000000000071e+00 9.968720748453095970e-01 +3.589999999999999858e+00 7.869268188516603812e-01 +3.600000000000000089e+00 5.586363239473494113e-01 +3.609999999999999876e+00 3.176685223524874369e-01 +3.620000000000000107e+00 6.974784336448200395e-02 +3.629999999999999893e+00 -1.795632147629175890e-01 +3.640000000000000124e+00 -4.250673480439820517e-01 +3.649999999999999911e+00 -6.621108904832985198e-01 +3.660000000000000142e+00 -8.867292828109100133e-01 +3.669999999999999929e+00 -1.095753348159505869e+00 +3.680000000000000160e+00 -1.286872418015262642e+00 +3.689999999999999947e+00 -1.458652804043061302e+00 +3.700000000000000178e+00 -1.610512610469237549e+00 +3.709999999999999964e+00 -1.742656281170848809e+00 +3.720000000000000195e+00 -1.855974435385865595e+00 +3.729999999999999982e+00 -1.951916340649564763e+00 +3.740000000000000213e+00 -2.032343698020552925e+00 +3.750000000000000000e+00 -2.099375198136145038e+00 +3.760000000000000231e+00 -2.155231505297054984e+00 +3.770000000000000018e+00 -2.202089934246194591e+00 +3.780000000000000249e+00 -2.241957130067799842e+00 +3.790000000000000036e+00 -2.276566609310844314e+00 +3.800000000000000266e+00 -2.307306163977555613e+00 +3.810000000000000053e+00 -2.335177988030718410e+00 +3.820000000000000284e+00 -2.360792094693895837e+00 +3.830000000000000071e+00 -2.384391297443621216e+00 +3.839999999999999858e+00 -2.405903874038993973e+00 +3.850000000000000089e+00 -2.425018158522303402e+00 +3.859999999999999876e+00 -2.441271831230908074e+00 +3.870000000000000107e+00 -2.454147697444215570e+00 +3.879999999999999893e+00 -2.463167326855046024e+00 +3.890000000000000124e+00 -2.467974099411493150e+00 +3.899999999999999911e+00 -2.468397962176938520e+00 +3.910000000000000142e+00 -2.464495503841584778e+00 +3.919999999999999929e+00 -2.456560720991066038e+00 +3.930000000000000160e+00 -2.445103975638421634e+00 +3.939999999999999947e+00 -2.430798995378973260e+00 +3.950000000000000178e+00 -2.414400198177852452e+00 +3.959999999999999964e+00 -2.396634978207504929e+00 +3.970000000000000195e+00 -2.378077714219275940e+00 +3.979999999999999982e+00 -2.359014015819266952e+00 +3.990000000000000213e+00 -2.339304983885091893e+00 +4.000000000000000000e+00 -2.318261935024110265e+00 +4.009999999999999787e+00 -2.294542066005194503e+00 +4.020000000000000462e+00 -2.266074889988131336e+00 +4.030000000000000249e+00 -2.230027979517848369e+00 +4.040000000000000036e+00 -2.182818658582199145e+00 +4.049999999999999822e+00 -2.120175891350761788e+00 +4.060000000000000497e+00 -2.037253844304613537e+00 +4.070000000000000284e+00 -1.928795602298929879e+00 +4.080000000000000071e+00 -1.789342465463133580e+00 +4.089999999999999858e+00 -1.613481317916862556e+00 +4.099999999999999645e+00 -1.396119913659204625e+00 +4.110000000000000320e+00 -1.132777729734493422e+00 +4.120000000000000107e+00 -8.198784300774943912e-01 +4.129999999999999893e+00 -4.550290734067396481e-01 +4.139999999999999680e+00 -3.727105663202333330e-02 +4.150000000000000355e+00 4.327115582791497550e-01 +4.160000000000000142e+00 9.524392444155127535e-01 +4.169999999999999929e+00 1.517550477298456713e+00 +4.179999999999999716e+00 2.121789408469794136e+00 +4.190000000000000391e+00 2.757072384989728953e+00 +4.200000000000000178e+00 3.413634319612140811e+00 +4.209999999999999964e+00 4.080252128434587178e+00 +4.219999999999999751e+00 4.744538705111954080e+00 +4.230000000000000426e+00 5.393297386842812458e+00 +4.240000000000000213e+00 6.012923770673165969e+00 +4.250000000000000000e+00 6.589839222492816617e+00 +4.259999999999999787e+00 7.110938619746238309e+00 +4.270000000000000462e+00 7.564033880418673306e+00 +4.280000000000000249e+00 7.938274711799718553e+00 +4.290000000000000036e+00 8.224528774756366900e+00 +4.299999999999999822e+00 8.415705069382624970e+00 +4.310000000000000497e+00 8.507006729090706543e+00 +4.320000000000000284e+00 8.496102446311370571e+00 +4.330000000000000071e+00 8.383209294746055917e+00 +4.339999999999999858e+00 8.171083586240859731e+00 +4.350000000000000533e+00 7.864920414698373996e+00 +4.360000000000000320e+00 7.472166499112952387e+00 +4.370000000000000107e+00 7.002254651414992814e+00 +4.379999999999999893e+00 6.466271485371385630e+00 +4.389999999999999680e+00 5.876572696795939521e+00 +4.400000000000000355e+00 5.246362260377847697e+00 +4.410000000000000142e+00 4.589253119151178062e+00 +4.419999999999999929e+00 3.918827344451218053e+00 +4.429999999999999716e+00 3.248213314999930379e+00 +4.440000000000000391e+00 2.589696243097176609e+00 +4.450000000000000178e+00 1.954376442103404887e+00 +4.459999999999999964e+00 1.351887194643792478e+00 +4.469999999999999751e+00 7.901810845811182427e-01 +4.480000000000000426e+00 2.753903563564321089e-01 +4.490000000000000213e+00 -1.882365682196132650e-01 +4.500000000000000000e+00 -5.983236829175427873e-01 +4.509999999999999787e+00 -9.542855653327210197e-01 +4.520000000000000462e+00 -1.257182438646581746e+00 +4.530000000000000249e+00 -1.509521828428479706e+00 +4.540000000000000036e+00 -1.715018334997996829e+00 +4.549999999999999822e+00 -1.878324234336846033e+00 +4.560000000000000497e+00 -2.004744158970575896e+00 +4.570000000000000284e+00 -2.099947001877261687e+00 +4.580000000000000071e+00 -2.169687471447678373e+00 +4.589999999999999858e+00 -2.219548473204722150e+00 +4.600000000000000533e+00 -2.254713797937259123e+00 +4.610000000000000320e+00 -2.279778567590389660e+00 +4.620000000000000107e+00 -2.298602652110638189e+00 +4.629999999999999893e+00 -2.314209948575111753e+00 +4.639999999999999680e+00 -2.328734130962619719e+00 +4.650000000000000355e+00 -2.343409347380340790e+00 +4.660000000000000142e+00 -2.358602458163866711e+00 +4.669999999999999929e+00 -2.373881849429886781e+00 +4.679999999999999716e+00 -2.388116675393953781e+00 +4.690000000000000391e+00 -2.399599607151332581e+00 +4.700000000000000178e+00 -2.406185798840540624e+00 +4.709999999999999964e+00 -2.405440803985326781e+00 +4.719999999999999751e+00 -2.394790544666756560e+00 +4.730000000000000426e+00 -2.371667096812762221e+00 +4.740000000000000213e+00 -2.333644937349814263e+00 +4.750000000000000000e+00 -2.278563327750606327e+00 +4.759999999999999787e+00 -2.204631606940701261e+00 +4.770000000000000462e+00 -2.110515261784385199e+00 +4.780000000000000249e+00 -1.995401671038869340e+00 +4.790000000000000036e+00 -1.859045326397128939e+00 +4.799999999999999822e+00 -1.701793084373567133e+00 +4.810000000000000497e+00 -1.524590573792457660e+00 +4.820000000000000284e+00 -1.328971270324355913e+00 +4.830000000000000071e+00 -1.117029962038249780e+00 +4.839999999999999858e+00 -8.913823917415232279e-01 +4.850000000000000533e+00 -6.551128067379011766e-01 +4.860000000000000320e+00 -4.117110150416259939e-01 +4.870000000000000107e+00 -1.650003822931614406e-01 +4.879999999999999893e+00 8.094195240083711107e-02 +4.889999999999999680e+00 3.218714738334297332e-01 +4.900000000000000355e+00 5.534681695288097281e-01 +4.910000000000000142e+00 7.714327025170671925e-01 +4.919999999999999929e+00 9.715855375949133954e-01 +4.929999999999999716e+00 1.149967438263705732e+00 +4.940000000000000391e+00 1.302939439929809096e+00 +4.950000000000000178e+00 1.427280055080384136e+00 +4.959999999999999964e+00 1.520277117304197345e+00 +4.969999999999999751e+00 1.579811367547916623e+00 +4.980000000000000426e+00 1.604428673495603253e+00 +4.990000000000000213e+00 1.593397694332660208e+00 +5.000000000000000000e+00 1.546749894673133285e+00 +5.009999999999999787e+00 1.465299099177749920e+00 +5.020000000000000462e+00 1.350638276360825341e+00 +5.030000000000000249e+00 1.205111944135356605e+00 +5.040000000000000036e+00 1.031763482508301522e+00 +5.049999999999999822e+00 8.342576862772037583e-01 +5.060000000000000497e+00 6.167800437334171049e-01 +5.070000000000000284e+00 3.839154252251328336e-01 +5.080000000000000071e+00 1.405100382536546011e-01 +5.089999999999999858e+00 -1.084784206032316650e-01 +5.100000000000000533e+00 -3.581365860755488795e-01 +5.110000000000000320e+00 -6.037507270353323907e-01 +5.120000000000000107e+00 -8.409546828361738058e-01 +5.129999999999999893e+00 -1.065863568709761067e+00 +5.139999999999999680e+00 -1.275186739186987994e+00 +5.150000000000000355e+00 -1.466314225172048014e+00 +5.160000000000000142e+00 -1.637371942084971499e+00 +5.169999999999999929e+00 -1.787242362776021665e+00 +5.179999999999999716e+00 -1.915548997940534015e+00 +5.190000000000000391e+00 -2.022604848377505427e+00 +5.200000000000000178e+00 -2.109326893129551461e+00 +5.209999999999999964e+00 -2.177120551517408131e+00 +5.219999999999999751e+00 -2.227739798099762414e+00 +5.230000000000000426e+00 -2.263130113249313791e+00 +5.240000000000000213e+00 -2.285262623120607017e+00 +5.250000000000000000e+00 -2.295968541269429508e+00 +5.259999999999999787e+00 -2.296783310544632251e+00 +5.270000000000000462e+00 -2.288809623346272470e+00 +5.280000000000000249e+00 -2.272607763843685014e+00 +5.290000000000000036e+00 -2.248120489235049924e+00 +5.299999999999999822e+00 -2.214637999309209349e+00 +5.310000000000000497e+00 -2.170806511874917799e+00 +5.320000000000000284e+00 -2.114681666585254582e+00 +5.330000000000000071e+00 -2.043825539851275241e+00 +5.339999999999999858e+00 -1.955443599199754523e+00 +5.350000000000000533e+00 -1.846555591509498440e+00 +5.360000000000000320e+00 -1.714192278062873998e+00 +5.370000000000000107e+00 -1.555608221791627166e+00 +5.379999999999999893e+00 -1.368499602378274504e+00 +5.389999999999999680e+00 -1.151215362997674019e+00 +5.400000000000000355e+00 -9.029499295118432745e-01 +5.410000000000000142e+00 -6.239063074998765224e-01 +5.419999999999999929e+00 -3.154195391129448467e-01 +5.429999999999999716e+00 1.996775904495872930e-02 +5.440000000000000391e+00 3.784838352398094408e-01 +5.450000000000000178e+00 7.551636845173823609e-01 +5.459999999999999964e+00 1.143943004786056150e+00 +5.469999999999999751e+00 1.537807930535931789e+00 +5.480000000000000426e+00 1.928995379243879205e+00 +5.490000000000000213e+00 2.309236189837731601e+00 +5.500000000000000000e+00 2.670030933216093416e+00 +5.509999999999999787e+00 3.002946457818648440e+00 +5.520000000000000462e+00 3.299920000076348892e+00 +5.530000000000000249e+00 3.553557111272714231e+00 +5.540000000000000036e+00 3.757409765353004083e+00 +5.549999999999999822e+00 3.906221816102602329e+00 +5.560000000000000497e+00 3.996130429372978465e+00 +5.570000000000000284e+00 4.024814153916081771e+00 +5.580000000000000071e+00 3.991580808729518370e+00 +5.589999999999999858e+00 3.897391225615753907e+00 +5.600000000000000533e+00 3.744817944131971554e+00 +5.610000000000000320e+00 3.537941052793763586e+00 +5.620000000000000107e+00 3.282186343884523350e+00 +5.629999999999999893e+00 2.984113644995438630e+00 +5.639999999999999680e+00 2.651165469311829170e+00 +5.650000000000000355e+00 2.291387872457139263e+00 +5.660000000000000142e+00 1.913136529456362034e+00 +5.669999999999999929e+00 1.524781498062282248e+00 +5.679999999999999716e+00 1.134423897957517191e+00 +5.690000000000000391e+00 7.496368302331266609e-01 +5.700000000000000178e+00 3.772413450481871822e-01 +5.709999999999999964e+00 2.312622704737076970e-02 +5.719999999999999751e+00 -3.078820751629140484e-01 +5.730000000000000426e+00 -6.120957599212734079e-01 +5.740000000000000213e+00 -8.869874362090741649e-01 +5.750000000000000000e+00 -1.131159343246060489e+00 +5.759999999999999787e+00 -1.344264632454691855e+00 +5.770000000000000462e+00 -1.526887597005299302e+00 +5.780000000000000249e+00 -1.680391571314878929e+00 +5.790000000000000036e+00 -1.806744528147502971e+00 +5.799999999999999822e+00 -1.908333115441290806e+00 +5.810000000000000497e+00 -1.987775974039600824e+00 +5.820000000000000284e+00 -2.047746671693927212e+00 +5.830000000000000071e+00 -2.090815522647573754e+00 +5.839999999999999858e+00 -2.119318011392275825e+00 +5.850000000000000533e+00 -2.135255605545564261e+00 +5.860000000000000320e+00 -2.140232547811554475e+00 +5.870000000000000107e+00 -2.135429894741839973e+00 +5.879999999999999893e+00 -2.121615759084142461e+00 +5.889999999999999680e+00 -2.099188547812276262e+00 +5.900000000000000355e+00 -2.068248092895383028e+00 +5.910000000000000142e+00 -2.028688051354561761e+00 +5.919999999999999929e+00 -1.980301885610450618e+00 +5.929999999999999716e+00 -1.922894176202663230e+00 +5.940000000000000391e+00 -1.856388986946164943e+00 +5.950000000000000178e+00 -1.780927485701038204e+00 +5.959999999999999964e+00 -1.696947979558449449e+00 +5.969999999999999751e+00 -1.605242880998435817e+00 +5.980000000000000426e+00 -1.506988787979611111e+00 +5.990000000000000213e+00 -1.403747725432764604e+00 +6.000000000000000000e+00 -1.297439537615398653e+00 +6.009999999999999787e+00 -1.190287317024549818e+00 +6.020000000000000462e+00 -1.084739487839925465e+00 +6.030000000000000249e+00 -9.833736241478286955e-01 +6.040000000000000036e+00 -8.887881880147580071e-01 +6.049999999999999822e+00 -8.034890561171686985e-01 +6.060000000000000497e+00 -7.297779297866183734e-01 +6.070000000000000284e+00 -6.696494850652444653e-01 +6.080000000000000071e+00 -6.247034392564083660e-01 +6.089999999999999858e+00 -5.960766388821976403e-01 +6.100000000000000533e+00 -5.843988857195107078e-01 +6.110000000000000320e+00 -5.897746069983552664e-01 +6.120000000000000107e+00 -6.117907506771507187e-01 +6.129999999999999893e+00 -6.495495612943619212e-01 +6.140000000000000568e+00 -7.017232798728536558e-01 +6.150000000000000355e+00 -7.666264184706033102e-01 +6.160000000000000142e+00 -8.423001773992692121e-01 +6.169999999999999929e+00 -9.266028716962870782e-01 +6.179999999999999716e+00 -1.017299959126032771e+00 +6.190000000000000391e+00 -1.112147433012024678e+00 +6.200000000000000178e+00 -1.208962948787912994e+00 +6.209999999999999964e+00 -1.305680054132836609e+00 +6.219999999999999751e+00 -1.400382223742105303e+00 +6.230000000000000426e+00 -1.491314973979253944e+00 +6.240000000000000213e+00 -1.576876046043552471e+00 +6.250000000000000000e+00 -1.655585384890355005e+00 +6.259999999999999787e+00 -1.726038287950830030e+00 +6.270000000000000462e+00 -1.786846540037484221e+00 +6.280000000000000249e+00 -1.836573487507611846e+00 +6.290000000000000036e+00 -1.873669752595300553e+00 +6.299999999999999822e+00 -1.896416588067978637e+00 +6.310000000000000497e+00 -1.902883690777198655e+00 +6.320000000000000284e+00 -1.890907627942572500e+00 +6.330000000000000071e+00 -1.858095910353955160e+00 +6.339999999999999858e+00 -1.801860229613423181e+00 +6.350000000000000533e+00 -1.719480545826698181e+00 +6.360000000000000320e+00 -1.608199673136353480e+00 +6.370000000000000107e+00 -1.465345884057992043e+00 +6.379999999999999893e+00 -1.288478969134587260e+00 +6.390000000000000568e+00 -1.075553276221871357e+00 +6.400000000000000355e+00 -8.250896370824002402e-01 +6.410000000000000142e+00 -5.363468767946326654e-01 +6.419999999999999929e+00 -2.094828815138639611e-01 +6.429999999999999716e+00 1.543049666448737534e-01 +6.440000000000000391e+00 5.526697622099324692e-01 +6.450000000000000178e+00 9.820442340030380857e-01 +6.459999999999999964e+00 1.437616324464979778e+00 +6.469999999999999751e+00 1.913356411079277786e+00 +6.480000000000000426e+00 2.402098996131483588e+00 +6.490000000000000213e+00 2.895679039792507403e+00 +6.500000000000000000e+00 3.385120341247561893e+00 +6.509999999999999787e+00 3.860870630957542016e+00 +6.520000000000000462e+00 4.313075473232189871e+00 +6.530000000000000249e+00 4.731880834335750130e+00 +6.540000000000000036e+00 5.107752374671572504e+00 +6.549999999999999822e+00 5.431798279409681740e+00 +6.560000000000000497e+00 5.696081827243631324e+00 +6.570000000000000284e+00 5.893909956076502255e+00 +6.580000000000000071e+00 6.020084826153433433e+00 +6.589999999999999858e+00 6.071106778030808115e+00 +6.600000000000000533e+00 6.045319072295199270e+00 +6.610000000000000320e+00 5.942987285712726830e+00 +6.620000000000000107e+00 5.766309103106904921e+00 +6.629999999999999893e+00 5.519353343765164510e+00 +6.640000000000000568e+00 5.207930240573626079e+00 +6.650000000000000355e+00 4.839398089643776046e+00 +6.660000000000000142e+00 4.422414251978609379e+00 +6.669999999999999929e+00 3.966640972897152118e+00 +6.679999999999999716e+00 3.482418465428927412e+00 +6.690000000000000391e+00 2.980419082964979260e+00 +6.700000000000000178e+00 2.471297117813518796e+00 +6.709999999999999964e+00 1.965348774490056183e+00 +6.719999999999999751e+00 1.472196184427136068e+00 +6.730000000000000426e+00 1.000507993002879514e+00 +6.740000000000000213e+00 5.577671344581142110e-01 +6.750000000000000000e+00 1.500940187032165918e-01 +6.759999999999999787e+00 -2.178693870332518989e-01 +6.770000000000000462e+00 -5.430120460399772142e-01 +6.780000000000000249e+00 -8.237433753179611573e-01 +6.790000000000000036e+00 -1.059923173340706626e+00 +6.799999999999999822e+00 -1.252737981774890041e+00 +6.810000000000000497e+00 -1.404532197855025810e+00 +6.820000000000000284e+00 -1.518604060604611172e+00 +6.830000000000000071e+00 -1.598977879134223734e+00 +6.839999999999999858e+00 -1.650164505254807068e+00 +6.850000000000000533e+00 -1.676922059245816721e+00 +6.860000000000000320e+00 -1.684028313897813600e+00 +6.870000000000000107e+00 -1.676074976894605939e+00 +6.879999999999999893e+00 -1.657292462837164582e+00 +6.890000000000000568e+00 -1.631411715235615123e+00 +6.900000000000000355e+00 -1.601567344990276975e+00 +6.910000000000000142e+00 -1.570243925673639351e+00 +6.919999999999999929e+00 -1.539264861462544154e+00 +6.929999999999999716e+00 -1.509820951353957774e+00 +6.940000000000000391e+00 -1.482533733154191014e+00 +6.950000000000000178e+00 -1.457547005519657546e+00 +6.959999999999999964e+00 -1.434638676717695294e+00 +6.969999999999999751e+00 -1.413344329360360696e+00 +6.980000000000000426e+00 -1.393083647294976135e+00 +6.990000000000000213e+00 -1.373281121085700773e+00 +7.000000000000000000e+00 -1.353473200779103935e+00 +7.009999999999999787e+00 -1.333395241757743488e+00 +7.020000000000000462e+00 -1.313043112265811274e+00 +7.030000000000000249e+00 -1.292706103380936389e+00 +7.040000000000000036e+00 -1.272969696252737926e+00 +7.049999999999999822e+00 -1.254688684754931227e+00 +7.060000000000000497e+00 -1.238933013100713687e+00 +7.070000000000000284e+00 -1.226910363783219271e+00 +7.080000000000000071e+00 -1.219870930878796500e+00 +7.089999999999999858e+00 -1.219000864578973831e+00 +7.100000000000000533e+00 -1.225311523513612055e+00 +7.110000000000000320e+00 -1.239531894437191362e+00 +7.120000000000000107e+00 -1.262011331258753533e+00 +7.129999999999999893e+00 -1.292639148438140984e+00 +7.140000000000000568e+00 -1.330786620997713499e+00 +7.150000000000000355e+00 -1.375275657642876403e+00 +7.160000000000000142e+00 -1.424376902829973313e+00 +7.169999999999999929e+00 -1.475838376626140702e+00 +7.179999999999999716e+00 -1.526944071682049264e+00 +7.190000000000000391e+00 -1.574600288273609872e+00 +7.200000000000000178e+00 -1.615445989525509107e+00 +7.209999999999999964e+00 -1.645982177893146714e+00 +7.219999999999999751e+00 -1.662714294919013680e+00 +7.230000000000000426e+00 -1.662300976124319041e+00 +7.240000000000000213e+00 -1.641702179284914243e+00 +7.250000000000000000e+00 -1.598319754714784713e+00 +7.259999999999999787e+00 -1.530123928051497328e+00 +7.270000000000000462e+00 -1.435759888359934067e+00 +7.280000000000000249e+00 -1.314629669913442989e+00 +7.290000000000000036e+00 -1.166945724559848241e+00 +7.299999999999999822e+00 -9.937539337492441449e-01 +7.310000000000000497e+00 -7.969252307252615575e-01 +7.320000000000000284e+00 -5.791164190253568211e-01 +7.330000000000000071e+00 -3.437021117658813352e-01 +7.339999999999999858e+00 -9.468091298360577224e-02 +7.350000000000000533e+00 1.634400361129585422e-01 +7.360000000000000320e+00 4.257772574107626107e-01 +7.370000000000000107e+00 6.872144902382962828e-01 +7.379999999999999893e+00 9.425519759434378697e-01 +7.390000000000000568e+00 1.186655885350607065e+00 +7.400000000000000355e+00 1.414602587490935592e+00 +7.410000000000000142e+00 1.621812962103184041e+00 +7.419999999999999929e+00 1.804172640198175914e+00 +7.429999999999999716e+00 1.958134868949936269e+00 +7.440000000000000391e+00 2.080803588130221371e+00 +7.450000000000000178e+00 2.169995223597271927e+00 +7.459999999999999964e+00 2.224278599962813185e+00 +7.469999999999999751e+00 2.242993205836154136e+00 +7.480000000000000426e+00 2.226246774940737083e+00 +7.490000000000000213e+00 2.174893748145865668e+00 +7.500000000000000000e+00 2.090496638522142181e+00 +7.509999999999999787e+00 1.975272627881748289e+00 +7.520000000000000462e+00 1.832027882939940566e+00 +7.530000000000000249e+00 1.664082105272140621e+00 +7.540000000000000036e+00 1.475185742084372142e+00 +7.549999999999999822e+00 1.269432110306737416e+00 +7.560000000000000497e+00 1.051166453641231957e+00 +7.570000000000000284e+00 8.248936907168913368e-01 +7.580000000000000071e+00 5.951863507028506417e-01 +7.589999999999999858e+00 3.665939553275682217e-01 +7.600000000000000533e+00 1.435549127196661112e-01 +7.610000000000000320e+00 -6.968814820477957361e-02 +7.620000000000000107e+00 -2.691687481644495228e-01 +7.629999999999999893e+00 -4.512717911535291115e-01 +7.640000000000000568e+00 -6.128027802496424092e-01 +7.650000000000000355e+00 -7.510500570770834994e-01 +7.660000000000000142e+00 -8.638390100922150872e-01 +7.669999999999999929e+00 -9.495771037353952782e-01 +7.679999999999999716e+00 -1.007288513636467098e+00 +7.690000000000000391e+00 -1.036637134561268381e+00 +7.700000000000000178e+00 -1.037936776856077215e+00 +7.709999999999999964e+00 -1.012147498415974178e+00 +7.719999999999999751e+00 -9.608572413498773779e-01 +7.730000000000000426e+00 -8.862482573158725341e-01 +7.740000000000000213e+00 -7.910482073719760088e-01 +7.750000000000000000e+00 -6.784662982496749706e-01 +7.759999999999999787e+00 -5.521153476204668786e-01 +7.770000000000000462e+00 -4.159212309577832167e-01 +7.780000000000000249e+00 -2.740217226114579629e-01 +7.790000000000000036e+00 -1.306572719701193375e-01 +7.799999999999999822e+00 9.943279996656012240e-03 +7.810000000000000497e+00 1.436786683062468428e-01 +7.820000000000000284e+00 2.666892307256941153e-01 +7.830000000000000071e+00 3.754652612817787616e-01 +7.839999999999999858e+00 4.669460064152251566e-01 +7.850000000000000533e+00 5.386058297577793752e-01 +7.860000000000000320e+00 5.885244404508147564e-01 +7.870000000000000107e+00 6.154385960296768765e-01 +7.879999999999999893e+00 6.187733341305394763e-01 +7.890000000000000568e+00 5.986515302293442531e-01 +7.900000000000000355e+00 5.558813879516936174e-01 +7.910000000000000142e+00 4.919223067193795318e-01 +7.919999999999999929e+00 4.088303990687373046e-01 +7.930000000000000604e+00 3.091857074545247830e-01 +7.940000000000000391e+00 1.960038606259438265e-01 +7.950000000000000178e+00 7.263548000233147062e-02 +7.959999999999999964e+00 -5.734292963891344380e-02 +7.969999999999999751e+00 -1.902426122891599514e-01 +7.980000000000000426e+00 -3.223766397507142889e-01 +7.990000000000000213e+00 -4.501704552537055259e-01 +8.000000000000000000e+00 -5.702651613776515971e-01 +8.009999999999999787e+00 -6.796102459517393557e-01 +8.019999999999999574e+00 -7.755429812714824678e-01 +8.029999999999999361e+00 -8.558523711518144506e-01 +8.040000000000000924e+00 -9.188262225906376202e-01 +8.050000000000000711e+00 -9.632806474641990579e-01 +8.060000000000000497e+00 -9.885720179197283741e-01 +8.070000000000000284e+00 -9.945920721331014125e-01 +8.080000000000000071e+00 -9.817474639005905335e-01 +8.089999999999999858e+00 -9.509255447021596197e-01 +8.099999999999999645e+00 -9.034485417885692593e-01 +8.109999999999999432e+00 -8.410185395406203357e-01 +8.120000000000000995e+00 -7.656557808810611210e-01 +8.130000000000000782e+00 -6.796327858308512937e-01 +8.140000000000000568e+00 -5.854066476134366370e-01 +8.150000000000000355e+00 -4.855516314834011360e-01 +8.160000000000000142e+00 -3.826938909871226979e-01 +8.169999999999999929e+00 -2.794497571241983391e-01 +8.179999999999999716e+00 -1.783686756926325390e-01 +8.189999999999999503e+00 -8.188149428406657493e-02 +8.199999999999999289e+00 7.745542023590154361e-03 +8.210000000000000853e+00 8.845101709666176870e-02 +8.220000000000000639e+00 1.584129444568558309e-01 +8.230000000000000426e+00 2.160780373595434234e-01 +8.240000000000000213e+00 2.601860045765469476e-01 +8.250000000000000000e+00 2.897892111848809904e-01 +8.259999999999999787e+00 3.042679579951356184e-01 +8.269999999999999574e+00 3.033414940563497475e-01 +8.279999999999999361e+00 2.870747033178833174e-01 +8.290000000000000924e+00 2.558802211848499875e-01 +8.300000000000000711e+00 2.105155626943906733e-01 +8.310000000000000497e+00 1.520747041068695182e-01 +8.320000000000000284e+00 8.197347431317415778e-02 +8.330000000000000071e+00 1.928098241963735991e-03 +8.339999999999999858e+00 -8.607369708964179855e-02 +8.349999999999999645e+00 -1.798094467067919699e-01 +8.359999999999999432e+00 -2.768667714973286342e-01 +8.370000000000000995e+00 -3.746961292346064898e-01 +8.380000000000000782e+00 -4.706709742545257535e-01 +8.390000000000000568e+00 -5.621543774851174291e-01 +8.400000000000000355e+00 -6.465707100739983559e-01 +8.410000000000000142e+00 -7.214805548536037394e-01 +8.419999999999999929e+00 -7.846566099250631421e-01 +8.429999999999999716e+00 -8.341580169393210120e-01 +8.439999999999999503e+00 -8.684003101686138537e-01 +8.449999999999999289e+00 -8.862180641273209591e-01 +8.460000000000000853e+00 -8.869173346535063063e-01 +8.470000000000000639e+00 -8.703151514558598034e-01 +8.480000000000000426e+00 -8.367636318379354510e-01 +8.490000000000000213e+00 -7.871567400552130778e-01 +8.500000000000000000e+00 -7.229183007156764207e-01 +8.509999999999999787e+00 -6.459705662054270325e-01 +8.519999999999999574e+00 -5.586834088727894443e-01 +8.529999999999999361e+00 -4.638050247000668480e-01 +8.540000000000000924e+00 -3.643758586656976606e-01 +8.550000000000000711e+00 -2.636282532717041382e-01 +8.560000000000000497e+00 -1.648750412463882153e-01 +8.570000000000000284e+00 -7.139091392041516104e-02 +8.580000000000000071e+00 1.370913487342026275e-02 +8.589999999999999858e+00 8.758969038177945310e-02 +8.599999999999999645e+00 1.478084146145187405e-01 +8.609999999999999432e+00 1.924185400392700029e-01 +8.620000000000000995e+00 2.200560297428477419e-01 +8.630000000000000782e+00 2.300075583774017496e-01 +8.640000000000000568e+00 2.222561281889804952e-01 +8.650000000000000355e+00 1.975019448253300391e-01 +8.660000000000000142e+00 1.571571054199120965e-01 +8.669999999999999929e+00 1.033136578600793304e-01 +8.679999999999999716e+00 3.868563244033873527e-02 +8.689999999999999503e+00 -3.347331936932309432e-02 +8.700000000000001066e+00 -1.094740640028040585e-01 +8.710000000000000853e+00 -1.853144027919754466e-01 +8.720000000000000639e+00 -2.568155154275031937e-01 +8.730000000000000426e+00 -3.197675923270959508e-01 +8.740000000000000213e+00 -3.700794223007105588e-01 +8.750000000000000000e+00 -4.039265121554412863e-01 +8.759999999999999787e+00 -4.178923386404143070e-01 +8.769999999999999574e+00 -4.090975683574663568e-01 +8.779999999999999361e+00 -3.753125169272684691e-01 +8.790000000000000924e+00 -3.150487354364693293e-01 +8.800000000000000711e+00 -2.276263833221578714e-01 +8.810000000000000497e+00 -1.132149397214840814e-01 +8.820000000000000284e+00 2.715421713629178474e-02 +8.830000000000000071e+00 1.916038104436596778e-01 +8.839999999999999858e+00 3.774546664439292210e-01 +8.849999999999999645e+00 5.812961471911091138e-01 +8.859999999999999432e+00 7.990805261131408432e-01 +8.870000000000000995e+00 1.026238005885577342e+00 +8.880000000000000782e+00 1.257808400245666203e+00 +8.890000000000000568e+00 1.488584979731373048e+00 +8.900000000000000355e+00 1.713265631050689963e+00 +8.910000000000000142e+00 1.926606308885383090e+00 +8.919999999999999929e+00 2.123571768302186413e+00 +8.929999999999999716e+00 2.299478749661132415e+00 +8.939999999999999503e+00 2.450127133807353808e+00 +8.950000000000001066e+00 2.571915075790836003e+00 +8.960000000000000853e+00 2.661934738271681589e+00 +8.970000000000000639e+00 2.718045955622782284e+00 +8.980000000000000426e+00 2.738925938756399781e+00 +8.990000000000000213e+00 2.724093949972821616e+00 +9.000000000000000000e+00 2.673910707733775372e+00 +9.009999999999999787e+00 2.589553095272193239e+00 +9.019999999999999574e+00 2.472965518326461165e+00 +9.029999999999999361e+00 2.326789962638526887e+00 +9.040000000000000924e+00 2.154277421030085460e+00 +9.050000000000000711e+00 1.959183876389372747e+00 +9.060000000000000497e+00 1.745654428230015931e+00 +9.070000000000000284e+00 1.518099428160327724e+00 +9.080000000000000071e+00 1.281066639223604753e+00 +9.089999999999999858e+00 1.039113455173978462e+00 +9.099999999999999645e+00 7.966831115927972551e-01 +9.109999999999999432e+00 5.579885980126413347e-01 +9.120000000000000995e+00 3.269076486683880067e-01 +9.130000000000000782e+00 1.068917616073585403e-01 +9.140000000000000568e+00 -9.910831357390276208e-02 +9.150000000000000355e+00 -2.886987535094220902e-01 +9.160000000000000142e+00 -4.600792597954011520e-01 +9.169999999999999929e+00 -6.120594832255803475e-01 +9.179999999999999716e+00 -7.440553354239295425e-01 +9.189999999999999503e+00 -8.560658956476758785e-01 +9.200000000000001066e+00 -9.486322356399835565e-01 +9.210000000000000853e+00 -1.022780051279601476e+00 +9.220000000000000639e+00 -1.079948489258053979e+00 +9.230000000000000426e+00 -1.121907974756578996e+00 +9.240000000000000213e+00 -1.150670168985065356e+00 +9.250000000000000000e+00 -1.168393403054730717e+00 +9.259999999999999787e+00 -1.177287039627801457e+00 +9.269999999999999574e+00 -1.179518202169210328e+00 +9.279999999999999361e+00 -1.177124183122659762e+00 +9.290000000000000924e+00 -1.171933600464461378e+00 +9.300000000000000711e+00 -1.165499024221573254e+00 +9.310000000000000497e+00 -1.159043351798790589e+00 +9.320000000000000284e+00 -1.153421687987910893e+00 +9.330000000000000071e+00 -1.149099900109214589e+00 +9.339999999999999858e+00 -1.146150391255779555e+00 +9.349999999999999645e+00 -1.144264987419359780e+00 +9.359999999999999432e+00 -1.142784190899682084e+00 +9.370000000000000995e+00 -1.140741436683755383e+00 +9.380000000000000782e+00 -1.136920423678609460e+00 +9.390000000000000568e+00 -1.129923100510958234e+00 +9.400000000000000355e+00 -1.118245485352095336e+00 +9.410000000000000142e+00 -1.100358206886917767e+00 +9.419999999999999929e+00 -1.074788481109447247e+00 +9.429999999999999716e+00 -1.040200193483521662e+00 +9.439999999999999503e+00 -9.954688405466904921e-01 +9.450000000000001066e+00 -9.397482964542562822e-01 +9.460000000000000853e+00 -8.725267002906532676e-01 +9.470000000000000639e+00 -7.936691963419633122e-01 +9.480000000000000426e+00 -7.034457846279382753e-01 +9.490000000000000213e+00 -6.025431317986154056e-01 +9.500000000000000000e+00 -4.920598291036596406e-01 +9.509999999999999787e+00 -3.734852387710164701e-01 +9.519999999999999574e+00 -2.486627162501219013e-01 +9.529999999999999361e+00 -1.197386072273857738e-01 +9.540000000000000924e+00 1.090102953614709158e-02 +9.550000000000000711e+00 1.407035517276840619e-01 +9.560000000000000497e+00 2.670299226890020527e-01 +9.570000000000000284e+00 3.872389108882260400e-01 +9.580000000000000071e+00 4.987721169170646895e-01 +9.589999999999999858e+00 5.992366393959093207e-01 +9.599999999999999645e+00 6.864823113678847344e-01 +9.609999999999999432e+00 7.586706784043253382e-01 +9.620000000000000995e+00 8.143332371949166815e-01 +9.630000000000000782e+00 8.524168930081004181e-01 +9.640000000000000568e+00 8.723151066885607152e-01 +9.650000000000000355e+00 8.738837647885885351e-01 +9.660000000000000142e+00 8.574413963764142554e-01 +9.669999999999999929e+00 8.237539528460933180e-01 +9.679999999999999716e+00 7.740049389995750095e-01 +9.689999999999999503e+00 7.097522126259119268e-01 +9.700000000000001066e+00 6.328732360258514378e-01 +9.710000000000000853e+00 5.455009498606139262e-01 +9.720000000000000639e+00 4.499527345471072137e-01 +9.730000000000000426e+00 3.486551185450010304e-01 +9.740000000000000213e+00 2.440669820043076810e-01 +9.750000000000000000e+00 1.386039884265337641e-01 +9.759999999999999787e+00 3.456686043579480089e-02 +9.769999999999999574e+00 -6.592409358311283885e-02 +9.779999999999999361e+00 -1.609860861459878889e-01 +9.790000000000000924e+00 -2.490208334928613598e-01 +9.800000000000000711e+00 -3.287500681872084773e-01 +9.810000000000000497e+00 -3.992386810120059359e-01 +9.820000000000000284e+00 -4.599050554098962351e-01 +9.830000000000000071e+00 -5.105186221652002754e-01 +9.839999999999999858e+00 -5.511851109774634772e-01 +9.849999999999999645e+00 -5.823203942093575503e-01 +9.859999999999999432e+00 -6.046141934140236707e-01 +9.870000000000000995e+00 -6.189852404059306146e-01 +9.880000000000000782e+00 -6.265297431174760012e-01 +9.890000000000000568e+00 -6.284651961865521663e-01 +9.900000000000000355e+00 -6.260716934654581012e-01 +9.910000000000000142e+00 -6.206329430701528205e-01 +9.919999999999999929e+00 -6.133791560124036701e-01 +9.929999999999999716e+00 -6.054338796654403776e-01 +9.939999999999999503e+00 -5.977666818569644658e-01 +9.950000000000001066e+00 -5.911533663500657676e-01 +9.960000000000000853e+00 -5.861451232726342386e-01 +9.970000000000000639e+00 -5.830476972173592731e-01 +9.980000000000000426e+00 -5.819113007201224264e-01 +9.990000000000000213e+00 -5.825316218641882759e-01 +1.000000000000000000e+01 -5.844618826907095333e-01 +1.000999999999999979e+01 -5.870352677168909628e-01 +1.001999999999999957e+01 -5.893972187081357728e-01 +1.002999999999999936e+01 -5.905471667020981696e-01 +1.004000000000000092e+01 -5.893865766357646585e-01 +1.005000000000000071e+01 -5.847723966064677370e-01 +1.006000000000000050e+01 -5.755738169868864773e-01 +1.007000000000000028e+01 -5.607301140083525981e-01 +1.008000000000000007e+01 -5.393072788461481526e-01 +1.008999999999999986e+01 -5.105511217329163909e-01 +1.009999999999999964e+01 -4.739346103957169376e-01 +1.010999999999999943e+01 -4.291973566558462405e-01 +1.012000000000000099e+01 -3.763754035556607369e-01 +1.013000000000000078e+01 -3.158197836188600949e-01 +1.014000000000000057e+01 -2.482027091246823969e-01 +1.015000000000000036e+01 -1.745107065066486551e-01 +1.016000000000000014e+01 -9.602450485894281629e-02 +1.016999999999999993e+01 -1.428601580647286678e-02 +1.017999999999999972e+01 6.894672101742377324e-02 +1.018999999999999950e+01 1.517552274130994361e-01 +1.020000000000000107e+01 2.321250204878701207e-01 +1.021000000000000085e+01 3.080164661598794318e-01 +1.022000000000000064e+01 3.774393713837534969e-01 +1.023000000000000043e+01 4.385283757159936235e-01 +1.024000000000000021e+01 4.896160582966945785e-01 +1.025000000000000000e+01 5.293006578796776163e-01 +1.025999999999999979e+01 5.565054183588477033e-01 +1.026999999999999957e+01 5.705268217934046371e-01 +1.027999999999999936e+01 5.710693505761599287e-01 +1.029000000000000092e+01 5.582649191695604474e-01 +1.030000000000000071e+01 5.326757166505169394e-01 +1.031000000000000050e+01 4.952798813694302416e-01 +1.032000000000000028e+01 4.474401606505221118e-01 +1.033000000000000007e+01 3.908564601352513823e-01 +1.033999999999999986e+01 3.275039251226631309e-01 +1.034999999999999964e+01 2.595588851924122142e-01 +1.035999999999999943e+01 1.893155993696916117e-01 +1.037000000000000099e+01 1.190972304582484098e-01 +1.038000000000000078e+01 5.116482646414497598e-02 +1.039000000000000057e+01 -1.237172746017341923e-02 +1.040000000000000036e+01 -6.963681603614778337e-02 +1.041000000000000014e+01 -1.190624671700212661e-01 +1.041999999999999993e+01 -1.594485593631804754e-01 +1.042999999999999972e+01 -1.900069628328628635e-01 +1.043999999999999950e+01 -2.103873969336473859e-01 +1.045000000000000107e+01 -2.206835923415885192e-01 +1.046000000000000085e+01 -2.214192399237244480e-01 +1.047000000000000064e+01 -2.135141484775423815e-01 +1.048000000000000043e+01 -1.982319761860892315e-01 +1.049000000000000021e+01 -1.771117998059079657e-01 +1.050000000000000000e+01 -1.518865961889706018e-01 +1.050999999999999979e+01 -1.243923907422613689e-01 +1.051999999999999957e+01 -9.647234018851888471e-02 +1.052999999999999936e+01 -6.988033320244946278e-02 +1.054000000000000092e+01 -4.618879191014675645e-02 +1.055000000000000071e+01 -2.670522994887736257e-02 +1.056000000000000050e+01 -1.240177000877137545e-02 +1.057000000000000028e+01 -3.861258090171268247e-03 +1.058000000000000007e+01 -1.242856681989683125e-03 +1.058999999999999986e+01 -4.269088331907448450e-03 +1.059999999999999964e+01 -1.223527685402199007e-02 +1.060999999999999943e+01 -2.404124453572216782e-02 +1.062000000000000099e+01 -3.824402325768591626e-02 +1.063000000000000078e+01 -5.312928015668053061e-02 +1.064000000000000057e+01 -6.679819792916558141e-02 +1.065000000000000036e+01 -7.726573577353179623e-02 +1.066000000000000014e+01 -8.256557244507152504e-02 +1.066999999999999993e+01 -8.085663222607442080e-02 +1.067999999999999972e+01 -7.052594128243122595e-02 +1.068999999999999950e+01 -5.028266719926501732e-02 +1.070000000000000107e+01 -1.923855681547374102e-02 +1.071000000000000085e+01 2.302940791017418082e-02 +1.072000000000000064e+01 7.643749660443630023e-02 +1.073000000000000043e+01 1.403772241666863818e-01 +1.074000000000000021e+01 2.137220911084908304e-01 +1.075000000000000000e+01 2.948591120213907013e-01 +1.075999999999999979e+01 3.817439614450924834e-01 +1.076999999999999957e+01 4.719774009848230478e-01 +1.077999999999999936e+01 5.628995918911805507e-01 +1.079000000000000092e+01 6.516979976311396694e-01 +1.080000000000000071e+01 7.355238877183116752e-01 +1.081000000000000050e+01 8.116120035460967497e-01 +1.082000000000000028e+01 8.773977633669727272e-01 +1.083000000000000007e+01 9.306264776014442353e-01 +1.083999999999999986e+01 9.694494139346095940e-01 +1.084999999999999964e+01 9.925021767206981815e-01 +1.085999999999999943e+01 9.989617163982813519e-01 +1.087000000000000099e+01 9.885793195521095367e-01 +1.088000000000000078e+01 9.616880970120098571e-01 +1.089000000000000057e+01 9.191847271223339000e-01 +1.090000000000000036e+01 8.624864613424056969e-01 +1.091000000000000014e+01 7.934655963238594900e-01 +1.091999999999999993e+01 7.143646999013635313e-01 +1.092999999999999972e+01 6.276967932153662000e-01 +1.093999999999999950e+01 5.361353913498537738e-01 +1.095000000000000107e+01 4.423997554257314002e-01 +1.096000000000000085e+01 3.491408880031467432e-01 +1.097000000000000064e+01 2.588337029775338305e-01 +1.098000000000000043e+01 1.736804274739063847e-01 +1.099000000000000021e+01 9.552966726675829467e-02 +1.100000000000000000e+01 2.581472272503640766e-02 +1.100999999999999979e+01 -3.448627581937489806e-02 +1.101999999999999957e+01 -8.486698224465299978e-02 +1.102999999999999936e+01 -1.252859651618623282e-01 +1.104000000000000092e+01 -1.561373168405084388e-01 +1.105000000000000071e+01 -1.782008331768112352e-01 +1.106000000000000050e+01 -1.925748650160859221e-01 +1.107000000000000028e+01 -2.005957745054846031e-01 +1.108000000000000007e+01 -2.037485473788168133e-01 +1.108999999999999986e+01 -2.035734830544142782e-01 +1.109999999999999964e+01 -2.015739923116369736e-01 +1.110999999999999943e+01 -1.991303743259330850e-01 +1.112000000000000099e+01 -1.974240323386675655e-01 +1.113000000000000078e+01 -1.973759449928830234e-01 +1.114000000000000057e+01 -1.996023751588939243e-01 +1.115000000000000036e+01 -2.043898166256391535e-01 +1.116000000000000014e+01 -2.116901054260349468e-01 +1.116999999999999993e+01 -2.211355152735670904e-01 +1.117999999999999972e+01 -2.320725753031882832e-01 +1.118999999999999950e+01 -2.436123507110857511e-01 +1.120000000000000107e+01 -2.546940655494051575e-01 +1.121000000000000085e+01 -2.641582665299848642e-01 +1.122000000000000064e+01 -2.708252616607667029e-01 +1.123000000000000043e+01 -2.735743403055956868e-01 +1.124000000000000021e+01 -2.714193011379381071e-01 +1.125000000000000000e+01 -2.635760772790373130e-01 +1.125999999999999979e+01 -2.495187363711485473e-01 +1.126999999999999957e+01 -2.290208180833961937e-01 +1.127999999999999936e+01 -2.021798128966642849e-01 +1.129000000000000092e+01 -1.694235362207902884e-01 +1.130000000000000071e+01 -1.314981578496377812e-01 +1.131000000000000050e+01 -8.943865293639838288e-02 +1.132000000000000028e+01 -4.452339220572133771e-02 +1.133000000000000007e+01 1.784565205158077268e-03 +1.133999999999999986e+01 4.790621786727030512e-02 +1.134999999999999964e+01 9.222164037512815826e-02 +1.135999999999999943e+01 1.331472107126589199e-01 +1.137000000000000099e+01 1.692109125149413307e-01 +1.138000000000000078e+01 1.991217332703605347e-01 +1.139000000000000057e+01 2.218295493316677636e-01 +1.140000000000000036e+01 2.365724498239460960e-01 +1.141000000000000014e+01 2.429091707062502881e-01 +1.141999999999999993e+01 2.407351456715087767e-01 +1.142999999999999972e+01 2.302815847302509822e-01 +1.143999999999999950e+01 2.120979135588454967e-01 +1.145000000000000107e+01 1.870187960549877515e-01 +1.146000000000000085e+01 1.561177706232606544e-01 +1.147000000000000064e+01 1.206502142913947334e-01 +1.148000000000000043e+01 8.198887213133852769e-02 +1.149000000000000021e+01 4.155552632570794908e-02 +1.150000000000000000e+01 7.525140099962975438e-04 +1.150999999999999979e+01 -3.910226838491050877e-02 +1.151999999999999957e+01 -7.683350676612481223e-02 +1.152999999999999936e+01 -1.114568401155607985e-01 +1.154000000000000092e+01 -1.422151464518293662e-01 +1.155000000000000071e+01 -1.686011493167583475e-01 +1.156000000000000050e+01 -1.903655433766132665e-01 +1.157000000000000028e+01 -2.075106595910335416e-01 +1.158000000000000007e+01 -2.202704944326507042e-01 +1.158999999999999986e+01 -2.290786691829667931e-01 +1.159999999999999964e+01 -2.345265239645222266e-01 +1.160999999999999943e+01 -2.373140529164785573e-01 +1.162000000000000099e+01 -2.381967260576761114e-01 +1.163000000000000078e+01 -2.379314037645666458e-01 +1.164000000000000057e+01 -2.372245256202973884e-01 +1.165000000000000036e+01 -2.366855513743367778e-01 +1.166000000000000014e+01 -2.367882626796914691e-01 +1.166999999999999993e+01 -2.378420240231657878e-01 +1.167999999999999972e+01 -2.399744813025666001e-01 +1.168999999999999950e+01 -2.431264839913733489e-01 +1.170000000000000107e+01 -2.470592924158604431e-01 +1.171000000000000085e+01 -2.513734171286780006e-01 +1.172000000000000064e+01 -2.555377732079664455e-01 +1.173000000000000043e+01 -2.589272555032182677e-01 +1.174000000000000021e+01 -2.608663827506031430e-01 +1.175000000000000000e+01 -2.606763431573342893e-01 +1.175999999999999979e+01 -2.577226170198971267e-01 +1.176999999999999957e+01 -2.514603594079110049e-01 +1.177999999999999936e+01 -2.414748946219714143e-01 +1.179000000000000092e+01 -2.275149915658322419e-01 +1.180000000000000071e+01 -2.095170346069984424e-01 +1.181000000000000050e+01 -1.876187502063717816e-01 +1.182000000000000028e+01 -1.621617625794807283e-01 +1.183000000000000007e+01 -1.336828956231818633e-01 +1.183999999999999986e+01 -1.028947758694766651e-01 +1.184999999999999964e+01 -7.065688590422755655e-02 +1.185999999999999943e+01 -3.793873621059983686e-02 +1.187000000000000099e+01 -5.777237436137340823e-03 +1.188000000000000078e+01 2.476935716382165989e-02 +1.189000000000000057e+01 5.266842201122813594e-02 +1.190000000000000036e+01 7.695832395284087080e-02 +1.191000000000000014e+01 9.678980540681247913e-02 +1.191999999999999993e+01 1.114612843707002560e-01 +1.192999999999999972e+01 1.204463580797923705e-01 +1.193999999999999950e+01 1.234122744404895222e-01 +1.195000000000000107e+01 1.202286721969031275e-01 +1.196000000000000085e+01 1.109664546878850050e-01 +1.197000000000000064e+01 9.588721960657560495e-02 +1.198000000000000043e+01 7.542418596818548093e-02 +1.199000000000000021e+01 5.015600998124545434e-02 +1.200000000000000000e+01 2.077523872076809941e-02 +1.200999999999999979e+01 -1.194660461054763805e-02 +1.201999999999999957e+01 -4.719518952675139795e-02 +1.203000000000000114e+01 -8.414869522619569664e-02 +1.204000000000000092e+01 -1.220103036235186122e-01 +1.205000000000000071e+01 -1.600361452581947341e-01 +1.206000000000000050e+01 -1.975573213914565696e-01 +1.207000000000000028e+01 -2.339950468745159162e-01 +1.208000000000000007e+01 -2.688684274549712483e-01 +1.208999999999999986e+01 -3.017948726859547293e-01 +1.209999999999999964e+01 -3.324836214576463722e-01 +1.210999999999999943e+01 -3.607232924688467679e-01 +1.212000000000000099e+01 -3.863647406342146096e-01 +1.213000000000000078e+01 -4.093007807874990966e-01 +1.214000000000000057e+01 -4.294445160123003813e-01 +1.215000000000000036e+01 -4.467080699364511798e-01 +1.216000000000000014e+01 -4.609834677977208139e-01 +1.216999999999999993e+01 -4.721272445450804267e-01 +1.217999999999999972e+01 -4.799500909412078853e-01 +1.218999999999999950e+01 -4.842124978406102676e-01 +1.220000000000000107e+01 -4.846269467111362639e-01 +1.221000000000000085e+01 -4.808667467696519648e-01 +1.222000000000000064e+01 -4.725811635214577922e-01 +1.223000000000000043e+01 -4.594160480482014641e-01 +1.224000000000000021e+01 -4.410387877429425285e-01 +1.225000000000000000e+01 -4.171660810724900914e-01 +1.225999999999999979e+01 -3.875928107600491446e-01 +1.226999999999999957e+01 -3.522201654845560359e-01 +1.228000000000000114e+01 -3.110811475063973153e-01 +1.229000000000000092e+01 -2.643617036159567335e-01 +1.230000000000000071e+01 -2.124159238473232736e-01 +1.231000000000000050e+01 -1.557740545800980758e-01 +1.232000000000000028e+01 -9.514245247494912405e-02 +1.233000000000000007e+01 -3.139504114846793786e-02 +1.233999999999999986e+01 3.444370160888870352e-02 +1.234999999999999964e+01 1.012237288334275065e-01 +1.235999999999999943e+01 1.677014384217269394e-01 +1.237000000000000099e+01 2.325773761218268565e-01 +1.238000000000000078e+01 2.945379622143625697e-01 +1.239000000000000057e+01 3.522993415336077017e-01 +1.240000000000000036e+01 4.046513246545483389e-01 +1.241000000000000014e+01 4.504993666676053166e-01 +1.241999999999999993e+01 4.889026197811500163e-01 +1.242999999999999972e+01 5.191062914838356912e-01 +1.243999999999999950e+01 5.405668296339281031e-01 +1.245000000000000107e+01 5.529688228255971172e-01 +1.246000000000000085e+01 5.562329276673845246e-01 +1.247000000000000064e+01 5.505145901510695161e-01 +1.248000000000000043e+01 5.361937904602454008e-01 +1.249000000000000021e+01 5.138564836411747550e-01 +1.250000000000000000e+01 4.842688081944921397e-01 +1.250999999999999979e+01 4.483454692761832949e-01 +1.251999999999999957e+01 4.071139552316050958e-01 +1.253000000000000114e+01 3.616764029856711637e-01 +1.254000000000000092e+01 3.131709823486139022e-01 +1.255000000000000071e+01 2.627346204938038610e-01 +1.256000000000000050e+01 2.114687405810553866e-01 +1.257000000000000028e+01 1.604094531732028484e-01 +1.258000000000000007e+01 1.105033310618914327e-01 +1.258999999999999986e+01 6.258953666056826792e-02 +1.259999999999999964e+01 1.738867828898263065e-02 +1.260999999999999943e+01 -2.450162903671031581e-02 +1.262000000000000099e+01 -6.260490772288430927e-02 +1.263000000000000078e+01 -9.655842314841756036e-02 +1.264000000000000057e+01 -1.261012967159552134e-01 +1.265000000000000036e+01 -1.510593885451609053e-01 +1.266000000000000014e+01 -1.713283432279300578e-01 +1.266999999999999993e+01 -1.868562324525184504e-01 +1.267999999999999972e+01 -1.976271772034281504e-01 +1.268999999999999950e+01 -2.036471945368578951e-01 +1.270000000000000107e+01 -2.049332996199904333e-01 +1.271000000000000085e+01 -2.015066172811693090e-01 +1.272000000000000064e+01 -1.933899367891233345e-01 +1.273000000000000043e+01 -1.806097994650507910e-01 +1.274000000000000021e+01 -1.632028627544927502e-01 +1.275000000000000000e+01 -1.412259581888890281e-01 +1.275999999999999979e+01 -1.147689745275578960e-01 +1.276999999999999957e+01 -8.396946901004534447e-02 +1.278000000000000114e+01 -4.902775319611155785e-02 +1.279000000000000092e+01 -1.022112505059527728e-02 +1.280000000000000071e+01 3.208406948704813078e-02 +1.281000000000000050e+01 7.742376466474544527e-02 +1.282000000000000028e+01 1.252319341225963667e-01 +1.283000000000000007e+01 1.748415745939547461e-01 +1.283999999999999986e+01 2.254914043306738280e-01 +1.284999999999999964e+01 2.763384257785775899e-01 +1.285999999999999943e+01 3.264761439919959818e-01 +1.287000000000000099e+01 3.749578781112354320e-01 +1.288000000000000078e+01 4.208242739709768254e-01 +1.289000000000000057e+01 4.631338412053235265e-01 +1.290000000000000036e+01 5.009951151844291850e-01 +1.291000000000000014e+01 5.335988963653411910e-01 +1.291999999999999993e+01 5.602489564863504246e-01 +1.292999999999999972e+01 5.803896269853944245e-01 +1.293999999999999950e+01 5.936287995211974033e-01 +1.295000000000000107e+01 5.997550659405560536e-01 +1.296000000000000085e+01 5.987479951900672726e-01 +1.297000000000000064e+01 5.907808731344945663e-01 +1.298000000000000043e+01 5.762156003506585522e-01 +1.299000000000000021e+01 5.555898327673164383e-01 +1.300000000000000000e+01 5.295968394083439001e-01 +1.300999999999999979e+01 4.990589193836625914e-01 +1.301999999999999957e+01 4.648955467683131282e-01 +1.303000000000000114e+01 4.280876795177770422e-01 +1.304000000000000092e+01 3.896398627436869488e-01 +1.305000000000000071e+01 3.505418672046115569e-01 +1.306000000000000050e+01 3.117316250083173590e-01 +1.307000000000000028e+01 2.740611553884600982e-01 +1.308000000000000007e+01 2.382670179946430045e-01 +1.308999999999999986e+01 2.049465980195717962e-01 +1.309999999999999964e+01 1.745412293893088551e-01 +1.310999999999999943e+01 1.473268152510989193e-01 +1.312000000000000099e+01 1.234122276724274186e-01 +1.313000000000000078e+01 1.027453808232785815e-01 +1.314000000000000057e+01 8.512649430642102444e-02 +1.315000000000000036e+01 7.022771532658879379e-02 +1.316000000000000014e+01 5.761796784364956597e-02 +1.316999999999999993e+01 4.679165879301199621e-02 +1.317999999999999972e+01 3.719970742272745573e-02 +1.318999999999999950e+01 2.828128125216953018e-02 +1.320000000000000107e+01 1.949462414011915098e-02 +1.321000000000000085e+01 1.034544698026654448e-02 +1.322000000000000064e+01 4.115137719233594497e-04 +1.323000000000000043e+01 -1.063771458708815711e-02 +1.324000000000000021e+01 -2.302723268928972764e-02 +1.325000000000000000e+01 -3.686897103569040934e-02 +1.325999999999999979e+01 -5.216079353995749929e-02 +1.326999999999999957e+01 -6.879185598341515384e-02 +1.328000000000000114e+01 -8.655383979495845370e-02 +1.329000000000000092e+01 -1.051572786527674441e-01 +1.330000000000000071e+01 -1.242519459880172539e-01 +1.331000000000000050e+01 -1.434500815507369631e-01 +1.332000000000000028e+01 -1.623511134214916940e-01 +1.333000000000000007e+01 -1.805664830937651899e-01 +1.333999999999999986e+01 -1.977432064397770806e-01 +1.334999999999999964e+01 -2.135848995337588374e-01 +1.335999999999999943e+01 -2.278691588169275140e-01 +1.337000000000000099e+01 -2.404604001114583056e-01 +1.338000000000000078e+01 -2.513175180799508968e-01 +1.339000000000000057e+01 -2.604960125481494138e-01 +1.340000000000000036e+01 -2.681445252469596419e-01 +1.341000000000000014e+01 -2.744960243294451985e-01 +1.341999999999999993e+01 -2.798541494136806418e-01 +1.342999999999999972e+01 -2.845754731918154201e-01 +1.343999999999999950e+01 -2.890486351720971125e-01 +1.345000000000000107e+01 -2.936714498199636258e-01 +1.346000000000000085e+01 -2.988271791618488105e-01 +1.347000000000000064e+01 -3.048611859477073360e-01 +1.348000000000000043e+01 -3.120591481306718706e-01 +1.349000000000000021e+01 -3.206279222382821814e-01 +1.350000000000000000e+01 -3.306799985420804666e-01 +1.350999999999999979e+01 -3.422223035514755929e-01 +1.351999999999999957e+01 -3.551498858996195995e-01 +1.353000000000000114e+01 -3.692447820334622266e-01 +1.354000000000000092e+01 -3.841801107277304506e-01 +1.355000000000000071e+01 -3.995292026862239942e-01 +1.356000000000000050e+01 -4.147793450223564715e-01 +1.357000000000000028e+01 -4.293495205775994528e-01 +1.358000000000000007e+01 -4.426113574202173440e-01 +1.358999999999999986e+01 -4.539123809087606265e-01 +1.359999999999999964e+01 -4.626005834758344926e-01 +1.360999999999999943e+01 -4.680492973909471388e-01 +1.362000000000000099e+01 -4.696813723720957290e-01 +1.363000000000000078e+01 -4.669917199499126759e-01 +1.364000000000000057e+01 -4.595673848795666649e-01 +1.365000000000000036e+01 -4.471044339700481207e-01 +1.366000000000000014e+01 -4.294211066107284092e-01 +1.366999999999999993e+01 -4.064668404807852964e-01 +1.367999999999999972e+01 -3.783269616806342328e-01 +1.368999999999999950e+01 -3.452230023418402793e-01 +1.370000000000000107e+01 -3.075087728618026151e-01 +1.371000000000000085e+01 -2.656624635365337772e-01 +1.372000000000000064e+01 -2.202751761326453839e-01 +1.373000000000000043e+01 -1.720363859818750119e-01 +1.374000000000000021e+01 -1.217169072532154339e-01 +1.375000000000000000e+01 -7.014997753086146814e-02 +1.375999999999999979e+01 -1.821109359210966103e-02 +1.376999999999999957e+01 3.320277942794960802e-02 +1.378000000000000114e+01 8.319403514456004400e-02 +1.379000000000000092e+01 1.308847488042106100e-01 +1.380000000000000071e+01 1.754360186317128756e-01 +1.381000000000000050e+01 2.160659200684496573e-01 +1.382000000000000028e+01 2.520657429153724816e-01 +1.383000000000000007e+01 2.828142565675598186e-01 +1.383999999999999986e+01 3.077898196505520767e-01 +1.384999999999999964e+01 3.265802146153182761e-01 +1.385999999999999943e+01 3.388901433037228572e-01 +1.387000000000000099e+01 3.445463651930273374e-01 +1.388000000000000078e+01 3.435004959164540406e-01 +1.389000000000000057e+01 3.358295105139623149e-01 +1.390000000000000036e+01 3.217340151505601598e-01 +1.391000000000000014e+01 3.015343647086842771e-01 +1.391999999999999993e+01 2.756647139657092405e-01 +1.392999999999999972e+01 2.446650993342703029e-01 +1.393999999999999950e+01 2.091716585585853827e-01 +1.395000000000000107e+01 1.699051091818959969e-01 +1.396000000000000085e+01 1.276576243931273058e-01 +1.397000000000000064e+01 8.327826777919629386e-02 +1.398000000000000043e+01 3.765717662425810408e-02 +1.399000000000000021e+01 -8.291283919437803657e-03 +1.400000000000000000e+01 -5.364613750848454266e-02 +1.400999999999999979e+01 -9.749788850327743839e-02 +1.401999999999999957e+01 -1.389667570475171809e-01 +1.403000000000000114e+01 -1.772206924790647453e-01 +1.404000000000000092e+01 -2.114927737401566532e-01 +1.405000000000000071e+01 -2.410975879996786475e-01 +1.406000000000000050e+01 -2.654461726857199610e-01 +1.407000000000000028e+01 -2.840591135279521007e-01 +1.408000000000000007e+01 -2.965774134064290135e-01 +1.408999999999999986e+01 -3.027707844632967493e-01 +1.409999999999999964e+01 -3.025430689332537781e-01 +1.410999999999999943e+01 -2.959345615432773524e-01 +1.412000000000000099e+01 -2.831210863723935267e-01 +1.413000000000000078e+01 -2.644097712573350023e-01 +1.414000000000000057e+01 -2.402315600515706473e-01 +1.415000000000000036e+01 -2.111306036725439927e-01 +1.416000000000000014e+01 -1.777507709598309116e-01 +1.416999999999999993e+01 -1.408196158381776197e-01 +1.417999999999999972e+01 -1.011302241215294995e-01 +1.418999999999999950e+01 -5.952143775727869457e-02 +1.420000000000000107e+01 -1.685701308976319743e-02 +1.421000000000000085e+01 2.599568987721976102e-02 +1.422000000000000064e+01 6.818687017306085396e-02 +1.423000000000000043e+01 1.089046848498494008e-01 +1.424000000000000021e+01 1.473942916788797408e-01 +1.425000000000000000e+01 1.829749870361427333e-01 +1.425999999999999979e+01 2.150549539816625222e-01 +1.426999999999999957e+01 2.431432161537665226e-01 +1.428000000000000114e+01 2.668584877520251974e-01 +1.429000000000000092e+01 2.859347149512462827e-01 +1.430000000000000071e+01 3.002232155490293652e-01 +1.431000000000000050e+01 3.096914372464769638e-01 +1.432000000000000028e+01 3.144184663925814749e-01 +1.433000000000000007e+01 3.145875241151933066e-01 +1.433999999999999986e+01 3.104757816447504815e-01 +1.434999999999999964e+01 3.024419078951590123e-01 +1.435999999999999943e+01 2.909118271700330549e-01 +1.437000000000000099e+01 2.763632110722129553e-01 +1.438000000000000078e+01 2.593092549332601249e-01 +1.439000000000000057e+01 2.402822947723924352e-01 +1.440000000000000036e+01 2.198178061752124879e-01 +1.441000000000000014e+01 1.984392925680555086e-01 +1.441999999999999993e+01 1.766445188961113522e-01 +1.442999999999999972e+01 1.548934800780604470e-01 +1.443999999999999950e+01 1.335984147276105816e-01 +1.445000000000000107e+01 1.131160868358270649e-01 +1.446000000000000085e+01 9.374246500391464343e-02 +1.447000000000000064e+01 7.570983414002795120e-02 +1.448000000000000043e+01 5.918628200385682436e-02 +1.449000000000000021e+01 4.427741615682131981e-02 +1.450000000000000000e+01 3.103008901605644465e-02 +1.450999999999999979e+01 1.943784266263950261e-02 +1.451999999999999957e+01 9.447733143707446810e-03 +1.453000000000000114e+01 9.681579549867640189e-04 +1.454000000000000092e+01 -6.122708748949228300e-03 +1.455000000000000071e+01 -1.196827053742118355e-02 +1.456000000000000050e+01 -1.672503494745359448e-02 +1.457000000000000028e+01 -2.055466292297606495e-02 +1.458000000000000007e+01 -2.361684765314258846e-02 +1.458999999999999986e+01 -2.606327194542031739e-02 +1.459999999999999964e+01 -2.803282700605171096e-02 +1.460999999999999943e+01 -2.964820315633573747e-02 +1.462000000000000099e+01 -3.101388794561412907e-02 +1.463000000000000078e+01 -3.221553279346384829e-02 +1.464000000000000057e+01 -3.332057912655784354e-02 +1.465000000000000036e+01 -3.437997220538804161e-02 +1.466000000000000014e+01 -3.543073837004070276e-02 +1.466999999999999993e+01 -3.649916172121062813e-02 +1.467999999999999972e+01 -3.760427116847585294e-02 +1.468999999999999950e+01 -3.876133953298189355e-02 +1.470000000000000107e+01 -3.998510346511558594e-02 +1.471000000000000085e+01 -4.129243604138527202e-02 +1.472000000000000064e+01 -4.270424198081282374e-02 +1.473000000000000043e+01 -4.424639667396765286e-02 +1.474000000000000021e+01 -4.594961218039622652e-02 +1.475000000000000000e+01 -4.784818298338699288e-02 +1.475999999999999979e+01 -4.997763811260577671e-02 +1.476999999999999957e+01 -5.237140048401849046e-02 +1.478000000000000114e+01 -5.505662507538520989e-02 +1.479000000000000092e+01 -5.804945103573940640e-02 +1.480000000000000071e+01 -6.134995545565614938e-02 +1.481000000000000050e+01 -6.493713517675470115e-02 +1.482000000000000028e+01 -6.876426517376423020e-02 +1.483000000000000007e+01 -7.275498592936439912e-02 +1.483999999999999986e+01 -7.680045693072634627e-02 +1.484999999999999964e+01 -8.075787897230476964e-02 +1.485999999999999943e+01 -8.445063534273526684e-02 +1.487000000000000099e+01 -8.767023314547377211e-02 +1.488000000000000078e+01 -9.018014377989448660e-02 +1.489000000000000057e+01 -9.172154959538564301e-02 +1.490000000000000036e+01 -9.202090615257703388e-02 +1.491000000000000014e+01 -9.079913104570828952e-02 +1.491999999999999993e+01 -8.778213573872958864e-02 +1.492999999999999972e+01 -8.271233120849712239e-02 +1.493999999999999950e+01 -7.536066597568118197e-02 +1.495000000000000107e+01 -6.553870044569166942e-02 +1.496000000000000085e+01 -5.311018777004872238e-02 +1.497000000000000064e+01 -3.800162115827768888e-02 +1.498000000000000043e+01 -2.021122214874732440e-02 +1.499000000000000021e+01 1.841159497774479549e-04 +1.500000000000000000e+01 2.302435134753236246e-02 +1.500999999999999979e+01 4.806461976482887671e-02 +1.501999999999999957e+01 7.497659438400328114e-02 +1.503000000000000114e+01 1.033529917887491406e-01 +1.504000000000000092e+01 1.327152072357040968e-01 +1.505000000000000071e+01 1.625239301302437434e-01 +1.506000000000000050e+01 1.921924602953960504e-01 +1.507000000000000028e+01 2.211023235507158236e-01 +1.508000000000000007e+01 2.486206770263285626e-01 +1.508999999999999986e+01 2.741189057595672662e-01 +1.509999999999999964e+01 2.969917468917497305e-01 +1.510999999999999943e+01 3.166762396076698294e-01 +1.512000000000000099e+01 3.326697900392537877e-01 +1.513000000000000078e+01 3.445466615560303092e-01 +1.514000000000000057e+01 3.519722516663893463e-01 +1.515000000000000036e+01 3.547145952530907365e-01 +1.516000000000000014e+01 3.526526368573930093e-01 +1.516999999999999993e+01 3.457809378438824743e-01 +1.517999999999999972e+01 3.342106221963261903e-01 +1.518999999999999950e+01 3.181665113811920076e-01 +1.520000000000000107e+01 2.979805477132198566e-01 +1.521000000000000085e+01 2.740817503976049618e-01 +1.522000000000000064e+01 2.469830825370851746e-01 +1.523000000000000043e+01 2.172657250174266641e-01 +1.524000000000000021e+01 1.855613492456530123e-01 +1.525000000000000000e+01 1.525330511620769658e-01 +1.525999999999999979e+01 1.188556509460812066e-01 +1.526999999999999957e+01 8.519607489525664323e-02 +1.528000000000000114e+01 5.219451798884262167e-02 +1.529000000000000092e+01 2.044703895299540899e-02 +1.530000000000000071e+01 -9.509833157790888516e-03 +1.531000000000000050e+01 -3.721199697893097513e-02 +1.532000000000000028e+01 -6.227781027778932915e-02 +1.533000000000000007e+01 -8.441500846255077517e-02 +1.533999999999999986e+01 -1.034243948237706101e-01 +1.534999999999999964e+01 -1.192003183528275168e-01 +1.535999999999999943e+01 -1.317280804246898085e-01 +1.537000000000000099e+01 -1.410785258932084618e-01 +1.538000000000000078e+01 -1.474001724786274115e-01 +1.539000000000000057e+01 -1.509093108996306942e-01 +1.540000000000000036e+01 -1.518785642662371926e-01 +1.541000000000000014e+01 -1.506244272417317787e-01 +1.541999999999999993e+01 -1.474943130628861288e-01 +1.542999999999999972e+01 -1.428536205418199090e-01 +1.543999999999999950e+01 -1.370732956390406376e-01 +1.545000000000000107e+01 -1.305183060488101510e-01 +1.546000000000000085e+01 -1.235373762134058806e-01 +1.547000000000000064e+01 -1.164542485818557682e-01 +1.548000000000000043e+01 -1.095606493653430574e-01 +1.549000000000000021e+01 -1.031110481899015496e-01 +1.550000000000000000e+01 -9.731921539178695069e-02 +1.550999999999999979e+01 -9.235650230766617730e-02 +1.551999999999999957e+01 -8.835170222883126367e-02 +1.553000000000000114e+01 -8.539229539015581738e-02 +1.554000000000000092e+01 -8.352684224240643218e-02 +1.555000000000000071e+01 -8.276826616622517951e-02 +1.556000000000000050e+01 -8.309775964623802857e-02 +1.557000000000000028e+01 -8.446905576946943384e-02 +1.558000000000000007e+01 -8.681282799579503884e-02 +1.558999999999999986e+01 -9.004101308055177666e-02 +1.559999999999999964e+01 -9.405089195285597226e-02 +1.561000000000000121e+01 -9.872880813304489578e-02 +1.562000000000000099e+01 -1.039534496979748202e-01 +1.563000000000000078e+01 -1.095986657819808807e-01 +1.564000000000000057e+01 -1.155358293422121541e-01 +1.565000000000000036e+01 -1.216357920821490440e-01 +1.566000000000000014e+01 -1.277705032533347496e-01 +1.566999999999999993e+01 -1.338143804345428012e-01 +1.567999999999999972e+01 -1.396455269033047286e-01 +1.568999999999999950e+01 -1.451468871344748224e-01 +1.570000000000000107e+01 -1.502074201858789315e-01 +1.571000000000000085e+01 -1.547233517109617429e-01 +1.572000000000000064e+01 -1.585995409495379871e-01 +1.573000000000000043e+01 -1.617509714546691013e-01 +1.574000000000000021e+01 -1.641043458148924716e-01 +1.575000000000000000e+01 -1.655997375013015804e-01 +1.575999999999999979e+01 -1.661922293110556781e-01 +1.576999999999999957e+01 -1.658534494898920297e-01 +1.578000000000000114e+01 -1.645729048778708237e-01 +1.579000000000000092e+01 -1.623590062245120480e-01 +1.580000000000000071e+01 -1.592396845137129813e-01 +1.581000000000000050e+01 -1.552625085334001787e-01 +1.582000000000000028e+01 -1.504942323109781654e-01 +1.583000000000000007e+01 -1.450197252496923106e-01 +1.583999999999999986e+01 -1.389402663117848269e-01 +1.584999999999999964e+01 -1.323712146147556223e-01 +1.586000000000000121e+01 -1.254391004158563194e-01 +1.587000000000000099e+01 -1.182782107315113601e-01 +1.588000000000000078e+01 -1.110267709665214014e-01 +1.589000000000000057e+01 -1.038228463395015483e-01 +1.590000000000000036e+01 -9.680010333991839744e-02 +1.591000000000000014e+01 -9.008358108885050619e-02 +1.591999999999999993e+01 -8.378562488865012869e-02 +1.592999999999999972e+01 -7.800212947271722985e-02 +1.593999999999999950e+01 -7.280922797146610614e-02 +1.595000000000000107e+01 -6.826054524099471610e-02 +1.596000000000000085e+01 -6.438511211347149044e-02 +1.597000000000000064e+01 -6.118601169862212391e-02 +1.598000000000000043e+01 -5.863980158740973031e-02 +1.599000000000000021e+01 -5.669672818765608691e-02 +1.600000000000000000e+01 -5.528172287131247892e-02 +1.601000000000000156e+01 -5.429614536645389206e-02 +1.601999999999999957e+01 -5.362021885785960007e-02 +1.603000000000000114e+01 -5.311608423129512285e-02 +1.603999999999999915e+01 -5.263138813252889875e-02 +1.605000000000000071e+01 -5.200331099717891981e-02 +1.605999999999999872e+01 -5.106293661157020047e-02 +1.607000000000000028e+01 -4.963986349328182446e-02 +1.608000000000000185e+01 -4.756695964291064033e-02 +1.608999999999999986e+01 -4.468516511480546960e-02 +1.610000000000000142e+01 -4.084825046389571612e-02 +1.610999999999999943e+01 -3.592744260136932627e-02 +1.612000000000000099e+01 -2.981583224650790828e-02 +1.612999999999999901e+01 -2.243247853947472059e-02 +1.614000000000000057e+01 -1.372612630924919218e-02 +1.614999999999999858e+01 -3.678450114249891007e-03 +1.616000000000000014e+01 7.693263052127271781e-03 +1.617000000000000171e+01 2.033408282644982856e-02 +1.617999999999999972e+01 3.415014819357142795e-02 +1.619000000000000128e+01 4.900821516695702540e-02 +1.619999999999999929e+01 6.473612693808264429e-02 +1.621000000000000085e+01 8.112428581202066336e-02 +1.621999999999999886e+01 9.792819266373446740e-02 +1.623000000000000043e+01 1.148720999363765510e-01 +1.624000000000000199e+01 1.316537979850201379e-01 +1.625000000000000000e+01 1.479505219145849926e-01 +1.626000000000000156e+01 1.634259275306744474e-01 +1.626999999999999957e+01 1.777380416921986450e-01 +1.628000000000000114e+01 1.905480457995496757e-01 +1.628999999999999915e+01 2.015297033949682293e-01 +1.630000000000000071e+01 2.103791962786567549e-01 +1.630999999999999872e+01 2.168250907884180512e-01 +1.632000000000000028e+01 2.206381196886551266e-01 +1.633000000000000185e+01 2.216404381497134313e-01 +1.633999999999999986e+01 2.197139970287839694e-01 +1.635000000000000142e+01 2.148076751596628420e-01 +1.635999999999999943e+01 2.069428261452782858e-01 +1.637000000000000099e+01 1.962169250748339866e-01 +1.637999999999999901e+01 1.828050467297483439e-01 +1.639000000000000057e+01 1.669589684350740733e-01 +1.639999999999999858e+01 1.490037661371651778e-01 +1.641000000000000014e+01 1.293318591012109497e-01 +1.642000000000000171e+01 1.083945536374235630e-01 +1.642999999999999972e+01 8.669123567545282405e-02 +1.644000000000000128e+01 6.475646155262181070e-02 +1.644999999999999929e+01 4.314529154553885248e-02 +1.646000000000000085e+01 2.241729690389411556e-02 +1.646999999999999886e+01 3.119744083068336747e-03 +1.648000000000000043e+01 -1.422948441143123167e-02 +1.649000000000000199e+01 -2.915863794661840633e-02 +1.650000000000000000e+01 -4.125790758442279133e-02 +1.651000000000000156e+01 -5.019370311979860083e-02 +1.651999999999999957e+01 -5.572083963927236538e-02 +1.653000000000000114e+01 -5.769213693076941790e-02 +1.653999999999999915e+01 -5.606501823248592753e-02 +1.655000000000000071e+01 -5.090479711499133059e-02 +1.655999999999999872e+01 -4.238445881135709248e-02 +1.657000000000000028e+01 -3.078087032585649641e-02 +1.658000000000000185e+01 -1.646748687457507201e-02 +1.658999999999999986e+01 9.624497175297197634e-05 +1.660000000000000142e+01 1.837846033300787052e-02 +1.660999999999999943e+01 3.779098294281641596e-02 +1.662000000000000099e+01 5.770742496565098301e-02 +1.662999999999999901e+01 7.748266085292615513e-02 +1.664000000000000057e+01 9.647300267269949547e-02 +1.664999999999999858e+01 1.140563770789117665e-01 +1.666000000000000014e+01 1.296518043574009238e-01 +1.667000000000000171e+01 1.427375076657876052e-01 +1.667999999999999972e+01 1.528670343262001352e-01 +1.669000000000000128e+01 1.596828483465829451e-01 +1.669999999999999929e+01 1.629269507403441619e-01 +1.671000000000000085e+01 1.624481973559125658e-01 +1.671999999999999886e+01 1.582061078733066062e-01 +1.673000000000000043e+01 1.502710890583127956e-01 +1.674000000000000199e+01 1.388211248576101398e-01 +1.675000000000000000e+01 1.241351101836663806e-01 +1.676000000000000156e+01 1.065831193772235203e-01 +1.676999999999999957e+01 8.661400005314284778e-02 +1.678000000000000114e+01 6.474076482191372384e-02 +1.678999999999999915e+01 4.152431464589693977e-02 +1.680000000000000071e+01 1.755606675242513473e-02 +1.680999999999999872e+01 -6.559923462380888408e-03 +1.682000000000000028e+01 -3.022476277960549004e-02 +1.683000000000000185e+01 -5.286188545030430508e-02 +1.683999999999999986e+01 -7.393307114532710056e-02 +1.685000000000000142e+01 -9.295286395135926583e-02 +1.685999999999999943e+01 -1.095010137699344716e-01 +1.687000000000000099e+01 -1.232326430660608679e-01 +1.687999999999999901e+01 -1.338859283685948087e-01 +1.689000000000000057e+01 -1.412871735898341696e-01 +1.689999999999999858e+01 -1.453532377245607132e-01 +1.691000000000000014e+01 -1.460913598462034724e-01 +1.692000000000000171e+01 -1.435964971050869565e-01 +1.692999999999999972e+01 -1.380463548194657275e-01 +1.694000000000000128e+01 -1.296943405327004584e-01 +1.694999999999999929e+01 -1.188607155121373798e-01 +1.696000000000000085e+01 -1.059222475847387129e-01 +1.696999999999999886e+01 -9.130068893722914636e-02 +1.698000000000000043e+01 -7.545041244543243542e-02 +1.699000000000000199e+01 -5.884554140722077914e-02 +1.700000000000000000e+01 -4.196690155594975241e-02 +1.701000000000000156e+01 -2.528911227772797504e-02 +1.701999999999999957e+01 -9.268117316345966111e-03 +1.703000000000000114e+01 5.670564976671316204e-03 +1.703999999999999915e+01 1.914261474159959994e-02 +1.705000000000000071e+01 3.081447504605152113e-02 +1.705999999999999872e+01 4.041150256908069421e-02 +1.707000000000000028e+01 4.772452815929554421e-02 +1.708000000000000185e+01 5.261468155067037383e-02 +1.708999999999999986e+01 5.501636741470536385e-02 +1.710000000000000142e+01 5.493831539494733324e-02 +1.710999999999999943e+01 5.246266509170668252e-02 +1.712000000000000099e+01 4.774208827460357796e-02 +1.712999999999999901e+01 4.099499479487638681e-02 +1.714000000000000057e+01 3.249891533866295507e-02 +1.715000000000000213e+01 2.258220254407117614e-02 +1.716000000000000014e+01 1.161424096653033457e-02 +1.717000000000000171e+01 -5.595569456255840799e-06 +1.717999999999999972e+01 -1.185995534367279523e-02 +1.719000000000000128e+01 -2.352616432754192979e-02 +1.719999999999999929e+01 -3.458916772617062763e-02 +1.721000000000000085e+01 -4.465437448408808574e-02 +1.721999999999999886e+01 -5.336000804474885090e-02 +1.723000000000000043e+01 -6.038856565306593288e-02 +1.724000000000000199e+01 -6.547700148284162081e-02 +1.725000000000000000e+01 -6.842527657779089167e-02 +1.726000000000000156e+01 -6.910296108311173024e-02 +1.726999999999999957e+01 -6.745363086210288961e-02 +1.728000000000000114e+01 -6.349686993929747059e-02 +1.728999999999999915e+01 -5.732777015808671051e-02 +1.730000000000000071e+01 -4.911390718587181625e-02 +1.730999999999999872e+01 -3.908986417698522009e-02 +1.732000000000000028e+01 -2.754946722264014700e-02 +1.733000000000000185e+01 -1.483598614083640049e-02 +1.733999999999999986e+01 -1.330636101241181512e-03 +1.735000000000000142e+01 1.256021388174429106e-02 +1.735999999999999943e+01 2.641866396684892926e-02 +1.737000000000000099e+01 3.982923872562730422e-02 +1.737999999999999901e+01 5.239265778026729742e-02 +1.739000000000000057e+01 6.373890893053231477e-02 +1.740000000000000213e+01 7.353913654369098607e-02 +1.741000000000000014e+01 8.151590470521628828e-02 +1.742000000000000171e+01 8.745146062797103104e-02 +1.742999999999999972e+01 9.119370635332239849e-02 +1.744000000000000128e+01 9.265968225165266414e-02 +1.744999999999999929e+01 9.183646995437677596e-02 +1.746000000000000085e+01 8.877953035348860877e-02 +1.746999999999999886e+01 8.360859917182988932e-02 +1.748000000000000043e+01 7.650136333022318491e-02 +1.749000000000000199e+01 6.768523117786338916e-02 +1.750000000000000000e+01 5.742758438642963509e-02 +1.751000000000000156e+01 4.602495545229814966e-02 +1.751999999999999957e+01 3.379160974572393422e-02 +1.753000000000000114e+01 2.104802339406193490e-02 +1.753999999999999915e+01 8.109737635491356261e-03 +1.755000000000000071e+01 -4.722962557912879777e-03 +1.755999999999999872e+01 -1.717415088007497384e-02 +1.757000000000000028e+01 -2.899981879876887408e-02 +1.758000000000000185e+01 -3.999365093960072226e-02 +1.758999999999999986e+01 -4.999086922347020095e-02 +1.760000000000000142e+01 -5.887009529386477702e-02 +1.760999999999999943e+01 -6.655327695491405904e-02 +1.762000000000000099e+01 -7.300381475035973289e-02 +1.762999999999999901e+01 -7.822310493305291434e-02 +1.764000000000000057e+01 -8.224578101793016127e-02 +1.765000000000000213e+01 -8.513398482443898518e-02 +1.766000000000000014e+01 -8.697102733339667768e-02 +1.767000000000000171e+01 -8.785480883493597404e-02 +1.767999999999999972e+01 -8.789135688570463845e-02 +1.769000000000000128e+01 -8.718881078650758676e-02 +1.769999999999999929e+01 -8.585213491619081427e-02 +1.771000000000000085e+01 -8.397878346678384898e-02 +1.771999999999999886e+01 -8.165546975382416417e-02 +1.773000000000000043e+01 -7.895611860949962313e-02 +1.774000000000000199e+01 -7.594100488910970892e-02 +1.775000000000000000e+01 -7.265700925261536769e-02 +1.776000000000000156e+01 -6.913885822256868319e-02 +1.776999999999999957e+01 -6.541116261297227896e-02 +1.778000000000000114e+01 -6.149102956283695326e-02 +1.778999999999999915e+01 -5.739100047862602527e-02 +1.780000000000000071e+01 -5.312206107294248358e-02 +1.780999999999999872e+01 -4.869648022217012290e-02 +1.782000000000000028e+01 -4.413026037711387239e-02 +1.783000000000000185e+01 -3.944502164060773031e-02 +1.783999999999999986e+01 -3.466919147852810107e-02 +1.785000000000000142e+01 -2.983842885683849963e-02 +1.785999999999999943e+01 -2.499527151929556781e-02 +1.787000000000000099e+01 -2.018805412435889859e-02 +1.787999999999999901e+01 -1.546919914689331467e-02 +1.789000000000000057e+01 -1.089302827860057568e-02 +1.790000000000000213e+01 -6.513276565349139166e-03 +1.791000000000000014e+01 -2.380512493246998360e-03 +1.792000000000000171e+01 1.460326633391159472e-03 +1.792999999999999972e+01 4.972083727391670739e-03 +1.794000000000000128e+01 8.127038643732561671e-03 +1.794999999999999929e+01 1.090793235555202051e-02 +1.796000000000000085e+01 1.330826528127766056e-02 +1.796999999999999886e+01 1.533183069874633278e-02 +1.798000000000000043e+01 1.699150205902824617e-02 +1.799000000000000199e+01 1.830735060543921613e-02 +1.800000000000000000e+01 1.930422306513260647e-02 +1.801000000000000156e+01 2.000895459361687334e-02 +1.801999999999999957e+01 2.044742636542969810e-02 +1.803000000000000114e+01 2.064169764375224300e-02 +1.803999999999999915e+01 2.060744710385773587e-02 +1.805000000000000071e+01 2.035194687519025283e-02 +1.805999999999999872e+01 1.987276548122132724e-02 +1.807000000000000028e+01 1.915735390232515406e-02 +1.808000000000000185e+01 1.818361463881564347e-02 +1.808999999999999986e+01 1.692149002604948632e-02 +1.810000000000000142e+01 1.533553693417449154e-02 +1.810999999999999943e+01 1.338838460110528331e-02 +1.812000000000000099e+01 1.104490512406439140e-02 +1.812999999999999901e+01 8.276866428552321145e-03 +1.814000000000000057e+01 5.067789364537872605e-03 +1.815000000000000213e+01 1.417697383610692355e-03 +1.816000000000000014e+01 -2.652568340680977466e-03 +1.817000000000000171e+01 -7.097791821652424046e-03 +1.817999999999999972e+01 -1.184588319391044475e-02 +1.819000000000000128e+01 -1.679669498620803628e-02 +1.819999999999999929e+01 -2.182235090378537370e-02 +1.821000000000000085e+01 -2.676920951118910708e-02 +1.821999999999999886e+01 -3.146149953859919690e-02 +1.823000000000000043e+01 -3.570657146386103237e-02 +1.824000000000000199e+01 -3.930161652722610754e-02 +1.825000000000000000e+01 -4.204161461507929798e-02 +1.826000000000000156e+01 -4.372819163176475121e-02 +1.826999999999999957e+01 -4.417899983428527633e-02 +1.828000000000000114e+01 -4.323718526828731340e-02 +1.828999999999999915e+01 -4.078047817413855969e-02 +1.830000000000000071e+01 -3.672943721520514210e-02 +1.830999999999999872e+01 -3.105439759051376036e-02 +1.832000000000000028e+01 -2.378071621957196860e-02 +1.833000000000000185e+01 -1.499197262772450183e-02 +1.833999999999999986e+01 -4.830869094520381761e-03 +1.835000000000000142e+01 6.502325852493613667e-03 +1.835999999999999943e+01 1.875383520816024246e-02 +1.837000000000000099e+01 3.162286047981621023e-02 +1.837999999999999901e+01 4.477030965597811329e-02 +1.839000000000000057e+01 5.782946803383623435e-02 +1.840000000000000213e+01 7.041821583405988294e-02 +1.841000000000000014e+01 8.215231556673689706e-02 +1.842000000000000171e+01 9.265923237690781855e-02 +1.842999999999999972e+01 1.015919152910663287e-01 +1.844000000000000128e+01 1.086419583913533354e-01 +1.844999999999999929e+01 1.135515791255634205e-01 +1.846000000000000085e+01 1.161238955236690157e-01 +1.846999999999999886e+01 1.162310530191255215e-01 +1.848000000000000043e+01 1.138198416304412736e-01 +1.849000000000000199e+01 1.089145511616935874e-01 +1.850000000000000000e+01 1.016169307187487353e-01 +1.851000000000000156e+01 9.210324353794036023e-02 +1.851999999999999957e+01 8.061853294322197938e-02 +1.853000000000000114e+01 6.746833427750305312e-02 +1.853999999999999915e+01 5.300817531925081788e-02 +1.855000000000000071e+01 3.763129903344213795e-02 +1.855999999999999872e+01 2.175511341058930168e-02 +1.857000000000000028e+01 5.806920564137485995e-03 +1.858000000000000185e+01 -9.790500677876600930e-03 +1.858999999999999986e+01 -2.463288833446179021e-02 +1.860000000000000142e+01 -3.834752579098461844e-02 +1.860999999999999943e+01 -5.060481662046732027e-02 +1.862000000000000099e+01 -6.112798998956456981e-02 +1.862999999999999901e+01 -6.970061036412515676e-02 +1.864000000000000057e+01 -7.617166655004073417e-02 +1.865000000000000213e+01 -8.045812325740560322e-02 +1.866000000000000014e+01 -8.254492811929119156e-02 +1.867000000000000171e+01 -8.248257327542422856e-02 +1.867999999999999972e+01 -8.038240843419583448e-02 +1.869000000000000128e+01 -7.640998751783331655e-02 +1.869999999999999929e+01 -7.077680011080711431e-02 +1.871000000000000085e+01 -6.373078942473572872e-02 +1.871999999999999886e+01 -5.554608883469741576e-02 +1.873000000000000043e+01 -4.651241875362606415e-02 +1.874000000000000199e+01 -3.692457525155158626e-02 +1.875000000000000000e+01 -2.707241291355958965e-02 +1.876000000000000156e+01 -1.723167932477255235e-02 +1.876999999999999957e+01 -7.656000312434931704e-03 +1.878000000000000114e+01 1.429752806347693974e-03 +1.878999999999999915e+01 9.834556417075559359e-03 +1.880000000000000071e+01 1.740470631677791535e-02 +1.880999999999999872e+01 2.402565984587306733e-02 +1.882000000000000028e+01 2.962230897425522508e-02 +1.883000000000000185e+01 3.415780537977496784e-02 +1.883999999999999986e+01 3.763110865271878519e-02 +1.885000000000000142e+01 4.007346685411888182e-02 +1.885999999999999943e+01 4.154406390362012924e-02 +1.887000000000000099e+01 4.212508056885260616e-02 +1.887999999999999901e+01 4.191641576204183789e-02 +1.889000000000000057e+01 4.103030361988099090e-02 +1.890000000000000213e+01 3.958604114487057624e-02 +1.891000000000000014e+01 3.770501307507753003e-02 +1.892000000000000171e+01 3.550616738969404607e-02 +1.892999999999999972e+01 3.310205877335936631e-02 +1.894000000000000128e+01 3.059554068876135444e-02 +1.894999999999999929e+01 2.807715146320821295e-02 +1.896000000000000085e+01 2.562320767424728848e-02 +1.896999999999999886e+01 2.329459041203364375e-02 +1.898000000000000043e+01 2.113618754165432628e-02 +1.899000000000000199e+01 1.917693826329953943e-02 +1.900000000000000000e+01 1.743041500457764154e-02 +1.901000000000000156e+01 1.589587151559988115e-02 +1.901999999999999957e+01 1.455968419236264126e-02 +1.903000000000000114e+01 1.339711511911808456e-02 +1.903999999999999915e+01 1.237432896568394121e-02 +1.905000000000000071e+01 1.145060055601492856e-02 +1.905999999999999872e+01 1.058065458388679492e-02 +1.907000000000000028e+01 9.717082713945916425e-03 +1.908000000000000185e+01 8.812785548272500380e-03 +1.908999999999999986e+01 7.823387338490498874e-03 +1.910000000000000142e+01 6.709569884947118486e-03 +1.910999999999999943e+01 5.439269110622846001e-03 +1.912000000000000099e+01 3.989673938647510416e-03 +1.912999999999999901e+01 2.348963179005756317e-03 +1.914000000000000057e+01 5.177131352093348798e-04 +1.915000000000000213e+01 -1.490092370859442050e-03 +1.916000000000000014e+01 -3.646515873443041764e-03 +1.917000000000000171e+01 -5.909644497275432125e-03 +1.917999999999999972e+01 -8.224142638417293247e-03 +1.919000000000000128e+01 -1.052241395285687803e-02 +1.919999999999999929e+01 -1.272638747073610854e-02 +1.921000000000000085e+01 -1.474991822594359445e-02 +1.921999999999999886e+01 -1.650176481558707914e-02 +1.923000000000000043e+01 -1.788907599748136221e-02 +1.924000000000000199e+01 -1.882128733571200238e-02 +1.925000000000000000e+01 -1.921429879620868350e-02 +1.926000000000000156e+01 -1.899477699689568894e-02 +1.926999999999999957e+01 -1.810440347143224202e-02 +1.928000000000000114e+01 -1.650387464599765985e-02 +1.928999999999999915e+01 -1.417645185430489729e-02 +1.930000000000000071e+01 -1.113086187233227817e-02 +1.930999999999999872e+01 -7.403360927909766707e-03 +1.932000000000000028e+01 -3.058798179655554048e-03 +1.933000000000000185e+01 1.809452076942918855e-03 +1.933999999999999986e+01 7.080777680802178425e-03 +1.935000000000000142e+01 1.260987328530951794e-02 +1.935999999999999943e+01 1.823052444440426481e-02 +1.937000000000000099e+01 2.376055402719607149e-02 +1.937999999999999901e+01 2.900779451646515530e-02 +1.939000000000000057e+01 3.377689311925374804e-02 +1.940000000000000213e+01 3.787670578742526745e-02 +1.941000000000000014e+01 4.112799412610197020e-02 +1.942000000000000171e+01 4.337110836253250251e-02 +1.942999999999999972e+01 4.447332219626361910e-02 +1.944000000000000128e+01 4.433548299392591624e-02 +1.944999999999999929e+01 4.289765426217157646e-02 +1.946000000000000085e+01 4.014345668758795976e-02 +1.946999999999999886e+01 3.610285852147786939e-02 +1.948000000000000043e+01 3.085322416258712286e-02 +1.949000000000000199e+01 2.451849916279548458e-02 +1.950000000000000000e+01 1.726648761461148721e-02 +1.951000000000000156e+01 9.304260527043237139e-03 +1.951999999999999957e+01 8.718175605100255375e-04 +1.953000000000000114e+01 -7.765794590360570668e-03 +1.953999999999999915e+01 -1.632762973407391599e-02 +1.955000000000000071e+01 -2.452691453588769915e-02 +1.955999999999999872e+01 -3.208165465491029378e-02 +1.957000000000000028e+01 -3.872535012037424396e-02 +1.958000000000000185e+01 -4.421738024128765016e-02 +1.958999999999999986e+01 -4.835262261394274869e-02 +1.960000000000000142e+01 -5.096989465825319671e-02 +1.960999999999999943e+01 -5.195884880267676031e-02 +1.962000000000000099e+01 -5.126501226306859338e-02 +1.962999999999999901e+01 -4.889273679896189578e-02 +1.964000000000000057e+01 -4.490590963423148063e-02 +1.965000000000000213e+01 -3.942637008038877428e-02 +1.966000000000000014e+01 -3.263007309448161253e-02 +1.967000000000000171e+01 -2.474113664884145317e-02 +1.967999999999999972e+01 -1.602400002172816099e-02 +1.969000000000000128e+01 -6.774000809728096713e-03 +1.969999999999999929e+01 2.693254075812801743e-03 +1.971000000000000085e+01 1.205329700990285906e-02 +1.971999999999999886e+01 2.098452889696322474e-02 +1.973000000000000043e+01 2.917979762458242088e-02 +1.974000000000000199e+01 3.635736238862802283e-02 +1.975000000000000000e+01 4.227080875949804778e-02 +1.976000000000000156e+01 4.671752630655426342e-02 +1.976999999999999957e+01 4.954542404680387091e-02 +1.978000000000000114e+01 5.065763595575598771e-02 +1.978999999999999915e+01 5.001505569837162712e-02 +1.980000000000000071e+01 4.763663261217952055e-02 +1.980999999999999872e+01 4.359745558298187829e-02 +1.982000000000000028e+01 3.802474355113658055e-02 +1.983000000000000185e+01 3.109194690491836124e-02 +1.983999999999999986e+01 2.301123925089580691e-02 +1.985000000000000142e+01 1.402474082691579881e-02 +1.985999999999999943e+01 4.394860636800368078e-03 +1.987000000000000099e+01 -5.605827490711450499e-03 +1.987999999999999901e+01 -1.570475017261525538e-02 +1.989000000000000057e+01 -2.563912538739281446e-02 +1.990000000000000213e+01 -3.516499019930960368e-02 +1.991000000000000014e+01 -4.406511948212138430e-02 +1.992000000000000171e+01 -5.215554673956752235e-02 +1.992999999999999972e+01 -5.929046603567155599e-02 +1.994000000000000128e+01 -6.536536968061974762e-02 +1.994999999999999929e+01 -7.031835611700278099e-02 +1.996000000000000085e+01 -7.412962277786659671e-02 +1.996999999999999886e+01 -7.681923598492589045e-02 +1.998000000000000043e+01 -7.844334090716598151e-02 +1.999000000000000199e+01 -7.908903627699155614e-02 +2.000000000000000000e+01 -7.886818854018284863e-02 +2.001000000000000156e+01 -7.791049657285541163e-02 +2.001999999999999957e+01 -7.635613987232048316e-02 +2.003000000000000114e+01 -7.434834974592352541e-02 +2.003999999999999915e+01 -7.202623469887642349e-02 +2.005000000000000071e+01 -6.951816882308065049e-02 +2.005999999999999872e+01 -6.693601696785368704e-02 +2.007000000000000028e+01 -6.437042478212325058e-02 +2.008000000000000185e+01 -6.188734770137294811e-02 +2.008999999999999986e+01 -5.952593322886621380e-02 +2.010000000000000142e+01 -5.729780819380041884e-02 +2.010999999999999943e+01 -5.518775984160407405e-02 +2.012000000000000099e+01 -5.315573930387625101e-02 +2.012999999999999901e+01 -5.114006067257916704e-02 +2.014000000000000057e+01 -4.906162071980862266e-02 +2.015000000000000213e+01 -4.682892502702319659e-02 +2.016000000000000014e+01 -4.434367723630145558e-02 +2.017000000000000171e+01 -4.150667015266785304e-02 +2.017999999999999972e+01 -3.822371085919377270e-02 +2.019000000000000128e+01 -3.441131672288848947e-02 +2.019999999999999929e+01 -3.000193458293865661e-02 +2.021000000000000085e+01 -2.494846053047244244e-02 +2.021999999999999886e+01 -1.922787117207873028e-02 +2.023000000000000043e+01 -1.284381750234770032e-02 +2.024000000000000199e+01 -5.828077681106685892e-03 +2.025000000000000000e+01 1.759186811882063137e-03 +2.026000000000000156e+01 9.830377956583803006e-03 +2.026999999999999957e+01 1.827256889439020024e-02 +2.028000000000000114e+01 2.695068492747029754e-02 +2.028999999999999915e+01 3.571162894212361050e-02 +2.030000000000000071e+01 4.438918692469676769e-02 +2.030999999999999872e+01 5.280952073924377599e-02 +2.032000000000000028e+01 6.079703467059037469e-02 +2.033000000000000185e+01 6.818038997271735902e-02 +2.033999999999999986e+01 7.479843805314524696e-02 +2.035000000000000142e+01 8.050584791292472731e-02 +2.035999999999999943e+01 8.517821669511303762e-02 +2.037000000000000099e+01 8.871647304491236952e-02 +2.037999999999999901e+01 9.105041057800672410e-02 +2.039000000000000057e+01 9.214122200632185455e-02 +2.040000000000000213e+01 9.198294212616309196e-02 +2.041000000000000014e+01 9.060274854823456570e-02 +2.042000000000000171e+01 8.806011127379922976e-02 +2.042999999999999972e+01 8.444482449175105820e-02 +2.044000000000000128e+01 7.987399479120818602e-02 +2.044999999999999929e+01 7.448809791574155514e-02 +2.046000000000000085e+01 6.844624988967626389e-02 +2.046999999999999886e+01 6.192086663107584932e-02 +2.048000000000000043e+01 5.509190801834713130e-02 +2.049000000000000199e+01 4.814091700520376632e-02 +2.050000000000000000e+01 4.124507123387349122e-02 +2.051000000000000156e+01 3.457146340186954825e-02 +2.051999999999999957e+01 2.827181739738607660e-02 +2.053000000000000114e+01 2.247783022787398430e-02 +2.053999999999999915e+01 1.729730560550812868e-02 +2.055000000000000071e+01 1.281121457540529245e-02 +2.055999999999999872e+01 9.071782879415939832e-03 +2.057000000000000028e+01 6.101665157082554469e-03 +2.058000000000000185e+01 3.894224085102047320e-03 +2.058999999999999986e+01 2.414889756428146173e-03 +2.060000000000000142e+01 1.603532670802154019e-03 +2.060999999999999943e+01 1.377744318277863891e-03 +2.062000000000000099e+01 1.636884085557967087e-03 +2.062999999999999901e+01 2.266721565359358474e-03 +2.064000000000000057e+01 3.144480565458916948e-03 +2.065000000000000213e+01 4.144076202503489681e-03 +2.066000000000000014e+01 5.141330124233210036e-03 +2.067000000000000171e+01 6.018951484420461892e-03 +2.067999999999999972e+01 6.671082778354735753e-03 +2.069000000000000128e+01 7.007229633256228073e-03 +2.069999999999999929e+01 6.955421364110236579e-03 +2.071000000000000085e+01 6.464483428064286309e-03 +2.071999999999999886e+01 5.505342407703758649e-03 +2.073000000000000043e+01 4.071327140536085826e-03 +2.074000000000000199e+01 2.177474220624414994e-03 +2.075000000000000000e+01 -1.411096427563507416e-04 +2.076000000000000156e+01 -2.831734002620598430e-03 +2.076999999999999957e+01 -5.827327708607280693e-03 +2.078000000000000114e+01 -9.050194843828629487e-03 +2.078999999999999915e+01 -1.241613563157832091e-02 +2.080000000000000071e+01 -1.583872887292333415e-02 +2.080999999999999872e+01 -1.923356643218477463e-02 +2.082000000000000028e+01 -2.252223406579380652e-02 +2.083000000000000185e+01 -2.563584639662469175e-02 +2.083999999999999986e+01 -2.851796651708388142e-02 +2.085000000000000142e+01 -3.112677156572959958e-02 +2.085999999999999943e+01 -3.343636326881906790e-02 +2.087000000000000099e+01 -3.543716513303218907e-02 +2.087999999999999901e+01 -3.713539371855447552e-02 +2.089000000000000057e+01 -3.855163804023142848e-02 +2.090000000000000213e+01 -3.971862639660110605e-02 +2.091000000000000014e+01 -4.067830160672895184e-02 +2.092000000000000171e+01 -4.147836168201507467e-02 +2.092999999999999972e+01 -4.216845155965737169e-02 +2.094000000000000128e+01 -4.279621119857483086e-02 +2.094999999999999929e+01 -4.340339502398168903e-02 +2.096000000000000085e+01 -4.402227681159558842e-02 +2.096999999999999886e+01 -4.467254254062157093e-02 +2.098000000000000043e+01 -4.535885194792224628e-02 +2.099000000000000199e+01 -4.606921841872821388e-02 +2.100000000000000000e+01 -4.677431784976573276e-02 +2.101000000000000156e+01 -4.742779201855788773e-02 +2.101999999999999957e+01 -4.796756290629033970e-02 +2.103000000000000114e+01 -4.831812368848160955e-02 +2.103999999999999915e+01 -4.839372217423384970e-02 +2.105000000000000071e+01 -4.810230577809813252e-02 +2.105999999999999872e+01 -4.735005595789319732e-02 +2.107000000000000028e+01 -4.604630651645107847e-02 +2.108000000000000185e+01 -4.410861597097260473e-02 +2.108999999999999986e+01 -4.146775063579843934e-02 +2.110000000000000142e+01 -3.807233294283239589e-02 +2.110999999999999943e+01 -3.389291909750681564e-02 +2.112000000000000099e+01 -2.892529114023724077e-02 +2.112999999999999901e+01 -2.319278000924712702e-02 +2.114000000000000057e+01 -1.674747692478961367e-02 +2.115000000000000213e+01 -9.670238531827737502e-03 +2.116000000000000014e+01 -2.069444575384151060e-03 +2.117000000000000171e+01 5.921476998530938660e-03 +2.117999999999999972e+01 1.414768631332105446e-02 +2.119000000000000128e+01 2.243760411853740200e-02 +2.119999999999999929e+01 3.060844661944864611e-02 +2.121000000000000085e+01 3.847240690164151211e-02 +2.121999999999999886e+01 4.584323485937524117e-02 +2.123000000000000043e+01 5.254294594080138187e-02 +2.124000000000000199e+01 5.840837931870845878e-02 +2.125000000000000000e+01 6.329732880889712976e-02 +2.126000000000000156e+01 6.709398494454178741e-02 +2.126999999999999957e+01 6.971345345774954128e-02 +2.128000000000000114e+01 7.110515285957577647e-02 +2.128999999999999915e+01 7.125494019807317170e-02 +2.130000000000000071e+01 7.018586734783706371e-02 +2.130999999999999872e+01 6.795752796453222166e-02 +2.132000000000000028e+01 6.466401493657904231e-02 +2.133000000000000185e+01 6.043056710921634878e-02 +2.133999999999999986e+01 5.540903960504051790e-02 +2.135000000000000142e+01 4.977238173954356276e-02 +2.135999999999999943e+01 4.370834812081641346e-02 +2.137000000000000099e+01 3.741270019232831312e-02 +2.137999999999999901e+01 3.108217584481645646e-02 +2.139000000000000057e+01 2.490751292260372923e-02 +2.140000000000000213e+01 1.906680816988331334e-02 +2.141000000000000014e+01 1.371947665805828102e-02 +2.142000000000000171e+01 9.001048811455825485e-03 +2.142999999999999972e+01 5.019004122196261443e-03 +2.144000000000000128e+01 1.849794279774823191e-03 +2.144999999999999929e+01 -4.628441339789520804e-04 +2.146000000000000085e+01 -1.908243624667794926e-03 +2.146999999999999886e+01 -2.507840338696520812e-03 +2.148000000000000043e+01 -2.312959431206696500e-03 +2.149000000000000199e+01 -1.401474011484326720e-03 +2.150000000000000000e+01 1.264931781957192582e-04 +2.151000000000000156e+01 2.153617940746575289e-03 +2.151999999999999957e+01 4.550936758903591228e-03 +2.153000000000000114e+01 7.183669422396917088e-03 +2.153999999999999915e+01 9.917042705820404772e-03 +2.155000000000000071e+01 1.262186138786207390e-02 +2.155999999999999872e+01 1.517958993663909989e-02 +2.157000000000000028e+01 1.748673560226556706e-02 +2.158000000000000185e+01 1.945836007338341139e-02 +2.158999999999999986e+01 2.103059048956373508e-02 +2.160000000000000142e+01 2.216204936520797461e-02 +2.160999999999999943e+01 2.283417456889664382e-02 +2.162000000000000099e+01 2.305045250554120517e-02 +2.162999999999999901e+01 2.283463766397752018e-02 +2.164000000000000057e+01 2.222807743330985214e-02 +2.165000000000000213e+01 2.128630049092114854e-02 +2.166000000000000014e+01 2.007505837271105625e-02 +2.167000000000000171e+01 1.866603169186772243e-02 +2.167999999999999972e+01 1.713242397002185877e-02 +2.169000000000000128e+01 1.554466676776300980e-02 +2.169999999999999929e+01 1.396644984082312003e-02 +2.171000000000000085e+01 1.245126999351775510e-02 +2.171999999999999886e+01 1.103966320988896375e-02 +2.173000000000000043e+01 9.757247989390678902e-03 +2.174000000000000199e+01 8.613665416601301583e-03 +2.175000000000000000e+01 7.602455429975999400e-03 +2.176000000000000156e+01 6.701861259312904412e-03 +2.176999999999999957e+01 5.876507365390153462e-03 +2.178000000000000114e+01 5.079852674351114164e-03 +2.178999999999999915e+01 4.257282531107157639e-03 +2.180000000000000071e+01 3.349671421338708526e-03 +2.180999999999999872e+01 2.297225610327828602e-03 +2.182000000000000028e+01 1.043401487904603011e-03 +2.183000000000000185e+01 -4.613077987931293996e-04 +2.183999999999999986e+01 -2.255917778731928412e-03 +2.185000000000000142e+01 -4.366013547285120186e-03 +2.185999999999999943e+01 -6.801483490096618331e-03 +2.187000000000000099e+01 -9.555049435274968334e-03 +2.187999999999999901e+01 -1.260167693515427609e-02 +2.189000000000000057e+01 -1.589890532437952808e-02 +2.190000000000000213e+01 -1.938809113724735550e-02 +2.191000000000000014e+01 -2.299651264409393117e-02 +2.192000000000000171e+01 -2.664023992398106139e-02 +2.192999999999999972e+01 -3.022763615147900859e-02 +2.194000000000000128e+01 -3.366332354124714626e-02 +2.194999999999999929e+01 -3.685242325519245271e-02 +2.196000000000000085e+01 -3.970486373279534520e-02 +2.196999999999999886e+01 -4.213954710578095980e-02 +2.198000000000000043e+01 -4.408816886683600278e-02 +2.199000000000000199e+01 -4.549850153937417402e-02 +2.200000000000000000e+01 -4.633697801067766797e-02 +2.201000000000000156e+01 -4.659044325513354151e-02 +2.201999999999999957e+01 -4.626698279609301606e-02 +2.203000000000000114e+01 -4.539578051673483217e-02 +2.203999999999999915e+01 -4.402600518091313864e-02 +2.205000000000000071e+01 -4.222477198282616195e-02 +2.205999999999999872e+01 -4.007427031140119167e-02 +2.207000000000000028e+01 -3.766818948521308968e-02 +2.208000000000000185e+01 -3.510760848697477149e-02 +2.208999999999999986e+01 -3.249654200334434195e-02 +2.210000000000000142e+01 -2.993735204665793487e-02 +2.210999999999999943e+01 -2.752624124368369118e-02 +2.212000000000000099e+01 -2.534904016636629551e-02 +2.212999999999999901e+01 -2.347748701232468815e-02 +2.214000000000000057e+01 -2.196617419392414908e-02 +2.215000000000000213e+01 -2.085030412073836034e-02 +2.216000000000000014e+01 -2.014435724411673886e-02 +2.217000000000000171e+01 -1.984173120579666230e-02 +2.217999999999999972e+01 -1.991536288055975601e-02 +2.219000000000000128e+01 -2.031929755617133473e-02 +2.219999999999999929e+01 -2.099112381120229326e-02 +2.221000000000000085e+01 -2.185515110234865013e-02 +2.221999999999999886e+01 -2.282617172219604182e-02 +2.223000000000000043e+01 -2.381362139166287931e-02 +2.224000000000000199e+01 -2.472593466498961348e-02 +2.225000000000000000e+01 -2.547488343685203396e-02 +2.226000000000000156e+01 -2.597968952268288334e-02 +2.226999999999999957e+01 -2.617071537191655375e-02 +2.228000000000000114e+01 -2.599255977704659909e-02 +2.228999999999999915e+01 -2.540641677357259945e-02 +2.230000000000000071e+01 -2.439159416583859888e-02 +2.230999999999999872e+01 -2.294613128947415107e-02 +2.232000000000000028e+01 -2.108650150791905112e-02 +2.233000000000000185e+01 -1.884643117846320631e-02 +2.233999999999999986e+01 -1.627491103647816725e-02 +2.235000000000000142e+01 -1.343351586833047354e-02 +2.235999999999999943e+01 -1.039318193257177635e-02 +2.237000000000000099e+01 -7.230617138221084698e-03 +2.237999999999999901e+01 -4.024535212153104204e-03 +2.239000000000000057e+01 -8.519111902528061402e-04 +2.240000000000000213e+01 2.215548714171764605e-03 +2.241000000000000014e+01 5.114544192186752138e-03 +2.242000000000000171e+01 7.792769863548237863e-03 +2.242999999999999972e+01 1.021083287922979095e-02 +2.244000000000000128e+01 1.234341363387339921e-02 +2.244999999999999929e+01 1.417962621340019061e-02 +2.246000000000000085e+01 1.572257921887190366e-02 +2.246999999999999886e+01 1.698818117213108866e-02 +2.248000000000000043e+01 1.800327547575577419e-02 +2.249000000000000199e+01 1.880322567819510057e-02 +2.250000000000000000e+01 1.942910066440831779e-02 +2.251000000000000156e+01 1.992462980923541405e-02 +2.251999999999999957e+01 2.033310901031925091e-02 +2.253000000000000114e+01 2.069443929423907258e-02 +2.253999999999999915e+01 2.104247034816394968e-02 +2.255000000000000071e+01 2.140280240654580599e-02 +2.255999999999999872e+01 2.179117247945978539e-02 +2.257000000000000028e+01 2.221251647380664135e-02 +2.258000000000000185e+01 2.266075924493186552e-02 +2.258999999999999986e+01 2.311934221844660561e-02 +2.260000000000000142e+01 2.356245529839285160e-02 +2.260999999999999943e+01 2.395689871827653278e-02 +2.262000000000000099e+01 2.426446359067385705e-02 +2.262999999999999901e+01 2.444468923808481089e-02 +2.264000000000000057e+01 2.445783267548588477e-02 +2.265000000000000213e+01 2.426787216040566381e-02 +2.266000000000000014e+01 2.384536331948485660e-02 +2.267000000000000171e+01 2.316997323801144731e-02 +2.267999999999999972e+01 2.223253472834178443e-02 +2.269000000000000128e+01 2.103648888980707080e-02 +2.269999999999999929e+01 1.959861764422147698e-02 +2.271000000000000085e+01 1.794900735348389093e-02 +2.271999999999999886e+01 1.613022773989249148e-02 +2.273000000000000043e+01 1.419575476068016262e-02 +2.274000000000000199e+01 1.220770937304012892e-02 +2.275000000000000000e+01 1.023402385038542882e-02 +2.276000000000000156e+01 8.345181241972315575e-03 +2.276999999999999957e+01 6.610699778659903311e-03 +2.278000000000000114e+01 5.095551003557080225e-03 +2.278999999999999915e+01 3.856707132239367911e-03 +2.280000000000000071e+01 2.940009165281444719e-03 +2.280999999999999872e+01 2.377532714084841514e-03 +2.282000000000000028e+01 2.185604069338664430e-03 +2.283000000000000185e+01 2.363585995959793448e-03 +2.283999999999999986e+01 2.893512815391156064e-03 +2.285000000000000142e+01 3.740609659462419776e-03 +2.285999999999999943e+01 4.854683746655215348e-03 +2.287000000000000099e+01 6.172328681850893818e-03 +2.287999999999999901e+01 7.619838659811623179e-03 +2.289000000000000057e+01 9.116690472043921523e-03 +2.290000000000000213e+01 1.057941952104474344e-02 +2.291000000000000014e+01 1.192569339545680555e-02 +2.292000000000000171e+01 1.307837423221813386e-02 +2.292999999999999972e+01 1.396935981141467914e-02 +2.294000000000000128e+01 1.454300322515403483e-02 +2.294999999999999929e+01 1.475893155790399501e-02 +2.296000000000000085e+01 1.459411425677080779e-02 +2.296999999999999886e+01 1.404407017609707146e-02 +2.298000000000000043e+01 1.312314663142967290e-02 +2.299000000000000199e+01 1.186385184257293841e-02 +2.300000000000000000e+01 1.031527132868909763e-02 +2.301000000000000156e+01 8.540646519686346735e-03 +2.301999999999999957e+01 6.614237522623622571e-03 +2.303000000000000114e+01 4.617629299884136451e-03 +2.303999999999999915e+01 2.635669487529339588e-03 +2.305000000000000071e+01 7.522451671498883502e-04 +2.305999999999999872e+01 -9.538859066265140086e-04 +2.307000000000000028e+01 -2.412997250872394965e-03 +2.308000000000000185e+01 -3.567830662858520376e-03 +2.308999999999999986e+01 -4.376394798441031637e-03 +2.310000000000000142e+01 -4.813985455746256498e-03 +2.310999999999999943e+01 -4.874328527239190495e-03 +2.312000000000000099e+01 -4.569792412785166763e-03 +2.312999999999999901e+01 -3.930665061268566463e-03 +2.314000000000000057e+01 -3.003539146175277126e-03 +2.315000000000000213e+01 -1.848894613596374897e-03 +2.316000000000000014e+01 -5.380085553428526259e-04 +2.317000000000000171e+01 8.506440746928450175e-04 +2.317999999999999972e+01 2.235310697855832918e-03 +2.319000000000000128e+01 3.534999536073147285e-03 +2.319999999999999929e+01 4.673429706737778321e-03 +2.321000000000000085e+01 5.582693624713303340e-03 +2.321999999999999886e+01 6.206449923731332911e-03 +2.323000000000000043e+01 6.502492053966833080e-03 +2.324000000000000199e+01 6.444572481205146017e-03 +2.325000000000000000e+01 6.023403051635423458e-03 +2.326000000000000156e+01 5.246796342362146197e-03 +2.326999999999999957e+01 4.138958266608578837e-03 +2.328000000000000114e+01 2.738986381468762506e-03 +2.328999999999999915e+01 1.098668889830913724e-03 +2.330000000000000071e+01 -7.202859019346376322e-04 +2.330999999999999872e+01 -2.649432709850650658e-03 +2.332000000000000028e+01 -4.617009752608767018e-03 +2.333000000000000185e+01 -6.551412871729940350e-03 +2.333999999999999986e+01 -8.384541178395816044e-03 +2.335000000000000142e+01 -1.005484354592703355e-02 +2.335999999999999943e+01 -1.150991573541678900e-02 +2.337000000000000099e+01 -1.270852616419033444e-02 +2.337999999999999901e+01 -1.362198260888185589e-02 +2.339000000000000057e+01 -1.423479047186851192e-02 +2.340000000000000213e+01 -1.454459343067064821e-02 +2.341000000000000014e+01 -1.456142706368286632e-02 +2.342000000000000171e+01 -1.430635318961018081e-02 +2.342999999999999972e+01 -1.380957514040107720e-02 +2.344000000000000128e+01 -1.310816027120730379e-02 +2.344999999999999929e+01 -1.224351434502875778e-02 +2.346000000000000085e+01 -1.125876212379474210e-02 +2.346999999999999886e+01 -1.019618916331922233e-02 +2.348000000000000043e+01 -9.094891578239576793e-03 +2.349000000000000199e+01 -7.988764050213332385e-03 +2.350000000000000000e+01 -6.904932696311070345e-03 +2.351000000000000156e+01 -5.862710085636995902e-03 +2.351999999999999957e+01 -4.873116485614763932e-03 +2.353000000000000114e+01 -3.938976326283610656e-03 +2.353999999999999915e+01 -3.055563963017426075e-03 +2.355000000000000071e+01 -2.211740127189695208e-03 +2.355999999999999872e+01 -1.391491856188925439e-03 +2.357000000000000028e+01 -5.757658023155310702e-04 +2.358000000000000185e+01 2.555311044807852738e-04 +2.358999999999999986e+01 1.121497782389937938e-03 +2.360000000000000142e+01 2.038305989740100445e-03 +2.360999999999999943e+01 3.017494121176170566e-03 +2.362000000000000099e+01 4.064598108745259321e-03 +2.362999999999999901e+01 5.178207603561526054e-03 +2.364000000000000057e+01 6.349508379798804621e-03 +2.365000000000000213e+01 7.562341224678921503e-03 +2.366000000000000014e+01 8.793775306434388483e-03 +2.367000000000000171e+01 1.001516207480317167e-02 +2.367999999999999972e+01 1.119360603683364729e-02 +2.369000000000000128e+01 1.229376301063760460e-02 +2.369999999999999929e+01 1.327985619091920887e-02 +2.371000000000000085e+01 1.411778673061800382e-02 +2.371999999999999886e+01 1.477720932431687839e-02 +2.373000000000000043e+01 1.523344480307200523e-02 +2.374000000000000199e+01 1.546911089479803547e-02 +2.375000000000000000e+01 1.547536850130768610e-02 +2.376000000000000156e+01 1.525270311674325856e-02 +2.376999999999999957e+01 1.481118803706332233e-02 +2.378000000000000114e+01 1.417020619091734560e-02 +2.378999999999999915e+01 1.335763898782858609e-02 +2.380000000000000071e+01 1.240856168724947806e-02 +2.380999999999999872e+01 1.136351363456255051e-02 +2.382000000000000028e+01 1.026643661988838746e-02 +2.383000000000000185e+01 9.162394161343767260e-03 +2.383999999999999986e+01 8.095197581190854280e-03 +2.385000000000000142e+01 7.105070596464679519e-03 +2.385999999999999943e+01 6.226482469655328714e-03 +2.387000000000000099e+01 5.486270680099189327e-03 +2.387999999999999901e+01 4.902158128854555708e-03 +2.389000000000000057e+01 4.481748016542188434e-03 +2.390000000000000213e+01 4.222053007762560477e-03 +2.391000000000000014e+01 4.109585649773276651e-03 +2.392000000000000171e+01 4.121005949625632103e-03 +2.392999999999999972e+01 4.224291306117642329e-03 +2.394000000000000128e+01 4.380365382477672577e-03 +2.394999999999999929e+01 4.545097602873666466e-03 +2.396000000000000085e+01 4.671565147895272337e-03 +2.396999999999999886e+01 4.712455697222792464e-03 +2.398000000000000043e+01 4.622482446851836589e-03 +2.399000000000000199e+01 4.360683438278722089e-03 +2.400000000000000000e+01 3.892484887450000514e-03 +2.401000000000000156e+01 3.191422494039887307e-03 +2.401999999999999957e+01 2.240434773858540965e-03 +2.403000000000000114e+01 1.032667093700078429e-03 +2.403999999999999915e+01 -4.282471469995349214e-04 +2.405000000000000071e+01 -2.128432461049360562e-03 +2.406000000000000227e+01 -4.044519501560483142e-03 +2.407000000000000028e+01 -6.144843435592063814e-03 +2.408000000000000185e+01 -8.391016390064421140e-03 +2.408999999999999986e+01 -1.073977864727952009e-02 +2.410000000000000142e+01 -1.314501974924011177e-02 +2.410999999999999943e+01 -1.555985358806490429e-02 +2.412000000000000099e+01 -1.793863124035757067e-02 +2.412999999999999901e+01 -2.023878168052420379e-02 +2.414000000000000057e+01 -2.242238312867017927e-02 +2.415000000000000213e+01 -2.445738584474348859e-02 +2.416000000000000014e+01 -2.631842955656258851e-02 +2.417000000000000171e+01 -2.798722405158461310e-02 +2.417999999999999972e+01 -2.945248825712929938e-02 +2.419000000000000128e+01 -3.070946979915609165e-02 +2.419999999999999929e+01 -3.175909200452693704e-02 +2.421000000000000085e+01 -3.260679714829961551e-02 +2.421999999999999886e+01 -3.326117219244945078e-02 +2.423000000000000043e+01 -3.373245533007034752e-02 +2.424000000000000199e+01 -3.403102767269673007e-02 +2.425000000000000000e+01 -3.416599409082134164e-02 +2.426000000000000156e+01 -3.414395060240797697e-02 +2.426999999999999957e+01 -3.396802323110926364e-02 +2.428000000000000114e+01 -3.363724569340564852e-02 +2.428999999999999915e+01 -3.314632168107701365e-02 +2.430000000000000071e+01 -3.248579317080518142e-02 +2.431000000000000227e+01 -3.164261055610541329e-02 +2.432000000000000028e+01 -3.060107496718260378e-02 +2.433000000000000185e+01 -2.934409941148856393e-02 +2.433999999999999986e+01 -2.785471471683922257e-02 +2.435000000000000142e+01 -2.611772989198584902e-02 +2.435999999999999943e+01 -2.412144538752015663e-02 +2.437000000000000099e+01 -2.185931248878617700e-02 +2.437999999999999901e+01 -1.933143301066538033e-02 +2.439000000000000057e+01 -1.654580054352989063e-02 +2.440000000000000213e+01 -1.351919732423363836e-02 +2.441000000000000014e+01 -1.027767865346041788e-02 +2.442000000000000171e+01 -6.856598647592422602e-03 +2.442999999999999972e+01 -3.300155772568951450e-03 +2.444000000000000128e+01 3.395373202977270874e-04 +2.444999999999999929e+01 4.003829103604663459e-03 +2.446000000000000085e+01 7.629294525851390216e-03 +2.446999999999999886e+01 1.114981359191550420e-02 +2.448000000000000043e+01 1.449886867291916813e-02 +2.449000000000000199e+01 1.761195334770851786e-02 +2.450000000000000000e+01 2.042897854336172409e-02 +2.451000000000000156e+01 2.289656073256286090e-02 +2.451999999999999957e+01 2.497008198925768779e-02 +2.453000000000000114e+01 2.661542249653966671e-02 +2.453999999999999915e+01 2.781028202889863563e-02 +2.455000000000000071e+01 2.854502710555714001e-02 +2.456000000000000227e+01 2.882302382555855524e-02 +2.457000000000000028e+01 2.866044158294524941e-02 +2.458000000000000185e+01 2.808553857137056214e-02 +2.458999999999999986e+01 2.713746486436330319e-02 +2.460000000000000142e+01 2.586464160453286198e-02 +2.460999999999999943e+01 2.432279429723582104e-02 +2.462000000000000099e+01 2.257273341818869655e-02 +2.462999999999999901e+01 2.067798579782833060e-02 +2.464000000000000057e+01 1.870238510231815587e-02 +2.465000000000000213e+01 1.670772905784593393e-02 +2.466000000000000014e+01 1.475160502604083365e-02 +2.467000000000000171e+01 1.288547458359014762e-02 +2.467999999999999972e+01 1.115309259163873093e-02 +2.469000000000000128e+01 9.589317771771627488e-03 +2.469999999999999929e+01 8.219351100328956689e-03 +2.471000000000000085e+01 7.058416546938372713e-03 +2.471999999999999886e+01 6.111876995740281489e-03 +2.473000000000000043e+01 5.375757736898541424e-03 +2.474000000000000199e+01 4.837631734755623754e-03 +2.475000000000000000e+01 4.477805842406871323e-03 +2.476000000000000156e+01 4.270735912666281421e-03 +2.476999999999999957e+01 4.186591789732254341e-03 +2.478000000000000114e+01 4.192890640476317279e-03 +2.478999999999999915e+01 4.256118931121094864e-03 +2.480000000000000071e+01 4.343269264352705820e-03 +2.481000000000000227e+01 4.423227737999844457e-03 +2.482000000000000028e+01 4.467959765467232648e-03 +2.483000000000000185e+01 4.453456574616082748e-03 +2.483999999999999986e+01 4.360419962343833021e-03 +2.485000000000000142e+01 4.174678390555787606e-03 +2.485999999999999943e+01 3.887342263732742470e-03 +2.487000000000000099e+01 3.494719411928017168e-03 +2.487999999999999901e+01 2.998022730881873613e-03 +2.489000000000000057e+01 2.402910084659189670e-03 +2.490000000000000213e+01 1.718901630984753922e-03 +2.491000000000000014e+01 9.587215651258593554e-04 +2.492000000000000171e+01 1.376099805852859742e-04 +2.492999999999999972e+01 -7.273536073677620145e-04 +2.494000000000000128e+01 -1.617880088551059640e-03 +2.494999999999999929e+01 -2.515027331425402288e-03 +2.496000000000000085e+01 -3.399666429383094157e-03 +2.496999999999999886e+01 -4.252850496451172566e-03 +2.498000000000000043e+01 -5.056088534455626705e-03 +2.499000000000000199e+01 -5.791535554045451444e-03 +2.500000000000000000e+01 -6.442117215922481960e-03 +2.501000000000000156e+01 -6.991612300946668107e-03 +2.501999999999999957e+01 -7.424719005287012778e-03 +2.503000000000000114e+01 -7.727131247214657529e-03 +2.503999999999999915e+01 -7.885648899880035381e-03 +2.505000000000000071e+01 -7.888341335839483062e-03 +2.506000000000000227e+01 -7.724777245988347259e-03 +2.507000000000000028e+01 -7.386325871663422006e-03 +2.508000000000000185e+01 -6.866526152933133571e-03 +2.508999999999999986e+01 -6.161511496518729501e-03 +2.510000000000000142e+01 -5.270469565814190488e-03 +2.510999999999999943e+01 -4.196109326324234945e-03 +2.512000000000000099e+01 -2.945102107108292944e-03 +2.512999999999999901e+01 -1.528460118879787456e-03 +2.514000000000000057e+01 3.818497710276868288e-05 +2.515000000000000213e+01 1.734439066681937695e-03 +2.516000000000000014e+01 3.535169348663267860e-03 +2.517000000000000171e+01 5.410719206692694676e-03 +2.517999999999999972e+01 7.327329553179104567e-03 +2.519000000000000128e+01 9.247771413827050868e-03 +2.519999999999999929e+01 1.113218289400984100e-02 +2.521000000000000085e+01 1.293909168540063187e-02 +2.521999999999999886e+01 1.462659264556484366e-02 +2.523000000000000043e+01 1.615363942297253635e-02 +2.524000000000000199e+01 1.748140026677610925e-02 +2.525000000000000000e+01 1.857462162931031863e-02 +2.526000000000000156e+01 1.940293939313443225e-02 +2.526999999999999957e+01 1.994207683652676061e-02 +2.528000000000000114e+01 2.017487092677454005e-02 +2.528999999999999915e+01 2.009207415485045681e-02 +2.530000000000000071e+01 1.969288767685980698e-02 +2.531000000000000227e+01 1.898519261789757481e-02 +2.532000000000000028e+01 1.798545948847617149e-02 +2.533000000000000185e+01 1.671833011023367635e-02 +2.533999999999999986e+01 1.521588151197120903e-02 +2.535000000000000142e+01 1.351659616499069523e-02 +2.535999999999999943e+01 1.166407690336255902e-02 +2.537000000000000099e+01 9.705557190291298417e-03 +2.537999999999999901e+01 7.690267398716908211e-03 +2.539000000000000057e+01 5.667724945646991121e-03 +2.540000000000000213e+01 3.686020073805446919e-03 +2.541000000000000014e+01 1.790169598596036979e-03 +2.542000000000000171e+01 2.060799889073028712e-05 +2.542999999999999972e+01 -1.588121027961163180e-03 +2.544000000000000128e+01 -3.008418686060307205e-03 +2.544999999999999929e+01 -4.220388805902889826e-03 +2.546000000000000085e+01 -5.212270829062412222e-03 +2.546999999999999886e+01 -5.980534673317357622e-03 +2.548000000000000043e+01 -6.529639556615389473e-03 +2.549000000000000199e+01 -6.871474040705704243e-03 +2.550000000000000000e+01 -7.024508718233535634e-03 +2.551000000000000156e+01 -7.012705428936158447e-03 +2.551999999999999957e+01 -6.864237064553468937e-03 +2.553000000000000114e+01 -6.610079448775145125e-03 +2.553999999999999915e+01 -6.282541143800168815e-03 +2.555000000000000071e+01 -5.913798186859739112e-03 +2.556000000000000227e+01 -5.534498711332844732e-03 +2.557000000000000028e+01 -5.172497331850129700e-03 +2.558000000000000185e+01 -4.851771394162067083e-03 +2.558999999999999986e+01 -4.591561160010717429e-03 +2.560000000000000142e+01 -4.405764267661854000e-03 +2.560999999999999943e+01 -4.302602004119439154e-03 +2.562000000000000099e+01 -4.284561705219147934e-03 +2.562999999999999901e+01 -4.348606625658367648e-03 +2.564000000000000057e+01 -4.486632520669282809e-03 +2.565000000000000213e+01 -4.686139517096326451e-03 +2.566000000000000014e+01 -4.931079095534706552e-03 +2.567000000000000171e+01 -5.202829514874465940e-03 +2.567999999999999972e+01 -5.481249015962250289e-03 +2.569000000000000128e+01 -5.745754737383248698e-03 +2.569999999999999929e+01 -5.976376423242145582e-03 +2.571000000000000085e+01 -6.154737532673946153e-03 +2.571999999999999886e+01 -6.264921991801456619e-03 +2.573000000000000043e+01 -6.294192185334434100e-03 +2.574000000000000199e+01 -6.233532419794018085e-03 +2.575000000000000000e+01 -6.078001513395156659e-03 +2.576000000000000156e+01 -5.826887871132672286e-03 +2.576999999999999957e+01 -5.483669892465225897e-03 +2.578000000000000114e+01 -5.055793373515410707e-03 +2.578999999999999915e+01 -4.554285306879401161e-03 +2.580000000000000071e+01 -3.993229827247704415e-03 +2.581000000000000227e+01 -3.389136769066512355e-03 +2.582000000000000028e+01 -2.760236259714183866e-03 +2.583000000000000185e+01 -2.125733934821166099e-03 +2.583999999999999986e+01 -1.505060793717137059e-03 +2.585000000000000142e+01 -9.171495618966674567e-04 +2.585999999999999943e+01 -3.797659169069432820e-04 +2.587000000000000099e+01 9.108165622483220937e-05 +2.587999999999999901e+01 4.816349662831529289e-04 +2.589000000000000057e+01 7.807695393494091607e-04 +2.590000000000000213e+01 9.802616027961216782e-04 +2.591000000000000014e+01 1.074937522153237082e-03 +2.592000000000000171e+01 1.062709743061770540e-03 +2.592999999999999972e+01 9.445077309503793544e-04 +2.594000000000000128e+01 7.241159563644909659e-04 +2.594999999999999929e+01 4.079335430983611769e-04 +2.596000000000000085e+01 4.671744466678857769e-06 +2.596999999999999886e+01 -4.749940319606894791e-04 +2.598000000000000043e+01 -1.018801284796472164e-03 +2.599000000000000199e+01 -1.613291329990310672e-03 +2.600000000000000000e+01 -2.244200572243769745e-03 +2.601000000000000156e+01 -2.896840814868126019e-03 +2.601999999999999957e+01 -3.556459684085423387e-03 +2.603000000000000114e+01 -4.208574681095255364e-03 +2.603999999999999915e+01 -4.839276679607564663e-03 +2.605000000000000071e+01 -5.435500713930255419e-03 +2.606000000000000227e+01 -5.985263544102805561e-03 +2.607000000000000028e+01 -6.477868671939139220e-03 +2.608000000000000185e+01 -6.904080189314097324e-03 +2.608999999999999986e+01 -7.256267082971075595e-03 +2.610000000000000142e+01 -7.528519451335542734e-03 +2.610999999999999943e+01 -7.716737592267109910e-03 +2.612000000000000099e+01 -7.818694203193388495e-03 +2.612999999999999901e+01 -7.834069117002981017e-03 +2.614000000000000057e+01 -7.764455202749005053e-03 +2.615000000000000213e+01 -7.613333407953194569e-03 +2.616000000000000014e+01 -7.386014511495503712e-03 +2.617000000000000171e+01 -7.089545074051201851e-03 +2.617999999999999972e+01 -6.732575368044934130e-03 +2.619000000000000128e+01 -6.325187761304875388e-03 +2.619999999999999929e+01 -5.878685104679382163e-03 +2.621000000000000085e+01 -5.405340088025188498e-03 +2.621999999999999886e+01 -4.918108206180789484e-03 +2.623000000000000043e+01 -4.430308819326898850e-03 +2.624000000000000199e+01 -3.955280684023798794e-03 +2.625000000000000000e+01 -3.506020148654834419e-03 +2.626000000000000156e+01 -3.094811824602953891e-03 +2.626999999999999957e+01 -2.732862844570904063e-03 +2.628000000000000114e+01 -2.429952700354833569e-03 +2.628999999999999915e+01 -2.194111033603958916e-03 +2.630000000000000071e+01 -2.031335582582621032e-03 +2.631000000000000227e+01 -1.945361743205590004e-03 +2.632000000000000028e+01 -1.937493894746766462e-03 +2.633000000000000185e+01 -2.006506811451159219e-03 +2.633999999999999986e+01 -2.148623202784438659e-03 +2.635000000000000142e+01 -2.357570794266086733e-03 +2.635999999999999943e+01 -2.624719494416080743e-03 +2.637000000000000099e+01 -2.939296221245887158e-03 +2.637999999999999901e+01 -3.288672019651607895e-03 +2.639000000000000057e+01 -3.658713323151307432e-03 +2.640000000000000213e+01 -4.034186725246457876e-03 +2.641000000000000014e+01 -4.399204537381696742e-03 +2.642000000000000171e+01 -4.737696812182386023e-03 +2.642999999999999972e+01 -5.033894467195673336e-03 +2.644000000000000128e+01 -5.272807694058417524e-03 +2.644999999999999929e+01 -5.440683990791647488e-03 +2.646000000000000085e+01 -5.525430892874107561e-03 +2.646999999999999886e+01 -5.516989759395796167e-03 +2.648000000000000043e+01 -5.407648728255292150e-03 +2.649000000000000199e+01 -5.192285106337484434e-03 +2.650000000000000000e+01 -4.868529911161354612e-03 +2.651000000000000156e+01 -4.436849926253515382e-03 +2.651999999999999957e+01 -3.900545367864537497e-03 +2.653000000000000114e+01 -3.265663983670797840e-03 +2.653999999999999915e+01 -2.540835018598715418e-03 +2.655000000000000071e+01 -1.737028905303198562e-03 +2.656000000000000227e+01 -8.672506959393977638e-04 +2.657000000000000028e+01 5.382290794659076223e-05 +2.658000000000000185e+01 1.010251588709937341e-03 +2.658999999999999986e+01 1.985272071251796729e-03 +2.660000000000000142e+01 2.961758262355062687e-03 +2.660999999999999943e+01 3.922687408536413255e-03 +2.662000000000000099e+01 4.851598868475889663e-03 +2.662999999999999901e+01 5.733032508331045544e-03 +2.664000000000000057e+01 6.552934466599336268e-03 +2.665000000000000213e+01 7.299019068395600288e-03 +2.666000000000000014e+01 7.961076962961787656e-03 +2.667000000000000171e+01 8.531221078607551314e-03 +2.667999999999999972e+01 9.004063700880783616e-03 +2.669000000000000128e+01 9.376819847716783701e-03 +2.669999999999999929e+01 9.649334103895476286e-03 +2.671000000000000085e+01 9.824030150193282379e-03 +2.671999999999999886e+01 9.905784340808456920e-03 +2.673000000000000043e+01 9.901726805635264680e-03 +2.674000000000000199e+01 9.820975635946291304e-03 +2.675000000000000000e+01 9.674311704883574795e-03 +2.676000000000000156e+01 9.473803525052780158e-03 +2.676999999999999957e+01 9.232393198742349164e-03 +2.678000000000000114e+01 8.963455915069088592e-03 +2.678999999999999915e+01 8.680346535010737344e-03 +2.680000000000000071e+01 8.395947526345193951e-03 +2.681000000000000227e+01 8.122232817224562390e-03 +2.682000000000000028e+01 7.869861991133869986e-03 +2.683000000000000185e+01 7.647818619851822451e-03 +2.683999999999999986e+01 7.463105415090513436e-03 +2.685000000000000142e+01 7.320507280321662986e-03 +2.685999999999999943e+01 7.222431290120010124e-03 +2.687000000000000099e+01 7.168830164299752790e-03 +2.687999999999999901e+01 7.157213008338229356e-03 +2.689000000000000057e+01 7.182744050105161794e-03 +2.690000000000000213e+01 7.238426923907505250e-03 +2.691000000000000014e+01 7.315368856281334077e-03 +2.692000000000000171e+01 7.403116024254335903e-03 +2.692999999999999972e+01 7.490048518342195573e-03 +2.694000000000000128e+01 7.563820877793708992e-03 +2.694999999999999929e+01 7.611832194278992866e-03 +2.696000000000000085e+01 7.621708403682138540e-03 +2.696999999999999886e+01 7.581778684671513883e-03 +2.698000000000000043e+01 7.481527907544384230e-03 +2.699000000000000199e+01 7.312007849327380703e-03 +2.700000000000000000e+01 7.066191395545521128e-03 +2.701000000000000156e+01 6.739256137253859212e-03 +2.701999999999999957e+01 6.328786561189604642e-03 +2.703000000000000114e+01 5.834887306705922351e-03 +2.703999999999999915e+01 5.260203586817471105e-03 +2.705000000000000071e+01 4.609848681761698902e-03 +2.706000000000000227e+01 3.891242240646462878e-03 +2.707000000000000028e+01 3.113866794009986956e-03 +2.708000000000000185e+01 2.288953216951681701e-03 +2.708999999999999986e+01 1.429108731783755885e-03 +2.710000000000000142e+01 5.479032665951651896e-04 +2.710999999999999943e+01 -3.405685141185688125e-04 +2.712000000000000099e+01 -1.222131488068680738e-03 +2.712999999999999901e+01 -2.082962770192359377e-03 +2.714000000000000057e+01 -2.909995874598300322e-03 +2.715000000000000213e+01 -3.691281103327246748e-03 +2.716000000000000014e+01 -4.416289306720627521e-03 +2.717000000000000171e+01 -5.076149096171560585e-03 +2.717999999999999972e+01 -5.663810924818311367e-03 +2.719000000000000128e+01 -6.174135013471972536e-03 +2.719999999999999929e+01 -6.603903705418908560e-03 +2.721000000000000085e+01 -6.951762300992907900e-03 +2.721999999999999886e+01 -7.218095577552723421e-03 +2.723000000000000043e+01 -7.404849886361935044e-03 +2.724000000000000199e+01 -7.515312805967728875e-03 +2.725000000000000000e+01 -7.553863727575383692e-03 +2.726000000000000156e+01 -7.525709393987289192e-03 +2.726999999999999957e+01 -7.436618296476176816e-03 +2.728000000000000114e+01 -7.292666979590656587e-03 +2.728999999999999915e+01 -7.100009781031914498e-03 +2.730000000000000071e+01 -6.864681445408136670e-03 +2.731000000000000227e+01 -6.592439530804789297e-03 +2.732000000000000028e+01 -6.288650732217657829e-03 +2.733000000000000185e+01 -5.958222343055288167e-03 +2.733999999999999986e+01 -5.605577239610197611e-03 +2.735000000000000142e+01 -5.234668166157565618e-03 +2.735999999999999943e+01 -4.849024871378497525e-03 +2.737000000000000099e+01 -4.451825922185345848e-03 +2.737999999999999901e+01 -4.045985891957568775e-03 +2.739000000000000057e+01 -3.634248141486161841e-03 +2.740000000000000213e+01 -3.219273596276537620e-03 +2.741000000000000014e+01 -2.803716749416446802e-03 +2.742000000000000171e+01 -2.390281518101289044e-03 +2.742999999999999972e+01 -1.981751456585146339e-03 +2.744000000000000128e+01 -1.580991049433955967e-03 +2.744999999999999929e+01 -1.190917228672189578e-03 +2.746000000000000085e+01 -8.144427160931099049e-04 +2.746999999999999886e+01 -4.543951256048772095e-04 +2.748000000000000043e+01 -1.134178163223446568e-04 +2.749000000000000199e+01 2.061398716459104106e-04 +2.750000000000000000e+01 5.023342501534464651e-04 +2.751000000000000156e+01 7.737315222784594626e-04 +2.751999999999999957e+01 1.019495494124777807e-03 +2.753000000000000114e+01 1.239450396483682704e-03 +2.753999999999999915e+01 1.434111826298522293e-03 +2.755000000000000071e+01 1.604680713061214714e-03 +2.756000000000000227e+01 1.752997519870848906e-03 +2.757000000000000028e+01 1.881456462998650154e-03 +2.758000000000000185e+01 1.992882218213275648e-03 +2.758999999999999986e+01 2.090374208339108430e-03 +2.760000000000000142e+01 2.177125966629926083e-03 +2.760999999999999943e+01 2.256229087562159133e-03 +2.762000000000000099e+01 2.330472773830235232e-03 +2.762999999999999901e+01 2.402150857984909713e-03 +2.764000000000000057e+01 2.472888347629730033e-03 +2.765000000000000213e+01 2.543498982807515865e-03 +2.766000000000000014e+01 2.613884015284963312e-03 +2.767000000000000171e+01 2.682980476870246590e-03 +2.767999999999999972e+01 2.748764693116447812e-03 +2.769000000000000128e+01 2.808313851049253854e-03 +2.769999999999999929e+01 2.857925204539831995e-03 +2.771000000000000085e+01 2.893289178160268933e-03 +2.771999999999999886e+01 2.909709398734231303e-03 +2.773000000000000043e+01 2.902359731630599175e-03 +2.774000000000000199e+01 2.866565901928538537e-03 +2.775000000000000000e+01 2.798097393456952173e-03 +2.776000000000000156e+01 2.693454163508368377e-03 +2.776999999999999957e+01 2.550132372764275270e-03 +2.778000000000000114e+01 2.366853847867140571e-03 +2.778999999999999915e+01 2.143745362161973006e-03 +2.780000000000000071e+01 1.882455983917371949e-03 +2.781000000000000227e+01 1.586203601999817189e-03 +2.782000000000000028e+01 1.259745157791185548e-03 +2.783000000000000185e+01 9.092689168040950665e-04 +2.783999999999999986e+01 5.422111084494895313e-04 +2.785000000000000142e+01 1.670032382291646532e-04 +2.785999999999999943e+01 -2.072398783864649494e-04 +2.787000000000000099e+01 -5.710779994113426589e-04 +2.787999999999999901e+01 -9.151331999819664739e-04 +2.789000000000000057e+01 -1.230489490488841358e-03 +2.790000000000000213e+01 -1.509085275974719493e-03 +2.791000000000000014e+01 -1.744079525307965688e-03 +2.792000000000000171e+01 -1.930173389036499501e-03 +2.792999999999999972e+01 -2.063870812295472406e-03 +2.794000000000000128e+01 -2.143664353883659775e-03 +2.794999999999999929e+01 -2.170135818048579083e-03 +2.796000000000000085e+01 -2.145965268161498327e-03 +2.796999999999999886e+01 -2.075846325102324082e-03 +2.798000000000000043e+01 -1.966310143404406165e-03 +2.799000000000000199e+01 -1.825464879399212471e-03 +2.800000000000000000e+01 -1.662661595782143845e-03 +2.801000000000000156e+01 -1.488101177625345559e-03 +2.801999999999999957e+01 -1.312399781657354629e-03 +2.803000000000000114e+01 -1.146132454067924763e-03 +2.803999999999999915e+01 -9.993757240070665852e-04 +2.805000000000000071e+01 -8.812701495705131715e-04 +2.806000000000000227e+01 -7.996229499357235563e-04 +2.807000000000000028e+01 -7.605690417096600334e-04 +2.808000000000000185e+01 -7.683060982238055668e-04 +2.808999999999999986e+01 -8.249158000759559657e-04 +2.810000000000000142e+01 -9.302794132435704411e-04 +2.810999999999999943e+01 -1.082091415326162870e-03 +2.812000000000000099e+01 -1.275970306796543217e-03 +2.812999999999999901e+01 -1.505661215519825446e-03 +2.814000000000000057e+01 -1.763320648277522237e-03 +2.815000000000000213e+01 -2.039869966447037126e-03 +2.816000000000000014e+01 -2.325401043578439412e-03 +2.817000000000000171e+01 -2.609615245480562985e-03 +2.817999999999999972e+01 -2.882275463805719640e-03 +2.819000000000000128e+01 -3.133650491334400660e-03 +2.819999999999999929e+01 -3.354931563515334454e-03 +2.821000000000000085e+01 -3.538602370569064650e-03 +2.821999999999999886e+01 -3.678746186850375115e-03 +2.823000000000000043e+01 -3.771276847666851263e-03 +2.824000000000000199e+01 -3.814083972806586384e-03 +2.825000000000000000e+01 -3.807086909204749573e-03 +2.826000000000000156e+01 -3.752196143924118460e-03 +2.826999999999999957e+01 -3.653185218389309440e-03 +2.828000000000000114e+01 -3.515480253178730665e-03 +2.828999999999999915e+01 -3.345877881726952441e-03 +2.830000000000000071e+01 -3.152205523113954435e-03 +2.831000000000000227e+01 -2.942940362377922166e-03 +2.832000000000000028e+01 -2.726805048441765036e-03 +2.833000000000000185e+01 -2.512358903425594443e-03 +2.833999999999999986e+01 -2.307603341671275992e-03 +2.835000000000000142e+01 -2.119619243629260533e-03 +2.835999999999999943e+01 -1.954252280042112835e-03 +2.837000000000000099e+01 -1.815859732520019431e-03 +2.837999999999999901e+01 -1.707129335219990159e-03 +2.839000000000000057e+01 -1.628977220180513998e-03 +2.840000000000000213e+01 -1.580528353316153559e-03 +2.841000000000000014e+01 -1.559179073710113697e-03 +2.842000000000000171e+01 -1.560737670346660968e-03 +2.842999999999999972e+01 -1.579635512614025253e-03 +2.844000000000000128e+01 -1.609198243279549335e-03 +2.844999999999999929e+01 -1.641964071024681893e-03 +2.846000000000000085e+01 -1.670034362630467683e-03 +2.846999999999999886e+01 -1.685440598814668062e-03 +2.848000000000000043e+01 -1.680511355819434014e-03 +2.849000000000000199e+01 -1.648223305107068826e-03 +2.850000000000000000e+01 -1.582521252250777269e-03 +2.851000000000000156e+01 -1.478593897843240778e-03 +2.851999999999999957e+01 -1.333094207052997306e-03 +2.853000000000000114e+01 -1.144295907349289054e-03 +2.853999999999999915e+01 -9.121805677588120352e-04 +2.855000000000000071e+01 -6.384528101267799693e-04 +2.856000000000000227e+01 -3.264843227086107426e-04 +2.857000000000000028e+01 1.880964750870202709e-05 +2.858000000000000185e+01 3.911548824179348401e-04 +2.858999999999999986e+01 7.831550075438116097e-04 +2.860000000000000142e+01 1.186569716127499263e-03 +2.860999999999999943e+01 1.592622136617693205e-03 +2.862000000000000099e+01 1.992322191824324584e-03 +2.862999999999999901e+01 2.376792494210804626e-03 +2.864000000000000057e+01 2.737583593514387841e-03 +2.865000000000000213e+01 3.066966209767236964e-03 +2.866000000000000014e+01 3.358189393468343550e-03 +2.867000000000000171e+01 3.605695283404699355e-03 +2.867999999999999972e+01 3.805283194011023409e-03 +2.869000000000000128e+01 3.954218059989049114e-03 +2.869999999999999929e+01 4.051280691953202187e-03 +2.871000000000000085e+01 4.096759746502785099e-03 +2.871999999999999886e+01 4.092387685144102324e-03 +2.873000000000000043e+01 4.041225191370271912e-03 +2.874000000000000199e+01 3.947500450658231706e-03 +2.875000000000000000e+01 3.816411301043909875e-03 +2.876000000000000156e+01 3.653899479552883897e-03 +2.876999999999999957e+01 3.466406983308267277e-03 +2.878000000000000114e+01 3.260624917914082578e-03 +2.878999999999999915e+01 3.043245118882735665e-03 +2.880000000000000071e+01 2.820724325130048900e-03 +2.881000000000000227e+01 2.599069791582382834e-03 +2.882000000000000028e+01 2.383654002196411263e-03 +2.883000000000000185e+01 2.179064646794019039e-03 +2.883999999999999986e+01 1.988994326932094683e-03 +2.885000000000000142e+01 1.816172635185049102e-03 +2.885999999999999943e+01 1.662341387559722501e-03 +2.887000000000000099e+01 1.528271960300073284e-03 +2.887999999999999901e+01 1.413821964101163271e-03 +2.889000000000000057e+01 1.318026948892225998e-03 +2.890000000000000213e+01 1.239221529599691778e-03 +2.891000000000000014e+01 1.175183303631990644e-03 +2.892000000000000171e+01 1.123292228678964997e-03 +2.892999999999999972e+01 1.080697763468022998e-03 +2.894000000000000128e+01 1.044486049234360147e-03 +2.894999999999999929e+01 1.011839716604155193e-03 +2.896000000000000085e+01 9.801835170683381553e-04 +2.896999999999999886e+01 9.473098655248183945e-04 +2.898000000000000043e+01 9.114794931137687635e-04 +2.899000000000000199e+01 8.714936941940946633e-04 +2.900000000000000000e+01 8.267360457768288410e-04 +2.901000000000000156e+01 7.771829197412261732e-04 +2.901999999999999957e+01 7.233835320082302985e-04 +2.903000000000000114e+01 6.664116175689605969e-04 +2.903999999999999915e+01 6.077920285385823157e-04 +2.905000000000000071e+01 5.494065744797861205e-04 +2.906000000000000227e+01 4.933842202116345494e-04 +2.907000000000000028e+01 4.419812966241489448e-04 +2.908000000000000185e+01 3.974576477231368853e-04 +2.908999999999999986e+01 3.619546275820959350e-04 +2.910000000000000142e+01 3.373805823216749554e-04 +2.910999999999999943e+01 3.253089247111798170e-04 +2.912000000000000099e+01 3.268931638470239770e-04 +2.912999999999999901e+01 3.428023297797732206e-04 +2.914000000000000057e+01 3.731791809911938875e-04 +2.915000000000000213e+01 4.176224537230566105e-04 +2.916000000000000014e+01 4.751932616886745298e-04 +2.917000000000000171e+01 5.444446373149550893e-04 +2.917999999999999972e+01 6.234721735654947909e-04 +2.919000000000000128e+01 7.099828252031554349e-04 +2.919999999999999929e+01 8.013781992426800230e-04 +2.921000000000000085e+01 8.948481364414578041e-04 +2.921999999999999886e+01 9.874700781841332705e-04 +2.923000000000000043e+01 1.076309634117479999e-03 +2.924000000000000199e+01 1.158517911981187800e-03 +2.925000000000000000e+01 1.231421527236384230e-03 +2.926000000000000156e+01 1.292601751858112871e-03 +2.926999999999999957e+01 1.339959954705711130e-03 +2.928000000000000114e+01 1.371767290300928343e-03 +2.928999999999999915e+01 1.386697463083649872e-03 +2.930000000000000071e+01 1.383842282463162163e-03 +2.931000000000000227e+01 1.362710584435698020e-03 +2.932000000000000028e+01 1.323211882257683712e-03 +2.933000000000000185e+01 1.265626784153812794e-03 +2.933999999999999986e+01 1.190566747411949712e-03 +2.935000000000000142e+01 1.098926102407487507e-03 +2.935999999999999943e+01 9.918294643402770106e-04 +2.937000000000000099e+01 8.705776509456371109e-04 +2.937999999999999901e+01 7.365950491690538560e-04 +2.939000000000000057e+01 5.913810396623016361e-04 +2.940000000000000213e+01 4.364676206124925022e-04 +2.941000000000000014e+01 2.733848045077385278e-04 +2.942000000000000171e+01 1.036347307504220238e-04 +2.942999999999999972e+01 -7.132521649047586791e-05 +2.944000000000000128e+01 -2.500906312647244796e-04 +2.944999999999999929e+01 -4.313105748010948124e-04 +2.946000000000000085e+01 -6.136817440791003447e-04 +2.946999999999999886e+01 -7.959381036455844601e-04 +2.948000000000000043e+01 -9.768379958385064229e-04 +2.949000000000000199e+01 -1.155150826658360441e-03 +2.950000000000000000e+01 -1.329645355440084008e-03 +2.951000000000000156e+01 -1.499081404657668466e-03 +2.951999999999999957e+01 -1.662206467922144231e-03 +2.953000000000000114e+01 -1.817758254832832401e-03 +2.953999999999999915e+01 -1.964473701387192250e-03 +2.955000000000000071e+01 -2.101104429221348907e-03 +2.956000000000000227e+01 -2.226438093563973264e-03 +2.957000000000000028e+01 -2.339324554910828489e-03 +2.958000000000000185e+01 -2.438705377421049054e-03 +2.958999999999999986e+01 -2.523644827446939760e-03 +2.960000000000000142e+01 -2.593360341393009631e-03 +2.960999999999999943e+01 -2.647250366745700512e-03 +2.962000000000000099e+01 -2.684917562080953168e-03 +2.962999999999999901e+01 -2.706185563565285859e-03 +2.964000000000000057e+01 -2.711107877053592873e-03 +2.965000000000000213e+01 -2.699967914126317776e-03 +2.966000000000000014e+01 -2.673269726633684465e-03 +2.967000000000000171e+01 -2.631719576543704517e-03 +2.967999999999999972e+01 -2.576199066330797996e-03 +2.969000000000000128e+01 -2.507731112253697246e-03 +2.969999999999999929e+01 -2.427440531542020795e-03 +2.971000000000000085e+01 -2.336511401839525080e-03 +2.971999999999999886e+01 -2.236143608929975352e-03 +2.973000000000000043e+01 -2.127511108733649153e-03 +2.974000000000000199e+01 -2.011724379853184821e-03 +2.975000000000000000e+01 -1.889799334003022238e-03 +2.976000000000000156e+01 -1.762634591999568626e-03 +2.976999999999999957e+01 -1.630998543147706972e-03 +2.978000000000000114e+01 -1.495527011447395083e-03 +2.978999999999999915e+01 -1.356731690343609010e-03 +2.980000000000000071e+01 -1.215018816465049866e-03 +2.981000000000000227e+01 -1.070716876058424357e-03 +2.982000000000000028e+01 -9.241115175196755807e-04 +2.983000000000000185e+01 -7.754853196535765230e-04 +2.983999999999999986e+01 -6.251596740843095527e-04 +2.985000000000000142e+01 -4.735358083143954237e-04 +2.985999999999999943e+01 -3.211319230330241989e-04 +2.987000000000000099e+01 -1.686135514144986090e-04 +2.987999999999999901e+01 -1.681456639518935769e-05 +2.989000000000000057e+01 1.332532494577941902e-04 +2.990000000000000213e+01 2.804035226710148996e-04 +2.991000000000000014e+01 4.232922016121870947e-04 +2.992000000000000171e+01 5.604479528681200699e-04 +2.992999999999999972e+01 6.903150916864903702e-04 +2.994000000000000128e+01 8.113072839063550663e-04 +2.994999999999999929e+01 9.218695187174466739e-04 +2.996000000000000085e+01 1.020545234394514738e-03 +2.996999999999999886e+01 1.106045022719563372e-03 +2.998000000000000043e+01 1.177313073495554622e-03 +2.999000000000000199e+01 1.233587469205456137e-03 +3.000000000000000000e+01 1.274450611241852377e-03 +3.001000000000000156e+01 1.299866448734053170e-03 +3.001999999999999957e+01 1.310201773961065146e-03 +3.003000000000000114e+01 1.306229615020872668e-03 +3.003999999999999915e+01 1.289113659944718165e-03 +3.005000000000000071e+01 1.260373637242881689e-03 +3.006000000000000227e+01 1.221832605134506909e-03 +3.007000000000000028e+01 1.175548106372403291e-03 +3.008000000000000185e+01 1.123730073597332740e-03 +3.008999999999999986e+01 1.068649166489159773e-03 +3.010000000000000142e+01 1.012539840826441042e-03 +3.010999999999999943e+01 9.575028523941961833e-04 +3.012000000000000099e+01 9.054120593685817441e-04 +3.012999999999999901e+01 8.578302909977873541e-04 +3.014000000000000057e+01 8.159386988991962136e-04 +3.015000000000000213e+01 7.804834140198205986e-04 +3.016000000000000014e+01 7.517425246679849613e-04 +3.017000000000000171e+01 7.295154096977198932e-04 +3.017999999999999972e+01 7.131353545849211531e-04 +3.019000000000000128e+01 7.015052049413937705e-04 +3.019999999999999929e+01 6.931546332158669728e-04 +3.021000000000000085e+01 6.863164724544509616e-04 +3.021999999999999886e+01 6.790185666691248012e-04 +3.023000000000000043e+01 6.691867545230470145e-04 +3.024000000000000199e+01 6.547539884051362721e-04 +3.025000000000000000e+01 6.337702282278802508e-04 +3.026000000000000156e+01 6.045076601595488841e-04 +3.026999999999999957e+01 5.655559822088209246e-04 +3.028000000000000114e+01 5.159029623754929307e-04 +3.028999999999999915e+01 4.549961888795867136e-04 +3.030000000000000071e+01 3.827828597317713111e-04 +3.031000000000000227e+01 2.997255528079880056e-04 +3.032000000000000028e+01 2.067931213769594106e-04 +3.033000000000000185e+01 1.054271111699714544e-04 +3.033999999999999986e+01 -2.514671800939117733e-06 +3.035000000000000142e+01 -1.148346624069779075e-04 +3.035999999999999943e+01 -2.290883175448212884e-04 +3.037000000000000099e+01 -3.426885742943579010e-04 +3.037999999999999901e+01 -4.530168052046143435e-04 +3.039000000000000057e+01 -5.575347807390859493e-04 +3.040000000000000213e+01 -6.538921212488711795e-04 +3.041000000000000014e+01 -7.400239762263605180e-04 +3.042000000000000171e+01 -8.142341932540028042e-04 +3.042999999999999972e+01 -8.752600041219830204e-04 +3.044000000000000128e+01 -9.223152209247616065e-04 +3.044999999999999929e+01 -9.551100489149244198e-04 +3.046000000000000085e+01 -9.738468271928022108e-04 +3.046999999999999886e+01 -9.791922396041434235e-04 +3.048000000000000043e+01 -9.722277326172058202e-04 +3.049000000000000199e+01 -9.543809724465448455e-04 +3.050000000000000000e+01 -9.273421143001513199e-04 +3.051000000000000156e+01 -8.929693946915808183e-04 +3.051999999999999957e+01 -8.531890563556955749e-04 +3.053000000000000114e+01 -8.098948508403372264e-04 +3.053999999999999915e+01 -7.648523265889638819e-04 +3.055000000000000071e+01 -7.196128034658540781e-04 +3.056000000000000227e+01 -6.754413787731201142e-04 +3.057000000000000028e+01 -6.332625335772324154e-04 +3.058000000000000185e+01 -5.936259559837763758e-04 +3.058999999999999986e+01 -5.566941194480448185e-04 +3.060000000000000142e+01 -5.222520071954097004e-04 +3.060999999999999943e+01 -4.897382178056962007e-04 +3.062000000000000099e+01 -4.582955814942281511e-04 +3.062999999999999901e+01 -4.268384185118582748e-04 +3.064000000000000057e+01 -3.941327295710394868e-04 +3.065000000000000213e+01 -3.588849653663388033e-04 +3.066000000000000014e+01 -3.198346080631650468e-04 +3.067000000000000171e+01 -2.758456307189257489e-04 +3.067999999999999972e+01 -2.259919864306780108e-04 +3.069000000000000128e+01 -1.696326097072177290e-04 +3.069999999999999929e+01 -1.064719686130665896e-04 +3.071000000000000085e+01 -3.660295624197949284e-05 +3.071999999999999886e+01 3.947018625745769247e-05 +3.073000000000000043e+01 1.208302130289856804e-04 +3.074000000000000199e+01 2.061667171860103180e-04 +3.075000000000000000e+01 2.938166444495441515e-04 +3.076000000000000156e+01 3.818236344829574317e-04 +3.076999999999999957e+01 4.680134373653766964e-04 +3.078000000000000114e+01 5.500818869925471269e-04 +3.078999999999999915e+01 6.256913271355317137e-04 +3.080000000000000071e+01 6.925710047068680403e-04 +3.081000000000000227e+01 7.486167835456427732e-04 +3.082000000000000028e+01 7.919855930489155729e-04 +3.083000000000000185e+01 8.211803034181803596e-04 +3.083999999999999986e+01 8.351211936620944742e-04 +3.085000000000000142e+01 8.332008237766499537e-04 +3.085999999999999943e+01 8.153199038810319838e-04 +3.087000000000000099e+01 7.819026300902139548e-04 +3.087999999999999901e+01 7.338908865538657563e-04 +3.089000000000000057e+01 6.727176502383494690e-04 +3.090000000000000213e+01 6.002608357299021955e-04 +3.091000000000000014e+01 5.187796420753706559e-04 +3.092000000000000171e+01 4.308361756961715666e-04 +3.092999999999999972e+01 3.392056944912146205e-04 +3.094000000000000128e+01 2.467792272979239484e-04 +3.094999999999999929e+01 1.564625561410629508e-04 +3.096000000000000085e+01 7.107560316831335707e-05 +3.097000000000000242e+01 -6.743856942842047956e-06 +3.098000000000000043e+01 -7.462852208205002734e-05 +3.099000000000000199e+01 -1.305587159105710791e-04 +3.100000000000000000e+01 -1.729257064490321281e-04 +3.101000000000000156e+01 -2.005791638479409575e-04 +3.101999999999999957e+01 -2.128574260358230465e-04 +3.103000000000000114e+01 -2.095999614391469478e-04 +3.103999999999999915e+01 -1.911421319895274828e-04 +3.105000000000000071e+01 -1.582930372838956944e-04 +3.106000000000000227e+01 -1.122978352275049146e-04 +3.107000000000000028e+01 -5.478646346581497490e-05 +3.108000000000000185e+01 1.228888770188749015e-05 +3.108999999999999986e+01 8.672488827744704546e-05 +3.110000000000000142e+01 1.661439130368120882e-04 +3.110999999999999943e+01 2.480736921876157863e-04 +3.112000000000000099e+01 3.300268878338761614e-04 +3.112999999999999901e+01 4.095778673285732185e-04 +3.114000000000000057e+01 4.844341898228840862e-04 +3.115000000000000213e+01 5.525006446056003823e-04 +3.116000000000000014e+01 6.119340623428539284e-04 +3.117000000000000171e+01 6.611875429613133176e-04 +3.117999999999999972e+01 6.990431890239910077e-04 +3.119000000000000128e+01 7.246328814559200920e-04 +3.119999999999999929e+01 7.374470703748687087e-04 +3.121000000000000085e+01 7.373319606870834108e-04 +3.122000000000000242e+01 7.244758401185293550e-04 +3.123000000000000043e+01 6.993856145692795402e-04 +3.124000000000000199e+01 6.628548768087450145e-04 +3.125000000000000000e+01 6.159250338136684679e-04 +3.126000000000000156e+01 5.598411551330506608e-04 +3.126999999999999957e+01 4.960042787022896299e-04 +3.128000000000000114e+01 4.259219243578998512e-04 +3.128999999999999915e+01 3.511585230327253808e-04 +3.130000000000000071e+01 2.732873762536719236e-04 +3.131000000000000227e+01 1.938456221225004592e-04 +3.132000000000000028e+01 1.142935072540858472e-04 +3.133000000000000185e+01 3.597905665528213225e-05 +3.133999999999999986e+01 -3.989099789820745907e-05 +3.135000000000000142e+01 -1.122734180829261492e-04 +3.135999999999999943e+01 -1.803034314663134270e-04 +3.137000000000000099e+01 -2.433023781090828984e-04 +3.137999999999999901e+01 -3.007781862368572880e-04 +3.139000000000000057e+01 -3.524190727972349572e-04 +3.140000000000000213e+01 -3.980810867840843667e-04 +3.141000000000000014e+01 -4.377703109704844751e-04 +3.142000000000000171e+01 -4.716207043490340815e-04 +3.142999999999999972e+01 -4.998686994667117566e-04 +3.144000000000000128e+01 -5.228257602024856876e-04 +3.144999999999999929e+01 -5.408501542513527395e-04 +3.146000000000000085e+01 -5.543191975628089432e-04 +3.147000000000000242e+01 -5.636031842866500450e-04 +3.148000000000000043e+01 -5.690421272349355502e-04 +3.149000000000000199e+01 -5.709263000523273060e-04 +3.150000000000000000e+01 -5.694814002189963354e-04 +3.151000000000000156e+01 -5.648589444105109542e-04 +3.151999999999999957e+01 -5.571322738042055502e-04 +3.153000000000000114e+01 -5.462982935502808373e-04 +3.153999999999999915e+01 -5.322848098724916079e-04 +3.155000000000000071e+01 -5.149630674223725987e-04 +3.156000000000000227e+01 -4.941648441603777291e-04 +3.157000000000000028e+01 -4.697032370973903579e-04 +3.158000000000000185e+01 -4.413960848898067593e-04 +3.158999999999999986e+01 -4.090908288390991622e-04 +3.160000000000000142e+01 -3.726895208814009412e-04 +3.160999999999999943e+01 -3.321726523155170223e-04 +3.162000000000000099e+01 -2.876205020985859485e-04 +3.162999999999999901e+01 -2.392307903526292884e-04 +3.164000000000000057e+01 -1.873315679692944794e-04 +3.165000000000000213e+01 -1.323884725061722032e-04 +3.166000000000000014e+01 -7.500572563775363796e-05 +3.167000000000000171e+01 -1.592052755981389871e-05 +3.167999999999999972e+01 4.400919249795540633e-05 +3.169000000000000128e+01 1.038233980861515523e-04 +3.169999999999999929e+01 1.624843607308304450e-04 +3.171000000000000085e+01 2.189060027057201094e-04 +3.172000000000000242e+01 2.719870488765315213e-04 +3.173000000000000043e+01 3.206466637578124458e-04 +3.174000000000000199e+01 3.638611021965910790e-04 +3.175000000000000000e+01 4.006998207681910628e-04 +3.176000000000000156e+01 4.303594860987813484e-04 +3.176999999999999957e+01 4.521943788863994691e-04 +3.178000000000000114e+01 4.657418250446070541e-04 +3.178999999999999915e+01 4.707414835010895865e-04 +3.180000000000000071e+01 4.671475754913836107e-04 +3.181000000000000227e+01 4.551334394958290335e-04 +3.182000000000000028e+01 4.350881274840946570e-04 +3.183000000000000185e+01 4.076051041948545789e-04 +3.183999999999999986e+01 3.734634571723170781e-04 +3.185000000000000142e+01 3.336023532755533509e-04 +3.185999999999999943e+01 2.890897723936580624e-04 +3.187000000000000099e+01 2.410867971244837183e-04 +3.187999999999999901e+01 1.908089256250894276e-04 +3.189000000000000057e+01 1.394859959321045103e-04 +3.190000000000000213e+01 8.832235689861381094e-05 +3.191000000000000014e+01 3.845889314074306181e-05 +3.192000000000000171e+01 -9.061590730803830695e-06 +3.192999999999999972e+01 -5.332429090049348560e-05 +3.194000000000000128e+01 -9.356652374103150609e-05 +3.194999999999999929e+01 -1.291952141183970568e-04 +3.196000000000000085e+01 -1.597972334260905651e-04 +3.197000000000000242e+01 -1.851423968235652560e-04 +3.198000000000000043e+01 -2.051792601033241550e-04 +3.199000000000000199e+01 -2.200241734066352487e-04 +3.200000000000000000e+01 -2.299443367366307324e-04 +3.200999999999999801e+01 -2.353358477278704136e-04 +3.202000000000000313e+01 -2.366979235951170940e-04 +3.203000000000000114e+01 -2.346046094370967815e-04 +3.203999999999999915e+01 -2.296753482896047975e-04 +3.204999999999999716e+01 -2.225457838205206057e-04 +3.206000000000000227e+01 -2.138400959396781302e-04 +3.207000000000000028e+01 -2.041460381901315246e-04 +3.207999999999999829e+01 -1.939936626466690333e-04 +3.209000000000000341e+01 -1.838384925788138081e-04 +3.210000000000000142e+01 -1.740496497194861793e-04 +3.210999999999999943e+01 -1.649031737664790600e-04 +3.211999999999999744e+01 -1.565805021998993910e-04 +3.213000000000000256e+01 -1.491718217702471181e-04 +3.214000000000000057e+01 -1.426837719627596418e-04 +3.214999999999999858e+01 -1.370507866432842548e-04 +3.216000000000000369e+01 -1.321492118367946858e-04 +3.217000000000000171e+01 -1.278132403884174281e-04 +3.217999999999999972e+01 -1.238516628096343164e-04 +3.218999999999999773e+01 -1.200644465811158044e-04 +3.220000000000000284e+01 -1.162582219707943763e-04 +3.221000000000000085e+01 -1.122598647194383170e-04 +3.221999999999999886e+01 -1.079275174979357511e-04 +3.223000000000000398e+01 -1.031585728838904631e-04 +3.224000000000000199e+01 -9.789434002976807672e-05 +3.225000000000000000e+01 -9.212132313864810382e-05 +3.225999999999999801e+01 -8.586924154372988307e-05 +3.227000000000000313e+01 -7.920610682411949668e-05 +3.228000000000000114e+01 -7.223083279248975874e-05 +3.228999999999999915e+01 -6.506398102906258861e-05 +3.229999999999999716e+01 -5.783733226390551211e-05 +3.231000000000000227e+01 -5.068301832502388062e-05 +3.232000000000000028e+01 -4.372294989373715318e-05 +3.232999999999999829e+01 -3.705923311163870812e-05 +3.234000000000000341e+01 -3.076618678834224305e-05 +3.235000000000000142e+01 -2.488445756842241254e-05 +3.235999999999999943e+01 -1.941759010529121101e-05 +3.236999999999999744e+01 -1.433125186857545026e-05 +3.238000000000000256e+01 -9.555146921275132880e-06 +3.239000000000000057e+01 -4.987489498014498577e-06 +3.239999999999999858e+01 -5.017555459163592062e-07 +3.241000000000000369e+01 4.044703101579275377e-06 +3.242000000000000171e+01 8.800704433432037372e-06 +3.242999999999999972e+01 1.391053999045540352e-05 +3.243999999999999773e+01 1.950317517012692135e-05 +3.245000000000000284e+01 2.568198848024490227e-05 +3.246000000000000085e+01 3.251565976829760162e-05 +3.246999999999999886e+01 4.003075164000556796e-05 +3.248000000000000398e+01 4.820643302350102744e-05 +3.249000000000000199e+01 5.697167518433241483e-05 +3.250000000000000000e+01 6.620511519298958095e-05 +3.250999999999999801e+01 7.573763741834779652e-05 +3.252000000000000313e+01 8.535757833263517530e-05 +3.253000000000000114e+01 9.481832119387474612e-05 +3.253999999999999915e+01 1.038479223855474145e-04 +3.254999999999999716e+01 1.121603067694174690e-04 +3.256000000000000227e+01 1.194674901794998682e-04 +3.257000000000000028e+01 1.254922371650067062e-04 +3.257999999999999829e+01 1.299805424442676441e-04 +3.259000000000000341e+01 1.327133371027259840e-04 +3.260000000000000142e+01 1.335168619994696337e-04 +3.260999999999999943e+01 1.322712205001323347e-04 +3.261999999999999744e+01 1.289167145427046245e-04 +3.263000000000000256e+01 1.234576782232928963e-04 +3.264000000000000057e+01 1.159636448026880374e-04 +3.264999999999999858e+01 1.065678110266823610e-04 +3.266000000000000369e+01 9.546288804448979323e-05 +3.267000000000000171e+01 8.289454862833896265e-05 +3.267999999999999972e+01 6.915278600431548519e-05 +3.268999999999999773e+01 5.456158880756196072e-05 +3.270000000000000284e+01 3.946740385728795733e-05 +3.271000000000000085e+01 2.422690189600035509e-05 +3.271999999999999886e+01 9.194579390869393783e-06 +3.273000000000000398e+01 -5.289277879306488100e-06 +3.274000000000000199e+01 -1.890977507884623949e-05 +3.275000000000000000e+01 -3.138729137892848196e-05 +3.275999999999999801e+01 -4.248569642026807640e-05 +3.277000000000000313e+01 -5.201861681672778290e-05 +3.278000000000000114e+01 -5.985356518447024703e-05 +3.278999999999999915e+01 -6.591384474452517521e-05 +3.279999999999999716e+01 -7.017824339316527330e-05 +3.281000000000000227e+01 -7.267862678900945919e-05 +3.282000000000000028e+01 -7.349562699448275471e-05 +3.282999999999999829e+01 -7.275269766177079958e-05 +3.284000000000000341e+01 -7.060886495052503436e-05 +3.285000000000000142e+01 -6.725054529674888480e-05 +3.285999999999999943e+01 -6.288282284968864009e-05 +3.286999999999999744e+01 -5.772058396915921241e-05 +3.288000000000000256e+01 -5.197989127091720882e-05 +3.289000000000000057e+01 -4.586994908980838271e-05 +3.289999999999999858e+01 -3.958596707469038258e-05 +3.291000000000000369e+01 -3.330317179828484308e-05 +3.292000000000000171e+01 -2.717215133105289998e-05 +3.292999999999999972e+01 -2.131564736701213383e-05 +3.293999999999999773e+01 -1.582683833498693077e-05 +3.295000000000000284e+01 -1.076908666115662375e-05 +3.296000000000000085e+01 -6.177058861031154999e-06 +3.296999999999999886e+01 -2.059069640031567534e-06 +3.298000000000000398e+01 1.599546188067358537e-06 +3.299000000000000199e+01 4.832266107320840269e-06 +3.300000000000000000e+01 7.686672241668708819e-06 +3.300999999999999801e+01 1.021946967853661111e-05 +3.302000000000000313e+01 1.249149448193302665e-05 +3.303000000000000114e+01 1.456296074559376540e-05 +3.303999999999999915e+01 1.648917077051498850e-05 +3.304999999999999716e+01 1.831687814472466320e-05 +3.306000000000000227e+01 2.008145193943015400e-05 +3.307000000000000028e+01 2.180494377176613101e-05 +3.307999999999999829e+01 2.349511042007403899e-05 +3.309000000000000341e+01 2.514539524171920619e-05 +3.310000000000000142e+01 2.673582431413384201e-05 +3.310999999999999943e+01 2.823472978377045375e-05 +3.311999999999999744e+01 2.960117544272298845e-05 +3.313000000000000256e+01 3.078792924071404772e-05 +3.314000000000000057e+01 3.174480568757163089e-05 +3.314999999999999858e+01 3.242218833516250404e-05 +3.316000000000000369e+01 3.277453905217198748e-05 +3.317000000000000171e+01 3.276370680583893895e-05 +3.317999999999999972e+01 3.236186287330853473e-05 +3.318999999999999773e+01 3.155391177268658152e-05 +3.320000000000000284e+01 3.033925582830405905e-05 +3.321000000000000085e+01 2.873282509857686309e-05 +3.321999999999999886e+01 2.676532140101027643e-05 +3.323000000000000398e+01 2.448266418870565249e-05 +3.324000000000000199e+01 2.194466443723889695e-05 +3.325000000000000000e+01 1.922298950361602435e-05 +3.325999999999999801e+01 1.639851523497496942e-05 +3.327000000000000313e+01 1.355818963178425195e-05 +3.328000000000000114e+01 1.079155463178603176e-05 +3.328999999999999915e+01 8.187087491427798625e-06 +3.329999999999999716e+01 5.828530647322938165e-06 +3.331000000000000227e+01 3.791378408773886836e-06 +3.332000000000000028e+01 2.139680653442144044e-06 +3.332999999999999829e+01 9.233081374962411266e-07 +3.334000000000000341e+01 1.758020628402072528e-07 +3.335000000000000142e+01 -8.709680960634248460e-08 +3.335999999999999943e+01 1.318243130133501924e-07 +3.336999999999999744e+01 8.112958542340534814e-07 +3.338000000000000256e+01 1.912379305858778643e-06 +3.339000000000000057e+01 3.380008777331556866e-06 +3.339999999999999858e+01 5.145188687146969142e-06 +3.341000000000000369e+01 7.127747061431540307e-06 +3.342000000000000171e+01 9.239520243394895298e-06 +3.342999999999999972e+01 1.138782721686280141e-05 +3.343999999999999773e+01 1.347908077113001793e-05 +3.345000000000000284e+01 1.542237905661052798e-05 +3.346000000000000085e+01 1.713292447226560724e-05 +3.346999999999999886e+01 1.853512742796090495e-05 +3.348000000000000398e+01 1.956526923171491485e-05 +3.349000000000000199e+01 2.017362088451592461e-05 +3.350000000000000000e+01 2.032594119492408733e-05 +3.350999999999999801e+01 2.000430726128067541e-05 +3.352000000000000313e+01 1.920726198483001018e-05 +3.353000000000000114e+01 1.794929411058487906e-05 +3.353999999999999915e+01 1.625969656691196393e-05 +3.354999999999999716e+01 1.418087540005238534e-05 +3.356000000000000227e+01 1.176620464064333931e-05 +3.357000000000000028e+01 9.077539871772603543e-06 +3.357999999999999829e+01 6.182515107444642694e-06 +3.359000000000000341e+01 3.151752822754488465e-06 +3.360000000000000142e+01 5.611595659711153204e-08 +3.360999999999999943e+01 -3.035876618850003609e-06 +3.361999999999999744e+01 -6.060362715948659101e-06 +3.363000000000000256e+01 -8.960086964913866093e-06 +3.364000000000000057e+01 -1.168591966896786472e-05 +3.364999999999999858e+01 -1.419789992547059593e-05 +3.366000000000000369e+01 -1.646578428810299046e-05 +3.367000000000000171e+01 -1.846910776532912653e-05 +3.367999999999999972e+01 -2.019678830442772055e-05 +3.368999999999999773e+01 -2.164632737466794493e-05 +3.370000000000000284e+01 -2.282267744272802244e-05 +3.371000000000000085e+01 -2.373686051708457829e-05 +3.371999999999999886e+01 -2.440443035063719478e-05 +3.373000000000000398e+01 -2.484387434460383153e-05 +3.374000000000000199e+01 -2.507504866524458360e-05 +3.375000000000000000e+01 -2.511773347834542319e-05 +3.375999999999999801e+01 -2.499038302782963065e-05 +3.377000000000000313e+01 -2.470913084399561148e-05 +3.378000000000000114e+01 -2.428709187887847091e-05 +3.378999999999999915e+01 -2.373398437309867347e-05 +3.379999999999999716e+01 -2.305607396123806802e-05 +3.381000000000000227e+01 -2.225642411399359396e-05 +3.382000000000000028e+01 -2.133541817587892572e-05 +3.382999999999999829e+01 -2.029150500681881593e-05 +3.384000000000000341e+01 -1.912210739531788648e-05 +3.385000000000000142e+01 -1.782462608499044214e-05 +3.385999999999999943e+01 -1.639746761691315019e-05 +3.386999999999999744e+01 -1.484102663783027846e-05 +3.388000000000000256e+01 -1.315855681331550245e-05 +3.389000000000000057e+01 -1.135687422961755739e-05 +3.389999999999999858e+01 -9.446848043692705892e-06 +3.391000000000000369e+01 -7.443647395525671459e-06 +3.392000000000000171e+01 -5.366728384803364430e-06 +3.392999999999999972e+01 -3.239561118970440206e-06 +3.393999999999999773e+01 -1.089111335621122922e-06 +3.395000000000000284e+01 1.054894450409085190e-06 +3.396000000000000085e+01 3.160879956719657633e-06 +3.396999999999999886e+01 5.196456668494862981e-06 +3.398000000000000398e+01 7.129532342552443248e-06 +3.399000000000000199e+01 8.929432201219975122e-06 +3.400000000000000000e+01 1.056797535051212631e-05 +3.400999999999999801e+01 1.202045262860175936e-05 +3.402000000000000313e+01 1.326645898441694374e-05 +3.403000000000000114e+01 1.429054276053401014e-05 +3.403999999999999915e+01 1.508264454856996216e-05 +3.404999999999999716e+01 1.563831077274570786e-05 +3.406000000000000227e+01 1.595867939117820523e-05 +3.407000000000000028e+01 1.605024623345100140e-05 +3.407999999999999829e+01 1.592443241503202622e-05 +3.409000000000000341e+01 1.559698178491757630e-05 +3.410000000000000142e+01 1.508722474823024953e-05 +3.410999999999999943e+01 1.441724992410348630e-05 +3.411999999999999744e+01 1.361102677145632420e-05 +3.413000000000000256e+01 1.269352315886827573e-05 +3.414000000000000057e+01 1.168985814752473478e-05 +3.414999999999999858e+01 1.062452656278000732e-05 +3.416000000000000369e+01 9.520725342366262114e-06 +3.417000000000000171e+01 8.399803082319185293e-06 +3.417999999999999972e+01 7.280848101973260045e-06 +3.418999999999999773e+01 6.180419181050523990e-06 +3.420000000000000284e+01 5.112417160184706496e-06 +3.421000000000000085e+01 4.088086881534951317e-06 +3.421999999999999886e+01 3.116133256427093967e-06 +3.423000000000000398e+01 2.202930368836290192e-06 +3.424000000000000199e+01 1.352799396743076299e-06 +3.425000000000000000e+01 5.683297009760791360e-07 +3.425999999999999801e+01 -1.492821861068540659e-07 +3.427000000000000313e+01 -7.998992512712665287e-07 +3.428000000000000114e+01 -1.384136726867042870e-06 +3.428999999999999915e+01 -1.903097084243035191e-06 +3.430000000000000426e+01 -2.358158781899520627e-06 +3.431000000000000227e+01 -2.750825039570752266e-06 +3.432000000000000028e+01 -3.082633902631991487e-06 +3.432999999999999829e+01 -3.355126150077640798e-06 +3.434000000000000341e+01 -3.569863592017642398e-06 +3.435000000000000142e+01 -3.728487169299041492e-06 +3.435999999999999943e+01 -3.832802036457009152e-06 +3.436999999999999744e+01 -3.884876025958187833e-06 +3.438000000000000256e+01 -3.887137866817799669e-06 +3.439000000000000057e+01 -3.842462285165584289e-06 +3.439999999999999858e+01 -3.754231933425460512e-06 +3.441000000000000369e+01 -3.626367611202411284e-06 +3.442000000000000171e+01 -3.463321977986780192e-06 +3.442999999999999972e+01 -3.270035174570039133e-06 +3.443999999999999773e+01 -3.051853542184851585e-06 +3.445000000000000284e+01 -2.814415921949668510e-06 +3.446000000000000085e+01 -2.563514168578440747e-06 +3.446999999999999886e+01 -2.304936606536295273e-06 +3.448000000000000398e+01 -2.044303746172721339e-06 +3.449000000000000199e+01 -1.786906801888591342e-06 +3.450000000000000000e+01 -1.537558199411324060e-06 +3.450999999999999801e+01 -1.300462898086104675e-06 +3.452000000000000313e+01 -1.079117485405599583e-06 +3.453000000000000114e+01 -8.762421868327658472e-07 +3.453999999999999915e+01 -6.937482736873225661e-07 +3.455000000000000426e+01 -5.327416874145780754e-07 +3.456000000000000227e+01 -3.935606944421768356e-07 +3.457000000000000028e+01 -2.758440537729225393e-07 +3.457999999999999829e+01 -1.786241294360830180e-07 +3.459000000000000341e+01 -1.004382900531979396e-07 +3.460000000000000142e+01 -3.945143099000779264e-08 +3.460999999999999943e+01 6.417936148465094699e-09 +3.461999999999999744e+01 3.937507225299001728e-08 +3.463000000000000256e+01 6.163618034684389956e-08 +3.464000000000000057e+01 7.533052006531242809e-08 +3.464999999999999858e+01 8.242122344280953723e-08 +3.466000000000000369e+01 8.464704229232951658e-08 +3.467000000000000171e+01 8.348570069469806293e-08 +3.467999999999999972e+01 8.013809939328622620e-08 +3.468999999999999773e+01 7.553134758261680750e-08 +3.470000000000000284e+01 7.033753773406452595e-08 +3.471000000000000085e+01 6.500462867457251877e-08 +3.471999999999999886e+01 5.979530049318684276e-08 +3.473000000000000398e+01 5.482975288784416824e-08 +3.474000000000000199e+01 5.012861221703238720e-08 +3.475000000000000000e+01 4.565270568205733985e-08 +3.475999999999999801e+01 4.133718099404713480e-08 +3.477000000000000313e+01 3.711821322922182642e-08 +3.478000000000000114e+01 3.295154383463905473e-08 +3.478999999999999915e+01 2.882275640867311894e-08 +3.480000000000000426e+01 2.475007210880393945e-08 +3.481000000000000227e+01 2.078092806756468432e-08 +3.482000000000000028e+01 1.698401912244888067e-08 +3.482999999999999829e+01 1.343862662512037722e-08 +3.484000000000000341e+01 1.022314639434855843e-08 +3.485000000000000142e+01 7.404406997618042797e-09 +3.485999999999999943e+01 5.029128559315473487e-09 +3.486999999999999744e+01 3.118437016003692143e-09 +3.488000000000000256e+01 1.665842036731200075e-09 +3.489000000000000057e+01 6.386699692754192504e-10 +3.489999999999999858e+01 -1.752312159834586523e-11 +3.491000000000000369e+01 -3.723121585046739003e-10 +3.492000000000000171e+01 -5.025220622460116840e-10 +3.492999999999999972e+01 -4.841801860688976499e-10 +3.493999999999999773e+01 -3.852920018457449041e-10 +3.495000000000000284e+01 -2.603125355732348463e-10 +3.496000000000000085e+01 -1.468803279010182202e-10 +3.496999999999999886e+01 -6.512107170779918740e-11 +3.498000000000000398e+01 -1.942177265911410204e-11 +3.499000000000000199e+01 -2.340930704936667819e-12 +3.500000000000000000e+01 -0.000000000000000000e+00 +3.500999999999999801e+01 -0.000000000000000000e+00 +3.502000000000000313e+01 -0.000000000000000000e+00 +3.503000000000000114e+01 -0.000000000000000000e+00 +3.503999999999999915e+01 -0.000000000000000000e+00 +3.505000000000000426e+01 -0.000000000000000000e+00 +3.506000000000000227e+01 0.000000000000000000e+00 +3.507000000000000028e+01 0.000000000000000000e+00 +3.507999999999999829e+01 0.000000000000000000e+00 +3.509000000000000341e+01 0.000000000000000000e+00 +3.510000000000000142e+01 0.000000000000000000e+00 +3.510999999999999943e+01 0.000000000000000000e+00 +3.511999999999999744e+01 0.000000000000000000e+00 +3.513000000000000256e+01 0.000000000000000000e+00 +3.514000000000000057e+01 0.000000000000000000e+00 +3.514999999999999858e+01 0.000000000000000000e+00 +3.516000000000000369e+01 0.000000000000000000e+00 +3.517000000000000171e+01 0.000000000000000000e+00 +3.517999999999999972e+01 0.000000000000000000e+00 +3.518999999999999773e+01 0.000000000000000000e+00 +3.520000000000000284e+01 0.000000000000000000e+00 +3.521000000000000085e+01 0.000000000000000000e+00 +3.521999999999999886e+01 0.000000000000000000e+00 +3.523000000000000398e+01 0.000000000000000000e+00 +3.524000000000000199e+01 0.000000000000000000e+00 +3.525000000000000000e+01 0.000000000000000000e+00 +3.525999999999999801e+01 0.000000000000000000e+00 +3.527000000000000313e+01 0.000000000000000000e+00 +3.528000000000000114e+01 0.000000000000000000e+00 +3.528999999999999915e+01 0.000000000000000000e+00 +3.530000000000000426e+01 0.000000000000000000e+00 +3.531000000000000227e+01 0.000000000000000000e+00 +3.532000000000000028e+01 0.000000000000000000e+00 +3.532999999999999829e+01 0.000000000000000000e+00 +3.534000000000000341e+01 0.000000000000000000e+00 +3.535000000000000142e+01 0.000000000000000000e+00 +3.535999999999999943e+01 0.000000000000000000e+00 +3.536999999999999744e+01 0.000000000000000000e+00 +3.538000000000000256e+01 0.000000000000000000e+00 +3.539000000000000057e+01 0.000000000000000000e+00 +3.539999999999999858e+01 0.000000000000000000e+00 +3.541000000000000369e+01 0.000000000000000000e+00 +3.542000000000000171e+01 0.000000000000000000e+00 +3.542999999999999972e+01 0.000000000000000000e+00 +3.543999999999999773e+01 0.000000000000000000e+00 +3.545000000000000284e+01 0.000000000000000000e+00 +3.546000000000000085e+01 0.000000000000000000e+00 +3.546999999999999886e+01 0.000000000000000000e+00 +3.548000000000000398e+01 0.000000000000000000e+00 +3.549000000000000199e+01 0.000000000000000000e+00 +3.550000000000000000e+01 0.000000000000000000e+00 +3.550999999999999801e+01 0.000000000000000000e+00 +3.552000000000000313e+01 0.000000000000000000e+00 +3.553000000000000114e+01 0.000000000000000000e+00 +3.553999999999999915e+01 0.000000000000000000e+00 +3.555000000000000426e+01 0.000000000000000000e+00 +3.556000000000000227e+01 0.000000000000000000e+00 +3.557000000000000028e+01 0.000000000000000000e+00 +3.557999999999999829e+01 0.000000000000000000e+00 +3.559000000000000341e+01 -0.000000000000000000e+00 +3.560000000000000142e+01 -0.000000000000000000e+00 +3.560999999999999943e+01 -0.000000000000000000e+00 +3.561999999999999744e+01 -0.000000000000000000e+00 +3.563000000000000256e+01 -0.000000000000000000e+00 +3.564000000000000057e+01 -0.000000000000000000e+00 +3.564999999999999858e+01 -0.000000000000000000e+00 +3.566000000000000369e+01 -0.000000000000000000e+00 +3.567000000000000171e+01 -0.000000000000000000e+00 +3.567999999999999972e+01 -0.000000000000000000e+00 +3.568999999999999773e+01 -0.000000000000000000e+00 +3.570000000000000284e+01 -0.000000000000000000e+00 +3.571000000000000085e+01 -0.000000000000000000e+00 +3.571999999999999886e+01 -0.000000000000000000e+00 +3.573000000000000398e+01 -0.000000000000000000e+00 +3.574000000000000199e+01 -0.000000000000000000e+00 +3.575000000000000000e+01 -0.000000000000000000e+00 +3.575999999999999801e+01 -0.000000000000000000e+00 +3.577000000000000313e+01 -0.000000000000000000e+00 +3.578000000000000114e+01 -0.000000000000000000e+00 +3.578999999999999915e+01 -0.000000000000000000e+00 +3.580000000000000426e+01 -0.000000000000000000e+00 +3.581000000000000227e+01 -0.000000000000000000e+00 +3.582000000000000028e+01 -0.000000000000000000e+00 +3.582999999999999829e+01 -0.000000000000000000e+00 +3.584000000000000341e+01 -0.000000000000000000e+00 +3.585000000000000142e+01 -0.000000000000000000e+00 +3.585999999999999943e+01 -0.000000000000000000e+00 +3.586999999999999744e+01 -0.000000000000000000e+00 +3.588000000000000256e+01 -0.000000000000000000e+00 +3.589000000000000057e+01 -0.000000000000000000e+00 +3.589999999999999858e+01 -0.000000000000000000e+00 +3.591000000000000369e+01 -0.000000000000000000e+00 +3.592000000000000171e+01 -0.000000000000000000e+00 +3.592999999999999972e+01 -0.000000000000000000e+00 +3.593999999999999773e+01 -0.000000000000000000e+00 +3.595000000000000284e+01 -0.000000000000000000e+00 +3.596000000000000085e+01 -0.000000000000000000e+00 +3.596999999999999886e+01 -0.000000000000000000e+00 +3.598000000000000398e+01 -0.000000000000000000e+00 +3.599000000000000199e+01 -0.000000000000000000e+00 +3.600000000000000000e+01 -0.000000000000000000e+00 +3.600999999999999801e+01 -0.000000000000000000e+00 +3.602000000000000313e+01 -0.000000000000000000e+00 +3.603000000000000114e+01 -0.000000000000000000e+00 +3.603999999999999915e+01 -0.000000000000000000e+00 +3.605000000000000426e+01 -0.000000000000000000e+00 +3.606000000000000227e+01 -0.000000000000000000e+00 +3.607000000000000028e+01 -0.000000000000000000e+00 +3.607999999999999829e+01 -0.000000000000000000e+00 +3.609000000000000341e+01 -0.000000000000000000e+00 +3.610000000000000142e+01 -0.000000000000000000e+00 +3.610999999999999943e+01 -0.000000000000000000e+00 +3.611999999999999744e+01 -0.000000000000000000e+00 +3.613000000000000256e+01 -0.000000000000000000e+00 +3.614000000000000057e+01 -0.000000000000000000e+00 +3.614999999999999858e+01 -0.000000000000000000e+00 +3.616000000000000369e+01 -0.000000000000000000e+00 +3.617000000000000171e+01 -0.000000000000000000e+00 +3.617999999999999972e+01 -0.000000000000000000e+00 +3.618999999999999773e+01 -0.000000000000000000e+00 +3.620000000000000284e+01 -0.000000000000000000e+00 +3.621000000000000085e+01 -0.000000000000000000e+00 +3.621999999999999886e+01 -0.000000000000000000e+00 +3.623000000000000398e+01 -0.000000000000000000e+00 +3.624000000000000199e+01 -0.000000000000000000e+00 +3.625000000000000000e+01 -0.000000000000000000e+00 +3.625999999999999801e+01 0.000000000000000000e+00 +3.627000000000000313e+01 0.000000000000000000e+00 +3.628000000000000114e+01 0.000000000000000000e+00 +3.628999999999999915e+01 0.000000000000000000e+00 +3.630000000000000426e+01 0.000000000000000000e+00 +3.631000000000000227e+01 0.000000000000000000e+00 +3.632000000000000028e+01 0.000000000000000000e+00 +3.632999999999999829e+01 0.000000000000000000e+00 +3.634000000000000341e+01 0.000000000000000000e+00 +3.635000000000000142e+01 0.000000000000000000e+00 +3.635999999999999943e+01 0.000000000000000000e+00 +3.636999999999999744e+01 0.000000000000000000e+00 +3.638000000000000256e+01 0.000000000000000000e+00 +3.639000000000000057e+01 0.000000000000000000e+00 +3.639999999999999858e+01 0.000000000000000000e+00 +3.641000000000000369e+01 0.000000000000000000e+00 +3.642000000000000171e+01 0.000000000000000000e+00 +3.642999999999999972e+01 0.000000000000000000e+00 +3.643999999999999773e+01 0.000000000000000000e+00 +3.645000000000000284e+01 0.000000000000000000e+00 +3.646000000000000085e+01 0.000000000000000000e+00 +3.646999999999999886e+01 0.000000000000000000e+00 +3.648000000000000398e+01 0.000000000000000000e+00 +3.649000000000000199e+01 -0.000000000000000000e+00 +3.650000000000000000e+01 -0.000000000000000000e+00 +3.650999999999999801e+01 -0.000000000000000000e+00 +3.652000000000000313e+01 -0.000000000000000000e+00 +3.653000000000000114e+01 -0.000000000000000000e+00 +3.653999999999999915e+01 -0.000000000000000000e+00 +3.655000000000000426e+01 -0.000000000000000000e+00 +3.656000000000000227e+01 -0.000000000000000000e+00 +3.657000000000000028e+01 -0.000000000000000000e+00 +3.657999999999999829e+01 -0.000000000000000000e+00 +3.659000000000000341e+01 -0.000000000000000000e+00 +3.660000000000000142e+01 -0.000000000000000000e+00 +3.660999999999999943e+01 -0.000000000000000000e+00 +3.661999999999999744e+01 0.000000000000000000e+00 +3.663000000000000256e+01 0.000000000000000000e+00 +3.664000000000000057e+01 0.000000000000000000e+00 +3.664999999999999858e+01 0.000000000000000000e+00 +3.666000000000000369e+01 0.000000000000000000e+00 +3.667000000000000171e+01 0.000000000000000000e+00 +3.667999999999999972e+01 0.000000000000000000e+00 +3.668999999999999773e+01 0.000000000000000000e+00 +3.670000000000000284e+01 0.000000000000000000e+00 +3.671000000000000085e+01 0.000000000000000000e+00 +3.671999999999999886e+01 0.000000000000000000e+00 +3.673000000000000398e+01 0.000000000000000000e+00 +3.674000000000000199e+01 0.000000000000000000e+00 +3.675000000000000000e+01 0.000000000000000000e+00 +3.675999999999999801e+01 0.000000000000000000e+00 +3.677000000000000313e+01 0.000000000000000000e+00 +3.678000000000000114e+01 0.000000000000000000e+00 +3.678999999999999915e+01 0.000000000000000000e+00 +3.680000000000000426e+01 -0.000000000000000000e+00 +3.681000000000000227e+01 -0.000000000000000000e+00 +3.682000000000000028e+01 -0.000000000000000000e+00 +3.682999999999999829e+01 -0.000000000000000000e+00 +3.684000000000000341e+01 -0.000000000000000000e+00 +3.685000000000000142e+01 -0.000000000000000000e+00 +3.685999999999999943e+01 -0.000000000000000000e+00 +3.686999999999999744e+01 -0.000000000000000000e+00 +3.688000000000000256e+01 -0.000000000000000000e+00 +3.689000000000000057e+01 -0.000000000000000000e+00 +3.689999999999999858e+01 -0.000000000000000000e+00 +3.691000000000000369e+01 -0.000000000000000000e+00 +3.692000000000000171e+01 -0.000000000000000000e+00 +3.692999999999999972e+01 -0.000000000000000000e+00 +3.693999999999999773e+01 -0.000000000000000000e+00 +3.695000000000000284e+01 -0.000000000000000000e+00 +3.696000000000000085e+01 -0.000000000000000000e+00 +3.696999999999999886e+01 -0.000000000000000000e+00 +3.698000000000000398e+01 -0.000000000000000000e+00 +3.699000000000000199e+01 -0.000000000000000000e+00 +3.700000000000000000e+01 -0.000000000000000000e+00 +3.700999999999999801e+01 -0.000000000000000000e+00 +3.702000000000000313e+01 -0.000000000000000000e+00 +3.703000000000000114e+01 -0.000000000000000000e+00 +3.703999999999999915e+01 -0.000000000000000000e+00 +3.705000000000000426e+01 -0.000000000000000000e+00 +3.706000000000000227e+01 -0.000000000000000000e+00 +3.707000000000000028e+01 -0.000000000000000000e+00 +3.707999999999999829e+01 -0.000000000000000000e+00 +3.709000000000000341e+01 -0.000000000000000000e+00 +3.710000000000000142e+01 -0.000000000000000000e+00 +3.710999999999999943e+01 -0.000000000000000000e+00 +3.711999999999999744e+01 -0.000000000000000000e+00 +3.713000000000000256e+01 0.000000000000000000e+00 +3.714000000000000057e+01 0.000000000000000000e+00 +3.714999999999999858e+01 0.000000000000000000e+00 +3.716000000000000369e+01 0.000000000000000000e+00 +3.717000000000000171e+01 0.000000000000000000e+00 +3.717999999999999972e+01 0.000000000000000000e+00 +3.718999999999999773e+01 0.000000000000000000e+00 +3.720000000000000284e+01 0.000000000000000000e+00 +3.721000000000000085e+01 0.000000000000000000e+00 +3.721999999999999886e+01 0.000000000000000000e+00 +3.723000000000000398e+01 0.000000000000000000e+00 +3.724000000000000199e+01 0.000000000000000000e+00 +3.725000000000000000e+01 0.000000000000000000e+00 +3.725999999999999801e+01 0.000000000000000000e+00 +3.727000000000000313e+01 0.000000000000000000e+00 +3.728000000000000114e+01 0.000000000000000000e+00 +3.728999999999999915e+01 0.000000000000000000e+00 +3.730000000000000426e+01 0.000000000000000000e+00 +3.731000000000000227e+01 0.000000000000000000e+00 +3.732000000000000028e+01 0.000000000000000000e+00 +3.732999999999999829e+01 0.000000000000000000e+00 +3.734000000000000341e+01 0.000000000000000000e+00 +3.735000000000000142e+01 0.000000000000000000e+00 +3.735999999999999943e+01 0.000000000000000000e+00 +3.736999999999999744e+01 0.000000000000000000e+00 +3.738000000000000256e+01 0.000000000000000000e+00 +3.739000000000000057e+01 0.000000000000000000e+00 +3.739999999999999858e+01 0.000000000000000000e+00 +3.741000000000000369e+01 0.000000000000000000e+00 +3.742000000000000171e+01 0.000000000000000000e+00 +3.742999999999999972e+01 0.000000000000000000e+00 +3.743999999999999773e+01 0.000000000000000000e+00 +3.745000000000000284e+01 0.000000000000000000e+00 +3.746000000000000085e+01 0.000000000000000000e+00 +3.746999999999999886e+01 0.000000000000000000e+00 +3.748000000000000398e+01 0.000000000000000000e+00 +3.749000000000000199e+01 0.000000000000000000e+00 +3.750000000000000000e+01 0.000000000000000000e+00 +3.750999999999999801e+01 0.000000000000000000e+00 +3.752000000000000313e+01 0.000000000000000000e+00 +3.753000000000000114e+01 0.000000000000000000e+00 +3.753999999999999915e+01 0.000000000000000000e+00 +3.755000000000000426e+01 0.000000000000000000e+00 +3.756000000000000227e+01 0.000000000000000000e+00 +3.757000000000000028e+01 0.000000000000000000e+00 +3.757999999999999829e+01 0.000000000000000000e+00 +3.759000000000000341e+01 0.000000000000000000e+00 +3.760000000000000142e+01 0.000000000000000000e+00 +3.760999999999999943e+01 0.000000000000000000e+00 +3.761999999999999744e+01 0.000000000000000000e+00 +3.763000000000000256e+01 0.000000000000000000e+00 +3.764000000000000057e+01 0.000000000000000000e+00 +3.764999999999999858e+01 0.000000000000000000e+00 +3.766000000000000369e+01 0.000000000000000000e+00 +3.767000000000000171e+01 0.000000000000000000e+00 +3.767999999999999972e+01 0.000000000000000000e+00 +3.768999999999999773e+01 0.000000000000000000e+00 +3.770000000000000284e+01 0.000000000000000000e+00 +3.771000000000000085e+01 0.000000000000000000e+00 +3.771999999999999886e+01 0.000000000000000000e+00 +3.773000000000000398e+01 0.000000000000000000e+00 +3.774000000000000199e+01 0.000000000000000000e+00 +3.775000000000000000e+01 0.000000000000000000e+00 +3.775999999999999801e+01 0.000000000000000000e+00 +3.777000000000000313e+01 0.000000000000000000e+00 +3.778000000000000114e+01 0.000000000000000000e+00 +3.778999999999999915e+01 -0.000000000000000000e+00 +3.780000000000000426e+01 -0.000000000000000000e+00 +3.781000000000000227e+01 -0.000000000000000000e+00 +3.782000000000000028e+01 -0.000000000000000000e+00 +3.782999999999999829e+01 -0.000000000000000000e+00 +3.784000000000000341e+01 -0.000000000000000000e+00 +3.785000000000000142e+01 -0.000000000000000000e+00 +3.785999999999999943e+01 -0.000000000000000000e+00 +3.786999999999999744e+01 -0.000000000000000000e+00 +3.788000000000000256e+01 -0.000000000000000000e+00 +3.789000000000000057e+01 -0.000000000000000000e+00 +3.789999999999999858e+01 -0.000000000000000000e+00 +3.791000000000000369e+01 -0.000000000000000000e+00 +3.792000000000000171e+01 -0.000000000000000000e+00 +3.792999999999999972e+01 -0.000000000000000000e+00 +3.793999999999999773e+01 -0.000000000000000000e+00 +3.795000000000000284e+01 -0.000000000000000000e+00 +3.796000000000000085e+01 -0.000000000000000000e+00 +3.796999999999999886e+01 -0.000000000000000000e+00 +3.798000000000000398e+01 -0.000000000000000000e+00 +3.799000000000000199e+01 -0.000000000000000000e+00 +3.800000000000000000e+01 -0.000000000000000000e+00 +3.800999999999999801e+01 -0.000000000000000000e+00 +3.802000000000000313e+01 -0.000000000000000000e+00 +3.803000000000000114e+01 -0.000000000000000000e+00 +3.803999999999999915e+01 -0.000000000000000000e+00 +3.805000000000000426e+01 -0.000000000000000000e+00 +3.806000000000000227e+01 -0.000000000000000000e+00 +3.807000000000000028e+01 -0.000000000000000000e+00 +3.807999999999999829e+01 -0.000000000000000000e+00 +3.809000000000000341e+01 -0.000000000000000000e+00 +3.810000000000000142e+01 -0.000000000000000000e+00 +3.810999999999999943e+01 -0.000000000000000000e+00 +3.811999999999999744e+01 0.000000000000000000e+00 +3.813000000000000256e+01 0.000000000000000000e+00 +3.814000000000000057e+01 0.000000000000000000e+00 +3.814999999999999858e+01 0.000000000000000000e+00 +3.816000000000000369e+01 0.000000000000000000e+00 +3.817000000000000171e+01 0.000000000000000000e+00 +3.817999999999999972e+01 0.000000000000000000e+00 +3.818999999999999773e+01 0.000000000000000000e+00 +3.820000000000000284e+01 0.000000000000000000e+00 +3.821000000000000085e+01 0.000000000000000000e+00 +3.821999999999999886e+01 0.000000000000000000e+00 +3.823000000000000398e+01 0.000000000000000000e+00 +3.824000000000000199e+01 0.000000000000000000e+00 +3.825000000000000000e+01 0.000000000000000000e+00 +3.825999999999999801e+01 0.000000000000000000e+00 +3.827000000000000313e+01 0.000000000000000000e+00 +3.828000000000000114e+01 0.000000000000000000e+00 +3.828999999999999915e+01 0.000000000000000000e+00 +3.830000000000000426e+01 0.000000000000000000e+00 +3.831000000000000227e+01 0.000000000000000000e+00 +3.832000000000000028e+01 0.000000000000000000e+00 +3.832999999999999829e+01 0.000000000000000000e+00 +3.834000000000000341e+01 -0.000000000000000000e+00 +3.835000000000000142e+01 -0.000000000000000000e+00 +3.835999999999999943e+01 -0.000000000000000000e+00 +3.836999999999999744e+01 -0.000000000000000000e+00 +3.838000000000000256e+01 -0.000000000000000000e+00 +3.839000000000000057e+01 -0.000000000000000000e+00 +3.839999999999999858e+01 -0.000000000000000000e+00 +3.841000000000000369e+01 -0.000000000000000000e+00 +3.842000000000000171e+01 -0.000000000000000000e+00 +3.842999999999999972e+01 -0.000000000000000000e+00 +3.843999999999999773e+01 -0.000000000000000000e+00 +3.845000000000000284e+01 -0.000000000000000000e+00 +3.846000000000000085e+01 -0.000000000000000000e+00 +3.846999999999999886e+01 -0.000000000000000000e+00 +3.848000000000000398e+01 -0.000000000000000000e+00 +3.849000000000000199e+01 -0.000000000000000000e+00 +3.850000000000000000e+01 -0.000000000000000000e+00 +3.850999999999999801e+01 -0.000000000000000000e+00 +3.852000000000000313e+01 -0.000000000000000000e+00 +3.853000000000000114e+01 -0.000000000000000000e+00 +3.853999999999999915e+01 -0.000000000000000000e+00 +3.855000000000000426e+01 -0.000000000000000000e+00 +3.856000000000000227e+01 -0.000000000000000000e+00 +3.857000000000000028e+01 -0.000000000000000000e+00 +3.857999999999999829e+01 -0.000000000000000000e+00 +3.859000000000000341e+01 -0.000000000000000000e+00 +3.860000000000000142e+01 -0.000000000000000000e+00 +3.860999999999999943e+01 -0.000000000000000000e+00 +3.861999999999999744e+01 -0.000000000000000000e+00 +3.863000000000000256e+01 -0.000000000000000000e+00 +3.864000000000000057e+01 -0.000000000000000000e+00 +3.864999999999999858e+01 -0.000000000000000000e+00 +3.866000000000000369e+01 -0.000000000000000000e+00 +3.867000000000000171e+01 0.000000000000000000e+00 +3.867999999999999972e+01 0.000000000000000000e+00 +3.868999999999999773e+01 0.000000000000000000e+00 +3.870000000000000284e+01 0.000000000000000000e+00 +3.871000000000000085e+01 0.000000000000000000e+00 +3.871999999999999886e+01 0.000000000000000000e+00 +3.873000000000000398e+01 0.000000000000000000e+00 +3.874000000000000199e+01 0.000000000000000000e+00 +3.875000000000000000e+01 0.000000000000000000e+00 +3.875999999999999801e+01 0.000000000000000000e+00 +3.877000000000000313e+01 0.000000000000000000e+00 +3.878000000000000114e+01 0.000000000000000000e+00 +3.878999999999999915e+01 0.000000000000000000e+00 +3.880000000000000426e+01 0.000000000000000000e+00 +3.881000000000000227e+01 0.000000000000000000e+00 +3.882000000000000028e+01 0.000000000000000000e+00 +3.882999999999999829e+01 0.000000000000000000e+00 +3.884000000000000341e+01 0.000000000000000000e+00 +3.885000000000000142e+01 0.000000000000000000e+00 +3.885999999999999943e+01 0.000000000000000000e+00 +3.886999999999999744e+01 0.000000000000000000e+00 +3.888000000000000256e+01 0.000000000000000000e+00 +3.889000000000000057e+01 0.000000000000000000e+00 +3.889999999999999858e+01 0.000000000000000000e+00 +3.891000000000000369e+01 0.000000000000000000e+00 +3.892000000000000171e+01 0.000000000000000000e+00 +3.892999999999999972e+01 0.000000000000000000e+00 +3.893999999999999773e+01 0.000000000000000000e+00 +3.895000000000000284e+01 0.000000000000000000e+00 +3.896000000000000085e+01 0.000000000000000000e+00 +3.896999999999999886e+01 0.000000000000000000e+00 +3.898000000000000398e+01 0.000000000000000000e+00 +3.899000000000000199e+01 0.000000000000000000e+00 +3.900000000000000000e+01 0.000000000000000000e+00 +3.900999999999999801e+01 0.000000000000000000e+00 +3.902000000000000313e+01 0.000000000000000000e+00 +3.903000000000000114e+01 0.000000000000000000e+00 +3.903999999999999915e+01 0.000000000000000000e+00 +3.905000000000000426e+01 0.000000000000000000e+00 +3.906000000000000227e+01 0.000000000000000000e+00 +3.907000000000000028e+01 0.000000000000000000e+00 +3.907999999999999829e+01 0.000000000000000000e+00 +3.909000000000000341e+01 0.000000000000000000e+00 +3.910000000000000142e+01 0.000000000000000000e+00 +3.910999999999999943e+01 0.000000000000000000e+00 +3.911999999999999744e+01 0.000000000000000000e+00 +3.913000000000000256e+01 0.000000000000000000e+00 +3.914000000000000057e+01 0.000000000000000000e+00 +3.914999999999999858e+01 0.000000000000000000e+00 +3.916000000000000369e+01 0.000000000000000000e+00 +3.917000000000000171e+01 0.000000000000000000e+00 +3.917999999999999972e+01 0.000000000000000000e+00 +3.918999999999999773e+01 -0.000000000000000000e+00 +3.920000000000000284e+01 -0.000000000000000000e+00 +3.921000000000000085e+01 -0.000000000000000000e+00 +3.921999999999999886e+01 -0.000000000000000000e+00 +3.923000000000000398e+01 -0.000000000000000000e+00 +3.924000000000000199e+01 -0.000000000000000000e+00 +3.925000000000000000e+01 -0.000000000000000000e+00 +3.925999999999999801e+01 -0.000000000000000000e+00 +3.927000000000000313e+01 -0.000000000000000000e+00 +3.928000000000000114e+01 -0.000000000000000000e+00 +3.928999999999999915e+01 -0.000000000000000000e+00 +3.930000000000000426e+01 -0.000000000000000000e+00 +3.931000000000000227e+01 -0.000000000000000000e+00 +3.932000000000000028e+01 -0.000000000000000000e+00 +3.932999999999999829e+01 -0.000000000000000000e+00 +3.934000000000000341e+01 -0.000000000000000000e+00 +3.935000000000000142e+01 -0.000000000000000000e+00 +3.935999999999999943e+01 -0.000000000000000000e+00 +3.936999999999999744e+01 -0.000000000000000000e+00 +3.938000000000000256e+01 -0.000000000000000000e+00 +3.939000000000000057e+01 -0.000000000000000000e+00 +3.939999999999999858e+01 -0.000000000000000000e+00 +3.941000000000000369e+01 -0.000000000000000000e+00 +3.942000000000000171e+01 -0.000000000000000000e+00 +3.942999999999999972e+01 0.000000000000000000e+00 +3.943999999999999773e+01 0.000000000000000000e+00 +3.945000000000000284e+01 0.000000000000000000e+00 +3.946000000000000085e+01 0.000000000000000000e+00 +3.946999999999999886e+01 0.000000000000000000e+00 +3.948000000000000398e+01 0.000000000000000000e+00 +3.949000000000000199e+01 0.000000000000000000e+00 +3.950000000000000000e+01 0.000000000000000000e+00 +3.950999999999999801e+01 0.000000000000000000e+00 +3.952000000000000313e+01 0.000000000000000000e+00 +3.953000000000000114e+01 0.000000000000000000e+00 +3.953999999999999915e+01 0.000000000000000000e+00 +3.955000000000000426e+01 0.000000000000000000e+00 +3.956000000000000227e+01 0.000000000000000000e+00 +3.957000000000000028e+01 0.000000000000000000e+00 +3.957999999999999829e+01 0.000000000000000000e+00 +3.959000000000000341e+01 0.000000000000000000e+00 +3.960000000000000142e+01 0.000000000000000000e+00 +3.960999999999999943e+01 0.000000000000000000e+00 +3.961999999999999744e+01 0.000000000000000000e+00 +3.963000000000000256e+01 0.000000000000000000e+00 +3.964000000000000057e+01 0.000000000000000000e+00 +3.964999999999999858e+01 0.000000000000000000e+00 +3.966000000000000369e+01 0.000000000000000000e+00 +3.967000000000000171e+01 0.000000000000000000e+00 +3.967999999999999972e+01 0.000000000000000000e+00 +3.968999999999999773e+01 0.000000000000000000e+00 +3.970000000000000284e+01 0.000000000000000000e+00 +3.971000000000000085e+01 0.000000000000000000e+00 +3.971999999999999886e+01 -0.000000000000000000e+00 +3.973000000000000398e+01 -0.000000000000000000e+00 +3.974000000000000199e+01 -0.000000000000000000e+00 +3.975000000000000000e+01 -0.000000000000000000e+00 +3.975999999999999801e+01 -0.000000000000000000e+00 +3.977000000000000313e+01 -0.000000000000000000e+00 +3.978000000000000114e+01 -0.000000000000000000e+00 +3.978999999999999915e+01 -0.000000000000000000e+00 +3.980000000000000426e+01 -0.000000000000000000e+00 +3.981000000000000227e+01 -0.000000000000000000e+00 +3.982000000000000028e+01 -0.000000000000000000e+00 +3.982999999999999829e+01 -0.000000000000000000e+00 +3.984000000000000341e+01 -0.000000000000000000e+00 +3.985000000000000142e+01 -0.000000000000000000e+00 +3.985999999999999943e+01 -0.000000000000000000e+00 +3.986999999999999744e+01 -0.000000000000000000e+00 +3.988000000000000256e+01 -0.000000000000000000e+00 +3.989000000000000057e+01 -0.000000000000000000e+00 +3.989999999999999858e+01 -0.000000000000000000e+00 +3.991000000000000369e+01 -0.000000000000000000e+00 +3.992000000000000171e+01 -0.000000000000000000e+00 +3.992999999999999972e+01 -0.000000000000000000e+00 +3.993999999999999773e+01 -0.000000000000000000e+00 +3.995000000000000284e+01 -0.000000000000000000e+00 +3.996000000000000085e+01 -0.000000000000000000e+00 +3.996999999999999886e+01 -0.000000000000000000e+00 +3.998000000000000398e+01 -0.000000000000000000e+00 +3.999000000000000199e+01 -0.000000000000000000e+00 diff --git a/tests/testdata/squeeze_morph.cgr b/tests/testdata/squeeze_morph.cgr new file mode 100644 index 00000000..cc7799b9 --- /dev/null +++ b/tests/testdata/squeeze_morph.cgr @@ -0,0 +1,105 @@ +# PDF created by diffpy.morph +# from PATH + +# Labels: [r] [gr] +0.000000000000000000e+00 0.000000000000000000e+00 +1.000000000000000056e-01 2.016607210740701817e-01 +2.000000000000000111e-01 4.012816425967311584e-01 +3.000000000000000444e-01 5.968384836782407721e-01 +4.000000000000000222e-01 7.863460390718853832e-01 +5.000000000000000000e-01 9.678774221035963965e-01 +6.000000000000000888e-01 1.139582805695501078e+00 +7.000000000000000666e-01 1.299707497430252046e+00 +8.000000000000000444e-01 1.446609189174991705e+00 +9.000000000000000222e-01 1.578774227495413296e+00 +1.000000000000000000e+00 1.694832757920656352e+00 +1.100000000000000089e+00 1.793572604043012886e+00 +1.200000000000000178e+00 1.873951751421987222e+00 +1.300000000000000044e+00 1.935109316274401969e+00 +1.400000000000000133e+00 1.976374889929940482e+00 +1.500000000000000000e+00 1.997276161968231323e+00 +1.600000000000000089e+00 1.997544737777092294e+00 +1.700000000000000178e+00 1.977120079923743390e+00 +1.800000000000000044e+00 1.936151517147448820e+00 +1.900000000000000133e+00 1.874998279892714503e+00 +2.000000000000000000e+00 1.794227537029879693e+00 +2.100000000000000089e+00 1.694610424671280313e+00 +2.200000000000000178e+00 1.577116074695904757e+00 +2.300000000000000266e+00 1.442903667646756372e+00 +2.400000000000000355e+00 1.293312551959283851e+00 +2.500000000000000000e+00 1.129850488905959738e+00 +2.600000000000000089e+00 9.541801000842509151e-01 +2.700000000000000178e+00 7.681036116097271771e-01 +2.800000000000000266e+00 5.735460062730138864e-01 +2.900000000000000355e+00 3.725367116437122150e-01 +3.000000000000000000e+00 1.671899683154590699e-01 +3.100000000000000089e+00 -4.031596196150075834e-02 +3.200000000000000178e+00 -2.477605737698468646e-01 +3.300000000000000266e+00 -4.529036928636547832e-01 +3.400000000000000355e+00 -6.535086474160737291e-01 +3.500000000000000000e+00 -8.473658233427887598e-01 +3.600000000000000089e+00 -1.032316381403495242e+00 +3.700000000000000178e+00 -1.206275905404040172e+00 +3.800000000000000266e+00 -1.367257744179736667e+00 +3.900000000000000355e+00 -1.513395805283929141e+00 +4.000000000000000000e+00 -1.642966555577477061e+00 +4.100000000000000533e+00 -1.754409983348725222e+00 +4.200000000000000178e+00 -1.846349278313989206e+00 +4.299999999999999822e+00 -1.917608989968017763e+00 +4.400000000000000355e+00 -1.967231431369953931e+00 +4.500000000000000000e+00 -1.994491104644685819e+00 +4.600000000000000533e+00 -1.998906936314116090e+00 +4.700000000000000178e+00 -1.980252125089067672e+00 +4.800000000000000711e+00 -1.938561421967258891e+00 +4.900000000000000355e+00 -1.874135682387076951e+00 +5.000000000000000000e+00 -1.787543552743151798e+00 +5.100000000000000533e+00 -1.679620178709657630e+00 +5.200000000000000178e+00 -1.551462850439542906e+00 +5.300000000000000711e+00 -1.404423529676374072e+00 +5.400000000000000355e+00 -1.240098235957646233e+00 +5.500000000000000000e+00 -1.060313303193321621e+00 +5.600000000000000533e+00 -8.671085537216786099e-01 +5.700000000000000178e+00 -6.627174741864847451e-01 +5.800000000000000711e+00 -4.495445159157776538e-01 +5.900000000000000355e+00 -2.301396815438895571e-01 +6.000000000000000000e+00 -7.170598996826864358e-03 +6.100000000000000533e+00 2.166076767888532317e-01 +6.200000000000000178e+00 4.383848554024750710e-01 +6.300000000000000711e+00 6.553292792208245121e-01 +6.400000000000000355e+00 8.646231160092439083e-01 +6.500000000000000000e+00 1.063498489850685624e+00 +6.600000000000000533e+00 1.249274133578965218e+00 +6.700000000000000178e+00 1.419392118491213939e+00 +6.800000000000000711e+00 1.571454193726408821e+00 +6.900000000000000355e+00 1.703257248921869360e+00 +7.000000000000000000e+00 1.812827400185563764e+00 +7.100000000000000533e+00 1.898452191616431639e+00 +7.200000000000000178e+00 1.958710403102522868e+00 +7.300000000000000711e+00 1.992498960420514109e+00 +7.400000000000000355e+00 1.999056456187634501e+00 +7.500000000000000000e+00 1.977982810349711684e+00 +7.600000000000000533e+00 1.929254626918742277e+00 +7.700000000000000178e+00 1.853235839800372542e+00 +7.800000000000000711e+00 1.750683284871877854e+00 +7.900000000000000355e+00 1.622746887964007678e+00 +8.000000000000000000e+00 1.470964218916802180e+00 +8.099999999999999645e+00 1.297249230133007636e+00 +8.200000000000001066e+00 1.103875073606781942e+00 +8.300000000000000711e+00 8.934509726687409614e-01 +8.400000000000000355e+00 6.688932129054430131e-01 +8.500000000000000000e+00 4.333904099623434036e-01 +8.599999999999999645e+00 1.903633091336342231e-01 +8.700000000000001066e+00 -5.658052847403799435e-02 +8.800000000000000711e+00 -3.036966972619735139e-01 +8.900000000000000355e+00 -5.471580191460774234e-01 +9.000000000000000000e+00 -7.831120606064566614e-01 +9.099999999999999645e+00 -1.007741344138793016e+00 +9.200000000000001066e+00 -1.217325414256249960e+00 +9.300000000000000711e+00 -1.408303836788730168e+00 +9.400000000000000355e+00 -1.577339138701817634e+00 +9.500000000000000000e+00 -1.721378636094831327e+00 +9.600000000000001421e+00 -1.837714052498993222e+00 +9.700000000000001066e+00 -1.924037800077388338e+00 +9.800000000000000711e+00 -1.978494784713575205e+00 +9.900000000000000355e+00 -1.999728603987454667e+00 +1.000000000000000000e+01 -1.986921036185803846e+00 diff --git a/tests/testdata/squeeze_target.cgr b/tests/testdata/squeeze_target.cgr new file mode 100644 index 00000000..5a7c4017 --- /dev/null +++ b/tests/testdata/squeeze_target.cgr @@ -0,0 +1,128 @@ +# PDF created by diffpy.morph +# from PATH + +# Input morphing parameters: +# scale = 2.0 +# stretch = None +# smear = None +# hshift = None +# vshift = None +# squeeze a0 = 0.0 +# squeeze a1 = -0.001 +# squeeze a2 = -0.0001 +# squeeze a3 = 0.0001 + +# Optimized morphing parameters: +# rmin = 0.000000 +# rmax = 10.100000 +# rstep = 0.100000 +# scale = 0.500000 +# squeeze a0 = 0.000000 +# squeeze a1 = 0.010000 +# squeeze a2 = 0.000100 +# squeeze a3 = 0.001000 +# Rw = 0.000000 +# Pearson = 1.000000 + +# Labels: [r] [gr] +0.000000000000000000e+00 -8.357788796904224253e-08 +1.000000000000000056e-01 9.983335989539958433e-02 +2.000000000000000111e-01 1.986692882755068390e-01 +3.000000000000000444e-01 2.955201900777184587e-01 +4.000000000000000222e-01 3.894183455897525792e-01 +5.000000000000000000e-01 4.794255628338816577e-01 +6.000000000000000888e-01 5.646425163401342928e-01 +7.000000000000000666e-01 6.442177472575285613e-01 +8.000000000000000444e-01 7.173561656390742280e-01 +9.000000000000000222e-01 7.833269965082827468e-01 +1.000000000000000000e+00 8.414710809423141535e-01 +1.100000000000000089e+00 8.912074623687431529e-01 +1.200000000000000178e+00 9.320391912438557025e-01 +1.300000000000000044e+00 9.635582904389520253e-01 +1.400000000000000133e+00 9.854498316195489105e-01 +1.500000000000000000e+00 9.974950819180453676e-01 +1.600000000000000089e+00 9.995736894484723578e-01 +1.700000000000000178e+00 9.916648858278295231e-01 +1.800000000000000044e+00 9.738476936863433853e-01 +1.900000000000000133e+00 9.463001370918723287e-01 +2.000000000000000000e+00 9.092974627759751183e-01 +2.100000000000000089e+00 8.632093899332391462e-01 +2.200000000000000178e+00 8.084964160720563564e-01 +2.300000000000000266e+00 7.457052158273517195e-01 +2.400000000000000355e+00 6.754631787095541906e-01 +2.500000000000000000e+00 5.984721403688244568e-01 +2.600000000000000089e+00 5.155013700132252685e-01 +2.700000000000000178e+00 4.273798840535988908e-01 +2.800000000000000266e+00 3.349881627820611163e-01 +2.900000000000000355e+00 2.392493528578337192e-01 +3.000000000000000000e+00 1.411200435139138010e-01 +3.100000000000000089e+00 4.158070865920206888e-02 +3.200000000000000178e+00 -5.837408960958168080e-02 +3.300000000000000266e+00 -1.577456381872548441e-01 +3.400000000000000355e+00 -2.555410515265202354e-01 +3.500000000000000000e+00 -3.507831918753864797e-01 +3.600000000000000089e+00 -4.425204320563480009e-01 +3.700000000000000178e+00 -5.298361632374190000e-01 +3.800000000000000266e+00 -6.118579527020228115e-01 +3.900000000000000355e+00 -6.877662601339329385e-01 +4.000000000000000000e+00 -7.568026253602615494e-01 +4.100000000000000533e+00 -8.182772483416952403e-01 +4.200000000000000178e+00 -8.715758921842486906e-01 +4.299999999999999822e+00 -9.161660173828498621e-01 +4.400000000000000355e+00 -9.516021002227514902e-01 +4.500000000000000000e+00 -9.775300836040233809e-01 +4.600000000000000533e+00 -9.936909136186475866e-01 +4.700000000000000178e+00 -9.999231265841722616e-01 +4.800000000000000711e+00 -9.961644607670143703e-01 +4.900000000000000355e+00 -9.824524768209257353e-01 +5.000000000000000000e+00 -9.589241809225684809e-01 +5.100000000000000533e+00 -9.258146546047605341e-01 +5.200000000000000178e+00 -8.834547052655963295e-01 +5.300000000000000711e+00 -8.322675611647437632e-01 +5.400000000000000355e+00 -7.727646443038580504e-01 +5.500000000000000000e+00 -7.055404651441096187e-01 +5.600000000000000533e+00 -6.312667151091209128e-01 +5.700000000000000178e+00 -5.506855493720435035e-01 +5.800000000000000711e+00 -4.646021351237333841e-01 +5.900000000000000355e+00 -3.738766024924461973e-01 +6.000000000000000000e+00 -2.794154497218503952e-01 +6.100000000000000533e+00 -1.821624876417017036e-01 +6.200000000000000178e+00 -8.308941446470229086e-02 +6.300000000000000711e+00 1.681388447947275780e-02 +6.400000000000000355e+00 1.165492148948801265e-01 +6.500000000000000000e+00 2.151200311503978224e-01 +6.600000000000000533e+00 3.115414025443001833e-01 +6.700000000000000178e+00 4.048499089995918898e-01 +6.800000000000000711e+00 4.941132660497548068e-01 +6.900000000000000355e+00 5.784396255563073463e-01 +7.000000000000000000e+00 6.569864681520779515e-01 +7.100000000000000533e+00 7.289689982084295305e-01 +7.200000000000000178e+00 7.936679588809117947e-01 +7.300000000000000711e+00 8.504367914640226234e-01 +7.400000000000000355e+00 8.987081693992005071e-01 +7.500000000000000000e+00 9.379998675576307621e-01 +7.600000000000000533e+00 9.679194196440626952e-01 +7.700000000000000178e+00 9.881679699685518292e-01 +7.800000000000000711e+00 9.985432236313553922e-01 +7.900000000000000355e+00 9.989414376611046587e-01 +8.000000000000000000e+00 9.893584389332742424e-01 +8.099999999999999645e+00 9.698898327615692594e-01 +8.200000000000001066e+00 9.407303515736493704e-01 +8.300000000000000711e+00 9.021715336418995035e-01 +8.400000000000000355e+00 8.545987062144498880e-01 +8.500000000000000000e+00 7.984871238128524729e-01 +8.599999999999999645e+00 7.343972374542593329e-01 +8.700000000000001066e+00 6.629692383579551818e-01 +8.800000000000000711e+00 5.849170287654014144e-01 +8.900000000000000355e+00 5.010206616413290792e-01 +9.000000000000000000e+00 4.121183976640565572e-01 +9.099999999999999645e+00 3.190983923437636927e-01 +9.200000000000001066e+00 2.228899358017164267e-01 +9.300000000000000711e+00 1.244543754116841927e-01 +9.400000000000000355e+00 2.477539551689142416e-02 +9.500000000000000000e+00 -7.515108859995893453e-02 +9.600000000000001421e+00 -1.743267637418187965e-01 +9.700000000000001066e+00 -2.717606916786979854e-01 +9.800000000000000711e+00 -3.664791265996873437e-01 +9.900000000000000355e+00 -4.575357200218788112e-01 +1.000000000000000000e+01 -5.440208946101240395e-01 diff --git a/tests/testdata/testsaving/succinct/Morph_Reference_Table.txt b/tests/testdata/testsequence/testsaving/succinct/Morph_Reference_Table.txt similarity index 100% rename from tests/testdata/testsaving/succinct/Morph_Reference_Table.txt rename to tests/testdata/testsequence/testsaving/succinct/Morph_Reference_Table.txt diff --git a/tests/testdata/testsaving/succinct/Morphs/mwt_a.cgr b/tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_a.cgr similarity index 100% rename from tests/testdata/testsaving/succinct/Morphs/mwt_a.cgr rename to tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_a.cgr diff --git a/tests/testdata/testsaving/succinct/Morphs/mwt_b.cgr b/tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_b.cgr similarity index 100% rename from tests/testdata/testsaving/succinct/Morphs/mwt_b.cgr rename to tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_b.cgr diff --git a/tests/testdata/testsaving/succinct/Morphs/mwt_c.cgr b/tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_c.cgr similarity index 100% rename from tests/testdata/testsaving/succinct/Morphs/mwt_c.cgr rename to tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_c.cgr diff --git a/tests/testdata/testsaving/succinct/Morphs/mwt_d.cgr b/tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_d.cgr similarity index 100% rename from tests/testdata/testsaving/succinct/Morphs/mwt_d.cgr rename to tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_d.cgr diff --git a/tests/testdata/testsaving/succinct/Morphs/mwt_e.cgr b/tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_e.cgr similarity index 100% rename from tests/testdata/testsaving/succinct/Morphs/mwt_e.cgr rename to tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_e.cgr diff --git a/tests/testdata/testsaving/succinct/Morphs/mwt_f.cgr b/tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_f.cgr similarity index 100% rename from tests/testdata/testsaving/succinct/Morphs/mwt_f.cgr rename to tests/testdata/testsequence/testsaving/succinct/Morphs/mwt_f.cgr diff --git a/tests/testdata/testsaving/succinct/single_succinct_morph.cgr b/tests/testdata/testsequence/testsaving/succinct/single_succinct_morph.cgr similarity index 100% rename from tests/testdata/testsaving/succinct/single_succinct_morph.cgr rename to tests/testdata/testsequence/testsaving/succinct/single_succinct_morph.cgr diff --git a/tests/testdata/testsaving/verbose/Morph_Reference_Table.txt b/tests/testdata/testsequence/testsaving/verbose/Morph_Reference_Table.txt similarity index 100% rename from tests/testdata/testsaving/verbose/Morph_Reference_Table.txt rename to tests/testdata/testsequence/testsaving/verbose/Morph_Reference_Table.txt diff --git a/tests/testdata/testsaving/verbose/Morphs/mwt_a.cgr b/tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_a.cgr similarity index 100% rename from tests/testdata/testsaving/verbose/Morphs/mwt_a.cgr rename to tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_a.cgr diff --git a/tests/testdata/testsaving/verbose/Morphs/mwt_b.cgr b/tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_b.cgr similarity index 100% rename from tests/testdata/testsaving/verbose/Morphs/mwt_b.cgr rename to tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_b.cgr diff --git a/tests/testdata/testsaving/verbose/Morphs/mwt_c.cgr b/tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_c.cgr similarity index 100% rename from tests/testdata/testsaving/verbose/Morphs/mwt_c.cgr rename to tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_c.cgr diff --git a/tests/testdata/testsaving/verbose/Morphs/mwt_d.cgr b/tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_d.cgr similarity index 100% rename from tests/testdata/testsaving/verbose/Morphs/mwt_d.cgr rename to tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_d.cgr diff --git a/tests/testdata/testsaving/verbose/Morphs/mwt_e.cgr b/tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_e.cgr similarity index 100% rename from tests/testdata/testsaving/verbose/Morphs/mwt_e.cgr rename to tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_e.cgr diff --git a/tests/testdata/testsaving/verbose/Morphs/mwt_f.cgr b/tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_f.cgr similarity index 100% rename from tests/testdata/testsaving/verbose/Morphs/mwt_f.cgr rename to tests/testdata/testsequence/testsaving/verbose/Morphs/mwt_f.cgr diff --git a/tests/testdata/testsaving/verbose/single_verbose_morph.cgr b/tests/testdata/testsequence/testsaving/verbose/single_verbose_morph.cgr similarity index 100% rename from tests/testdata/testsaving/verbose/single_verbose_morph.cgr rename to tests/testdata/testsequence/testsaving/verbose/single_verbose_morph.cgr diff --git a/tutorial/additionalData.zip b/tutorial/additionalData.zip index 66520ccf..6ea6621b 100644 Binary files a/tutorial/additionalData.zip and b/tutorial/additionalData.zip differ diff --git a/tutorial/diffpy.morph_manual.pdf b/tutorial/diffpy.morph_manual.pdf deleted file mode 100644 index 779e49f4..00000000 Binary files a/tutorial/diffpy.morph_manual.pdf and /dev/null differ diff --git a/tutorial/tutorialData.zip b/tutorial/quickstartData.zip similarity index 100% rename from tutorial/tutorialData.zip rename to tutorial/quickstartData.zip