From 9cbb63059ee8f93cadb77cc39978f0cda0ffd1dc Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 10:29:24 +0200 Subject: [PATCH 01/51] draft --- .circleci/config.yml | 40 ---- .copier-answers.yml | 13 ++ .flake8 | 4 - .git_archival.txt | 3 + .gitattributes | 1 + .github/CONTRIBUTING.md | 89 +++++++++ .github/ISSUE_TEMPLATES/bug_report.md | 46 ----- .../documentation-improvements.md | 16 -- .github/ISSUE_TEMPLATES/feature_request.md | 24 --- .github/dependabot.yml | 11 ++ .github/release.yml | 5 + .github/workflows/cd.yml | 60 ++++++ .github/workflows/ci.yml | 110 +++++------ .gitignore | 47 +++-- .pre-commit-config.yaml | 106 +++++++---- .readthedocs.yaml | 17 ++ LICENSE | 42 +++-- MANIFEST.in | 1 - README.md | 64 +++---- docs/Makefile | 27 --- docs/conf.py | 175 +++++------------- docs/index.md | 26 +-- magpylib_material_response/__init__.py | 5 - noxfile.py | 107 +++++++++++ pyproject.toml | 160 ++++++++++++++++ readthedocs.yml | 32 ---- requirements.txt | 2 - requirements_dev.txt | 1 - requirements_doc.txt | 10 - setup.py | 54 ------ src/magpylib_material_response/__init__.py | 11 ++ src/magpylib_material_response/_version.pyi | 4 + .../data/__init__.py | 0 .../magpylib_material_response}/demag.py | 0 .../magpylib_material_response}/meshing.py | 0 .../meshing_utils.py | 0 .../datasets/FEMdata_test_cuboids.csv | 0 .../datasets/FEMdata_test_cuboids.json | 0 .../datasets/FEMdata_test_softmag.csv | 0 .../datasets/FEMdata_test_softmag.json | 0 .../magpylib_material_response}/polyline.py | 0 .../magpylib_material_response/py.typed | 0 .../magpylib_material_response}/utils.py | 0 tests/__init__.py | 0 tests/test_package.py | 9 + 45 files changed, 757 insertions(+), 565 deletions(-) delete mode 100644 .circleci/config.yml create mode 100644 .copier-answers.yml delete mode 100644 .flake8 create mode 100644 .git_archival.txt create mode 100644 .gitattributes create mode 100644 .github/CONTRIBUTING.md delete mode 100644 .github/ISSUE_TEMPLATES/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATES/documentation-improvements.md delete mode 100644 .github/ISSUE_TEMPLATES/feature_request.md create mode 100644 .github/dependabot.yml create mode 100644 .github/release.yml create mode 100644 .github/workflows/cd.yml create mode 100644 .readthedocs.yaml delete mode 100644 MANIFEST.in delete mode 100644 docs/Makefile delete mode 100644 magpylib_material_response/__init__.py create mode 100644 noxfile.py create mode 100644 pyproject.toml delete mode 100644 readthedocs.yml delete mode 100644 requirements.txt delete mode 100644 requirements_dev.txt delete mode 100644 requirements_doc.txt delete mode 100644 setup.py create mode 100644 src/magpylib_material_response/__init__.py create mode 100644 src/magpylib_material_response/_version.pyi rename {magpylib_material_response => src/magpylib_material_response}/data/__init__.py (100%) rename {magpylib_material_response => src/magpylib_material_response}/demag.py (100%) rename {magpylib_material_response => src/magpylib_material_response}/meshing.py (100%) rename {magpylib_material_response => src/magpylib_material_response}/meshing_utils.py (100%) rename {magpylib_material_response => src/magpylib_material_response}/package_data/datasets/FEMdata_test_cuboids.csv (100%) rename {magpylib_material_response => src/magpylib_material_response}/package_data/datasets/FEMdata_test_cuboids.json (100%) rename {magpylib_material_response => src/magpylib_material_response}/package_data/datasets/FEMdata_test_softmag.csv (100%) rename {magpylib_material_response => src/magpylib_material_response}/package_data/datasets/FEMdata_test_softmag.json (100%) rename {magpylib_material_response => src/magpylib_material_response}/polyline.py (100%) rename docs/_static/custom.css => src/magpylib_material_response/py.typed (100%) rename {magpylib_material_response => src/magpylib_material_response}/utils.py (100%) delete mode 100644 tests/__init__.py create mode 100644 tests/test_package.py diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index b3354b3..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,40 +0,0 @@ -version: 2 -jobs: - docs: - docker: - # see: https://circleci.com/docs/2.0/circleci-images/#python - - image: circleci/python:3.9-stretch - steps: - # Get our data and merge with upstream - - run: sudo apt-get update - - checkout - - - restore_cache: - keys: - - cache-pip - - - run: | - pip install --user .[docs] - - - save_cache: - key: cache-pip - paths: - - ~/.cache/pip - - # Build the docs - - run: - name: Build docs to store - # nit-picky mode, turn warnings into errors, - # but do not stop the build on errors (so we can still inspect the doc artifacts) - command: | - cd docs - make html-strict - - store_artifacts: - path: docs/_build/html/ - destination: html - -workflows: - version: 2 - default: - jobs: - - docs diff --git a/.copier-answers.yml b/.copier-answers.yml new file mode 100644 index 0000000..0967247 --- /dev/null +++ b/.copier-answers.yml @@ -0,0 +1,13 @@ +# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY +_commit: 2025.01.22-32-g5e4b0c5 +_src_path: gh:scientific-python/cookie +backend: hatch +email: alexabois+magpylib@gmail.com +full_name: Alexandre Boisselet +license: BSD +org: magpylib +project_name: magpylib-material-response +project_short_description: Python package extending the Magpylib library by providing + magnetic field analysis for soft materials and demagnetization of hard magnets. +url: https://github.com/magpylib/magpylib-material-response +vcs: true diff --git a/.flake8 b/.flake8 deleted file mode 100644 index 96a6fa5..0000000 --- a/.flake8 +++ /dev/null @@ -1,4 +0,0 @@ -[flake8] -max-line-length = 88 -# these clash with black -ignore=E203,W503 diff --git a/.git_archival.txt b/.git_archival.txt new file mode 100644 index 0000000..7c51009 --- /dev/null +++ b/.git_archival.txt @@ -0,0 +1,3 @@ +node: $Format:%H$ +node-date: $Format:%cI$ +describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$ diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..00a7b00 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +.git_archival.txt export-subst diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..96a4dcc --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,89 @@ +See the [Scientific Python Developer Guide][spc-dev-intro] for a detailed +description of best practices for developing scientific packages. + +[spc-dev-intro]: https://learn.scientific-python.org/development/ + +# Quick development + +The fastest way to start with development is to use nox. If you don't have nox, +you can use `pipx run nox` to run it without installing, or `pipx install nox`. +If you don't have pipx (pip for applications), then you can install with +`pip install pipx` (the only case were installing an application with regular +pip is reasonable). If you use macOS, then pipx and nox are both in brew, use +`brew install pipx nox`. + +To use, run `nox`. This will lint and test using every installed version of +Python on your system, skipping ones that are not installed. You can also run +specific jobs: + +```console +$ nox -s lint # Lint only +$ nox -s tests # Python tests +$ nox -s docs # Build and serve the docs +$ nox -s build # Make an SDist and wheel +``` + +Nox handles everything for you, including setting up an temporary virtual +environment for each run. + +# Setting up a development environment manually + +You can set up a development environment by running: + +```bash +python3 -m venv .venv +source ./.venv/bin/activate +pip install -v -e .[dev] +``` + +If you have the +[Python Launcher for Unix](https://github.com/brettcannon/python-launcher), you +can instead do: + +```bash +py -m venv .venv +py -m install -v -e .[dev] +``` + +# Pre-commit + +You should prepare pre-commit, which will help you by checking that commits pass +required checks: + +```bash +pip install pre-commit # or brew install pre-commit on macOS +pre-commit install # Will install a pre-commit hook into the git repo +``` + +You can also/alternatively run `pre-commit run` (changes only) or +`pre-commit run --all-files` to check even without installing the hook. + +# Testing + +Use pytest to run the unit checks: + +```bash +pytest +``` + +# Coverage + +Use pytest-cov to generate coverage reports: + +```bash +pytest --cov=magpylib-material-response +``` + +# Building docs + +You can build and serve the docs using: + +```bash +nox -s docs +``` + +You can build the docs only with: + +```bash +nox -s docs --non-interactive +``` diff --git a/.github/ISSUE_TEMPLATES/bug_report.md b/.github/ISSUE_TEMPLATES/bug_report.md deleted file mode 100644 index 594df45..0000000 --- a/.github/ISSUE_TEMPLATES/bug_report.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' - ---- - -**Describe the bug** - -A clear and concise description of what the bug is. - -**To Reproduce** - -Steps to reproduce the behavior: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior:** - -A clear and concise description of what you expected to happen. - -If relevant, a minimal example of the input text should be supplied, -together with a screen-shot of the output Sphinx document and/or command-line output, e.g. - -```markdown -some text... -``` - -```console -$ make html -ERROR ... -``` - -**Environment (please complete the following information):** - -- Python Version [e.g. 3.9.1] -- Package Version [e.g. 0.1.0] - -**Additional context** - -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATES/documentation-improvements.md b/.github/ISSUE_TEMPLATES/documentation-improvements.md deleted file mode 100644 index d05be25..0000000 --- a/.github/ISSUE_TEMPLATES/documentation-improvements.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Documentation Improvements -about: Suggest improvements to the documentation -title: '' -labels: documentation -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** - -A clear and concise description of what the problem is. Ex. This section is unclear [...] - -**Describe the solution you'd like:** - -A clear and concise description of what you want to happen. diff --git a/.github/ISSUE_TEMPLATES/feature_request.md b/.github/ISSUE_TEMPLATES/feature_request.md deleted file mode 100644 index 527d9e2..0000000 --- a/.github/ISSUE_TEMPLATES/feature_request.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe:** - -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like:** - -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered:** - -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context:** - -Add any other context or screenshots about the feature request here. diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6c4b369 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + actions: + patterns: + - "*" diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..9d1e098 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,5 @@ +changelog: + exclude: + authors: + - dependabot + - pre-commit-ci diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000..92d8acd --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,60 @@ +name: CD + +on: + workflow_dispatch: + pull_request: + push: + branches: + - main + release: + types: + - published + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +env: + # Many color libraries just need this to be set to any value, but at least + # one distinguishes color depth, where "3" -> "256-bit color". + FORCE_COLOR: 3 + +jobs: + dist: + name: Distribution build + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: hynek/build-and-inspect-python-package@v2 + + publish: + needs: [dist] + name: Publish to PyPI + environment: pypi + permissions: + id-token: write + attestations: write + contents: read + runs-on: ubuntu-latest + if: github.event_name == 'release' && github.event.action == 'published' + + steps: + - uses: actions/download-artifact@v4 + with: + name: Packages + path: dist + + - name: Generate artifact attestation for sdist and wheel + uses: actions/attest-build-provenance@v2.2.3 + with: + subject-path: "dist/*" + + - uses: pypa/gh-action-pypi-publish@release/v1 + with: + # Remember to tell (test-)pypi about this repo before publishing + # Remove this line to publish to PyPI + repository-url: https://test.pypi.org/legacy/ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8d499c..898e6f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,69 +1,71 @@ -name: continuous-integration +name: CI -on: [push, pull_request] +on: + workflow_dispatch: + pull_request: + push: + branches: + - main -jobs: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true - pre-commit: +env: + # Many color libraries just need this to be set to any value, but at least + # one distinguishes color depth, where "3" -> "256-bit color". + FORCE_COLOR: 3 +jobs: + pre-commit: + name: Format runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.9 - uses: actions/setup-python@v1 - with: - python-version: 3.9 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -e .[code_style] - - name: Run pre-commit - run: | - pre-commit run --all-files || ( git status --short ; git diff ; exit 1 ) - - tests: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-python@v5 + with: + python-version: "3.x" + - uses: pre-commit/action@v3.0.1 + with: + extra_args: --hook-stage manual --all-files + - name: Run PyLint + run: pipx run nox -s pylint -- --output-format=github - runs-on: ubuntu-latest + checks: + name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} + runs-on: ${{ matrix.runs-on }} + needs: [pre-commit] strategy: + fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.13"] + runs-on: [ubuntu-latest, windows-latest, macos-14] + + include: + - python-version: "pypy-3.10" + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: "${{ matrix.python-version }}" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install .[testing] - - name: Run pytest - run: | - pytest + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + allow-prereleases: true + - name: Install package + run: python -m pip install .[test] - publish: + - name: Test package + run: >- + python -m pytest -ra --cov --cov-report=xml --cov-report=term + --durations=20 - name: Publish to PyPi - needs: [pre-commit, tests] - if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') - runs-on: ubuntu-latest - permissions: - # IMPORTANT: this permission is mandatory for trusted publishing - id-token: write - steps: - - name: Checkout source - uses: actions/checkout@v2 - - name: Set up Python 3.9 - uses: actions/setup-python@v1 + - name: Upload coverage report + uses: codecov/codecov-action@v5.4.0 with: - python-version: 3.9 - - name: Build package - run: | - pip install wheel - python setup.py sdist bdist_wheel - - name: Publish - uses: pypa/gh-action-pypi-publish@release/v1 - + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.gitignore b/.gitignore index e6a7a24..25cf9a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,3 @@ -__temp* - - # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -23,16 +20,12 @@ parts/ sdist/ var/ wheels/ -pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST - -__temp* - # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. @@ -56,6 +49,7 @@ coverage.xml *.py,cover .hypothesis/ .pytest_cache/ +cover/ # Translations *.mo @@ -78,18 +72,20 @@ instance/ docs/_build/ # PyBuilder +.pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints -*.ipynb # IPython profile_default/ ipython_config.py # pyenv -.python-version +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. @@ -98,8 +94,12 @@ ipython_config.py # install all needed dependencies. #Pipfile.lock -# celery beat schedule file +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff celerybeat-schedule +celerybeat.pid # SageMath parsed files *.sage.py @@ -131,5 +131,28 @@ dmypy.json # Pyre type checker .pyre/ -# ignore VSCode settings -.vscode/ +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# setuptools_scm +src/*/_version.py + + +# ruff +.ruff_cache/ + +# OS specific stuff +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Common editor files +*~ +*.swp diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4e46fa1..be19464 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,47 +1,89 @@ +ci: + autoupdate_commit_msg: "chore: update pre-commit hooks" + autofix_commit_msg: "style: pre-commit fixes" + +exclude: ^.cruft.json|.copier-answers.yml$ + repos: + - repo: https://github.com/adamchainz/blacken-docs + rev: "1.19.1" + hooks: + - id: blacken-docs + additional_dependencies: [black==24.*] + - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: "v5.0.0" hooks: + - id: check-added-large-files + - id: check-case-conflict + - id: check-merge-conflict + - id: check-symlinks - id: check-yaml + - id: debug-statements - id: end-of-file-fixer - types: [file, python] + - id: mixed-line-ending + - id: name-tests-test + args: ["--pytest-test-first"] + - id: requirements-txt-fixer - id: trailing-whitespace - types: [file, python] - - id: check-added-large-files - - id: debug-statements - language_version: python3 - - repo: https://github.com/pycqa/isort - rev: 5.13.2 + - repo: https://github.com/pre-commit/pygrep-hooks + rev: "v1.10.0" hooks: - - id: isort - name: isort (python) - args: ["--profile", "black", "--filter-files"] + - id: rst-backticks + - id: rst-directive-colons + - id: rst-inline-touching-normal - - repo: https://github.com/asottile/pyupgrade - rev: v3.18.0 + - repo: https://github.com/rbubley/mirrors-prettier + rev: "v3.5.3" hooks: - - id: pyupgrade - args: [--py38-plus] + - id: prettier + types_or: [yaml, markdown, html, css, scss, javascript, json] + args: [--prose-wrap=always] + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.11.4" + hooks: + - id: ruff + args: ["--fix", "--show-fixes"] + - id: ruff-format - - repo: https://github.com/psf/black - rev: "24.10.0" + - repo: https://github.com/pre-commit/mirrors-mypy + rev: "v1.15.0" hooks: - - id: black + - id: mypy + files: src|tests + args: [] + additional_dependencies: + - pytest + - repo: https://github.com/codespell-project/codespell + rev: "v2.4.1" + hooks: + - id: codespell + + - repo: https://github.com/shellcheck-py/shellcheck-py + rev: "v0.10.0.1" + hooks: + - id: shellcheck + + - repo: local + hooks: + - id: disallow-caps + name: Disallow improper capitalization + language: pygrep + entry: PyBind|Numpy|Cmake|CCache|Github|PyTest + exclude: .pre-commit-config.yaml + + - repo: https://github.com/abravalheri/validate-pyproject + rev: "v0.24.1" + hooks: + - id: validate-pyproject + additional_dependencies: ["validate-pyproject-schema-store[all]"] - # - repo: local - # hooks: - # - id: pylint - # name: pylint - # entry: pylint - # language: system - # types: [python] - # files: ^magpylib/ - # args: [ - # "-rn", # Only display messages - # "-sn", # Don't display the score - # "--rcfile=.pylintrc", # Link to your config file - # #"--load-plugins=pylint.extensions.docparams", # Load an extension - # ] + - repo: https://github.com/python-jsonschema/check-jsonschema + rev: "0.32.1" + hooks: + - id: check-dependabot + - id: check-github-workflows + - id: check-readthedocs diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..67c194c --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,17 @@ +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.12" + commands: + - asdf plugin add uv + - asdf install uv latest + - asdf global uv latest + - uv venv + - uv pip install .[docs] + - .venv/bin/python -m sphinx -T -b html -d docs/_build/doctrees -D + language=en docs $READTHEDOCS_OUTPUT/html diff --git a/LICENSE b/LICENSE index 32a9157..513e7aa 100644 --- a/LICENSE +++ b/LICENSE @@ -1,21 +1,29 @@ -MIT License +BSD 3-Clause License -Copyright (c) 2023, Alexandre Boisselet +Copyright (c) 2025, Alexandre Boisselet. +All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the vector package developers nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 6b1d0bf..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1 +0,0 @@ -LICENSE diff --git a/README.md b/README.md index 8f1c9a6..7415776 100644 --- a/README.md +++ b/README.md @@ -1,50 +1,32 @@ # magpylib-material-response -[![Code style: black][black-badge]][black-link] +[![Actions Status][actions-badge]][actions-link] +[![Documentation Status][rtd-badge]][rtd-link] -> **Warning** -> **This package is experimental and in a very dynamic development phase. Breaking API changes may happen at any time.** - -Magpylib-Material-Response is an extension to the Magpylib library, providing magnetic field analysis for soft materials and demagnetization of hard magnets. Leveraging the Method of Moments, it calculates magnetic material response by meshing sources in an arbitrary number of unit elements. - -## Installation - -Install from PyPi - -```console -$ pip install magpylib-material-response -``` +[![PyPI version][pypi-version]][pypi-link] +[![Conda-Forge][conda-badge]][conda-link] +[![PyPI platforms][pypi-platforms]][pypi-link] -or locally: +[![GitHub Discussion][github-discussions-badge]][github-discussions-link] -``` -$ pip install -e .[code_style,testing] -``` + -## Testing + +[actions-badge]: https://github.com/magpylib/magpylib-material-response/workflows/CI/badge.svg +[actions-link]: https://github.com/magpylib/magpylib-material-response/actions +[conda-badge]: https://img.shields.io/conda/vn/conda-forge/magpylib-material-response +[conda-link]: https://github.com/conda-forge/magpylib-material-response-feedstock +[github-discussions-badge]: https://img.shields.io/static/v1?label=Discussions&message=Ask&color=blue&logo=github +[github-discussions-link]: https://github.com/magpylib/magpylib-material-response/discussions +[pypi-link]: https://pypi.org/project/magpylib-material-response/ +[pypi-platforms]: https://img.shields.io/pypi/pyversions/magpylib-material-response +[pypi-version]: https://img.shields.io/pypi/v/magpylib-material-response +[rtd-badge]: https://readthedocs.org/projects/magpylib-material-response/badge/?version=latest +[rtd-link]: https://magpylib-material-response.readthedocs.io/en/latest/?badge=latest -Enter created folder then run tests: + -``` -$ flake8 . -$ black . -$ pytest -``` - -To use pre-commit: - -``` -$ git add * -# to apply to staged files -$ pre-commit run -# restage if changes -$ git add * -# to run on commits -$ pre-commit install -$ git commit -m 'Initial commit' -``` - -[black-badge]: https://img.shields.io/badge/code%20style-black-000000.svg -[black-link]: https://github.com/ambv/black +> **Warning** +> **This package is experimental and in development phase, breaking API changes may happen at any time.** -(package originally created by [python-pkg-cookiecutter](https://github.com/executablebooks/python-pkg-cookiecutter)) +Magpylib-Material-Response is an extension to the Magpylib library, providing magnetic field analysis for soft materials and demagnetization of hard magnets. Leveraging the Method of Moments, it calculates magnetic material response by meshing sources in an arbitrary number of unit elements. diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index 914a4f5..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line, and also -# from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build -SOURCEDIR = . -BUILDDIR = _build - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -# raise warnings to errors -html-strict: - @$(SPHINXBUILD) -b html -nW --keep-going "$(SOURCEDIR)" "$(BUILDDIR)/html" $(SPHINXOPTS) $(O) - -clean: - rm -r $(BUILDDIR) diff --git a/docs/conf.py b/docs/conf.py index cc4a040..85f7a22 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,143 +1,64 @@ -# Configuration file for the Sphinx documentation builder. -# -# This file only contains a selection of the most common options. For a full -# list see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html -# -- Path setup -------------------------------------------------------------- -# 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 os.path.abspath to make it absolute, like shown here. -# -import os -import sys +from __future__ import annotations -# Add package to the path so it can be imported without installing it -sys.path.append(os.path.join(os.path.split(__file__)[0], os.pardir)) -from magpylib_material_response import __version__ # noqa: E402 - -# -- Project information ----------------------------------------------------- +import importlib.metadata +from typing import Any project = "magpylib-material-response" -copyright = "2023, Alexandre Boisselet" +copyright = "2025, Alexandre Boisselet" author = "Alexandre Boisselet" +version = release = importlib.metadata.version("magpylib_material_response") -# The full version, including alpha/beta/rc tags -release = __version__ - -# -- General configuration --------------------------------------------------- - -master_doc = "index" - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. extensions = [ - "myst_nb", -] - -# Add any paths that contain templates here, relative to this directory. -# templates_path = ["_templates"] - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This pattern also affects html_static_path and html_extra_path. -exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] - - -# -- Options for HTML output ------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -# -html_theme = "sphinx_book_theme" - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ["_static"] -html_css_files = ["custom.css"] - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, -# author, documentclass [howto, manual, or own class]). -latex_documents = [ - ( - master_doc, - "magpylib-material-response.tex", - "magpylib-material-response Documentation", - "Alexandre Boisselet", - "manual", - ) -] - - -# -- Options for manual page output ------------------------------------------ - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - ( - master_doc, - "magpylib-material-response", - "magpylib-material-response Documentation", - [author], - 1, - ) + "myst_parser", + "sphinx.ext.autodoc", + "sphinx.ext.intersphinx", + "sphinx.ext.mathjax", + "sphinx.ext.napoleon", + "sphinx_autodoc_typehints", + "sphinx_copybutton", ] - -# -- Options for Texinfo output ---------------------------------------------- - -# Grouping the document tree into Texinfo files. List of tuples -# (source start file, target name, title, author, -# dir menu entry, description, category) -texinfo_documents = [ - ( - master_doc, - "magpylib-material-response", - "magpylib-material-response Documentation", - author, - "magpylib-material-response", - "Magpylib-Material-Response is an extension to the Magpylib library, providing magnetic " - "field analysis for soft materials and demagnetization of hard magnets. " - "Leveraging the Method of Moments, it calculates magnetic material response " - "with high precision.", - "Miscellaneous", - ) +source_suffix = [".rst", ".md"] +exclude_patterns = [ + "_build", + "**.ipynb_checkpoints", + "Thumbs.db", + ".DS_Store", + ".env", + ".venv", ] -suppress_warnings = ["mystnb.unknown_mime_type"] +html_theme = "furo" + +html_theme_options: dict[str, Any] = { + "footer_icons": [ + { + "name": "GitHub", + "url": "https://github.com/magpylib/magpylib-material-response", + "html": """ + + + + """, + "class": "", + }, + ], + "source_repository": "https://github.com/magpylib/magpylib-material-response", + "source_branch": "main", + "source_directory": "docs/", +} -html_js_files = [ - "https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js", - # "https://unpkg.com/thebe@latest/lib/index.js", +myst_enable_extensions = [ + "colon_fence", ] -mathjax_path = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML" -mathjax2_config = { - "tex2jax": { - "inlineMath": [["$", "$"], ["\\(", "\\)"]], - "processEscapes": True, - "ignoreClass": "document", - "processClass": "math|output_area", - } -} - -# needed for sphinx >= 4.3 -mathjax_options = { - "async": "async", +intersphinx_mapping = { + "python": ("https://docs.python.org/3", None), } -myst_enable_extensions = [ - "amsmath", - "colon_fence", - "deflist", - "dollarmath", - "html_admonition", - "html_image", - # "linkify", - "replacements", - "smartquotes", - "substitution", - "tasklist", +nitpick_ignore = [ + ("py:class", "_io.StringIO"), + ("py:class", "_io.BytesIO"), ] + +always_document_param_types = True diff --git a/docs/index.md b/docs/index.md index 13a5f51..313da37 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,30 +1,16 @@ - -# Welcome to magpylib-material-response's documentation! - -```{warning} -This package is experimental and in a very dynamic development phase. Breaking API changes may happen at any time! -``` - -Magpylib-Material-Response is an extension to the Magpylib library, providing magnetic -field analysis for soft materials and demagnetization of hard magnets. -Leveraging the Method of Moments ([Chadebec 2006](https://doi.org/10.1109/TMAG.2006.870929)), it calculates magnetic material response -with high precision. +# magpylib-material-response ```{toctree} -:caption: CONTENT -:glob: true :maxdepth: 2 -``` +:hidden: -```{toctree} -:caption: EXAMPLES -:glob: true -:maxdepth: 2 +``` -examples/* +```{include} ../README.md +:start-after: ``` -# Indices and tables +## Indices and tables - {ref}`genindex` - {ref}`modindex` diff --git a/magpylib_material_response/__init__.py b/magpylib_material_response/__init__.py deleted file mode 100644 index 72f5193..0000000 --- a/magpylib_material_response/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -"""Magpylib-Material-Response is an extension to the Magpylib library, providing magnetic field -analysis for soft materials and demagnetization of hard magnets. Leveraging the Method -of Moments, it calculates magnetic material response with high precision.""" - -__version__ = "0.3.0" diff --git a/noxfile.py b/noxfile.py new file mode 100644 index 0000000..f04a617 --- /dev/null +++ b/noxfile.py @@ -0,0 +1,107 @@ +from __future__ import annotations + +import argparse +import shutil +from pathlib import Path + +import nox + +DIR = Path(__file__).parent.resolve() + +nox.needs_version = ">=2024.3.2" +nox.options.sessions = ["lint", "pylint", "tests"] +nox.options.default_venv_backend = "uv|virtualenv" + + +@nox.session +def lint(session: nox.Session) -> None: + """ + Run the linter. + """ + session.install("pre-commit") + session.run( + "pre-commit", "run", "--all-files", "--show-diff-on-failure", *session.posargs + ) + + +@nox.session +def pylint(session: nox.Session) -> None: + """ + Run PyLint. + """ + # This needs to be installed into the package environment, and is slower + # than a pre-commit check + session.install("-e.", "pylint>=3.2") + session.run("pylint", "magpylib_material_response", *session.posargs) + + +@nox.session +def tests(session: nox.Session) -> None: + """ + Run the unit and regular tests. + """ + session.install("-e.[test]") + session.run("pytest", *session.posargs) + + +@nox.session(reuse_venv=True) +def docs(session: nox.Session) -> None: + """ + Build the docs. Pass --non-interactive to avoid serving. First positional argument is the target directory. + """ + + parser = argparse.ArgumentParser() + parser.add_argument( + "-b", dest="builder", default="html", help="Build target (default: html)" + ) + parser.add_argument("output", nargs="?", help="Output directory") + args, posargs = parser.parse_known_args(session.posargs) + serve = args.builder == "html" and session.interactive + + session.install("-e.[docs]", "sphinx-autobuild") + + shared_args = ( + "-n", # nitpicky mode + "-T", # full tracebacks + f"-b={args.builder}", + "docs", + args.output or f"docs/_build/{args.builder}", + *posargs, + ) + + if serve: + session.run("sphinx-autobuild", "--open-browser", *shared_args) + else: + session.run("sphinx-build", "--keep-going", *shared_args) + + +@nox.session +def build_api_docs(session: nox.Session) -> None: + """ + Build (regenerate) API docs. + """ + + session.install("sphinx") + session.run( + "sphinx-apidoc", + "-o", + "docs/api/", + "--module-first", + "--no-toc", + "--force", + "src/magpylib_material_response", + ) + + +@nox.session +def build(session: nox.Session) -> None: + """ + Build an SDist and wheel. + """ + + build_path = DIR.joinpath("build") + if build_path.exists(): + shutil.rmtree(build_path) + + session.install("build") + session.run("python", "-m", "build") diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..9bdbda6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,160 @@ +[build-system] +requires = ["hatchling", "hatch-vcs"] +build-backend = "hatchling.build" + + +[project] +name = "magpylib-material-response" +authors = [ + { name = "Alexandre Boisselet", email = "alexabois+magpylib@gmail.com" }, +] +description = "Python package extending the Magpylib library by providing magnetic field analysis for soft materials and demagnetization of hard magnets." +readme = "README.md" +requires-python = ">=3.9" +classifiers = [ + "Development Status :: 1 - Planning", + "Intended Audience :: Science/Research", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Topic :: Scientific/Engineering", + "Typing :: Typed", +] +dynamic = ["version"] +dependencies = [] + +[project.optional-dependencies] +test = [ + "pytest >=6", + "pytest-cov >=3", +] +dev = [ + "pytest >=6", + "pytest-cov >=3", +] +docs = [ + "sphinx>=7.0", + "myst_parser>=0.13", + "sphinx_copybutton", + "sphinx_autodoc_typehints", + "furo>=2023.08.17", +] + +[project.urls] +Homepage = "https://github.com/magpylib/magpylib-material-response" +"Bug Tracker" = "https://github.com/magpylib/magpylib-material-response/issues" +Discussions = "https://github.com/magpylib/magpylib-material-response/discussions" +Changelog = "https://github.com/magpylib/magpylib-material-response/releases" + + +[tool.hatch] +version.source = "vcs" +build.hooks.vcs.version-file = "src/magpylib_material_response/_version.py" + +[tool.hatch.envs.default] +features = ["test"] +scripts.test = "pytest {args}" + + +[tool.uv] +dev-dependencies = [ + "magpylib_material_response[test]", +] + + +[tool.pytest.ini_options] +minversion = "6.0" +addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"] +xfail_strict = true +filterwarnings = [ + "error", +] +log_cli_level = "INFO" +testpaths = [ + "tests", +] + + +[tool.coverage] +run.source = ["magpylib_material_response"] +report.exclude_also = [ + '\.\.\.', + 'if typing.TYPE_CHECKING:', +] + +[tool.mypy] +files = ["src", "tests"] +python_version = "3.9" +warn_unused_configs = true +strict = true +enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"] +warn_unreachable = true +disallow_untyped_defs = false +disallow_incomplete_defs = false + +[[tool.mypy.overrides]] +module = "magpylib_material_response.*" +disallow_untyped_defs = true +disallow_incomplete_defs = true + + +[tool.ruff] + +[tool.ruff.lint] +extend-select = [ + "ARG", # flake8-unused-arguments + "B", # flake8-bugbear + "C4", # flake8-comprehensions + "EM", # flake8-errmsg + "EXE", # flake8-executable + "G", # flake8-logging-format + "I", # isort + "ICN", # flake8-import-conventions + "NPY", # NumPy specific rules + "PD", # pandas-vet + "PGH", # pygrep-hooks + "PIE", # flake8-pie + "PL", # pylint + "PT", # flake8-pytest-style + "PTH", # flake8-use-pathlib + "RET", # flake8-return + "RUF", # Ruff-specific + "SIM", # flake8-simplify + "T20", # flake8-print + "UP", # pyupgrade + "YTT", # flake8-2020 +] +ignore = [ + "PLR09", # Too many <...> + "PLR2004", # Magic value used in comparison +] +isort.required-imports = ["from __future__ import annotations"] +# Uncomment if using a _compat.typing backport +# typing-modules = ["magpylib_material_response._compat.typing"] + +[tool.ruff.lint.per-file-ignores] +"tests/**" = ["T20"] +"noxfile.py" = ["T20"] + + +[tool.pylint] +py-version = "3.9" +ignore-paths = [".*/_version.py"] +reports.output-format = "colorized" +similarities.ignore-imports = "yes" +messages_control.disable = [ + "design", + "fixme", + "line-too-long", + "missing-module-docstring", + "missing-function-docstring", + "wrong-import-position", +] diff --git a/readthedocs.yml b/readthedocs.yml deleted file mode 100644 index 5ae32a6..0000000 --- a/readthedocs.yml +++ /dev/null @@ -1,32 +0,0 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required -version: 2 - -# Set the version of Python and other tools you might need -build: - os: ubuntu-20.04 - tools: - python: "3.9" - # You can also specify other tool versions: - # nodejs: "16" - # rust: "1.55" - # golang: "1.17" - -# Build documentation in the docs/ directory with Sphinx -sphinx: - configuration: docs/conf.py - -# If using Sphinx, optionally build your docs in additional formats such as PDF -# formats: -# - pdf - -# Optionally declare the Python requirements required to build your docs -python: - install: - - method: pip - path: . - extra_requirements: - - docs diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index c8e79d2..0000000 --- a/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -magpylib>=5.0 -loguru diff --git a/requirements_dev.txt b/requirements_dev.txt deleted file mode 100644 index e079f8a..0000000 --- a/requirements_dev.txt +++ /dev/null @@ -1 +0,0 @@ -pytest diff --git a/requirements_doc.txt b/requirements_doc.txt deleted file mode 100644 index 33cd20d..0000000 --- a/requirements_doc.txt +++ /dev/null @@ -1,10 +0,0 @@ -urllib3<2.0 -sphinx -sphinx-book-theme -sphinx-copybutton -sphinx-book-theme -sphinx-design -myst-nb -plotly -pandas - diff --git a/setup.py b/setup.py deleted file mode 100644 index 7e9decf..0000000 --- a/setup.py +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env python -"""The setup script.""" -from setuptools import find_packages, setup - -with open("magpylib_material_response/__init__.py") as handle: - for line in handle: - if "__version__" in line: - version = line.split(" = ")[-1].replace('"', "") - break - -with open("./README.md") as handle: - readme_text = handle.read() - -with open("./requirements.txt") as handle: - requirements = [lr.strip() for lr in handle.read().splitlines() if lr.strip()] - -with open("./requirements_dev.txt") as handle: - requirements_dev = [lv.strip() for lv in handle.read().splitlines() if lv.strip()] - -with open("./requirements_doc.txt") as handle: - requirements_doc = [ld.strip() for ld in handle.read().splitlines() if ld.strip()] - -_short_description = ( - "An extension to the Magpylib library, providing magnetic field analysis " - "for soft materials and demagnetization of hard magnets." -) -setup( - name="magpylib-material-response", - version=version, - description=_short_description, - long_description=readme_text, - long_description_content_type="text/markdown", - author="Alexandre Boisselet", - author_email="magpylib@gmail.com", - url=("https://github.com/" "magpylib/magpylib-material-response"), - license="MIT", - packages=find_packages(), - # include anything specified in Manifest.in - include_package_data=True, - package_data={"": ["package_data/datasets/*.json"]}, - install_requires=requirements, - extras_require={ - "code_style": ["flake8", "black", "pre-commit"], - "testing": requirements_dev, - "docs": requirements_doc, - }, - classifiers=[ - "Development Status :: 2 - Pre-Alpha", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", - "Topic :: Software Development :: Libraries :: Python Modules", - ], - keywords="", -) diff --git a/src/magpylib_material_response/__init__.py b/src/magpylib_material_response/__init__.py new file mode 100644 index 0000000..b2cbf27 --- /dev/null +++ b/src/magpylib_material_response/__init__.py @@ -0,0 +1,11 @@ +""" +Copyright (c) 2025 Alexandre Boisselet. All rights reserved. + +magpylib-material-response: Python package extending the Magpylib library by providing magnetic field analysis for soft materials and demagnetization of hard magnets. +""" + +from __future__ import annotations + +from ._version import version as __version__ + +__all__ = ["__version__"] diff --git a/src/magpylib_material_response/_version.pyi b/src/magpylib_material_response/_version.pyi new file mode 100644 index 0000000..91744f9 --- /dev/null +++ b/src/magpylib_material_response/_version.pyi @@ -0,0 +1,4 @@ +from __future__ import annotations + +version: str +version_tuple: tuple[int, int, int] | tuple[int, int, int, str, str] diff --git a/magpylib_material_response/data/__init__.py b/src/magpylib_material_response/data/__init__.py similarity index 100% rename from magpylib_material_response/data/__init__.py rename to src/magpylib_material_response/data/__init__.py diff --git a/magpylib_material_response/demag.py b/src/magpylib_material_response/demag.py similarity index 100% rename from magpylib_material_response/demag.py rename to src/magpylib_material_response/demag.py diff --git a/magpylib_material_response/meshing.py b/src/magpylib_material_response/meshing.py similarity index 100% rename from magpylib_material_response/meshing.py rename to src/magpylib_material_response/meshing.py diff --git a/magpylib_material_response/meshing_utils.py b/src/magpylib_material_response/meshing_utils.py similarity index 100% rename from magpylib_material_response/meshing_utils.py rename to src/magpylib_material_response/meshing_utils.py diff --git a/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.csv b/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.csv similarity index 100% rename from magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.csv rename to src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.csv diff --git a/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json b/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json similarity index 100% rename from magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json rename to src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json diff --git a/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.csv b/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.csv similarity index 100% rename from magpylib_material_response/package_data/datasets/FEMdata_test_softmag.csv rename to src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.csv diff --git a/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json b/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json similarity index 100% rename from magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json rename to src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json diff --git a/magpylib_material_response/polyline.py b/src/magpylib_material_response/polyline.py similarity index 100% rename from magpylib_material_response/polyline.py rename to src/magpylib_material_response/polyline.py diff --git a/docs/_static/custom.css b/src/magpylib_material_response/py.typed similarity index 100% rename from docs/_static/custom.css rename to src/magpylib_material_response/py.typed diff --git a/magpylib_material_response/utils.py b/src/magpylib_material_response/utils.py similarity index 100% rename from magpylib_material_response/utils.py rename to src/magpylib_material_response/utils.py diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/test_package.py b/tests/test_package.py new file mode 100644 index 0000000..6a5bd37 --- /dev/null +++ b/tests/test_package.py @@ -0,0 +1,9 @@ +from __future__ import annotations + +import importlib.metadata + +import magpylib_material_response as m + + +def test_version(): + assert importlib.metadata.version("magpylib_material_response") == m.__version__ From dead26c10c7f28a3c3caf49e5ad6fc8371e533fd Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 13 Apr 2025 08:46:04 +0000 Subject: [PATCH 02/51] style: pre-commit fixes --- CHANGELOG.md | 33 +- README.md | 9 +- docs/examples/cuboids_demagnetization.md | 14 +- docs/examples/soft_magnets.md | 10 +- .../data/__init__.py | 2 + src/magpylib_material_response/demag.py | 41 +- src/magpylib_material_response/meshing.py | 2 + .../meshing_utils.py | 2 + .../datasets/FEMdata_test_cuboids.json | 2311 ++- .../datasets/FEMdata_test_softmag.json | 14226 +++++++++++++++- src/magpylib_material_response/polyline.py | 2 + src/magpylib_material_response/utils.py | 4 +- tests/test_basic.py | 2 + tests/test_isotropic_anisotropic.py | 5 +- tests/test_meshing.py | 2 + 15 files changed, 16619 insertions(+), 46 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 113dfbe..ba1fbd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,28 @@ # Unreleased # 0.3.0 -* improved interface for chi input -* FE tests for anisotropic chi and negative chi -* Improve internals -* anisotropic susceptibilities are now allowed. -* Improve suszeptibility input possibilities: - - give susceptibility to parent collection - - if susceptiblity input is scalar, isotropic susceptibility is assumed, if it is a 3-vector it can be anisotropic -* Various tests included of interface and computation, isotropic and anisotropic tests confirm computaiton + +- improved interface for chi input +- FE tests for anisotropic chi and negative chi +- Improve internals +- anisotropic susceptibilities are now allowed. +- Improve suszeptibility input possibilities: + - give susceptibility to parent collection + - if susceptiblity input is scalar, isotropic susceptibility is assumed, if it + is a 3-vector it can be anisotropic +- Various tests included of interface and computation, isotropic and anisotropic + tests confirm computaiton # 0.2.1a0 -* Fix null polarization for rotated objects ([#7](https://github.com/magpylib/magpylib-material-response/pull/7)) -* Fix docs not building ([#6](https://github.com/magpylib/magpylib-material-response/pull/6)) + +- Fix null polarization for rotated objects + ([#7](https://github.com/magpylib/magpylib-material-response/pull/7)) +- Fix docs not building + ([#6](https://github.com/magpylib/magpylib-material-response/pull/6)) # 0.2.0a0 -* renaming xi->susceptibility ([#5](https://github.com/magpylib/magpylib-material-response/pull/5)) -* update to magpylib v5 ([#4](https://github.com/magpylib/magpylib-material-response/pull/4)) \ No newline at end of file + +- renaming xi->susceptibility + ([#5](https://github.com/magpylib/magpylib-material-response/pull/5)) +- update to magpylib v5 + ([#4](https://github.com/magpylib/magpylib-material-response/pull/4)) diff --git a/README.md b/README.md index 7415776..7bf5a5f 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,10 @@ -> **Warning** -> **This package is experimental and in development phase, breaking API changes may happen at any time.** +> **Warning** > **This package is experimental and in development phase, +> breaking API changes may happen at any time.** -Magpylib-Material-Response is an extension to the Magpylib library, providing magnetic field analysis for soft materials and demagnetization of hard magnets. Leveraging the Method of Moments, it calculates magnetic material response by meshing sources in an arbitrary number of unit elements. +Magpylib-Material-Response is an extension to the Magpylib library, providing +magnetic field analysis for soft materials and demagnetization of hard magnets. +Leveraging the Method of Moments, it calculates magnetic material response by +meshing sources in an arbitrary number of unit elements. diff --git a/docs/examples/cuboids_demagnetization.md b/docs/examples/cuboids_demagnetization.md index cb064f4..07a8f5a 100644 --- a/docs/examples/cuboids_demagnetization.md +++ b/docs/examples/cuboids_demagnetization.md @@ -14,7 +14,16 @@ kernelspec: # Cuboids demagnetization -The following example demonstrates how to create magnetic sources with different susceptibilities using the Magpylib library. It defines three cuboid magnets with varying susceptibilities and positions, creates a collection of these magnets, and computes their magnetic field responses using different levels of meshing. The results are then compared to a Finite Element Method (FEM) analysis to evaluate the performance of the Magpylib-Material-Response approach. The comparison is presented in two separate plots, one showing the magnetic field values and the other showing the difference between the Magpylib results and the FEM reference data. The code demonstrates that even with a low number of mesh elements, the Magpylib results quickly approach the reference FEM values. +The following example demonstrates how to create magnetic sources with different +susceptibilities using the Magpylib library. It defines three cuboid magnets +with varying susceptibilities and positions, creates a collection of these +magnets, and computes their magnetic field responses using different levels of +meshing. The results are then compared to a Finite Element Method (FEM) analysis +to evaluate the performance of the Magpylib-Material-Response approach. The +comparison is presented in two separate plots, one showing the magnetic field +values and the other showing the difference between the Magpylib results and the +FEM reference data. The code demonstrates that even with a low number of mesh +elements, the Magpylib results quickly approach the reference FEM values. +++ @@ -164,4 +173,5 @@ fig2.update_yaxes(matches=None, showticklabels=True) display(fig1, fig2) ``` -As shown above, already with a low number of mesh elements, the result is approaching the reference FEM values and improves while refining the mesh. +As shown above, already with a low number of mesh elements, the result is +approaching the reference FEM values and improves while refining the mesh. diff --git a/docs/examples/soft_magnets.md b/docs/examples/soft_magnets.md index 7a1d453..9515fab 100644 --- a/docs/examples/soft_magnets.md +++ b/docs/examples/soft_magnets.md @@ -18,8 +18,11 @@ kernelspec: +++ -This code demonstrates demagnetization calculations for a hard and a soft cuboid magnet using the Magpylib library. -Demagnetization is applied using varying numbers of cells for the mesh and compared to the computed magnetic fields from Magpylib withoug demagnetization and with FEM analysis data obtained from an external dataset. +This code demonstrates demagnetization calculations for a hard and a soft cuboid +magnet using the Magpylib library. Demagnetization is applied using varying +numbers of cells for the mesh and compared to the computed magnetic fields from +Magpylib withoug demagnetization and with FEM analysis data obtained from an +external dataset. +++ {"user_expressions": []} @@ -172,4 +175,5 @@ display(fig1, fig2) +++ {"user_expressions": []} -As shown above, the demagnetized collection outputs are approaching the reference FEM values while refining the mesh. +As shown above, the demagnetized collection outputs are approaching the +reference FEM values while refining the mesh. diff --git a/src/magpylib_material_response/data/__init__.py b/src/magpylib_material_response/data/__init__.py index 4b383a1..5c0b7a5 100644 --- a/src/magpylib_material_response/data/__init__.py +++ b/src/magpylib_material_response/data/__init__.py @@ -2,6 +2,8 @@ Built-in datasets for demonstration, educational and test purposes. """ +from __future__ import annotations + def get_dataset(name): import json diff --git a/src/magpylib_material_response/demag.py b/src/magpylib_material_response/demag.py index e5815e8..1aebe0e 100644 --- a/src/magpylib_material_response/demag.py +++ b/src/magpylib_material_response/demag.py @@ -2,6 +2,8 @@ # + # pylint: disable=invalid-name, redefined-outer-name, protected-access +from __future__ import annotations + import sys from collections import Counter @@ -55,25 +57,24 @@ def get_susceptibilities(sources, susceptibility): susis.append(susceptibility) else: raise ValueError("susceptibility is not scalar or array fo length 3") + # susceptibilities as input to demag function + elif np.isscalar(susceptibility): + susis = np.ones((n, 3)) * susceptibility + elif len(susceptibility) == 3: + susis = np.tile(susceptibility, (n, 1)) + if n == 3: + raise ValueError( + "Apply_demag input susceptibility is ambiguous - either scalar list or vector single entry. " + "Please choose different means of input or change the number of cells in the Collection." + ) else: - # susceptibilities as input to demag function - if np.isscalar(susceptibility): - susis = np.ones((n, 3)) * susceptibility - elif len(susceptibility) == 3: - susis = np.tile(susceptibility, (n, 1)) - if n == 3: - raise ValueError( - "Apply_demag input susceptibility is ambiguous - either scalar list or vector single entry. " - "Please choose different means of input or change the number of cells in the Collection." - ) - else: - if len(susceptibility) != n: - raise ValueError( - "Apply_demag input susceptibility must be scalar, 3-vector, or same length as input Collection." - ) - susis = np.array(susceptibility) - if susis.ndim == 1: - susis = np.repeat(susis, 3).reshape(n, 3) + if len(susceptibility) != n: + raise ValueError( + "Apply_demag input susceptibility must be scalar, 3-vector, or same length as input Collection." + ) + susis = np.array(susceptibility) + if susis.ndim == 1: + susis = np.repeat(susis, 3).reshape(n, 3) susis = np.reshape(susis, 3 * n, order="F") return np.array(susis) @@ -141,7 +142,7 @@ def demag_tensor( if pairs_matching and split != 1: raise ValueError("Pairs matching does not support splitting") - elif max_dist != 0: + if max_dist != 0: mask_inds, getH_params, pos0, rot0 = filter_distance( src_list, max_dist, return_params=False, return_base_geo=True ) @@ -179,7 +180,7 @@ def demag_tensor( H_unit_pol = [] for split_ind, src_list_subset in enumerate(src_list_split): logger.info( - f"Sources subset {split_ind+1}/{len(src_list_split)}" + f"Sources subset {split_ind + 1}/{len(src_list_split)}" ) if src_list_subset.size > 0: H_unit_pol.append( diff --git a/src/magpylib_material_response/meshing.py b/src/magpylib_material_response/meshing.py index fb25286..ceef264 100644 --- a/src/magpylib_material_response/meshing.py +++ b/src/magpylib_material_response/meshing.py @@ -1,3 +1,5 @@ +from __future__ import annotations + from collections import Counter from itertools import product diff --git a/src/magpylib_material_response/meshing_utils.py b/src/magpylib_material_response/meshing_utils.py index 6c2ff5b..7ad7c11 100644 --- a/src/magpylib_material_response/meshing_utils.py +++ b/src/magpylib_material_response/meshing_utils.py @@ -1,3 +1,5 @@ +from __future__ import annotations + from itertools import product import numpy as np diff --git a/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json b/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json index e622ddc..0be3aee 100644 --- a/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json +++ b/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json @@ -1 +1,2310 @@ -{"setup": [{"id": 2198425521360, "type": "Collection", "position": {"value": [0.0, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "No demag", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "children": [{"id": 2197862031424, "type": "Cuboid", "position": {"value": [-0.0015, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=0.3", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.3}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 1.0], "unit": "T"}}, {"id": 2198425551248, "type": "Cuboid", "position": {"value": [0.0, 0.0, 0.0002], "unit": "m"}, "orientation": {"value": [[0.7071067811865475, -0.0, -0.7071067811865476], [0.0, 1.0, -0.0], [0.7071067811865476, 0.0, 0.7071067811865475]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=1.0", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 1.0}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.9, 0.0, 0.0], "unit": "T"}}, {"id": 2198425521744, "type": "Cuboid", "position": {"value": [0.0016, 0.0, 0.0005], "unit": "m"}, "orientation": {"value": [[0.8660254037844387, -0.49999999999999994, 0.0], [0.49999999999999994, 0.8660254037844387, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=0.5", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.5}, "dimension": {"value": [0.001, 0.001, 0.002], "unit": "m"}, "polarization": {"value": [0.29999999999999993, 0.5196152422706632, 0.0], "unit": "T"}}]}, {"id": 2198425447008, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.001], [-0.003973333333333333, 0.0, -0.001], [-0.003946666666666667, 0.0, -0.001], [-0.00392, 0.0, -0.001], [-0.0038933333333333337, 0.0, -0.001], [-0.0038666666666666667, 0.0, -0.001], [-0.0038399999999999997, 0.0, -0.001], [-0.0038133333333333335, 0.0, -0.001], [-0.0037866666666666665, 0.0, -0.001], [-0.00376, 0.0, -0.001], [-0.0037333333333333333, 0.0, -0.001], [-0.0037066666666666667, 0.0, -0.001], [-0.00368, 0.0, -0.001], [-0.0036533333333333335, 0.0, -0.001], [-0.0036266666666666665, 0.0, -0.001], [-0.0036, 0.0, -0.001], [-0.0035733333333333333, 0.0, -0.001], [-0.0035466666666666667, 0.0, -0.001], [-0.00352, 0.0, -0.001], [-0.003493333333333333, 0.0, -0.001], [-0.003466666666666667, 0.0, -0.001], [-0.00344, 0.0, -0.001], [-0.0034133333333333333, 0.0, -0.001], [-0.0033866666666666667, 0.0, -0.001], [-0.0033599999999999997, 0.0, -0.001], [-0.0033333333333333335, 0.0, -0.001], [-0.0033066666666666665, 0.0, -0.001], [-0.0032800000000000004, 0.0, -0.001], [-0.0032533333333333333, 0.0, -0.001], [-0.0032266666666666667, 0.0, -0.001], [-0.0032, 0.0, -0.001], [-0.003173333333333333, 0.0, -0.001], [-0.0031466666666666665, 0.0, -0.001], [-0.00312, 0.0, -0.001], [-0.0030933333333333334, 0.0, -0.001], [-0.0030666666666666663, 0.0, -0.001], [-0.00304, 0.0, -0.001], [-0.003013333333333333, 0.0, -0.001], [-0.0029866666666666665, 0.0, -0.001], [-0.00296, 0.0, -0.001], [-0.0029333333333333334, 0.0, -0.001], [-0.0029066666666666668, 0.0, -0.001], [-0.0028799999999999997, 0.0, -0.001], [-0.0028533333333333336, 0.0, -0.001], [-0.0028266666666666666, 0.0, -0.001], [-0.0028, 0.0, -0.001], [-0.0027733333333333334, 0.0, -0.001], [-0.002746666666666667, 0.0, -0.001], [-0.0027199999999999998, 0.0, -0.001], [-0.002693333333333333, 0.0, -0.001], [-0.002666666666666667, 0.0, -0.001], [-0.0026399999999999996, 0.0, -0.001], [-0.0026133333333333334, 0.0, -0.001], [-0.002586666666666667, 0.0, -0.001], [-0.00256, 0.0, -0.001], [-0.002533333333333333, 0.0, -0.001], [-0.002506666666666667, 0.0, -0.001], [-0.00248, 0.0, -0.001], [-0.002453333333333333, 0.0, -0.001], [-0.002426666666666667, 0.0, -0.001], [-0.0024, 0.0, -0.001], [-0.002373333333333333, 0.0, -0.001], [-0.0023466666666666666, 0.0, -0.001], [-0.0023200000000000004, 0.0, -0.001], [-0.002293333333333333, 0.0, -0.001], [-0.0022666666666666664, 0.0, -0.001], [-0.0022400000000000002, 0.0, -0.001], [-0.002213333333333333, 0.0, -0.001], [-0.0021866666666666666, 0.0, -0.001], [-0.00216, 0.0, -0.001], [-0.0021333333333333334, 0.0, -0.001], [-0.0021066666666666664, 0.0, -0.001], [-0.0020800000000000003, 0.0, -0.001], [-0.0020533333333333332, 0.0, -0.001], [-0.002026666666666666, 0.0, -0.001], [-0.002, 0.0, -0.001], [-0.001973333333333333, 0.0, -0.001], [-0.0019466666666666669, 0.0, -0.001], [-0.0019199999999999998, 0.0, -0.001], [-0.0018933333333333335, 0.0, -0.001], [-0.0018666666666666666, 0.0, -0.001], [-0.0018399999999999998, 0.0, -0.001], [-0.0018133333333333335, 0.0, -0.001], [-0.0017866666666666667, 0.0, -0.001], [-0.0017599999999999998, 0.0, -0.001], [-0.0017333333333333335, 0.0, -0.001], [-0.0017066666666666667, 0.0, -0.001], [-0.00168, 0.0, -0.001], [-0.0016533333333333333, 0.0, -0.001], [-0.0016266666666666665, 0.0, -0.001], [-0.0016, 0.0, -0.001], [-0.0015733333333333333, 0.0, -0.001], [-0.001546666666666667, 0.0, -0.001], [-0.00152, 0.0, -0.001], [-0.0014933333333333333, 0.0, -0.001], [-0.0014666666666666667, 0.0, -0.001], [-0.0014399999999999999, 0.0, -0.001], [-0.0014133333333333335, 0.0, -0.001], [-0.0013866666666666667, 0.0, -0.001], [-0.0013599999999999999, 0.0, -0.001], [-0.0013333333333333335, 0.0, -0.001], [-0.0013066666666666667, 0.0, -0.001], [-0.0012799999999999999, 0.0, -0.001], [-0.0012533333333333335, 0.0, -0.001], [-0.0012266666666666665, 0.0, -0.001], [-0.0012000000000000001, 0.0, -0.001], [-0.0011733333333333333, 0.0, -0.001], [-0.0011466666666666665, 0.0, -0.001], [-0.0011200000000000001, 0.0, -0.001], [-0.0010933333333333333, 0.0, -0.001], [-0.001066666666666667, 0.0, -0.001], [-0.0010400000000000001, 0.0, -0.001], [-0.001013333333333333, 0.0, -0.001], [-0.0009866666666666667, 0.0, -0.001], [-0.0009599999999999999, 0.0, -0.001], [-0.0009333333333333331, 0.0, -0.001], [-0.0009066666666666667, 0.0, -0.001], [-0.0008799999999999999, 0.0, -0.001], [-0.0008533333333333335, 0.0, -0.001], [-0.0008266666666666666, 0.0, -0.001], [-0.0007999999999999998, 0.0, -0.001], [-0.0007733333333333334, 0.0, -0.001], [-0.0007466666666666666, 0.0, -0.001], [-0.0007200000000000002, 0.0, -0.001], [-0.0006933333333333333, 0.0, -0.001], [-0.0006666666666666665, 0.0, -0.001], [-0.0006400000000000002, 0.0, -0.001], [-0.0006133333333333332, 0.0, -0.001], [-0.0005866666666666664, 0.0, -0.001], [-0.0005600000000000001, 0.0, -0.001], [-0.0005333333333333333, 0.0, -0.001], [-0.0005066666666666668, 0.0, -0.001], [-0.00047999999999999996, 0.0, -0.001], [-0.00045333333333333315, 0.0, -0.001], [-0.0004266666666666668, 0.0, -0.001], [-0.0003999999999999999, 0.0, -0.001], [-0.00037333333333333354, 0.0, -0.001], [-0.00034666666666666667, 0.0, -0.001], [-0.00031999999999999986, 0.0, -0.001], [-0.00029333333333333343, 0.0, -0.001], [-0.0002666666666666666, 0.0, -0.001], [-0.00024000000000000022, 0.0, -0.001], [-0.0002133333333333334, 0.0, -0.001], [-0.00018666666666666652, 0.0, -0.001], [-0.00016000000000000015, 0.0, -0.001], [-0.0001333333333333333, 0.0, -0.001], [-0.00010666666666666646, 0.0, -0.001], [-8.000000000000007e-05, 0.0, -0.001], [-5.333333333333323e-05, 0.0, -0.001], [-2.666666666666684e-05, 0.0, -0.001], [0.0, 0.0, -0.001], [2.6666666666666396e-05, 0.0, -0.001], [5.333333333333368e-05, 0.0, -0.001], [8.000000000000007e-05, 0.0, -0.001], [0.00010666666666666646, 0.0, -0.001], [0.00013333333333333375, 0.0, -0.001], [0.00016000000000000015, 0.0, -0.001], [0.00018666666666666652, 0.0, -0.001], [0.00021333333333333293, 0.0, -0.001], [0.00024000000000000022, 0.0, -0.001], [0.0002666666666666666, 0.0, -0.001], [0.000293333333333333, 0.0, -0.001], [0.0003200000000000003, 0.0, -0.001], [0.00034666666666666667, 0.0, -0.001], [0.00037333333333333305, 0.0, -0.001], [0.00040000000000000034, 0.0, -0.001], [0.0004266666666666668, 0.0, -0.001], [0.00045333333333333315, 0.0, -0.001], [0.00048000000000000045, 0.0, -0.001], [0.0005066666666666668, 0.0, -0.001], [0.0005333333333333333, 0.0, -0.001], [0.0005599999999999996, 0.0, -0.001], [0.0005866666666666669, 0.0, -0.001], [0.0006133333333333332, 0.0, -0.001], [0.0006399999999999997, 0.0, -0.001], [0.000666666666666667, 0.0, -0.001], [0.0006933333333333333, 0.0, -0.001], [0.0007199999999999997, 0.0, -0.001], [0.0007466666666666671, 0.0, -0.001], [0.0007733333333333334, 0.0, -0.001], [0.0007999999999999998, 0.0, -0.001], [0.0008266666666666671, 0.0, -0.001], [0.0008533333333333335, 0.0, -0.001], [0.0008799999999999999, 0.0, -0.001], [0.0009066666666666663, 0.0, -0.001], [0.0009333333333333335, 0.0, -0.001], [0.0009599999999999999, 0.0, -0.001], [0.0009866666666666663, 0.0, -0.001], [0.0010133333333333335, 0.0, -0.001], [0.0010400000000000001, 0.0, -0.001], [0.0010666666666666665, 0.0, -0.001], [0.0010933333333333337, 0.0, -0.001], [0.0011200000000000001, 0.0, -0.001], [0.0011466666666666665, 0.0, -0.001], [0.0011733333333333329, 0.0, -0.001], [0.0012000000000000001, 0.0, -0.001], [0.0012266666666666665, 0.0, -0.001], [0.0012533333333333329, 0.0, -0.001], [0.0012800000000000003, 0.0, -0.001], [0.0013066666666666667, 0.0, -0.001], [0.001333333333333333, 0.0, -0.001], [0.0013600000000000003, 0.0, -0.001], [0.0013866666666666667, 0.0, -0.001], [0.001413333333333333, 0.0, -0.001], [0.0014400000000000003, 0.0, -0.001], [0.0014666666666666667, 0.0, -0.001], [0.0014933333333333333, 0.0, -0.001], [0.0015199999999999997, 0.0, -0.001], [0.001546666666666667, 0.0, -0.001], [0.0015733333333333333, 0.0, -0.001], [0.0015999999999999996, 0.0, -0.001], [0.0016266666666666669, 0.0, -0.001], [0.0016533333333333333, 0.0, -0.001], [0.0016799999999999996, 0.0, -0.001], [0.001706666666666667, 0.0, -0.001], [0.0017333333333333335, 0.0, -0.001], [0.0017599999999999998, 0.0, -0.001], [0.001786666666666667, 0.0, -0.001], [0.0018133333333333335, 0.0, -0.001], [0.0018399999999999998, 0.0, -0.001], [0.0018666666666666662, 0.0, -0.001], [0.0018933333333333335, 0.0, -0.001], [0.0019199999999999998, 0.0, -0.001], [0.0019466666666666664, 0.0, -0.001], [0.0019733333333333334, 0.0, -0.001], [0.002, 0.0, -0.001], [0.002026666666666666, 0.0, -0.001], [0.0020533333333333337, 0.0, -0.001], [0.0020800000000000003, 0.0, -0.001], [0.0021066666666666664, 0.0, -0.001], [0.002133333333333334, 0.0, -0.001], [0.00216, 0.0, -0.001], [0.0021866666666666666, 0.0, -0.001], [0.0022133333333333328, 0.0, -0.001], [0.0022400000000000002, 0.0, -0.001], [0.0022666666666666664, 0.0, -0.001], [0.002293333333333333, 0.0, -0.001], [0.0023200000000000004, 0.0, -0.001], [0.0023466666666666666, 0.0, -0.001], [0.002373333333333333, 0.0, -0.001], [0.0024000000000000002, 0.0, -0.001], [0.002426666666666667, 0.0, -0.001], [0.002453333333333333, 0.0, -0.001], [0.0024800000000000004, 0.0, -0.001], [0.002506666666666667, 0.0, -0.001], [0.002533333333333333, 0.0, -0.001], [0.0025599999999999998, 0.0, -0.001], [0.002586666666666667, 0.0, -0.001], [0.0026133333333333334, 0.0, -0.001], [0.0026399999999999996, 0.0, -0.001], [0.002666666666666667, 0.0, -0.001], [0.002693333333333333, 0.0, -0.001], [0.0027199999999999998, 0.0, -0.001], [0.0027466666666666672, 0.0, -0.001], [0.0027733333333333334, 0.0, -0.001], [0.0028, 0.0, -0.001], [0.002826666666666667, 0.0, -0.001], [0.0028533333333333336, 0.0, -0.001], [0.0028799999999999997, 0.0, -0.001], [0.0029066666666666663, 0.0, -0.001], [0.0029333333333333334, 0.0, -0.001], [0.00296, 0.0, -0.001], [0.0029866666666666665, 0.0, -0.001], [0.0030133333333333336, 0.0, -0.001], [0.00304, 0.0, -0.001], [0.0030666666666666663, 0.0, -0.001], [0.003093333333333334, 0.0, -0.001], [0.00312, 0.0, -0.001], [0.0031466666666666665, 0.0, -0.001], [0.0031733333333333327, 0.0, -0.001], [0.0032, 0.0, -0.001], [0.0032266666666666667, 0.0, -0.001], [0.003253333333333333, 0.0, -0.001], [0.0032800000000000004, 0.0, -0.001], [0.0033066666666666665, 0.0, -0.001], [0.003333333333333333, 0.0, -0.001], [0.00336, 0.0, -0.001], [0.0033866666666666667, 0.0, -0.001], [0.0034133333333333333, 0.0, -0.001], [0.0034400000000000003, 0.0, -0.001], [0.003466666666666667, 0.0, -0.001], [0.003493333333333333, 0.0, -0.001], [0.0035199999999999997, 0.0, -0.001], [0.0035466666666666667, 0.0, -0.001], [0.0035733333333333333, 0.0, -0.001], [0.0035999999999999995, 0.0, -0.001], [0.003626666666666667, 0.0, -0.001], [0.0036533333333333335, 0.0, -0.001], [0.0036799999999999997, 0.0, -0.001], [0.003706666666666667, 0.0, -0.001], [0.0037333333333333333, 0.0, -0.001], [0.00376, 0.0, -0.001], [0.003786666666666667, 0.0, -0.001], [0.0038133333333333335, 0.0, -0.001], [0.0038399999999999997, 0.0, -0.001], [0.0038666666666666663, 0.0, -0.001], [0.0038933333333333337, 0.0, -0.001], [0.00392, 0.0, -0.001], [0.003946666666666666, 0.0, -0.001], [0.003973333333333334, 0.0, -0.001], [0.004, 0.0, -0.001]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}], "results": [{"computation": "FEM (ANSYS)", "field": "B", "kwargs": {"sources": [2198425521360], "sensors": [2198425447008], "sumup": false, "pixel_agg": null, "squeeze": true, "output": "dataframe"}, "order": ["source", "path", "sensor", "pixel", "value"], "value": {"Bx": [0.0060501993604089, 0.0061960455797802, 0.0063391508126054, 0.006486617629132699, 0.0066360740011114, 0.0067796264505833, 0.0069289956975891, 0.0070861862125071, 0.0072548717372922, 0.0074444338378504, 0.0076378140713782, 0.0078455227396759, 0.0080721725674173, 0.0083075602265602, 0.0085684318384397, 0.0088284983431987, 0.0091260653956796, 0.0094224697396957, 0.0097472960087496, 0.0100737608343403, 0.0104320206627321, 0.010804308997221, 0.0111945813055182, 0.0116006936333319, 0.0120310981858663, 0.0124750035295116, 0.0129379332603624, 0.0134349930841049, 0.013941202400874302, 0.0144909599359248, 0.0150383897483038, 0.0156452922960432, 0.0162566372572966, 0.0169203227793888, 0.0175980149556054, 0.0183228192892889, 0.0190812870352792, 0.0198506654674769, 0.020692793607858, 0.0215517514218727, 0.0224473380490659, 0.0233851283331473, 0.0243628750695844, 0.0254008820409711, 0.0265260114770658, 0.0275586282508723, 0.0287737980885236, 0.0300128495565023, 0.0312895371487907, 0.0326016230273246, 0.0339705709194694, 0.035411266080879, 0.0368410071386007, 0.0383806920744169, 0.0399495499114504, 0.0415249511841092, 0.0431508606071014, 0.0448536270959897, 0.0466382080628879, 0.0482154576635795, 0.0499945702086684, 0.0517249027827736, 0.0534631349207278, 0.055001580249267, 0.0565918387131236, 0.0580163570026835, 0.0593440518223433, 0.060633687452119, 0.0616803217832849, 0.0626552517212926, 0.0632703899052487, 0.0637108482874222, 0.063743181065586, 0.0636960630444481, 0.063290296879369, 0.0627287252854222, 0.06161476932503869, 0.0605154433723455, 0.0587684167062932, 0.0569630049719656, 0.0547440038069035, 0.0525107813657837, 0.0499109030147293, 0.0472215751082189, 0.0443517677677627, 0.0412550055472719, 0.0380679873393383, 0.0347600159848767, 0.031459151886879, 0.0281201385967537, 0.0245029539684833, 0.0210255732394143, 0.0174960158738058, 0.0139154625363823, 0.0104579661122173, 0.0068352553722182, 0.0033554221023146995, -0.0002250347349626, -0.0035791975981192, -0.0070589141072154, -0.0104427189522744, -0.0137786439410148, -0.016926327764649, -0.0200385407612656, -0.0230379653275292, -0.0259124955889523, -0.0284725756215064, -0.0310194447656001, -0.0332231032667708, -0.0352490237673048, -0.0367769834100979, -0.038164423082138, -0.0393413234546642, -0.0402323239583176, -0.0408288077917225, -0.0412048577978514, -0.0414238435062318, -0.041258318758239, -0.040975912332047, -0.0404093175237935, -0.0399692506301701, -0.0388295233195785, -0.0378247052137281, -0.0367790626389605, -0.0357776322711188, -0.034703337982531, -0.0335878682158573, -0.0324926934173076, -0.0317666031939196, -0.0307953762852025, -0.0300071883730073, -0.0292518925051306, -0.0286923874076531, -0.028157334380888303, -0.0278671822503085, -0.0275654764206188, -0.0277249836650796, -0.0277778737944747, -0.0280611365585564, -0.0283969865820417, -0.028911444001461804, -0.0295035906015935, -0.0303665852163719, -0.0313895971618548, -0.0325630094302637, -0.0335661416106682, -0.034667735913897, -0.0357956690250596, -0.036896457783381, -0.0380114568606236, -0.0391925225026004, -0.0399884972825701, -0.0409611578517079, -0.0416859515708573, -0.0422391689977416, -0.042794298256976, -0.0431044735120447, -0.0432139035848613, -0.0431867388043679, -0.0430523631029081, -0.0427583984134921, -0.0423447057291149, -0.0417602310464419, -0.041149791407033, -0.0403886139069589, -0.0396405637302733, -0.0386417273249432, -0.0376632797605967, -0.0366206800466347, -0.0355637894837793, -0.0344686090782429, -0.0333634087961361, -0.032234219003949, -0.0310434828769092, -0.0298851447941885, -0.028786552434139304, -0.027671160123108, -0.0265495012697285, -0.0254603354456982, -0.0244022676907089, -0.0233523513456414, -0.0223238143806603, -0.0213194019889709, -0.0203766984928523, -0.019443228457924, -0.0185816913529778, -0.0176879495585996, -0.0169200428797812, -0.0160622324561004, -0.0152772141996421, -0.0145322864930298, -0.0137822872230893, -0.0131357952316468, -0.012451975550862, -0.0117752318714405, -0.0111124973687814, -0.0105607828675903, -0.0099837906032737, -0.0094232085482353, -0.0089025667070211, -0.0084151761217117, -0.0079108712975156, -0.0074160610431683, -0.0069421521122613, -0.0064880116068857, -0.0060802439210264, -0.0056914323239349, -0.0053420867159564, -0.0049922479532459, -0.0046623542676896, -0.0043282060452068, -0.0039875887925116, -0.00369420861429, -0.0034337217209112, -0.0032253265639805, -0.0030118631509885, -0.0027617533699095, -0.0026456440592116, -0.0024664718851732, -0.0022884452321962, -0.0021666767247677, -0.001999311387402, -0.001841782895251, -0.0017078334071054, -0.001546071500985, -0.0014230998313021, -0.0012617240142967, -0.0010603010108451, -0.0009750067224797, -0.0008087760913422, -0.000686454603793, -0.0006250633637773, -0.0005085943434571, -0.0004391816902721, -0.0003127219591757, -0.0002373172230562, -0.0001356032694689, -8.78523739553835e-05, -4.82454193622267e-07, 6.49358118721259e-05, 9.52792025734885e-05, 0.0002055585221957, 0.0002546591981924, 0.0002803879777741, 0.0003094084470754, 0.0003235738646996, 0.0003107920893562, 0.0003439853618193, 0.0003820083140724, 0.0003834618969273, 0.0003815404626565, 0.0003837815253919, 0.0003853919998573, 0.0003838053179039, 0.0003878198084254, 0.0003927980156716, 0.0003966633000667, 0.0004034265972848, 0.0004092164996212, 0.0004126185946492, 0.0004095672323976, 0.0004077361982438, 0.0004104266367575, 0.000414641389836, 0.0004105464398481, 0.0004169337998321, 0.0004058105727938, 0.0004164667054553, 0.0004151401029977, 0.0004136962422635, 0.0004105479615716, 0.0004108948972354, 0.0004110523202815, 0.000408349675669, 0.0004063920098184, 0.000405752606153, 0.0004060326811698, 0.0004065790593484, 0.000411343809611, 0.0004124462463604, 0.0004102036338995, 0.0004084284760454, 0.0004098693765882, 0.0004054000615738, 0.0004054502825511, 0.0004053382453649, 0.0004074498013729, 0.0004092066240853, 0.0004118412286571, 0.0004164815835016, 0.0004174214065251, 0.0004203462277796, 0.0004240502601043, 0.00042664434121, 0.0004235660313317, 0.0004233139902501, 0.0004254981927435, 0.0003995535614148, 0.0003816847697257, 0.0003100705341536, 0.000244053117834], "By": [-0.0005243082361124, -0.0004874360341332, -0.0004202239310791, -0.0003937288666377, -0.0003723770366365, -0.0003750749397166, -0.0003773957705386, -0.0003836690560325, -0.0003929733063248, -0.0004044867834609, -0.0004148210899216, -0.0004245533709691, -0.0004402176490366, -0.0004501689224327, -0.0004606836256717, -0.0004673070982811, -0.0004760123248258, -0.0004853098909329, -0.0004929104409827, -0.000513577847274, -0.0005207937656792, -0.0005235024238702, -0.0005387961268642, -0.0005500630626079, -0.0005566484627682, -0.0005616358278106, -0.0005585265240258, -0.0005774411074652, -0.0005907745643605, -0.0006009189161926, -0.0006163023377177, -0.0006236414199406, -0.0006364067139477, -0.0006435850244337, -0.0006519265716606, -0.0006557717232017, -0.0006565125289595, -0.0006568147953313, -0.0006787114086518, -0.0006925683640457, -0.0007044454981057, -0.0007157670796069, -0.000733022977573, -0.0007518412734503, -0.0007646606426349, -0.0007667459151289, -0.0007745017131341, -0.0007975665164909999, -0.0008095303017768, -0.0007712153788468, -0.0008165320982256, -0.000838407212312, -0.0008121981568108, -0.0007858872462343, -0.000843980287421, -0.0008520772856133, -0.0008331957570468, -0.0008886368827564, -0.0008809713881873, -0.0009860446987075, -0.0009820297051088, -0.0009720619781352, -0.0010509229630675, -0.001004422295767, -0.0009411990485862, -0.0010512431223795, -0.001026131151557, -0.0010321167613331, -0.0010296253474704, -0.0010649436682579, -0.0011180818752334, -0.0011725618974236, -0.0012209935820897, -0.0012523873278643, -0.0012451642777704, -0.0012785136105481, -0.0012295904506717, -0.001293405988895, -0.001386977051847, -0.0013119265891815, -0.0013207579458939, -0.0013885287607438, -0.0013823854634311, -0.0013985731698268, -0.0014470811960126, -0.0015470789051096, -0.0015757480156520002, -0.0016999937260336, -0.0017037919711221, -0.0016628980551130997, -0.0016938299212833, -0.0017009707310498, -0.0016707911703556003, -0.001737198644993, -0.0018335170001935, -0.0018218017821842, -0.0019251681178373, -0.002047320632672, -0.0021087817250902, -0.0020774400517616, -0.0020854450024072, -0.0021467192685315, -0.0021025968174404, -0.0021900851039974, -0.0023150966272546996, -0.0024656671454541994, -0.0024360754773129, -0.0025090987186587, -0.0025039233962752, -0.0025455289764461, -0.00256484931712, -0.002593432902942, -0.0027031731499456, -0.0026593296428674, -0.0028404844624294, -0.0029005130407287, -0.0030852605841332, -0.0031770497491099, -0.0032445661160913, -0.0032918562825477, -0.0032255065215415, -0.0033633666582039, -0.0034970095126188, -0.0036415012286982, -0.0037807602601636, -0.0038512295518288, -0.0038775944252875, -0.0040554418093164, -0.0041017407242711, -0.0042690013147797, -0.0043872448808131, -0.0044444948468331, -0.0045606350047286, -0.0046799128623975, -0.0047936845645035, -0.0048806500439178, -0.0050993274540947, -0.0052106110595723, -0.0053827121396587, -0.0055552526138804, -0.0057820801960689, -0.0059019119149594, -0.0060875244064157, -0.0061856555484602, -0.0065134387338085, -0.0067520230539292, -0.0069678199498934, -0.0071595345083408, -0.0074129977178737, -0.0076456006743688, -0.0078335967339282, -0.0081406455977088, -0.0084502893245693, -0.0086836562131214, -0.0090616552434131, -0.0093329243613616, -0.0096333048573522, -0.0099801332740945, -0.0103204802097373, -0.0106876816335318, -0.0110901032093984, -0.0114824559191466, -0.0119246980529752, -0.0124097273123793, -0.0128873851781913, -0.0134030495218799, -0.0138368604548703, -0.014379020521715098, -0.0148923823750797, -0.0154550284208255, -0.0160642169291935, -0.0166888659409875, -0.0173135861899678, -0.0179934534719258, -0.0186324305659162, -0.0193437284944329, -0.0201181247312538, -0.0208429529278879, -0.0216042033483516, -0.0223799255727763, -0.0231774747881989, -0.0240064491253784, -0.024832838597441, -0.0256447854204169, -0.0265287627148285, -0.0273914148318293, -0.0282405559678402, -0.0290674960832271, -0.0298833776392363, -0.0308112518580688, -0.0315698092483277, -0.0323528790319386, -0.0331656767076667, -0.0339386270609323, -0.0346323876722761, -0.0353082188058609, -0.0359195770445978, -0.03650562377278439, -0.0370520356083508, -0.0375939730369776, -0.0381187205672112, -0.0384776678840271, -0.038905123520838, -0.0392623019294073, -0.0395104965715352, -0.0397583955753741, -0.0399803085154466, -0.0401091538663927, -0.0402417760179696, -0.0403507288978079, -0.0404082630749706, -0.0403199875655881, -0.0402118258353868, -0.0401180933062995, -0.0400080993119532, -0.0398153077744236, -0.0396501390808234, -0.0393854497382681, -0.0390285622546562, -0.0386851679199569, -0.0382419012466508, -0.0377379896116533, -0.0371243846128568, -0.0366553821496583, -0.0360812686935659, -0.0353719518334862, -0.0347139837997007, -0.0339377551423899, -0.0333175822910445, -0.0325953528885584, -0.031750960559658, -0.0310112452410713, -0.0301978683965782, -0.0293723911217037, -0.0285308484164408, -0.0275310131111914, -0.0267797660446588, -0.0258258714016904, -0.0250745567775429, -0.0242745432529421, -0.0234490826046038, -0.0226905950700141, -0.0219107452959077, -0.0211719396886091, -0.020433886069021, -0.0197293397253805, -0.0190344247771912, -0.0183351380340073, -0.0176942467122898, -0.0170737301312238, -0.0164873004965426, -0.015929621431456, -0.0153423839243842, -0.0148140292220104, -0.0142965274932951, -0.0138015171730021, -0.0133245292512468, -0.0128372485102249, -0.0124198688473264, -0.0120041913408443, -0.0115970068107961, -0.0112055921864188, -0.0108405215853174, -0.010479725342792, -0.0101367177318699, -0.0098113908758087, -0.0094725804106811, -0.0091865215785893, -0.008896595960832, -0.0086133221493433, -0.0083425258785154, -0.0080764796291813, -0.0078217152785053, -0.0075877108984916, -0.0073533223339897, -0.0071288039009239, -0.006913779253384601, -0.0067085127293717, -0.0065088597199027, -0.0063053431209402, -0.0061232800163526, -0.0059424386468404, -0.0057667269766548, -0.0055971132032239, -0.0054357675239379, -0.0052807920836265, -0.0051301308310576, -0.0049807025328593, -0.0048400625454501, -0.0046997980862858, -0.0045649891822894, -0.0044302107164173, -0.004300433687863, -0.0041708632120634, -0.004041245216156, -0.0039118654533822, -0.0037828926969786, -0.0036354745674672, -0.0034746818935180997, -0.0033085461624024, -0.0031412983315985], "Bz": [-0.0021476660825547, -0.0021139312207257, -0.0021173960562739, -0.0021432448425252, -0.0021500974733329, -0.002176358161247, -0.0021982073899772, -0.0022192825189731, -0.0022391149218501, -0.0022561667793098, -0.0022785596328279, -0.0022956815976052, -0.0023096563358988, -0.0023254240714911, -0.0023354017972169, -0.002346598032302, -0.0023500863608843, -0.0023549038139767, -0.0023551373317092, -0.00235113902351, -0.0023279718857962, -0.0023093230189962, -0.0022822227862692, -0.0022489412380799, -0.0022156959575384, -0.0021673115226191, -0.0021148820275504005, -0.002062927885757, -0.0019881549712739, -0.001899522385175, -0.0017907446631726, -0.0016838718729075, -0.0015441871895287, -0.0013963666824493, -0.0012255871816717, -0.0010358891269572, -0.0008166053203563, -0.000576242343727, -0.0002957738065026, -6.066230390753361e-06, 0.0003355002592819999, 0.0006882290504902, 0.0010982440367509, 0.0015660044639044, 0.002048948081389, 0.0026184839921332, 0.0032599595760909, 0.0039468838881214, 0.0047082520044591, 0.0055806686010266, 0.0064416714509416, 0.0074189538445185, 0.008564863275654, 0.0097523485091456, 0.0110658918660288, 0.012514819894443, 0.0140287016673139, 0.0158354679822987, 0.0177276683524487, 0.0197071397843536, 0.0218463335086567, 0.0243243397135338, 0.0269504749497411, 0.0297302755663066, 0.0326097381206388, 0.0358967178221094, 0.0393047640969182, 0.0427531210061324, 0.0464607652604951, 0.050607075645921, 0.0548580917491997, 0.0590658499320646, 0.0632915659219484, 0.0677180520024475, 0.0721730272328487, 0.0767377775969636, 0.0812595903892174, 0.0857138209996389, 0.0899943648931739, 0.0939401701801069, 0.0978456174347168, 0.101723900875655, 0.105307781763735, 0.108556905052361, 0.111579625974777, 0.114454619681308, 0.11712707959411, 0.119269656728968, 0.12123751852227502, 0.123143663944393, 0.124589237420046, 0.125713310139575, 0.126761884375638, 0.127401778276971, 0.12793449242797, 0.128140347805618, 0.12814341262424198, 0.127841017697639, 0.127310676740725, 0.126459244372673, 0.125274519605816, 0.123966046949053, 0.122448881527181, 0.120697483732819, 0.118683606842647, 0.116352484232328, 0.113693758014202, 0.111113739039898, 0.108065105853922, 0.104862442276066, 0.101598156885755, 0.0982700106760541, 0.0950786589755292, 0.0917105880793272, 0.0883269584658427, 0.0848214051774033, 0.0816073476098778, 0.0784371547902747, 0.07541528598209, 0.0725369992925542, 0.0700193251549834, 0.06755073506202168, 0.0653555252641746, 0.0633296833199055, 0.0616072262375444, 0.0599853971658741, 0.0585634320280162, 0.0575601723162545, 0.0566039148142317, 0.055636283145089, 0.0548494582892488, 0.054225765904419, 0.0538506757881947, 0.05353285699527, 0.0533325264238925, 0.0531789947811233, 0.0530681902949093, 0.0528940982552945, 0.0526676160358988, 0.0524480322356195, 0.0523073048337372, 0.0520475351200664, 0.0517251728043623, 0.0512777783346538, 0.0505147814699133, 0.0496793017958337, 0.048722432107168, 0.0475572050917, 0.0462176052573156, 0.0446700258106467, 0.0429552786843864, 0.0411938153968086, 0.0392658406747446, 0.0371704950874437, 0.0349789086381314, 0.0327432833490317, 0.0303674324526308, 0.0280648948627946, 0.0256850220901617, 0.0234099201454459, 0.021153273312558, 0.0188852545361383, 0.0166478849276344, 0.0145501273399731, 0.0125718998583212, 0.0106098954084227, 0.0087723936489454, 0.0070295323072966, 0.0053748534548557, 0.0038600263117354, 0.0024898199302268, 0.001135537115614, -7.02899101530523e-05, -0.0012210375310891, -0.0022627161503321, -0.0032413096453089, -0.0040944608149504, -0.0048125045874567, -0.0055358286709107, -0.0062152096273556, -0.0067600439222383, -0.0073151004479998, -0.0077691557601359, -0.008150415173407201, -0.0084588507041001, -0.0087311041904343, -0.0090387663400352, -0.0092695034676187, -0.009540381340750598, -0.0097089604586216, -0.0098222533198364, -0.0099047779034045, -0.0100060062324221, -0.0101954716578734, -0.0101768762383079, -0.0101246790724059, -0.0102117440556606, -0.0102277044302123, -0.0102073218304291, -0.0101761199431807, -0.010188299395246198, -0.0100256279055118, -0.0099397831797636, -0.0098913753865206, -0.0098011463403645, -0.0097244149561595, -0.0095909732519628, -0.0094671096715263, -0.0093071214094665, -0.009141010083528, -0.0089315316390084, -0.0088059179672719, -0.0086460341238671, -0.0084846466930992, -0.008353754689418, -0.008217309226689, -0.0080959517692566, -0.0079318405224384, -0.0077424085620376, -0.0076848488970204, -0.0075816560843038, -0.0074511814684548, -0.0072925238180541, -0.0071943473118654, -0.0071378510547529, -0.0069475945058822, -0.0068643371677903, -0.0067329097329515, -0.0066320227164571, -0.006500041828816, -0.0063683867968801, -0.0062050383908802, -0.0059783115975843, -0.0058361723169241, -0.0057457067851953, -0.0056332132908871, -0.0054926134850903, -0.005361151686242, -0.005197221627078899, -0.0050331087404526, -0.0048584863276329, -0.0047541131286311, -0.0046179673691045, -0.0044780146538008, -0.0043476415397705, -0.0041966196705595, -0.0040947736724188, -0.0039954178425374, -0.0038307467734199, -0.0037451245333189, -0.0036548871132092, -0.0035560817198803, -0.0034621308344047, -0.0033638451008218, -0.0032776704197337, -0.0032036535012461, -0.0031191455551665, -0.0030666465456446, -0.0029782733349956, -0.0028894360072431, -0.0027981314380252, -0.0027503193866847, -0.0026912452728733, -0.0026309126292187, -0.0025696395011161, -0.0025117141460436, -0.0024699627573707, -0.0023981722304747, -0.0023500804930251, -0.0022984162741856, -0.0022441445445612, -0.002194734220697, -0.0021472147619665998, -0.002100754235474, -0.0020554485094611, -0.0020113053507174, -0.0019685085712158, -0.0019248932008372, -0.0018871823633325, -0.0018465775697986, -0.0018051163456156, -0.0017644254918345, -0.0017243213010566, -0.0016878410793593, -0.0016518462507259, -0.0016162604067557, -0.0015816266076767, -0.0015477762817821, -0.0015149679178718, -0.0014808689753616, -0.0014471384158383, -0.0014140433852588, -0.0013811700216266, -0.0013474880610883, -0.00131220082885, -0.0012761708909457, -0.0012382508896249, -0.0011796512891943, -0.0011052264248527003, -0.0009972637250282, -0.0008874519168298]}, "unit": "T"}]} \ No newline at end of file +{ + "setup": [ + { + "id": 2198425521360, + "type": "Collection", + "position": { "value": [0.0, 0.0, 0.0], "unit": "m" }, + "orientation": { + "value": [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + "type": "matrix" + }, + "style": { + "color": null, + "description": { "show": null, "text": null }, + "label": "No demag", + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + } + }, + "children": [ + { + "id": 2197862031424, + "type": "Cuboid", + "position": { "value": [-0.0015, 0.0, 0.0], "unit": "m" }, + "orientation": { + "value": [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + "type": "matrix" + }, + "style": { + "color": null, + "description": { "show": null, "text": null }, + "label": "Cuboid, susceptibility=0.3", + "magnetization": { + "color": { + "middle": null, + "mode": null, + "north": null, + "south": null, + "transition": null + }, + "mode": null, + "show": null, + "size": null + }, + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + } + }, + "susceptibility": { "value": 0.3 }, + "dimension": { "value": [0.001, 0.001, 0.001], "unit": "m" }, + "polarization": { "value": [0.0, 0.0, 1.0], "unit": "T" } + }, + { + "id": 2198425551248, + "type": "Cuboid", + "position": { "value": [0.0, 0.0, 0.0002], "unit": "m" }, + "orientation": { + "value": [ + [0.7071067811865475, -0.0, -0.7071067811865476], + [0.0, 1.0, -0.0], + [0.7071067811865476, 0.0, 0.7071067811865475] + ], + "type": "matrix" + }, + "style": { + "color": null, + "description": { "show": null, "text": null }, + "label": "Cuboid, susceptibility=1.0", + "magnetization": { + "color": { + "middle": null, + "mode": null, + "north": null, + "south": null, + "transition": null + }, + "mode": null, + "show": null, + "size": null + }, + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + } + }, + "susceptibility": { "value": 1.0 }, + "dimension": { "value": [0.001, 0.001, 0.001], "unit": "m" }, + "polarization": { "value": [0.9, 0.0, 0.0], "unit": "T" } + }, + { + "id": 2198425521744, + "type": "Cuboid", + "position": { "value": [0.0016, 0.0, 0.0005], "unit": "m" }, + "orientation": { + "value": [ + [0.8660254037844387, -0.49999999999999994, 0.0], + [0.49999999999999994, 0.8660254037844387, 0.0], + [0.0, 0.0, 1.0] + ], + "type": "matrix" + }, + "style": { + "color": null, + "description": { "show": null, "text": null }, + "label": "Cuboid, susceptibility=0.5", + "magnetization": { + "color": { + "middle": null, + "mode": null, + "north": null, + "south": null, + "transition": null + }, + "mode": null, + "show": null, + "size": null + }, + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + } + }, + "susceptibility": { "value": 0.5 }, + "dimension": { "value": [0.001, 0.001, 0.002], "unit": "m" }, + "polarization": { + "value": [0.29999999999999993, 0.5196152422706632, 0.0], + "unit": "T" + } + } + ] + }, + { + "id": 2198425447008, + "type": "Sensor", + "position": { + "value": [ + [-0.004, 0.0, -0.001], + [-0.003973333333333333, 0.0, -0.001], + [-0.003946666666666667, 0.0, -0.001], + [-0.00392, 0.0, -0.001], + [-0.0038933333333333337, 0.0, -0.001], + [-0.0038666666666666667, 0.0, -0.001], + [-0.0038399999999999997, 0.0, -0.001], + [-0.0038133333333333335, 0.0, -0.001], + [-0.0037866666666666665, 0.0, -0.001], + [-0.00376, 0.0, -0.001], + [-0.0037333333333333333, 0.0, -0.001], + [-0.0037066666666666667, 0.0, -0.001], + [-0.00368, 0.0, -0.001], + [-0.0036533333333333335, 0.0, -0.001], + [-0.0036266666666666665, 0.0, -0.001], + [-0.0036, 0.0, -0.001], + [-0.0035733333333333333, 0.0, -0.001], + [-0.0035466666666666667, 0.0, -0.001], + [-0.00352, 0.0, -0.001], + [-0.003493333333333333, 0.0, -0.001], + [-0.003466666666666667, 0.0, -0.001], + [-0.00344, 0.0, -0.001], + [-0.0034133333333333333, 0.0, -0.001], + [-0.0033866666666666667, 0.0, -0.001], + [-0.0033599999999999997, 0.0, -0.001], + [-0.0033333333333333335, 0.0, -0.001], + [-0.0033066666666666665, 0.0, -0.001], + [-0.0032800000000000004, 0.0, -0.001], + [-0.0032533333333333333, 0.0, -0.001], + [-0.0032266666666666667, 0.0, -0.001], + [-0.0032, 0.0, -0.001], + [-0.003173333333333333, 0.0, -0.001], + [-0.0031466666666666665, 0.0, -0.001], + [-0.00312, 0.0, -0.001], + [-0.0030933333333333334, 0.0, -0.001], + [-0.0030666666666666663, 0.0, -0.001], + [-0.00304, 0.0, -0.001], + [-0.003013333333333333, 0.0, -0.001], + [-0.0029866666666666665, 0.0, -0.001], + [-0.00296, 0.0, -0.001], + [-0.0029333333333333334, 0.0, -0.001], + [-0.0029066666666666668, 0.0, -0.001], + [-0.0028799999999999997, 0.0, -0.001], + [-0.0028533333333333336, 0.0, -0.001], + [-0.0028266666666666666, 0.0, -0.001], + [-0.0028, 0.0, -0.001], + [-0.0027733333333333334, 0.0, -0.001], + [-0.002746666666666667, 0.0, -0.001], + [-0.0027199999999999998, 0.0, -0.001], + [-0.002693333333333333, 0.0, -0.001], + [-0.002666666666666667, 0.0, -0.001], + [-0.0026399999999999996, 0.0, -0.001], + [-0.0026133333333333334, 0.0, -0.001], + [-0.002586666666666667, 0.0, -0.001], + [-0.00256, 0.0, -0.001], + [-0.002533333333333333, 0.0, -0.001], + [-0.002506666666666667, 0.0, -0.001], + [-0.00248, 0.0, -0.001], + [-0.002453333333333333, 0.0, -0.001], + [-0.002426666666666667, 0.0, -0.001], + [-0.0024, 0.0, -0.001], + [-0.002373333333333333, 0.0, -0.001], + [-0.0023466666666666666, 0.0, -0.001], + [-0.0023200000000000004, 0.0, -0.001], + [-0.002293333333333333, 0.0, -0.001], + [-0.0022666666666666664, 0.0, -0.001], + [-0.0022400000000000002, 0.0, -0.001], + [-0.002213333333333333, 0.0, -0.001], + [-0.0021866666666666666, 0.0, -0.001], + [-0.00216, 0.0, -0.001], + [-0.0021333333333333334, 0.0, -0.001], + [-0.0021066666666666664, 0.0, -0.001], + [-0.0020800000000000003, 0.0, -0.001], + [-0.0020533333333333332, 0.0, -0.001], + [-0.002026666666666666, 0.0, -0.001], + [-0.002, 0.0, -0.001], + [-0.001973333333333333, 0.0, -0.001], + [-0.0019466666666666669, 0.0, -0.001], + [-0.0019199999999999998, 0.0, -0.001], + [-0.0018933333333333335, 0.0, -0.001], + [-0.0018666666666666666, 0.0, -0.001], + [-0.0018399999999999998, 0.0, -0.001], + [-0.0018133333333333335, 0.0, -0.001], + [-0.0017866666666666667, 0.0, -0.001], + [-0.0017599999999999998, 0.0, -0.001], + [-0.0017333333333333335, 0.0, -0.001], + [-0.0017066666666666667, 0.0, -0.001], + [-0.00168, 0.0, -0.001], + [-0.0016533333333333333, 0.0, -0.001], + [-0.0016266666666666665, 0.0, -0.001], + [-0.0016, 0.0, -0.001], + [-0.0015733333333333333, 0.0, -0.001], + [-0.001546666666666667, 0.0, -0.001], + [-0.00152, 0.0, -0.001], + [-0.0014933333333333333, 0.0, -0.001], + [-0.0014666666666666667, 0.0, -0.001], + [-0.0014399999999999999, 0.0, -0.001], + [-0.0014133333333333335, 0.0, -0.001], + [-0.0013866666666666667, 0.0, -0.001], + [-0.0013599999999999999, 0.0, -0.001], + [-0.0013333333333333335, 0.0, -0.001], + [-0.0013066666666666667, 0.0, -0.001], + [-0.0012799999999999999, 0.0, -0.001], + [-0.0012533333333333335, 0.0, -0.001], + [-0.0012266666666666665, 0.0, -0.001], + [-0.0012000000000000001, 0.0, -0.001], + [-0.0011733333333333333, 0.0, -0.001], + [-0.0011466666666666665, 0.0, -0.001], + [-0.0011200000000000001, 0.0, -0.001], + [-0.0010933333333333333, 0.0, -0.001], + [-0.001066666666666667, 0.0, -0.001], + [-0.0010400000000000001, 0.0, -0.001], + [-0.001013333333333333, 0.0, -0.001], + [-0.0009866666666666667, 0.0, -0.001], + [-0.0009599999999999999, 0.0, -0.001], + [-0.0009333333333333331, 0.0, -0.001], + [-0.0009066666666666667, 0.0, -0.001], + [-0.0008799999999999999, 0.0, -0.001], + [-0.0008533333333333335, 0.0, -0.001], + [-0.0008266666666666666, 0.0, -0.001], + [-0.0007999999999999998, 0.0, -0.001], + [-0.0007733333333333334, 0.0, -0.001], + [-0.0007466666666666666, 0.0, -0.001], + [-0.0007200000000000002, 0.0, -0.001], + [-0.0006933333333333333, 0.0, -0.001], + [-0.0006666666666666665, 0.0, -0.001], + [-0.0006400000000000002, 0.0, -0.001], + [-0.0006133333333333332, 0.0, -0.001], + [-0.0005866666666666664, 0.0, -0.001], + [-0.0005600000000000001, 0.0, -0.001], + [-0.0005333333333333333, 0.0, -0.001], + [-0.0005066666666666668, 0.0, -0.001], + [-0.00047999999999999996, 0.0, -0.001], + [-0.00045333333333333315, 0.0, -0.001], + [-0.0004266666666666668, 0.0, -0.001], + [-0.0003999999999999999, 0.0, -0.001], + [-0.00037333333333333354, 0.0, -0.001], + [-0.00034666666666666667, 0.0, -0.001], + [-0.00031999999999999986, 0.0, -0.001], + [-0.00029333333333333343, 0.0, -0.001], + [-0.0002666666666666666, 0.0, -0.001], + [-0.00024000000000000022, 0.0, -0.001], + [-0.0002133333333333334, 0.0, -0.001], + [-0.00018666666666666652, 0.0, -0.001], + [-0.00016000000000000015, 0.0, -0.001], + [-0.0001333333333333333, 0.0, -0.001], + [-0.00010666666666666646, 0.0, -0.001], + [-8.000000000000007e-5, 0.0, -0.001], + [-5.333333333333323e-5, 0.0, -0.001], + [-2.666666666666684e-5, 0.0, -0.001], + [0.0, 0.0, -0.001], + [2.6666666666666396e-5, 0.0, -0.001], + [5.333333333333368e-5, 0.0, -0.001], + [8.000000000000007e-5, 0.0, -0.001], + [0.00010666666666666646, 0.0, -0.001], + [0.00013333333333333375, 0.0, -0.001], + [0.00016000000000000015, 0.0, -0.001], + [0.00018666666666666652, 0.0, -0.001], + [0.00021333333333333293, 0.0, -0.001], + [0.00024000000000000022, 0.0, -0.001], + [0.0002666666666666666, 0.0, -0.001], + [0.000293333333333333, 0.0, -0.001], + [0.0003200000000000003, 0.0, -0.001], + [0.00034666666666666667, 0.0, -0.001], + [0.00037333333333333305, 0.0, -0.001], + [0.00040000000000000034, 0.0, -0.001], + [0.0004266666666666668, 0.0, -0.001], + [0.00045333333333333315, 0.0, -0.001], + [0.00048000000000000045, 0.0, -0.001], + [0.0005066666666666668, 0.0, -0.001], + [0.0005333333333333333, 0.0, -0.001], + [0.0005599999999999996, 0.0, -0.001], + [0.0005866666666666669, 0.0, -0.001], + [0.0006133333333333332, 0.0, -0.001], + [0.0006399999999999997, 0.0, -0.001], + [0.000666666666666667, 0.0, -0.001], + [0.0006933333333333333, 0.0, -0.001], + [0.0007199999999999997, 0.0, -0.001], + [0.0007466666666666671, 0.0, -0.001], + [0.0007733333333333334, 0.0, -0.001], + [0.0007999999999999998, 0.0, -0.001], + [0.0008266666666666671, 0.0, -0.001], + [0.0008533333333333335, 0.0, -0.001], + [0.0008799999999999999, 0.0, -0.001], + [0.0009066666666666663, 0.0, -0.001], + [0.0009333333333333335, 0.0, -0.001], + [0.0009599999999999999, 0.0, -0.001], + [0.0009866666666666663, 0.0, -0.001], + [0.0010133333333333335, 0.0, -0.001], + [0.0010400000000000001, 0.0, -0.001], + [0.0010666666666666665, 0.0, -0.001], + [0.0010933333333333337, 0.0, -0.001], + [0.0011200000000000001, 0.0, -0.001], + [0.0011466666666666665, 0.0, -0.001], + [0.0011733333333333329, 0.0, -0.001], + [0.0012000000000000001, 0.0, -0.001], + [0.0012266666666666665, 0.0, -0.001], + [0.0012533333333333329, 0.0, -0.001], + [0.0012800000000000003, 0.0, -0.001], + [0.0013066666666666667, 0.0, -0.001], + [0.001333333333333333, 0.0, -0.001], + [0.0013600000000000003, 0.0, -0.001], + [0.0013866666666666667, 0.0, -0.001], + [0.001413333333333333, 0.0, -0.001], + [0.0014400000000000003, 0.0, -0.001], + [0.0014666666666666667, 0.0, -0.001], + [0.0014933333333333333, 0.0, -0.001], + [0.0015199999999999997, 0.0, -0.001], + [0.001546666666666667, 0.0, -0.001], + [0.0015733333333333333, 0.0, -0.001], + [0.0015999999999999996, 0.0, -0.001], + [0.0016266666666666669, 0.0, -0.001], + [0.0016533333333333333, 0.0, -0.001], + [0.0016799999999999996, 0.0, -0.001], + [0.001706666666666667, 0.0, -0.001], + [0.0017333333333333335, 0.0, -0.001], + [0.0017599999999999998, 0.0, -0.001], + [0.001786666666666667, 0.0, -0.001], + [0.0018133333333333335, 0.0, -0.001], + [0.0018399999999999998, 0.0, -0.001], + [0.0018666666666666662, 0.0, -0.001], + [0.0018933333333333335, 0.0, -0.001], + [0.0019199999999999998, 0.0, -0.001], + [0.0019466666666666664, 0.0, -0.001], + [0.0019733333333333334, 0.0, -0.001], + [0.002, 0.0, -0.001], + [0.002026666666666666, 0.0, -0.001], + [0.0020533333333333337, 0.0, -0.001], + [0.0020800000000000003, 0.0, -0.001], + [0.0021066666666666664, 0.0, -0.001], + [0.002133333333333334, 0.0, -0.001], + [0.00216, 0.0, -0.001], + [0.0021866666666666666, 0.0, -0.001], + [0.0022133333333333328, 0.0, -0.001], + [0.0022400000000000002, 0.0, -0.001], + [0.0022666666666666664, 0.0, -0.001], + [0.002293333333333333, 0.0, -0.001], + [0.0023200000000000004, 0.0, -0.001], + [0.0023466666666666666, 0.0, -0.001], + [0.002373333333333333, 0.0, -0.001], + [0.0024000000000000002, 0.0, -0.001], + [0.002426666666666667, 0.0, -0.001], + [0.002453333333333333, 0.0, -0.001], + [0.0024800000000000004, 0.0, -0.001], + [0.002506666666666667, 0.0, -0.001], + [0.002533333333333333, 0.0, -0.001], + [0.0025599999999999998, 0.0, -0.001], + [0.002586666666666667, 0.0, -0.001], + [0.0026133333333333334, 0.0, -0.001], + [0.0026399999999999996, 0.0, -0.001], + [0.002666666666666667, 0.0, -0.001], + [0.002693333333333333, 0.0, -0.001], + [0.0027199999999999998, 0.0, -0.001], + [0.0027466666666666672, 0.0, -0.001], + [0.0027733333333333334, 0.0, -0.001], + [0.0028, 0.0, -0.001], + [0.002826666666666667, 0.0, -0.001], + [0.0028533333333333336, 0.0, -0.001], + [0.0028799999999999997, 0.0, -0.001], + [0.0029066666666666663, 0.0, -0.001], + [0.0029333333333333334, 0.0, -0.001], + [0.00296, 0.0, -0.001], + [0.0029866666666666665, 0.0, -0.001], + [0.0030133333333333336, 0.0, -0.001], + [0.00304, 0.0, -0.001], + [0.0030666666666666663, 0.0, -0.001], + [0.003093333333333334, 0.0, -0.001], + [0.00312, 0.0, -0.001], + [0.0031466666666666665, 0.0, -0.001], + [0.0031733333333333327, 0.0, -0.001], + [0.0032, 0.0, -0.001], + [0.0032266666666666667, 0.0, -0.001], + [0.003253333333333333, 0.0, -0.001], + [0.0032800000000000004, 0.0, -0.001], + [0.0033066666666666665, 0.0, -0.001], + [0.003333333333333333, 0.0, -0.001], + [0.00336, 0.0, -0.001], + [0.0033866666666666667, 0.0, -0.001], + [0.0034133333333333333, 0.0, -0.001], + [0.0034400000000000003, 0.0, -0.001], + [0.003466666666666667, 0.0, -0.001], + [0.003493333333333333, 0.0, -0.001], + [0.0035199999999999997, 0.0, -0.001], + [0.0035466666666666667, 0.0, -0.001], + [0.0035733333333333333, 0.0, -0.001], + [0.0035999999999999995, 0.0, -0.001], + [0.003626666666666667, 0.0, -0.001], + [0.0036533333333333335, 0.0, -0.001], + [0.0036799999999999997, 0.0, -0.001], + [0.003706666666666667, 0.0, -0.001], + [0.0037333333333333333, 0.0, -0.001], + [0.00376, 0.0, -0.001], + [0.003786666666666667, 0.0, -0.001], + [0.0038133333333333335, 0.0, -0.001], + [0.0038399999999999997, 0.0, -0.001], + [0.0038666666666666663, 0.0, -0.001], + [0.0038933333333333337, 0.0, -0.001], + [0.00392, 0.0, -0.001], + [0.003946666666666666, 0.0, -0.001], + [0.003973333333333334, 0.0, -0.001], + [0.004, 0.0, -0.001] + ], + "unit": "m" + }, + "orientation": { + "value": [ + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ] + ], + "type": "matrix" + }, + "pixel": { "value": [0.0, 0.0, 0.0], "unit": "m" } + } + ], + "results": [ + { + "computation": "FEM (ANSYS)", + "field": "B", + "kwargs": { + "sources": [2198425521360], + "sensors": [2198425447008], + "sumup": false, + "pixel_agg": null, + "squeeze": true, + "output": "dataframe" + }, + "order": ["source", "path", "sensor", "pixel", "value"], + "value": { + "Bx": [ + 0.0060501993604089, 0.0061960455797802, 0.0063391508126054, + 0.006486617629132699, 0.0066360740011114, 0.0067796264505833, + 0.0069289956975891, 0.0070861862125071, 0.0072548717372922, + 0.0074444338378504, 0.0076378140713782, 0.0078455227396759, + 0.0080721725674173, 0.0083075602265602, 0.0085684318384397, + 0.0088284983431987, 0.0091260653956796, 0.0094224697396957, + 0.0097472960087496, 0.0100737608343403, 0.0104320206627321, + 0.010804308997221, 0.0111945813055182, 0.0116006936333319, + 0.0120310981858663, 0.0124750035295116, 0.0129379332603624, + 0.0134349930841049, 0.013941202400874302, 0.0144909599359248, + 0.0150383897483038, 0.0156452922960432, 0.0162566372572966, + 0.0169203227793888, 0.0175980149556054, 0.0183228192892889, + 0.0190812870352792, 0.0198506654674769, 0.020692793607858, + 0.0215517514218727, 0.0224473380490659, 0.0233851283331473, + 0.0243628750695844, 0.0254008820409711, 0.0265260114770658, + 0.0275586282508723, 0.0287737980885236, 0.0300128495565023, + 0.0312895371487907, 0.0326016230273246, 0.0339705709194694, + 0.035411266080879, 0.0368410071386007, 0.0383806920744169, + 0.0399495499114504, 0.0415249511841092, 0.0431508606071014, + 0.0448536270959897, 0.0466382080628879, 0.0482154576635795, + 0.0499945702086684, 0.0517249027827736, 0.0534631349207278, + 0.055001580249267, 0.0565918387131236, 0.0580163570026835, + 0.0593440518223433, 0.060633687452119, 0.0616803217832849, + 0.0626552517212926, 0.0632703899052487, 0.0637108482874222, + 0.063743181065586, 0.0636960630444481, 0.063290296879369, + 0.0627287252854222, 0.06161476932503869, 0.0605154433723455, + 0.0587684167062932, 0.0569630049719656, 0.0547440038069035, + 0.0525107813657837, 0.0499109030147293, 0.0472215751082189, + 0.0443517677677627, 0.0412550055472719, 0.0380679873393383, + 0.0347600159848767, 0.031459151886879, 0.0281201385967537, + 0.0245029539684833, 0.0210255732394143, 0.0174960158738058, + 0.0139154625363823, 0.0104579661122173, 0.0068352553722182, + 0.0033554221023146995, -0.0002250347349626, -0.0035791975981192, + -0.0070589141072154, -0.0104427189522744, -0.0137786439410148, + -0.016926327764649, -0.0200385407612656, -0.0230379653275292, + -0.0259124955889523, -0.0284725756215064, -0.0310194447656001, + -0.0332231032667708, -0.0352490237673048, -0.0367769834100979, + -0.038164423082138, -0.0393413234546642, -0.0402323239583176, + -0.0408288077917225, -0.0412048577978514, -0.0414238435062318, + -0.041258318758239, -0.040975912332047, -0.0404093175237935, + -0.0399692506301701, -0.0388295233195785, -0.0378247052137281, + -0.0367790626389605, -0.0357776322711188, -0.034703337982531, + -0.0335878682158573, -0.0324926934173076, -0.0317666031939196, + -0.0307953762852025, -0.0300071883730073, -0.0292518925051306, + -0.0286923874076531, -0.028157334380888303, -0.0278671822503085, + -0.0275654764206188, -0.0277249836650796, -0.0277778737944747, + -0.0280611365585564, -0.0283969865820417, -0.028911444001461804, + -0.0295035906015935, -0.0303665852163719, -0.0313895971618548, + -0.0325630094302637, -0.0335661416106682, -0.034667735913897, + -0.0357956690250596, -0.036896457783381, -0.0380114568606236, + -0.0391925225026004, -0.0399884972825701, -0.0409611578517079, + -0.0416859515708573, -0.0422391689977416, -0.042794298256976, + -0.0431044735120447, -0.0432139035848613, -0.0431867388043679, + -0.0430523631029081, -0.0427583984134921, -0.0423447057291149, + -0.0417602310464419, -0.041149791407033, -0.0403886139069589, + -0.0396405637302733, -0.0386417273249432, -0.0376632797605967, + -0.0366206800466347, -0.0355637894837793, -0.0344686090782429, + -0.0333634087961361, -0.032234219003949, -0.0310434828769092, + -0.0298851447941885, -0.028786552434139304, -0.027671160123108, + -0.0265495012697285, -0.0254603354456982, -0.0244022676907089, + -0.0233523513456414, -0.0223238143806603, -0.0213194019889709, + -0.0203766984928523, -0.019443228457924, -0.0185816913529778, + -0.0176879495585996, -0.0169200428797812, -0.0160622324561004, + -0.0152772141996421, -0.0145322864930298, -0.0137822872230893, + -0.0131357952316468, -0.012451975550862, -0.0117752318714405, + -0.0111124973687814, -0.0105607828675903, -0.0099837906032737, + -0.0094232085482353, -0.0089025667070211, -0.0084151761217117, + -0.0079108712975156, -0.0074160610431683, -0.0069421521122613, + -0.0064880116068857, -0.0060802439210264, -0.0056914323239349, + -0.0053420867159564, -0.0049922479532459, -0.0046623542676896, + -0.0043282060452068, -0.0039875887925116, -0.00369420861429, + -0.0034337217209112, -0.0032253265639805, -0.0030118631509885, + -0.0027617533699095, -0.0026456440592116, -0.0024664718851732, + -0.0022884452321962, -0.0021666767247677, -0.001999311387402, + -0.001841782895251, -0.0017078334071054, -0.001546071500985, + -0.0014230998313021, -0.0012617240142967, -0.0010603010108451, + -0.0009750067224797, -0.0008087760913422, -0.000686454603793, + -0.0006250633637773, -0.0005085943434571, -0.0004391816902721, + -0.0003127219591757, -0.0002373172230562, -0.0001356032694689, + -8.78523739553835e-5, -4.82454193622267e-7, 6.49358118721259e-5, + 9.52792025734885e-5, 0.0002055585221957, 0.0002546591981924, + 0.0002803879777741, 0.0003094084470754, 0.0003235738646996, + 0.0003107920893562, 0.0003439853618193, 0.0003820083140724, + 0.0003834618969273, 0.0003815404626565, 0.0003837815253919, + 0.0003853919998573, 0.0003838053179039, 0.0003878198084254, + 0.0003927980156716, 0.0003966633000667, 0.0004034265972848, + 0.0004092164996212, 0.0004126185946492, 0.0004095672323976, + 0.0004077361982438, 0.0004104266367575, 0.000414641389836, + 0.0004105464398481, 0.0004169337998321, 0.0004058105727938, + 0.0004164667054553, 0.0004151401029977, 0.0004136962422635, + 0.0004105479615716, 0.0004108948972354, 0.0004110523202815, + 0.000408349675669, 0.0004063920098184, 0.000405752606153, + 0.0004060326811698, 0.0004065790593484, 0.000411343809611, + 0.0004124462463604, 0.0004102036338995, 0.0004084284760454, + 0.0004098693765882, 0.0004054000615738, 0.0004054502825511, + 0.0004053382453649, 0.0004074498013729, 0.0004092066240853, + 0.0004118412286571, 0.0004164815835016, 0.0004174214065251, + 0.0004203462277796, 0.0004240502601043, 0.00042664434121, + 0.0004235660313317, 0.0004233139902501, 0.0004254981927435, + 0.0003995535614148, 0.0003816847697257, 0.0003100705341536, + 0.000244053117834 + ], + "By": [ + -0.0005243082361124, -0.0004874360341332, -0.0004202239310791, + -0.0003937288666377, -0.0003723770366365, -0.0003750749397166, + -0.0003773957705386, -0.0003836690560325, -0.0003929733063248, + -0.0004044867834609, -0.0004148210899216, -0.0004245533709691, + -0.0004402176490366, -0.0004501689224327, -0.0004606836256717, + -0.0004673070982811, -0.0004760123248258, -0.0004853098909329, + -0.0004929104409827, -0.000513577847274, -0.0005207937656792, + -0.0005235024238702, -0.0005387961268642, -0.0005500630626079, + -0.0005566484627682, -0.0005616358278106, -0.0005585265240258, + -0.0005774411074652, -0.0005907745643605, -0.0006009189161926, + -0.0006163023377177, -0.0006236414199406, -0.0006364067139477, + -0.0006435850244337, -0.0006519265716606, -0.0006557717232017, + -0.0006565125289595, -0.0006568147953313, -0.0006787114086518, + -0.0006925683640457, -0.0007044454981057, -0.0007157670796069, + -0.000733022977573, -0.0007518412734503, -0.0007646606426349, + -0.0007667459151289, -0.0007745017131341, -0.0007975665164909999, + -0.0008095303017768, -0.0007712153788468, -0.0008165320982256, + -0.000838407212312, -0.0008121981568108, -0.0007858872462343, + -0.000843980287421, -0.0008520772856133, -0.0008331957570468, + -0.0008886368827564, -0.0008809713881873, -0.0009860446987075, + -0.0009820297051088, -0.0009720619781352, -0.0010509229630675, + -0.001004422295767, -0.0009411990485862, -0.0010512431223795, + -0.001026131151557, -0.0010321167613331, -0.0010296253474704, + -0.0010649436682579, -0.0011180818752334, -0.0011725618974236, + -0.0012209935820897, -0.0012523873278643, -0.0012451642777704, + -0.0012785136105481, -0.0012295904506717, -0.001293405988895, + -0.001386977051847, -0.0013119265891815, -0.0013207579458939, + -0.0013885287607438, -0.0013823854634311, -0.0013985731698268, + -0.0014470811960126, -0.0015470789051096, -0.0015757480156520002, + -0.0016999937260336, -0.0017037919711221, -0.0016628980551130997, + -0.0016938299212833, -0.0017009707310498, -0.0016707911703556003, + -0.001737198644993, -0.0018335170001935, -0.0018218017821842, + -0.0019251681178373, -0.002047320632672, -0.0021087817250902, + -0.0020774400517616, -0.0020854450024072, -0.0021467192685315, + -0.0021025968174404, -0.0021900851039974, -0.0023150966272546996, + -0.0024656671454541994, -0.0024360754773129, -0.0025090987186587, + -0.0025039233962752, -0.0025455289764461, -0.00256484931712, + -0.002593432902942, -0.0027031731499456, -0.0026593296428674, + -0.0028404844624294, -0.0029005130407287, -0.0030852605841332, + -0.0031770497491099, -0.0032445661160913, -0.0032918562825477, + -0.0032255065215415, -0.0033633666582039, -0.0034970095126188, + -0.0036415012286982, -0.0037807602601636, -0.0038512295518288, + -0.0038775944252875, -0.0040554418093164, -0.0041017407242711, + -0.0042690013147797, -0.0043872448808131, -0.0044444948468331, + -0.0045606350047286, -0.0046799128623975, -0.0047936845645035, + -0.0048806500439178, -0.0050993274540947, -0.0052106110595723, + -0.0053827121396587, -0.0055552526138804, -0.0057820801960689, + -0.0059019119149594, -0.0060875244064157, -0.0061856555484602, + -0.0065134387338085, -0.0067520230539292, -0.0069678199498934, + -0.0071595345083408, -0.0074129977178737, -0.0076456006743688, + -0.0078335967339282, -0.0081406455977088, -0.0084502893245693, + -0.0086836562131214, -0.0090616552434131, -0.0093329243613616, + -0.0096333048573522, -0.0099801332740945, -0.0103204802097373, + -0.0106876816335318, -0.0110901032093984, -0.0114824559191466, + -0.0119246980529752, -0.0124097273123793, -0.0128873851781913, + -0.0134030495218799, -0.0138368604548703, -0.014379020521715098, + -0.0148923823750797, -0.0154550284208255, -0.0160642169291935, + -0.0166888659409875, -0.0173135861899678, -0.0179934534719258, + -0.0186324305659162, -0.0193437284944329, -0.0201181247312538, + -0.0208429529278879, -0.0216042033483516, -0.0223799255727763, + -0.0231774747881989, -0.0240064491253784, -0.024832838597441, + -0.0256447854204169, -0.0265287627148285, -0.0273914148318293, + -0.0282405559678402, -0.0290674960832271, -0.0298833776392363, + -0.0308112518580688, -0.0315698092483277, -0.0323528790319386, + -0.0331656767076667, -0.0339386270609323, -0.0346323876722761, + -0.0353082188058609, -0.0359195770445978, -0.03650562377278439, + -0.0370520356083508, -0.0375939730369776, -0.0381187205672112, + -0.0384776678840271, -0.038905123520838, -0.0392623019294073, + -0.0395104965715352, -0.0397583955753741, -0.0399803085154466, + -0.0401091538663927, -0.0402417760179696, -0.0403507288978079, + -0.0404082630749706, -0.0403199875655881, -0.0402118258353868, + -0.0401180933062995, -0.0400080993119532, -0.0398153077744236, + -0.0396501390808234, -0.0393854497382681, -0.0390285622546562, + -0.0386851679199569, -0.0382419012466508, -0.0377379896116533, + -0.0371243846128568, -0.0366553821496583, -0.0360812686935659, + -0.0353719518334862, -0.0347139837997007, -0.0339377551423899, + -0.0333175822910445, -0.0325953528885584, -0.031750960559658, + -0.0310112452410713, -0.0301978683965782, -0.0293723911217037, + -0.0285308484164408, -0.0275310131111914, -0.0267797660446588, + -0.0258258714016904, -0.0250745567775429, -0.0242745432529421, + -0.0234490826046038, -0.0226905950700141, -0.0219107452959077, + -0.0211719396886091, -0.020433886069021, -0.0197293397253805, + -0.0190344247771912, -0.0183351380340073, -0.0176942467122898, + -0.0170737301312238, -0.0164873004965426, -0.015929621431456, + -0.0153423839243842, -0.0148140292220104, -0.0142965274932951, + -0.0138015171730021, -0.0133245292512468, -0.0128372485102249, + -0.0124198688473264, -0.0120041913408443, -0.0115970068107961, + -0.0112055921864188, -0.0108405215853174, -0.010479725342792, + -0.0101367177318699, -0.0098113908758087, -0.0094725804106811, + -0.0091865215785893, -0.008896595960832, -0.0086133221493433, + -0.0083425258785154, -0.0080764796291813, -0.0078217152785053, + -0.0075877108984916, -0.0073533223339897, -0.0071288039009239, + -0.006913779253384601, -0.0067085127293717, -0.0065088597199027, + -0.0063053431209402, -0.0061232800163526, -0.0059424386468404, + -0.0057667269766548, -0.0055971132032239, -0.0054357675239379, + -0.0052807920836265, -0.0051301308310576, -0.0049807025328593, + -0.0048400625454501, -0.0046997980862858, -0.0045649891822894, + -0.0044302107164173, -0.004300433687863, -0.0041708632120634, + -0.004041245216156, -0.0039118654533822, -0.0037828926969786, + -0.0036354745674672, -0.0034746818935180997, -0.0033085461624024, + -0.0031412983315985 + ], + "Bz": [ + -0.0021476660825547, -0.0021139312207257, -0.0021173960562739, + -0.0021432448425252, -0.0021500974733329, -0.002176358161247, + -0.0021982073899772, -0.0022192825189731, -0.0022391149218501, + -0.0022561667793098, -0.0022785596328279, -0.0022956815976052, + -0.0023096563358988, -0.0023254240714911, -0.0023354017972169, + -0.002346598032302, -0.0023500863608843, -0.0023549038139767, + -0.0023551373317092, -0.00235113902351, -0.0023279718857962, + -0.0023093230189962, -0.0022822227862692, -0.0022489412380799, + -0.0022156959575384, -0.0021673115226191, -0.0021148820275504005, + -0.002062927885757, -0.0019881549712739, -0.001899522385175, + -0.0017907446631726, -0.0016838718729075, -0.0015441871895287, + -0.0013963666824493, -0.0012255871816717, -0.0010358891269572, + -0.0008166053203563, -0.000576242343727, -0.0002957738065026, + -6.066230390753361e-6, 0.0003355002592819999, 0.0006882290504902, + 0.0010982440367509, 0.0015660044639044, 0.002048948081389, + 0.0026184839921332, 0.0032599595760909, 0.0039468838881214, + 0.0047082520044591, 0.0055806686010266, 0.0064416714509416, + 0.0074189538445185, 0.008564863275654, 0.0097523485091456, + 0.0110658918660288, 0.012514819894443, 0.0140287016673139, + 0.0158354679822987, 0.0177276683524487, 0.0197071397843536, + 0.0218463335086567, 0.0243243397135338, 0.0269504749497411, + 0.0297302755663066, 0.0326097381206388, 0.0358967178221094, + 0.0393047640969182, 0.0427531210061324, 0.0464607652604951, + 0.050607075645921, 0.0548580917491997, 0.0590658499320646, + 0.0632915659219484, 0.0677180520024475, 0.0721730272328487, + 0.0767377775969636, 0.0812595903892174, 0.0857138209996389, + 0.0899943648931739, 0.0939401701801069, 0.0978456174347168, + 0.101723900875655, 0.105307781763735, 0.108556905052361, + 0.111579625974777, 0.114454619681308, 0.11712707959411, + 0.119269656728968, 0.12123751852227502, 0.123143663944393, + 0.124589237420046, 0.125713310139575, 0.126761884375638, + 0.127401778276971, 0.12793449242797, 0.128140347805618, + 0.12814341262424198, 0.127841017697639, 0.127310676740725, + 0.126459244372673, 0.125274519605816, 0.123966046949053, + 0.122448881527181, 0.120697483732819, 0.118683606842647, + 0.116352484232328, 0.113693758014202, 0.111113739039898, + 0.108065105853922, 0.104862442276066, 0.101598156885755, + 0.0982700106760541, 0.0950786589755292, 0.0917105880793272, + 0.0883269584658427, 0.0848214051774033, 0.0816073476098778, + 0.0784371547902747, 0.07541528598209, 0.0725369992925542, + 0.0700193251549834, 0.06755073506202168, 0.0653555252641746, + 0.0633296833199055, 0.0616072262375444, 0.0599853971658741, + 0.0585634320280162, 0.0575601723162545, 0.0566039148142317, + 0.055636283145089, 0.0548494582892488, 0.054225765904419, + 0.0538506757881947, 0.05353285699527, 0.0533325264238925, + 0.0531789947811233, 0.0530681902949093, 0.0528940982552945, + 0.0526676160358988, 0.0524480322356195, 0.0523073048337372, + 0.0520475351200664, 0.0517251728043623, 0.0512777783346538, + 0.0505147814699133, 0.0496793017958337, 0.048722432107168, + 0.0475572050917, 0.0462176052573156, 0.0446700258106467, + 0.0429552786843864, 0.0411938153968086, 0.0392658406747446, + 0.0371704950874437, 0.0349789086381314, 0.0327432833490317, + 0.0303674324526308, 0.0280648948627946, 0.0256850220901617, + 0.0234099201454459, 0.021153273312558, 0.0188852545361383, + 0.0166478849276344, 0.0145501273399731, 0.0125718998583212, + 0.0106098954084227, 0.0087723936489454, 0.0070295323072966, + 0.0053748534548557, 0.0038600263117354, 0.0024898199302268, + 0.001135537115614, -7.02899101530523e-5, -0.0012210375310891, + -0.0022627161503321, -0.0032413096453089, -0.0040944608149504, + -0.0048125045874567, -0.0055358286709107, -0.0062152096273556, + -0.0067600439222383, -0.0073151004479998, -0.0077691557601359, + -0.008150415173407201, -0.0084588507041001, -0.0087311041904343, + -0.0090387663400352, -0.0092695034676187, -0.009540381340750598, + -0.0097089604586216, -0.0098222533198364, -0.0099047779034045, + -0.0100060062324221, -0.0101954716578734, -0.0101768762383079, + -0.0101246790724059, -0.0102117440556606, -0.0102277044302123, + -0.0102073218304291, -0.0101761199431807, -0.010188299395246198, + -0.0100256279055118, -0.0099397831797636, -0.0098913753865206, + -0.0098011463403645, -0.0097244149561595, -0.0095909732519628, + -0.0094671096715263, -0.0093071214094665, -0.009141010083528, + -0.0089315316390084, -0.0088059179672719, -0.0086460341238671, + -0.0084846466930992, -0.008353754689418, -0.008217309226689, + -0.0080959517692566, -0.0079318405224384, -0.0077424085620376, + -0.0076848488970204, -0.0075816560843038, -0.0074511814684548, + -0.0072925238180541, -0.0071943473118654, -0.0071378510547529, + -0.0069475945058822, -0.0068643371677903, -0.0067329097329515, + -0.0066320227164571, -0.006500041828816, -0.0063683867968801, + -0.0062050383908802, -0.0059783115975843, -0.0058361723169241, + -0.0057457067851953, -0.0056332132908871, -0.0054926134850903, + -0.005361151686242, -0.005197221627078899, -0.0050331087404526, + -0.0048584863276329, -0.0047541131286311, -0.0046179673691045, + -0.0044780146538008, -0.0043476415397705, -0.0041966196705595, + -0.0040947736724188, -0.0039954178425374, -0.0038307467734199, + -0.0037451245333189, -0.0036548871132092, -0.0035560817198803, + -0.0034621308344047, -0.0033638451008218, -0.0032776704197337, + -0.0032036535012461, -0.0031191455551665, -0.0030666465456446, + -0.0029782733349956, -0.0028894360072431, -0.0027981314380252, + -0.0027503193866847, -0.0026912452728733, -0.0026309126292187, + -0.0025696395011161, -0.0025117141460436, -0.0024699627573707, + -0.0023981722304747, -0.0023500804930251, -0.0022984162741856, + -0.0022441445445612, -0.002194734220697, -0.0021472147619665998, + -0.002100754235474, -0.0020554485094611, -0.0020113053507174, + -0.0019685085712158, -0.0019248932008372, -0.0018871823633325, + -0.0018465775697986, -0.0018051163456156, -0.0017644254918345, + -0.0017243213010566, -0.0016878410793593, -0.0016518462507259, + -0.0016162604067557, -0.0015816266076767, -0.0015477762817821, + -0.0015149679178718, -0.0014808689753616, -0.0014471384158383, + -0.0014140433852588, -0.0013811700216266, -0.0013474880610883, + -0.00131220082885, -0.0012761708909457, -0.0012382508896249, + -0.0011796512891943, -0.0011052264248527003, -0.0009972637250282, + -0.0008874519168298 + ] + }, + "unit": "T" + } + ] +} diff --git a/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json b/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json index ce2b835..51d9998 100644 --- a/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json +++ b/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json @@ -1 +1,14225 @@ -{"setup": [{"id": 2678036084816, "type": "Collection", "position": {"value": [0.0, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "No demag", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "children": [{"id": 2678042879984, "type": "Cuboid", "position": {"value": [0.0, 0.0, 0.0005], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Hard cuboid magnet, susceptibility=0.5", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.5}, "dimension": {"value": [0.001, 0.001, 0.002], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 1.0], "unit": "T"}}, {"id": 2678036170400, "type": "Cuboid", "position": {"value": [0.0015, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[0.7071067811865475, 0.0, 0.7071067811865476], [0.0, 1.0, 0.0], [-0.7071067811865476, 0.0, 0.7071067811865475]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Soft cuboid magnet, susceptibility=3999", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 3999}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 0.0], "unit": "T"}}]}, {"id": 2679646060352, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.001], [-0.0039900000000000005, 0.0, -0.001], [-0.00398, 0.0, -0.001], [-0.0039700000000000004, 0.0, -0.001], [-0.00396, 0.0, -0.001], [-0.00395, 0.0, -0.001], [-0.00394, 0.0, -0.001], [-0.00393, 0.0, -0.001], [-0.00392, 0.0, -0.001], [-0.00391, 0.0, -0.001], [-0.0039, 0.0, -0.001], [-0.0038900000000000002, 0.0, -0.001], [-0.0038799999999999998, 0.0, -0.001], [-0.00387, 0.0, -0.001], [-0.0038599999999999997, 0.0, -0.001], [-0.00385, 0.0, -0.001], [-0.0038399999999999997, 0.0, -0.001], [-0.00383, 0.0, -0.001], [-0.00382, 0.0, -0.001], [-0.00381, 0.0, -0.001], [-0.0038, 0.0, -0.001], [-0.00379, 0.0, -0.001], [-0.0037800000000000004, 0.0, -0.001], [-0.00377, 0.0, -0.001], [-0.00376, 0.0, -0.001], [-0.00375, 0.0, -0.001], [-0.0037400000000000003, 0.0, -0.001], [-0.00373, 0.0, -0.001], [-0.0037199999999999998, 0.0, -0.001], [-0.0037099999999999998, 0.0, -0.001], [-0.0037, 0.0, -0.001], [-0.00369, 0.0, -0.001], [-0.00368, 0.0, -0.001], [-0.00367, 0.0, -0.001], [-0.00366, 0.0, -0.001], [-0.00365, 0.0, -0.001], [-0.00364, 0.0, -0.001], [-0.00363, 0.0, -0.001], [-0.00362, 0.0, -0.001], [-0.00361, 0.0, -0.001], [-0.0036, 0.0, -0.001], [-0.00359, 0.0, -0.001], [-0.0035800000000000003, 0.0, -0.001], [-0.0035700000000000003, 0.0, -0.001], [-0.0035600000000000002, 0.0, -0.001], [-0.0035499999999999998, 0.0, -0.001], [-0.00354, 0.0, -0.001], [-0.00353, 0.0, -0.001], [-0.00352, 0.0, -0.001], [-0.0035099999999999997, 0.0, -0.001], [-0.0035, 0.0, -0.001], [-0.00349, 0.0, -0.001], [-0.00348, 0.0, -0.001], [-0.0034699999999999996, 0.0, -0.001], [-0.00346, 0.0, -0.001], [-0.0034500000000000004, 0.0, -0.001], [-0.00344, 0.0, -0.001], [-0.00343, 0.0, -0.001], [-0.00342, 0.0, -0.001], [-0.0034100000000000003, 0.0, -0.001], [-0.0034, 0.0, -0.001], [-0.0033900000000000002, 0.0, -0.001], [-0.0033799999999999998, 0.0, -0.001], [-0.00337, 0.0, -0.001], [-0.0033599999999999997, 0.0, -0.001], [-0.00335, 0.0, -0.001], [-0.0033399999999999997, 0.0, -0.001], [-0.00333, 0.0, -0.001], [-0.00332, 0.0, -0.001], [-0.00331, 0.0, -0.001], [-0.0033, 0.0, -0.001], [-0.00329, 0.0, -0.001], [-0.0032800000000000004, 0.0, -0.001], [-0.00327, 0.0, -0.001], [-0.00326, 0.0, -0.001], [-0.00325, 0.0, -0.001], [-0.0032400000000000003, 0.0, -0.001], [-0.00323, 0.0, -0.001], [-0.0032199999999999998, 0.0, -0.001], [-0.00321, 0.0, -0.001], [-0.0032, 0.0, -0.001], [-0.00319, 0.0, -0.001], [-0.0031799999999999997, 0.0, -0.001], [-0.00317, 0.0, -0.001], [-0.00316, 0.0, -0.001], [-0.00315, 0.0, -0.001], [-0.00314, 0.0, -0.001], [-0.00313, 0.0, -0.001], [-0.00312, 0.0, -0.001], [-0.0031100000000000004, 0.0, -0.001], [-0.0031, 0.0, -0.001], [-0.00309, 0.0, -0.001], [-0.0030800000000000003, 0.0, -0.001], [-0.0030700000000000002, 0.0, -0.001], [-0.0030600000000000002, 0.0, -0.001], [-0.0030499999999999998, 0.0, -0.001], [-0.00304, 0.0, -0.001], [-0.00303, 0.0, -0.001], [-0.00302, 0.0, -0.001], [-0.0030099999999999997, 0.0, -0.001], [-0.003, 0.0, -0.001], [-0.00299, 0.0, -0.001], [-0.00298, 0.0, -0.001], [-0.0029699999999999996, 0.0, -0.001], [-0.00296, 0.0, -0.001], [-0.0029500000000000004, 0.0, -0.001], [-0.00294, 0.0, -0.001], [-0.00293, 0.0, -0.001], [-0.00292, 0.0, -0.001], [-0.0029100000000000003, 0.0, -0.001], [-0.0029, 0.0, -0.001], [-0.0028899999999999998, 0.0, -0.001], [-0.0028799999999999997, 0.0, -0.001], [-0.00287, 0.0, -0.001], [-0.0028599999999999997, 0.0, -0.001], [-0.0028499999999999997, 0.0, -0.001], [-0.0028399999999999996, 0.0, -0.001], [-0.00283, 0.0, -0.001], [-0.0028200000000000005, 0.0, -0.001], [-0.00281, 0.0, -0.001], [-0.0028, 0.0, -0.001], [-0.00279, 0.0, -0.001], [-0.0027800000000000004, 0.0, -0.001], [-0.00277, 0.0, -0.001], [-0.00276, 0.0, -0.001], [-0.00275, 0.0, -0.001], [-0.0027400000000000002, 0.0, -0.001], [-0.00273, 0.0, -0.001], [-0.0027199999999999998, 0.0, -0.001], [-0.00271, 0.0, -0.001], [-0.0027, 0.0, -0.001], [-0.00269, 0.0, -0.001], [-0.0026799999999999997, 0.0, -0.001], [-0.00267, 0.0, -0.001], [-0.00266, 0.0, -0.001], [-0.00265, 0.0, -0.001], [-0.0026399999999999996, 0.0, -0.001], [-0.00263, 0.0, -0.001], [-0.00262, 0.0, -0.001], [-0.00261, 0.0, -0.001], [-0.0025999999999999994, 0.0, -0.001], [-0.00259, 0.0, -0.001], [-0.0025800000000000003, 0.0, -0.001], [-0.0025700000000000002, 0.0, -0.001], [-0.00256, 0.0, -0.001], [-0.0025499999999999997, 0.0, -0.001], [-0.00254, 0.0, -0.001], [-0.00253, 0.0, -0.001], [-0.00252, 0.0, -0.001], [-0.0025099999999999996, 0.0, -0.001], [-0.0025, 0.0, -0.001], [-0.00249, 0.0, -0.001], [-0.00248, 0.0, -0.001], [-0.0024699999999999995, 0.0, -0.001], [-0.00246, 0.0, -0.001], [-0.0024500000000000004, 0.0, -0.001], [-0.00244, 0.0, -0.001], [-0.00243, 0.0, -0.001], [-0.00242, 0.0, -0.001], [-0.0024100000000000002, 0.0, -0.001], [-0.0024, 0.0, -0.001], [-0.0023899999999999998, 0.0, -0.001], [-0.0023799999999999997, 0.0, -0.001], [-0.00237, 0.0, -0.001], [-0.0023599999999999997, 0.0, -0.001], [-0.0023499999999999997, 0.0, -0.001], [-0.00234, 0.0, -0.001], [-0.00233, 0.0, -0.001], [-0.00232, 0.0, -0.001], [-0.0023099999999999996, 0.0, -0.001], [-0.0023, 0.0, -0.001], [-0.00229, 0.0, -0.001], [-0.0022800000000000003, 0.0, -0.001], [-0.00227, 0.0, -0.001], [-0.0022600000000000003, 0.0, -0.001], [-0.00225, 0.0, -0.001], [-0.0022400000000000002, 0.0, -0.001], [-0.0022299999999999998, 0.0, -0.001], [-0.00222, 0.0, -0.001], [-0.00221, 0.0, -0.001], [-0.0022, 0.0, -0.001], [-0.00219, 0.0, -0.001], [-0.00218, 0.0, -0.001], [-0.00217, 0.0, -0.001], [-0.00216, 0.0, -0.001], [-0.00215, 0.0, -0.001], [-0.00214, 0.0, -0.001], [-0.00213, 0.0, -0.001], [-0.00212, 0.0, -0.001], [-0.00211, 0.0, -0.001], [-0.0021000000000000003, 0.0, -0.001], [-0.00209, 0.0, -0.001], [-0.0020800000000000003, 0.0, -0.001], [-0.00207, 0.0, -0.001], [-0.00206, 0.0, -0.001], [-0.0020499999999999997, 0.0, -0.001], [-0.00204, 0.0, -0.001], [-0.0020299999999999997, 0.0, -0.001], [-0.00202, 0.0, -0.001], [-0.0020099999999999996, 0.0, -0.001], [-0.002, 0.0, -0.001], [-0.0019899999999999996, 0.0, -0.001], [-0.00198, 0.0, -0.001], [-0.00197, 0.0, -0.001], [-0.00196, 0.0, -0.001], [-0.0019500000000000001, 0.0, -0.001], [-0.0019399999999999999, 0.0, -0.001], [-0.00193, 0.0, -0.001], [-0.0019199999999999998, 0.0, -0.001], [-0.0019100000000000002, 0.0, -0.001], [-0.0019, 0.0, -0.001], [-0.0018900000000000002, 0.0, -0.001], [-0.00188, 0.0, -0.001], [-0.0018700000000000001, 0.0, -0.001], [-0.0018599999999999999, 0.0, -0.001], [-0.00185, 0.0, -0.001], [-0.0018399999999999998, 0.0, -0.001], [-0.00183, 0.0, -0.001], [-0.0018199999999999998, 0.0, -0.001], [-0.00181, 0.0, -0.001], [-0.0017999999999999997, 0.0, -0.001], [-0.0017900000000000001, 0.0, -0.001], [-0.00178, 0.0, -0.001], [-0.00177, 0.0, -0.001], [-0.0017599999999999998, 0.0, -0.001], [-0.00175, 0.0, -0.001], [-0.0017399999999999998, 0.0, -0.001], [-0.00173, 0.0, -0.001], [-0.0017199999999999997, 0.0, -0.001], [-0.00171, 0.0, -0.001], [-0.0016999999999999997, 0.0, -0.001], [-0.0016899999999999999, 0.0, -0.001], [-0.0016799999999999996, 0.0, -0.001], [-0.0016699999999999998, 0.0, -0.001], [-0.0016599999999999998, 0.0, -0.001], [-0.0016500000000000004, 0.0, -0.001], [-0.0016400000000000002, 0.0, -0.001], [-0.00163, 0.0, -0.001], [-0.0016200000000000001, 0.0, -0.001], [-0.0016100000000000003, 0.0, -0.001], [-0.0016, 0.0, -0.001], [-0.0015899999999999998, 0.0, -0.001], [-0.00158, 0.0, -0.001], [-0.0015700000000000002, 0.0, -0.001], [-0.00156, 0.0, -0.001], [-0.0015499999999999997, 0.0, -0.001], [-0.0015400000000000001, 0.0, -0.001], [-0.0015300000000000003, 0.0, -0.001], [-0.00152, 0.0, -0.001], [-0.0015099999999999998, 0.0, -0.001], [-0.0015, 0.0, -0.001], [-0.0014900000000000002, 0.0, -0.001], [-0.00148, 0.0, -0.001], [-0.0014699999999999997, 0.0, -0.001], [-0.00146, 0.0, -0.001], [-0.0014500000000000001, 0.0, -0.001], [-0.0014399999999999999, 0.0, -0.001], [-0.0014299999999999996, 0.0, -0.001], [-0.0014199999999999998, 0.0, -0.001], [-0.0014100000000000002, 0.0, -0.001], [-0.0014, 0.0, -0.001], [-0.0013899999999999997, 0.0, -0.001], [-0.00138, 0.0, -0.001], [-0.0013700000000000001, 0.0, -0.001], [-0.0013599999999999999, 0.0, -0.001], [-0.0013499999999999996, 0.0, -0.001], [-0.0013399999999999998, 0.0, -0.001], [-0.00133, 0.0, -0.001], [-0.0013199999999999998, 0.0, -0.001], [-0.0013099999999999995, 0.0, -0.001], [-0.0012999999999999997, 0.0, -0.001], [-0.0012900000000000001, 0.0, -0.001], [-0.0012799999999999999, 0.0, -0.001], [-0.0012699999999999996, 0.0, -0.001], [-0.0012599999999999998, 0.0, -0.001], [-0.00125, 0.0, -0.001], [-0.0012399999999999998, 0.0, -0.001], [-0.0012299999999999995, 0.0, -0.001], [-0.0012199999999999997, 0.0, -0.001], [-0.00121, 0.0, -0.001], [-0.0011999999999999997, 0.0, -0.001], [-0.0011899999999999994, 0.0, -0.001], [-0.00118, 0.0, -0.001], [-0.0011700000000000005, 0.0, -0.001], [-0.0011600000000000002, 0.0, -0.001], [-0.0011500000000000004, 0.0, -0.001], [-0.0011400000000000002, 0.0, -0.001], [-0.0011300000000000004, 0.0, -0.001], [-0.0011200000000000001, 0.0, -0.001], [-0.0011100000000000003, 0.0, -0.001], [-0.0011, 0.0, -0.001], [-0.0010900000000000003, 0.0, -0.001], [-0.00108, 0.0, -0.001], [-0.0010700000000000002, 0.0, -0.001], [-0.00106, 0.0, -0.001], [-0.0010500000000000004, 0.0, -0.001], [-0.0010400000000000001, 0.0, -0.001], [-0.0010300000000000003, 0.0, -0.001], [-0.00102, 0.0, -0.001], [-0.0010100000000000003, 0.0, -0.001], [-0.001, 0.0, -0.001], [-0.0009900000000000002, 0.0, -0.001], [-0.00098, 0.0, -0.001], [-0.0009700000000000002, 0.0, -0.001], [-0.0009599999999999999, 0.0, -0.001], [-0.0009500000000000002, 0.0, -0.001], [-0.00094, 0.0, -0.001], [-0.0009300000000000002, 0.0, -0.001], [-0.0009199999999999999, 0.0, -0.001], [-0.0009100000000000001, 0.0, -0.001], [-0.0008999999999999999, 0.0, -0.001], [-0.0008900000000000002, 0.0, -0.001], [-0.0008799999999999999, 0.0, -0.001], [-0.0008700000000000001, 0.0, -0.001], [-0.0008599999999999999, 0.0, -0.001], [-0.0008500000000000001, 0.0, -0.001], [-0.0008399999999999998, 0.0, -0.001], [-0.0008300000000000001, 0.0, -0.001], [-0.0008199999999999999, 0.0, -0.001], [-0.0008100000000000001, 0.0, -0.001], [-0.0007999999999999998, 0.0, -0.001], [-0.00079, 0.0, -0.001], [-0.0007799999999999998, 0.0, -0.001], [-0.0007700000000000001, 0.0, -0.001], [-0.0007599999999999998, 0.0, -0.001], [-0.00075, 0.0, -0.001], [-0.0007399999999999998, 0.0, -0.001], [-0.00073, 0.0, -0.001], [-0.0007199999999999997, 0.0, -0.001], [-0.0007099999999999999, 0.0, -0.001], [-0.0006999999999999998, 0.0, -0.001], [-0.00069, 0.0, -0.001], [-0.0006799999999999997, 0.0, -0.001], [-0.0006699999999999999, 0.0, -0.001], [-0.0006599999999999997, 0.0, -0.001], [-0.0006499999999999999, 0.0, -0.001], [-0.0006399999999999997, 0.0, -0.001], [-0.0006299999999999999, 0.0, -0.001], [-0.0006199999999999997, 0.0, -0.001], [-0.0006099999999999999, 0.0, -0.001], [-0.0005999999999999996, 0.0, -0.001], [-0.0005899999999999998, 0.0, -0.001], [-0.0005799999999999997, 0.0, -0.001], [-0.0005699999999999999, 0.0, -0.001], [-0.0005600000000000005, 0.0, -0.001], [-0.0005500000000000002, 0.0, -0.001], [-0.00054, 0.0, -0.001], [-0.0005300000000000002, 0.0, -0.001], [-0.0005200000000000005, 0.0, -0.001], [-0.0005100000000000003, 0.0, -0.001], [-0.0005, 0.0, -0.001], [-0.0004900000000000002, 0.0, -0.001], [-0.00048000000000000045, 0.0, -0.001], [-0.0004700000000000002, 0.0, -0.001], [-0.00045999999999999996, 0.0, -0.001], [-0.0004500000000000002, 0.0, -0.001], [-0.0004400000000000004, 0.0, -0.001], [-0.00043000000000000015, 0.0, -0.001], [-0.0004199999999999999, 0.0, -0.001], [-0.00041000000000000015, 0.0, -0.001], [-0.00040000000000000034, 0.0, -0.001], [-0.0003900000000000001, 0.0, -0.001], [-0.0003799999999999999, 0.0, -0.001], [-0.0003700000000000001, 0.0, -0.001], [-0.0003600000000000003, 0.0, -0.001], [-0.0003500000000000001, 0.0, -0.001], [-0.00033999999999999986, 0.0, -0.001], [-0.00033000000000000005, 0.0, -0.001], [-0.0003200000000000003, 0.0, -0.001], [-0.00031000000000000005, 0.0, -0.001], [-0.0002999999999999998, 0.0, -0.001], [-0.00029000000000000006, 0.0, -0.001], [-0.00028000000000000025, 0.0, -0.001], [-0.00027, 0.0, -0.001], [-0.00025999999999999976, 0.0, -0.001], [-0.00025, 0.0, -0.001], [-0.00024000000000000022, 0.0, -0.001], [-0.00022999999999999998, 0.0, -0.001], [-0.00021999999999999976, 0.0, -0.001], [-0.00020999999999999995, 0.0, -0.001], [-0.00020000000000000017, 0.0, -0.001], [-0.00018999999999999996, 0.0, -0.001], [-0.0001799999999999997, 0.0, -0.001], [-0.00016999999999999993, 0.0, -0.001], [-0.00016000000000000015, 0.0, -0.001], [-0.0001499999999999999, 0.0, -0.001], [-0.0001399999999999997, 0.0, -0.001], [-0.00012999999999999988, 0.0, -0.001], [-0.00012000000000000011, 0.0, -0.001], [-0.00010999999999999988, 0.0, -0.001], [-9.999999999999964e-05, 0.0, -0.001], [-8.999999999999986e-05, 0.0, -0.001], [-8.000000000000007e-05, 0.0, -0.001], [-6.999999999999984e-05, 0.0, -0.001], [-5.999999999999961e-05, 0.0, -0.001], [-4.999999999999982e-05, 0.0, -0.001], [-4.000000000000004e-05, 0.0, -0.001], [-2.9999999999999804e-05, 0.0, -0.001], [-1.9999999999999575e-05, 0.0, -0.001], [-9.999999999999787e-06, 0.0, -0.001], [0.0, 0.0, -0.001], [9.999999999999787e-06, 0.0, -0.001], [2.0000000000000462e-05, 0.0, -0.001], [3.0000000000000248e-05, 0.0, -0.001], [4.000000000000004e-05, 0.0, -0.001], [5.0000000000000714e-05, 0.0, -0.001], [6.0000000000000496e-05, 0.0, -0.001], [6.99999999999994e-05, 0.0, -0.001], [8.000000000000007e-05, 0.0, -0.001], [8.999999999999986e-05, 0.0, -0.001], [9.999999999999964e-05, 0.0, -0.001], [0.00010999999999999943, 0.0, -0.001], [0.00012000000000000011, 0.0, -0.001], [0.00012999999999999988, 0.0, -0.001], [0.0001399999999999997, 0.0, -0.001], [0.00014999999999999947, 0.0, -0.001], [0.00016000000000000015, 0.0, -0.001], [0.00016999999999999993, 0.0, -0.001], [0.0001799999999999997, 0.0, -0.001], [0.0001899999999999995, 0.0, -0.001], [0.00020000000000000017, 0.0, -0.001], [0.00020999999999999995, 0.0, -0.001], [0.00021999999999999976, 0.0, -0.001], [0.00022999999999999955, 0.0, -0.001], [0.00024000000000000022, 0.0, -0.001], [0.00025, 0.0, -0.001], [0.00025999999999999976, 0.0, -0.001], [0.00026999999999999957, 0.0, -0.001], [0.00028000000000000025, 0.0, -0.001], [0.00029000000000000006, 0.0, -0.001], [0.0002999999999999998, 0.0, -0.001], [0.0003099999999999996, 0.0, -0.001], [0.0003200000000000003, 0.0, -0.001], [0.00033000000000000005, 0.0, -0.001], [0.00033999999999999986, 0.0, -0.001], [0.00034999999999999967, 0.0, -0.001], [0.0003600000000000003, 0.0, -0.001], [0.0003700000000000001, 0.0, -0.001], [0.0003799999999999999, 0.0, -0.001], [0.00038999999999999967, 0.0, -0.001], [0.00040000000000000034, 0.0, -0.001], [0.00041000000000000015, 0.0, -0.001], [0.0004199999999999999, 0.0, -0.001], [0.0004299999999999997, 0.0, -0.001], [0.0004400000000000004, 0.0, -0.001], [0.0004500000000000002, 0.0, -0.001], [0.00045999999999999996, 0.0, -0.001], [0.00046999999999999977, 0.0, -0.001], [0.00048000000000000045, 0.0, -0.001], [0.0004900000000000002, 0.0, -0.001], [0.0005, 0.0, -0.001], [0.0005099999999999998, 0.0, -0.001], [0.0005200000000000005, 0.0, -0.001], [0.0005300000000000002, 0.0, -0.001], [0.00054, 0.0, -0.001], [0.0005499999999999998, 0.0, -0.001], [0.0005600000000000005, 0.0, -0.001], [0.0005700000000000003, 0.0, -0.001], [0.0005800000000000001, 0.0, -0.001], [0.0005899999999999998, 0.0, -0.001], [0.0006000000000000005, 0.0, -0.001], [0.0006100000000000003, 0.0, -0.001], [0.0006200000000000001, 0.0, -0.001], [0.0006299999999999999, 0.0, -0.001], [0.0006400000000000006, 0.0, -0.001], [0.0006500000000000004, 0.0, -0.001], [0.0006600000000000001, 0.0, -0.001], [0.0006699999999999999, 0.0, -0.001], [0.0006800000000000006, 0.0, -0.001], [0.0006899999999999995, 0.0, -0.001], [0.0006999999999999993, 0.0, -0.001], [0.0007099999999999999, 0.0, -0.001], [0.0007199999999999997, 0.0, -0.001], [0.0007299999999999995, 0.0, -0.001], [0.0007400000000000002, 0.0, -0.001], [0.00075, 0.0, -0.001], [0.0007599999999999998, 0.0, -0.001], [0.0007699999999999995, 0.0, -0.001], [0.0007799999999999993, 0.0, -0.001], [0.00079, 0.0, -0.001], [0.0007999999999999998, 0.0, -0.001], [0.0008099999999999996, 0.0, -0.001], [0.0008200000000000003, 0.0, -0.001], [0.0008300000000000001, 0.0, -0.001], [0.0008399999999999998, 0.0, -0.001], [0.0008499999999999996, 0.0, -0.001], [0.0008599999999999994, 0.0, -0.001], [0.0008700000000000001, 0.0, -0.001], [0.0008799999999999999, 0.0, -0.001], [0.0008899999999999997, 0.0, -0.001], [0.0009000000000000004, 0.0, -0.001], [0.0009100000000000001, 0.0, -0.001], [0.0009199999999999999, 0.0, -0.001], [0.0009299999999999997, 0.0, -0.001], [0.0009399999999999995, 0.0, -0.001], [0.0009500000000000002, 0.0, -0.001], [0.0009599999999999999, 0.0, -0.001], [0.0009699999999999997, 0.0, -0.001], [0.0009800000000000004, 0.0, -0.001], [0.0009900000000000002, 0.0, -0.001], [0.001, 0.0, -0.001], [0.0010099999999999998, 0.0, -0.001], [0.0010199999999999996, 0.0, -0.001], [0.0010300000000000003, 0.0, -0.001], [0.0010400000000000001, 0.0, -0.001], [0.0010499999999999997, 0.0, -0.001], [0.0010600000000000004, 0.0, -0.001], [0.0010700000000000002, 0.0, -0.001], [0.00108, 0.0, -0.001], [0.0010899999999999998, 0.0, -0.001], [0.0010999999999999996, 0.0, -0.001], [0.0011100000000000003, 0.0, -0.001], [0.0011200000000000001, 0.0, -0.001], [0.00113, 0.0, -0.001], [0.0011400000000000006, 0.0, -0.001], [0.0011500000000000004, 0.0, -0.001], [0.0011600000000000002, 0.0, -0.001], [0.00117, 0.0, -0.001], [0.0011799999999999996, 0.0, -0.001], [0.0011900000000000003, 0.0, -0.001], [0.0012000000000000001, 0.0, -0.001], [0.00121, 0.0, -0.001], [0.0012200000000000006, 0.0, -0.001], [0.0012300000000000004, 0.0, -0.001], [0.0012400000000000002, 0.0, -0.001], [0.00125, 0.0, -0.001], [0.0012599999999999998, 0.0, -0.001], [0.0012700000000000005, 0.0, -0.001], [0.0012800000000000003, 0.0, -0.001], [0.0012900000000000001, 0.0, -0.001], [0.0013000000000000008, 0.0, -0.001], [0.0013100000000000004, 0.0, -0.001], [0.0013200000000000002, 0.0, -0.001], [0.00133, 0.0, -0.001], [0.0013399999999999998, 0.0, -0.001], [0.0013500000000000005, 0.0, -0.001], [0.0013600000000000003, 0.0, -0.001], [0.0013700000000000001, 0.0, -0.001], [0.0013800000000000008, 0.0, -0.001], [0.0013900000000000006, 0.0, -0.001], [0.0014000000000000004, 0.0, -0.001], [0.0014100000000000002, 0.0, -0.001], [0.0014199999999999998, 0.0, -0.001], [0.0014300000000000005, 0.0, -0.001], [0.0014400000000000003, 0.0, -0.001], [0.0014500000000000001, 0.0, -0.001], [0.0014600000000000008, 0.0, -0.001], [0.0014700000000000006, 0.0, -0.001], [0.0014800000000000004, 0.0, -0.001], [0.0014900000000000002, 0.0, -0.001], [0.0015, 0.0, -0.001], [0.0015100000000000007, 0.0, -0.001], [0.0015200000000000005, 0.0, -0.001], [0.0015300000000000003, 0.0, -0.001], [0.001540000000000001, 0.0, -0.001], [0.0015500000000000008, 0.0, -0.001], [0.0015600000000000004, 0.0, -0.001], [0.0015700000000000002, 0.0, -0.001], [0.00158, 0.0, -0.001], [0.0015900000000000007, 0.0, -0.001], [0.0016000000000000005, 0.0, -0.001], [0.0016100000000000003, 0.0, -0.001], [0.001620000000000001, 0.0, -0.001], [0.001629999999999999, 0.0, -0.001], [0.0016399999999999997, 0.0, -0.001], [0.0016499999999999996, 0.0, -0.001], [0.0016599999999999991, 0.0, -0.001], [0.0016699999999999998, 0.0, -0.001], [0.0016799999999999996, 0.0, -0.001], [0.0016899999999999994, 0.0, -0.001], [0.0016999999999999993, 0.0, -0.001], [0.001709999999999999, 0.0, -0.001], [0.0017199999999999997, 0.0, -0.001], [0.0017299999999999996, 0.0, -0.001], [0.0017399999999999994, 0.0, -0.001], [0.00175, 0.0, -0.001], [0.0017599999999999998, 0.0, -0.001], [0.0017699999999999997, 0.0, -0.001], [0.0017799999999999995, 0.0, -0.001], [0.001789999999999999, 0.0, -0.001], [0.0017999999999999997, 0.0, -0.001], [0.0018099999999999995, 0.0, -0.001], [0.0018199999999999994, 0.0, -0.001], [0.00183, 0.0, -0.001], [0.0018399999999999998, 0.0, -0.001], [0.0018499999999999996, 0.0, -0.001], [0.0018599999999999995, 0.0, -0.001], [0.0018699999999999993, 0.0, -0.001], [0.00188, 0.0, -0.001], [0.0018899999999999998, 0.0, -0.001], [0.0018999999999999996, 0.0, -0.001], [0.0019100000000000002, 0.0, -0.001], [0.0019199999999999998, 0.0, -0.001], [0.0019299999999999996, 0.0, -0.001], [0.0019399999999999995, 0.0, -0.001], [0.0019499999999999993, 0.0, -0.001], [0.00196, 0.0, -0.001], [0.00197, 0.0, -0.001], [0.0019799999999999996, 0.0, -0.001], [0.00199, 0.0, -0.001], [0.002, 0.0, -0.001], [0.0020099999999999996, 0.0, -0.001], [0.0020199999999999997, 0.0, -0.001], [0.0020299999999999993, 0.0, -0.001], [0.00204, 0.0, -0.001], [0.0020499999999999997, 0.0, -0.001], [0.0020599999999999998, 0.0, -0.001], [0.0020700000000000002, 0.0, -0.001], [0.0020800000000000003, 0.0, -0.001], [0.00209, 0.0, -0.001], [0.0020999999999999994, 0.0, -0.001], [0.0021099999999999995, 0.0, -0.001], [0.00212, 0.0, -0.001], [0.00213, 0.0, -0.001], [0.0021399999999999995, 0.0, -0.001], [0.0021500000000000004, 0.0, -0.001], [0.00216, 0.0, -0.001], [0.00217, 0.0, -0.001], [0.0021799999999999996, 0.0, -0.001], [0.0021899999999999997, 0.0, -0.001], [0.0022, 0.0, -0.001], [0.00221, 0.0, -0.001], [0.0022199999999999998, 0.0, -0.001], [0.00223, 0.0, -0.001], [0.0022400000000000002, 0.0, -0.001], [0.00225, 0.0, -0.001], [0.00226, 0.0, -0.001], [0.0022699999999999994, 0.0, -0.001], [0.0022800000000000003, 0.0, -0.001], [0.00229, 0.0, -0.001], [0.0023, 0.0, -0.001], [0.0023100000000000004, 0.0, -0.001], [0.0023200000000000004, 0.0, -0.001], [0.00233, 0.0, -0.001], [0.00234, 0.0, -0.001], [0.0023499999999999997, 0.0, -0.001], [0.00236, 0.0, -0.001], [0.00237, 0.0, -0.001], [0.0023799999999999997, 0.0, -0.001], [0.0023900000000000006, 0.0, -0.001], [0.0024000000000000002, 0.0, -0.001], [0.0024100000000000002, 0.0, -0.001], [0.00242, 0.0, -0.001], [0.00243, 0.0, -0.001], [0.0024400000000000003, 0.0, -0.001], [0.0024500000000000004, 0.0, -0.001], [0.00246, 0.0, -0.001], [0.002470000000000001, 0.0, -0.001], [0.0024800000000000004, 0.0, -0.001], [0.00249, 0.0, -0.001], [0.0025, 0.0, -0.001], [0.0025099999999999996, 0.0, -0.001], [0.0025200000000000005, 0.0, -0.001], [0.00253, 0.0, -0.001], [0.00254, 0.0, -0.001], [0.0025500000000000006, 0.0, -0.001], [0.0025600000000000006, 0.0, -0.001], [0.0025700000000000002, 0.0, -0.001], [0.0025800000000000003, 0.0, -0.001], [0.00259, 0.0, -0.001], [0.0026000000000000007, 0.0, -0.001], [0.0026100000000000003, 0.0, -0.001], [0.00262, 0.0, -0.001], [0.002630000000000001, 0.0, -0.001], [0.0026400000000000004, 0.0, -0.001], [0.0026500000000000004, 0.0, -0.001], [0.00266, 0.0, -0.001], [0.00267, 0.0, -0.001], [0.0026800000000000005, 0.0, -0.001], [0.0026900000000000006, 0.0, -0.001], [0.0027, 0.0, -0.001], [0.002710000000000001, 0.0, -0.001], [0.0027200000000000006, 0.0, -0.001], [0.0027300000000000002, 0.0, -0.001], [0.0027400000000000002, 0.0, -0.001], [0.00275, 0.0, -0.001], [0.0027600000000000007, 0.0, -0.001], [0.0027700000000000003, 0.0, -0.001], [0.0027800000000000004, 0.0, -0.001], [0.002790000000000001, 0.0, -0.001], [0.002800000000000001, 0.0, -0.001], [0.0028100000000000004, 0.0, -0.001], [0.0028200000000000005, 0.0, -0.001], [0.00283, 0.0, -0.001], [0.002840000000000001, 0.0, -0.001], [0.0028500000000000005, 0.0, -0.001], [0.00286, 0.0, -0.001], [0.002870000000000001, 0.0, -0.001], [0.002879999999999999, 0.0, -0.001], [0.0028899999999999998, 0.0, -0.001], [0.0028999999999999994, 0.0, -0.001], [0.0029099999999999994, 0.0, -0.001], [0.00292, 0.0, -0.001], [0.00293, 0.0, -0.001], [0.0029399999999999995, 0.0, -0.001], [0.0029499999999999995, 0.0, -0.001], [0.002959999999999999, 0.0, -0.001], [0.0029699999999999996, 0.0, -0.001], [0.0029799999999999996, 0.0, -0.001], [0.002989999999999999, 0.0, -0.001], [0.003, 0.0, -0.001], [0.0030099999999999997, 0.0, -0.001], [0.0030199999999999997, 0.0, -0.001], [0.0030299999999999993, 0.0, -0.001], [0.0030399999999999993, 0.0, -0.001], [0.0030499999999999998, 0.0, -0.001], [0.00306, 0.0, -0.001], [0.0030699999999999994, 0.0, -0.001], [0.0030800000000000003, 0.0, -0.001], [0.00309, 0.0, -0.001], [0.0030999999999999995, 0.0, -0.001], [0.0031099999999999995, 0.0, -0.001], [0.003119999999999999, 0.0, -0.001], [0.00313, 0.0, -0.001], [0.0031399999999999996, 0.0, -0.001], [0.0031499999999999996, 0.0, -0.001], [0.00316, 0.0, -0.001], [0.00317, 0.0, -0.001], [0.0031799999999999997, 0.0, -0.001], [0.0031899999999999997, 0.0, -0.001], [0.0031999999999999993, 0.0, -0.001], [0.00321, 0.0, -0.001], [0.0032199999999999998, 0.0, -0.001], [0.0032299999999999994, 0.0, -0.001], [0.0032400000000000003, 0.0, -0.001], [0.00325, 0.0, -0.001], [0.00326, 0.0, -0.001], [0.0032699999999999995, 0.0, -0.001], [0.0032799999999999995, 0.0, -0.001], [0.00329, 0.0, -0.001], [0.0033, 0.0, -0.001], [0.0033099999999999996, 0.0, -0.001], [0.0033200000000000005, 0.0, -0.001], [0.00333, 0.0, -0.001], [0.0033399999999999997, 0.0, -0.001], [0.0033499999999999997, 0.0, -0.001], [0.0033599999999999993, 0.0, -0.001], [0.00337, 0.0, -0.001], [0.0033799999999999998, 0.0, -0.001], [0.00339, 0.0, -0.001], [0.0034000000000000002, 0.0, -0.001], [0.0034100000000000003, 0.0, -0.001], [0.00342, 0.0, -0.001], [0.00343, 0.0, -0.001], [0.0034399999999999995, 0.0, -0.001], [0.0034500000000000004, 0.0, -0.001], [0.00346, 0.0, -0.001], [0.0034699999999999996, 0.0, -0.001], [0.0034800000000000005, 0.0, -0.001], [0.00349, 0.0, -0.001], [0.0035, 0.0, -0.001], [0.0035099999999999997, 0.0, -0.001], [0.0035199999999999997, 0.0, -0.001], [0.00353, 0.0, -0.001], [0.00354, 0.0, -0.001], [0.0035499999999999998, 0.0, -0.001], [0.0035600000000000007, 0.0, -0.001], [0.0035700000000000003, 0.0, -0.001], [0.0035800000000000003, 0.0, -0.001], [0.00359, 0.0, -0.001], [0.0035999999999999995, 0.0, -0.001], [0.0036100000000000004, 0.0, -0.001], [0.00362, 0.0, -0.001], [0.00363, 0.0, -0.001], [0.0036400000000000004, 0.0, -0.001], [0.0036500000000000005, 0.0, -0.001], [0.00366, 0.0, -0.001], [0.00367, 0.0, -0.001], [0.0036799999999999997, 0.0, -0.001], [0.0036900000000000006, 0.0, -0.001], [0.0037, 0.0, -0.001], [0.0037099999999999998, 0.0, -0.001], [0.0037200000000000006, 0.0, -0.001], [0.0037300000000000002, 0.0, -0.001], [0.0037400000000000003, 0.0, -0.001], [0.00375, 0.0, -0.001], [0.00376, 0.0, -0.001], [0.0037700000000000003, 0.0, -0.001], [0.0037800000000000004, 0.0, -0.001], [0.00379, 0.0, -0.001], [0.003800000000000001, 0.0, -0.001], [0.0038100000000000005, 0.0, -0.001], [0.0038200000000000005, 0.0, -0.001], [0.00383, 0.0, -0.001], [0.0038399999999999997, 0.0, -0.001], [0.0038500000000000006, 0.0, -0.001], [0.00386, 0.0, -0.001], [0.00387, 0.0, -0.001], [0.0038800000000000006, 0.0, -0.001], [0.0038900000000000007, 0.0, -0.001], [0.0039000000000000003, 0.0, -0.001], [0.00391, 0.0, -0.001], [0.00392, 0.0, -0.001], [0.00393, 0.0, -0.001], [0.003940000000000001, 0.0, -0.001], [0.00395, 0.0, -0.001], [0.003960000000000001, 0.0, -0.001], [0.0039700000000000004, 0.0, -0.001], [0.00398, 0.0, -0.001], [0.0039900000000000005, 0.0, -0.001], [0.004, 0.0, -0.001], [0.00401, 0.0, -0.001], [0.004019999999999999, 0.0, -0.001], [0.0040300000000000015, 0.0, -0.001], [0.004040000000000001, 0.0, -0.001], [0.004050000000000001, 0.0, -0.001], [0.00406, 0.0, -0.001], [0.004070000000000001, 0.0, -0.001], [0.00408, 0.0, -0.001], [0.00409, 0.0, -0.001], [0.004100000000000001, 0.0, -0.001], [0.004110000000000001, 0.0, -0.001], [0.004120000000000001, 0.0, -0.001], [0.004129999999999999, 0.0, -0.001], [0.004139999999999999, 0.0, -0.001], [0.004149999999999998, 0.0, -0.001], [0.0041600000000000005, 0.0, -0.001], [0.00417, 0.0, -0.001], [0.00418, 0.0, -0.001], [0.004189999999999999, 0.0, -0.001], [0.004199999999999999, 0.0, -0.001], [0.004209999999999999, 0.0, -0.001], [0.004219999999999999, 0.0, -0.001], [0.00423, 0.0, -0.001], [0.00424, 0.0, -0.001], [0.00425, 0.0, -0.001], [0.00426, 0.0, -0.001], [0.0042699999999999995, 0.0, -0.001], [0.004279999999999999, 0.0, -0.001], [0.0042899999999999995, 0.0, -0.001], [0.004299999999999999, 0.0, -0.001], [0.004309999999999999, 0.0, -0.001], [0.00432, 0.0, -0.001], [0.00433, 0.0, -0.001], [0.00434, 0.0, -0.001], [0.00435, 0.0, -0.001], [0.004359999999999999, 0.0, -0.001], [0.004369999999999999, 0.0, -0.001], [0.004379999999999999, 0.0, -0.001], [0.004390000000000001, 0.0, -0.001], [0.0044, 0.0, -0.001], [0.00441, 0.0, -0.001], [0.00442, 0.0, -0.001], [0.00443, 0.0, -0.001], [0.0044399999999999995, 0.0, -0.001], [0.004449999999999999, 0.0, -0.001], [0.004459999999999999, 0.0, -0.001], [0.004469999999999999, 0.0, -0.001], [0.0044800000000000005, 0.0, -0.001], [0.00449, 0.0, -0.001], [0.0045, 0.0, -0.001], [0.00451, 0.0, -0.001], [0.00452, 0.0, -0.001], [0.004529999999999999, 0.0, -0.001], [0.004539999999999999, 0.0, -0.001], [0.004550000000000001, 0.0, -0.001], [0.004560000000000001, 0.0, -0.001], [0.00457, 0.0, -0.001], [0.00458, 0.0, -0.001], [0.0045899999999999995, 0.0, -0.001], [0.0046, 0.0, -0.001], [0.0046099999999999995, 0.0, -0.001], [0.004619999999999999, 0.0, -0.001], [0.004629999999999999, 0.0, -0.001], [0.004640000000000001, 0.0, -0.001], [0.0046500000000000005, 0.0, -0.001], [0.00466, 0.0, -0.001], [0.00467, 0.0, -0.001], [0.00468, 0.0, -0.001], [0.00469, 0.0, -0.001], [0.004699999999999999, 0.0, -0.001], [0.004710000000000001, 0.0, -0.001], [0.00472, 0.0, -0.001], [0.004730000000000001, 0.0, -0.001], [0.00474, 0.0, -0.001], [0.00475, 0.0, -0.001], [0.0047599999999999995, 0.0, -0.001], [0.00477, 0.0, -0.001], [0.0047799999999999995, 0.0, -0.001], [0.004789999999999999, 0.0, -0.001], [0.0048000000000000004, 0.0, -0.001], [0.004810000000000001, 0.0, -0.001], [0.0048200000000000005, 0.0, -0.001], [0.00483, 0.0, -0.001], [0.00484, 0.0, -0.001], [0.004849999999999999, 0.0, -0.001], [0.00486, 0.0, -0.001], [0.004870000000000001, 0.0, -0.001], [0.004880000000000001, 0.0, -0.001], [0.00489, 0.0, -0.001], [0.004900000000000001, 0.0, -0.001], [0.00491, 0.0, -0.001], [0.00492, 0.0, -0.001], [0.0049299999999999995, 0.0, -0.001], [0.004939999999999999, 0.0, -0.001], [0.0049499999999999995, 0.0, -0.001], [0.004960000000000001, 0.0, -0.001], [0.0049700000000000005, 0.0, -0.001], [0.00498, 0.0, -0.001], [0.0049900000000000005, 0.0, -0.001], [0.005, 0.0, -0.001], [0.00501, 0.0, -0.001], [0.005019999999999999, 0.0, -0.001], [0.0050300000000000015, 0.0, -0.001], [0.005040000000000001, 0.0, -0.001], [0.005050000000000001, 0.0, -0.001], [0.00506, 0.0, -0.001], [0.00507, 0.0, -0.001], [0.00508, 0.0, -0.001], [0.00509, 0.0, -0.001], [0.0050999999999999995, 0.0, -0.001], [0.005109999999999999, 0.0, -0.001], [0.005120000000000001, 0.0, -0.001], [0.005130000000000001, 0.0, -0.001], [0.0051400000000000005, 0.0, -0.001], [0.00515, 0.0, -0.001], [0.0051600000000000005, 0.0, -0.001], [0.00517, 0.0, -0.001], [0.00518, 0.0, -0.001], [0.005190000000000001, 0.0, -0.001], [0.0052000000000000015, 0.0, -0.001], [0.005210000000000001, 0.0, -0.001], [0.005220000000000001, 0.0, -0.001], [0.00523, 0.0, -0.001], [0.00524, 0.0, -0.001], [0.00525, 0.0, -0.001], [0.00526, 0.0, -0.001], [0.0052699999999999995, 0.0, -0.001], [0.005280000000000001, 0.0, -0.001], [0.005290000000000001, 0.0, -0.001], [0.005300000000000001, 0.0, -0.001], [0.0053100000000000005, 0.0, -0.001], [0.00532, 0.0, -0.001], [0.00533, 0.0, -0.001], [0.00534, 0.0, -0.001], [0.0053500000000000015, 0.0, -0.001], [0.005360000000000001, 0.0, -0.001], [0.005370000000000001, 0.0, -0.001], [0.005379999999999999, 0.0, -0.001], [0.005389999999999999, 0.0, -0.001], [0.0053999999999999986, 0.0, -0.001], [0.00541, 0.0, -0.001], [0.00542, 0.0, -0.001], [0.00543, 0.0, -0.001], [0.0054399999999999995, 0.0, -0.001], [0.005449999999999999, 0.0, -0.001], [0.005459999999999999, 0.0, -0.001], [0.005469999999999999, 0.0, -0.001], [0.0054800000000000005, 0.0, -0.001], [0.00549, 0.0, -0.001], [0.0055, 0.0, -0.001], [0.00551, 0.0, -0.001], [0.00552, 0.0, -0.001], [0.005529999999999999, 0.0, -0.001], [0.005539999999999999, 0.0, -0.001], [0.0055499999999999985, 0.0, -0.001], [0.005559999999999999, 0.0, -0.001], [0.00557, 0.0, -0.001], [0.00558, 0.0, -0.001], [0.0055899999999999995, 0.0, -0.001], [0.0056, 0.0, -0.001], [0.0056099999999999995, 0.0, -0.001], [0.005619999999999999, 0.0, -0.001], [0.005629999999999999, 0.0, -0.001], [0.005640000000000001, 0.0, -0.001], [0.0056500000000000005, 0.0, -0.001], [0.00566, 0.0, -0.001], [0.00567, 0.0, -0.001], [0.005679999999999999, 0.0, -0.001], [0.00569, 0.0, -0.001], [0.005699999999999999, 0.0, -0.001], [0.005709999999999999, 0.0, -0.001], [0.0057199999999999985, 0.0, -0.001], [0.005730000000000001, 0.0, -0.001], [0.00574, 0.0, -0.001], [0.00575, 0.0, -0.001], [0.0057599999999999995, 0.0, -0.001], [0.00577, 0.0, -0.001], [0.0057799999999999995, 0.0, -0.001], [0.005789999999999999, 0.0, -0.001], [0.0058000000000000005, 0.0, -0.001], [0.005810000000000001, 0.0, -0.001], [0.0058200000000000005, 0.0, -0.001], [0.00583, 0.0, -0.001], [0.00584, 0.0, -0.001], [0.005849999999999999, 0.0, -0.001], [0.00586, 0.0, -0.001], [0.005869999999999999, 0.0, -0.001], [0.005879999999999999, 0.0, -0.001], [0.00589, 0.0, -0.001], [0.005900000000000001, 0.0, -0.001], [0.00591, 0.0, -0.001], [0.00592, 0.0, -0.001], [0.0059299999999999995, 0.0, -0.001], [0.005939999999999999, 0.0, -0.001], [0.0059499999999999996, 0.0, -0.001], [0.005960000000000001, 0.0, -0.001], [0.0059700000000000005, 0.0, -0.001], [0.00598, 0.0, -0.001], [0.0059900000000000005, 0.0, -0.001], [0.006, 0.0, -0.001]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "style": {"arrows": {"x": {"color": null, "show": true}, "y": {"color": null, "show": true}, "z": {"color": null, "show": true}}, "color": null, "description": {"show": null, "text": null}, "label": "Sensor, z=-1mm", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}, "pixel": {"color": null, "size": 1, "symbol": null}, "size": null}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}, {"id": 2678042525760, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.003], [-0.0039900000000000005, 0.0, -0.003], [-0.00398, 0.0, -0.003], [-0.0039700000000000004, 0.0, -0.003], [-0.00396, 0.0, -0.003], [-0.00395, 0.0, -0.003], [-0.00394, 0.0, -0.003], [-0.00393, 0.0, -0.003], [-0.00392, 0.0, -0.003], [-0.00391, 0.0, -0.003], [-0.0039, 0.0, -0.003], [-0.0038900000000000002, 0.0, -0.003], [-0.0038799999999999998, 0.0, -0.003], [-0.00387, 0.0, -0.003], [-0.0038599999999999997, 0.0, -0.003], [-0.00385, 0.0, -0.003], [-0.0038399999999999997, 0.0, -0.003], [-0.00383, 0.0, -0.003], [-0.00382, 0.0, -0.003], [-0.00381, 0.0, -0.003], [-0.0038, 0.0, -0.003], [-0.00379, 0.0, -0.003], [-0.0037800000000000004, 0.0, -0.003], [-0.00377, 0.0, -0.003], [-0.00376, 0.0, -0.003], [-0.00375, 0.0, -0.003], [-0.0037400000000000003, 0.0, -0.003], [-0.00373, 0.0, -0.003], [-0.0037199999999999998, 0.0, -0.003], [-0.0037099999999999998, 0.0, -0.003], [-0.0037, 0.0, -0.003], [-0.00369, 0.0, -0.003], [-0.00368, 0.0, -0.003], [-0.00367, 0.0, -0.003], [-0.00366, 0.0, -0.003], [-0.00365, 0.0, -0.003], [-0.00364, 0.0, -0.003], [-0.00363, 0.0, -0.003], [-0.00362, 0.0, -0.003], [-0.00361, 0.0, -0.003], [-0.0036, 0.0, -0.003], [-0.00359, 0.0, -0.003], [-0.0035800000000000003, 0.0, -0.003], [-0.0035700000000000003, 0.0, -0.003], [-0.0035600000000000002, 0.0, -0.003], [-0.0035499999999999998, 0.0, -0.003], [-0.00354, 0.0, -0.003], [-0.00353, 0.0, -0.003], [-0.00352, 0.0, -0.003], [-0.0035099999999999997, 0.0, -0.003], [-0.0035, 0.0, -0.003], [-0.00349, 0.0, -0.003], [-0.00348, 0.0, -0.003], [-0.0034699999999999996, 0.0, -0.003], [-0.00346, 0.0, -0.003], [-0.0034500000000000004, 0.0, -0.003], [-0.00344, 0.0, -0.003], [-0.00343, 0.0, -0.003], [-0.00342, 0.0, -0.003], [-0.0034100000000000003, 0.0, -0.003], [-0.0034, 0.0, -0.003], [-0.0033900000000000002, 0.0, -0.003], [-0.0033799999999999998, 0.0, -0.003], [-0.00337, 0.0, -0.003], [-0.0033599999999999997, 0.0, -0.003], [-0.00335, 0.0, -0.003], [-0.0033399999999999997, 0.0, -0.003], [-0.00333, 0.0, -0.003], [-0.00332, 0.0, -0.003], [-0.00331, 0.0, -0.003], [-0.0033, 0.0, -0.003], [-0.00329, 0.0, -0.003], [-0.0032800000000000004, 0.0, -0.003], [-0.00327, 0.0, -0.003], [-0.00326, 0.0, -0.003], [-0.00325, 0.0, -0.003], [-0.0032400000000000003, 0.0, -0.003], [-0.00323, 0.0, -0.003], [-0.0032199999999999998, 0.0, -0.003], [-0.00321, 0.0, -0.003], [-0.0032, 0.0, -0.003], [-0.00319, 0.0, -0.003], [-0.0031799999999999997, 0.0, -0.003], [-0.00317, 0.0, -0.003], [-0.00316, 0.0, -0.003], [-0.00315, 0.0, -0.003], [-0.00314, 0.0, -0.003], [-0.00313, 0.0, -0.003], [-0.00312, 0.0, -0.003], [-0.0031100000000000004, 0.0, -0.003], [-0.0031, 0.0, -0.003], [-0.00309, 0.0, -0.003], [-0.0030800000000000003, 0.0, -0.003], [-0.0030700000000000002, 0.0, -0.003], [-0.0030600000000000002, 0.0, -0.003], [-0.0030499999999999998, 0.0, -0.003], [-0.00304, 0.0, -0.003], [-0.00303, 0.0, -0.003], [-0.00302, 0.0, -0.003], [-0.0030099999999999997, 0.0, -0.003], [-0.003, 0.0, -0.003], [-0.00299, 0.0, -0.003], [-0.00298, 0.0, -0.003], [-0.0029699999999999996, 0.0, -0.003], [-0.00296, 0.0, -0.003], [-0.0029500000000000004, 0.0, -0.003], [-0.00294, 0.0, -0.003], [-0.00293, 0.0, -0.003], [-0.00292, 0.0, -0.003], [-0.0029100000000000003, 0.0, -0.003], [-0.0029, 0.0, -0.003], [-0.0028899999999999998, 0.0, -0.003], [-0.0028799999999999997, 0.0, -0.003], [-0.00287, 0.0, -0.003], [-0.0028599999999999997, 0.0, -0.003], [-0.0028499999999999997, 0.0, -0.003], [-0.0028399999999999996, 0.0, -0.003], [-0.00283, 0.0, -0.003], [-0.0028200000000000005, 0.0, -0.003], [-0.00281, 0.0, -0.003], [-0.0028, 0.0, -0.003], [-0.00279, 0.0, -0.003], [-0.0027800000000000004, 0.0, -0.003], [-0.00277, 0.0, -0.003], [-0.00276, 0.0, -0.003], [-0.00275, 0.0, -0.003], [-0.0027400000000000002, 0.0, -0.003], [-0.00273, 0.0, -0.003], [-0.0027199999999999998, 0.0, -0.003], [-0.00271, 0.0, -0.003], [-0.0027, 0.0, -0.003], [-0.00269, 0.0, -0.003], [-0.0026799999999999997, 0.0, -0.003], [-0.00267, 0.0, -0.003], [-0.00266, 0.0, -0.003], [-0.00265, 0.0, -0.003], [-0.0026399999999999996, 0.0, -0.003], [-0.00263, 0.0, -0.003], [-0.00262, 0.0, -0.003], [-0.00261, 0.0, -0.003], [-0.0025999999999999994, 0.0, -0.003], [-0.00259, 0.0, -0.003], [-0.0025800000000000003, 0.0, -0.003], [-0.0025700000000000002, 0.0, -0.003], [-0.00256, 0.0, -0.003], [-0.0025499999999999997, 0.0, -0.003], [-0.00254, 0.0, -0.003], [-0.00253, 0.0, -0.003], [-0.00252, 0.0, -0.003], [-0.0025099999999999996, 0.0, -0.003], [-0.0025, 0.0, -0.003], [-0.00249, 0.0, -0.003], [-0.00248, 0.0, -0.003], [-0.0024699999999999995, 0.0, -0.003], [-0.00246, 0.0, -0.003], [-0.0024500000000000004, 0.0, -0.003], [-0.00244, 0.0, -0.003], [-0.00243, 0.0, -0.003], [-0.00242, 0.0, -0.003], [-0.0024100000000000002, 0.0, -0.003], [-0.0024, 0.0, -0.003], [-0.0023899999999999998, 0.0, -0.003], [-0.0023799999999999997, 0.0, -0.003], [-0.00237, 0.0, -0.003], [-0.0023599999999999997, 0.0, -0.003], [-0.0023499999999999997, 0.0, -0.003], [-0.00234, 0.0, -0.003], [-0.00233, 0.0, -0.003], [-0.00232, 0.0, -0.003], [-0.0023099999999999996, 0.0, -0.003], [-0.0023, 0.0, -0.003], [-0.00229, 0.0, -0.003], [-0.0022800000000000003, 0.0, -0.003], [-0.00227, 0.0, -0.003], [-0.0022600000000000003, 0.0, -0.003], [-0.00225, 0.0, -0.003], [-0.0022400000000000002, 0.0, -0.003], [-0.0022299999999999998, 0.0, -0.003], [-0.00222, 0.0, -0.003], [-0.00221, 0.0, -0.003], [-0.0022, 0.0, -0.003], [-0.00219, 0.0, -0.003], [-0.00218, 0.0, -0.003], [-0.00217, 0.0, -0.003], [-0.00216, 0.0, -0.003], [-0.00215, 0.0, -0.003], [-0.00214, 0.0, -0.003], [-0.00213, 0.0, -0.003], [-0.00212, 0.0, -0.003], [-0.00211, 0.0, -0.003], [-0.0021000000000000003, 0.0, -0.003], [-0.00209, 0.0, -0.003], [-0.0020800000000000003, 0.0, -0.003], [-0.00207, 0.0, -0.003], [-0.00206, 0.0, -0.003], [-0.0020499999999999997, 0.0, -0.003], [-0.00204, 0.0, -0.003], [-0.0020299999999999997, 0.0, -0.003], [-0.00202, 0.0, -0.003], [-0.0020099999999999996, 0.0, -0.003], [-0.002, 0.0, -0.003], [-0.0019899999999999996, 0.0, -0.003], [-0.00198, 0.0, -0.003], [-0.00197, 0.0, -0.003], [-0.00196, 0.0, -0.003], [-0.0019500000000000001, 0.0, -0.003], [-0.0019399999999999999, 0.0, -0.003], [-0.00193, 0.0, -0.003], [-0.0019199999999999998, 0.0, -0.003], [-0.0019100000000000002, 0.0, -0.003], [-0.0019, 0.0, -0.003], [-0.0018900000000000002, 0.0, -0.003], [-0.00188, 0.0, -0.003], [-0.0018700000000000001, 0.0, -0.003], [-0.0018599999999999999, 0.0, -0.003], [-0.00185, 0.0, -0.003], [-0.0018399999999999998, 0.0, -0.003], [-0.00183, 0.0, -0.003], [-0.0018199999999999998, 0.0, -0.003], [-0.00181, 0.0, -0.003], [-0.0017999999999999997, 0.0, -0.003], [-0.0017900000000000001, 0.0, -0.003], [-0.00178, 0.0, -0.003], [-0.00177, 0.0, -0.003], [-0.0017599999999999998, 0.0, -0.003], [-0.00175, 0.0, -0.003], [-0.0017399999999999998, 0.0, -0.003], [-0.00173, 0.0, -0.003], [-0.0017199999999999997, 0.0, -0.003], [-0.00171, 0.0, -0.003], [-0.0016999999999999997, 0.0, -0.003], [-0.0016899999999999999, 0.0, -0.003], [-0.0016799999999999996, 0.0, -0.003], [-0.0016699999999999998, 0.0, -0.003], [-0.0016599999999999998, 0.0, -0.003], [-0.0016500000000000004, 0.0, -0.003], [-0.0016400000000000002, 0.0, -0.003], [-0.00163, 0.0, -0.003], [-0.0016200000000000001, 0.0, -0.003], [-0.0016100000000000003, 0.0, -0.003], [-0.0016, 0.0, -0.003], [-0.0015899999999999998, 0.0, -0.003], [-0.00158, 0.0, -0.003], [-0.0015700000000000002, 0.0, -0.003], [-0.00156, 0.0, -0.003], [-0.0015499999999999997, 0.0, -0.003], [-0.0015400000000000001, 0.0, -0.003], [-0.0015300000000000003, 0.0, -0.003], [-0.00152, 0.0, -0.003], [-0.0015099999999999998, 0.0, -0.003], [-0.0015, 0.0, -0.003], [-0.0014900000000000002, 0.0, -0.003], [-0.00148, 0.0, -0.003], [-0.0014699999999999997, 0.0, -0.003], [-0.00146, 0.0, -0.003], [-0.0014500000000000001, 0.0, -0.003], [-0.0014399999999999999, 0.0, -0.003], [-0.0014299999999999996, 0.0, -0.003], [-0.0014199999999999998, 0.0, -0.003], [-0.0014100000000000002, 0.0, -0.003], [-0.0014, 0.0, -0.003], [-0.0013899999999999997, 0.0, -0.003], [-0.00138, 0.0, -0.003], [-0.0013700000000000001, 0.0, -0.003], [-0.0013599999999999999, 0.0, -0.003], [-0.0013499999999999996, 0.0, -0.003], [-0.0013399999999999998, 0.0, -0.003], [-0.00133, 0.0, -0.003], [-0.0013199999999999998, 0.0, -0.003], [-0.0013099999999999995, 0.0, -0.003], [-0.0012999999999999997, 0.0, -0.003], [-0.0012900000000000001, 0.0, -0.003], [-0.0012799999999999999, 0.0, -0.003], [-0.0012699999999999996, 0.0, -0.003], [-0.0012599999999999998, 0.0, -0.003], [-0.00125, 0.0, -0.003], [-0.0012399999999999998, 0.0, -0.003], [-0.0012299999999999995, 0.0, -0.003], [-0.0012199999999999997, 0.0, -0.003], [-0.00121, 0.0, -0.003], [-0.0011999999999999997, 0.0, -0.003], [-0.0011899999999999994, 0.0, -0.003], [-0.00118, 0.0, -0.003], [-0.0011700000000000005, 0.0, -0.003], [-0.0011600000000000002, 0.0, -0.003], [-0.0011500000000000004, 0.0, -0.003], [-0.0011400000000000002, 0.0, -0.003], [-0.0011300000000000004, 0.0, -0.003], [-0.0011200000000000001, 0.0, -0.003], [-0.0011100000000000003, 0.0, -0.003], [-0.0011, 0.0, -0.003], [-0.0010900000000000003, 0.0, -0.003], [-0.00108, 0.0, -0.003], [-0.0010700000000000002, 0.0, -0.003], [-0.00106, 0.0, -0.003], [-0.0010500000000000004, 0.0, -0.003], [-0.0010400000000000001, 0.0, -0.003], [-0.0010300000000000003, 0.0, -0.003], [-0.00102, 0.0, -0.003], [-0.0010100000000000003, 0.0, -0.003], [-0.001, 0.0, -0.003], [-0.0009900000000000002, 0.0, -0.003], [-0.00098, 0.0, -0.003], [-0.0009700000000000002, 0.0, -0.003], [-0.0009599999999999999, 0.0, -0.003], [-0.0009500000000000002, 0.0, -0.003], [-0.00094, 0.0, -0.003], [-0.0009300000000000002, 0.0, -0.003], [-0.0009199999999999999, 0.0, -0.003], [-0.0009100000000000001, 0.0, -0.003], [-0.0008999999999999999, 0.0, -0.003], [-0.0008900000000000002, 0.0, -0.003], [-0.0008799999999999999, 0.0, -0.003], [-0.0008700000000000001, 0.0, -0.003], [-0.0008599999999999999, 0.0, -0.003], [-0.0008500000000000001, 0.0, -0.003], [-0.0008399999999999998, 0.0, -0.003], [-0.0008300000000000001, 0.0, -0.003], [-0.0008199999999999999, 0.0, -0.003], [-0.0008100000000000001, 0.0, -0.003], [-0.0007999999999999998, 0.0, -0.003], [-0.00079, 0.0, -0.003], [-0.0007799999999999998, 0.0, -0.003], [-0.0007700000000000001, 0.0, -0.003], [-0.0007599999999999998, 0.0, -0.003], [-0.00075, 0.0, -0.003], [-0.0007399999999999998, 0.0, -0.003], [-0.00073, 0.0, -0.003], [-0.0007199999999999997, 0.0, -0.003], [-0.0007099999999999999, 0.0, -0.003], [-0.0006999999999999998, 0.0, -0.003], [-0.00069, 0.0, -0.003], [-0.0006799999999999997, 0.0, -0.003], [-0.0006699999999999999, 0.0, -0.003], [-0.0006599999999999997, 0.0, -0.003], [-0.0006499999999999999, 0.0, -0.003], [-0.0006399999999999997, 0.0, -0.003], [-0.0006299999999999999, 0.0, -0.003], [-0.0006199999999999997, 0.0, -0.003], [-0.0006099999999999999, 0.0, -0.003], [-0.0005999999999999996, 0.0, -0.003], [-0.0005899999999999998, 0.0, -0.003], [-0.0005799999999999997, 0.0, -0.003], [-0.0005699999999999999, 0.0, -0.003], [-0.0005600000000000005, 0.0, -0.003], [-0.0005500000000000002, 0.0, -0.003], [-0.00054, 0.0, -0.003], [-0.0005300000000000002, 0.0, -0.003], [-0.0005200000000000005, 0.0, -0.003], [-0.0005100000000000003, 0.0, -0.003], [-0.0005, 0.0, -0.003], [-0.0004900000000000002, 0.0, -0.003], [-0.00048000000000000045, 0.0, -0.003], [-0.0004700000000000002, 0.0, -0.003], [-0.00045999999999999996, 0.0, -0.003], [-0.0004500000000000002, 0.0, -0.003], [-0.0004400000000000004, 0.0, -0.003], [-0.00043000000000000015, 0.0, -0.003], [-0.0004199999999999999, 0.0, -0.003], [-0.00041000000000000015, 0.0, -0.003], [-0.00040000000000000034, 0.0, -0.003], [-0.0003900000000000001, 0.0, -0.003], [-0.0003799999999999999, 0.0, -0.003], [-0.0003700000000000001, 0.0, -0.003], [-0.0003600000000000003, 0.0, -0.003], [-0.0003500000000000001, 0.0, -0.003], [-0.00033999999999999986, 0.0, -0.003], [-0.00033000000000000005, 0.0, -0.003], [-0.0003200000000000003, 0.0, -0.003], [-0.00031000000000000005, 0.0, -0.003], [-0.0002999999999999998, 0.0, -0.003], [-0.00029000000000000006, 0.0, -0.003], [-0.00028000000000000025, 0.0, -0.003], [-0.00027, 0.0, -0.003], [-0.00025999999999999976, 0.0, -0.003], [-0.00025, 0.0, -0.003], [-0.00024000000000000022, 0.0, -0.003], [-0.00022999999999999998, 0.0, -0.003], [-0.00021999999999999976, 0.0, -0.003], [-0.00020999999999999995, 0.0, -0.003], [-0.00020000000000000017, 0.0, -0.003], [-0.00018999999999999996, 0.0, -0.003], [-0.0001799999999999997, 0.0, -0.003], [-0.00016999999999999993, 0.0, -0.003], [-0.00016000000000000015, 0.0, -0.003], [-0.0001499999999999999, 0.0, -0.003], [-0.0001399999999999997, 0.0, -0.003], [-0.00012999999999999988, 0.0, -0.003], [-0.00012000000000000011, 0.0, -0.003], [-0.00010999999999999988, 0.0, -0.003], [-9.999999999999964e-05, 0.0, -0.003], [-8.999999999999986e-05, 0.0, -0.003], [-8.000000000000007e-05, 0.0, -0.003], [-6.999999999999984e-05, 0.0, -0.003], [-5.999999999999961e-05, 0.0, -0.003], [-4.999999999999982e-05, 0.0, -0.003], [-4.000000000000004e-05, 0.0, -0.003], [-2.9999999999999804e-05, 0.0, -0.003], [-1.9999999999999575e-05, 0.0, -0.003], [-9.999999999999787e-06, 0.0, -0.003], [0.0, 0.0, -0.003], [9.999999999999787e-06, 0.0, -0.003], [2.0000000000000462e-05, 0.0, -0.003], [3.0000000000000248e-05, 0.0, -0.003], [4.000000000000004e-05, 0.0, -0.003], [5.0000000000000714e-05, 0.0, -0.003], [6.0000000000000496e-05, 0.0, -0.003], [6.99999999999994e-05, 0.0, -0.003], [8.000000000000007e-05, 0.0, -0.003], [8.999999999999986e-05, 0.0, -0.003], [9.999999999999964e-05, 0.0, -0.003], [0.00010999999999999943, 0.0, -0.003], [0.00012000000000000011, 0.0, -0.003], [0.00012999999999999988, 0.0, -0.003], [0.0001399999999999997, 0.0, -0.003], [0.00014999999999999947, 0.0, -0.003], [0.00016000000000000015, 0.0, -0.003], [0.00016999999999999993, 0.0, -0.003], [0.0001799999999999997, 0.0, -0.003], [0.0001899999999999995, 0.0, -0.003], [0.00020000000000000017, 0.0, -0.003], [0.00020999999999999995, 0.0, -0.003], [0.00021999999999999976, 0.0, -0.003], [0.00022999999999999955, 0.0, -0.003], [0.00024000000000000022, 0.0, -0.003], [0.00025, 0.0, -0.003], [0.00025999999999999976, 0.0, -0.003], [0.00026999999999999957, 0.0, -0.003], [0.00028000000000000025, 0.0, -0.003], [0.00029000000000000006, 0.0, -0.003], [0.0002999999999999998, 0.0, -0.003], [0.0003099999999999996, 0.0, -0.003], [0.0003200000000000003, 0.0, -0.003], [0.00033000000000000005, 0.0, -0.003], [0.00033999999999999986, 0.0, -0.003], [0.00034999999999999967, 0.0, -0.003], [0.0003600000000000003, 0.0, -0.003], [0.0003700000000000001, 0.0, -0.003], [0.0003799999999999999, 0.0, -0.003], [0.00038999999999999967, 0.0, -0.003], [0.00040000000000000034, 0.0, -0.003], [0.00041000000000000015, 0.0, -0.003], [0.0004199999999999999, 0.0, -0.003], [0.0004299999999999997, 0.0, -0.003], [0.0004400000000000004, 0.0, -0.003], [0.0004500000000000002, 0.0, -0.003], [0.00045999999999999996, 0.0, -0.003], [0.00046999999999999977, 0.0, -0.003], [0.00048000000000000045, 0.0, -0.003], [0.0004900000000000002, 0.0, -0.003], [0.0005, 0.0, -0.003], [0.0005099999999999998, 0.0, -0.003], [0.0005200000000000005, 0.0, -0.003], [0.0005300000000000002, 0.0, -0.003], [0.00054, 0.0, -0.003], [0.0005499999999999998, 0.0, -0.003], [0.0005600000000000005, 0.0, -0.003], [0.0005700000000000003, 0.0, -0.003], [0.0005800000000000001, 0.0, -0.003], [0.0005899999999999998, 0.0, -0.003], [0.0006000000000000005, 0.0, -0.003], [0.0006100000000000003, 0.0, -0.003], [0.0006200000000000001, 0.0, -0.003], [0.0006299999999999999, 0.0, -0.003], [0.0006400000000000006, 0.0, -0.003], [0.0006500000000000004, 0.0, -0.003], [0.0006600000000000001, 0.0, -0.003], [0.0006699999999999999, 0.0, -0.003], [0.0006800000000000006, 0.0, -0.003], [0.0006899999999999995, 0.0, -0.003], [0.0006999999999999993, 0.0, -0.003], [0.0007099999999999999, 0.0, -0.003], [0.0007199999999999997, 0.0, -0.003], [0.0007299999999999995, 0.0, -0.003], [0.0007400000000000002, 0.0, -0.003], [0.00075, 0.0, -0.003], [0.0007599999999999998, 0.0, -0.003], [0.0007699999999999995, 0.0, -0.003], [0.0007799999999999993, 0.0, -0.003], [0.00079, 0.0, -0.003], [0.0007999999999999998, 0.0, -0.003], [0.0008099999999999996, 0.0, -0.003], [0.0008200000000000003, 0.0, -0.003], [0.0008300000000000001, 0.0, -0.003], [0.0008399999999999998, 0.0, -0.003], [0.0008499999999999996, 0.0, -0.003], [0.0008599999999999994, 0.0, -0.003], [0.0008700000000000001, 0.0, -0.003], [0.0008799999999999999, 0.0, -0.003], [0.0008899999999999997, 0.0, -0.003], [0.0009000000000000004, 0.0, -0.003], [0.0009100000000000001, 0.0, -0.003], [0.0009199999999999999, 0.0, -0.003], [0.0009299999999999997, 0.0, -0.003], [0.0009399999999999995, 0.0, -0.003], [0.0009500000000000002, 0.0, -0.003], [0.0009599999999999999, 0.0, -0.003], [0.0009699999999999997, 0.0, -0.003], [0.0009800000000000004, 0.0, -0.003], [0.0009900000000000002, 0.0, -0.003], [0.001, 0.0, -0.003], [0.0010099999999999998, 0.0, -0.003], [0.0010199999999999996, 0.0, -0.003], [0.0010300000000000003, 0.0, -0.003], [0.0010400000000000001, 0.0, -0.003], [0.0010499999999999997, 0.0, -0.003], [0.0010600000000000004, 0.0, -0.003], [0.0010700000000000002, 0.0, -0.003], [0.00108, 0.0, -0.003], [0.0010899999999999998, 0.0, -0.003], [0.0010999999999999996, 0.0, -0.003], [0.0011100000000000003, 0.0, -0.003], [0.0011200000000000001, 0.0, -0.003], [0.00113, 0.0, -0.003], [0.0011400000000000006, 0.0, -0.003], [0.0011500000000000004, 0.0, -0.003], [0.0011600000000000002, 0.0, -0.003], [0.00117, 0.0, -0.003], [0.0011799999999999996, 0.0, -0.003], [0.0011900000000000003, 0.0, -0.003], [0.0012000000000000001, 0.0, -0.003], [0.00121, 0.0, -0.003], [0.0012200000000000006, 0.0, -0.003], [0.0012300000000000004, 0.0, -0.003], [0.0012400000000000002, 0.0, -0.003], [0.00125, 0.0, -0.003], [0.0012599999999999998, 0.0, -0.003], [0.0012700000000000005, 0.0, -0.003], [0.0012800000000000003, 0.0, -0.003], [0.0012900000000000001, 0.0, -0.003], [0.0013000000000000008, 0.0, -0.003], [0.0013100000000000004, 0.0, -0.003], [0.0013200000000000002, 0.0, -0.003], [0.00133, 0.0, -0.003], [0.0013399999999999998, 0.0, -0.003], [0.0013500000000000005, 0.0, -0.003], [0.0013600000000000003, 0.0, -0.003], [0.0013700000000000001, 0.0, -0.003], [0.0013800000000000008, 0.0, -0.003], [0.0013900000000000006, 0.0, -0.003], [0.0014000000000000004, 0.0, -0.003], [0.0014100000000000002, 0.0, -0.003], [0.0014199999999999998, 0.0, -0.003], [0.0014300000000000005, 0.0, -0.003], [0.0014400000000000003, 0.0, -0.003], [0.0014500000000000001, 0.0, -0.003], [0.0014600000000000008, 0.0, -0.003], [0.0014700000000000006, 0.0, -0.003], [0.0014800000000000004, 0.0, -0.003], [0.0014900000000000002, 0.0, -0.003], [0.0015, 0.0, -0.003], [0.0015100000000000007, 0.0, -0.003], [0.0015200000000000005, 0.0, -0.003], [0.0015300000000000003, 0.0, -0.003], [0.001540000000000001, 0.0, -0.003], [0.0015500000000000008, 0.0, -0.003], [0.0015600000000000004, 0.0, -0.003], [0.0015700000000000002, 0.0, -0.003], [0.00158, 0.0, -0.003], [0.0015900000000000007, 0.0, -0.003], [0.0016000000000000005, 0.0, -0.003], [0.0016100000000000003, 0.0, -0.003], [0.001620000000000001, 0.0, -0.003], [0.001629999999999999, 0.0, -0.003], [0.0016399999999999997, 0.0, -0.003], [0.0016499999999999996, 0.0, -0.003], [0.0016599999999999991, 0.0, -0.003], [0.0016699999999999998, 0.0, -0.003], [0.0016799999999999996, 0.0, -0.003], [0.0016899999999999994, 0.0, -0.003], [0.0016999999999999993, 0.0, -0.003], [0.001709999999999999, 0.0, -0.003], [0.0017199999999999997, 0.0, -0.003], [0.0017299999999999996, 0.0, -0.003], [0.0017399999999999994, 0.0, -0.003], [0.00175, 0.0, -0.003], [0.0017599999999999998, 0.0, -0.003], [0.0017699999999999997, 0.0, -0.003], [0.0017799999999999995, 0.0, -0.003], [0.001789999999999999, 0.0, -0.003], [0.0017999999999999997, 0.0, -0.003], [0.0018099999999999995, 0.0, -0.003], [0.0018199999999999994, 0.0, -0.003], [0.00183, 0.0, -0.003], [0.0018399999999999998, 0.0, -0.003], [0.0018499999999999996, 0.0, -0.003], [0.0018599999999999995, 0.0, -0.003], [0.0018699999999999993, 0.0, -0.003], [0.00188, 0.0, -0.003], [0.0018899999999999998, 0.0, -0.003], [0.0018999999999999996, 0.0, -0.003], [0.0019100000000000002, 0.0, -0.003], [0.0019199999999999998, 0.0, -0.003], [0.0019299999999999996, 0.0, -0.003], [0.0019399999999999995, 0.0, -0.003], [0.0019499999999999993, 0.0, -0.003], [0.00196, 0.0, -0.003], [0.00197, 0.0, -0.003], [0.0019799999999999996, 0.0, -0.003], [0.00199, 0.0, -0.003], [0.002, 0.0, -0.003], [0.0020099999999999996, 0.0, -0.003], [0.0020199999999999997, 0.0, -0.003], [0.0020299999999999993, 0.0, -0.003], [0.00204, 0.0, -0.003], [0.0020499999999999997, 0.0, -0.003], [0.0020599999999999998, 0.0, -0.003], [0.0020700000000000002, 0.0, -0.003], [0.0020800000000000003, 0.0, -0.003], [0.00209, 0.0, -0.003], [0.0020999999999999994, 0.0, -0.003], [0.0021099999999999995, 0.0, -0.003], [0.00212, 0.0, -0.003], [0.00213, 0.0, -0.003], [0.0021399999999999995, 0.0, -0.003], [0.0021500000000000004, 0.0, -0.003], [0.00216, 0.0, -0.003], [0.00217, 0.0, -0.003], [0.0021799999999999996, 0.0, -0.003], [0.0021899999999999997, 0.0, -0.003], [0.0022, 0.0, -0.003], [0.00221, 0.0, -0.003], [0.0022199999999999998, 0.0, -0.003], [0.00223, 0.0, -0.003], [0.0022400000000000002, 0.0, -0.003], [0.00225, 0.0, -0.003], [0.00226, 0.0, -0.003], [0.0022699999999999994, 0.0, -0.003], [0.0022800000000000003, 0.0, -0.003], [0.00229, 0.0, -0.003], [0.0023, 0.0, -0.003], [0.0023100000000000004, 0.0, -0.003], [0.0023200000000000004, 0.0, -0.003], [0.00233, 0.0, -0.003], [0.00234, 0.0, -0.003], [0.0023499999999999997, 0.0, -0.003], [0.00236, 0.0, -0.003], [0.00237, 0.0, -0.003], [0.0023799999999999997, 0.0, -0.003], [0.0023900000000000006, 0.0, -0.003], [0.0024000000000000002, 0.0, -0.003], [0.0024100000000000002, 0.0, -0.003], [0.00242, 0.0, -0.003], [0.00243, 0.0, -0.003], [0.0024400000000000003, 0.0, -0.003], [0.0024500000000000004, 0.0, -0.003], [0.00246, 0.0, -0.003], [0.002470000000000001, 0.0, -0.003], [0.0024800000000000004, 0.0, -0.003], [0.00249, 0.0, -0.003], [0.0025, 0.0, -0.003], [0.0025099999999999996, 0.0, -0.003], [0.0025200000000000005, 0.0, -0.003], [0.00253, 0.0, -0.003], [0.00254, 0.0, -0.003], [0.0025500000000000006, 0.0, -0.003], [0.0025600000000000006, 0.0, -0.003], [0.0025700000000000002, 0.0, -0.003], [0.0025800000000000003, 0.0, -0.003], [0.00259, 0.0, -0.003], [0.0026000000000000007, 0.0, -0.003], [0.0026100000000000003, 0.0, -0.003], [0.00262, 0.0, -0.003], [0.002630000000000001, 0.0, -0.003], [0.0026400000000000004, 0.0, -0.003], [0.0026500000000000004, 0.0, -0.003], [0.00266, 0.0, -0.003], [0.00267, 0.0, -0.003], [0.0026800000000000005, 0.0, -0.003], [0.0026900000000000006, 0.0, -0.003], [0.0027, 0.0, -0.003], [0.002710000000000001, 0.0, -0.003], [0.0027200000000000006, 0.0, -0.003], [0.0027300000000000002, 0.0, -0.003], [0.0027400000000000002, 0.0, -0.003], [0.00275, 0.0, -0.003], [0.0027600000000000007, 0.0, -0.003], [0.0027700000000000003, 0.0, -0.003], [0.0027800000000000004, 0.0, -0.003], [0.002790000000000001, 0.0, -0.003], [0.002800000000000001, 0.0, -0.003], [0.0028100000000000004, 0.0, -0.003], [0.0028200000000000005, 0.0, -0.003], [0.00283, 0.0, -0.003], [0.002840000000000001, 0.0, -0.003], [0.0028500000000000005, 0.0, -0.003], [0.00286, 0.0, -0.003], [0.002870000000000001, 0.0, -0.003], [0.002879999999999999, 0.0, -0.003], [0.0028899999999999998, 0.0, -0.003], [0.0028999999999999994, 0.0, -0.003], [0.0029099999999999994, 0.0, -0.003], [0.00292, 0.0, -0.003], [0.00293, 0.0, -0.003], [0.0029399999999999995, 0.0, -0.003], [0.0029499999999999995, 0.0, -0.003], [0.002959999999999999, 0.0, -0.003], [0.0029699999999999996, 0.0, -0.003], [0.0029799999999999996, 0.0, -0.003], [0.002989999999999999, 0.0, -0.003], [0.003, 0.0, -0.003], [0.0030099999999999997, 0.0, -0.003], [0.0030199999999999997, 0.0, -0.003], [0.0030299999999999993, 0.0, -0.003], [0.0030399999999999993, 0.0, -0.003], [0.0030499999999999998, 0.0, -0.003], [0.00306, 0.0, -0.003], [0.0030699999999999994, 0.0, -0.003], [0.0030800000000000003, 0.0, -0.003], [0.00309, 0.0, -0.003], [0.0030999999999999995, 0.0, -0.003], [0.0031099999999999995, 0.0, -0.003], [0.003119999999999999, 0.0, -0.003], [0.00313, 0.0, -0.003], [0.0031399999999999996, 0.0, -0.003], [0.0031499999999999996, 0.0, -0.003], [0.00316, 0.0, -0.003], [0.00317, 0.0, -0.003], [0.0031799999999999997, 0.0, -0.003], [0.0031899999999999997, 0.0, -0.003], [0.0031999999999999993, 0.0, -0.003], [0.00321, 0.0, -0.003], [0.0032199999999999998, 0.0, -0.003], [0.0032299999999999994, 0.0, -0.003], [0.0032400000000000003, 0.0, -0.003], [0.00325, 0.0, -0.003], [0.00326, 0.0, -0.003], [0.0032699999999999995, 0.0, -0.003], [0.0032799999999999995, 0.0, -0.003], [0.00329, 0.0, -0.003], [0.0033, 0.0, -0.003], [0.0033099999999999996, 0.0, -0.003], [0.0033200000000000005, 0.0, -0.003], [0.00333, 0.0, -0.003], [0.0033399999999999997, 0.0, -0.003], [0.0033499999999999997, 0.0, -0.003], [0.0033599999999999993, 0.0, -0.003], [0.00337, 0.0, -0.003], [0.0033799999999999998, 0.0, -0.003], [0.00339, 0.0, -0.003], [0.0034000000000000002, 0.0, -0.003], [0.0034100000000000003, 0.0, -0.003], [0.00342, 0.0, -0.003], [0.00343, 0.0, -0.003], [0.0034399999999999995, 0.0, -0.003], [0.0034500000000000004, 0.0, -0.003], [0.00346, 0.0, -0.003], [0.0034699999999999996, 0.0, -0.003], [0.0034800000000000005, 0.0, -0.003], [0.00349, 0.0, -0.003], [0.0035, 0.0, -0.003], [0.0035099999999999997, 0.0, -0.003], [0.0035199999999999997, 0.0, -0.003], [0.00353, 0.0, -0.003], [0.00354, 0.0, -0.003], [0.0035499999999999998, 0.0, -0.003], [0.0035600000000000007, 0.0, -0.003], [0.0035700000000000003, 0.0, -0.003], [0.0035800000000000003, 0.0, -0.003], [0.00359, 0.0, -0.003], [0.0035999999999999995, 0.0, -0.003], [0.0036100000000000004, 0.0, -0.003], [0.00362, 0.0, -0.003], [0.00363, 0.0, -0.003], [0.0036400000000000004, 0.0, -0.003], [0.0036500000000000005, 0.0, -0.003], [0.00366, 0.0, -0.003], [0.00367, 0.0, -0.003], [0.0036799999999999997, 0.0, -0.003], [0.0036900000000000006, 0.0, -0.003], [0.0037, 0.0, -0.003], [0.0037099999999999998, 0.0, -0.003], [0.0037200000000000006, 0.0, -0.003], [0.0037300000000000002, 0.0, -0.003], [0.0037400000000000003, 0.0, -0.003], [0.00375, 0.0, -0.003], [0.00376, 0.0, -0.003], [0.0037700000000000003, 0.0, -0.003], [0.0037800000000000004, 0.0, -0.003], [0.00379, 0.0, -0.003], [0.003800000000000001, 0.0, -0.003], [0.0038100000000000005, 0.0, -0.003], [0.0038200000000000005, 0.0, -0.003], [0.00383, 0.0, -0.003], [0.0038399999999999997, 0.0, -0.003], [0.0038500000000000006, 0.0, -0.003], [0.00386, 0.0, -0.003], [0.00387, 0.0, -0.003], [0.0038800000000000006, 0.0, -0.003], [0.0038900000000000007, 0.0, -0.003], [0.0039000000000000003, 0.0, -0.003], [0.00391, 0.0, -0.003], [0.00392, 0.0, -0.003], [0.00393, 0.0, -0.003], [0.003940000000000001, 0.0, -0.003], [0.00395, 0.0, -0.003], [0.003960000000000001, 0.0, -0.003], [0.0039700000000000004, 0.0, -0.003], [0.00398, 0.0, -0.003], [0.0039900000000000005, 0.0, -0.003], [0.004, 0.0, -0.003], [0.00401, 0.0, -0.003], [0.004019999999999999, 0.0, -0.003], [0.0040300000000000015, 0.0, -0.003], [0.004040000000000001, 0.0, -0.003], [0.004050000000000001, 0.0, -0.003], [0.00406, 0.0, -0.003], [0.004070000000000001, 0.0, -0.003], [0.00408, 0.0, -0.003], [0.00409, 0.0, -0.003], [0.004100000000000001, 0.0, -0.003], [0.004110000000000001, 0.0, -0.003], [0.004120000000000001, 0.0, -0.003], [0.004129999999999999, 0.0, -0.003], [0.004139999999999999, 0.0, -0.003], [0.004149999999999998, 0.0, -0.003], [0.0041600000000000005, 0.0, -0.003], [0.00417, 0.0, -0.003], [0.00418, 0.0, -0.003], [0.004189999999999999, 0.0, -0.003], [0.004199999999999999, 0.0, -0.003], [0.004209999999999999, 0.0, -0.003], [0.004219999999999999, 0.0, -0.003], [0.00423, 0.0, -0.003], [0.00424, 0.0, -0.003], [0.00425, 0.0, -0.003], [0.00426, 0.0, -0.003], [0.0042699999999999995, 0.0, -0.003], [0.004279999999999999, 0.0, -0.003], [0.0042899999999999995, 0.0, -0.003], [0.004299999999999999, 0.0, -0.003], [0.004309999999999999, 0.0, -0.003], [0.00432, 0.0, -0.003], [0.00433, 0.0, -0.003], [0.00434, 0.0, -0.003], [0.00435, 0.0, -0.003], [0.004359999999999999, 0.0, -0.003], [0.004369999999999999, 0.0, -0.003], [0.004379999999999999, 0.0, -0.003], [0.004390000000000001, 0.0, -0.003], [0.0044, 0.0, -0.003], [0.00441, 0.0, -0.003], [0.00442, 0.0, -0.003], [0.00443, 0.0, -0.003], [0.0044399999999999995, 0.0, -0.003], [0.004449999999999999, 0.0, -0.003], [0.004459999999999999, 0.0, -0.003], [0.004469999999999999, 0.0, -0.003], [0.0044800000000000005, 0.0, -0.003], [0.00449, 0.0, -0.003], [0.0045, 0.0, -0.003], [0.00451, 0.0, -0.003], [0.00452, 0.0, -0.003], [0.004529999999999999, 0.0, -0.003], [0.004539999999999999, 0.0, -0.003], [0.004550000000000001, 0.0, -0.003], [0.004560000000000001, 0.0, -0.003], [0.00457, 0.0, -0.003], [0.00458, 0.0, -0.003], [0.0045899999999999995, 0.0, -0.003], [0.0046, 0.0, -0.003], [0.0046099999999999995, 0.0, -0.003], [0.004619999999999999, 0.0, -0.003], [0.004629999999999999, 0.0, -0.003], [0.004640000000000001, 0.0, -0.003], [0.0046500000000000005, 0.0, -0.003], [0.00466, 0.0, -0.003], [0.00467, 0.0, -0.003], [0.00468, 0.0, -0.003], [0.00469, 0.0, -0.003], [0.004699999999999999, 0.0, -0.003], [0.004710000000000001, 0.0, -0.003], [0.00472, 0.0, -0.003], [0.004730000000000001, 0.0, -0.003], [0.00474, 0.0, -0.003], [0.00475, 0.0, -0.003], [0.0047599999999999995, 0.0, -0.003], [0.00477, 0.0, -0.003], [0.0047799999999999995, 0.0, -0.003], [0.004789999999999999, 0.0, -0.003], [0.0048000000000000004, 0.0, -0.003], [0.004810000000000001, 0.0, -0.003], [0.0048200000000000005, 0.0, -0.003], [0.00483, 0.0, -0.003], [0.00484, 0.0, -0.003], [0.004849999999999999, 0.0, -0.003], [0.00486, 0.0, -0.003], [0.004870000000000001, 0.0, -0.003], [0.004880000000000001, 0.0, -0.003], [0.00489, 0.0, -0.003], [0.004900000000000001, 0.0, -0.003], [0.00491, 0.0, -0.003], [0.00492, 0.0, -0.003], [0.0049299999999999995, 0.0, -0.003], [0.004939999999999999, 0.0, -0.003], [0.0049499999999999995, 0.0, -0.003], [0.004960000000000001, 0.0, -0.003], [0.0049700000000000005, 0.0, -0.003], [0.00498, 0.0, -0.003], [0.0049900000000000005, 0.0, -0.003], [0.005, 0.0, -0.003], [0.00501, 0.0, -0.003], [0.005019999999999999, 0.0, -0.003], [0.0050300000000000015, 0.0, -0.003], [0.005040000000000001, 0.0, -0.003], [0.005050000000000001, 0.0, -0.003], [0.00506, 0.0, -0.003], [0.00507, 0.0, -0.003], [0.00508, 0.0, -0.003], [0.00509, 0.0, -0.003], [0.0050999999999999995, 0.0, -0.003], [0.005109999999999999, 0.0, -0.003], [0.005120000000000001, 0.0, -0.003], [0.005130000000000001, 0.0, -0.003], [0.0051400000000000005, 0.0, -0.003], [0.00515, 0.0, -0.003], [0.0051600000000000005, 0.0, -0.003], [0.00517, 0.0, -0.003], [0.00518, 0.0, -0.003], [0.005190000000000001, 0.0, -0.003], [0.0052000000000000015, 0.0, -0.003], [0.005210000000000001, 0.0, -0.003], [0.005220000000000001, 0.0, -0.003], [0.00523, 0.0, -0.003], [0.00524, 0.0, -0.003], [0.00525, 0.0, -0.003], [0.00526, 0.0, -0.003], [0.0052699999999999995, 0.0, -0.003], [0.005280000000000001, 0.0, -0.003], [0.005290000000000001, 0.0, -0.003], [0.005300000000000001, 0.0, -0.003], [0.0053100000000000005, 0.0, -0.003], [0.00532, 0.0, -0.003], [0.00533, 0.0, -0.003], [0.00534, 0.0, -0.003], [0.0053500000000000015, 0.0, -0.003], [0.005360000000000001, 0.0, -0.003], [0.005370000000000001, 0.0, -0.003], [0.005379999999999999, 0.0, -0.003], [0.005389999999999999, 0.0, -0.003], [0.0053999999999999986, 0.0, -0.003], [0.00541, 0.0, -0.003], [0.00542, 0.0, -0.003], [0.00543, 0.0, -0.003], [0.0054399999999999995, 0.0, -0.003], [0.005449999999999999, 0.0, -0.003], [0.005459999999999999, 0.0, -0.003], [0.005469999999999999, 0.0, -0.003], [0.0054800000000000005, 0.0, -0.003], [0.00549, 0.0, -0.003], [0.0055, 0.0, -0.003], [0.00551, 0.0, -0.003], [0.00552, 0.0, -0.003], [0.005529999999999999, 0.0, -0.003], [0.005539999999999999, 0.0, -0.003], [0.0055499999999999985, 0.0, -0.003], [0.005559999999999999, 0.0, -0.003], [0.00557, 0.0, -0.003], [0.00558, 0.0, -0.003], [0.0055899999999999995, 0.0, -0.003], [0.0056, 0.0, -0.003], [0.0056099999999999995, 0.0, -0.003], [0.005619999999999999, 0.0, -0.003], [0.005629999999999999, 0.0, -0.003], [0.005640000000000001, 0.0, -0.003], [0.0056500000000000005, 0.0, -0.003], [0.00566, 0.0, -0.003], [0.00567, 0.0, -0.003], [0.005679999999999999, 0.0, -0.003], [0.00569, 0.0, -0.003], [0.005699999999999999, 0.0, -0.003], [0.005709999999999999, 0.0, -0.003], [0.0057199999999999985, 0.0, -0.003], [0.005730000000000001, 0.0, -0.003], [0.00574, 0.0, -0.003], [0.00575, 0.0, -0.003], [0.0057599999999999995, 0.0, -0.003], [0.00577, 0.0, -0.003], [0.0057799999999999995, 0.0, -0.003], [0.005789999999999999, 0.0, -0.003], [0.0058000000000000005, 0.0, -0.003], [0.005810000000000001, 0.0, -0.003], [0.0058200000000000005, 0.0, -0.003], [0.00583, 0.0, -0.003], [0.00584, 0.0, -0.003], [0.005849999999999999, 0.0, -0.003], [0.00586, 0.0, -0.003], [0.005869999999999999, 0.0, -0.003], [0.005879999999999999, 0.0, -0.003], [0.00589, 0.0, -0.003], [0.005900000000000001, 0.0, -0.003], [0.00591, 0.0, -0.003], [0.00592, 0.0, -0.003], [0.0059299999999999995, 0.0, -0.003], [0.005939999999999999, 0.0, -0.003], [0.0059499999999999996, 0.0, -0.003], [0.005960000000000001, 0.0, -0.003], [0.0059700000000000005, 0.0, -0.003], [0.00598, 0.0, -0.003], [0.0059900000000000005, 0.0, -0.003], [0.006, 0.0, -0.003]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "style": {"arrows": {"x": {"color": null, "show": true}, "y": {"color": null, "show": true}, "z": {"color": null, "show": true}}, "color": null, "description": {"show": null, "text": null}, "label": "Sensor, z=-3mm", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}, "pixel": {"color": null, "size": 1, "symbol": null}, "size": null}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}], "results": [{"computation": "FEM (ANSYS)", "field": "B", "kwargs": {"sources": [2678036084816], "sensors": [2679646060352, 2678042525760], "sumup": false, "pixel_agg": null, "squeeze": true, "output": "dataframe"}, "order": ["source", "path", "sensor", "pixel", "value"], "value": {"Bx": [0.0016329631331849, 0.0013783437156068, 0.0006425539855724, 0.0016472862497218, 0.0013848589700034, 0.0006437835106329, 0.0016608812418537, 0.0013916103983202, 0.0006449515925571, 0.0016744762339856, 0.0013983618266369, 0.0006461892761524, 0.0016887535017375, 0.0014051155997336, 0.0006474597702607, 0.0017029245721215, 0.0014118154064706, 0.0006487302643689, 0.0017174267578112, 0.0014182791950647, 0.0006500007584772, 0.0017322816346829, 0.0014254817225176, 0.0006512458373246, 0.0017471365115546, 0.0014320790748866, 0.0006523567833393, 0.0017619680678991, 0.0014389903755416, 0.0006535120545922, 0.0017767941254528, 0.0014459016761966, 0.0006548231839424, 0.0017923173468457, 0.0014528129768516, 0.0006560159836333, 0.0018077079357075, 0.0014596320497957, 0.0006572087833241, 0.0018230985245693, 0.0014666497556828, 0.0006584015830149, 0.0018392196700937, 0.0014736674615699, 0.0006595943827058, 0.0018544376553512, 0.0014806653092477, 0.0006608231538678, 0.0018708146897641, 0.0014876935279684, 0.0006620271791242, 0.001887191724177, 0.0014947803912751, 0.000663217490521, 0.0019035355211519, 0.0015017560077748, 0.0006644108642605, 0.0019199338704164, 0.0015088527785706, 0.000665604238, 0.0019362365061665, 0.0015160720632767, 0.0006667116085434, 0.0019535117220533, 0.0015232421152799, 0.0006679443821525, 0.0019707869379402, 0.0015305624768372, 0.0006691711998232, 0.0019878253019507, 0.0015377264353053, 0.0006703330369563, 0.0020050458607282, 0.0015448118676366, 0.0006714948740894, 0.0020222664195058, 0.0015521200283344, 0.0006726021231929, 0.0020403278457327, 0.0015594339704807, 0.0006737190774651001, 0.0020586197166087, 0.0015668229563954997, 0.000674966279505, 0.0020766075566777, 0.0015742136260662, 0.0006760448604877, 0.0020950227909233, 0.0015815172847977, 0.0006771997303725, 0.0021133140984596, 0.0015888844670857, 0.0006783480074802, 0.0021320523253891, 0.0015962516493738, 0.0006794359640171, 0.0021507905523186, 0.0016037262248085, 0.0006806155457439, 0.0021703158441757, 0.0016113958888952, 0.000681649578419, 0.0021894914305578, 0.001619065552982, 0.0006827892514638, 0.0022088241397709, 0.0016263733897630003, 0.0006839289245085, 0.0022287050575117, 0.0016340251544381, 0.0006850685975533, 0.0022490118499881, 0.0016416769191132, 0.0006860076067621, 0.0022688852430810995, 0.0016493603744325, 0.0006871767136282, 0.002288831375156, 0.0016569095955802, 0.0006882982220667, 0.0023094988870818, 0.001664766157509, 0.0006894261459829, 0.0023308492784309, 0.0016724075254719998, 0.0006904517167238, 0.0023520935461057, 0.001680146809555, 0.0006914772874648, 0.0023734500009262, 0.001687775944329, 0.0006924982056227, 0.0023945387117662, 0.0016958218556349, 0.0006935186321854, 0.002415759886634, 0.0017036219200486, 0.0006945795099043, 0.0024385760207738, 0.0017108347118184, 0.0006956403876232, 0.0024612961361635, 0.0017190800266993, 0.0006967005968568, 0.0024834560222856, 0.0017273610715756, 0.0006976997986013, 0.0025058308719841, 0.001735189731829, 0.0006986990003457, 0.0025282057216826, 0.0017429904237024, 0.0006996982020902, 0.0025517411078503, 0.0017513049341659, 0.0007005981734269, 0.002575663317951, 0.0017592263696227, 0.0007016177856407, 0.0025995855280517, 0.0017672112256562, 0.0007026373978545, 0.0026239257603504, 0.0017753889342023, 0.0007036762867132, 0.0026486456984659, 0.0017830200723742, 0.0007046020124058, 0.0026724877040988, 0.0017915001944301, 0.0007055277380984, 0.0026978487601367, 0.001799657315864, 0.000706453463791, 0.002722736045493, 0.001807814437298, 0.0007073791894836, 0.0027474515479462, 0.001815971558732, 0.0007083209007471, 0.0027742354800825, 0.0018243364652079, 0.0007092790249207, 0.0027991478611346, 0.0018322337046678, 0.0007102429744657, 0.0028259731320999, 0.001840551353003, 0.000711092718499, 0.0028527984030653, 0.0018488862208982, 0.0007119543569326, 0.0028800580238128, 0.0018571789729023, 0.0007128159953661, 0.002906295663824, 0.0018654717249064, 0.0007136300276875, 0.0029345388263764, 0.0018738472912656, 0.0007145556338243, 0.0029627707941011, 0.0018821211588831, 0.0007154538130862, 0.0029905382775154, 0.0018903772334782, 0.0007162880211296, 0.0030183057609296, 0.0018989883761688, 0.0007171493249729, 0.0030472559992719, 0.0019075583923007, 0.0007179680671916, 0.0030770614684025, 0.0019158053262046, 0.0007187856621011, 0.0031065452384125, 0.0019243431136939, 0.0007195649071008, 0.0031358128331175, 0.0019328206918848, 0.0007203775491739, 0.0031658875920342, 0.0019412982700757, 0.000721190191247, 0.0031965780809815, 0.0019497758482665, 0.0007219521200682, 0.003227529985583, 0.0019582534264574, 0.0007226901033906, 0.0032588772701905, 0.0019674541380149, 0.000723428086713, 0.0032901455453078, 0.0019757567058825, 0.0007241660700354, 0.0033213000394853, 0.001984271289845, 0.0007249040533579, 0.0033532952714645, 0.0019927858738074, 0.0007256973806983, 0.0033866985915401, 0.0020013004577698, 0.0007261844744677, 0.0034200752094961, 0.0020098150417323, 0.0007270488827911, 0.0034530282369256, 0.002018453122245, 0.0007277430443494, 0.0034870187731375, 0.002027442719385, 0.0007284372059077, 0.0035206866253437, 0.0020360602158273, 0.000729131367466, 0.0035560980883565, 0.002045002819072, 0.0007297685589038, 0.0035904225864454, 0.0020540105223708, 0.0007303378797227, 0.0036258711286652, 0.0020625653420445, 0.000731037691014, 0.003661319670885, 0.0020711156644533, 0.0007316476826823, 0.0036967682131048, 0.0020798646971598, 0.0007322576743507, 0.0037339881445351, 0.002088847198125, 0.0007328676660191, 0.0037718412649473, 0.0020978022990999, 0.0007334776576874, 0.0038096943853595, 0.0021067574000749, 0.0007340028083477, 0.0038475475057716995, 0.0021156126125059, 0.000734602249896, 0.0038864522341357, 0.0021240424470572, 0.0007351377034655, 0.0039245286357241, 0.002133115913055, 0.0007356731570349999, 0.0039643201035799, 0.0021421776940378, 0.0007362086106045, 0.0040041115714358, 0.0021512513816639, 0.0007367055434681, 0.0040439030392916, 0.002160046482887, 0.0007372614252866, 0.0040836945071474, 0.0021686775299207, 0.0007377833510418, 0.0041234859750033, 0.0021773085769544, 0.0007382356952445, 0.0041671134085447, 0.0021864839564021, 0.0007386880394471, 0.0042096605142754, 0.0021956594692018, 0.0007391515190665, 0.0042522076200062, 0.0022048058449584, 0.0007395996019979, 0.0042952302326056, 0.0022136560884168, 0.0007399671517604, 0.0043395270552511, 0.0022225063318753, 0.0007403890425996, 0.0043839412119522, 0.0022311121027298, 0.0007408115007273, 0.0044278609136393, 0.0022406485544196, 0.0007412349363866, 0.0044720793624657, 0.0022496576363491, 0.0007415599303539, 0.0045188616089734, 0.0022586667182786, 0.000741919113675, 0.004565643855481, 0.0022674816301825, 0.0007422601411623, 0.0046124261019887, 0.0022760706255021, 0.0007425309963346, 0.0046592083484963, 0.002285378299978, 0.0007428444905886, 0.0047079549417989, 0.0022945021746558, 0.0007431189406909, 0.0047564623078878, 0.0023033635567169, 0.0007434614555967, 0.0048062611271936, 0.0023124426037332, 0.0007436961176991, 0.0048562429364483, 0.0023214830222869, 0.0007438761954143, 0.0049059918676754, 0.0023305234408405, 0.0007441833570518, 0.0049557407989024, 0.0023394107458728, 0.0007444555253789, 0.0050091482124338, 0.0023481596376558, 0.0007446217721997, 0.0050614830224552, 0.0023573006572254, 0.0007447907530933, 0.0051154039858117, 0.0023665251246773, 0.0007448972006118, 0.0051689877842549, 0.0023755985348688, 0.0007451376152372, 0.0052229664484565, 0.0023844649651652, 0.0007453323820765, 0.0052768948593697, 0.0023933313954616, 0.000745476813076, 0.0053335097342519, 0.0024025501393094, 0.000745504654585, 0.0053907240034875, 0.0024113052680097, 0.0007456053767115, 0.0054471423157384, 0.0024200603967101, 0.0007457060988381, 0.0055054095433384, 0.0024292664905794, 0.0007457946500197, 0.0055627798751849, 0.0024378001136502, 0.0007458081098689, 0.0056227736677665, 0.0024468826947379, 0.0007458215697181, 0.0056839457014363, 0.0024561521070961, 0.0007458350295673, 0.005745117735106, 0.0024649988430599, 0.0007458328710628, 0.0058077926795177, 0.0024738455790237, 0.000745761702319, 0.0058701716509565, 0.0024824326804005, 0.0007458901145661, 0.0059330637771247, 0.0024917501621056, 0.000745770467017, 0.005997876925078, 0.0025002054596641, 0.0007456508194678, 0.0060619363224244, 0.0025091940266599, 0.0007455311719187, 0.0061256649790589, 0.0025180919647273, 0.0007454115243695, 0.0061926890767928, 0.0025268753702614, 0.0007452918768204, 0.0062626380307842, 0.0025354079430387, 0.0007451722292713, 0.006328417920654, 0.0025443792759298, 0.0007450525817221, 0.0063991426699724, 0.0025535790065773, 0.0007449447777987, 0.0064698674192908, 0.0025619118571479, 0.0007446836799449, 0.0065405921686092, 0.0025703721362866, 0.0007444363974238, 0.0066145883597525, 0.0025789400564397, 0.0007441891149026, 0.0066873048979358, 0.0025880039768421, 0.0007439418323814, 0.0067577417967833, 0.0025965804849871, 0.0007436945498603, 0.0068332979163111, 0.0026053756448214, 0.0007434472673391, 0.0069088540358389, 0.0026140820285866, 0.0007430027089628001, 0.0069844101553667, 0.0026225572071436, 0.0007427017829518, 0.0070639526941053, 0.002630747890013, 0.0007424765433949, 0.0071426936917663, 0.0026391674521993, 0.0007420894377237, 0.0072221854414496, 0.0026473324165988, 0.0007417023320525, 0.0073016771911329, 0.0026557290811602, 0.0007413152263813, 0.0073837063729301, 0.002664238084234, 0.0007408749234592, 0.0074665492799371, 0.0026727470873078, 0.00074039051016, 0.0075517987286886, 0.0026812560903816, 0.0007399072114291, 0.0076375102207155, 0.0026882552489609, 0.0007394398505677, 0.0077199410421895, 0.0026959808346828, 0.0007390047332583, 0.0078108878899727, 0.0027046101401011, 0.0007384544715029, 0.0078998809585952, 0.0027125207484334, 0.0007378654878781, 0.0079888740272178, 0.0027208168943062, 0.0007373568210199, 0.0080778670958403, 0.0027291130401791, 0.000736801824846, 0.008167993748693998, 0.0027374091860519, 0.0007362621112689, 0.0082621520274696, 0.0027457202893653994, 0.0007356293249463, 0.0083604844513276, 0.002752968054473, 0.000734953864127, 0.008458781405157, 0.0027602158195806, 0.0007342322611466, 0.0085520376614187, 0.0027674635846881, 0.0007335556335206, 0.0086510813998308, 0.0027747113497957, 0.0007329014064741, 0.0087557808767914, 0.0027836285077681, 0.0007322943948107, 0.008852561009393798, 0.002789998577486, 0.0007315439347619, 0.0089564095386135, 0.0027986705508691, 0.0007307515247786, 0.0090602580678331, 0.0028058478312707, 0.0007299591147953, 0.0091633348329771, 0.0028127507751038, 0.0007290716705926, 0.0092724281742292, 0.002819653718937, 0.0007282329062021, 0.0093813732746995, 0.0028265566627701, 0.0007274826902983, 0.0094904258263698, 0.0028338268882608, 0.0007266605943667, 0.00959947837804, 0.0028415820225616, 0.000725838498435, 0.0097160285098213, 0.0028477475611029994, 0.0007250450114623, 0.0098273587848989, 0.0028554723998598, 0.0007240410490977, 0.0099457076541638, 0.0028622056999318, 0.0007230289272145, 0.0100615026733857, 0.0028689390000039, 0.0007220168053313, 0.0101772976926076, 0.0028753876829736, 0.000720970759576, 0.0102930635774087, 0.0028816654405553, 0.000720034750024, 0.0104178148407009, 0.0028887536319199, 0.0007191122680457, 0.0105474229101994, 0.0028954108187401, 0.0007180022826842, 0.0106770309796979, 0.0029015104847747, 0.0007169245496711, 0.01080199016534, 0.0029079877769224, 0.0007159000289542, 0.0109272315244977, 0.0029134145037212, 0.0007146339834626, 0.0110663852517639, 0.0029195905217212, 0.0007134453115278, 0.0111987995259124, 0.0029255999826869, 0.0007125339964419, 0.0113231839376962, 0.0029316094436526, 0.0007113272119958, 0.011465780795948, 0.0029376189046182, 0.0007101129535579, 0.0116069487664855, 0.0029442439523055, 0.0007089032409716, 0.0117481167370231, 0.0029486998585323, 0.0007076333176913, 0.0118892847075607, 0.0029542577419756, 0.0007063763185765, 0.0120296378290768, 0.0029597689687409, 0.0007051193194617, 0.0121863950123775, 0.0029652801955062, 0.000703862320347, 0.0123333010609595, 0.0029707914222715, 0.0007022453800793, 0.0124803177244532, 0.002975361305678, 0.0007010856768689, 0.0126234817237086, 0.0029800444670384, 0.0006996337732205, 0.0127863397526167, 0.0029847276283987, 0.0006982161429555, 0.0129491977815249, 0.0029892127122009, 0.0006967367664693, 0.013112055810433, 0.002993914888971, 0.0006952828906416, 0.0132749138393411, 0.002998617065741, 0.0006938290148139, 0.0134377718682492, 0.0030033192425111, 0.0006923425270258, 0.0135962507548265, 0.0030073737985972, 0.0006909056983317, 0.0137548056545838, 0.0030118786759736, 0.0006893819155621, 0.0139461987172071, 0.0030163462401416, 0.0006878061273732, 0.0141171996760881, 0.0030198105084583, 0.000686143587515, 0.0142943597551533, 0.003023274776775, 0.0006844810476567, 0.0144715198342186, 0.0030263179175451, 0.0006828185077985, 0.0146486799132838, 0.0030295214684308, 0.0006810936475191, 0.0148451504616383, 0.0030338056711955, 0.000679450591951, 0.015031047730252, 0.003036811870927, 0.0006778166219219, 0.0152180286612998, 0.0030397380856992, 0.0006759843332913, 0.0154107246340184, 0.0030426643004714, 0.0006742329653076, 0.0156034206067369, 0.0030455905152435, 0.0006723986753308999, 0.0157961165794555, 0.0030485167300157, 0.000670625065444, 0.0160024839091158, 0.0030508075835426, 0.0006687981767666, 0.0162095383916226, 0.0030528616530161, 0.0006669393250938, 0.0164185893603787, 0.0030549157224895, 0.0006649964937484, 0.0166257230115874, 0.0030570151728603, 0.0006630770601128, 0.0168434841157749, 0.0030592795928691, 0.0006611576264773, 0.0170647797009, 0.0030591232253156, 0.0006592677814141999, 0.0172770725354778, 0.0030625992658038, 0.0006572408963958, 0.0175022178335857, 0.0030638529141289, 0.0006552592728663, 0.0177184545584617, 0.0030651065624539, 0.0006532194216115, 0.0179497978224423, 0.0030643277917276, 0.0006510936651402, 0.018186276832035, 0.0030678016071627, 0.0006489679086688, 0.0184241376962519, 0.0030664769194177, 0.0006468962367757, 0.0186736726376624, 0.0030665021815713, 0.0006448856843022, 0.0189123705955784, 0.0030684684638453, 0.0006425663489964, 0.0191510685534944, 0.0030677083818124, 0.0006403554935029, 0.0194039856552155, 0.0030678303548522, 0.0006382900910718, 0.0196725314248372, 0.003067478094273, 0.0006360090488165, 0.0199363201871099, 0.0030669181583355, 0.0006337280065611, 0.0201842660289209, 0.0030662741263423, 0.0006313570506519, 0.0204357656006683, 0.0030656300943491, 0.000629193835629, 0.0207292716078831, 0.0030646287066697, 0.0006268219911822, 0.0209927131463896, 0.0030631870977595, 0.0006244993439787, 0.0212786152834198, 0.0030631246225877, 0.0006221821013881999, 0.021557119951143, 0.003061601109777, 0.0006196824136415, 0.0218268490174889, 0.0030586378247121, 0.0006171895028577, 0.0221301464578071, 0.0030560136404561, 0.0006148973284943, 0.0224334438981253, 0.0030556885421544, 0.0006122601219552, 0.0227367413384436, 0.0030528864070898, 0.0006097743424125, 0.0230321496325587, 0.003050799827065, 0.0006072885628698, 0.0233207842617709, 0.0030472534602554997, 0.0006047425812838, 0.0236692963300665, 0.0030446218577413, 0.0006021672548616, 0.0239702065169778, 0.0030408455702258, 0.0005995919284393, 0.0242836376525123, 0.0030370692827102, 0.0005970653555558, 0.0246096030043166, 0.003033559133203, 0.0005941229833357, 0.0249479374589656, 0.0030289823963506, 0.0005917699188118, 0.0252662159142501, 0.0030256836811838, 0.0005889376990385, 0.0256272168360056, 0.0030220845302367, 0.0005861327430122, 0.0259882177577612, 0.0030169406049751, 0.0005833277869859, 0.0263300890714286, 0.0030134174761725, 0.0005805228309597, 0.0266675078489713, 0.0030085842471421, 0.0005777467139253, 0.027044292473307, 0.0030021637856779, 0.000574863286395, 0.0274119652681817, 0.0029964479312607, 0.0005720264765105, 0.0277855810675993, 0.0029906617713976, 0.0005691671361203, 0.0281565058546489, 0.0029853658515636, 0.0005663077957301, 0.0285436815619336, 0.0029793910658478, 0.0005633069678555, 0.0289102311503868, 0.00297320189166, 0.0005603324696466, 0.0293251082568675, 0.0029645147375221, 0.0005574128248776, 0.0297242775626822, 0.0029587524836885, 0.0005543847952544, 0.0301234468684969, 0.0029519100072575, 0.0005513371541567, 0.0305210431664933, 0.0029448520248663, 0.0005483087971472, 0.0309172325719048, 0.0029365312942509, 0.0005451614900594, 0.0313134219773164, 0.0029282513361588, 0.0005420206469991, 0.0317836463622333, 0.0029204592032362, 0.0005388798039389, 0.0322440722953905, 0.0029126819338996, 0.0005357389608787, 0.0326442599490657, 0.0029049810797314, 0.0005326604537229, 0.0330917813949499, 0.0028945867202513, 0.0005294251584441, 0.0335341498279911, 0.0028848020743277, 0.0005261898631653, 0.0339765182610322, 0.0028760336784566, 0.0005229545678865, 0.0344048695223756, 0.0028663808599881, 0.0005197192726077, 0.0348348423258572, 0.0028567280415195, 0.0005162493720258, 0.0353705624174545, 0.0028458648962379, 0.0005130885050543, 0.0358593594330554, 0.002834933686344, 0.0005097490739584, 0.0363026612366661, 0.0028237207511793, 0.0005064096428625, 0.0367936548329371, 0.0028132985210584, 0.0005029582935253, 0.03728464842920821, 0.0028023642513785, 0.0004996552411216, 0.0377783656179671, 0.002791347969974, 0.0004962890176199, 0.0383092580173651, 0.0027789764071145, 0.0004928058655546, 0.0388249688913151, 0.002766604844255, 0.0004893227134893, 0.0393140657520889, 0.0027539010095526, 0.0004858994443421, 0.0398031626128627, 0.0027415144213003, 0.0004824689814666, 0.0402922594736364, 0.0027284075907359, 0.0004788587725389, 0.0408482387951534, 0.0027151676702695, 0.0004752485636111, 0.0414302184093149, 0.0027012924845103, 0.0004716383546834, 0.0418920021473856, 0.0026861565437783, 0.0004682220268889, 0.0424261798542598, 0.0026770837239118, 0.0004647014173863, 0.0429643563710469, 0.0026587598073904, 0.0004608868614787, 0.043502532887834, 0.002644084404182, 0.0004573029250233, 0.0440407094046211, 0.0026292154052293, 0.0004535854000037, 0.0445788859214083, 0.0026143464062766, 0.000449938072063, 0.0451943438357756, 0.0025994774073239, 0.0004463227270237, 0.0456852349184725, 0.0025841550903869, 0.0004425230279669, 0.0462236456737939, 0.0025677794444302, 0.000438935661363, 0.0467620564291153, 0.0025514037984736, 0.0004348479808592, 0.0473004671844367, 0.002535028152517, 0.0004312290239834, 0.0478388779397581, 0.0025201896784999, 0.0004274376901162, 0.048426730163175, 0.0024998521615885, 0.0004235766737653, 0.048941375027984, 0.002484669135346, 0.0004197156574143, 0.0494905280002763, 0.0024663033819152, 0.0004158211715795, 0.0500321252206146, 0.0024483851423377, 0.0004118767559763, 0.0505737224409529, 0.0024315054897786, 0.0004080316143737, 0.0511153196612912, 0.0024126395463493, 0.0004039775221088, 0.051694352043988, 0.0023937736029199, 0.0004000144214693, 0.0522050513308249, 0.0023734554753848, 0.000395925012221, 0.0526959411599371, 0.0023544798974892, 0.0003920458909892, 0.0531950679140494, 0.0023364448506403, 0.00038805476852, 0.0537434819366124, 0.002316359805688, 0.0003839689365936, 0.0541653528964353, 0.0022950174890437, 0.0003799878071024, 0.0545872238562582, 0.0022750924731946, 0.0003758715283961, 0.0551734296743378, 0.0022551674573456, 0.0003717552496897, 0.0556997808617663, 0.0022341726654548, 0.0003676919250822, 0.0559649431743643, 0.0022118466670192, 0.0003635261566121, 0.0565268737475225, 0.0021895335673268, 0.0003593906504774, 0.0568889662802123, 0.0021675301299654, 0.0003552551443427, 0.0572510588129022, 0.0021455266926041, 0.000351119638208, 0.0576131513455921, 0.0021231155962936, 0.000347026276303, 0.0579752438782819, 0.0021012295557291, 0.0003428493556185, 0.0582814275016527, 0.0020787374342336002, 0.0003386007000233, 0.0586164557370472, 0.002055824775796, 0.0003343520444282, 0.0589514839724417, 0.0020320849693663, 0.0003299630867357, 0.059264818095703, 0.0020084471135493, 0.0003257675865746, 0.0595372955559735, 0.0019851535725795, 0.0003215239342074, 0.0596323311403623, 0.0019610529188736, 0.0003172802818401, 0.059746029285538, 0.0019365739367206, 0.0003130366294728, 0.0598597274307137, 0.0019130978663019, 0.0003086270574071, 0.0601187122685951, 0.001887831790544, 0.0003041967428769, 0.060119410980421, 0.0018631831146774, 0.0002998720366244, 0.0601780570619175, 0.0018385573602506, 0.0002955334402143, 0.060302882707597, 0.001814043466677, 0.0002911543855253, 0.0603054530401851, 0.0017850981026246, 0.0002868140591343, 0.0596752659075831, 0.0017615642958791, 0.0002823737274677, 0.0598804455042953, 0.0017351037617302, 0.0002779361310494, 0.0600136537991887, 0.0017085936912209, 0.0002734564398731, 0.0597212913042706, 0.0016824305816364, 0.000269009581167, 0.0594289288093526, 0.0016569497656284, 0.0002645627224609, 0.0591365663144345, 0.0016280908125039, 0.0002601855796348, 0.0588442038195164, 0.0016022891209636, 0.0002556742430478, 0.0585518413245983, 0.0015747383730108, 0.0002510925347716, 0.0582594788296801, 0.001547187625058, 0.0002465997881597, 0.0580416414879407, 0.001516148964368, 0.0002421070415477, 0.05721995196409, 0.0014905400226561, 0.0002376303846546, 0.0567902448861828, 0.0014615693883825, 0.0002329373694062, 0.0561828602687846, 0.0014325987541088, 0.0002284227068271, 0.0555754756513864, 0.0014045358668472, 0.0002237534595653, 0.0549487053316608, 0.0013765652338679, 0.000219078161412, 0.0543386998564476, 0.0013468434803957, 0.0002146877751236, 0.0536483901269945, 0.0013170089515363, 0.000210078264332, 0.0529452363482625, 0.0012866901321583, 0.0002054687535403, 0.0522420825695305, 0.0012572193270546, 0.0002007979635702, 0.0509144818480093, 0.0012277485219508, 0.0001960268247343, 0.0501053699459129, 0.0011960838817009, 0.00019138938185, 0.0494784464768134, 0.0011661554106122, 0.0001867519389657, 0.0485540049714459, 0.0011371057510312, 0.0001818789419903, 0.0476043026160753, 0.0011067399194574, 0.0001772390655315, 0.0466190448787653, 0.0010760983009251, 0.0001725916056634, 0.0456337871414554, 0.0010452882646348, 0.0001681986646457, 0.0444416199669898, 0.0010146355952289, 0.0001632069866071, 0.0432537070660835, 0.0009826248989478, 0.0001585713411992, 0.0421973718018301, 0.0009506142026667, 0.0001539356957914, 0.0411455645428467, 0.0009196410865257, 0.0001490330857742, 0.0398135774076171, 0.0008887625707821, 0.0001447154016542, 0.0385935927177541, 0.000857809740482, 0.0001396968429227, 0.0373909609009647, 0.0008254885628611, 0.000134913853933, 0.0361883290841751, 0.0007934961942446, 0.0001301308649432, 0.0346577935820374, 0.0007612410571653, 0.0001253478759534, 0.0337508241306133, 0.00072979586806, 0.0001207214955585, 0.0323515048879394, 0.0006973308127263, 0.0001160544352146, 0.0309521856452653, 0.0006649677904651, 0.000111250697317, 0.029601870140769, 0.0006322600226861, 0.0001064185315116, 0.0283192080805413, 0.0006010704555084, 0.0001015934123215, 0.0269947599244164, 0.0005654158446736, 9.67682931314261e-05, 0.025448134166294, 0.0005345232165506, 9.20492188047461e-05, 0.0240545887769621, 0.0005015183787532, 8.72415668015789e-05, 0.0226562962539495, 0.0004687387603058, 8.23802623539003e-05, 0.0211871178720561, 0.0004359591418585, 7.76314810625425e-05, 0.0197179394901626, 0.0004031795234112, 7.27701239525689e-05, 0.018448633555364, 0.0003696015989219, 6.798578770298718e-05, 0.0169652201965496, 0.0003371902341682, 6.3259231194143e-05, 0.0154818068377352, 0.0003037995885292, 5.84223216094691e-05, 0.0139435092417789, 0.0002699031343138, 5.35439857544572e-05, 0.0126146844571909, 0.0002366311593304, 4.86827205682146e-05, 0.0109943967019331, 0.0002033591843469, 4.37826702167406e-05, 0.0095842784801039, 0.0001700872093635, 3.90795754105018e-05, 0.0081080138060627, 0.00013681523438, 3.43451543041876e-05, 0.0066131149399041, 0.0001050867075787, 2.9592968074049e-05, 0.0051661517602684, 7.27382974041476e-05, 2.46555672991769e-05, 0.0036485414111112, 3.77611552803052e-05, 1.97358358148638e-05, 0.002130931061954, 4.70490556500112e-06, 1.48161043305506e-05, 0.0007480222321201, -2.8351344150302904e-05, 9.89637284623731e-06, -0.0009333572224024, -6.14075938656055e-05, 4.97664136192427e-06, -0.0023861419710286, -9.64575848389084e-05, 1.59393088080231e-07, -0.003539001164797, -0.0001273679158115, -4.64592998432799e-06, -0.0054012266890296, -0.0001621264138429, -9.41925953490733e-06, -0.006886327982415, -0.0001952148600817, -1.43019144986246e-05, -0.0083714292758003, -0.0002283033063204, -1.9175184561888e-05, -0.0098443529446246, -0.0002613917525592, -2.4069504018015305e-05, -0.0112723881870114, -0.000294480198798, -2.85794130957138e-05, -0.0129093368684684, -0.0003275686450367, -3.36310184118623e-05, -0.0142699991280684, -0.0003604998873523, -3.84216980492915e-05, -0.015718783761924, -0.0003939124426843, -4.32123776867202e-05, -0.0171682114977789, -0.0004273249980163, -4.8003057324149e-05, -0.0187233558471282, -0.0004608544716822, -5.28676800800021e-05, -0.0202665448148038, -0.0004941021517328, -5.77049045389757e-05, -0.0217307164625586, -0.0005273498317835, -6.24887583378939e-05, -0.023118915950166498, -0.0005594943385928, -6.73205013330962e-05, -0.0243505649892401, -0.0005925210514772, -7.20394232093454e-05, -0.0260196740967375, -0.0006228347814158, -7.69095994275531e-05, -0.0274488717559664, -0.0006561917009419, -8.16722490968831e-05, -0.0288780694151953, -0.0006895486204681, -8.63353540692129e-05, -0.0301012952282825, -0.0007208527113178, -9.11149747862147e-05, -0.0314626569051705, -0.0007527375305078, -9.59969327180383e-05, -0.032914765423366, -0.0007858818304410999, -0.0001006583982754, -0.0343121209861345, -0.0008174096734334, -0.0001054715630868, -0.035803803435216, -0.0008489375164257, -0.0001102390575098, -0.03687239389661, -0.0008791350527227, -0.0001148382811714, -0.0384526730740668, -0.0009105911076393, -0.0001195782938024, -0.0396907242684096, -0.0009426807649176, -0.0001244149765475, -0.0409287754627523, -0.0009732410276905, -0.0001289821456138, -0.0421668266570952, -0.0010047922869318, -0.000133717127774, -0.043365554751517, -0.0010347411415088, -0.0001384521099342, -0.0446415879625202, -0.0010656621829943, -0.0001431870920944, -0.0457502448522238, -0.0010969215225995, -0.0001479220742546, -0.0468995846443219, -0.0011267354562714, -0.0001525897946086, -0.048043293535655, -0.0011563719694239, -0.0001571532335456, -0.049187002426988, -0.0011860084825765, -0.0001618901008552, -0.0503307113183212, -0.001216477809488, -0.0001664829523399, -0.0512066131532998, -0.001245704219827, -0.0001710227180941, -0.0522846974024972, -0.001274522672289, -0.000175614216232, -0.0531239107242163, -0.0013044354114961, -0.0001804531065048, -0.0541712555660095, -0.0013340432600142, -0.0001849619894606, -0.0552186004078029, -0.0013620591844425, -0.0001897069476454, -0.0561468598147701, -0.0013895861676253, -0.000193989578243, -0.0567994893380236, -0.0014192134246956, -0.0001988063408099, -0.0574835207683044, -0.0014478650489343, -0.0002032926518648, -0.0582355102845064, -0.0014755527878307, -0.0002077789629197, -0.059015089637387, -0.0015031353784952, -0.0002122652739746, -0.0597704960770584, -0.0015308537351372, -0.0002167515850294, -0.0603339957762853, -0.001559428226013, -0.0002212832792138, -0.0608637437384712, -0.0015863200975855, -0.0002258418821779, -0.0614117624206981, -0.0016132119691581, -0.0002304004851419, -0.0619597811029249, -0.0016411300206358, -0.0002349803349681, -0.0624778745783667, -0.0016669767743858, -0.0002393612006114, -0.0628785350848067, -0.0016928235281357, -0.0002437420662546, -0.062987834317469, -0.0017196400285923, -0.0002481229318979, -0.0635544465040277, -0.0017465686318895, -0.0002525986519152, -0.063822797823428, -0.0017706184606739, -0.0002570505241459, -0.0641127756139883, -0.0017966773022814, -0.0002614191380368, -0.0644027534045486, -0.0018209420979271, -0.0002658293994597, -0.064636751989405, -0.0018466428037342, -0.0002701337922947, -0.0646259538830878, -0.0018712690475369, -0.0002744743524596, -0.0646151557767705, -0.0018958952913397, -0.0002789340571407, -0.06453266373462, -0.0019191587095084, -0.0002832584433967, -0.0645707524409426, -0.0019427136107803, -0.0002872647841373, -0.0647394301049868, -0.0019662685120522, -0.0002915689987444, -0.0646004260583057, -0.0019895316344603, -0.0002960068795847, -0.0643247565313982, -0.0020129058611585, -0.0003002436681329, -0.0642700510773215, -0.0020358844581969, -0.0003044665035199, -0.0640637395095804, -0.0020580331295695, -0.0003087047020832, -0.0637020690534169, -0.002080536170495, -0.000312809998585, -0.0636121549974402, -0.0021030392114204, -0.0003170564396134, -0.0635222409414634, -0.0021222083065211, -0.0003211947642528, -0.0633100151299554, -0.0021440021050735, -0.0003253330888921, -0.0628454412826263, -0.0021657959036258, -0.0003296110588578, -0.0623808674352972, -0.0021881804679741, -0.0003335486800789, -0.061916293587968, -0.0022080863304509, -0.0003375782479284, -0.0616406195621602, -0.0022279921929278, -0.0003416812330678, -0.0612674905243747, -0.0022478980554046, -0.0003457123083739, -0.0606968466730937, -0.0022684232877048, -0.0003497433836799, -0.0603025836038838, -0.0022863185294664, -0.0003536818213414, -0.059862644237759, -0.0023059461945773, -0.0003577249540175, -0.0594227048716342, -0.0023262756277157, -0.0003615517807634, -0.0587904231250303, -0.0023448707620538, -0.0003657340777776, -0.0583484087560743, -0.0023632714135169, -0.0003695820764101, -0.0577300055238175, -0.0023813593579223, -0.0003734878712483, -0.0572889728762897, -0.0023988180434203, -0.0003775085748864, -0.0566856241938536, -0.0024162767289183, -0.0003813996058589, -0.0560203788063978, -0.0024337354144163, -0.0003854566647037, -0.0555251495608785, -0.0024502540498475, -0.0003893793126544, -0.0549372161228453, -0.0024679480685496, -0.000393301960605, -0.0543298857573927, -0.0024837140199372, -0.0003971145075703, -0.053726525986551, -0.0025000094953308, -0.0004008881981449, -0.0531189910255707, -0.0025163049707244, -0.0004046618887194, -0.0524647606195056, -0.0025329345072696, -0.0004085251703395, -0.051810530213440405, -0.0025477620502729, -0.0004123393652977, -0.0511066663868976, -0.0025619443317423, -0.0004161822874653, -0.0505591507088549, -0.0025758896743206, -0.0004200069714339, -0.0499507176959637, -0.0025911680307013, -0.0004234683506722, -0.0493173174993361, -0.0026051529212617, -0.000427096984852, -0.04865246840585, -0.0026194784707743997, -0.000430816434869, -0.047987619312364, -0.0026333638785876, -0.0004345182639549, -0.0474271867658317, -0.002646770630386, -0.0004382142705318, -0.0467245881141906, -0.0026592498434844, -0.0004417395056783, -0.0460219894625496, -0.0026717290565828, -0.0004452647408247, -0.045408178944869, -0.0026842082696813, -0.0004488266668289, -0.0447855612099826, -0.0026972109413407, -0.0004523293914941, -0.0441629434750962, -0.002710033262055, -0.0004558321161593, -0.0435068913284049, -0.0027200086825417, -0.0004592475355514, -0.0428731964285869, -0.0027310729186009, -0.0004626987421855, -0.0422010091649864, -0.0027427186431039, -0.0004661506061286, -0.0415405728759065, -0.0027537475206145, -0.0004696125707602, -0.0409217607999681, -0.0027647763981251, -0.0004731086008614, -0.0402874083802311, -0.0027753564406159, -0.0004763607400176, -0.0396451193329001, -0.0027850624776268, -0.0004796128791738, -0.0390231208256099, -0.0027947685146376, -0.000483030266144, -0.0384301782227657, -0.0028040838297387, -0.0004864034185413, -0.0377876822852153, -0.0028127057604161, -0.0004895756029407, -0.0371501300211457, -0.0028213276910936, -0.0004927903941873, -0.0365181215870211, -0.0028296905666849, -0.000496005185434, -0.0358861131528964, -0.0028381287316141994, -0.0004992290846473, -0.0353656206253756, -0.002846989236457, -0.0005024517621063, -0.0346970227896993, -0.0028541712002749, -0.0005056756725564, -0.0341207639207835, -0.0028613531640928, -0.0005087486135025, -0.0334830590440962, -0.0028685351279107, -0.0005118497975156, -0.0328570997455488, -0.0028757170917285, -0.0005149509815287, -0.0322311404470014, -0.0028828100549953, -0.0005180521655418, -0.0316742637826661, -0.0028877420853779, -0.000521098228273, -0.0310490841049589, -0.0028941869016621, -0.0005240697897398, -0.030476093602684, -0.0029013682231226, -0.0005270347062636, -0.0299031031004091, -0.0029077562253052, -0.0005299965359261, -0.0293301125981341, -0.002913628849963, -0.0005330094597082, -0.0287386691035563, -0.0029189684115923, -0.0005360223834903, -0.0281242701929888, -0.0029232249909423, -0.0005389584652615, -0.0275558708877992, -0.0029276029137945, -0.0005417557844099, -0.0270079423534522, -0.002932650550752, -0.0005446593575799, -0.0264722588674275, -0.0029376213676333, -0.0005474608586945, -0.0258865227523821, -0.0029422631849672, -0.0005501772578365, -0.0252799513347425, -0.0029448196029226, -0.0005530522741188, -0.0247670512155783, -0.0029488437780672, -0.000555579144934, -0.0242327733762314, -0.0029528679532119, -0.0005583100521577, -0.0236770405973456, -0.0029568921283565, -0.0005611578388169, -0.0231455346307191, -0.0029609956100598, -0.0005638414954271, -0.0226098683440097, -0.0029646236262722, -0.0005664309779774, -0.0220910124072235, -0.0029662317161634, -0.0005690204605278, -0.0215721564704372, -0.0029677645165731, -0.0005716360743508, -0.021045734452846, -0.0029692973169828, -0.0005742114749716, -0.0205240083600519, -0.0029719892306854, -0.0005768234427698, -0.0200489929705191, -0.0029742929120202, -0.0005792843165846, -0.0195676868203542, -0.0029754183436893, -0.0005817367751297999, -0.0190837177789963, -0.0029765437753584, -0.0005841266582675, -0.0186054272472917, -0.0029776692070275, -0.0005867148562962, -0.018127136715587, -0.0029798186263901, -0.0005891432465242, -0.017692175603847803, -0.0029800534643381, -0.000591532817436, -0.0172633434888955, -0.0029802364983365, -0.0005939146493065, -0.0168345113739433, -0.0029809431849789, -0.0005960808645833, -0.0164056792589909, -0.0029801166008125, -0.0005984550789737, -0.0160179499794973, -0.0029804569008804, -0.0006008562866748, -0.0156313511908297, -0.0029800405905733, -0.0006031353326307, -0.0152663480954938, -0.002981038087179, -0.0006053182743065, -0.0149078280734079, -0.0029802596855916, -0.0006075012159822, -0.0145308666185142, -0.0029794812840042, -0.0006096841576579, -0.0142002535162223, -0.0029787028824168, -0.0006119930531941, -0.0139040127599014, -0.0029776662394815, -0.0006141106020893, -0.0136077720035806, -0.0029764514305045, -0.0006162281509845, -0.0133033607435959, -0.0029750039310521, -0.0006183891616291, -0.0129917812869484, -0.0029724279409118, -0.0006204823843528999, -0.0127262232620148, -0.0029716999038362, -0.000622371659426, -0.0124776852580052, -0.0029697310414504, -0.0006244967575083, -0.0122291472539957, -0.0029677795278337, -0.000626554701409, -0.0119806092499861, -0.0029658297465837, -0.0006286126453098, -0.0117320712459766, -0.0029636228572444, -0.0006306705892106, -0.0115133749576172, -0.0029614159679052, -0.0006324927171658, -0.0113326951524375, -0.0029586918931527, -0.0006343303602117, -0.0111520153472577, -0.0029559019974098, -0.0006361680032576, -0.0109661845047053, -0.0029530145141512, -0.0006380056463036, -0.0107641187361067, -0.0029501008315298, -0.0006399722223047, -0.0105761248871502, -0.0029474737176621, -0.0006417967403381, -0.0104261435483794, -0.0029436789976432, -0.0006435871974419, -0.0102782524924504, -0.0029395933977074, -0.0006453776545457, -0.0101269413614452, -0.0029367836041481, -0.0006471681116496, -0.0099766095933525, -0.0029333887334915, -0.0006489585687534, -0.0098265760827734, -0.002929993862835, -0.0006504037094877, -0.0097075725517564, -0.0029253840236279, -0.0006522054927844, -0.0095833548786368, -0.002921672369855, -0.0006539092045582, -0.009452333808767, -0.0029179305287062, -0.0006554900643407, -0.0093297533772573, -0.0029131723669157, -0.0006570678862648, -0.0092382967734817, -0.0029084338247245, -0.0006587039178002, -0.0091206531064597, -0.0029043898159327, -0.0006603128713622, -0.009027690049522, -0.0028996167745937, -0.0006618844732185, -0.0089166515855383, -0.002894900400299, -0.0006633988462698, -0.0088211627537652, -0.0028899297444072, -0.000664913219321, -0.0087256739219922, -0.0028849590885154, -0.0006664240622847, -0.0086445184502223, -0.0028803356888966, -0.0006678508933337, -0.0085639308420021, -0.0028750861904748, -0.0006691586275307, -0.0084833432337818, -0.0028698667959538, -0.0006706377520037, -0.0084001809323778, -0.0028643374076748, -0.0006722140212131, -0.0083178794273866, -0.002859277341396, -0.000673514689627, -0.0082492494758517, -0.0028533304275152, -0.0006748153580408, -0.0081832588966642, -0.0028473676751865, -0.0006761160264546, -0.0081172683174767, -0.0028420615251218, -0.0006774166948685, -0.0080376754580022, -0.002836755375057, -0.0006787173632823, -0.0079854277405443, -0.0028309979246671, -0.0006799039615538, -0.0079063204042637, -0.0028244443918548, -0.000681041669548, -0.0078483600600524, -0.0028178908590426, -0.0006824842577831, -0.0077903997158412, -0.0028116225673431, -0.0006835632087654, -0.0077328875157726, -0.0028062466778237, -0.0006847462751272, -0.0076740620781628, -0.0027999621575802, -0.000685929341489, -0.0076143000955821, -0.0027937935162006, -0.0006871124078508, -0.0075607256119335, -0.0027858666606952005, -0.0006882727407652, -0.0075053388957873, -0.0027805857806548, -0.0006893475118486, -0.0074499521796411, -0.0027741615816762, -0.000690422282932, -0.0074007822902645, -0.0027677373826975, -0.0006914714507518, -0.0073494529910589, -0.0027602899758355, -0.0006924874527207, -0.007298050827789, -0.0027533693226277, -0.0006935579023307, -0.0072464882838497, -0.0027460644278811, -0.0006945144924921, -0.0071999604142222, -0.002739093475962, -0.0006954894928201001, -0.0071552989062372, -0.0027325372886721, -0.0006964436865576, -0.0071057313876274, -0.0027251714759307, -0.0006973978802951, -0.0070561638690176, -0.0027176146486872, -0.0006983685042262, -0.0070124972687115, -0.0027106269063424, -0.0006992131410853, -0.0069699046565645, -0.0027036693009504, -0.0006999761046346, -0.006927944132472, -0.0026965067140898, -0.000700866495031, -0.0068795459436055, -0.0026893506412815, -0.000701797715226, -0.0068375495852664, -0.0026815823845199, -0.0007025661062022, -0.0067956333994131, -0.0026737438648692, -0.0007033344971784, -0.0067495400914149, -0.0026666694153281, -0.0007041028881546, -0.0067137292303224, -0.0026587944670793, -0.0007047952394101, -0.00666756949019, -0.0026510634726172, -0.0007056332395681, -0.0066268614942498, -0.0026438086960835, -0.000706391201273, -0.0065861534983096, -0.0026365539195499, -0.0007070748336071, -0.0065441133941877, -0.0026289809679075, -0.0007077812136235, -0.0065025484998273, -0.0026203040222085, -0.0007084178476649, -0.0064633585645253, -0.0026126655849361, -0.0007090225283982, -0.0064241686292233, -0.0026049372632875, -0.0007096272091315, -0.0063849786939213, -0.0025978384282717, -0.0007102253396159, -0.0063457887586193, -0.0025890589555185, -0.0007108379623987, -0.0063040685233105, -0.0025808859699232, -0.0007114678964302, -0.0062669986224723, -0.0025734916481293, -0.0007119354729016, -0.0062274522278763, -0.002565270774237, -0.000712496747808, -0.0061886928932714, -0.0025575777408602, -0.000713009316097, -0.0061498057170534, -0.0025498492152617, -0.000713570341701, -0.0061109266174935, -0.002541722957608, -0.0007139915659591, -0.0060749863360812, -0.002532658197961, -0.0007144595826743, -0.0060357932271839, -0.0025254730337863, -0.0007148357233737, -0.005996768191865, -0.0025172363098771, -0.0007152118640731, -0.0059592547202338, -0.002508999585968, -0.0007155871854844, -0.0059210534700154, -0.0025007628620588, -0.000716053273595, -0.005884153148317, -0.0024922624831313, -0.0007163777193339, -0.0058474533442132, -0.0024841464275446, -0.0007165887466528, -0.0058115158836167, -0.0024760303719579, -0.0007170295660578, -0.0057732397580296, -0.0024679143163711, -0.0007173678330216, -0.0057355141016838, -0.0024595270083037, -0.0007177060999853, -0.0056985121854566, -0.002451287857413, -0.000717921510828, -0.0056615919493375, -0.0024429727366522, -0.0007181579589982, -0.0056246717132184, -0.0024347540201035, -0.0007183944071684, -0.0055860296391364, -0.0024255007744884, -0.0007186308553386, -0.0055515166674432, -0.002417673889309, -0.0007188582307381, -0.0055150576647062, -0.0024093678788387, -0.0007189194060276, -0.0054785986619693, -0.0024010618683685, -0.0007191513723843999, -0.0054424810087425, -0.0023927558578982, -0.000719281373798, -0.0054063411957115, -0.0023844498474279, -0.0007194113752116, -0.0053702013826805, -0.0023753568267619, -0.0007195413766252, -0.0053340615696495, -0.0023675765157637, -0.0007196724861077, -0.0052979217566184, -0.0023592603267269, -0.0007197693399208, -0.0052616636580815, -0.0023509441376901, -0.0007197782059459, -0.0052253444983061, -0.0023426279486533, -0.0007198167893542, -0.0051897851168945, -0.0023344984971282, -0.0007198065513861, -0.0051545014423759, -0.00232589869045, -0.000719796313418, -0.0051191229136025, -0.0023172530226171, -0.0007197860754499, -0.0050839856262323, -0.0023086073547843, -0.0007197758374818, -0.0050488483388621, -0.0023006085374929, -0.0007197655995137, -0.0050137197710696, -0.0022922941605768, -0.0007197553615456, -0.0049781967230421, -0.0022840935149768, -0.0007197451235775, -0.0049431476497357, -0.0022755944111085, -0.0007194998611181, -0.004908410107781, -0.0022670378711532, -0.0007193679371019, -0.0048736725658262, -0.0022587256982614, -0.0007192670065737, -0.0048392565052356, -0.0022505405186061, -0.0007191660760455, -0.0048048358835746, -0.0022422480045486, -0.0007190651455173, -0.0047704152619135, -0.002233713410259, -0.0007189372150339, -0.0047364064760821, -0.0022252184550413, -0.0007187111443786, -0.004701643363325, -0.0022176487069053, -0.0007184850737233, -0.004668926670264, -0.0022091827445929, -0.000718259003068, -0.0046333709935822, -0.0022002372748155, -0.000718185478388, -0.0046000773365218, -0.0021923339393067, -0.000717856047545, -0.0045667836794613, -0.0021840853811081, -0.0007176135788945, -0.0045331162697275, -0.0021757946736749, -0.0007173762262015, -0.0044992136683468, -0.0021672621044842, -0.0007171186768218, -0.0044653110669662, -0.002159346980359, -0.0007168294801295, -0.0044325472189336, -0.0021510927182363, -0.0007165122262894, -0.0044000902204747, -0.0021428384561136, -0.0007161949724493, -0.0043679398626953, -0.0021340986592356, -0.0007158777186092, -0.0043342487356257, -0.0021259190255061, -0.0007155368329953, -0.0043019454336619, -0.0021178187221824, -0.000715221635341, -0.004269642131698, -0.0021097184188588, -0.0007148906493861, -0.0042373388297342, -0.0021016181155351, -0.0007144975182846, -0.0042050355277704, -0.0020932202547117, -0.0007141043871832, -0.0041737353603142, -0.0020846412821667, -0.0007137112560817, -0.0041422821224863, -0.0020770210323224, -0.0007133181249802, -0.0041109410181582, -0.0020687103387127996, -0.0007127261546698, -0.0040792605945633, -0.0020605467444665, -0.0007124590122827, -0.0040480001961413, -0.0020524967815802, -0.0007119952929518, -0.004017068887086, -0.0020444468186939, -0.0007115688247357, -0.0039869078652965, -0.0020358347853191, -0.0007110866267808, -0.0039567468435071, -0.0020282035015091, -0.0007106356941833, -0.0039259860921417, -0.0020200611093127, -0.0007101599947063, -0.0038957569614511, -0.0020118555320416, -0.0007096842952293, -0.0038655278307606, -0.0020036499547705, -0.0007091752108479, -0.0038352971205271, -0.0019956955843876, -0.0007086238895989, -0.0038064960818872, -0.0019876698008814, -0.0007081125788642, -0.0037776161784433, -0.0019796182856573, -0.0007076012681296, -0.0037481556192203, -0.0019717222937269, -0.0007070848981457, -0.0037185808498993, -0.0019635401723105, -0.0007064504886157, -0.0036899201818425, -0.00195558995112, -0.0007059061304505, -0.0036612779324392, -0.0019476397299294, -0.0007053692487739, -0.003632635683036, -0.001939664674357, -0.0007047668468314, -0.0036049041196426, -0.0019318937490383, -0.0007041160714032, -0.0035769773323789, -0.0019238563804939, -0.0007034652959751, -0.0035485474974149, -0.0019159950987077, -0.0007029121951846, -0.0035213193004180006, -0.0019081338169216, -0.0007021771751762999, -0.0034935617481705, -0.0019002725351354, -0.0007016030918318, -0.0034660440732971, -0.0018920224807947997, -0.0007010290084872, -0.003438753557689, -0.0018847697449252, -0.0007003603257629, -0.0034122113981524, -0.0018763734191556, -0.0006996480321752, -0.003385707379352, -0.0018689471780698, -0.0006989357385876, -0.0033590786977764, -0.0018612524056548, -0.0006982234449999, -0.0033324708342828, -0.0018535576332398, -0.0006975111514123, -0.0033057883601749, -0.0018458536339424, -0.0006967202563465, -0.0032799778978317, -0.0018381377500557, -0.0006960710371564, -0.0032546157631142, -0.0018304218661691, -0.0006953443223028, -0.0032291859180623, -0.0018229657061193, -0.0006946072476542, -0.0032032993021561, -0.0018149070599226, -0.000693874623884, -0.0031774126862498, -0.0018074804043373002, -0.0006931377795553, -0.0031524892833985, -0.001799884948005, -0.0006923654368679, -0.0031280471798728, -0.0017922894916727, -0.0006915704690692, -0.0031035332859373, -0.0017848294400498, -0.0006907780780518, -0.0030788379576178, -0.0017773417301988, -0.0006899825860666, -0.003054178574285, -0.0017694352606076, -0.0006892483797187, -0.0030302293904284, -0.001762292709686, -0.000688356688438, -0.0030063088907929, -0.0017548385762602, -0.0006875293463414, -0.0029822314593149, -0.0017473844428344, -0.0006867020042447, -0.0029596093978294, -0.0017398973489104, -0.0006858746621481, -0.0029345278498627, -0.0017323663028172, -0.0006850467539663, -0.0029120530975224, -0.0017248831541924, -0.0006841786945941, -0.0028891855555847, -0.0017177894952054, -0.0006833385949507, -0.0028661237488041, -0.0017105299189813, -0.0006824550104563, -0.0028430672592261, -0.0017031140302848, -0.0006815609405629, -0.0028200107696481, -0.0016958035536266, -0.0006806717568822, -0.0027987269588904, -0.0016888206191084, -0.0006798179246837, -0.0027763216806235, -0.0016813850768859, -0.000678902983228, -0.0027539505817865, -0.0016740818855858, -0.0006779814353311, -0.0027320107783795, -0.0016670377830038, -0.0006770598874342, -0.002709918911346, -0.0016598287644271, -0.0006761132867489, -0.002688801532531, -0.0016527378586816, -0.0006752347177873, -0.0026676841537159, -0.0016456469529361, -0.0006743113793732, -0.0026467059953822, -0.0016385395913511, -0.00067337951097, -0.0026257590716723, -0.001631242532369, -0.0006724554564251, -0.0026042317848652, -0.0016244227544254, -0.0006714790663526, -0.002584026617073, -0.0016174778010999, -0.0006705535158694, -0.0025638214492807, -0.0016105328477744, -0.0006696231350019, -0.0025436162814884, -0.0016035682348798, -0.0006686058076995, -0.0025236265785265, -0.001596499377036, -0.0006675588424045, -0.0025038393320384, -0.0015894305191922, -0.0006666577516098, -0.0024840829174981, -0.0015825411398701, -0.0006657227310121, -0.0024640705091458, -0.0015759351458513, -0.0006647025455078, -0.0024447780940997, -0.0015692346043917, -0.0006637352883507, -0.0024254856790536, -0.0015621768318786, -0.0006627728880466, -0.0024061932640073998, -0.001555133163259, -0.0006617331844119, -0.0023876140261706, -0.0015485092574113, -0.0006607138957784, -0.002369176482015, -0.0015418959211937, -0.0006597025796632, -0.0023505469236107, -0.0015352825849761, -0.000658625309268, -0.0023322084245734, -0.0015284844685723, -0.0006576713520227, -0.0023138071029552, -0.001521648529863, -0.0006566283452067, -0.0022956714453878, -0.0015152273600347, -0.0006555853383906, -0.0022782003868179, -0.0015085038725164, -0.0006545423315746, -0.0022600666639275, -0.0015021039162824, -0.0006534993247585, -0.0022428285005192, -0.0014952948586437, -0.0006524660702404, -0.0022255903371108, -0.0014888359995509, -0.0006514391998833, -0.0022083521737025, -0.001482377140458, -0.0006502624173756, -0.0021911140102942, -0.0014759010283861, -0.0006492334719946, -0.0021737997358976, -0.001469443156174, -0.0006481845783786, -0.0021569883873312, -0.0014628527329606, -0.0006471652019458, -0.0021407102346608, -0.0014564853819082, -0.0006460997668304, -0.0021237343456312, -0.0014501180308557, -0.0006449475061984, -0.0021075503618665, -0.0014437506798032, -0.0006438485078025, -0.0020912986594125, -0.0014374017154138, -0.0006427654465429, -0.0020750469569584, -0.0014310501548233, -0.0006416474921875, -0.0020587952545044, -0.0014248129143897, -0.0006405253331968, -0.0020425435520504, -0.0014184234545152, -0.000639432478559, -0.0020270227778407, -0.0014120339946408, -0.0006383468840662, -0.0020115754242505, -0.0014058442599591, -0.0006372449058915, -0.0019961280706603, -0.0013997365320333, -0.0006360847092818, -0.0019806807170701, -0.0013936288041076, -0.0006349290269109, -0.0019656174752458, -0.0013875210761818, -0.0006337466969733, -0.0019505652842957, -0.0013812782704588, -0.000632641478854, -0.0019355151617828, -0.0013751613944419, -0.0006315130575417, -0.0019204650392699, -0.0013690445184249, -0.0006303678792773, -0.0019054506464465, -0.0013629849313363, -0.0006291922600058, -0.0018911377855055, -0.001356912390574, -0.0006280166407344, -0.0018769712720732, -0.0013508606717056, -0.0006268410214629, -0.0018625664199496, -0.0013450112454309, -0.0006257520845704, -0.0018481615678260003, -0.0013390365225677, -0.0006245723523137, -0.0018334240403182, -0.0013330459539878, -0.0006233617406387, -0.0018198516535089, -0.0013271691015563, -0.0006222110762525, -0.0018061886914806, -0.001321215141594, -0.0006209982101475, -0.0017925257294522, -0.0013153238775829, -0.0006198723739205, -0.0017788627674238, -0.0013093918942074, -0.0006187018207897, -0.0017651723301659, -0.0013036514493051, -0.0006175378703101, -0.0017515321193007, -0.0012978679560062, -0.00061633949998, -0.0017385897013646, -0.001292092572987, -0.0006151411296499, -0.0017251377421517, -0.0012863317195157, -0.0006139077267476, -0.0017121944510196, -0.0012805926449543, -0.0006127896954363, -0.0016992511598876, -0.0012748310977361, -0.0006116418347051, -0.0016863078687555, -0.0012691717988745, -0.0006104106469198, -0.0016733645776235, -0.0012635125000129, -0.000609180692584, -0.0016610272221852, -0.0012578933308143, -0.0006079507382481, -0.0016481311026191, -0.001252338307744, -0.0006067772880985, -0.0016358949964283, -0.00124667389459, -0.0006056238137379, -0.0016236588902375, -0.0012411463364568, -0.0006044463562355, -0.00161125515127, -0.0012356187783237, -0.0006032076720009, -0.0015989191254204, -0.0012300912201905997, -0.0006019816002949, -0.0015875652730913, -0.0012245636620575, -0.0006007943736859, -0.0015751841038772, -0.0012190320056422, -0.0005994919285059, -0.0015636046001782, -0.0012136407706088, -0.0005983190019341, -0.0015518941866442, -0.0012082398333616, -0.0005971643728195, -0.0015400769298288, -0.0012028606607397, -0.0005959664972806, -0.0015286772493856, -0.0011974389459517, -0.0005947686217418, -0.0015173823485406, -0.0011920017716598, -0.0005935203297044, -0.0015060332802457, -0.0011867049259348, -0.0005923342793523, -0.0014948444087412, -0.0011814735718188, -0.0005910880533284, -0.0014838347393376, -0.001176154850933, -0.0005898485958551, -0.0014723914806561, -0.0011707743391695, -0.0005886091383818, -0.0014617627573137, -0.0011653976520328, -0.0005873908718305, -0.0014510808189875, -0.0011603051676244, -0.0005861748266634, -0.0014403486079348, -0.0011550702202045, -0.0005849587814964, -0.0014296163968822, -0.0011499897432829, -0.0005837138842206, -0.001419323991237, -0.0011448088679113003, -0.0005824891717771, -0.0014089440782866, -0.0011396873706494, -0.0005812651743809, -0.0013982798172504, -0.0011345658733874, -0.0005800231844478, -0.0013880729049886, -0.0011294443761255, -0.0005787697703011, -0.0013778659927268003, -0.0011242308095326, -0.000577533867844, -0.0013680804631716, -0.0011193961408248, -0.0005763045556722, -0.0013580281124906, -0.0011140849509121, -0.0005750661582734, -0.0013478842403506, -0.0011092842147971, -0.0005737773860611, -0.0013382823862754, -0.0011043157286141, -0.0005725503811437, -0.0013286805322002, -0.001099354540589, -0.0005712914257581, -0.0013189355255095, -0.0010943938777308, -0.0005700324703725, -0.0013093099087386, -0.0010894128659769, -0.0005687735149869, -0.0012996842919677002, -0.001084431854223, -0.0005675097682552, -0.0012900586751968, -0.0010795901615188, -0.0005662565841737, -0.0012809255764534, -0.0010748124586556, -0.0005649985053381, -0.0012718334870868, -0.0010699456871883, -0.0005637642822264, -0.0012626443900178, -0.0010651086465646, -0.0005624897703347, -0.0012536726251017, -0.0010603744466599, -0.000561233158652, -0.0012446169077368, -0.0010555637895527, -0.0005599428102459, -0.0012357738559526, -0.001050820068925, -0.000558717326337, -0.0012269308041683, -0.0010460374685581, -0.0005574600580222, -0.0012181158257807, -0.0010413760777168, -0.0005561781950023, -0.001209460561677, -0.0010367229108881, -0.0005548906028004, -0.0012009129680223, -0.0010320209814477003, -0.0005536400705326, -0.0011923647678234, -0.0010273412058881, -0.0005523963137663, -0.0011838164468995, -0.0010227140547039, -0.0005511525569999, -0.0011757236104193, -0.0010180869035197, -0.0005498728616248, -0.0011669012373268, -0.0010134752093902, -0.0005485794222723, -0.0011588054433455, -0.0010089506125845, -0.0005472859829197, -0.0011507096493642, -0.0010044237425555, -0.0005460458942188, -0.0011426138553829, -0.0009998976769205, -0.0005447628637322, -0.0011345180614016, -0.000995495079265, -0.0005435067641368, -0.0011264222674203, -0.0009909244545451, -0.0005421843379198, -0.001118326473439, -0.0009864678214793, -0.0005409655347429, -0.0011107807189138, -0.0009820325971077, -0.000539689922498, -0.0011029033943209, -0.000977597372736, -0.0005384143102531, -0.0010950437593227, -0.0009731621483643, -0.0005371210521882, -0.0010875048368032, -0.000968786973843, -0.0005358892169829, -0.0010797149852513, -0.0009645109360617, -0.0005346030920978, -0.0010722202700062, -0.0009601579823865, -0.0005333320581708, -0.0010647255547611, -0.0009558050287113, -0.0005320665053913999, -0.0010572308395159998, -0.0009514520750361, -0.0005307659440994, -0.001049989019305, -0.000947259686503, -0.000529513438927, -0.0010427341462033, -0.0009429874439936, -0.0005282609337546, -0.001035692213056, -0.0009387337208361, -0.0005270084285822, -0.0010284843796268, -0.0009345230124447, -0.0005257232680122, -0.0010214434961317, -0.0009301858543086, -0.0005244035412978, -0.0010142813007021, -0.0009261058749854, -0.0005232170344378, -0.0010073412300502, -0.0009220123524262, -0.0005219418174782, -0.0010003519988883, -0.0009178434460101, -0.0005206591595382, -0.0009933875869795, -0.0009136923846148, -0.0005194056256721, -0.0009866569376854, -0.0009095055089697, -0.000518152091806, -0.0009799453651166, -0.0009054540079573, -0.0005168470542317, -0.0009731917258584, -0.0009013748673889, -0.0005156458808159, -0.0009665998532672, -0.000897351995162, -0.0005143858123969, -0.000960007980676, -0.0008933329462491, -0.0005131248937254, -0.0009533508854839, -0.0008893047312461, -0.0005118588042951, -0.0009469658824781, -0.0008853146347395, -0.0005106002855707, -0.000940568574765, -0.0008813674558258, -0.0005093623381538, -0.0009341705328488, -0.0008774181001407, -0.0005081059555869, -0.0009277394185792, -0.0008733927772252, -0.0005068429284585, -0.0009213083043096, -0.0008695051023059, -0.0005056004809967, -0.000915189140365, -0.0008656143599931, -0.0005043580335348, -0.000909086353175, -0.0008616983712694, -0.0005031155860729, -0.000902983565985, -0.0008577823825458, -0.0005018386107367, -0.0008968455632345, -0.0008539635706166, -0.0005005784635945, -0.0008906720434544, -0.000850147360529, -0.0004994209178987, -0.000884813294101, -0.0008463162281197, -0.000498152302566, -0.0008789267310512, -0.0008424796528586, -0.0004969053150761, -0.0008729891254002, -0.000838723953375, -0.0004956726244964, -0.0008670515197492, -0.0008349634709325, -0.0004944399339167, -0.0008611612471871, -0.0008312168234285, -0.000493207243337, -0.0008555092712236, -0.0008274701759245, -0.0004920052077908, -0.000849890147112, -0.000823716915081, -0.0004907431274328, -0.0008442222830155, -0.0008200713894401, -0.0004895188576486, -0.000838533612904, -0.0008164081691737, -0.0004882875476144, -0.0008328449427925, -0.0008127348899767, -0.0004870503850797, -0.000827453586855, -0.0008091017884652, -0.0004858410894276, -0.0008220017499703, -0.0008054686869537, -0.0004846107236078, -0.0008165499084891, -0.0008018747593049, -0.0004833894416116, -0.0008110980670079, -0.0007982907667230001, -0.0004821681596154, -0.0008057367314885, -0.0007947702841711, -0.0004809468776193, -0.0008004924575287, -0.000791164550717, -0.00047970970558129997, -0.0007952481835689, -0.0007876844513987001, -0.0004785043628513, -0.000790075908225, -0.0007842206721155, -0.0004772990201213, -0.0007848599072416, -0.0007806989075587, -0.0004760823994884, -0.0007796439062581, -0.000777158151812, -0.0004748861175177, -0.00077458931201, -0.0007737877981457, -0.0004736696419911, -0.0007695689828324, -0.0007703285095173, -0.0004724302333973, -0.0007645589259536, -0.0007668606711776, -0.0004711908248034, -0.0007594942291498, -0.0007634664359442, -0.0004700142546201, -0.0007546052085952, -0.0007600694599065, -0.0004688162512674, -0.0007497225469567, -0.0007567410321686, -0.0004675816948649, -0.0007448398853181, -0.0007533398569904, -0.0004663964278384, -0.0007399927269553, -0.0007500236819525, -0.0004651964358268, -0.0007351293103381, -0.0007467075069146, -0.0004639828214706, -0.000730380967879, -0.0007433913318767, -0.0004627864071167, -0.0007257679433839, -0.0007400928302605, -0.0004615813303575, -0.0007211549188888, -0.0007368563211057, -0.0004603739159368, -0.0007165179113396, -0.0007335879801221, -0.0004591665015162, -0.0007119929184703, -0.0007303459565264002, -0.0004580266816084, -0.0007073893346036, -0.0007271011926736, -0.0004568043349981, -0.0007028600229735001, -0.0007238983396846, -0.0004556134602544, -0.0006983492773482, -0.0007206928454046, -0.0004544129123381, -0.000693886106427, -0.0007175076950435, -0.0004532123644219, -0.0006894451006919, -0.0007143263701036, -0.0004520425740383, -0.0006850040949569, -0.0007111599098683, -0.0004508643380898, -0.0006805630892219, -0.0007080252145928, -0.0004496482504744, -0.0006763756746900999, -0.0007048913085699, -0.0004484950408584, -0.0006720143255198, -0.0007017805057198, -0.0004473096480099, -0.0006677292900980001, -0.0006986837220171, -0.0004461242551614, -0.0006635798760072, -0.0006955731277007, -0.000444938862313, -0.0006593997442684, -0.0006925047795116, -0.000443758293258, -0.0006551886488733, -0.0006894364313225, -0.0004425751313232, -0.0006509775534782, -0.0006863680831334, -0.0004414122580823, -0.0006468813787658, -0.0006833344758822, -0.0004402398148214, -0.0006427686972517, -0.000680284494037, -0.0004390586902301, -0.0006388098113687, -0.0006773000431692, -0.0004378783159366, -0.0006348509254858, -0.0006743155923013, -0.0004366979416432, -0.0006308920396029, -0.0006713595473913, -0.0004355517914136, -0.0006269214275912, -0.0006683738053195, -0.0004343724903087, -0.0006229586181936, -0.0006653880632477, -0.0004332202910668, -0.0006191566175431, -0.0006624201599483, -0.0004320680918249, -0.0006153232861929, -0.0006595412272498, -0.0004309036626337, -0.0006114770120649, -0.0006566663381174, -0.0004297242107181, -0.0006076307379368, -0.000653791448985, -0.0004285869017139, -0.0006037844638087999, -0.0006508708780977, -0.0004274430843416, -0.0006001462718652, -0.0006479636953673, -0.0004262809001781, -0.0005965016202136, -0.0006451324742974, -0.0004251196391172, -0.0005928535734265, -0.0006423100607809, -0.0004239737935314, -0.0005892243411779, -0.0006394792602932, -0.0004228279479457, -0.0005855230890564, -0.0006366484598055, -0.00042169036109669997, -0.0005819221294035, -0.0006338390253845, -0.0004205447521588, -0.0005785063292805, -0.0006310790428178, -0.0004194005534747, -0.0005749228592405, -0.0006283391661439, -0.0004182767124888, -0.0005713993891872, -0.0006255438999929, -0.0004171220222078, -0.0005678731734072, -0.0006227669889807, -0.0004159895983612, -0.0005644268824037, -0.0006200255337523, -0.0004148440130289, -0.0005610414824095, -0.0006173480750179, -0.000413715515259, -0.0005576560824152, -0.000614673048333, -0.0004125797887719, -0.000554270682421, -0.0006119414196862, -0.0004114591326492, -0.0005509530329773, -0.000609230529076, -0.0004103248570169, -0.0005476345582869, -0.0006065976008005001, -0.0004092081990032, -0.0005443688096459, -0.0006039583102913, -0.0004080915409895, -0.000541106730871, -0.0006013140894083, -0.0004069748829757, -0.0005378459540213, -0.0005986841324962, -0.000405858224962, -0.0005346096869029, -0.000596049926088, -0.0004046777789154, -0.0005314162207101, -0.0005934578637932, -0.0004036298687604, -0.0005282864302495, -0.0005908640372836, -0.0004024841912852, -0.000525123128966, -0.0005882803946223, -0.00040138273185630005, -0.0005219893376852, -0.000585696751961, -0.0004002812724274, -0.0005188365176509, -0.0005831020133504, -0.0003991798129985, -0.0005157977892481, -0.0005805865612325, -0.0003980702277107, -0.0005127590608452, -0.0005780711091145, -0.0003969782222878, -0.0005097082199846, -0.0005755556569966, -0.0003958862168648, -0.0005066955997587, -0.0005730411262107, -0.000394773280798, -0.0005036375507069, -0.0005704774359282, -0.0003936665113617, -0.0005006965249307, -0.000568075295003, -0.00039259841638080004, -0.000497805857292, -0.000565564432263, -0.0003915022240977, -0.0004947991212514, -0.0005630985060854, -0.0003904226773059, -0.0004918970698967, -0.0005606325799079, -0.0003893466812315, -0.0004889851779522, -0.0005581742560949, -0.0003882486177026, -0.0004861273442815, -0.000555768221413, -0.0003871622456393, -0.0004832703724021, -0.0005533621867311, -0.0003860901318679, -0.0004804272737844, -0.0005509561520492, -0.0003850180180964, -0.0004775904184147, -0.0005485501173673, -0.0003839459043249, -0.0004747452840585, -0.0005461440826854, -0.0003828227424024], "Bz": [-0.0011700953437782, 0.000226480086027, 0.0004121396007212, -0.001174790575521, 0.000230876277319, 0.0004148025696297, -0.001179422938636, 0.0002352720662439, 0.0004174550356053, -0.001184055301751, 0.0002396678551688, 0.0004201315147112, -0.0011891929039375, 0.0002441024643245, 0.0004228218165779, -0.0011941197612011, 0.0002487670372061, 0.0004255121184447, -0.0011992521609092, 0.000253439867369, 0.0004282024203114, -0.0012044557344526, 0.0002579938923801, 0.0004308978997428, -0.001209659307996, 0.0002625855753655, 0.0004336214483373, -0.0012150001616914, 0.0002674045379732, 0.0004363306378805, -0.0012199940825792003, 0.0002722235005809, 0.0004391009641183, -0.0012253312480413, 0.0002770424631886, 0.0004418708324289, -0.0012307920118332, 0.0002818457545828, 0.0004446407007395, -0.0012362527756252, 0.000286899054953, 0.0004474105690502, -0.0012414244922337, 0.0002919523553232, 0.0004501804373608, -0.0012468942645025, 0.0002970133175854, 0.0004529710091366, -0.0012524638629474, 0.0003020788921391, 0.0004558219375259, -0.0012580334613924, 0.000307170422598, 0.0004586750163241, -0.0012635138419708, 0.0003123063106566, 0.000461526714324, -0.0012688148672755, 0.0003175738207993, 0.000464378412324, -0.0012743890629002, 0.0003228831932329, 0.0004671678737777, -0.0012799450620711997, 0.0003282062677197, 0.0004700886178892, -0.0012855010612423, 0.0003336268079417, 0.0004729996948708, -0.0012910472133672, 0.0003390678312911, 0.0004759520356844, -0.0012963620043518, 0.0003445893289204, 0.000478904376498, -0.0013016767953365, 0.0003501677287899, 0.0004818278702155, -0.0013074468769344, 0.0003557815365625, 0.000484743852919, -0.0013126875078228, 0.000361400676632, 0.0004877497420527, -0.0013184219347489, 0.0003672136798153, 0.0004907251902566, -0.0013241519401515, 0.0003729964996705, 0.0004936873620459, -0.0013296315837728, 0.0003788133093633, 0.0004966782905113, -0.001335160139599, 0.000384630119056, 0.0004996497246862, -0.0013406886954252, 0.0003907057872344, 0.0005027123607647, -0.0013461071077717998, 0.0003967522264177, 0.0005056255637270999, -0.0013519262502228, 0.000402798665601, 0.0005087032707734, -0.0013579073791524002, 0.0004089391618798, 0.0005117809778197, -0.0013635257122737, 0.0004152110835267, 0.000514858684866, -0.0013695160116336, 0.0004214830051737, 0.0005179236784557, -0.0013749328310216, 0.0004277466853393001, 0.0005210625386705, -0.001380262202254, 0.0004340316542312, 0.0005242076120538, -0.001385638844427, 0.0004405969673175, 0.0005272809812819, -0.0013910260860543, 0.000447171900731, 0.0005304159667911, -0.0013963894397025, 0.0004537994573446, 0.0005335509523003, -0.0014026781115884, 0.0004602828440951, 0.0005367006532396, -0.0014083744177295, 0.0004670089341486, 0.0005398303536531, -0.0014140829229963, 0.0004738108698256, 0.0005430620296022, -0.0014198260735006, 0.0004806641982247, 0.0005462937055513, -0.0014257746423569, 0.0004877005079252, 0.0005494791471691, -0.0014312315660269, 0.0004945395708782, 0.0005527197615033, -0.0014369013160933, 0.0005016223862386, 0.0005559603758374, -0.0014425710661597, 0.0005086973558575, 0.0005592009901716, -0.0014477721399285, 0.0005157782663468, 0.0005623965783243, -0.0014535305338425, 0.0005230989282901, 0.0005657346111138, -0.0014592889277566, 0.0005304423254786, 0.0005690726439032, -0.0014650185871574, 0.0005378047610555, 0.0005723261033516, -0.0014707072893427, 0.0005454853594666, 0.000575666726329, -0.0014763132811999, 0.0005529588075929, 0.0005790073493064, -0.0014821870085342, 0.0005606559228602, 0.0005823479722837, -0.0014879496506168, 0.0005683530381274001, 0.0005856885952611, -0.0014933005612739, 0.0005760501533947, 0.0005890462120664, -0.001498988346639, 0.000584131819927, 0.0005924654896594, -0.0015046937437769, 0.0005915017349603, 0.0005958259489528, -0.0015104491890316, 0.0005997254420243, 0.0005992238418249, -0.0015162046342863, 0.0006078766172724, 0.0006026395009072, -0.0015219949192194, 0.0006161291638587, 0.0006060551599895, -0.0015271419520229, 0.000624381710445, 0.0006094142722825, -0.0015324634092979, 0.0006326830200378, 0.0006129205361128, -0.0015379075584515, 0.0006410598661399, 0.0006164079464588, -0.001543801029788, 0.0006494130393401, 0.0006199435257933, -0.0015496945011245, 0.0006581078512756, 0.0006234149718799, -0.0015555268537368, 0.0006666758669074, 0.0006269044086111, -0.0015613223077187, 0.0006754625971686, 0.0006304037326377, -0.0015667331756198, 0.0006842694193683, 0.0006339398176686, -0.0015719231551924, 0.0006931198873317, 0.0006375065641664, -0.0015773818508038, 0.0007019703552951, 0.0006410733106641, -0.0015826440562319, 0.0007108208232585, 0.0006446187552176, -0.0015877475007841, 0.0007196712912219, 0.0006482193203554, -0.001593094715205, 0.0007292635202923, 0.0006518198854932, -0.0015985992181147, 0.0007381087141101, 0.000655420450631, -0.0016043254889733, 0.0007476251359492, 0.0006590210157688, -0.0016099102138378, 0.0007571415577884, 0.0006626836981847, -0.0016155487611214, 0.0007666579796275, 0.0006661191807474, -0.001621298228835, 0.0007761744014666, 0.00066994068528, -0.0016263771632971, 0.0007857980943242, 0.0006736066964235, -0.0016310749969705, 0.0007956286276789, 0.0006772727075669, -0.0016362273269043, 0.0008055903337794, 0.0006809387187104, -0.0016413630523211, 0.0008156845173648, 0.0006846280094815, -0.0016467396618708, 0.0008257836387999, 0.0006883586338856, -0.0016517050205819, 0.0008360006802508, 0.0006920302676396, -0.0016566703792931, 0.0008461472512199, 0.0006957531833998, -0.0016616357380042, 0.0008562425639678, 0.00069947609916, -0.0016664442239569, 0.0008667921805435, 0.0007031990149202, -0.0016711730827315, 0.0008773349557211, 0.0007069219306805, -0.0016759019415061, 0.0008878777308987, 0.000710641844212, -0.0016806308002807, 0.0008984682842417, 0.0007145096276684, -0.0016858424369601, 0.0009092729127164998, 0.0007183153931429, -0.0016921762150884, 0.0009203240646151, 0.0007221211586173, -0.0016964173675452, 0.000931448439039, 0.0007259269240918, -0.001700658520002, 0.0009426235744222, 0.0007297310287126, -0.0017048996724589, 0.0009539033159042, 0.0007335978627903, -0.0017091408249157, 0.0009651617069376, 0.0007374548550155, -0.0017133819773725, 0.0009764200979709, 0.0007413198996876, -0.0017176523920995, 0.0009879725733265, 0.0007451849443596, -0.0017220873443318, 0.0009996776167525, 0.0007490706087002, -0.001726522296564, 0.0010113113752317, 0.0007529494243391, -0.001730722723051, 0.001023167457306, 0.0007567521566255, -0.0017340829606634, 0.0010350235393803, 0.0007607097613165, -0.0017386618714929, 0.0010469022857232, 0.0007646468906034, -0.0017424525225038, 0.0010591414917606, 0.0007685923972024, -0.0017462750228496, 0.0010714983832777, 0.0007725358012954, -0.0017500961671582, 0.0010838552747948, 0.0007764998989664, -0.0017539173114668, 0.001096240688911, 0.0007804791117384, -0.0017577384557753, 0.0011084047723461, 0.0007844929068876, -0.0017615596000839, 0.0011213629310844, 0.0007884444275481, -0.0017648030342937, 0.0011342497071821, 0.0007923855083283, -0.0017678035678753, 0.0011471912528425, 0.0007964026909586, -0.0017703645873624, 0.00116023082505, 0.0008004110591252, -0.0017732111124229, 0.0011734539778167, 0.0008044167596096, -0.0017756130895772, 0.0011866771305833, 0.0008084425802672, -0.0017780150667316, 0.001200073315448, 0.0008125222029856, -0.0017810287025203, 0.0012132746439799, 0.0008165554193678, -0.0017828147956532, 0.0012267150849855, 0.0008205910058584, -0.0017843880070247, 0.001240422062331, 0.000824534681481, -0.0017865371261228, 0.0012541534557338, 0.0008286733656846, -0.0017888571011622, 0.0012679468432454, 0.0008328188989156, -0.0017912188973442, 0.001281740230757, 0.0008369709536294, -0.001793413760359, 0.0012962593181599, 0.000841142249742, -0.0017952671083041, 0.0013104705393762, 0.000845225689861, -0.0017964255351063, 0.0013246817605926, 0.00084930912998, -0.0017968684198922, 0.0013392831374232, 0.0008534432461671, -0.0017984195433434, 0.0013540794766908, 0.0008575682601295, -0.0017992315123441, 0.0013690217832368, 0.000861693274092, -0.0017997275234821, 0.0013834618056975, 0.0008658182880544, -0.0018002235346201, 0.001398510302776, 0.00086997505122, -0.0018002258823652, 0.0014135587998546, 0.0008743737061541, -0.0018016739278702, 0.0014287683083986, 0.000878511494182, -0.0018021916061571, 0.0014442059293334, 0.0008826850645954, -0.0018021547102181, 0.0014593963878938, 0.0008868586350087, -0.0018013830700395, 0.0014751909331064, 0.0008910322054221, -0.0018002844399064, 0.001491088287564, 0.0008952057758355, -0.001798673500662, 0.0015069368284699, 0.0008993793462488, -0.001796904429495, 0.0015230090973643, 0.0009035529166622, -0.0017967249204883, 0.0015393862840638, 0.0009077264870755, -0.0017942263304904, 0.0015553420196484, 0.0009123261828011, -0.0017917277404925999, 0.0015716110722368, 0.0009162819576544, -0.0017892291504947, 0.0015879387618724, 0.0009205666369026002, -0.0017855167646362, 0.0016043919683224, 0.0009248513161509, -0.0017821924841994, 0.001621297008823, 0.0009291359953991, -0.0017806520267372, 0.0016381842717968, 0.0009334206746473, -0.0017764125890862, 0.001655130757259, 0.0009377053538956, -0.0017721731514352, 0.0016720575307839, 0.000942008619754, -0.0017679337137842, 0.0016894185132343, 0.0009463962120233, -0.0017632300240029, 0.0017068568445988, 0.0009506850446403, -0.0017593652412555, 0.0017241828672928, 0.0009549932498299, -0.001754461277459, 0.0017414754203759, 0.0009593014550195, -0.0017495573136625, 0.0017596657708571, 0.0009636096602091, -0.0017437583304342, 0.001777625973598, 0.0009679342419473, -0.0017375598255732, 0.0017955861763388, 0.0009722682483513, -0.0017318354397811, 0.0018135463790796, 0.0009765856461948, -0.0017258684467435, 0.0018328426962026, 0.0009808977612126, -0.0017170966964336, 0.0018508438549805, 0.0009853187125729, -0.0017098334591915, 0.0018687445387058, 0.0009897475817939, -0.0017014007722445, 0.0018873312743755, 0.0009941593707899, -0.0016929680852975, 0.0019064028003376, 0.0009985022018186, -0.0016845353983506, 0.0019254743262997, 0.0010028008938836, -0.0016755530057395, 0.0019445458522618, 0.0010071400727208, -0.0016660744933951, 0.0019636034969792, 0.0010115315791227, -0.0016560708962844, 0.0019829989601589, 0.0010159310027538, -0.0016462427697518, 0.0020023944233386, 0.0010203238200552, -0.0016306044633373, 0.0020217898865182, 0.0010246651159075, -0.0016207558086433, 0.0020411853496979, 0.0010289007868224, -0.0016059627302559, 0.0020620159388805, 0.0010334523664332, -0.0015956240769604, 0.0020813518712167, 0.0010378157287178, -0.0015803102073876, 0.0021016858256466, 0.0010422005326033, -0.0015649963378147, 0.002122130200091, 0.0010465853364889, -0.0015514343264533, 0.0021426194650537, 0.0010509970348998, -0.0015341424154192, 0.0021631087300164, 0.0010553419256455, -0.0015182143608209, 0.0021835979949791, 0.0010598035787915, -0.0015014556469984, 0.0022044358885693, 0.0010642558763238, -0.001484696933176, 0.0022257773135136, 0.0010687081738562, -0.0014682259215158, 0.0022473676763589, 0.0010731505111464, -0.0014522558200065, 0.0022682539909875, 0.0010775351343312, -0.0014321257557431, 0.0022898158218093, 0.0010819217799385, -0.0014112700909378, 0.002311377652631, 0.0010863084255457, -0.0013904144261324, 0.0023327285406789, 0.0010906646228412, -0.0013698432905882, 0.002354236005826, 0.0010951882387461, -0.0013477557060531, 0.0023765806588227, 0.0010996892131722, -0.0013252760569706, 0.0023988019149515, 0.0011041724414671, -0.0013027964078882, 0.0024212327536165, 0.0011085737536813, -0.0012768632194061, 0.0024433704467179, 0.0011129498141931, -0.0012496087529237, 0.0024659428813628, 0.0011173499446098, -0.001222710320666, 0.0024886994972573, 0.0011216511412579, -0.0011935914789662, 0.0025114032863408, 0.0011262597335285, -0.0011681809044823, 0.0025341070754243, 0.0011306642069316, -0.0011337647896972, 0.0025568108645078, 0.0011350657192317, -0.0011024497555516, 0.0025802008735141, 0.0011394609602339, -0.001071134721406, 0.0026034193923012, 0.0011439215397668, -0.0010398196872604, 0.0026271236246328, 0.0011483750308636, -0.0010108201423636, 0.0026506958366008, 0.0011528285219604003, -0.0009739296363925, 0.0026742680485688, 0.0011572820130571, -0.0009379659684593, 0.0026978402605368, 0.0011618949742971, -0.0009067164582285, 0.0027218676617076, 0.0011662210804683, -0.0008563926669003, 0.0027457960092448, 0.0011706093869099, -0.0008153201932664, 0.0027697243567819, 0.0011750241997864, -0.0007742477196324, 0.0027934491539686, 0.0011794008006845, -0.0007331752459985, 0.0028184003927629, 0.0011838916776351, -0.0006921027723646, 0.0028433516315572, 0.0011883825545857, -0.0006510302987307, 0.0028683028703515, 0.0011928583981932, -0.0006121885324947, 0.0028936776870734, 0.001197289548546, -0.0005489654431809, 0.0029184860092569, 0.0012017167974459, -0.0005067518919991, 0.0029435116873488, 0.001206131508697, -0.0004546462284219, 0.002968766251051, 0.0012105156706551, -0.0003995667594879, 0.0029940208147532, 0.0012148998326132, -0.000344487290554, 0.0030196253637052, 0.0012192839945713, -0.0002894078216201, 0.0030449290416641, 0.0012235924239704, -0.0002298909217867, 0.0030712237008731, 0.0012281273644377, -0.0001680064892468, 0.0030975699337565, 0.0012325990946483, -0.0001106051235543, 0.0031239293346748, 0.0012370236454375, -4.58450033347286e-05, 0.0031502887355932, 0.0012414694924684, 1.89151168849298e-05, 0.0031766481365116, 0.0012459184274904, 8.36752371045924e-05, 0.00320300753743, 0.0012502924301698, 0.0001538644866968, 0.0032294853437039, 0.001254599707067, 0.0002276722713897, 0.0032559282710689, 0.0012589338477372, 0.0003042569848923, 0.0032823711984338, 0.0012632008698762, 0.0003769568223299, 0.0033088905986034, 0.0012675575179028, 0.0004538614019075, 0.0033358185415031, 0.0012719141659293, 0.0005343016550566, 0.0033627625873426, 0.0012762479130784, 0.0006261890703284, 0.0033896191794957, 0.0012805825476212, 0.0007035794809521, 0.0034171959364441, 0.0012848237100605, 0.0007918464492326, 0.0034447726933925, 0.0012890631168872, 0.0008821296557587, 0.0034722770295171, 0.0012932844783397, 0.0009799400188533, 0.0034981395028842, 0.0012975058397923, 0.001073976972717, 0.003528340009521, 0.001301812126067, 0.0011737481407545, 0.0035562160071033, 0.0013062110069342, 0.0012756328344679, 0.0035843768149096, 0.00131047007665, 0.0013775175281814, 0.0036108526815472, 0.0013148216265249, 0.0014861780247188, 0.0036396032165213, 0.001319071684509, 0.0015950098975383, 0.0036684049687085, 0.0013233121597211, 0.0017149110049635, 0.0036965183099958, 0.0013275526349331, 0.0018426103537113, 0.0037248748624979, 0.0013318450511988, 0.0019639263135864, 0.003753231415, 0.0013360395222974, 0.0020879019853085, 0.0037816283712372, 0.001340241627854, 0.002211667651678, 0.0038100517587897, 0.0013442663050133, 0.0023458224518748, 0.0038390173805388, 0.001348380396778, 0.0024799339688382, 0.0038674548042495, 0.0013525257452357, 0.0026200661378014, 0.0038957529466407, 0.0013567020525316, 0.0027668877853212, 0.003923772618264, 0.0013610529086734, 0.002913709432841, 0.0039542616896501, 0.0013648841784801, 0.0030605310803607, 0.0039833530897927, 0.0013690442004215, 0.0032102449166610996, 0.0040127046608789, 0.0013732042223629, 0.0033677377829071, 0.0040421468046736, 0.0013773308461488, 0.003556633348152, 0.0040712281960218, 0.0013814291183557, 0.0037352698879318, 0.0041001007261332, 0.0013855273905626, 0.0039159986777679, 0.0041289732562446, 0.0013896673533822, 0.0040918190369149, 0.0041587575074521, 0.0013936125318612, 0.0042842021133466, 0.0041886499770288, 0.00139773077559, 0.004477889523611999, 0.0042185375470548, 0.001401735097134, 0.0046822477645576, 0.0042482891577447, 0.001405720565643, 0.0048866060055032, 0.0042780200447595, 0.0014097060341521, 0.0050984576708386, 0.0043080009885029, 0.0014136915026611, 0.0053176610555686, 0.0043382904210453, 0.0014176099593736, 0.0055458422506096, 0.0043681855006171, 0.0014215925860693, 0.0057847638882598, 0.0043981192559373, 0.0014252727965791, 0.0060234707372303995, 0.0044269837988713, 0.0014291838513946, 0.0062576177152163, 0.0044568691701137, 0.0014330949062101, 0.0065068556267646, 0.0044867801137558, 0.0014371132566672, 0.0067682754230448, 0.0045161404778411, 0.0014414026810001, 0.0070391390537781, 0.0045470147089879, 0.0014450337331337, 0.0073262321479528, 0.0045771430482963, 0.001448836423295, 0.0076133252421275, 0.0046079559804811, 0.001452621108567, 0.0078937336185737, 0.0046379301101489, 0.0014563979405334, 0.0081713197777129, 0.0046676048690416, 0.0014601368847526, 0.0084489059368521, 0.0046976476210124, 0.0014638733791615, 0.008836714736353, 0.0047278470637256, 0.0014676098735704, 0.0091561881430148, 0.0047578452223364, 0.0014713463679793, 0.0095185244921686, 0.004787792246116, 0.0014753958755753, 0.0098648142489437, 0.0048170194620867, 0.0014790014625069, 0.0102152059378818, 0.0048462992836158, 0.0014826070494384, 0.0105655976268198, 0.0048775213479769, 0.0014862126363699, 0.0109814972248539, 0.004907359631067, 0.0014898182233015, 0.0113588860272016, 0.0049371979141571, 0.0014934262957382, 0.0117528767845744, 0.0049667921197397, 0.0014971494145613, 0.012186606259845, 0.0049961863241704, 0.0015007527304554, 0.0126127198638048, 0.0050270491077718, 0.0015043560463495, 0.0130553156987753, 0.0050565707811665, 0.001508014015667, 0.0134979115337458, 0.005086799131728, 0.0015115223902198, 0.0139272181636886, 0.0051170145578451, 0.0015149683409342, 0.014425910292275, 0.0051470307379546, 0.0015184569640378002, 0.0149333122043755, 0.0051770469180642, 0.0015219455871415, 0.015457863561567902, 0.0052068184780665, 0.0015253922669377, 0.0159824149187603, 0.0052363769629349, 0.0015287877576496, 0.0165069662759527, 0.005264964661565, 0.0015321599379244, 0.017060979097726, 0.0052942509561619, 0.0015355321181993, 0.0176292888648659, 0.0053230190099053, 0.0015389042984742, 0.0182413846630771, 0.0053534726864681, 0.0015423931454267, 0.0188555986364269, 0.0053832126473999, 0.0015457262938635, 0.0194978204688974, 0.0054107372920829, 0.0015490424665342, 0.020140042301368, 0.0054397319828098, 0.0015522187248853, 0.0207822641338385, 0.0054689465852066, 0.0015555022911095, 0.0214244859663091, 0.0054981611876034, 0.0015587234236974, 0.022187847469656, 0.0055273757900002, 0.0015619175096823, 0.0228356929087596, 0.0055561674647572, 0.0015651056442559, 0.0236226695268317, 0.0055850385593374, 0.0015678934470929, 0.0244096461449038, 0.0056139096539176, 0.0015712484477103, 0.025196622762975997, 0.0056427807484977, 0.0015744590835324, 0.025983599381048, 0.0056681223434767, 0.0015775753887499, 0.0267357129968736, 0.0056958412007864, 0.0015806145147553, 0.0276065979560759, 0.0057261979881171, 0.0015836536407607, 0.0285215956442029, 0.0057535427343799, 0.0015866960401029, 0.0294596964430027, 0.0057807249577117, 0.0015897403083657, 0.0303977972418025, 0.0058087749093195, 0.0015927033338751, 0.0313358980406023, 0.0058361904163282, 0.001595583179492, 0.0323026395811684, 0.0058636059233369, 0.0015984585328418003, 0.0332297743813405, 0.0058889215630316, 0.0016013233081595, 0.0342831550873308, 0.0059169913623706, 0.0016041002837735, 0.0353029223252083, 0.0059439435715828, 0.0016068762870961, 0.0363406931929468, 0.0059714253056236, 0.0016096552759677, 0.0374278935583192, 0.0059990295103339, 0.0016123940533226, 0.0385150939236917, 0.0060252345117938, 0.0016151155783187, 0.039692705666872, 0.0060514395132538, 0.0016178371033148, 0.0409167667378377, 0.0060771406887968, 0.0016204910740013, 0.0421956952922563, 0.0061023537028823, 0.0016230765133695, 0.043373827529557, 0.0061275447741458, 0.0016256183401111, 0.0446694421028355, 0.0061522326088891, 0.0016281601668527, 0.0459650566761142, 0.0061769204436323, 0.0016307019935943, 0.0472606712493927, 0.0062016769377712, 0.0016331506133395, 0.0485562858226713, 0.0062265916571652, 0.001635646368427, 0.0498535992869567, 0.0062511046060201, 0.001638068310904, 0.0512644334490164, 0.0062748704476831, 0.0016404902533811, 0.0526752676110761, 0.0062988934436821, 0.0016428707327704, 0.0540714801299771, 0.0063213963095464, 0.001645198031974, 0.0555038222370263, 0.0063429752523705, 0.0016474675773249, 0.0569642266128685, 0.0063672868717695, 0.0016497371226757, 0.0584381022169155, 0.0063902888364037, 0.0016520066680266, 0.0599119778209626, 0.0064127455296187, 0.0016541601291295, 0.0615345571328864, 0.0064350638435488, 0.0016563499726507, 0.0631420096899115, 0.0064566967944517, 0.0016584810332113, 0.0646143822736669, 0.006479021074957, 0.001660600203916, 0.0660510670194804, 0.0065008880531619, 0.0016627111465261, 0.0675286724553261, 0.0065198754250499, 0.001664858036614, 0.0693523138343946, 0.006541678399515, 0.0016669264621654, 0.0708957187086867, 0.0065629375078112, 0.0016689261538578, 0.0727860807489274, 0.0065842775244245, 0.0016706069943617, 0.0743428347846275, 0.0066046654911979, 0.0016726226267073, 0.0758995888203275, 0.0066246206630866, 0.001674638259053, 0.0774563428560276, 0.0066429683617301, 0.0016766855787019, 0.0790130968917277, 0.0066625803562443, 0.0016786222664764, 0.0805698509274278, 0.0066816985039769, 0.0016803103586966, 0.0821266049631278, 0.006700816651709499, 0.0016820474889399, 0.0843468434633577, 0.0067173869797457, 0.0016837846191832, 0.0856406292540275, 0.0067355767713661, 0.0016854246560902, 0.087401809454829, 0.006753558896686, 0.0016870240953348, 0.0889659347832605, 0.0067715410220059, 0.0016886223602974, 0.0905300601116921, 0.006788523141709, 0.0016903277457477, 0.0919009870855618, 0.0068050859175255, 0.0016919465155843, 0.0935746562115302, 0.0068213012192545, 0.0016935506147947, 0.0951455677943792, 0.0068371088937419, 0.0016950393819411, 0.0966924639770202, 0.0068536601558043, 0.0016965281490875, 0.0982393601596614, 0.0068689153635748, 0.0016979575823342, 0.0995096807906246, 0.0068841705713452, 0.001699431439585, 0.101200425017518, 0.006897849188838, 0.0017007725652615, 0.102741925264899, 0.0069104558858096, 0.001702113690938, 0.104101107057649, 0.006925450568134, 0.0017031186954244, 0.105393894420524, 0.0069391998197652, 0.0017045549811786, 0.106711798041901, 0.0069526686778978, 0.0017058749532577, 0.108029701663278, 0.0069660274774112, 0.0017070784637132, 0.109329564900419, 0.0069787031146654, 0.0017085043931475, 0.110625725333162, 0.0069905952507511, 0.0017096368386158, 0.111749857014761, 0.0070024873868368, 0.0017107692840841, 0.112868339514225, 0.0070130350353462, 0.0017117271019292, 0.113865719118395, 0.0070241314499823, 0.0017127793312184, 0.114959500641085, 0.0070352001016107, 0.0017139149597835, 0.116115244715826, 0.0070452793464028, 0.0017148653786644, 0.117270988790566, 0.0070550301791186, 0.0017158157975453, 0.11832286129974, 0.0070638868524464, 0.0017167662164262, 0.119286126963954, 0.0070732006224858, 0.0017175968025501, 0.120170954699872, 0.0070815348352747, 0.0017184625115899, 0.121055782435791, 0.0070893130051908, 0.0017192717200335, 0.121901220322352, 0.0070972863266267, 0.0017200092242027, 0.122699186761964, 0.0071025220436731, 0.001720693236939, 0.1234498821103, 0.0071107980788476, 0.0017213772496753, 0.124123768287835, 0.0071194707276502, 0.0017219471200851, 0.124798169009388, 0.0071256349663164, 0.0017225439746268, 0.125463717532074, 0.0071311495137263, 0.0017231641615175, 0.126078442496827, 0.0071366640611362, 0.001723786041491, 0.126693167461579, 0.0071421786085461, 0.0017243272255705, 0.127220837420962, 0.0071421273648469, 0.0017248314340984, 0.12769491896692, 0.0071477648272356, 0.0017253108876412, 0.128169000512877, 0.0071501260008319, 0.0017257142084958, 0.128461457717985, 0.0071562567628722, 0.0017261559591131, 0.129082897945297, 0.0071584500380771, 0.0017265416672165, 0.129468993397123, 0.0071606433132821, 0.0017268406148627, 0.129687650303603, 0.007162836588487, 0.0017270550388566, 0.129891882844397, 0.007165029863692, 0.0017272021614573, 0.130096422344081, 0.0071659502261144, 0.0017273849025287, 0.130271716928769, 0.0071673474423341, 0.0017274500425659, 0.13039341441668, 0.0071668553225532, 0.001727497699419, 0.13051511190459, 0.0071667143455241, 0.0017275453562721, 0.130383194732741, 0.007166573368495, 0.0017275930131252, 0.13053458832312, 0.007166432391466, 0.0017276406699783, 0.130697982966324, 0.0071634645286584, 0.0017272770719963, 0.130526488491562, 0.0071608847396013, 0.001727136184402, 0.130382525791173, 0.0071594448733453, 0.0017271691554382, 0.130211298494551, 0.007155969245721, 0.0017270004901141, 0.130040071197929, 0.0071524936180967, 0.0017268319857685, 0.129916369443871, 0.0071490179904724, 0.0017266516789144, 0.129739904235892, 0.0071455423628481, 0.0017263148585129, 0.129550694306412, 0.0071420667352238, 0.0017260886533199, 0.129163199635685, 0.0071388499676593, 0.0017256873742814, 0.128796084745393, 0.007133254491379, 0.001725286095243, 0.128431186894076, 0.0071276590150987, 0.0017248848162045, 0.127945915136816, 0.0071223955480981, 0.0017244576346275, 0.127454739223973, 0.0071166658093707, 0.0017239117622864, 0.126941829692927, 0.0071109360706433, 0.0017233466704382, 0.126409699417491, 0.0071042501052809, 0.0017227445422467, 0.125553489868094, 0.0070954888505512, 0.0017221185568929, 0.125062109607101, 0.0070889383958879, 0.0017214763323765, 0.124366264426482, 0.0070802058051686, 0.0017207970701098, 0.123670419245862, 0.0070714732144494, 0.0017200865574934, 0.122885284941031, 0.0070625282645336, 0.0017193343620293, 0.122077016492499, 0.0070538579019291, 0.0017184192454417998, 0.121161132301782, 0.0070438012682151, 0.0017175693599569, 0.120249153658137, 0.0070323391464699, 0.0017168828583452, 0.11967165116326, 0.0070208770247246, 0.0017160293369181, 0.118361218223119, 0.0070102718924585, 0.0017149576811927, 0.117448457715261, 0.006999018399348299, 0.0017140080467523, 0.116411005719947, 0.0069873705603617, 0.0017129653944381, 0.115373553724632, 0.0069750169054996, 0.0017119545266821, 0.114336101729318, 0.0069593357279327, 0.001710830095451, 0.113195094592727, 0.0069462133150268, 0.0017097056642199, 0.112039952468278, 0.0069326247323824, 0.0017085812329888, 0.110805385064949, 0.0069220169621077, 0.0017074568017578, 0.109523086801158, 0.0069069705904039, 0.0017062539270022, 0.108243447874495, 0.0068922641852531, 0.0017050335095214, 0.106963808947833, 0.0068775577801023, 0.0017036202245059998, 0.10568417002117, 0.0068622416729123, 0.0017022445252539, 0.104268301617802, 0.0068470200229689, 0.0017009991260906, 0.10279868060516, 0.0068316531648363, 0.0016996276893112, 0.101428194418917, 0.0068161411435322, 0.0016978638316231, 0.0998774274694785, 0.0067998377624771, 0.001696575175347, 0.0983266605200399, 0.0067831369504309, 0.0016950864138822, 0.0967865633008647, 0.0067657975602715, 0.0016935030604701, 0.0952479451200244, 0.006747653063839, 0.0016920846271996, 0.0937016458814111, 0.0067300424461536, 0.0016903656791153, 0.0920289664680526, 0.0067117483095057, 0.001688646731031, 0.090310916646173, 0.0066922842361842, 0.0016869277829467, 0.0886946981569645, 0.0066728278024707, 0.0016852088348624, 0.0870471247376279, 0.0066538514752735, 0.001683477797099, 0.0853740702108801, 0.0066347590557992, 0.0016817198834115, 0.0836487255159816, 0.0066156666363249, 0.001679961969724, 0.0819233808210831, 0.0065957564412926, 0.0016781371751614, 0.0802232592948711, 0.006575356108985, 0.0016762487745483, 0.0784502556153114, 0.006554955776677399, 0.0016743603739352, 0.0766122034331799, 0.0065330565101503, 0.0016724719733221, 0.0748922423170414, 0.0065118161216871, 0.0016704936123622, 0.0732579469646555, 0.0064913847159112, 0.0016684432077531, 0.0715386633682238, 0.0064688173172085, 0.0016663732406159, 0.0698193797717923, 0.0064449204293501, 0.0016642749860289, 0.0681289980999825, 0.0064239383809611, 0.0016620363573876, 0.0664617563035061, 0.0064009009344162, 0.0016599674697564, 0.0647945145070294, 0.0063778634878713, 0.0016578772667167, 0.0631667953272727, 0.0063543392854293, 0.0016557693480879, 0.0613534810261136, 0.0063308395945119, 0.0016536296217486, 0.0595759844555078, 0.006307339903594499, 0.0016513527418251, 0.0578202396984491, 0.0062832813760205, 0.001648979507887, 0.056064660511227, 0.0062603468376141, 0.0016466164081693998, 0.0546689671351738, 0.0062366418784849, 0.0016443673021459, 0.053052301126763, 0.0062120005522253, 0.0016420024953, 0.0512481338144463, 0.0061870708584188, 0.0016396522083707, 0.0497537614328065, 0.0061621411646124, 0.0016371634636158, 0.0482593890511665, 0.0061378043094437, 0.0016347267153942, 0.0467876250373092, 0.006111115754418, 0.0016322899671727, 0.045342529263299, 0.0060844271993923, 0.0016298472334699, 0.0438974334892889, 0.0060591360586065, 0.0016275811562847, 0.0424523377152787, 0.0060326360234345, 0.0016250230226377, 0.0410193953224242, 0.0060061359882625, 0.0016224320133291, 0.0395641343619497, 0.0059796359530904, 0.0016198554456226, 0.0382215564980974, 0.005952860115658, 0.001617278877916, 0.0369489215976097, 0.0059270967187267, 0.001614542810893, 0.0355767141456201, 0.005899398971925, 0.0016120109268517, 0.0342045066936307, 0.0058727436081572, 0.0016093824528547, 0.0328491587223517, 0.005844929902906101, 0.0016066191886113, 0.0315632213724732, 0.0058167399610339, 0.0016040794253235, 0.0303213145551578, 0.005791063408278, 0.0016013709286757, 0.0292709514834141, 0.0057626928769646, 0.0015985290903217, 0.0280265820949152, 0.0057343223456512, 0.0015956814676082, 0.0269751102011363, 0.0057059518143378, 0.0015928232110408, 0.0258209957104725, 0.0056782539689648, 0.0015899079089816, 0.0247450777202221, 0.0056504592987137, 0.0015869926069224, 0.023648897089107, 0.0056220978854356, 0.0015840525638507, 0.0225754397331075, 0.0055941473586768, 0.0015810991929038, 0.0215927001770893, 0.0055661968319181, 0.0015781458219569, 0.0206121917038675, 0.0055374749355539, 0.0015750540493237, 0.0196316832306456, 0.0055083257930479, 0.0015719743480574, 0.0186727361887591, 0.005478875625439, 0.0015689330485026, 0.0178247559172222, 0.0054497028279515, 0.0015658946282754, 0.0169461754158744, 0.0054203442039192, 0.001562667649691, 0.0160763721437715, 0.0053908332352913, 0.0015595795489656, 0.0152062719418714, 0.0053623246200899, 0.0015564087006857, 0.0143361717399715, 0.0053324632470072, 0.001553193407908, 0.013615828686746599, 0.0053026814094734, 0.0015499503209164, 0.0128442289363222, 0.0052726455385598, 0.0015466481799494, 0.0120726291858979, 0.0052426096676462, 0.0015433460389823, 0.0113567237164084, 0.0052125737967326, 0.0015400872014754, 0.010636119845596, 0.0051852632023929, 0.001536792655322, 0.0099155159747836, 0.0051559338836105, 0.0015334981091685, 0.0092499184795625, 0.0051252648422651, 0.0015300557968705, 0.0085792199502319, 0.00509607302102, 0.0015266792846134, 0.0079197521339223, 0.0050659779294957, 0.0015232747050563, 0.0072536404428304, 0.0050363519438017, 0.0015198624784334, 0.0067787000343988, 0.0050067259581078, 0.0015164524344293, 0.0062045432614582, 0.0049770008768551, 0.0015130230369876, 0.0056305230350587, 0.0049471463853231, 0.001509593639546, 0.0050652939622021, 0.0049172918937911, 0.0015060406979231, 0.0045399287538832, 0.0048873340475595, 0.0015025035370293, 0.0040405603427014, 0.00485759994191, 0.0014989673357409, 0.003554810419661, 0.0048278658362605, 0.0014953671060572, 0.0030689631343808, 0.0047981120231807, 0.0014917668763735, 0.0025831158491006, 0.0047676338058998, 0.0014881915745163002, 0.002183379574323, 0.0047373237683335, 0.0014846801108218, 0.0017017307300915, 0.0047069900515175, 0.0014811611414421, 0.0012777455839441, 0.0046766563347015, 0.0014775510305901, 0.0009114286436032, 0.0046463226178855, 0.0014738559418333, 0.0005325496506067, 0.0046159889010695, 0.0014701608530766, 0.0001536706576101, 0.0045878017844947, 0.0014664657643198, -0.0002281253487771, 0.0045558127294463, 0.0014627699479455, -0.0006151739731098001, 0.0045266698574331, 0.0014590348770567, -0.0009187308777598, 0.0044970435276089, 0.0014552288514765, -0.0012222877824099, 0.0044668587973515, 0.0014514082830493998, -0.0015258446870599, 0.0044374744474635, 0.0014476829033231, -0.0018229072638117, 0.0044079502964584, 0.0014439575235968, -0.0021125425750158, 0.004378531487687, 0.0014401690558798, -0.0023674484550184, 0.0043495358738313, 0.0014362960272512, -0.002598239059294, 0.0043194411777678, 0.0014325076391464, -0.0028263604865131, 0.0042889266685932, 0.0014287130693588, -0.003030167326251, 0.0042599579597409, 0.0014248410274049, -0.0032335993514527, 0.0042288514718145, 0.001420832609301, -0.0034059793135802, 0.0041998553649392, 0.0014169563217249, -0.0035686179878742, 0.0041708592580639, 0.0014129890538135, -0.0037256905921249, 0.0041418631511886, 0.0014092436698039, -0.0038647632018585, 0.0041129426552834, 0.0014052933739141, -0.0039682928965337, 0.0040838674099053, 0.0014013014970207, -0.0040560311880102, 0.0040547660356107, 0.0013973096201273, -0.0041437694794867, 0.0040252875220643, 0.0013931266863785, -0.0042349831431957, 0.0039958090085178, 0.0013892724373389, -0.0043152037668764, 0.0039675695508406, 0.0013853365643368, -0.0044088496171316, 0.0039390545993663, 0.0013813574603203, -0.0044263953899967, 0.0039104139517175, 0.0013773757707361, -0.0044513000989963, 0.0038817733040686, 0.0013733598187601, -0.0044691682519277, 0.0038531326564197, 0.0013693199779545, -0.0044870364048591, 0.0038262911902241, 0.0013652701662098, -0.0044838487593346, 0.0037983228835164, 0.0013612352477177, -0.0044610790771343, 0.0037696536338097, 0.0013571713462559, -0.0044383093949341, 0.0037420469450656, 0.0013531753588969, -0.0044155397127338, 0.0037132874915196, 0.0013489958048398, -0.0042911445642238, 0.0036861195179764, 0.0013448887465478, -0.0042383954166172, 0.0036595765102776, 0.0013407486032411, -0.0041756224106508, 0.0036307614364569, 0.0013366085538675, -0.0041239530198997, 0.0036033567217732, 0.0013324685044939, -0.0040172356917231, 0.0035759520070895, 0.0013283284551204, -0.0039338367361911, 0.0035485472924058, 0.001324071254911, -0.0038473022389771, 0.0035214929952318, 0.0013199477572424, -0.0037607677417631, 0.0034945657883757, 0.0013158242595739, -0.0036604332519609, 0.0034675807507408, 0.0013117095442417, -0.0035482880091246, 0.0034400688958125, 0.001307719426259, -0.0034469121522402, 0.0034142380724294, 0.0013035949311341, -0.003333706318328, 0.0033881586008459, 0.0012993669380849, -0.0032205004844157, 0.0033618728633516, 0.0012951542254013, -0.0031072946505035, 0.0033355956222735, 0.0012909415127176, -0.0029940888165913, 0.0033093251385028, 0.0012867288000339, -0.0028720249724226, 0.003283054654732, 0.0012824666174531, -0.0027535023578718, 0.0032569313546167, 0.0012781989922251, -0.002634979743321, 0.0032308302712144, 0.0012739313669971, -0.0025251587519531, 0.0032052390130892, 0.001269663741769, -0.0024334547605202, 0.0031798748980653, 0.0012654904611305, -0.0023407625359555, 0.0031544073752746, 0.0012613004060582, -0.0022493515333478, 0.0031287721835893, 0.0012570708247041, -0.0021583897700465, 0.0031032526254224, 0.0012528412433499, -0.0020577428904038, 0.0030783890446961, 0.0012486116619957, -0.0019559293578898, 0.0030535740074844, 0.0012443820806415, -0.0018562297240626, 0.0030287589702726, 0.0012400837860729, -0.0017765419946672, 0.003004441483814, 0.0012358658475733, -0.0016832786819406, 0.0029802474633594, 0.0012315973349984, -0.0015959675367638, 0.0029556612577856, 0.0012273246778575, -0.0015122724015718, 0.0029311182884215, 0.0012230753179684, -0.0014464132117833, 0.0029066025207537, 0.0012187334035099, -0.0013583910358094, 0.0028828796735959, 0.0012144133842261, -0.0012768657630978, 0.0028590542249174, 0.0012101076997226, -0.001219613603758, 0.0028350556858095, 0.0012058127769055, -0.0011541378225191, 0.0028111702131817, 0.0012015178540884, -0.0010886620412801, 0.0027872847405539, 0.0011972170546922, -0.0010252756546409, 0.0027646176197906, 0.0011929269405105, -0.0009621205872501, 0.0027418057946235, 0.0011887391568127, -0.0008989655198593, 0.0027189823213579, 0.0011843251519198, -0.0008568113656604, 0.002695786300573, 0.0011799620270084, -0.0008031717003923, 0.0026727667445817, 0.0011756279349261, -0.0007535997082005, 0.0026499991892177, 0.0011712938428438, -0.0007046896577062, 0.0026271527747869, 0.0011669597507615, -0.0006557796072119, 0.0026051090350896, 0.0011626256586793, -0.0006272055538729001, 0.0025830652953923, 0.001158291566597, -0.0005873334929069999, 0.002561141383578, 0.001153930878956, -0.0005289418509236, 0.0025393295501665, 0.0011495370127655, -0.0004988486410776, 0.002517517716755, 0.0011452510361113, -0.0004687554312316, 0.0024952649885583, 0.0011407892964984, -0.0004426804519314, 0.0024748725767112, 0.0011364803996266, -0.0004092101346478, 0.0024534640293945, 0.0011321715027548, -0.0003800400004291, 0.0024319064193313, 0.001127862605883, -0.0003481271668165, 0.0024099952635125, 0.0011235629176845, -0.0003227320015951, 0.0023891340722521, 0.0011192260451868, -0.0002973368363738, 0.0023683299613353, 0.0011148891726891, -0.0002787497340886, 0.0023475258504186, 0.0011105512720884, -0.000258756704509, 0.0023270988298504, 0.0011062121700223, -0.000237218463514, 0.0023066394841322, 0.0011018040913734, -0.0002153076029436, 0.0022861268572602, 0.0010975048100728, -0.0001972052797989, 0.0022661689772077, 0.0010932249851793, -0.0001806582282729, 0.0022462587808157004, 0.0010889590593726, -0.0001670325402975, 0.0022262600594211, 0.0010846931335659, -0.0001534068523222, 0.0022061616633442, 0.0010804274141374, -0.0001422810300442, 0.0021868129545246, 0.001076087770626, -0.0001308301711206, 0.0021675299568098, 0.0010717392023799, -0.00012001069463190001, 0.0021482768642796, 0.0010674810943381, -0.0001124625315315, 0.0021291406272263, 0.0010631785832583, -0.0001055973226161, 0.0021100088532755, 0.0010588995794392, -9.74509995515929e-05, 0.0020901068872914, 0.0010546205756201, -9.25281503163712e-05, 0.0020721698823287, 0.001050341571801, -8.98607808322629e-05, 0.002053468298328, 0.0010459828874652, -8.37380813241858e-05, 0.0020346477289004, 0.0010417171560588, -8.09733975270886e-05, 0.0020164232172626, 0.0010374862142216, -7.82087137299911e-05, 0.0019981987056248, 0.001033214716147, -7.62704810736196e-05, 0.0019800014079202, 0.001028943023297, -7.57435742809512e-05, 0.001961975456897, 0.0010246794172932, -7.67452257810172e-05, 0.0019443870079835, 0.001020451522768, -7.774687728108321e-05, 0.0019268105191669, 0.0010162236282428, -7.87485287811492e-05, 0.0019085108438387003, 0.0010119870864817, -7.97501802812151e-05, 0.0018916317321404, 0.0010077020034287, -8.37557572551294e-05, 0.0018739881390394, 0.0010034257506444, -8.68570172125101e-05, 0.0018565264382033, 0.0009991181044103, -9.22426668058846e-05, 0.0018392304248458, 0.0009950349994503, -9.49844611633423e-05, 0.0018224452247876, 0.0009907336885359, -9.96286571356079e-05, 0.001805659828614, 0.0009865705031592, -0.0001043294965178, 0.0017889662581104, 0.0009824100059494, -0.0001099800808386, 0.0017724101997906, 0.0009782580304595, -0.0001142076572046, 0.0017557162952002, 0.0009740861612367, -0.0001205155461468, 0.0017396692655838, 0.0009699142920139, -0.0001272548912663, 0.0017236222359674, 0.0009657481203857, -0.0001338250413063, 0.001707575206351, 0.0009615608001692, -0.0001412631522464, 0.0016910020724122, 0.0009573500837651, -0.000148802050823, 0.0016754212512197, 0.0009531303421211, -0.0001561158052651, 0.0016598404300272, 0.0009491361454629, -0.0001641604119665, 0.0016442596088346, 0.0009450190016215, -0.000172551488505, 0.0016287828225651, 0.0009409018577801, -0.0001815615091711, 0.0016136529235145, 0.0009367769422012, -0.0001905365411176, 0.0015985080183681, 0.0009326654207645, -0.000199511573064, 0.0015833947706489, 0.0009285538993277, -0.0002091905107707, 0.0015686916755066, 0.0009244423778909, -0.0002173396883685, 0.0015537011179149, 0.0009203391952852, -0.0002268095415497, 0.0015389519518522, 0.0009162711077072, -0.000236279394731, 0.0015242027857895, 0.0009122286734843, -0.0002461514172292, 0.0015094536197267, 0.0009081222093661999, -0.0002560583198465, 0.001494704453664, 0.0009040157452482, -0.0002659652224637, 0.0014812036834556, 0.0008999092811301, -0.000275872125081, 0.001466593212834, 0.0008957942109237, -0.0002857790276982, 0.0014527769628013, 0.0008916874846986, -0.0002959112082523, 0.0014389607127687, 0.0008878487801128, -0.0003063326221174, 0.001425144462736, 0.0008838794184211, -0.0003163957147803, 0.0014115772371928, 0.0008798757804038, -0.0003262309432942, 0.0013979498166122, 0.0008758721423865, -0.0003355738968155, 0.001384301077998, 0.0008718685043692, -0.00034557118563069997, 0.0013706523393837, 0.000867864866352, -0.0003555684744459, 0.001357543005225, 0.0008638612283347, -0.0003656388094563, 0.0013445351825825, 0.0008598575903174001, -0.0003756828460351, 0.0013314076035688, 0.0008558539523001, -0.0003857528874026, 0.0013184359424369, 0.0008519180051985, -0.0003953596798771, 0.0013055472283992, 0.0008478702399297, -0.0004049664723515, 0.0012928322149688, 0.0008439665296466, -0.0004145704401387, 0.0012803269979981, 0.0008400628193635, -0.0004241301945176, 0.0012679235995745, 0.0008361591090804, -0.0004336899488966, 0.0012554457995749, 0.0008322534129772, -0.0004434155348065, 0.0012429967698254, 0.0008283419506065, -0.0004531070725321, 0.0012307884578651, 0.0008244304882358, -0.0004613969669265, 0.0012185423935557, 0.000820519025865, -0.000472564607135, 0.0012063712461267003, 0.0008164914706766, -0.0004813445400705, 0.0011944988736123, 0.0008126895322534, -0.0004901244730059, 0.0011827603073771, 0.0008088661073715, -0.0004990396353392, 0.0011710104564386, 0.0008050377846954, -0.0005080282967776, 0.0011593151069407, 0.00080119643348, -0.0005170169582159, 0.0011478643216481003, 0.0007973556702735, -0.0005254155137586, 0.0011364131969517, 0.0007935555635049, -0.0005336791389201, 0.0011249620722553, 0.0007897554567362, -0.0005424336783563, 0.0011137236719554, 0.0007859553499675, -0.000550688953616, 0.0011024784835809, 0.0007821506470435, -0.0005585424516228, 0.0010915527668544, 0.0007783368186395, -0.0005663959496296, 0.0010806270501279, 0.0007745857627865, -0.0005742494476363, 0.0010697013334014, 0.0007707852445324, -0.0005821029456431, 0.0010590423438471, 0.0007669847262783, -0.0005892534962637, 0.0010481862584787, 0.0007631842080242, -0.0005963340673188, 0.0010377611393315, 0.0007593836897701, -0.0006034240464565, 0.0010270899661474, 0.0007556542002288, -0.0006108927422424, 0.0010165028560292, 0.0007519239956302, -0.0006178449228152, 0.0010061462333762, 0.0007481753169727, -0.000624698468207, 0.0009957896107231, 0.0007445210578828, -0.0006311818570774, 0.0009855542768721, 0.0007408778117887, -0.0006376652459478, 0.0009754025142993, 0.0007371815681844, -0.0006442077918358, 0.00096545422445, 0.0007335201881364, -0.0006504634861546, 0.0009555583183597, 0.0007298588080885, -0.0006567191804735, 0.0009456624122694, 0.0007262122829718, -0.0006628975748204, 0.0009358691726597, 0.0007225516747196, -0.0006687036458927, 0.0009261585343992, 0.0007189547378157, -0.0006748514947569, 0.0009164504580639, 0.0007153578009118, -0.0006800580683616, 0.0009069152835606, 0.0007117532396756, -0.0006856847096316, 0.000897619365885, 0.0007081403619554, -0.0006911585266947, 0.0008883194174116, 0.0007045887318053, -0.0006963908924758, 0.0008790194689382, 0.0007010132754667, -0.0007016232582569, 0.0008697274533714, 0.0006974192272032, -0.0007063671828406, 0.0008605502418093, 0.0006938468878496, -0.0007112426199342, 0.0008514902390092001, 0.0006902745484959, -0.0007162124490768, 0.0008424746841493, 0.0006868009464306, -0.0007207759512742, 0.0008334591292893, 0.0006832305960516, -0.0007256388809568, 0.0008244435744293, 0.0006797702841094, -0.0007306118341986999, 0.0008156007843858, 0.0006763099721672, -0.0007335747617295, 0.0008076002783683, 0.0006728457747122, -0.0007376141213332, 0.0007988284989656, 0.0006693957287435, -0.0007415524091212, 0.0007902288333627, 0.0006659456827748, -0.0007454845879653, 0.0007819790567212, 0.0006624956368060999, -0.0007491997336007, 0.0007737292800796, 0.0006590455908374, -0.0007527785066971, 0.0007654650867975, 0.0006556856635768, -0.0007575181102375, 0.0007571197236884, 0.0006522363723509, -0.0007607947910351, 0.0007487743605794, 0.0006488710232317, -0.0007640210117772, 0.0007405191267771001, 0.0006454971978925, -0.0007671128632643, 0.0007326342520289, 0.000642142255701, -0.0007702047147515, 0.0007246505088741, 0.000638768192654, -0.0007731706213075, 0.0007167840794993, 0.0006354130082288, -0.0007760634828736, 0.0007089176501246, 0.000632072236221, -0.0007788834548238001, 0.0007013368299905, 0.0006287164698903, -0.0007816359706878, 0.0006935317421322, 0.0006253773551246, -0.0007840253361061, 0.0006858901245321, 0.0006222176592449, -0.0007863251372894, 0.0006783483483345, 0.0006187848030336, -0.000788499630209, 0.0006708727700368, 0.0006155288087449, -0.0007910741392716, 0.0006633971917391, 0.0006122728144561, -0.0007929129758065, 0.0006559959806375, 0.0006090168201674, -0.0007954976151945, 0.0006486651563839, 0.0006057720483353, -0.0007978892492392, 0.0006414127191101, 0.0006025337929101, -0.0007997021142587, 0.0006340445877383, 0.0005993174955664, -0.0008012701498348, 0.0006270124868151, 0.0005961019595452, -0.0008028880564883, 0.0006201340207655, 0.0005929190872977, -0.0008045059631418, 0.0006130965585152, 0.0005897528193598, -0.0008061245618602, 0.0006061099906349, 0.0005865777728251, -0.0008075468003953, 0.0005992390713149, 0.0005834619374564, -0.0008089501434771, 0.0005923630225364, 0.0005802949158739, -0.0008101547098451, 0.0005856286529338, 0.0005771278942914, -0.0008113724132408, 0.0005789388772746, 0.0005739691015095, -0.0008123989533424, 0.0005723817693237, 0.0005708666473383, -0.0008134254934439, 0.0005658246613728, 0.0005677812275415, -0.0008143963767246, 0.0005592408344709001, 0.0005647002105543, -0.0008153536009157, 0.0005527431124611, 0.0005616217657136, -0.0008162653579774, 0.0005464184776157, 0.0005585624999465, -0.0008167726552492, 0.0005400874290435, 0.0005555118254067, -0.000817279952521, 0.0005337563804714, 0.0005524673848583, -0.0008177872497929, 0.0005275053590094, 0.0005494569862403, -0.0008186355810639, 0.0005213261880712, 0.0005463971267389, -0.0008191009722659, 0.0005151470171329, 0.0005433544982807, -0.0008192570924287, 0.0005090398155854, 0.0005404015458655, -0.0008205483915346, 0.0005030424545061, 0.0005373918752871, -0.0008205019741321, 0.0004971512954888, 0.0005344278344634, -0.0008204555567296, 0.0004912985900624, 0.0005314709389775, -0.0008204091393272, 0.000485435806992, 0.0005285325398413, -0.000820515917384, 0.0004797312466225, 0.000525596616977, -0.0008204131672158, 0.0004740300801275, 0.0005226596275056, -0.0008202487958326, 0.0004683289136325, 0.0005197184958586, -0.000820172592174, 0.0004627371101444, 0.0005168353184294, -0.0008202351473137, 0.0004570694312546, 0.0005139624578451, -0.0008202098839413, 0.0004515362304235, 0.0005110895972607, -0.0008200346579965, 0.0004460425440069, 0.0005082167366763, -0.0008194516110222, 0.0004406013492809, 0.0005053438760919, -0.0008190992074333, 0.0004351961548622, 0.000502497377767, -0.0008187468038445, 0.0004299016188376, 0.0004996332518505, -0.0008183944002556, 0.0004246070828129, 0.000496725592281, -0.0008180419966667, 0.000419310887016, 0.0004939512087124, -0.0008178522803034, 0.0004140614511259, 0.0004911701243317, -0.0008166827156140001, 0.000408663136318, 0.0004883680168438, -0.0008159337339536, 0.0004036552560865, 0.0004855918987939, -0.0008151199603514, 0.0003986473758549, 0.0004828524080178, -0.0008144411534822, 0.0003936394956234, 0.0004801161990594, -0.0008136414256429, 0.0003886588679834, 0.0004773616475159, -0.0008128416978037, 0.0003836573825059, 0.0004746066965484, -0.0008120419699644, 0.0003787225923271, 0.0004718408430889, -0.0008112422421251, 0.000373851257387, 0.0004691075483394, -0.000810012763665, 0.0003689799224469, 0.0004664127820996, -0.0008090642958939, 0.0003642363768915, 0.0004637197183034, -0.0008081158281229, 0.0003595454287783, 0.0004610366762723, -0.0008071673603518, 0.000354854480665, 0.0004583521647411, -0.0008060485171037, 0.0003501635325518, 0.0004556756783603, -0.0008048747640077, 0.0003456391452819, 0.0004530339324843, -0.0008037122208664, 0.0003411006863558, 0.0004503890261984, -0.000802549677725, 0.0003365622274298, 0.0004477535984153, -0.0008013826748493, 0.0003321972938203, 0.0004451364996459, -0.0008001628070446, 0.00032777477714339995, 0.0004425194008766, -0.0007990960563096, 0.0003233687210494, 0.0004399023021072, -0.0007977069116034, 0.0003191170175744, 0.0004373944805817, -0.0007963177668973, 0.0003146929051007, 0.0004348600551149, -0.0007946457737407, 0.0003104588204585, 0.0004321960374548, -0.0007932425019532, 0.0003062395533705, 0.0004296906538169, -0.0007918041464023, 0.000301990743974, 0.0004271250841614, -0.0007903657908514, 0.0002978161639207, 0.0004246359977922, -0.0007889274353005, 0.0002936995302845, 0.000422137424013, -0.0007875706388447, 0.0002896617508374, 0.0004196101684585, -0.0007861704661253, 0.0002856412150146, 0.000417124013281, -0.0007845328837281, 0.0002815067459587, 0.0004146378581034, -0.0007834287273486, 0.0002775830520137, 0.0004121616625705, -0.000781756302589, 0.0002736357597919, 0.0004097309921627, -0.0007800838778295, 0.0002697036331219, 0.0004073135484667, -0.0007784114530699, 0.0002658764609756, 0.0004048915704265, -0.0007767390283104, 0.0002620492888293, 0.0004024707835978, -0.000775243897694, 0.0002582498075655, 0.0004000499967691, -0.0007738952451412, 0.0002544657754283, 0.0003976692497652, -0.0007720508312286, 0.0002507269102404, 0.000395299631492, -0.0007702064173161, 0.0002470401799515, 0.0003929350190171, -0.0007685424385205, 0.0002433534496626, 0.0003905681031557, -0.0007667830573404, 0.0002396667193736, 0.0003882042120709, -0.0007648940525243, 0.0002359799890847, 0.0003858782987935, -0.0007632912984202, 0.0002325553899786, 0.0003835440787588, -0.0007614531936912, 0.0002290556246761, 0.0003812709895102, -0.0007596114542573, 0.0002254831753452, 0.0003789497350109, -0.0007577446261054, 0.0002220083385777, 0.0003766661078097, -0.0007558894318831, 0.0002185673823452, 0.0003743824806084, -0.0007539654959796, 0.0002151395537204, 0.000372108035128, -0.0007521233478026, 0.00021175948964, 0.0003698580329047, -0.0007503233464227, 0.0002084251524149, 0.0003676074720122, -0.0007484338535104, 0.0002051436400267, 0.0003653601064426, -0.0007465926550505, 0.0002019022713596, 0.00036311274087290005, -0.0007447270055135001, 0.0001986317172214, 0.0003609378354078, -0.0007427908348323, 0.0001954420927438, 0.0003587408450676, -0.0007408260530829, 0.0001921588887662, 0.0003565438547274, -0.0007388612713335, 0.0001890324727832, 0.0003543556384516, -0.0007369536881247, 0.0001860013944584, 0.0003521831008246, -0.0007349399082476, 0.0001829437853216, 0.0003500153177423, -0.0007329987463626, 0.0001798861761848, 0.0003478593670915, -0.0007309456153008, 0.000176828567048, 0.0003457103281948, -0.000728892484239, 0.0001737285138568, 0.0003435959957955, -0.000727103215668, 0.0001709026742294, 0.0003414735193, -0.0007250080861789, 0.0001678502185641, 0.0003393344342789, -0.0007231231206463, 0.000164843824445, 0.000337194023273, -0.0007209462910666, 0.0001620224098514, 0.0003351321765906, -0.0007187694614868, 0.0001591915107592, 0.0003330763369179, -0.000716872394224, 0.0001563520430064, 0.0003310204972452, -0.0007148251141589, 0.0001535220149745, 0.0003289646575724, -0.0007127778340939, 0.0001506919869426, 0.0003269017988737, -0.0007107305540289, 0.0001479428045049, 0.0003248643101188, -0.0007087370390225, 0.00014521037743, 0.0003228283456182, -0.0007065666286598, 0.00014250858037530002, 0.0003207961829181, -0.0007045343883158, 0.0001398607940022, 0.0003187773532782, -0.0007025382358901, 0.0001372201044325, 0.0003167734861404, -0.000700286078091, 0.0001346077101921, 0.0003147606432352, -0.0006982683172335, 0.0001319821667372, 0.0003127700190098, -0.000696250556376, 0.0001293794253228, 0.0003107826412803, -0.0006941028516303, 0.0001268485294779, 0.0003088085318723, -0.0006920897965121, 0.000124307355265, 0.00030683580877119995, -0.0006900805912488, 0.0001218413632755, 0.0003048994663029, -0.0006880688682698, 0.0001193933448235, 0.0003029687373007, -0.0006860577395703001, 0.0001169581404864, 0.0003010380082985, -0.0006837872217948, 0.0001145229361493, 0.0002991146885138, -0.0006812886630339, 0.000112111048424, 0.0002972036677819, -0.0006792703328061, 0.0001097536028487, 0.00029529264705, -0.0006772520025783, 0.000107382297642, 0.0002934102369018, -0.0006752336723505, 0.0001050136840311, 0.0002915085160478, -0.0006732153421227, 0.0001027069905354, 0.0002896328317242, -0.0006711970118949, 0.0001004609957582, 0.0002878031080387, -0.0006691786816671, 9.8182409409435e-05, 0.0002859127766237, -0.0006667990791861, 9.594775200563e-05, 0.0002840647659161, -0.0006648178452851, 9.37130946018253e-05, 0.0002822167552085, -0.000662806665497, 9.14784371980205e-05, 0.0002803739713376, -0.0006608077360399, 8.93139496075192e-05, 0.000278548407679, -0.000658621228505, 8.70725704343152e-05, 0.0002767290310276, -0.0006565283836023, 8.49621510685286e-05, 0.0002749248783057, -0.0006544355386997, 8.2851731702742e-05, 0.0002731232300649, -0.000652342693797, 8.07413123369554e-05, 0.0002713257941958, -0.0006502631677346, 7.86530496302597e-05, 0.000269551410432, -0.000648150985022, 7.66116841480152e-05, 0.0002677770266681, -0.0006460033569195, 7.45390572615141e-05, 0.0002660026429043, -0.0006439275118072, 7.24969894759357e-05, 0.0002642492927216, -0.0006418995465694, 7.04868929054101e-05, 0.0002625055413989, -0.0006398110745237, 6.85095949618852e-05, 0.0002607773719035, -0.0006377254377205, 6.6536926486135e-05, 0.0002590533256648, -0.0006356162365292, 6.45887270341602e-05, 0.0002573048138714, -0.0006335162796811, 6.26144111763336e-05, 0.0002555955565948, -0.0006314509599219, 6.06856528100582e-05, 0.0002538862993181, -0.0006293964733564, 5.88697826254332e-05, 0.0002521910734106, -0.0006273408252405, 5.70478778144581e-05, 0.0002504848683582, -0.0006252597662592, 5.52301105859504e-05, 0.0002488026442401, -0.0006231787072779, 5.33913773696271e-05, 0.0002471263275357, -0.0006210723514843, 5.15822889029398e-05, 0.0002454575661874, -0.0006190697826167, 4.97752185468326e-05, 0.0002437962780823, -0.0006169940489714, 4.80096581169907e-05, 0.000242149322192, -0.0006149950099863, 4.6232195100823295e-05, 0.0002405117206831, -0.0006128809398932, 4.44670228895349e-05, 0.0002388810569915, -0.0006107668698002, 4.27666504650764e-05, 0.0002372654336067, -0.000608662598836, 4.10626869690246e-05, 0.000235649810222, -0.000606559191009, 3.93905627446541e-05, 0.0002340341868373, -0.000604455783182, 3.77184385202834e-05, 0.0002324339072486, -0.0006024892386909, 3.60617941988604e-05, 0.0002308222654803, -0.000600509246617, 3.44456990149065e-05, 0.0002292689166086, -0.0005984353612682, 3.28406512254781e-05, 0.0002277056423418, -0.0005964809867248, 3.12350056089602e-05, 0.0002261186658213, -0.0005944217951737, 2.9705505058184e-05, 0.0002245872266251, -0.0005923626036225, 2.81562570776856e-05, 0.0002230557874289, -0.0005903025530992, 2.66335620294135e-05, 0.0002215243482327, -0.0005882365361251, 2.51108669811415e-05, 0.0002199971557285, -0.0005861596441635, 2.35742177339193e-05, 0.0002184714599507, -0.0005841140321229, 2.20791607927397e-05, 0.000216967723793, -0.0005821242546269, 2.06089769134827e-05, 0.0002154717600876, -0.0005801344771309, 1.91492537273167e-05, 0.000213972896546, -0.000578165697347, 1.77147088470628e-05, 0.0002124985767816, -0.0005761589465654, 1.62801639668088e-05, 0.0002110214254602, -0.0005741334984514, 1.48604891425098e-05, 0.0002095569956941, -0.0005721080503374, 1.34419964498404e-05, 0.0002080925659279, -0.0005701612562991, 1.20983382626954e-05, 0.0002066281361617, -0.0005681783277181999, 1.07130560843651e-05, 0.0002051794971082, -0.0005661953991374, 9.35836932906087e-06, 0.0002037635398324, -0.0005642922523806, 8.02285309342116e-06, 0.0002023475825566, -0.0005622621293538, 6.71463532031401e-06, 0.0002009279552716, -0.0005602320063269, 5.37172192816201e-06, 0.0001995115005179, -0.0005582298843459, 4.09386866231783e-06, 0.0001981109106197, -0.0005562873843537, 2.83658179865251e-06, 0.0001967128485197, -0.0005543309276217, 1.53962223216165e-06, 0.0001953147864196, -0.0005524143306435, 2.96098185609588e-07, 0.0001939619430095, -0.0005505043106975, -9.50681594899478e-07, 0.000192589702649, -0.0005485592543264, -2.17268107863764e-06, 0.0001912333824155, -0.0005466141979553, -3.41292894563257e-06, 0.00018988068095, -0.0005446651872117, -4.62058380683073e-06, 0.0001885275563661, -0.0005427626117405, -5.82823866802878e-06, 0.0001871815817076, -0.0005408651903623, -7.03589352922673e-06, 0.00018585734556619997, -0.0005389680073385, -8.18126260016938e-06, 0.0001845355253721, -0.0005370708243148, -9.360262028554631e-06, 0.00018321100832799998, -0.0005351541578238, -1.04992490237793e-05, 0.0001818864912838, -0.0005333331959165, -1.16251413000938e-05, 0.0001805927662131, -0.0005313626401512, -1.27587183654847e-05, 0.0001793339746812, -0.0005294099997913, -1.3874096239243e-05, 0.0001780395978559, -0.0005276676388588, -1.50138954388461e-05, 0.000176756693314, -0.0005257558261671, -1.61065810053374e-05, 0.0001754737887721, -0.0005238714511768, -1.71939704148186e-05, 0.0001742156138621, -0.0005219870761864, -1.82688013058275e-05, 0.0001729642693437, -0.000520102701196, -1.93131961589366e-05, 0.0001716891603169, -0.0005183097205291, -2.03545213181165e-05, 0.0001704449807466, -0.0005164552437189, -2.13955648023238e-05, 0.0001692164032934, -0.0005145765252728, -2.24304684145972e-05, 0.0001679878258402, -0.0005127252239529, -2.3483070976679e-05, 0.0001667592483871, -0.000510900930704, -2.44570144770062e-05, 0.0001655338689599, -0.0005091059387692, -2.54309579773334e-05, 0.0001643195244717, -0.0005073109468343, -2.64049014776607e-05, 0.0001631214870071, -0.000505495788101, -2.73472580991665e-05, 0.0001619314512245, -0.0005037078072799, -2.8294886852923e-05, 0.0001607404316021, -0.0005019187056094, -2.9235575915307696e-05, 0.00015955046949, -0.0005001296039389, -3.01762649776924e-05, 0.0001583605073779, -0.0004983405022684, -3.11244445891648e-05, 0.000157192242494, -0.0004965311336895, -3.203402956436e-05, 0.0001560310232218, -0.0004947482856928, -3.29436145395551e-05, 0.0001548699559393, -0.0004929951873225, -3.37894858085653e-05, 0.0001537088886568, -0.0004912413084747, -3.46629640722409e-05, 0.0001525625426287, -0.0004894786987537, -3.55387358820739e-05, 0.0001514423962498, -0.0004877160890327, -3.6414507691907e-05, 0.0001502802976803, -0.0004859534793117, -3.72622182774759e-05, 0.000149164918689, -0.0004842469800766, -3.81091701416204e-05, 0.0001480445331008, -0.0004825385118251, -3.89439200485419e-05, 0.0001469185491249, -0.0004807823089841, -3.97609084996352e-05, 0.0001458135458157, -0.0004790544302871, -4.05702930217534e-05, 0.0001447085425064, -0.0004773403540654, -4.13796775438713e-05, 0.0001436099462649, -0.0004755944879831, -4.21803658497698e-05, 0.00014252019768370001, -0.0004737681376628, -4.29729217757853e-05, 0.000141420853577, -0.0004721487307146, -4.37668330461533e-05, 0.0001403395609554, -0.0004704713237288, -4.45284304323664e-05, 0.0001392750592266, -0.000468789530142, -4.52842880064328e-05, 0.0001381939126609, -0.0004670901697517, -4.60344262540155e-05, 0.000137119043515, -0.0004654219163328, -4.67810969307601e-05, 0.0001360784950714, -0.0004637536629139, -4.7529199274809e-05, 0.0001350392669649, -0.000462085409495, -4.8235141780356e-05, 0.0001339957655234, -0.0004603945052094, -4.89463630970017e-05, 0.0001329507224897, -0.0004587537863933, -4.96390481748741e-05, 0.0001319195087755, -0.0004571218664741, -5.03302301885363e-05, 0.0001308882950614, -0.0004554887604567, -5.10208954063402e-05, 0.0001298570813472, -0.0004538540814366, -5.16867589092666e-05, 0.000128825867633, -0.0004522115971839, -5.23783672479968e-05, 0.0001278347274975, -0.00045059377938, -5.30445576874222e-05, 0.0001268374675189, -0.000448965777037, -5.37406107958998e-05, 0.0001258008518395, -0.0004473823430717, -5.43697611272206e-05, 0.000124820075489, -0.0004457954515675, -5.49989114585415e-05, 0.0001238392991386, -0.0004442235602035, -5.56269659936176e-05, 0.0001228585227882, -0.0004426476417739, -5.62456819003234e-05, 0.0001218843641931, -0.0004410717233442, -5.68643978070293e-05, 0.0001209138837976, -0.0004394750696185, -5.74831137137351e-05, 0.0001199434034021, -0.0004378747867044, -5.81007661009646e-05, 0.0001189986716725, -0.0004363363014747, -5.86569402343078e-05, 0.0001180319937142, -0.0004347950182411, -5.92423991967913e-05, 0.0001170733291615, -0.0004332549491808, -5.98305184065061e-05, 0.0001161294053717, -0.0004317037428946, -6.03940219123294e-05, 0.0001151843145347, -0.0004301668505438, -6.09575254181527e-05, 0.0001142459324698, -0.0004286325302018, -6.15167094402477e-05, 0.0001133060750644, -0.0004271128995444, -6.20616343449465e-05, 0.000112390206764, -0.0004256040139625, -6.26065592496452e-05, 0.0001114691614154, -0.0004240979113702, -6.31514841543439e-05, 0.0001105481160669, -0.000422586886949, -6.36964090590425e-05, 0.0001096270707184, -0.0004210540218403, -6.42413339637412e-05, 0.0001087612543311]}, "unit": "T"}]} \ No newline at end of file +{ + "setup": [ + { + "id": 2678036084816, + "type": "Collection", + "position": { "value": [0.0, 0.0, 0.0], "unit": "m" }, + "orientation": { + "value": [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + "type": "matrix" + }, + "style": { + "color": null, + "description": { "show": null, "text": null }, + "label": "No demag", + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + } + }, + "children": [ + { + "id": 2678042879984, + "type": "Cuboid", + "position": { "value": [0.0, 0.0, 0.0005], "unit": "m" }, + "orientation": { + "value": [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + "type": "matrix" + }, + "style": { + "color": null, + "description": { "show": null, "text": null }, + "label": "Hard cuboid magnet, susceptibility=0.5", + "magnetization": { + "color": { + "middle": null, + "mode": null, + "north": null, + "south": null, + "transition": null + }, + "mode": null, + "show": null, + "size": null + }, + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + } + }, + "susceptibility": { "value": 0.5 }, + "dimension": { "value": [0.001, 0.001, 0.002], "unit": "m" }, + "polarization": { "value": [0.0, 0.0, 1.0], "unit": "T" } + }, + { + "id": 2678036170400, + "type": "Cuboid", + "position": { "value": [0.0015, 0.0, 0.0], "unit": "m" }, + "orientation": { + "value": [ + [0.7071067811865475, 0.0, 0.7071067811865476], + [0.0, 1.0, 0.0], + [-0.7071067811865476, 0.0, 0.7071067811865475] + ], + "type": "matrix" + }, + "style": { + "color": null, + "description": { "show": null, "text": null }, + "label": "Soft cuboid magnet, susceptibility=3999", + "magnetization": { + "color": { + "middle": null, + "mode": null, + "north": null, + "south": null, + "transition": null + }, + "mode": null, + "show": null, + "size": null + }, + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + } + }, + "susceptibility": { "value": 3999 }, + "dimension": { "value": [0.001, 0.001, 0.001], "unit": "m" }, + "polarization": { "value": [0.0, 0.0, 0.0], "unit": "T" } + } + ] + }, + { + "id": 2679646060352, + "type": "Sensor", + "position": { + "value": [ + [-0.004, 0.0, -0.001], + [-0.0039900000000000005, 0.0, -0.001], + [-0.00398, 0.0, -0.001], + [-0.0039700000000000004, 0.0, -0.001], + [-0.00396, 0.0, -0.001], + [-0.00395, 0.0, -0.001], + [-0.00394, 0.0, -0.001], + [-0.00393, 0.0, -0.001], + [-0.00392, 0.0, -0.001], + [-0.00391, 0.0, -0.001], + [-0.0039, 0.0, -0.001], + [-0.0038900000000000002, 0.0, -0.001], + [-0.0038799999999999998, 0.0, -0.001], + [-0.00387, 0.0, -0.001], + [-0.0038599999999999997, 0.0, -0.001], + [-0.00385, 0.0, -0.001], + [-0.0038399999999999997, 0.0, -0.001], + [-0.00383, 0.0, -0.001], + [-0.00382, 0.0, -0.001], + [-0.00381, 0.0, -0.001], + [-0.0038, 0.0, -0.001], + [-0.00379, 0.0, -0.001], + [-0.0037800000000000004, 0.0, -0.001], + [-0.00377, 0.0, -0.001], + [-0.00376, 0.0, -0.001], + [-0.00375, 0.0, -0.001], + [-0.0037400000000000003, 0.0, -0.001], + [-0.00373, 0.0, -0.001], + [-0.0037199999999999998, 0.0, -0.001], + [-0.0037099999999999998, 0.0, -0.001], + [-0.0037, 0.0, -0.001], + [-0.00369, 0.0, -0.001], + [-0.00368, 0.0, -0.001], + [-0.00367, 0.0, -0.001], + [-0.00366, 0.0, -0.001], + [-0.00365, 0.0, -0.001], + [-0.00364, 0.0, -0.001], + [-0.00363, 0.0, -0.001], + [-0.00362, 0.0, -0.001], + [-0.00361, 0.0, -0.001], + [-0.0036, 0.0, -0.001], + [-0.00359, 0.0, -0.001], + [-0.0035800000000000003, 0.0, -0.001], + [-0.0035700000000000003, 0.0, -0.001], + [-0.0035600000000000002, 0.0, -0.001], + [-0.0035499999999999998, 0.0, -0.001], + [-0.00354, 0.0, -0.001], + [-0.00353, 0.0, -0.001], + [-0.00352, 0.0, -0.001], + [-0.0035099999999999997, 0.0, -0.001], + [-0.0035, 0.0, -0.001], + [-0.00349, 0.0, -0.001], + [-0.00348, 0.0, -0.001], + [-0.0034699999999999996, 0.0, -0.001], + [-0.00346, 0.0, -0.001], + [-0.0034500000000000004, 0.0, -0.001], + [-0.00344, 0.0, -0.001], + [-0.00343, 0.0, -0.001], + [-0.00342, 0.0, -0.001], + [-0.0034100000000000003, 0.0, -0.001], + [-0.0034, 0.0, -0.001], + [-0.0033900000000000002, 0.0, -0.001], + [-0.0033799999999999998, 0.0, -0.001], + [-0.00337, 0.0, -0.001], + [-0.0033599999999999997, 0.0, -0.001], + [-0.00335, 0.0, -0.001], + [-0.0033399999999999997, 0.0, -0.001], + [-0.00333, 0.0, -0.001], + [-0.00332, 0.0, -0.001], + [-0.00331, 0.0, -0.001], + [-0.0033, 0.0, -0.001], + [-0.00329, 0.0, -0.001], + [-0.0032800000000000004, 0.0, -0.001], + [-0.00327, 0.0, -0.001], + [-0.00326, 0.0, -0.001], + [-0.00325, 0.0, -0.001], + [-0.0032400000000000003, 0.0, -0.001], + [-0.00323, 0.0, -0.001], + [-0.0032199999999999998, 0.0, -0.001], + [-0.00321, 0.0, -0.001], + [-0.0032, 0.0, -0.001], + [-0.00319, 0.0, -0.001], + [-0.0031799999999999997, 0.0, -0.001], + [-0.00317, 0.0, -0.001], + [-0.00316, 0.0, -0.001], + [-0.00315, 0.0, -0.001], + [-0.00314, 0.0, -0.001], + [-0.00313, 0.0, -0.001], + [-0.00312, 0.0, -0.001], + [-0.0031100000000000004, 0.0, -0.001], + [-0.0031, 0.0, -0.001], + [-0.00309, 0.0, -0.001], + [-0.0030800000000000003, 0.0, -0.001], + [-0.0030700000000000002, 0.0, -0.001], + [-0.0030600000000000002, 0.0, -0.001], + [-0.0030499999999999998, 0.0, -0.001], + [-0.00304, 0.0, -0.001], + [-0.00303, 0.0, -0.001], + [-0.00302, 0.0, -0.001], + [-0.0030099999999999997, 0.0, -0.001], + [-0.003, 0.0, -0.001], + [-0.00299, 0.0, -0.001], + [-0.00298, 0.0, -0.001], + [-0.0029699999999999996, 0.0, -0.001], + [-0.00296, 0.0, -0.001], + [-0.0029500000000000004, 0.0, -0.001], + [-0.00294, 0.0, -0.001], + [-0.00293, 0.0, -0.001], + [-0.00292, 0.0, -0.001], + [-0.0029100000000000003, 0.0, -0.001], + [-0.0029, 0.0, -0.001], + [-0.0028899999999999998, 0.0, -0.001], + [-0.0028799999999999997, 0.0, -0.001], + [-0.00287, 0.0, -0.001], + [-0.0028599999999999997, 0.0, -0.001], + [-0.0028499999999999997, 0.0, -0.001], + [-0.0028399999999999996, 0.0, -0.001], + [-0.00283, 0.0, -0.001], + [-0.0028200000000000005, 0.0, -0.001], + [-0.00281, 0.0, -0.001], + [-0.0028, 0.0, -0.001], + [-0.00279, 0.0, -0.001], + [-0.0027800000000000004, 0.0, -0.001], + [-0.00277, 0.0, -0.001], + [-0.00276, 0.0, -0.001], + [-0.00275, 0.0, -0.001], + [-0.0027400000000000002, 0.0, -0.001], + [-0.00273, 0.0, -0.001], + [-0.0027199999999999998, 0.0, -0.001], + [-0.00271, 0.0, -0.001], + [-0.0027, 0.0, -0.001], + [-0.00269, 0.0, -0.001], + [-0.0026799999999999997, 0.0, -0.001], + [-0.00267, 0.0, -0.001], + [-0.00266, 0.0, -0.001], + [-0.00265, 0.0, -0.001], + [-0.0026399999999999996, 0.0, -0.001], + [-0.00263, 0.0, -0.001], + [-0.00262, 0.0, -0.001], + [-0.00261, 0.0, -0.001], + [-0.0025999999999999994, 0.0, -0.001], + [-0.00259, 0.0, -0.001], + [-0.0025800000000000003, 0.0, -0.001], + [-0.0025700000000000002, 0.0, -0.001], + [-0.00256, 0.0, -0.001], + [-0.0025499999999999997, 0.0, -0.001], + [-0.00254, 0.0, -0.001], + [-0.00253, 0.0, -0.001], + [-0.00252, 0.0, -0.001], + [-0.0025099999999999996, 0.0, -0.001], + [-0.0025, 0.0, -0.001], + [-0.00249, 0.0, -0.001], + [-0.00248, 0.0, -0.001], + [-0.0024699999999999995, 0.0, -0.001], + [-0.00246, 0.0, -0.001], + [-0.0024500000000000004, 0.0, -0.001], + [-0.00244, 0.0, -0.001], + [-0.00243, 0.0, -0.001], + [-0.00242, 0.0, -0.001], + [-0.0024100000000000002, 0.0, -0.001], + [-0.0024, 0.0, -0.001], + [-0.0023899999999999998, 0.0, -0.001], + [-0.0023799999999999997, 0.0, -0.001], + [-0.00237, 0.0, -0.001], + [-0.0023599999999999997, 0.0, -0.001], + [-0.0023499999999999997, 0.0, -0.001], + [-0.00234, 0.0, -0.001], + [-0.00233, 0.0, -0.001], + [-0.00232, 0.0, -0.001], + [-0.0023099999999999996, 0.0, -0.001], + [-0.0023, 0.0, -0.001], + [-0.00229, 0.0, -0.001], + [-0.0022800000000000003, 0.0, -0.001], + [-0.00227, 0.0, -0.001], + [-0.0022600000000000003, 0.0, -0.001], + [-0.00225, 0.0, -0.001], + [-0.0022400000000000002, 0.0, -0.001], + [-0.0022299999999999998, 0.0, -0.001], + [-0.00222, 0.0, -0.001], + [-0.00221, 0.0, -0.001], + [-0.0022, 0.0, -0.001], + [-0.00219, 0.0, -0.001], + [-0.00218, 0.0, -0.001], + [-0.00217, 0.0, -0.001], + [-0.00216, 0.0, -0.001], + [-0.00215, 0.0, -0.001], + [-0.00214, 0.0, -0.001], + [-0.00213, 0.0, -0.001], + [-0.00212, 0.0, -0.001], + [-0.00211, 0.0, -0.001], + [-0.0021000000000000003, 0.0, -0.001], + [-0.00209, 0.0, -0.001], + [-0.0020800000000000003, 0.0, -0.001], + [-0.00207, 0.0, -0.001], + [-0.00206, 0.0, -0.001], + [-0.0020499999999999997, 0.0, -0.001], + [-0.00204, 0.0, -0.001], + [-0.0020299999999999997, 0.0, -0.001], + [-0.00202, 0.0, -0.001], + [-0.0020099999999999996, 0.0, -0.001], + [-0.002, 0.0, -0.001], + [-0.0019899999999999996, 0.0, -0.001], + [-0.00198, 0.0, -0.001], + [-0.00197, 0.0, -0.001], + [-0.00196, 0.0, -0.001], + [-0.0019500000000000001, 0.0, -0.001], + [-0.0019399999999999999, 0.0, -0.001], + [-0.00193, 0.0, -0.001], + [-0.0019199999999999998, 0.0, -0.001], + [-0.0019100000000000002, 0.0, -0.001], + [-0.0019, 0.0, -0.001], + [-0.0018900000000000002, 0.0, -0.001], + [-0.00188, 0.0, -0.001], + [-0.0018700000000000001, 0.0, -0.001], + [-0.0018599999999999999, 0.0, -0.001], + [-0.00185, 0.0, -0.001], + [-0.0018399999999999998, 0.0, -0.001], + [-0.00183, 0.0, -0.001], + [-0.0018199999999999998, 0.0, -0.001], + [-0.00181, 0.0, -0.001], + [-0.0017999999999999997, 0.0, -0.001], + [-0.0017900000000000001, 0.0, -0.001], + [-0.00178, 0.0, -0.001], + [-0.00177, 0.0, -0.001], + [-0.0017599999999999998, 0.0, -0.001], + [-0.00175, 0.0, -0.001], + [-0.0017399999999999998, 0.0, -0.001], + [-0.00173, 0.0, -0.001], + [-0.0017199999999999997, 0.0, -0.001], + [-0.00171, 0.0, -0.001], + [-0.0016999999999999997, 0.0, -0.001], + [-0.0016899999999999999, 0.0, -0.001], + [-0.0016799999999999996, 0.0, -0.001], + [-0.0016699999999999998, 0.0, -0.001], + [-0.0016599999999999998, 0.0, -0.001], + [-0.0016500000000000004, 0.0, -0.001], + [-0.0016400000000000002, 0.0, -0.001], + [-0.00163, 0.0, -0.001], + [-0.0016200000000000001, 0.0, -0.001], + [-0.0016100000000000003, 0.0, -0.001], + [-0.0016, 0.0, -0.001], + [-0.0015899999999999998, 0.0, -0.001], + [-0.00158, 0.0, -0.001], + [-0.0015700000000000002, 0.0, -0.001], + [-0.00156, 0.0, -0.001], + [-0.0015499999999999997, 0.0, -0.001], + [-0.0015400000000000001, 0.0, -0.001], + [-0.0015300000000000003, 0.0, -0.001], + [-0.00152, 0.0, -0.001], + [-0.0015099999999999998, 0.0, -0.001], + [-0.0015, 0.0, -0.001], + [-0.0014900000000000002, 0.0, -0.001], + [-0.00148, 0.0, -0.001], + [-0.0014699999999999997, 0.0, -0.001], + [-0.00146, 0.0, -0.001], + [-0.0014500000000000001, 0.0, -0.001], + [-0.0014399999999999999, 0.0, -0.001], + [-0.0014299999999999996, 0.0, -0.001], + [-0.0014199999999999998, 0.0, -0.001], + [-0.0014100000000000002, 0.0, -0.001], + [-0.0014, 0.0, -0.001], + [-0.0013899999999999997, 0.0, -0.001], + [-0.00138, 0.0, -0.001], + [-0.0013700000000000001, 0.0, -0.001], + [-0.0013599999999999999, 0.0, -0.001], + [-0.0013499999999999996, 0.0, -0.001], + [-0.0013399999999999998, 0.0, -0.001], + [-0.00133, 0.0, -0.001], + [-0.0013199999999999998, 0.0, -0.001], + [-0.0013099999999999995, 0.0, -0.001], + [-0.0012999999999999997, 0.0, -0.001], + [-0.0012900000000000001, 0.0, -0.001], + [-0.0012799999999999999, 0.0, -0.001], + [-0.0012699999999999996, 0.0, -0.001], + [-0.0012599999999999998, 0.0, -0.001], + [-0.00125, 0.0, -0.001], + [-0.0012399999999999998, 0.0, -0.001], + [-0.0012299999999999995, 0.0, -0.001], + [-0.0012199999999999997, 0.0, -0.001], + [-0.00121, 0.0, -0.001], + [-0.0011999999999999997, 0.0, -0.001], + [-0.0011899999999999994, 0.0, -0.001], + [-0.00118, 0.0, -0.001], + [-0.0011700000000000005, 0.0, -0.001], + [-0.0011600000000000002, 0.0, -0.001], + [-0.0011500000000000004, 0.0, -0.001], + [-0.0011400000000000002, 0.0, -0.001], + [-0.0011300000000000004, 0.0, -0.001], + [-0.0011200000000000001, 0.0, -0.001], + [-0.0011100000000000003, 0.0, -0.001], + [-0.0011, 0.0, -0.001], + [-0.0010900000000000003, 0.0, -0.001], + [-0.00108, 0.0, -0.001], + [-0.0010700000000000002, 0.0, -0.001], + [-0.00106, 0.0, -0.001], + [-0.0010500000000000004, 0.0, -0.001], + [-0.0010400000000000001, 0.0, -0.001], + [-0.0010300000000000003, 0.0, -0.001], + [-0.00102, 0.0, -0.001], + [-0.0010100000000000003, 0.0, -0.001], + [-0.001, 0.0, -0.001], + [-0.0009900000000000002, 0.0, -0.001], + [-0.00098, 0.0, -0.001], + [-0.0009700000000000002, 0.0, -0.001], + [-0.0009599999999999999, 0.0, -0.001], + [-0.0009500000000000002, 0.0, -0.001], + [-0.00094, 0.0, -0.001], + [-0.0009300000000000002, 0.0, -0.001], + [-0.0009199999999999999, 0.0, -0.001], + [-0.0009100000000000001, 0.0, -0.001], + [-0.0008999999999999999, 0.0, -0.001], + [-0.0008900000000000002, 0.0, -0.001], + [-0.0008799999999999999, 0.0, -0.001], + [-0.0008700000000000001, 0.0, -0.001], + [-0.0008599999999999999, 0.0, -0.001], + [-0.0008500000000000001, 0.0, -0.001], + [-0.0008399999999999998, 0.0, -0.001], + [-0.0008300000000000001, 0.0, -0.001], + [-0.0008199999999999999, 0.0, -0.001], + [-0.0008100000000000001, 0.0, -0.001], + [-0.0007999999999999998, 0.0, -0.001], + [-0.00079, 0.0, -0.001], + [-0.0007799999999999998, 0.0, -0.001], + [-0.0007700000000000001, 0.0, -0.001], + [-0.0007599999999999998, 0.0, -0.001], + [-0.00075, 0.0, -0.001], + [-0.0007399999999999998, 0.0, -0.001], + [-0.00073, 0.0, -0.001], + [-0.0007199999999999997, 0.0, -0.001], + [-0.0007099999999999999, 0.0, -0.001], + [-0.0006999999999999998, 0.0, -0.001], + [-0.00069, 0.0, -0.001], + [-0.0006799999999999997, 0.0, -0.001], + [-0.0006699999999999999, 0.0, -0.001], + [-0.0006599999999999997, 0.0, -0.001], + [-0.0006499999999999999, 0.0, -0.001], + [-0.0006399999999999997, 0.0, -0.001], + [-0.0006299999999999999, 0.0, -0.001], + [-0.0006199999999999997, 0.0, -0.001], + [-0.0006099999999999999, 0.0, -0.001], + [-0.0005999999999999996, 0.0, -0.001], + [-0.0005899999999999998, 0.0, -0.001], + [-0.0005799999999999997, 0.0, -0.001], + [-0.0005699999999999999, 0.0, -0.001], + [-0.0005600000000000005, 0.0, -0.001], + [-0.0005500000000000002, 0.0, -0.001], + [-0.00054, 0.0, -0.001], + [-0.0005300000000000002, 0.0, -0.001], + [-0.0005200000000000005, 0.0, -0.001], + [-0.0005100000000000003, 0.0, -0.001], + [-0.0005, 0.0, -0.001], + [-0.0004900000000000002, 0.0, -0.001], + [-0.00048000000000000045, 0.0, -0.001], + [-0.0004700000000000002, 0.0, -0.001], + [-0.00045999999999999996, 0.0, -0.001], + [-0.0004500000000000002, 0.0, -0.001], + [-0.0004400000000000004, 0.0, -0.001], + [-0.00043000000000000015, 0.0, -0.001], + [-0.0004199999999999999, 0.0, -0.001], + [-0.00041000000000000015, 0.0, -0.001], + [-0.00040000000000000034, 0.0, -0.001], + [-0.0003900000000000001, 0.0, -0.001], + [-0.0003799999999999999, 0.0, -0.001], + [-0.0003700000000000001, 0.0, -0.001], + [-0.0003600000000000003, 0.0, -0.001], + [-0.0003500000000000001, 0.0, -0.001], + [-0.00033999999999999986, 0.0, -0.001], + [-0.00033000000000000005, 0.0, -0.001], + [-0.0003200000000000003, 0.0, -0.001], + [-0.00031000000000000005, 0.0, -0.001], + [-0.0002999999999999998, 0.0, -0.001], + [-0.00029000000000000006, 0.0, -0.001], + [-0.00028000000000000025, 0.0, -0.001], + [-0.00027, 0.0, -0.001], + [-0.00025999999999999976, 0.0, -0.001], + [-0.00025, 0.0, -0.001], + [-0.00024000000000000022, 0.0, -0.001], + [-0.00022999999999999998, 0.0, -0.001], + [-0.00021999999999999976, 0.0, -0.001], + [-0.00020999999999999995, 0.0, -0.001], + [-0.00020000000000000017, 0.0, -0.001], + [-0.00018999999999999996, 0.0, -0.001], + [-0.0001799999999999997, 0.0, -0.001], + [-0.00016999999999999993, 0.0, -0.001], + [-0.00016000000000000015, 0.0, -0.001], + [-0.0001499999999999999, 0.0, -0.001], + [-0.0001399999999999997, 0.0, -0.001], + [-0.00012999999999999988, 0.0, -0.001], + [-0.00012000000000000011, 0.0, -0.001], + [-0.00010999999999999988, 0.0, -0.001], + [-9.999999999999964e-5, 0.0, -0.001], + [-8.999999999999986e-5, 0.0, -0.001], + [-8.000000000000007e-5, 0.0, -0.001], + [-6.999999999999984e-5, 0.0, -0.001], + [-5.999999999999961e-5, 0.0, -0.001], + [-4.999999999999982e-5, 0.0, -0.001], + [-4.000000000000004e-5, 0.0, -0.001], + [-2.9999999999999804e-5, 0.0, -0.001], + [-1.9999999999999575e-5, 0.0, -0.001], + [-9.999999999999787e-6, 0.0, -0.001], + [0.0, 0.0, -0.001], + [9.999999999999787e-6, 0.0, -0.001], + [2.0000000000000462e-5, 0.0, -0.001], + [3.0000000000000248e-5, 0.0, -0.001], + [4.000000000000004e-5, 0.0, -0.001], + [5.0000000000000714e-5, 0.0, -0.001], + [6.0000000000000496e-5, 0.0, -0.001], + [6.99999999999994e-5, 0.0, -0.001], + [8.000000000000007e-5, 0.0, -0.001], + [8.999999999999986e-5, 0.0, -0.001], + [9.999999999999964e-5, 0.0, -0.001], + [0.00010999999999999943, 0.0, -0.001], + [0.00012000000000000011, 0.0, -0.001], + [0.00012999999999999988, 0.0, -0.001], + [0.0001399999999999997, 0.0, -0.001], + [0.00014999999999999947, 0.0, -0.001], + [0.00016000000000000015, 0.0, -0.001], + [0.00016999999999999993, 0.0, -0.001], + [0.0001799999999999997, 0.0, -0.001], + [0.0001899999999999995, 0.0, -0.001], + [0.00020000000000000017, 0.0, -0.001], + [0.00020999999999999995, 0.0, -0.001], + [0.00021999999999999976, 0.0, -0.001], + [0.00022999999999999955, 0.0, -0.001], + [0.00024000000000000022, 0.0, -0.001], + [0.00025, 0.0, -0.001], + [0.00025999999999999976, 0.0, -0.001], + [0.00026999999999999957, 0.0, -0.001], + [0.00028000000000000025, 0.0, -0.001], + [0.00029000000000000006, 0.0, -0.001], + [0.0002999999999999998, 0.0, -0.001], + [0.0003099999999999996, 0.0, -0.001], + [0.0003200000000000003, 0.0, -0.001], + [0.00033000000000000005, 0.0, -0.001], + [0.00033999999999999986, 0.0, -0.001], + [0.00034999999999999967, 0.0, -0.001], + [0.0003600000000000003, 0.0, -0.001], + [0.0003700000000000001, 0.0, -0.001], + [0.0003799999999999999, 0.0, -0.001], + [0.00038999999999999967, 0.0, -0.001], + [0.00040000000000000034, 0.0, -0.001], + [0.00041000000000000015, 0.0, -0.001], + [0.0004199999999999999, 0.0, -0.001], + [0.0004299999999999997, 0.0, -0.001], + [0.0004400000000000004, 0.0, -0.001], + [0.0004500000000000002, 0.0, -0.001], + [0.00045999999999999996, 0.0, -0.001], + [0.00046999999999999977, 0.0, -0.001], + [0.00048000000000000045, 0.0, -0.001], + [0.0004900000000000002, 0.0, -0.001], + [0.0005, 0.0, -0.001], + [0.0005099999999999998, 0.0, -0.001], + [0.0005200000000000005, 0.0, -0.001], + [0.0005300000000000002, 0.0, -0.001], + [0.00054, 0.0, -0.001], + [0.0005499999999999998, 0.0, -0.001], + [0.0005600000000000005, 0.0, -0.001], + [0.0005700000000000003, 0.0, -0.001], + [0.0005800000000000001, 0.0, -0.001], + [0.0005899999999999998, 0.0, -0.001], + [0.0006000000000000005, 0.0, -0.001], + [0.0006100000000000003, 0.0, -0.001], + [0.0006200000000000001, 0.0, -0.001], + [0.0006299999999999999, 0.0, -0.001], + [0.0006400000000000006, 0.0, -0.001], + [0.0006500000000000004, 0.0, -0.001], + [0.0006600000000000001, 0.0, -0.001], + [0.0006699999999999999, 0.0, -0.001], + [0.0006800000000000006, 0.0, -0.001], + [0.0006899999999999995, 0.0, -0.001], + [0.0006999999999999993, 0.0, -0.001], + [0.0007099999999999999, 0.0, -0.001], + [0.0007199999999999997, 0.0, -0.001], + [0.0007299999999999995, 0.0, -0.001], + [0.0007400000000000002, 0.0, -0.001], + [0.00075, 0.0, -0.001], + [0.0007599999999999998, 0.0, -0.001], + [0.0007699999999999995, 0.0, -0.001], + [0.0007799999999999993, 0.0, -0.001], + [0.00079, 0.0, -0.001], + [0.0007999999999999998, 0.0, -0.001], + [0.0008099999999999996, 0.0, -0.001], + [0.0008200000000000003, 0.0, -0.001], + [0.0008300000000000001, 0.0, -0.001], + [0.0008399999999999998, 0.0, -0.001], + [0.0008499999999999996, 0.0, -0.001], + [0.0008599999999999994, 0.0, -0.001], + [0.0008700000000000001, 0.0, -0.001], + [0.0008799999999999999, 0.0, -0.001], + [0.0008899999999999997, 0.0, -0.001], + [0.0009000000000000004, 0.0, -0.001], + [0.0009100000000000001, 0.0, -0.001], + [0.0009199999999999999, 0.0, -0.001], + [0.0009299999999999997, 0.0, -0.001], + [0.0009399999999999995, 0.0, -0.001], + [0.0009500000000000002, 0.0, -0.001], + [0.0009599999999999999, 0.0, -0.001], + [0.0009699999999999997, 0.0, -0.001], + [0.0009800000000000004, 0.0, -0.001], + [0.0009900000000000002, 0.0, -0.001], + [0.001, 0.0, -0.001], + [0.0010099999999999998, 0.0, -0.001], + [0.0010199999999999996, 0.0, -0.001], + [0.0010300000000000003, 0.0, -0.001], + [0.0010400000000000001, 0.0, -0.001], + [0.0010499999999999997, 0.0, -0.001], + [0.0010600000000000004, 0.0, -0.001], + [0.0010700000000000002, 0.0, -0.001], + [0.00108, 0.0, -0.001], + [0.0010899999999999998, 0.0, -0.001], + [0.0010999999999999996, 0.0, -0.001], + [0.0011100000000000003, 0.0, -0.001], + [0.0011200000000000001, 0.0, -0.001], + [0.00113, 0.0, -0.001], + [0.0011400000000000006, 0.0, -0.001], + [0.0011500000000000004, 0.0, -0.001], + [0.0011600000000000002, 0.0, -0.001], + [0.00117, 0.0, -0.001], + [0.0011799999999999996, 0.0, -0.001], + [0.0011900000000000003, 0.0, -0.001], + [0.0012000000000000001, 0.0, -0.001], + [0.00121, 0.0, -0.001], + [0.0012200000000000006, 0.0, -0.001], + [0.0012300000000000004, 0.0, -0.001], + [0.0012400000000000002, 0.0, -0.001], + [0.00125, 0.0, -0.001], + [0.0012599999999999998, 0.0, -0.001], + [0.0012700000000000005, 0.0, -0.001], + [0.0012800000000000003, 0.0, -0.001], + [0.0012900000000000001, 0.0, -0.001], + [0.0013000000000000008, 0.0, -0.001], + [0.0013100000000000004, 0.0, -0.001], + [0.0013200000000000002, 0.0, -0.001], + [0.00133, 0.0, -0.001], + [0.0013399999999999998, 0.0, -0.001], + [0.0013500000000000005, 0.0, -0.001], + [0.0013600000000000003, 0.0, -0.001], + [0.0013700000000000001, 0.0, -0.001], + [0.0013800000000000008, 0.0, -0.001], + [0.0013900000000000006, 0.0, -0.001], + [0.0014000000000000004, 0.0, -0.001], + [0.0014100000000000002, 0.0, -0.001], + [0.0014199999999999998, 0.0, -0.001], + [0.0014300000000000005, 0.0, -0.001], + [0.0014400000000000003, 0.0, -0.001], + [0.0014500000000000001, 0.0, -0.001], + [0.0014600000000000008, 0.0, -0.001], + [0.0014700000000000006, 0.0, -0.001], + [0.0014800000000000004, 0.0, -0.001], + [0.0014900000000000002, 0.0, -0.001], + [0.0015, 0.0, -0.001], + [0.0015100000000000007, 0.0, -0.001], + [0.0015200000000000005, 0.0, -0.001], + [0.0015300000000000003, 0.0, -0.001], + [0.001540000000000001, 0.0, -0.001], + [0.0015500000000000008, 0.0, -0.001], + [0.0015600000000000004, 0.0, -0.001], + [0.0015700000000000002, 0.0, -0.001], + [0.00158, 0.0, -0.001], + [0.0015900000000000007, 0.0, -0.001], + [0.0016000000000000005, 0.0, -0.001], + [0.0016100000000000003, 0.0, -0.001], + [0.001620000000000001, 0.0, -0.001], + [0.001629999999999999, 0.0, -0.001], + [0.0016399999999999997, 0.0, -0.001], + [0.0016499999999999996, 0.0, -0.001], + [0.0016599999999999991, 0.0, -0.001], + [0.0016699999999999998, 0.0, -0.001], + [0.0016799999999999996, 0.0, -0.001], + [0.0016899999999999994, 0.0, -0.001], + [0.0016999999999999993, 0.0, -0.001], + [0.001709999999999999, 0.0, -0.001], + [0.0017199999999999997, 0.0, -0.001], + [0.0017299999999999996, 0.0, -0.001], + [0.0017399999999999994, 0.0, -0.001], + [0.00175, 0.0, -0.001], + [0.0017599999999999998, 0.0, -0.001], + [0.0017699999999999997, 0.0, -0.001], + [0.0017799999999999995, 0.0, -0.001], + [0.001789999999999999, 0.0, -0.001], + [0.0017999999999999997, 0.0, -0.001], + [0.0018099999999999995, 0.0, -0.001], + [0.0018199999999999994, 0.0, -0.001], + [0.00183, 0.0, -0.001], + [0.0018399999999999998, 0.0, -0.001], + [0.0018499999999999996, 0.0, -0.001], + [0.0018599999999999995, 0.0, -0.001], + [0.0018699999999999993, 0.0, -0.001], + [0.00188, 0.0, -0.001], + [0.0018899999999999998, 0.0, -0.001], + [0.0018999999999999996, 0.0, -0.001], + [0.0019100000000000002, 0.0, -0.001], + [0.0019199999999999998, 0.0, -0.001], + [0.0019299999999999996, 0.0, -0.001], + [0.0019399999999999995, 0.0, -0.001], + [0.0019499999999999993, 0.0, -0.001], + [0.00196, 0.0, -0.001], + [0.00197, 0.0, -0.001], + [0.0019799999999999996, 0.0, -0.001], + [0.00199, 0.0, -0.001], + [0.002, 0.0, -0.001], + [0.0020099999999999996, 0.0, -0.001], + [0.0020199999999999997, 0.0, -0.001], + [0.0020299999999999993, 0.0, -0.001], + [0.00204, 0.0, -0.001], + [0.0020499999999999997, 0.0, -0.001], + [0.0020599999999999998, 0.0, -0.001], + [0.0020700000000000002, 0.0, -0.001], + [0.0020800000000000003, 0.0, -0.001], + [0.00209, 0.0, -0.001], + [0.0020999999999999994, 0.0, -0.001], + [0.0021099999999999995, 0.0, -0.001], + [0.00212, 0.0, -0.001], + [0.00213, 0.0, -0.001], + [0.0021399999999999995, 0.0, -0.001], + [0.0021500000000000004, 0.0, -0.001], + [0.00216, 0.0, -0.001], + [0.00217, 0.0, -0.001], + [0.0021799999999999996, 0.0, -0.001], + [0.0021899999999999997, 0.0, -0.001], + [0.0022, 0.0, -0.001], + [0.00221, 0.0, -0.001], + [0.0022199999999999998, 0.0, -0.001], + [0.00223, 0.0, -0.001], + [0.0022400000000000002, 0.0, -0.001], + [0.00225, 0.0, -0.001], + [0.00226, 0.0, -0.001], + [0.0022699999999999994, 0.0, -0.001], + [0.0022800000000000003, 0.0, -0.001], + [0.00229, 0.0, -0.001], + [0.0023, 0.0, -0.001], + [0.0023100000000000004, 0.0, -0.001], + [0.0023200000000000004, 0.0, -0.001], + [0.00233, 0.0, -0.001], + [0.00234, 0.0, -0.001], + [0.0023499999999999997, 0.0, -0.001], + [0.00236, 0.0, -0.001], + [0.00237, 0.0, -0.001], + [0.0023799999999999997, 0.0, -0.001], + [0.0023900000000000006, 0.0, -0.001], + [0.0024000000000000002, 0.0, -0.001], + [0.0024100000000000002, 0.0, -0.001], + [0.00242, 0.0, -0.001], + [0.00243, 0.0, -0.001], + [0.0024400000000000003, 0.0, -0.001], + [0.0024500000000000004, 0.0, -0.001], + [0.00246, 0.0, -0.001], + [0.002470000000000001, 0.0, -0.001], + [0.0024800000000000004, 0.0, -0.001], + [0.00249, 0.0, -0.001], + [0.0025, 0.0, -0.001], + [0.0025099999999999996, 0.0, -0.001], + [0.0025200000000000005, 0.0, -0.001], + [0.00253, 0.0, -0.001], + [0.00254, 0.0, -0.001], + [0.0025500000000000006, 0.0, -0.001], + [0.0025600000000000006, 0.0, -0.001], + [0.0025700000000000002, 0.0, -0.001], + [0.0025800000000000003, 0.0, -0.001], + [0.00259, 0.0, -0.001], + [0.0026000000000000007, 0.0, -0.001], + [0.0026100000000000003, 0.0, -0.001], + [0.00262, 0.0, -0.001], + [0.002630000000000001, 0.0, -0.001], + [0.0026400000000000004, 0.0, -0.001], + [0.0026500000000000004, 0.0, -0.001], + [0.00266, 0.0, -0.001], + [0.00267, 0.0, -0.001], + [0.0026800000000000005, 0.0, -0.001], + [0.0026900000000000006, 0.0, -0.001], + [0.0027, 0.0, -0.001], + [0.002710000000000001, 0.0, -0.001], + [0.0027200000000000006, 0.0, -0.001], + [0.0027300000000000002, 0.0, -0.001], + [0.0027400000000000002, 0.0, -0.001], + [0.00275, 0.0, -0.001], + [0.0027600000000000007, 0.0, -0.001], + [0.0027700000000000003, 0.0, -0.001], + [0.0027800000000000004, 0.0, -0.001], + [0.002790000000000001, 0.0, -0.001], + [0.002800000000000001, 0.0, -0.001], + [0.0028100000000000004, 0.0, -0.001], + [0.0028200000000000005, 0.0, -0.001], + [0.00283, 0.0, -0.001], + [0.002840000000000001, 0.0, -0.001], + [0.0028500000000000005, 0.0, -0.001], + [0.00286, 0.0, -0.001], + [0.002870000000000001, 0.0, -0.001], + [0.002879999999999999, 0.0, -0.001], + [0.0028899999999999998, 0.0, -0.001], + [0.0028999999999999994, 0.0, -0.001], + [0.0029099999999999994, 0.0, -0.001], + [0.00292, 0.0, -0.001], + [0.00293, 0.0, -0.001], + [0.0029399999999999995, 0.0, -0.001], + [0.0029499999999999995, 0.0, -0.001], + [0.002959999999999999, 0.0, -0.001], + [0.0029699999999999996, 0.0, -0.001], + [0.0029799999999999996, 0.0, -0.001], + [0.002989999999999999, 0.0, -0.001], + [0.003, 0.0, -0.001], + [0.0030099999999999997, 0.0, -0.001], + [0.0030199999999999997, 0.0, -0.001], + [0.0030299999999999993, 0.0, -0.001], + [0.0030399999999999993, 0.0, -0.001], + [0.0030499999999999998, 0.0, -0.001], + [0.00306, 0.0, -0.001], + [0.0030699999999999994, 0.0, -0.001], + [0.0030800000000000003, 0.0, -0.001], + [0.00309, 0.0, -0.001], + [0.0030999999999999995, 0.0, -0.001], + [0.0031099999999999995, 0.0, -0.001], + [0.003119999999999999, 0.0, -0.001], + [0.00313, 0.0, -0.001], + [0.0031399999999999996, 0.0, -0.001], + [0.0031499999999999996, 0.0, -0.001], + [0.00316, 0.0, -0.001], + [0.00317, 0.0, -0.001], + [0.0031799999999999997, 0.0, -0.001], + [0.0031899999999999997, 0.0, -0.001], + [0.0031999999999999993, 0.0, -0.001], + [0.00321, 0.0, -0.001], + [0.0032199999999999998, 0.0, -0.001], + [0.0032299999999999994, 0.0, -0.001], + [0.0032400000000000003, 0.0, -0.001], + [0.00325, 0.0, -0.001], + [0.00326, 0.0, -0.001], + [0.0032699999999999995, 0.0, -0.001], + [0.0032799999999999995, 0.0, -0.001], + [0.00329, 0.0, -0.001], + [0.0033, 0.0, -0.001], + [0.0033099999999999996, 0.0, -0.001], + [0.0033200000000000005, 0.0, -0.001], + [0.00333, 0.0, -0.001], + [0.0033399999999999997, 0.0, -0.001], + [0.0033499999999999997, 0.0, -0.001], + [0.0033599999999999993, 0.0, -0.001], + [0.00337, 0.0, -0.001], + [0.0033799999999999998, 0.0, -0.001], + [0.00339, 0.0, -0.001], + [0.0034000000000000002, 0.0, -0.001], + [0.0034100000000000003, 0.0, -0.001], + [0.00342, 0.0, -0.001], + [0.00343, 0.0, -0.001], + [0.0034399999999999995, 0.0, -0.001], + [0.0034500000000000004, 0.0, -0.001], + [0.00346, 0.0, -0.001], + [0.0034699999999999996, 0.0, -0.001], + [0.0034800000000000005, 0.0, -0.001], + [0.00349, 0.0, -0.001], + [0.0035, 0.0, -0.001], + [0.0035099999999999997, 0.0, -0.001], + [0.0035199999999999997, 0.0, -0.001], + [0.00353, 0.0, -0.001], + [0.00354, 0.0, -0.001], + [0.0035499999999999998, 0.0, -0.001], + [0.0035600000000000007, 0.0, -0.001], + [0.0035700000000000003, 0.0, -0.001], + [0.0035800000000000003, 0.0, -0.001], + [0.00359, 0.0, -0.001], + [0.0035999999999999995, 0.0, -0.001], + [0.0036100000000000004, 0.0, -0.001], + [0.00362, 0.0, -0.001], + [0.00363, 0.0, -0.001], + [0.0036400000000000004, 0.0, -0.001], + [0.0036500000000000005, 0.0, -0.001], + [0.00366, 0.0, -0.001], + [0.00367, 0.0, -0.001], + [0.0036799999999999997, 0.0, -0.001], + [0.0036900000000000006, 0.0, -0.001], + [0.0037, 0.0, -0.001], + [0.0037099999999999998, 0.0, -0.001], + [0.0037200000000000006, 0.0, -0.001], + [0.0037300000000000002, 0.0, -0.001], + [0.0037400000000000003, 0.0, -0.001], + [0.00375, 0.0, -0.001], + [0.00376, 0.0, -0.001], + [0.0037700000000000003, 0.0, -0.001], + [0.0037800000000000004, 0.0, -0.001], + [0.00379, 0.0, -0.001], + [0.003800000000000001, 0.0, -0.001], + [0.0038100000000000005, 0.0, -0.001], + [0.0038200000000000005, 0.0, -0.001], + [0.00383, 0.0, -0.001], + [0.0038399999999999997, 0.0, -0.001], + [0.0038500000000000006, 0.0, -0.001], + [0.00386, 0.0, -0.001], + [0.00387, 0.0, -0.001], + [0.0038800000000000006, 0.0, -0.001], + [0.0038900000000000007, 0.0, -0.001], + [0.0039000000000000003, 0.0, -0.001], + [0.00391, 0.0, -0.001], + [0.00392, 0.0, -0.001], + [0.00393, 0.0, -0.001], + [0.003940000000000001, 0.0, -0.001], + [0.00395, 0.0, -0.001], + [0.003960000000000001, 0.0, -0.001], + [0.0039700000000000004, 0.0, -0.001], + [0.00398, 0.0, -0.001], + [0.0039900000000000005, 0.0, -0.001], + [0.004, 0.0, -0.001], + [0.00401, 0.0, -0.001], + [0.004019999999999999, 0.0, -0.001], + [0.0040300000000000015, 0.0, -0.001], + [0.004040000000000001, 0.0, -0.001], + [0.004050000000000001, 0.0, -0.001], + [0.00406, 0.0, -0.001], + [0.004070000000000001, 0.0, -0.001], + [0.00408, 0.0, -0.001], + [0.00409, 0.0, -0.001], + [0.004100000000000001, 0.0, -0.001], + [0.004110000000000001, 0.0, -0.001], + [0.004120000000000001, 0.0, -0.001], + [0.004129999999999999, 0.0, -0.001], + [0.004139999999999999, 0.0, -0.001], + [0.004149999999999998, 0.0, -0.001], + [0.0041600000000000005, 0.0, -0.001], + [0.00417, 0.0, -0.001], + [0.00418, 0.0, -0.001], + [0.004189999999999999, 0.0, -0.001], + [0.004199999999999999, 0.0, -0.001], + [0.004209999999999999, 0.0, -0.001], + [0.004219999999999999, 0.0, -0.001], + [0.00423, 0.0, -0.001], + [0.00424, 0.0, -0.001], + [0.00425, 0.0, -0.001], + [0.00426, 0.0, -0.001], + [0.0042699999999999995, 0.0, -0.001], + [0.004279999999999999, 0.0, -0.001], + [0.0042899999999999995, 0.0, -0.001], + [0.004299999999999999, 0.0, -0.001], + [0.004309999999999999, 0.0, -0.001], + [0.00432, 0.0, -0.001], + [0.00433, 0.0, -0.001], + [0.00434, 0.0, -0.001], + [0.00435, 0.0, -0.001], + [0.004359999999999999, 0.0, -0.001], + [0.004369999999999999, 0.0, -0.001], + [0.004379999999999999, 0.0, -0.001], + [0.004390000000000001, 0.0, -0.001], + [0.0044, 0.0, -0.001], + [0.00441, 0.0, -0.001], + [0.00442, 0.0, -0.001], + [0.00443, 0.0, -0.001], + [0.0044399999999999995, 0.0, -0.001], + [0.004449999999999999, 0.0, -0.001], + [0.004459999999999999, 0.0, -0.001], + [0.004469999999999999, 0.0, -0.001], + [0.0044800000000000005, 0.0, -0.001], + [0.00449, 0.0, -0.001], + [0.0045, 0.0, -0.001], + [0.00451, 0.0, -0.001], + [0.00452, 0.0, -0.001], + [0.004529999999999999, 0.0, -0.001], + [0.004539999999999999, 0.0, -0.001], + [0.004550000000000001, 0.0, -0.001], + [0.004560000000000001, 0.0, -0.001], + [0.00457, 0.0, -0.001], + [0.00458, 0.0, -0.001], + [0.0045899999999999995, 0.0, -0.001], + [0.0046, 0.0, -0.001], + [0.0046099999999999995, 0.0, -0.001], + [0.004619999999999999, 0.0, -0.001], + [0.004629999999999999, 0.0, -0.001], + [0.004640000000000001, 0.0, -0.001], + [0.0046500000000000005, 0.0, -0.001], + [0.00466, 0.0, -0.001], + [0.00467, 0.0, -0.001], + [0.00468, 0.0, -0.001], + [0.00469, 0.0, -0.001], + [0.004699999999999999, 0.0, -0.001], + [0.004710000000000001, 0.0, -0.001], + [0.00472, 0.0, -0.001], + [0.004730000000000001, 0.0, -0.001], + [0.00474, 0.0, -0.001], + [0.00475, 0.0, -0.001], + [0.0047599999999999995, 0.0, -0.001], + [0.00477, 0.0, -0.001], + [0.0047799999999999995, 0.0, -0.001], + [0.004789999999999999, 0.0, -0.001], + [0.0048000000000000004, 0.0, -0.001], + [0.004810000000000001, 0.0, -0.001], + [0.0048200000000000005, 0.0, -0.001], + [0.00483, 0.0, -0.001], + [0.00484, 0.0, -0.001], + [0.004849999999999999, 0.0, -0.001], + [0.00486, 0.0, -0.001], + [0.004870000000000001, 0.0, -0.001], + [0.004880000000000001, 0.0, -0.001], + [0.00489, 0.0, -0.001], + [0.004900000000000001, 0.0, -0.001], + [0.00491, 0.0, -0.001], + [0.00492, 0.0, -0.001], + [0.0049299999999999995, 0.0, -0.001], + [0.004939999999999999, 0.0, -0.001], + [0.0049499999999999995, 0.0, -0.001], + [0.004960000000000001, 0.0, -0.001], + [0.0049700000000000005, 0.0, -0.001], + [0.00498, 0.0, -0.001], + [0.0049900000000000005, 0.0, -0.001], + [0.005, 0.0, -0.001], + [0.00501, 0.0, -0.001], + [0.005019999999999999, 0.0, -0.001], + [0.0050300000000000015, 0.0, -0.001], + [0.005040000000000001, 0.0, -0.001], + [0.005050000000000001, 0.0, -0.001], + [0.00506, 0.0, -0.001], + [0.00507, 0.0, -0.001], + [0.00508, 0.0, -0.001], + [0.00509, 0.0, -0.001], + [0.0050999999999999995, 0.0, -0.001], + [0.005109999999999999, 0.0, -0.001], + [0.005120000000000001, 0.0, -0.001], + [0.005130000000000001, 0.0, -0.001], + [0.0051400000000000005, 0.0, -0.001], + [0.00515, 0.0, -0.001], + [0.0051600000000000005, 0.0, -0.001], + [0.00517, 0.0, -0.001], + [0.00518, 0.0, -0.001], + [0.005190000000000001, 0.0, -0.001], + [0.0052000000000000015, 0.0, -0.001], + [0.005210000000000001, 0.0, -0.001], + [0.005220000000000001, 0.0, -0.001], + [0.00523, 0.0, -0.001], + [0.00524, 0.0, -0.001], + [0.00525, 0.0, -0.001], + [0.00526, 0.0, -0.001], + [0.0052699999999999995, 0.0, -0.001], + [0.005280000000000001, 0.0, -0.001], + [0.005290000000000001, 0.0, -0.001], + [0.005300000000000001, 0.0, -0.001], + [0.0053100000000000005, 0.0, -0.001], + [0.00532, 0.0, -0.001], + [0.00533, 0.0, -0.001], + [0.00534, 0.0, -0.001], + [0.0053500000000000015, 0.0, -0.001], + [0.005360000000000001, 0.0, -0.001], + [0.005370000000000001, 0.0, -0.001], + [0.005379999999999999, 0.0, -0.001], + [0.005389999999999999, 0.0, -0.001], + [0.0053999999999999986, 0.0, -0.001], + [0.00541, 0.0, -0.001], + [0.00542, 0.0, -0.001], + [0.00543, 0.0, -0.001], + [0.0054399999999999995, 0.0, -0.001], + [0.005449999999999999, 0.0, -0.001], + [0.005459999999999999, 0.0, -0.001], + [0.005469999999999999, 0.0, -0.001], + [0.0054800000000000005, 0.0, -0.001], + [0.00549, 0.0, -0.001], + [0.0055, 0.0, -0.001], + [0.00551, 0.0, -0.001], + [0.00552, 0.0, -0.001], + [0.005529999999999999, 0.0, -0.001], + [0.005539999999999999, 0.0, -0.001], + [0.0055499999999999985, 0.0, -0.001], + [0.005559999999999999, 0.0, -0.001], + [0.00557, 0.0, -0.001], + [0.00558, 0.0, -0.001], + [0.0055899999999999995, 0.0, -0.001], + [0.0056, 0.0, -0.001], + [0.0056099999999999995, 0.0, -0.001], + [0.005619999999999999, 0.0, -0.001], + [0.005629999999999999, 0.0, -0.001], + [0.005640000000000001, 0.0, -0.001], + [0.0056500000000000005, 0.0, -0.001], + [0.00566, 0.0, -0.001], + [0.00567, 0.0, -0.001], + [0.005679999999999999, 0.0, -0.001], + [0.00569, 0.0, -0.001], + [0.005699999999999999, 0.0, -0.001], + [0.005709999999999999, 0.0, -0.001], + [0.0057199999999999985, 0.0, -0.001], + [0.005730000000000001, 0.0, -0.001], + [0.00574, 0.0, -0.001], + [0.00575, 0.0, -0.001], + [0.0057599999999999995, 0.0, -0.001], + [0.00577, 0.0, -0.001], + [0.0057799999999999995, 0.0, -0.001], + [0.005789999999999999, 0.0, -0.001], + [0.0058000000000000005, 0.0, -0.001], + [0.005810000000000001, 0.0, -0.001], + [0.0058200000000000005, 0.0, -0.001], + [0.00583, 0.0, -0.001], + [0.00584, 0.0, -0.001], + [0.005849999999999999, 0.0, -0.001], + [0.00586, 0.0, -0.001], + [0.005869999999999999, 0.0, -0.001], + [0.005879999999999999, 0.0, -0.001], + [0.00589, 0.0, -0.001], + [0.005900000000000001, 0.0, -0.001], + [0.00591, 0.0, -0.001], + [0.00592, 0.0, -0.001], + [0.0059299999999999995, 0.0, -0.001], + [0.005939999999999999, 0.0, -0.001], + [0.0059499999999999996, 0.0, -0.001], + [0.005960000000000001, 0.0, -0.001], + [0.0059700000000000005, 0.0, -0.001], + [0.00598, 0.0, -0.001], + [0.0059900000000000005, 0.0, -0.001], + [0.006, 0.0, -0.001] + ], + "unit": "m" + }, + "orientation": { + "value": [ + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ] + ], + "type": "matrix" + }, + "style": { + "arrows": { + "x": { "color": null, "show": true }, + "y": { "color": null, "show": true }, + "z": { "color": null, "show": true } + }, + "color": null, + "description": { "show": null, "text": null }, + "label": "Sensor, z=-1mm", + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + }, + "pixel": { "color": null, "size": 1, "symbol": null }, + "size": null + }, + "pixel": { "value": [0.0, 0.0, 0.0], "unit": "m" } + }, + { + "id": 2678042525760, + "type": "Sensor", + "position": { + "value": [ + [-0.004, 0.0, -0.003], + [-0.0039900000000000005, 0.0, -0.003], + [-0.00398, 0.0, -0.003], + [-0.0039700000000000004, 0.0, -0.003], + [-0.00396, 0.0, -0.003], + [-0.00395, 0.0, -0.003], + [-0.00394, 0.0, -0.003], + [-0.00393, 0.0, -0.003], + [-0.00392, 0.0, -0.003], + [-0.00391, 0.0, -0.003], + [-0.0039, 0.0, -0.003], + [-0.0038900000000000002, 0.0, -0.003], + [-0.0038799999999999998, 0.0, -0.003], + [-0.00387, 0.0, -0.003], + [-0.0038599999999999997, 0.0, -0.003], + [-0.00385, 0.0, -0.003], + [-0.0038399999999999997, 0.0, -0.003], + [-0.00383, 0.0, -0.003], + [-0.00382, 0.0, -0.003], + [-0.00381, 0.0, -0.003], + [-0.0038, 0.0, -0.003], + [-0.00379, 0.0, -0.003], + [-0.0037800000000000004, 0.0, -0.003], + [-0.00377, 0.0, -0.003], + [-0.00376, 0.0, -0.003], + [-0.00375, 0.0, -0.003], + [-0.0037400000000000003, 0.0, -0.003], + [-0.00373, 0.0, -0.003], + [-0.0037199999999999998, 0.0, -0.003], + [-0.0037099999999999998, 0.0, -0.003], + [-0.0037, 0.0, -0.003], + [-0.00369, 0.0, -0.003], + [-0.00368, 0.0, -0.003], + [-0.00367, 0.0, -0.003], + [-0.00366, 0.0, -0.003], + [-0.00365, 0.0, -0.003], + [-0.00364, 0.0, -0.003], + [-0.00363, 0.0, -0.003], + [-0.00362, 0.0, -0.003], + [-0.00361, 0.0, -0.003], + [-0.0036, 0.0, -0.003], + [-0.00359, 0.0, -0.003], + [-0.0035800000000000003, 0.0, -0.003], + [-0.0035700000000000003, 0.0, -0.003], + [-0.0035600000000000002, 0.0, -0.003], + [-0.0035499999999999998, 0.0, -0.003], + [-0.00354, 0.0, -0.003], + [-0.00353, 0.0, -0.003], + [-0.00352, 0.0, -0.003], + [-0.0035099999999999997, 0.0, -0.003], + [-0.0035, 0.0, -0.003], + [-0.00349, 0.0, -0.003], + [-0.00348, 0.0, -0.003], + [-0.0034699999999999996, 0.0, -0.003], + [-0.00346, 0.0, -0.003], + [-0.0034500000000000004, 0.0, -0.003], + [-0.00344, 0.0, -0.003], + [-0.00343, 0.0, -0.003], + [-0.00342, 0.0, -0.003], + [-0.0034100000000000003, 0.0, -0.003], + [-0.0034, 0.0, -0.003], + [-0.0033900000000000002, 0.0, -0.003], + [-0.0033799999999999998, 0.0, -0.003], + [-0.00337, 0.0, -0.003], + [-0.0033599999999999997, 0.0, -0.003], + [-0.00335, 0.0, -0.003], + [-0.0033399999999999997, 0.0, -0.003], + [-0.00333, 0.0, -0.003], + [-0.00332, 0.0, -0.003], + [-0.00331, 0.0, -0.003], + [-0.0033, 0.0, -0.003], + [-0.00329, 0.0, -0.003], + [-0.0032800000000000004, 0.0, -0.003], + [-0.00327, 0.0, -0.003], + [-0.00326, 0.0, -0.003], + [-0.00325, 0.0, -0.003], + [-0.0032400000000000003, 0.0, -0.003], + [-0.00323, 0.0, -0.003], + [-0.0032199999999999998, 0.0, -0.003], + [-0.00321, 0.0, -0.003], + [-0.0032, 0.0, -0.003], + [-0.00319, 0.0, -0.003], + [-0.0031799999999999997, 0.0, -0.003], + [-0.00317, 0.0, -0.003], + [-0.00316, 0.0, -0.003], + [-0.00315, 0.0, -0.003], + [-0.00314, 0.0, -0.003], + [-0.00313, 0.0, -0.003], + [-0.00312, 0.0, -0.003], + [-0.0031100000000000004, 0.0, -0.003], + [-0.0031, 0.0, -0.003], + [-0.00309, 0.0, -0.003], + [-0.0030800000000000003, 0.0, -0.003], + [-0.0030700000000000002, 0.0, -0.003], + [-0.0030600000000000002, 0.0, -0.003], + [-0.0030499999999999998, 0.0, -0.003], + [-0.00304, 0.0, -0.003], + [-0.00303, 0.0, -0.003], + [-0.00302, 0.0, -0.003], + [-0.0030099999999999997, 0.0, -0.003], + [-0.003, 0.0, -0.003], + [-0.00299, 0.0, -0.003], + [-0.00298, 0.0, -0.003], + [-0.0029699999999999996, 0.0, -0.003], + [-0.00296, 0.0, -0.003], + [-0.0029500000000000004, 0.0, -0.003], + [-0.00294, 0.0, -0.003], + [-0.00293, 0.0, -0.003], + [-0.00292, 0.0, -0.003], + [-0.0029100000000000003, 0.0, -0.003], + [-0.0029, 0.0, -0.003], + [-0.0028899999999999998, 0.0, -0.003], + [-0.0028799999999999997, 0.0, -0.003], + [-0.00287, 0.0, -0.003], + [-0.0028599999999999997, 0.0, -0.003], + [-0.0028499999999999997, 0.0, -0.003], + [-0.0028399999999999996, 0.0, -0.003], + [-0.00283, 0.0, -0.003], + [-0.0028200000000000005, 0.0, -0.003], + [-0.00281, 0.0, -0.003], + [-0.0028, 0.0, -0.003], + [-0.00279, 0.0, -0.003], + [-0.0027800000000000004, 0.0, -0.003], + [-0.00277, 0.0, -0.003], + [-0.00276, 0.0, -0.003], + [-0.00275, 0.0, -0.003], + [-0.0027400000000000002, 0.0, -0.003], + [-0.00273, 0.0, -0.003], + [-0.0027199999999999998, 0.0, -0.003], + [-0.00271, 0.0, -0.003], + [-0.0027, 0.0, -0.003], + [-0.00269, 0.0, -0.003], + [-0.0026799999999999997, 0.0, -0.003], + [-0.00267, 0.0, -0.003], + [-0.00266, 0.0, -0.003], + [-0.00265, 0.0, -0.003], + [-0.0026399999999999996, 0.0, -0.003], + [-0.00263, 0.0, -0.003], + [-0.00262, 0.0, -0.003], + [-0.00261, 0.0, -0.003], + [-0.0025999999999999994, 0.0, -0.003], + [-0.00259, 0.0, -0.003], + [-0.0025800000000000003, 0.0, -0.003], + [-0.0025700000000000002, 0.0, -0.003], + [-0.00256, 0.0, -0.003], + [-0.0025499999999999997, 0.0, -0.003], + [-0.00254, 0.0, -0.003], + [-0.00253, 0.0, -0.003], + [-0.00252, 0.0, -0.003], + [-0.0025099999999999996, 0.0, -0.003], + [-0.0025, 0.0, -0.003], + [-0.00249, 0.0, -0.003], + [-0.00248, 0.0, -0.003], + [-0.0024699999999999995, 0.0, -0.003], + [-0.00246, 0.0, -0.003], + [-0.0024500000000000004, 0.0, -0.003], + [-0.00244, 0.0, -0.003], + [-0.00243, 0.0, -0.003], + [-0.00242, 0.0, -0.003], + [-0.0024100000000000002, 0.0, -0.003], + [-0.0024, 0.0, -0.003], + [-0.0023899999999999998, 0.0, -0.003], + [-0.0023799999999999997, 0.0, -0.003], + [-0.00237, 0.0, -0.003], + [-0.0023599999999999997, 0.0, -0.003], + [-0.0023499999999999997, 0.0, -0.003], + [-0.00234, 0.0, -0.003], + [-0.00233, 0.0, -0.003], + [-0.00232, 0.0, -0.003], + [-0.0023099999999999996, 0.0, -0.003], + [-0.0023, 0.0, -0.003], + [-0.00229, 0.0, -0.003], + [-0.0022800000000000003, 0.0, -0.003], + [-0.00227, 0.0, -0.003], + [-0.0022600000000000003, 0.0, -0.003], + [-0.00225, 0.0, -0.003], + [-0.0022400000000000002, 0.0, -0.003], + [-0.0022299999999999998, 0.0, -0.003], + [-0.00222, 0.0, -0.003], + [-0.00221, 0.0, -0.003], + [-0.0022, 0.0, -0.003], + [-0.00219, 0.0, -0.003], + [-0.00218, 0.0, -0.003], + [-0.00217, 0.0, -0.003], + [-0.00216, 0.0, -0.003], + [-0.00215, 0.0, -0.003], + [-0.00214, 0.0, -0.003], + [-0.00213, 0.0, -0.003], + [-0.00212, 0.0, -0.003], + [-0.00211, 0.0, -0.003], + [-0.0021000000000000003, 0.0, -0.003], + [-0.00209, 0.0, -0.003], + [-0.0020800000000000003, 0.0, -0.003], + [-0.00207, 0.0, -0.003], + [-0.00206, 0.0, -0.003], + [-0.0020499999999999997, 0.0, -0.003], + [-0.00204, 0.0, -0.003], + [-0.0020299999999999997, 0.0, -0.003], + [-0.00202, 0.0, -0.003], + [-0.0020099999999999996, 0.0, -0.003], + [-0.002, 0.0, -0.003], + [-0.0019899999999999996, 0.0, -0.003], + [-0.00198, 0.0, -0.003], + [-0.00197, 0.0, -0.003], + [-0.00196, 0.0, -0.003], + [-0.0019500000000000001, 0.0, -0.003], + [-0.0019399999999999999, 0.0, -0.003], + [-0.00193, 0.0, -0.003], + [-0.0019199999999999998, 0.0, -0.003], + [-0.0019100000000000002, 0.0, -0.003], + [-0.0019, 0.0, -0.003], + [-0.0018900000000000002, 0.0, -0.003], + [-0.00188, 0.0, -0.003], + [-0.0018700000000000001, 0.0, -0.003], + [-0.0018599999999999999, 0.0, -0.003], + [-0.00185, 0.0, -0.003], + [-0.0018399999999999998, 0.0, -0.003], + [-0.00183, 0.0, -0.003], + [-0.0018199999999999998, 0.0, -0.003], + [-0.00181, 0.0, -0.003], + [-0.0017999999999999997, 0.0, -0.003], + [-0.0017900000000000001, 0.0, -0.003], + [-0.00178, 0.0, -0.003], + [-0.00177, 0.0, -0.003], + [-0.0017599999999999998, 0.0, -0.003], + [-0.00175, 0.0, -0.003], + [-0.0017399999999999998, 0.0, -0.003], + [-0.00173, 0.0, -0.003], + [-0.0017199999999999997, 0.0, -0.003], + [-0.00171, 0.0, -0.003], + [-0.0016999999999999997, 0.0, -0.003], + [-0.0016899999999999999, 0.0, -0.003], + [-0.0016799999999999996, 0.0, -0.003], + [-0.0016699999999999998, 0.0, -0.003], + [-0.0016599999999999998, 0.0, -0.003], + [-0.0016500000000000004, 0.0, -0.003], + [-0.0016400000000000002, 0.0, -0.003], + [-0.00163, 0.0, -0.003], + [-0.0016200000000000001, 0.0, -0.003], + [-0.0016100000000000003, 0.0, -0.003], + [-0.0016, 0.0, -0.003], + [-0.0015899999999999998, 0.0, -0.003], + [-0.00158, 0.0, -0.003], + [-0.0015700000000000002, 0.0, -0.003], + [-0.00156, 0.0, -0.003], + [-0.0015499999999999997, 0.0, -0.003], + [-0.0015400000000000001, 0.0, -0.003], + [-0.0015300000000000003, 0.0, -0.003], + [-0.00152, 0.0, -0.003], + [-0.0015099999999999998, 0.0, -0.003], + [-0.0015, 0.0, -0.003], + [-0.0014900000000000002, 0.0, -0.003], + [-0.00148, 0.0, -0.003], + [-0.0014699999999999997, 0.0, -0.003], + [-0.00146, 0.0, -0.003], + [-0.0014500000000000001, 0.0, -0.003], + [-0.0014399999999999999, 0.0, -0.003], + [-0.0014299999999999996, 0.0, -0.003], + [-0.0014199999999999998, 0.0, -0.003], + [-0.0014100000000000002, 0.0, -0.003], + [-0.0014, 0.0, -0.003], + [-0.0013899999999999997, 0.0, -0.003], + [-0.00138, 0.0, -0.003], + [-0.0013700000000000001, 0.0, -0.003], + [-0.0013599999999999999, 0.0, -0.003], + [-0.0013499999999999996, 0.0, -0.003], + [-0.0013399999999999998, 0.0, -0.003], + [-0.00133, 0.0, -0.003], + [-0.0013199999999999998, 0.0, -0.003], + [-0.0013099999999999995, 0.0, -0.003], + [-0.0012999999999999997, 0.0, -0.003], + [-0.0012900000000000001, 0.0, -0.003], + [-0.0012799999999999999, 0.0, -0.003], + [-0.0012699999999999996, 0.0, -0.003], + [-0.0012599999999999998, 0.0, -0.003], + [-0.00125, 0.0, -0.003], + [-0.0012399999999999998, 0.0, -0.003], + [-0.0012299999999999995, 0.0, -0.003], + [-0.0012199999999999997, 0.0, -0.003], + [-0.00121, 0.0, -0.003], + [-0.0011999999999999997, 0.0, -0.003], + [-0.0011899999999999994, 0.0, -0.003], + [-0.00118, 0.0, -0.003], + [-0.0011700000000000005, 0.0, -0.003], + [-0.0011600000000000002, 0.0, -0.003], + [-0.0011500000000000004, 0.0, -0.003], + [-0.0011400000000000002, 0.0, -0.003], + [-0.0011300000000000004, 0.0, -0.003], + [-0.0011200000000000001, 0.0, -0.003], + [-0.0011100000000000003, 0.0, -0.003], + [-0.0011, 0.0, -0.003], + [-0.0010900000000000003, 0.0, -0.003], + [-0.00108, 0.0, -0.003], + [-0.0010700000000000002, 0.0, -0.003], + [-0.00106, 0.0, -0.003], + [-0.0010500000000000004, 0.0, -0.003], + [-0.0010400000000000001, 0.0, -0.003], + [-0.0010300000000000003, 0.0, -0.003], + [-0.00102, 0.0, -0.003], + [-0.0010100000000000003, 0.0, -0.003], + [-0.001, 0.0, -0.003], + [-0.0009900000000000002, 0.0, -0.003], + [-0.00098, 0.0, -0.003], + [-0.0009700000000000002, 0.0, -0.003], + [-0.0009599999999999999, 0.0, -0.003], + [-0.0009500000000000002, 0.0, -0.003], + [-0.00094, 0.0, -0.003], + [-0.0009300000000000002, 0.0, -0.003], + [-0.0009199999999999999, 0.0, -0.003], + [-0.0009100000000000001, 0.0, -0.003], + [-0.0008999999999999999, 0.0, -0.003], + [-0.0008900000000000002, 0.0, -0.003], + [-0.0008799999999999999, 0.0, -0.003], + [-0.0008700000000000001, 0.0, -0.003], + [-0.0008599999999999999, 0.0, -0.003], + [-0.0008500000000000001, 0.0, -0.003], + [-0.0008399999999999998, 0.0, -0.003], + [-0.0008300000000000001, 0.0, -0.003], + [-0.0008199999999999999, 0.0, -0.003], + [-0.0008100000000000001, 0.0, -0.003], + [-0.0007999999999999998, 0.0, -0.003], + [-0.00079, 0.0, -0.003], + [-0.0007799999999999998, 0.0, -0.003], + [-0.0007700000000000001, 0.0, -0.003], + [-0.0007599999999999998, 0.0, -0.003], + [-0.00075, 0.0, -0.003], + [-0.0007399999999999998, 0.0, -0.003], + [-0.00073, 0.0, -0.003], + [-0.0007199999999999997, 0.0, -0.003], + [-0.0007099999999999999, 0.0, -0.003], + [-0.0006999999999999998, 0.0, -0.003], + [-0.00069, 0.0, -0.003], + [-0.0006799999999999997, 0.0, -0.003], + [-0.0006699999999999999, 0.0, -0.003], + [-0.0006599999999999997, 0.0, -0.003], + [-0.0006499999999999999, 0.0, -0.003], + [-0.0006399999999999997, 0.0, -0.003], + [-0.0006299999999999999, 0.0, -0.003], + [-0.0006199999999999997, 0.0, -0.003], + [-0.0006099999999999999, 0.0, -0.003], + [-0.0005999999999999996, 0.0, -0.003], + [-0.0005899999999999998, 0.0, -0.003], + [-0.0005799999999999997, 0.0, -0.003], + [-0.0005699999999999999, 0.0, -0.003], + [-0.0005600000000000005, 0.0, -0.003], + [-0.0005500000000000002, 0.0, -0.003], + [-0.00054, 0.0, -0.003], + [-0.0005300000000000002, 0.0, -0.003], + [-0.0005200000000000005, 0.0, -0.003], + [-0.0005100000000000003, 0.0, -0.003], + [-0.0005, 0.0, -0.003], + [-0.0004900000000000002, 0.0, -0.003], + [-0.00048000000000000045, 0.0, -0.003], + [-0.0004700000000000002, 0.0, -0.003], + [-0.00045999999999999996, 0.0, -0.003], + [-0.0004500000000000002, 0.0, -0.003], + [-0.0004400000000000004, 0.0, -0.003], + [-0.00043000000000000015, 0.0, -0.003], + [-0.0004199999999999999, 0.0, -0.003], + [-0.00041000000000000015, 0.0, -0.003], + [-0.00040000000000000034, 0.0, -0.003], + [-0.0003900000000000001, 0.0, -0.003], + [-0.0003799999999999999, 0.0, -0.003], + [-0.0003700000000000001, 0.0, -0.003], + [-0.0003600000000000003, 0.0, -0.003], + [-0.0003500000000000001, 0.0, -0.003], + [-0.00033999999999999986, 0.0, -0.003], + [-0.00033000000000000005, 0.0, -0.003], + [-0.0003200000000000003, 0.0, -0.003], + [-0.00031000000000000005, 0.0, -0.003], + [-0.0002999999999999998, 0.0, -0.003], + [-0.00029000000000000006, 0.0, -0.003], + [-0.00028000000000000025, 0.0, -0.003], + [-0.00027, 0.0, -0.003], + [-0.00025999999999999976, 0.0, -0.003], + [-0.00025, 0.0, -0.003], + [-0.00024000000000000022, 0.0, -0.003], + [-0.00022999999999999998, 0.0, -0.003], + [-0.00021999999999999976, 0.0, -0.003], + [-0.00020999999999999995, 0.0, -0.003], + [-0.00020000000000000017, 0.0, -0.003], + [-0.00018999999999999996, 0.0, -0.003], + [-0.0001799999999999997, 0.0, -0.003], + [-0.00016999999999999993, 0.0, -0.003], + [-0.00016000000000000015, 0.0, -0.003], + [-0.0001499999999999999, 0.0, -0.003], + [-0.0001399999999999997, 0.0, -0.003], + [-0.00012999999999999988, 0.0, -0.003], + [-0.00012000000000000011, 0.0, -0.003], + [-0.00010999999999999988, 0.0, -0.003], + [-9.999999999999964e-5, 0.0, -0.003], + [-8.999999999999986e-5, 0.0, -0.003], + [-8.000000000000007e-5, 0.0, -0.003], + [-6.999999999999984e-5, 0.0, -0.003], + [-5.999999999999961e-5, 0.0, -0.003], + [-4.999999999999982e-5, 0.0, -0.003], + [-4.000000000000004e-5, 0.0, -0.003], + [-2.9999999999999804e-5, 0.0, -0.003], + [-1.9999999999999575e-5, 0.0, -0.003], + [-9.999999999999787e-6, 0.0, -0.003], + [0.0, 0.0, -0.003], + [9.999999999999787e-6, 0.0, -0.003], + [2.0000000000000462e-5, 0.0, -0.003], + [3.0000000000000248e-5, 0.0, -0.003], + [4.000000000000004e-5, 0.0, -0.003], + [5.0000000000000714e-5, 0.0, -0.003], + [6.0000000000000496e-5, 0.0, -0.003], + [6.99999999999994e-5, 0.0, -0.003], + [8.000000000000007e-5, 0.0, -0.003], + [8.999999999999986e-5, 0.0, -0.003], + [9.999999999999964e-5, 0.0, -0.003], + [0.00010999999999999943, 0.0, -0.003], + [0.00012000000000000011, 0.0, -0.003], + [0.00012999999999999988, 0.0, -0.003], + [0.0001399999999999997, 0.0, -0.003], + [0.00014999999999999947, 0.0, -0.003], + [0.00016000000000000015, 0.0, -0.003], + [0.00016999999999999993, 0.0, -0.003], + [0.0001799999999999997, 0.0, -0.003], + [0.0001899999999999995, 0.0, -0.003], + [0.00020000000000000017, 0.0, -0.003], + [0.00020999999999999995, 0.0, -0.003], + [0.00021999999999999976, 0.0, -0.003], + [0.00022999999999999955, 0.0, -0.003], + [0.00024000000000000022, 0.0, -0.003], + [0.00025, 0.0, -0.003], + [0.00025999999999999976, 0.0, -0.003], + [0.00026999999999999957, 0.0, -0.003], + [0.00028000000000000025, 0.0, -0.003], + [0.00029000000000000006, 0.0, -0.003], + [0.0002999999999999998, 0.0, -0.003], + [0.0003099999999999996, 0.0, -0.003], + [0.0003200000000000003, 0.0, -0.003], + [0.00033000000000000005, 0.0, -0.003], + [0.00033999999999999986, 0.0, -0.003], + [0.00034999999999999967, 0.0, -0.003], + [0.0003600000000000003, 0.0, -0.003], + [0.0003700000000000001, 0.0, -0.003], + [0.0003799999999999999, 0.0, -0.003], + [0.00038999999999999967, 0.0, -0.003], + [0.00040000000000000034, 0.0, -0.003], + [0.00041000000000000015, 0.0, -0.003], + [0.0004199999999999999, 0.0, -0.003], + [0.0004299999999999997, 0.0, -0.003], + [0.0004400000000000004, 0.0, -0.003], + [0.0004500000000000002, 0.0, -0.003], + [0.00045999999999999996, 0.0, -0.003], + [0.00046999999999999977, 0.0, -0.003], + [0.00048000000000000045, 0.0, -0.003], + [0.0004900000000000002, 0.0, -0.003], + [0.0005, 0.0, -0.003], + [0.0005099999999999998, 0.0, -0.003], + [0.0005200000000000005, 0.0, -0.003], + [0.0005300000000000002, 0.0, -0.003], + [0.00054, 0.0, -0.003], + [0.0005499999999999998, 0.0, -0.003], + [0.0005600000000000005, 0.0, -0.003], + [0.0005700000000000003, 0.0, -0.003], + [0.0005800000000000001, 0.0, -0.003], + [0.0005899999999999998, 0.0, -0.003], + [0.0006000000000000005, 0.0, -0.003], + [0.0006100000000000003, 0.0, -0.003], + [0.0006200000000000001, 0.0, -0.003], + [0.0006299999999999999, 0.0, -0.003], + [0.0006400000000000006, 0.0, -0.003], + [0.0006500000000000004, 0.0, -0.003], + [0.0006600000000000001, 0.0, -0.003], + [0.0006699999999999999, 0.0, -0.003], + [0.0006800000000000006, 0.0, -0.003], + [0.0006899999999999995, 0.0, -0.003], + [0.0006999999999999993, 0.0, -0.003], + [0.0007099999999999999, 0.0, -0.003], + [0.0007199999999999997, 0.0, -0.003], + [0.0007299999999999995, 0.0, -0.003], + [0.0007400000000000002, 0.0, -0.003], + [0.00075, 0.0, -0.003], + [0.0007599999999999998, 0.0, -0.003], + [0.0007699999999999995, 0.0, -0.003], + [0.0007799999999999993, 0.0, -0.003], + [0.00079, 0.0, -0.003], + [0.0007999999999999998, 0.0, -0.003], + [0.0008099999999999996, 0.0, -0.003], + [0.0008200000000000003, 0.0, -0.003], + [0.0008300000000000001, 0.0, -0.003], + [0.0008399999999999998, 0.0, -0.003], + [0.0008499999999999996, 0.0, -0.003], + [0.0008599999999999994, 0.0, -0.003], + [0.0008700000000000001, 0.0, -0.003], + [0.0008799999999999999, 0.0, -0.003], + [0.0008899999999999997, 0.0, -0.003], + [0.0009000000000000004, 0.0, -0.003], + [0.0009100000000000001, 0.0, -0.003], + [0.0009199999999999999, 0.0, -0.003], + [0.0009299999999999997, 0.0, -0.003], + [0.0009399999999999995, 0.0, -0.003], + [0.0009500000000000002, 0.0, -0.003], + [0.0009599999999999999, 0.0, -0.003], + [0.0009699999999999997, 0.0, -0.003], + [0.0009800000000000004, 0.0, -0.003], + [0.0009900000000000002, 0.0, -0.003], + [0.001, 0.0, -0.003], + [0.0010099999999999998, 0.0, -0.003], + [0.0010199999999999996, 0.0, -0.003], + [0.0010300000000000003, 0.0, -0.003], + [0.0010400000000000001, 0.0, -0.003], + [0.0010499999999999997, 0.0, -0.003], + [0.0010600000000000004, 0.0, -0.003], + [0.0010700000000000002, 0.0, -0.003], + [0.00108, 0.0, -0.003], + [0.0010899999999999998, 0.0, -0.003], + [0.0010999999999999996, 0.0, -0.003], + [0.0011100000000000003, 0.0, -0.003], + [0.0011200000000000001, 0.0, -0.003], + [0.00113, 0.0, -0.003], + [0.0011400000000000006, 0.0, -0.003], + [0.0011500000000000004, 0.0, -0.003], + [0.0011600000000000002, 0.0, -0.003], + [0.00117, 0.0, -0.003], + [0.0011799999999999996, 0.0, -0.003], + [0.0011900000000000003, 0.0, -0.003], + [0.0012000000000000001, 0.0, -0.003], + [0.00121, 0.0, -0.003], + [0.0012200000000000006, 0.0, -0.003], + [0.0012300000000000004, 0.0, -0.003], + [0.0012400000000000002, 0.0, -0.003], + [0.00125, 0.0, -0.003], + [0.0012599999999999998, 0.0, -0.003], + [0.0012700000000000005, 0.0, -0.003], + [0.0012800000000000003, 0.0, -0.003], + [0.0012900000000000001, 0.0, -0.003], + [0.0013000000000000008, 0.0, -0.003], + [0.0013100000000000004, 0.0, -0.003], + [0.0013200000000000002, 0.0, -0.003], + [0.00133, 0.0, -0.003], + [0.0013399999999999998, 0.0, -0.003], + [0.0013500000000000005, 0.0, -0.003], + [0.0013600000000000003, 0.0, -0.003], + [0.0013700000000000001, 0.0, -0.003], + [0.0013800000000000008, 0.0, -0.003], + [0.0013900000000000006, 0.0, -0.003], + [0.0014000000000000004, 0.0, -0.003], + [0.0014100000000000002, 0.0, -0.003], + [0.0014199999999999998, 0.0, -0.003], + [0.0014300000000000005, 0.0, -0.003], + [0.0014400000000000003, 0.0, -0.003], + [0.0014500000000000001, 0.0, -0.003], + [0.0014600000000000008, 0.0, -0.003], + [0.0014700000000000006, 0.0, -0.003], + [0.0014800000000000004, 0.0, -0.003], + [0.0014900000000000002, 0.0, -0.003], + [0.0015, 0.0, -0.003], + [0.0015100000000000007, 0.0, -0.003], + [0.0015200000000000005, 0.0, -0.003], + [0.0015300000000000003, 0.0, -0.003], + [0.001540000000000001, 0.0, -0.003], + [0.0015500000000000008, 0.0, -0.003], + [0.0015600000000000004, 0.0, -0.003], + [0.0015700000000000002, 0.0, -0.003], + [0.00158, 0.0, -0.003], + [0.0015900000000000007, 0.0, -0.003], + [0.0016000000000000005, 0.0, -0.003], + [0.0016100000000000003, 0.0, -0.003], + [0.001620000000000001, 0.0, -0.003], + [0.001629999999999999, 0.0, -0.003], + [0.0016399999999999997, 0.0, -0.003], + [0.0016499999999999996, 0.0, -0.003], + [0.0016599999999999991, 0.0, -0.003], + [0.0016699999999999998, 0.0, -0.003], + [0.0016799999999999996, 0.0, -0.003], + [0.0016899999999999994, 0.0, -0.003], + [0.0016999999999999993, 0.0, -0.003], + [0.001709999999999999, 0.0, -0.003], + [0.0017199999999999997, 0.0, -0.003], + [0.0017299999999999996, 0.0, -0.003], + [0.0017399999999999994, 0.0, -0.003], + [0.00175, 0.0, -0.003], + [0.0017599999999999998, 0.0, -0.003], + [0.0017699999999999997, 0.0, -0.003], + [0.0017799999999999995, 0.0, -0.003], + [0.001789999999999999, 0.0, -0.003], + [0.0017999999999999997, 0.0, -0.003], + [0.0018099999999999995, 0.0, -0.003], + [0.0018199999999999994, 0.0, -0.003], + [0.00183, 0.0, -0.003], + [0.0018399999999999998, 0.0, -0.003], + [0.0018499999999999996, 0.0, -0.003], + [0.0018599999999999995, 0.0, -0.003], + [0.0018699999999999993, 0.0, -0.003], + [0.00188, 0.0, -0.003], + [0.0018899999999999998, 0.0, -0.003], + [0.0018999999999999996, 0.0, -0.003], + [0.0019100000000000002, 0.0, -0.003], + [0.0019199999999999998, 0.0, -0.003], + [0.0019299999999999996, 0.0, -0.003], + [0.0019399999999999995, 0.0, -0.003], + [0.0019499999999999993, 0.0, -0.003], + [0.00196, 0.0, -0.003], + [0.00197, 0.0, -0.003], + [0.0019799999999999996, 0.0, -0.003], + [0.00199, 0.0, -0.003], + [0.002, 0.0, -0.003], + [0.0020099999999999996, 0.0, -0.003], + [0.0020199999999999997, 0.0, -0.003], + [0.0020299999999999993, 0.0, -0.003], + [0.00204, 0.0, -0.003], + [0.0020499999999999997, 0.0, -0.003], + [0.0020599999999999998, 0.0, -0.003], + [0.0020700000000000002, 0.0, -0.003], + [0.0020800000000000003, 0.0, -0.003], + [0.00209, 0.0, -0.003], + [0.0020999999999999994, 0.0, -0.003], + [0.0021099999999999995, 0.0, -0.003], + [0.00212, 0.0, -0.003], + [0.00213, 0.0, -0.003], + [0.0021399999999999995, 0.0, -0.003], + [0.0021500000000000004, 0.0, -0.003], + [0.00216, 0.0, -0.003], + [0.00217, 0.0, -0.003], + [0.0021799999999999996, 0.0, -0.003], + [0.0021899999999999997, 0.0, -0.003], + [0.0022, 0.0, -0.003], + [0.00221, 0.0, -0.003], + [0.0022199999999999998, 0.0, -0.003], + [0.00223, 0.0, -0.003], + [0.0022400000000000002, 0.0, -0.003], + [0.00225, 0.0, -0.003], + [0.00226, 0.0, -0.003], + [0.0022699999999999994, 0.0, -0.003], + [0.0022800000000000003, 0.0, -0.003], + [0.00229, 0.0, -0.003], + [0.0023, 0.0, -0.003], + [0.0023100000000000004, 0.0, -0.003], + [0.0023200000000000004, 0.0, -0.003], + [0.00233, 0.0, -0.003], + [0.00234, 0.0, -0.003], + [0.0023499999999999997, 0.0, -0.003], + [0.00236, 0.0, -0.003], + [0.00237, 0.0, -0.003], + [0.0023799999999999997, 0.0, -0.003], + [0.0023900000000000006, 0.0, -0.003], + [0.0024000000000000002, 0.0, -0.003], + [0.0024100000000000002, 0.0, -0.003], + [0.00242, 0.0, -0.003], + [0.00243, 0.0, -0.003], + [0.0024400000000000003, 0.0, -0.003], + [0.0024500000000000004, 0.0, -0.003], + [0.00246, 0.0, -0.003], + [0.002470000000000001, 0.0, -0.003], + [0.0024800000000000004, 0.0, -0.003], + [0.00249, 0.0, -0.003], + [0.0025, 0.0, -0.003], + [0.0025099999999999996, 0.0, -0.003], + [0.0025200000000000005, 0.0, -0.003], + [0.00253, 0.0, -0.003], + [0.00254, 0.0, -0.003], + [0.0025500000000000006, 0.0, -0.003], + [0.0025600000000000006, 0.0, -0.003], + [0.0025700000000000002, 0.0, -0.003], + [0.0025800000000000003, 0.0, -0.003], + [0.00259, 0.0, -0.003], + [0.0026000000000000007, 0.0, -0.003], + [0.0026100000000000003, 0.0, -0.003], + [0.00262, 0.0, -0.003], + [0.002630000000000001, 0.0, -0.003], + [0.0026400000000000004, 0.0, -0.003], + [0.0026500000000000004, 0.0, -0.003], + [0.00266, 0.0, -0.003], + [0.00267, 0.0, -0.003], + [0.0026800000000000005, 0.0, -0.003], + [0.0026900000000000006, 0.0, -0.003], + [0.0027, 0.0, -0.003], + [0.002710000000000001, 0.0, -0.003], + [0.0027200000000000006, 0.0, -0.003], + [0.0027300000000000002, 0.0, -0.003], + [0.0027400000000000002, 0.0, -0.003], + [0.00275, 0.0, -0.003], + [0.0027600000000000007, 0.0, -0.003], + [0.0027700000000000003, 0.0, -0.003], + [0.0027800000000000004, 0.0, -0.003], + [0.002790000000000001, 0.0, -0.003], + [0.002800000000000001, 0.0, -0.003], + [0.0028100000000000004, 0.0, -0.003], + [0.0028200000000000005, 0.0, -0.003], + [0.00283, 0.0, -0.003], + [0.002840000000000001, 0.0, -0.003], + [0.0028500000000000005, 0.0, -0.003], + [0.00286, 0.0, -0.003], + [0.002870000000000001, 0.0, -0.003], + [0.002879999999999999, 0.0, -0.003], + [0.0028899999999999998, 0.0, -0.003], + [0.0028999999999999994, 0.0, -0.003], + [0.0029099999999999994, 0.0, -0.003], + [0.00292, 0.0, -0.003], + [0.00293, 0.0, -0.003], + [0.0029399999999999995, 0.0, -0.003], + [0.0029499999999999995, 0.0, -0.003], + [0.002959999999999999, 0.0, -0.003], + [0.0029699999999999996, 0.0, -0.003], + [0.0029799999999999996, 0.0, -0.003], + [0.002989999999999999, 0.0, -0.003], + [0.003, 0.0, -0.003], + [0.0030099999999999997, 0.0, -0.003], + [0.0030199999999999997, 0.0, -0.003], + [0.0030299999999999993, 0.0, -0.003], + [0.0030399999999999993, 0.0, -0.003], + [0.0030499999999999998, 0.0, -0.003], + [0.00306, 0.0, -0.003], + [0.0030699999999999994, 0.0, -0.003], + [0.0030800000000000003, 0.0, -0.003], + [0.00309, 0.0, -0.003], + [0.0030999999999999995, 0.0, -0.003], + [0.0031099999999999995, 0.0, -0.003], + [0.003119999999999999, 0.0, -0.003], + [0.00313, 0.0, -0.003], + [0.0031399999999999996, 0.0, -0.003], + [0.0031499999999999996, 0.0, -0.003], + [0.00316, 0.0, -0.003], + [0.00317, 0.0, -0.003], + [0.0031799999999999997, 0.0, -0.003], + [0.0031899999999999997, 0.0, -0.003], + [0.0031999999999999993, 0.0, -0.003], + [0.00321, 0.0, -0.003], + [0.0032199999999999998, 0.0, -0.003], + [0.0032299999999999994, 0.0, -0.003], + [0.0032400000000000003, 0.0, -0.003], + [0.00325, 0.0, -0.003], + [0.00326, 0.0, -0.003], + [0.0032699999999999995, 0.0, -0.003], + [0.0032799999999999995, 0.0, -0.003], + [0.00329, 0.0, -0.003], + [0.0033, 0.0, -0.003], + [0.0033099999999999996, 0.0, -0.003], + [0.0033200000000000005, 0.0, -0.003], + [0.00333, 0.0, -0.003], + [0.0033399999999999997, 0.0, -0.003], + [0.0033499999999999997, 0.0, -0.003], + [0.0033599999999999993, 0.0, -0.003], + [0.00337, 0.0, -0.003], + [0.0033799999999999998, 0.0, -0.003], + [0.00339, 0.0, -0.003], + [0.0034000000000000002, 0.0, -0.003], + [0.0034100000000000003, 0.0, -0.003], + [0.00342, 0.0, -0.003], + [0.00343, 0.0, -0.003], + [0.0034399999999999995, 0.0, -0.003], + [0.0034500000000000004, 0.0, -0.003], + [0.00346, 0.0, -0.003], + [0.0034699999999999996, 0.0, -0.003], + [0.0034800000000000005, 0.0, -0.003], + [0.00349, 0.0, -0.003], + [0.0035, 0.0, -0.003], + [0.0035099999999999997, 0.0, -0.003], + [0.0035199999999999997, 0.0, -0.003], + [0.00353, 0.0, -0.003], + [0.00354, 0.0, -0.003], + [0.0035499999999999998, 0.0, -0.003], + [0.0035600000000000007, 0.0, -0.003], + [0.0035700000000000003, 0.0, -0.003], + [0.0035800000000000003, 0.0, -0.003], + [0.00359, 0.0, -0.003], + [0.0035999999999999995, 0.0, -0.003], + [0.0036100000000000004, 0.0, -0.003], + [0.00362, 0.0, -0.003], + [0.00363, 0.0, -0.003], + [0.0036400000000000004, 0.0, -0.003], + [0.0036500000000000005, 0.0, -0.003], + [0.00366, 0.0, -0.003], + [0.00367, 0.0, -0.003], + [0.0036799999999999997, 0.0, -0.003], + [0.0036900000000000006, 0.0, -0.003], + [0.0037, 0.0, -0.003], + [0.0037099999999999998, 0.0, -0.003], + [0.0037200000000000006, 0.0, -0.003], + [0.0037300000000000002, 0.0, -0.003], + [0.0037400000000000003, 0.0, -0.003], + [0.00375, 0.0, -0.003], + [0.00376, 0.0, -0.003], + [0.0037700000000000003, 0.0, -0.003], + [0.0037800000000000004, 0.0, -0.003], + [0.00379, 0.0, -0.003], + [0.003800000000000001, 0.0, -0.003], + [0.0038100000000000005, 0.0, -0.003], + [0.0038200000000000005, 0.0, -0.003], + [0.00383, 0.0, -0.003], + [0.0038399999999999997, 0.0, -0.003], + [0.0038500000000000006, 0.0, -0.003], + [0.00386, 0.0, -0.003], + [0.00387, 0.0, -0.003], + [0.0038800000000000006, 0.0, -0.003], + [0.0038900000000000007, 0.0, -0.003], + [0.0039000000000000003, 0.0, -0.003], + [0.00391, 0.0, -0.003], + [0.00392, 0.0, -0.003], + [0.00393, 0.0, -0.003], + [0.003940000000000001, 0.0, -0.003], + [0.00395, 0.0, -0.003], + [0.003960000000000001, 0.0, -0.003], + [0.0039700000000000004, 0.0, -0.003], + [0.00398, 0.0, -0.003], + [0.0039900000000000005, 0.0, -0.003], + [0.004, 0.0, -0.003], + [0.00401, 0.0, -0.003], + [0.004019999999999999, 0.0, -0.003], + [0.0040300000000000015, 0.0, -0.003], + [0.004040000000000001, 0.0, -0.003], + [0.004050000000000001, 0.0, -0.003], + [0.00406, 0.0, -0.003], + [0.004070000000000001, 0.0, -0.003], + [0.00408, 0.0, -0.003], + [0.00409, 0.0, -0.003], + [0.004100000000000001, 0.0, -0.003], + [0.004110000000000001, 0.0, -0.003], + [0.004120000000000001, 0.0, -0.003], + [0.004129999999999999, 0.0, -0.003], + [0.004139999999999999, 0.0, -0.003], + [0.004149999999999998, 0.0, -0.003], + [0.0041600000000000005, 0.0, -0.003], + [0.00417, 0.0, -0.003], + [0.00418, 0.0, -0.003], + [0.004189999999999999, 0.0, -0.003], + [0.004199999999999999, 0.0, -0.003], + [0.004209999999999999, 0.0, -0.003], + [0.004219999999999999, 0.0, -0.003], + [0.00423, 0.0, -0.003], + [0.00424, 0.0, -0.003], + [0.00425, 0.0, -0.003], + [0.00426, 0.0, -0.003], + [0.0042699999999999995, 0.0, -0.003], + [0.004279999999999999, 0.0, -0.003], + [0.0042899999999999995, 0.0, -0.003], + [0.004299999999999999, 0.0, -0.003], + [0.004309999999999999, 0.0, -0.003], + [0.00432, 0.0, -0.003], + [0.00433, 0.0, -0.003], + [0.00434, 0.0, -0.003], + [0.00435, 0.0, -0.003], + [0.004359999999999999, 0.0, -0.003], + [0.004369999999999999, 0.0, -0.003], + [0.004379999999999999, 0.0, -0.003], + [0.004390000000000001, 0.0, -0.003], + [0.0044, 0.0, -0.003], + [0.00441, 0.0, -0.003], + [0.00442, 0.0, -0.003], + [0.00443, 0.0, -0.003], + [0.0044399999999999995, 0.0, -0.003], + [0.004449999999999999, 0.0, -0.003], + [0.004459999999999999, 0.0, -0.003], + [0.004469999999999999, 0.0, -0.003], + [0.0044800000000000005, 0.0, -0.003], + [0.00449, 0.0, -0.003], + [0.0045, 0.0, -0.003], + [0.00451, 0.0, -0.003], + [0.00452, 0.0, -0.003], + [0.004529999999999999, 0.0, -0.003], + [0.004539999999999999, 0.0, -0.003], + [0.004550000000000001, 0.0, -0.003], + [0.004560000000000001, 0.0, -0.003], + [0.00457, 0.0, -0.003], + [0.00458, 0.0, -0.003], + [0.0045899999999999995, 0.0, -0.003], + [0.0046, 0.0, -0.003], + [0.0046099999999999995, 0.0, -0.003], + [0.004619999999999999, 0.0, -0.003], + [0.004629999999999999, 0.0, -0.003], + [0.004640000000000001, 0.0, -0.003], + [0.0046500000000000005, 0.0, -0.003], + [0.00466, 0.0, -0.003], + [0.00467, 0.0, -0.003], + [0.00468, 0.0, -0.003], + [0.00469, 0.0, -0.003], + [0.004699999999999999, 0.0, -0.003], + [0.004710000000000001, 0.0, -0.003], + [0.00472, 0.0, -0.003], + [0.004730000000000001, 0.0, -0.003], + [0.00474, 0.0, -0.003], + [0.00475, 0.0, -0.003], + [0.0047599999999999995, 0.0, -0.003], + [0.00477, 0.0, -0.003], + [0.0047799999999999995, 0.0, -0.003], + [0.004789999999999999, 0.0, -0.003], + [0.0048000000000000004, 0.0, -0.003], + [0.004810000000000001, 0.0, -0.003], + [0.0048200000000000005, 0.0, -0.003], + [0.00483, 0.0, -0.003], + [0.00484, 0.0, -0.003], + [0.004849999999999999, 0.0, -0.003], + [0.00486, 0.0, -0.003], + [0.004870000000000001, 0.0, -0.003], + [0.004880000000000001, 0.0, -0.003], + [0.00489, 0.0, -0.003], + [0.004900000000000001, 0.0, -0.003], + [0.00491, 0.0, -0.003], + [0.00492, 0.0, -0.003], + [0.0049299999999999995, 0.0, -0.003], + [0.004939999999999999, 0.0, -0.003], + [0.0049499999999999995, 0.0, -0.003], + [0.004960000000000001, 0.0, -0.003], + [0.0049700000000000005, 0.0, -0.003], + [0.00498, 0.0, -0.003], + [0.0049900000000000005, 0.0, -0.003], + [0.005, 0.0, -0.003], + [0.00501, 0.0, -0.003], + [0.005019999999999999, 0.0, -0.003], + [0.0050300000000000015, 0.0, -0.003], + [0.005040000000000001, 0.0, -0.003], + [0.005050000000000001, 0.0, -0.003], + [0.00506, 0.0, -0.003], + [0.00507, 0.0, -0.003], + [0.00508, 0.0, -0.003], + [0.00509, 0.0, -0.003], + [0.0050999999999999995, 0.0, -0.003], + [0.005109999999999999, 0.0, -0.003], + [0.005120000000000001, 0.0, -0.003], + [0.005130000000000001, 0.0, -0.003], + [0.0051400000000000005, 0.0, -0.003], + [0.00515, 0.0, -0.003], + [0.0051600000000000005, 0.0, -0.003], + [0.00517, 0.0, -0.003], + [0.00518, 0.0, -0.003], + [0.005190000000000001, 0.0, -0.003], + [0.0052000000000000015, 0.0, -0.003], + [0.005210000000000001, 0.0, -0.003], + [0.005220000000000001, 0.0, -0.003], + [0.00523, 0.0, -0.003], + [0.00524, 0.0, -0.003], + [0.00525, 0.0, -0.003], + [0.00526, 0.0, -0.003], + [0.0052699999999999995, 0.0, -0.003], + [0.005280000000000001, 0.0, -0.003], + [0.005290000000000001, 0.0, -0.003], + [0.005300000000000001, 0.0, -0.003], + [0.0053100000000000005, 0.0, -0.003], + [0.00532, 0.0, -0.003], + [0.00533, 0.0, -0.003], + [0.00534, 0.0, -0.003], + [0.0053500000000000015, 0.0, -0.003], + [0.005360000000000001, 0.0, -0.003], + [0.005370000000000001, 0.0, -0.003], + [0.005379999999999999, 0.0, -0.003], + [0.005389999999999999, 0.0, -0.003], + [0.0053999999999999986, 0.0, -0.003], + [0.00541, 0.0, -0.003], + [0.00542, 0.0, -0.003], + [0.00543, 0.0, -0.003], + [0.0054399999999999995, 0.0, -0.003], + [0.005449999999999999, 0.0, -0.003], + [0.005459999999999999, 0.0, -0.003], + [0.005469999999999999, 0.0, -0.003], + [0.0054800000000000005, 0.0, -0.003], + [0.00549, 0.0, -0.003], + [0.0055, 0.0, -0.003], + [0.00551, 0.0, -0.003], + [0.00552, 0.0, -0.003], + [0.005529999999999999, 0.0, -0.003], + [0.005539999999999999, 0.0, -0.003], + [0.0055499999999999985, 0.0, -0.003], + [0.005559999999999999, 0.0, -0.003], + [0.00557, 0.0, -0.003], + [0.00558, 0.0, -0.003], + [0.0055899999999999995, 0.0, -0.003], + [0.0056, 0.0, -0.003], + [0.0056099999999999995, 0.0, -0.003], + [0.005619999999999999, 0.0, -0.003], + [0.005629999999999999, 0.0, -0.003], + [0.005640000000000001, 0.0, -0.003], + [0.0056500000000000005, 0.0, -0.003], + [0.00566, 0.0, -0.003], + [0.00567, 0.0, -0.003], + [0.005679999999999999, 0.0, -0.003], + [0.00569, 0.0, -0.003], + [0.005699999999999999, 0.0, -0.003], + [0.005709999999999999, 0.0, -0.003], + [0.0057199999999999985, 0.0, -0.003], + [0.005730000000000001, 0.0, -0.003], + [0.00574, 0.0, -0.003], + [0.00575, 0.0, -0.003], + [0.0057599999999999995, 0.0, -0.003], + [0.00577, 0.0, -0.003], + [0.0057799999999999995, 0.0, -0.003], + [0.005789999999999999, 0.0, -0.003], + [0.0058000000000000005, 0.0, -0.003], + [0.005810000000000001, 0.0, -0.003], + [0.0058200000000000005, 0.0, -0.003], + [0.00583, 0.0, -0.003], + [0.00584, 0.0, -0.003], + [0.005849999999999999, 0.0, -0.003], + [0.00586, 0.0, -0.003], + [0.005869999999999999, 0.0, -0.003], + [0.005879999999999999, 0.0, -0.003], + [0.00589, 0.0, -0.003], + [0.005900000000000001, 0.0, -0.003], + [0.00591, 0.0, -0.003], + [0.00592, 0.0, -0.003], + [0.0059299999999999995, 0.0, -0.003], + [0.005939999999999999, 0.0, -0.003], + [0.0059499999999999996, 0.0, -0.003], + [0.005960000000000001, 0.0, -0.003], + [0.0059700000000000005, 0.0, -0.003], + [0.00598, 0.0, -0.003], + [0.0059900000000000005, 0.0, -0.003], + [0.006, 0.0, -0.003] + ], + "unit": "m" + }, + "orientation": { + "value": [ + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ], + [ + [1.0, 0.0, 0.0], + [0.0, 1.0, 0.0], + [0.0, 0.0, 1.0] + ] + ], + "type": "matrix" + }, + "style": { + "arrows": { + "x": { "color": null, "show": true }, + "y": { "color": null, "show": true }, + "z": { "color": null, "show": true } + }, + "color": null, + "description": { "show": null, "text": null }, + "label": "Sensor, z=-3mm", + "model3d": { "data": [], "showdefault": true }, + "opacity": null, + "path": { + "frames": null, + "line": { "color": null, "style": null, "width": null }, + "marker": { "color": null, "size": null, "symbol": null }, + "numbering": null, + "show": null + }, + "pixel": { "color": null, "size": 1, "symbol": null }, + "size": null + }, + "pixel": { "value": [0.0, 0.0, 0.0], "unit": "m" } + } + ], + "results": [ + { + "computation": "FEM (ANSYS)", + "field": "B", + "kwargs": { + "sources": [2678036084816], + "sensors": [2679646060352, 2678042525760], + "sumup": false, + "pixel_agg": null, + "squeeze": true, + "output": "dataframe" + }, + "order": ["source", "path", "sensor", "pixel", "value"], + "value": { + "Bx": [ + 0.0016329631331849, 0.0013783437156068, 0.0006425539855724, + 0.0016472862497218, 0.0013848589700034, 0.0006437835106329, + 0.0016608812418537, 0.0013916103983202, 0.0006449515925571, + 0.0016744762339856, 0.0013983618266369, 0.0006461892761524, + 0.0016887535017375, 0.0014051155997336, 0.0006474597702607, + 0.0017029245721215, 0.0014118154064706, 0.0006487302643689, + 0.0017174267578112, 0.0014182791950647, 0.0006500007584772, + 0.0017322816346829, 0.0014254817225176, 0.0006512458373246, + 0.0017471365115546, 0.0014320790748866, 0.0006523567833393, + 0.0017619680678991, 0.0014389903755416, 0.0006535120545922, + 0.0017767941254528, 0.0014459016761966, 0.0006548231839424, + 0.0017923173468457, 0.0014528129768516, 0.0006560159836333, + 0.0018077079357075, 0.0014596320497957, 0.0006572087833241, + 0.0018230985245693, 0.0014666497556828, 0.0006584015830149, + 0.0018392196700937, 0.0014736674615699, 0.0006595943827058, + 0.0018544376553512, 0.0014806653092477, 0.0006608231538678, + 0.0018708146897641, 0.0014876935279684, 0.0006620271791242, + 0.001887191724177, 0.0014947803912751, 0.000663217490521, + 0.0019035355211519, 0.0015017560077748, 0.0006644108642605, + 0.0019199338704164, 0.0015088527785706, 0.000665604238, + 0.0019362365061665, 0.0015160720632767, 0.0006667116085434, + 0.0019535117220533, 0.0015232421152799, 0.0006679443821525, + 0.0019707869379402, 0.0015305624768372, 0.0006691711998232, + 0.0019878253019507, 0.0015377264353053, 0.0006703330369563, + 0.0020050458607282, 0.0015448118676366, 0.0006714948740894, + 0.0020222664195058, 0.0015521200283344, 0.0006726021231929, + 0.0020403278457327, 0.0015594339704807, 0.0006737190774651001, + 0.0020586197166087, 0.0015668229563954997, 0.000674966279505, + 0.0020766075566777, 0.0015742136260662, 0.0006760448604877, + 0.0020950227909233, 0.0015815172847977, 0.0006771997303725, + 0.0021133140984596, 0.0015888844670857, 0.0006783480074802, + 0.0021320523253891, 0.0015962516493738, 0.0006794359640171, + 0.0021507905523186, 0.0016037262248085, 0.0006806155457439, + 0.0021703158441757, 0.0016113958888952, 0.000681649578419, + 0.0021894914305578, 0.001619065552982, 0.0006827892514638, + 0.0022088241397709, 0.0016263733897630003, 0.0006839289245085, + 0.0022287050575117, 0.0016340251544381, 0.0006850685975533, + 0.0022490118499881, 0.0016416769191132, 0.0006860076067621, + 0.0022688852430810995, 0.0016493603744325, 0.0006871767136282, + 0.002288831375156, 0.0016569095955802, 0.0006882982220667, + 0.0023094988870818, 0.001664766157509, 0.0006894261459829, + 0.0023308492784309, 0.0016724075254719998, 0.0006904517167238, + 0.0023520935461057, 0.001680146809555, 0.0006914772874648, + 0.0023734500009262, 0.001687775944329, 0.0006924982056227, + 0.0023945387117662, 0.0016958218556349, 0.0006935186321854, + 0.002415759886634, 0.0017036219200486, 0.0006945795099043, + 0.0024385760207738, 0.0017108347118184, 0.0006956403876232, + 0.0024612961361635, 0.0017190800266993, 0.0006967005968568, + 0.0024834560222856, 0.0017273610715756, 0.0006976997986013, + 0.0025058308719841, 0.001735189731829, 0.0006986990003457, + 0.0025282057216826, 0.0017429904237024, 0.0006996982020902, + 0.0025517411078503, 0.0017513049341659, 0.0007005981734269, + 0.002575663317951, 0.0017592263696227, 0.0007016177856407, + 0.0025995855280517, 0.0017672112256562, 0.0007026373978545, + 0.0026239257603504, 0.0017753889342023, 0.0007036762867132, + 0.0026486456984659, 0.0017830200723742, 0.0007046020124058, + 0.0026724877040988, 0.0017915001944301, 0.0007055277380984, + 0.0026978487601367, 0.001799657315864, 0.000706453463791, + 0.002722736045493, 0.001807814437298, 0.0007073791894836, + 0.0027474515479462, 0.001815971558732, 0.0007083209007471, + 0.0027742354800825, 0.0018243364652079, 0.0007092790249207, + 0.0027991478611346, 0.0018322337046678, 0.0007102429744657, + 0.0028259731320999, 0.001840551353003, 0.000711092718499, + 0.0028527984030653, 0.0018488862208982, 0.0007119543569326, + 0.0028800580238128, 0.0018571789729023, 0.0007128159953661, + 0.002906295663824, 0.0018654717249064, 0.0007136300276875, + 0.0029345388263764, 0.0018738472912656, 0.0007145556338243, + 0.0029627707941011, 0.0018821211588831, 0.0007154538130862, + 0.0029905382775154, 0.0018903772334782, 0.0007162880211296, + 0.0030183057609296, 0.0018989883761688, 0.0007171493249729, + 0.0030472559992719, 0.0019075583923007, 0.0007179680671916, + 0.0030770614684025, 0.0019158053262046, 0.0007187856621011, + 0.0031065452384125, 0.0019243431136939, 0.0007195649071008, + 0.0031358128331175, 0.0019328206918848, 0.0007203775491739, + 0.0031658875920342, 0.0019412982700757, 0.000721190191247, + 0.0031965780809815, 0.0019497758482665, 0.0007219521200682, + 0.003227529985583, 0.0019582534264574, 0.0007226901033906, + 0.0032588772701905, 0.0019674541380149, 0.000723428086713, + 0.0032901455453078, 0.0019757567058825, 0.0007241660700354, + 0.0033213000394853, 0.001984271289845, 0.0007249040533579, + 0.0033532952714645, 0.0019927858738074, 0.0007256973806983, + 0.0033866985915401, 0.0020013004577698, 0.0007261844744677, + 0.0034200752094961, 0.0020098150417323, 0.0007270488827911, + 0.0034530282369256, 0.002018453122245, 0.0007277430443494, + 0.0034870187731375, 0.002027442719385, 0.0007284372059077, + 0.0035206866253437, 0.0020360602158273, 0.000729131367466, + 0.0035560980883565, 0.002045002819072, 0.0007297685589038, + 0.0035904225864454, 0.0020540105223708, 0.0007303378797227, + 0.0036258711286652, 0.0020625653420445, 0.000731037691014, + 0.003661319670885, 0.0020711156644533, 0.0007316476826823, + 0.0036967682131048, 0.0020798646971598, 0.0007322576743507, + 0.0037339881445351, 0.002088847198125, 0.0007328676660191, + 0.0037718412649473, 0.0020978022990999, 0.0007334776576874, + 0.0038096943853595, 0.0021067574000749, 0.0007340028083477, + 0.0038475475057716995, 0.0021156126125059, 0.000734602249896, + 0.0038864522341357, 0.0021240424470572, 0.0007351377034655, + 0.0039245286357241, 0.002133115913055, 0.0007356731570349999, + 0.0039643201035799, 0.0021421776940378, 0.0007362086106045, + 0.0040041115714358, 0.0021512513816639, 0.0007367055434681, + 0.0040439030392916, 0.002160046482887, 0.0007372614252866, + 0.0040836945071474, 0.0021686775299207, 0.0007377833510418, + 0.0041234859750033, 0.0021773085769544, 0.0007382356952445, + 0.0041671134085447, 0.0021864839564021, 0.0007386880394471, + 0.0042096605142754, 0.0021956594692018, 0.0007391515190665, + 0.0042522076200062, 0.0022048058449584, 0.0007395996019979, + 0.0042952302326056, 0.0022136560884168, 0.0007399671517604, + 0.0043395270552511, 0.0022225063318753, 0.0007403890425996, + 0.0043839412119522, 0.0022311121027298, 0.0007408115007273, + 0.0044278609136393, 0.0022406485544196, 0.0007412349363866, + 0.0044720793624657, 0.0022496576363491, 0.0007415599303539, + 0.0045188616089734, 0.0022586667182786, 0.000741919113675, + 0.004565643855481, 0.0022674816301825, 0.0007422601411623, + 0.0046124261019887, 0.0022760706255021, 0.0007425309963346, + 0.0046592083484963, 0.002285378299978, 0.0007428444905886, + 0.0047079549417989, 0.0022945021746558, 0.0007431189406909, + 0.0047564623078878, 0.0023033635567169, 0.0007434614555967, + 0.0048062611271936, 0.0023124426037332, 0.0007436961176991, + 0.0048562429364483, 0.0023214830222869, 0.0007438761954143, + 0.0049059918676754, 0.0023305234408405, 0.0007441833570518, + 0.0049557407989024, 0.0023394107458728, 0.0007444555253789, + 0.0050091482124338, 0.0023481596376558, 0.0007446217721997, + 0.0050614830224552, 0.0023573006572254, 0.0007447907530933, + 0.0051154039858117, 0.0023665251246773, 0.0007448972006118, + 0.0051689877842549, 0.0023755985348688, 0.0007451376152372, + 0.0052229664484565, 0.0023844649651652, 0.0007453323820765, + 0.0052768948593697, 0.0023933313954616, 0.000745476813076, + 0.0053335097342519, 0.0024025501393094, 0.000745504654585, + 0.0053907240034875, 0.0024113052680097, 0.0007456053767115, + 0.0054471423157384, 0.0024200603967101, 0.0007457060988381, + 0.0055054095433384, 0.0024292664905794, 0.0007457946500197, + 0.0055627798751849, 0.0024378001136502, 0.0007458081098689, + 0.0056227736677665, 0.0024468826947379, 0.0007458215697181, + 0.0056839457014363, 0.0024561521070961, 0.0007458350295673, + 0.005745117735106, 0.0024649988430599, 0.0007458328710628, + 0.0058077926795177, 0.0024738455790237, 0.000745761702319, + 0.0058701716509565, 0.0024824326804005, 0.0007458901145661, + 0.0059330637771247, 0.0024917501621056, 0.000745770467017, + 0.005997876925078, 0.0025002054596641, 0.0007456508194678, + 0.0060619363224244, 0.0025091940266599, 0.0007455311719187, + 0.0061256649790589, 0.0025180919647273, 0.0007454115243695, + 0.0061926890767928, 0.0025268753702614, 0.0007452918768204, + 0.0062626380307842, 0.0025354079430387, 0.0007451722292713, + 0.006328417920654, 0.0025443792759298, 0.0007450525817221, + 0.0063991426699724, 0.0025535790065773, 0.0007449447777987, + 0.0064698674192908, 0.0025619118571479, 0.0007446836799449, + 0.0065405921686092, 0.0025703721362866, 0.0007444363974238, + 0.0066145883597525, 0.0025789400564397, 0.0007441891149026, + 0.0066873048979358, 0.0025880039768421, 0.0007439418323814, + 0.0067577417967833, 0.0025965804849871, 0.0007436945498603, + 0.0068332979163111, 0.0026053756448214, 0.0007434472673391, + 0.0069088540358389, 0.0026140820285866, 0.0007430027089628001, + 0.0069844101553667, 0.0026225572071436, 0.0007427017829518, + 0.0070639526941053, 0.002630747890013, 0.0007424765433949, + 0.0071426936917663, 0.0026391674521993, 0.0007420894377237, + 0.0072221854414496, 0.0026473324165988, 0.0007417023320525, + 0.0073016771911329, 0.0026557290811602, 0.0007413152263813, + 0.0073837063729301, 0.002664238084234, 0.0007408749234592, + 0.0074665492799371, 0.0026727470873078, 0.00074039051016, + 0.0075517987286886, 0.0026812560903816, 0.0007399072114291, + 0.0076375102207155, 0.0026882552489609, 0.0007394398505677, + 0.0077199410421895, 0.0026959808346828, 0.0007390047332583, + 0.0078108878899727, 0.0027046101401011, 0.0007384544715029, + 0.0078998809585952, 0.0027125207484334, 0.0007378654878781, + 0.0079888740272178, 0.0027208168943062, 0.0007373568210199, + 0.0080778670958403, 0.0027291130401791, 0.000736801824846, + 0.008167993748693998, 0.0027374091860519, 0.0007362621112689, + 0.0082621520274696, 0.0027457202893653994, 0.0007356293249463, + 0.0083604844513276, 0.002752968054473, 0.000734953864127, + 0.008458781405157, 0.0027602158195806, 0.0007342322611466, + 0.0085520376614187, 0.0027674635846881, 0.0007335556335206, + 0.0086510813998308, 0.0027747113497957, 0.0007329014064741, + 0.0087557808767914, 0.0027836285077681, 0.0007322943948107, + 0.008852561009393798, 0.002789998577486, 0.0007315439347619, + 0.0089564095386135, 0.0027986705508691, 0.0007307515247786, + 0.0090602580678331, 0.0028058478312707, 0.0007299591147953, + 0.0091633348329771, 0.0028127507751038, 0.0007290716705926, + 0.0092724281742292, 0.002819653718937, 0.0007282329062021, + 0.0093813732746995, 0.0028265566627701, 0.0007274826902983, + 0.0094904258263698, 0.0028338268882608, 0.0007266605943667, + 0.00959947837804, 0.0028415820225616, 0.000725838498435, + 0.0097160285098213, 0.0028477475611029994, 0.0007250450114623, + 0.0098273587848989, 0.0028554723998598, 0.0007240410490977, + 0.0099457076541638, 0.0028622056999318, 0.0007230289272145, + 0.0100615026733857, 0.0028689390000039, 0.0007220168053313, + 0.0101772976926076, 0.0028753876829736, 0.000720970759576, + 0.0102930635774087, 0.0028816654405553, 0.000720034750024, + 0.0104178148407009, 0.0028887536319199, 0.0007191122680457, + 0.0105474229101994, 0.0028954108187401, 0.0007180022826842, + 0.0106770309796979, 0.0029015104847747, 0.0007169245496711, + 0.01080199016534, 0.0029079877769224, 0.0007159000289542, + 0.0109272315244977, 0.0029134145037212, 0.0007146339834626, + 0.0110663852517639, 0.0029195905217212, 0.0007134453115278, + 0.0111987995259124, 0.0029255999826869, 0.0007125339964419, + 0.0113231839376962, 0.0029316094436526, 0.0007113272119958, + 0.011465780795948, 0.0029376189046182, 0.0007101129535579, + 0.0116069487664855, 0.0029442439523055, 0.0007089032409716, + 0.0117481167370231, 0.0029486998585323, 0.0007076333176913, + 0.0118892847075607, 0.0029542577419756, 0.0007063763185765, + 0.0120296378290768, 0.0029597689687409, 0.0007051193194617, + 0.0121863950123775, 0.0029652801955062, 0.000703862320347, + 0.0123333010609595, 0.0029707914222715, 0.0007022453800793, + 0.0124803177244532, 0.002975361305678, 0.0007010856768689, + 0.0126234817237086, 0.0029800444670384, 0.0006996337732205, + 0.0127863397526167, 0.0029847276283987, 0.0006982161429555, + 0.0129491977815249, 0.0029892127122009, 0.0006967367664693, + 0.013112055810433, 0.002993914888971, 0.0006952828906416, + 0.0132749138393411, 0.002998617065741, 0.0006938290148139, + 0.0134377718682492, 0.0030033192425111, 0.0006923425270258, + 0.0135962507548265, 0.0030073737985972, 0.0006909056983317, + 0.0137548056545838, 0.0030118786759736, 0.0006893819155621, + 0.0139461987172071, 0.0030163462401416, 0.0006878061273732, + 0.0141171996760881, 0.0030198105084583, 0.000686143587515, + 0.0142943597551533, 0.003023274776775, 0.0006844810476567, + 0.0144715198342186, 0.0030263179175451, 0.0006828185077985, + 0.0146486799132838, 0.0030295214684308, 0.0006810936475191, + 0.0148451504616383, 0.0030338056711955, 0.000679450591951, + 0.015031047730252, 0.003036811870927, 0.0006778166219219, + 0.0152180286612998, 0.0030397380856992, 0.0006759843332913, + 0.0154107246340184, 0.0030426643004714, 0.0006742329653076, + 0.0156034206067369, 0.0030455905152435, 0.0006723986753308999, + 0.0157961165794555, 0.0030485167300157, 0.000670625065444, + 0.0160024839091158, 0.0030508075835426, 0.0006687981767666, + 0.0162095383916226, 0.0030528616530161, 0.0006669393250938, + 0.0164185893603787, 0.0030549157224895, 0.0006649964937484, + 0.0166257230115874, 0.0030570151728603, 0.0006630770601128, + 0.0168434841157749, 0.0030592795928691, 0.0006611576264773, + 0.0170647797009, 0.0030591232253156, 0.0006592677814141999, + 0.0172770725354778, 0.0030625992658038, 0.0006572408963958, + 0.0175022178335857, 0.0030638529141289, 0.0006552592728663, + 0.0177184545584617, 0.0030651065624539, 0.0006532194216115, + 0.0179497978224423, 0.0030643277917276, 0.0006510936651402, + 0.018186276832035, 0.0030678016071627, 0.0006489679086688, + 0.0184241376962519, 0.0030664769194177, 0.0006468962367757, + 0.0186736726376624, 0.0030665021815713, 0.0006448856843022, + 0.0189123705955784, 0.0030684684638453, 0.0006425663489964, + 0.0191510685534944, 0.0030677083818124, 0.0006403554935029, + 0.0194039856552155, 0.0030678303548522, 0.0006382900910718, + 0.0196725314248372, 0.003067478094273, 0.0006360090488165, + 0.0199363201871099, 0.0030669181583355, 0.0006337280065611, + 0.0201842660289209, 0.0030662741263423, 0.0006313570506519, + 0.0204357656006683, 0.0030656300943491, 0.000629193835629, + 0.0207292716078831, 0.0030646287066697, 0.0006268219911822, + 0.0209927131463896, 0.0030631870977595, 0.0006244993439787, + 0.0212786152834198, 0.0030631246225877, 0.0006221821013881999, + 0.021557119951143, 0.003061601109777, 0.0006196824136415, + 0.0218268490174889, 0.0030586378247121, 0.0006171895028577, + 0.0221301464578071, 0.0030560136404561, 0.0006148973284943, + 0.0224334438981253, 0.0030556885421544, 0.0006122601219552, + 0.0227367413384436, 0.0030528864070898, 0.0006097743424125, + 0.0230321496325587, 0.003050799827065, 0.0006072885628698, + 0.0233207842617709, 0.0030472534602554997, 0.0006047425812838, + 0.0236692963300665, 0.0030446218577413, 0.0006021672548616, + 0.0239702065169778, 0.0030408455702258, 0.0005995919284393, + 0.0242836376525123, 0.0030370692827102, 0.0005970653555558, + 0.0246096030043166, 0.003033559133203, 0.0005941229833357, + 0.0249479374589656, 0.0030289823963506, 0.0005917699188118, + 0.0252662159142501, 0.0030256836811838, 0.0005889376990385, + 0.0256272168360056, 0.0030220845302367, 0.0005861327430122, + 0.0259882177577612, 0.0030169406049751, 0.0005833277869859, + 0.0263300890714286, 0.0030134174761725, 0.0005805228309597, + 0.0266675078489713, 0.0030085842471421, 0.0005777467139253, + 0.027044292473307, 0.0030021637856779, 0.000574863286395, + 0.0274119652681817, 0.0029964479312607, 0.0005720264765105, + 0.0277855810675993, 0.0029906617713976, 0.0005691671361203, + 0.0281565058546489, 0.0029853658515636, 0.0005663077957301, + 0.0285436815619336, 0.0029793910658478, 0.0005633069678555, + 0.0289102311503868, 0.00297320189166, 0.0005603324696466, + 0.0293251082568675, 0.0029645147375221, 0.0005574128248776, + 0.0297242775626822, 0.0029587524836885, 0.0005543847952544, + 0.0301234468684969, 0.0029519100072575, 0.0005513371541567, + 0.0305210431664933, 0.0029448520248663, 0.0005483087971472, + 0.0309172325719048, 0.0029365312942509, 0.0005451614900594, + 0.0313134219773164, 0.0029282513361588, 0.0005420206469991, + 0.0317836463622333, 0.0029204592032362, 0.0005388798039389, + 0.0322440722953905, 0.0029126819338996, 0.0005357389608787, + 0.0326442599490657, 0.0029049810797314, 0.0005326604537229, + 0.0330917813949499, 0.0028945867202513, 0.0005294251584441, + 0.0335341498279911, 0.0028848020743277, 0.0005261898631653, + 0.0339765182610322, 0.0028760336784566, 0.0005229545678865, + 0.0344048695223756, 0.0028663808599881, 0.0005197192726077, + 0.0348348423258572, 0.0028567280415195, 0.0005162493720258, + 0.0353705624174545, 0.0028458648962379, 0.0005130885050543, + 0.0358593594330554, 0.002834933686344, 0.0005097490739584, + 0.0363026612366661, 0.0028237207511793, 0.0005064096428625, + 0.0367936548329371, 0.0028132985210584, 0.0005029582935253, + 0.03728464842920821, 0.0028023642513785, 0.0004996552411216, + 0.0377783656179671, 0.002791347969974, 0.0004962890176199, + 0.0383092580173651, 0.0027789764071145, 0.0004928058655546, + 0.0388249688913151, 0.002766604844255, 0.0004893227134893, + 0.0393140657520889, 0.0027539010095526, 0.0004858994443421, + 0.0398031626128627, 0.0027415144213003, 0.0004824689814666, + 0.0402922594736364, 0.0027284075907359, 0.0004788587725389, + 0.0408482387951534, 0.0027151676702695, 0.0004752485636111, + 0.0414302184093149, 0.0027012924845103, 0.0004716383546834, + 0.0418920021473856, 0.0026861565437783, 0.0004682220268889, + 0.0424261798542598, 0.0026770837239118, 0.0004647014173863, + 0.0429643563710469, 0.0026587598073904, 0.0004608868614787, + 0.043502532887834, 0.002644084404182, 0.0004573029250233, + 0.0440407094046211, 0.0026292154052293, 0.0004535854000037, + 0.0445788859214083, 0.0026143464062766, 0.000449938072063, + 0.0451943438357756, 0.0025994774073239, 0.0004463227270237, + 0.0456852349184725, 0.0025841550903869, 0.0004425230279669, + 0.0462236456737939, 0.0025677794444302, 0.000438935661363, + 0.0467620564291153, 0.0025514037984736, 0.0004348479808592, + 0.0473004671844367, 0.002535028152517, 0.0004312290239834, + 0.0478388779397581, 0.0025201896784999, 0.0004274376901162, + 0.048426730163175, 0.0024998521615885, 0.0004235766737653, + 0.048941375027984, 0.002484669135346, 0.0004197156574143, + 0.0494905280002763, 0.0024663033819152, 0.0004158211715795, + 0.0500321252206146, 0.0024483851423377, 0.0004118767559763, + 0.0505737224409529, 0.0024315054897786, 0.0004080316143737, + 0.0511153196612912, 0.0024126395463493, 0.0004039775221088, + 0.051694352043988, 0.0023937736029199, 0.0004000144214693, + 0.0522050513308249, 0.0023734554753848, 0.000395925012221, + 0.0526959411599371, 0.0023544798974892, 0.0003920458909892, + 0.0531950679140494, 0.0023364448506403, 0.00038805476852, + 0.0537434819366124, 0.002316359805688, 0.0003839689365936, + 0.0541653528964353, 0.0022950174890437, 0.0003799878071024, + 0.0545872238562582, 0.0022750924731946, 0.0003758715283961, + 0.0551734296743378, 0.0022551674573456, 0.0003717552496897, + 0.0556997808617663, 0.0022341726654548, 0.0003676919250822, + 0.0559649431743643, 0.0022118466670192, 0.0003635261566121, + 0.0565268737475225, 0.0021895335673268, 0.0003593906504774, + 0.0568889662802123, 0.0021675301299654, 0.0003552551443427, + 0.0572510588129022, 0.0021455266926041, 0.000351119638208, + 0.0576131513455921, 0.0021231155962936, 0.000347026276303, + 0.0579752438782819, 0.0021012295557291, 0.0003428493556185, + 0.0582814275016527, 0.0020787374342336002, 0.0003386007000233, + 0.0586164557370472, 0.002055824775796, 0.0003343520444282, + 0.0589514839724417, 0.0020320849693663, 0.0003299630867357, + 0.059264818095703, 0.0020084471135493, 0.0003257675865746, + 0.0595372955559735, 0.0019851535725795, 0.0003215239342074, + 0.0596323311403623, 0.0019610529188736, 0.0003172802818401, + 0.059746029285538, 0.0019365739367206, 0.0003130366294728, + 0.0598597274307137, 0.0019130978663019, 0.0003086270574071, + 0.0601187122685951, 0.001887831790544, 0.0003041967428769, + 0.060119410980421, 0.0018631831146774, 0.0002998720366244, + 0.0601780570619175, 0.0018385573602506, 0.0002955334402143, + 0.060302882707597, 0.001814043466677, 0.0002911543855253, + 0.0603054530401851, 0.0017850981026246, 0.0002868140591343, + 0.0596752659075831, 0.0017615642958791, 0.0002823737274677, + 0.0598804455042953, 0.0017351037617302, 0.0002779361310494, + 0.0600136537991887, 0.0017085936912209, 0.0002734564398731, + 0.0597212913042706, 0.0016824305816364, 0.000269009581167, + 0.0594289288093526, 0.0016569497656284, 0.0002645627224609, + 0.0591365663144345, 0.0016280908125039, 0.0002601855796348, + 0.0588442038195164, 0.0016022891209636, 0.0002556742430478, + 0.0585518413245983, 0.0015747383730108, 0.0002510925347716, + 0.0582594788296801, 0.001547187625058, 0.0002465997881597, + 0.0580416414879407, 0.001516148964368, 0.0002421070415477, + 0.05721995196409, 0.0014905400226561, 0.0002376303846546, + 0.0567902448861828, 0.0014615693883825, 0.0002329373694062, + 0.0561828602687846, 0.0014325987541088, 0.0002284227068271, + 0.0555754756513864, 0.0014045358668472, 0.0002237534595653, + 0.0549487053316608, 0.0013765652338679, 0.000219078161412, + 0.0543386998564476, 0.0013468434803957, 0.0002146877751236, + 0.0536483901269945, 0.0013170089515363, 0.000210078264332, + 0.0529452363482625, 0.0012866901321583, 0.0002054687535403, + 0.0522420825695305, 0.0012572193270546, 0.0002007979635702, + 0.0509144818480093, 0.0012277485219508, 0.0001960268247343, + 0.0501053699459129, 0.0011960838817009, 0.00019138938185, + 0.0494784464768134, 0.0011661554106122, 0.0001867519389657, + 0.0485540049714459, 0.0011371057510312, 0.0001818789419903, + 0.0476043026160753, 0.0011067399194574, 0.0001772390655315, + 0.0466190448787653, 0.0010760983009251, 0.0001725916056634, + 0.0456337871414554, 0.0010452882646348, 0.0001681986646457, + 0.0444416199669898, 0.0010146355952289, 0.0001632069866071, + 0.0432537070660835, 0.0009826248989478, 0.0001585713411992, + 0.0421973718018301, 0.0009506142026667, 0.0001539356957914, + 0.0411455645428467, 0.0009196410865257, 0.0001490330857742, + 0.0398135774076171, 0.0008887625707821, 0.0001447154016542, + 0.0385935927177541, 0.000857809740482, 0.0001396968429227, + 0.0373909609009647, 0.0008254885628611, 0.000134913853933, + 0.0361883290841751, 0.0007934961942446, 0.0001301308649432, + 0.0346577935820374, 0.0007612410571653, 0.0001253478759534, + 0.0337508241306133, 0.00072979586806, 0.0001207214955585, + 0.0323515048879394, 0.0006973308127263, 0.0001160544352146, + 0.0309521856452653, 0.0006649677904651, 0.000111250697317, + 0.029601870140769, 0.0006322600226861, 0.0001064185315116, + 0.0283192080805413, 0.0006010704555084, 0.0001015934123215, + 0.0269947599244164, 0.0005654158446736, 9.67682931314261e-5, + 0.025448134166294, 0.0005345232165506, 9.20492188047461e-5, + 0.0240545887769621, 0.0005015183787532, 8.72415668015789e-5, + 0.0226562962539495, 0.0004687387603058, 8.23802623539003e-5, + 0.0211871178720561, 0.0004359591418585, 7.76314810625425e-5, + 0.0197179394901626, 0.0004031795234112, 7.27701239525689e-5, + 0.018448633555364, 0.0003696015989219, 6.798578770298718e-5, + 0.0169652201965496, 0.0003371902341682, 6.3259231194143e-5, + 0.0154818068377352, 0.0003037995885292, 5.84223216094691e-5, + 0.0139435092417789, 0.0002699031343138, 5.35439857544572e-5, + 0.0126146844571909, 0.0002366311593304, 4.86827205682146e-5, + 0.0109943967019331, 0.0002033591843469, 4.37826702167406e-5, + 0.0095842784801039, 0.0001700872093635, 3.90795754105018e-5, + 0.0081080138060627, 0.00013681523438, 3.43451543041876e-5, + 0.0066131149399041, 0.0001050867075787, 2.9592968074049e-5, + 0.0051661517602684, 7.27382974041476e-5, 2.46555672991769e-5, + 0.0036485414111112, 3.77611552803052e-5, 1.97358358148638e-5, + 0.002130931061954, 4.70490556500112e-6, 1.48161043305506e-5, + 0.0007480222321201, -2.8351344150302904e-5, 9.89637284623731e-6, + -0.0009333572224024, -6.14075938656055e-5, 4.97664136192427e-6, + -0.0023861419710286, -9.64575848389084e-5, 1.59393088080231e-7, + -0.003539001164797, -0.0001273679158115, -4.64592998432799e-6, + -0.0054012266890296, -0.0001621264138429, -9.41925953490733e-6, + -0.006886327982415, -0.0001952148600817, -1.43019144986246e-5, + -0.0083714292758003, -0.0002283033063204, -1.9175184561888e-5, + -0.0098443529446246, -0.0002613917525592, -2.4069504018015305e-5, + -0.0112723881870114, -0.000294480198798, -2.85794130957138e-5, + -0.0129093368684684, -0.0003275686450367, -3.36310184118623e-5, + -0.0142699991280684, -0.0003604998873523, -3.84216980492915e-5, + -0.015718783761924, -0.0003939124426843, -4.32123776867202e-5, + -0.0171682114977789, -0.0004273249980163, -4.8003057324149e-5, + -0.0187233558471282, -0.0004608544716822, -5.28676800800021e-5, + -0.0202665448148038, -0.0004941021517328, -5.77049045389757e-5, + -0.0217307164625586, -0.0005273498317835, -6.24887583378939e-5, + -0.023118915950166498, -0.0005594943385928, -6.73205013330962e-5, + -0.0243505649892401, -0.0005925210514772, -7.20394232093454e-5, + -0.0260196740967375, -0.0006228347814158, -7.69095994275531e-5, + -0.0274488717559664, -0.0006561917009419, -8.16722490968831e-5, + -0.0288780694151953, -0.0006895486204681, -8.63353540692129e-5, + -0.0301012952282825, -0.0007208527113178, -9.11149747862147e-5, + -0.0314626569051705, -0.0007527375305078, -9.59969327180383e-5, + -0.032914765423366, -0.0007858818304410999, -0.0001006583982754, + -0.0343121209861345, -0.0008174096734334, -0.0001054715630868, + -0.035803803435216, -0.0008489375164257, -0.0001102390575098, + -0.03687239389661, -0.0008791350527227, -0.0001148382811714, + -0.0384526730740668, -0.0009105911076393, -0.0001195782938024, + -0.0396907242684096, -0.0009426807649176, -0.0001244149765475, + -0.0409287754627523, -0.0009732410276905, -0.0001289821456138, + -0.0421668266570952, -0.0010047922869318, -0.000133717127774, + -0.043365554751517, -0.0010347411415088, -0.0001384521099342, + -0.0446415879625202, -0.0010656621829943, -0.0001431870920944, + -0.0457502448522238, -0.0010969215225995, -0.0001479220742546, + -0.0468995846443219, -0.0011267354562714, -0.0001525897946086, + -0.048043293535655, -0.0011563719694239, -0.0001571532335456, + -0.049187002426988, -0.0011860084825765, -0.0001618901008552, + -0.0503307113183212, -0.001216477809488, -0.0001664829523399, + -0.0512066131532998, -0.001245704219827, -0.0001710227180941, + -0.0522846974024972, -0.001274522672289, -0.000175614216232, + -0.0531239107242163, -0.0013044354114961, -0.0001804531065048, + -0.0541712555660095, -0.0013340432600142, -0.0001849619894606, + -0.0552186004078029, -0.0013620591844425, -0.0001897069476454, + -0.0561468598147701, -0.0013895861676253, -0.000193989578243, + -0.0567994893380236, -0.0014192134246956, -0.0001988063408099, + -0.0574835207683044, -0.0014478650489343, -0.0002032926518648, + -0.0582355102845064, -0.0014755527878307, -0.0002077789629197, + -0.059015089637387, -0.0015031353784952, -0.0002122652739746, + -0.0597704960770584, -0.0015308537351372, -0.0002167515850294, + -0.0603339957762853, -0.001559428226013, -0.0002212832792138, + -0.0608637437384712, -0.0015863200975855, -0.0002258418821779, + -0.0614117624206981, -0.0016132119691581, -0.0002304004851419, + -0.0619597811029249, -0.0016411300206358, -0.0002349803349681, + -0.0624778745783667, -0.0016669767743858, -0.0002393612006114, + -0.0628785350848067, -0.0016928235281357, -0.0002437420662546, + -0.062987834317469, -0.0017196400285923, -0.0002481229318979, + -0.0635544465040277, -0.0017465686318895, -0.0002525986519152, + -0.063822797823428, -0.0017706184606739, -0.0002570505241459, + -0.0641127756139883, -0.0017966773022814, -0.0002614191380368, + -0.0644027534045486, -0.0018209420979271, -0.0002658293994597, + -0.064636751989405, -0.0018466428037342, -0.0002701337922947, + -0.0646259538830878, -0.0018712690475369, -0.0002744743524596, + -0.0646151557767705, -0.0018958952913397, -0.0002789340571407, + -0.06453266373462, -0.0019191587095084, -0.0002832584433967, + -0.0645707524409426, -0.0019427136107803, -0.0002872647841373, + -0.0647394301049868, -0.0019662685120522, -0.0002915689987444, + -0.0646004260583057, -0.0019895316344603, -0.0002960068795847, + -0.0643247565313982, -0.0020129058611585, -0.0003002436681329, + -0.0642700510773215, -0.0020358844581969, -0.0003044665035199, + -0.0640637395095804, -0.0020580331295695, -0.0003087047020832, + -0.0637020690534169, -0.002080536170495, -0.000312809998585, + -0.0636121549974402, -0.0021030392114204, -0.0003170564396134, + -0.0635222409414634, -0.0021222083065211, -0.0003211947642528, + -0.0633100151299554, -0.0021440021050735, -0.0003253330888921, + -0.0628454412826263, -0.0021657959036258, -0.0003296110588578, + -0.0623808674352972, -0.0021881804679741, -0.0003335486800789, + -0.061916293587968, -0.0022080863304509, -0.0003375782479284, + -0.0616406195621602, -0.0022279921929278, -0.0003416812330678, + -0.0612674905243747, -0.0022478980554046, -0.0003457123083739, + -0.0606968466730937, -0.0022684232877048, -0.0003497433836799, + -0.0603025836038838, -0.0022863185294664, -0.0003536818213414, + -0.059862644237759, -0.0023059461945773, -0.0003577249540175, + -0.0594227048716342, -0.0023262756277157, -0.0003615517807634, + -0.0587904231250303, -0.0023448707620538, -0.0003657340777776, + -0.0583484087560743, -0.0023632714135169, -0.0003695820764101, + -0.0577300055238175, -0.0023813593579223, -0.0003734878712483, + -0.0572889728762897, -0.0023988180434203, -0.0003775085748864, + -0.0566856241938536, -0.0024162767289183, -0.0003813996058589, + -0.0560203788063978, -0.0024337354144163, -0.0003854566647037, + -0.0555251495608785, -0.0024502540498475, -0.0003893793126544, + -0.0549372161228453, -0.0024679480685496, -0.000393301960605, + -0.0543298857573927, -0.0024837140199372, -0.0003971145075703, + -0.053726525986551, -0.0025000094953308, -0.0004008881981449, + -0.0531189910255707, -0.0025163049707244, -0.0004046618887194, + -0.0524647606195056, -0.0025329345072696, -0.0004085251703395, + -0.051810530213440405, -0.0025477620502729, -0.0004123393652977, + -0.0511066663868976, -0.0025619443317423, -0.0004161822874653, + -0.0505591507088549, -0.0025758896743206, -0.0004200069714339, + -0.0499507176959637, -0.0025911680307013, -0.0004234683506722, + -0.0493173174993361, -0.0026051529212617, -0.000427096984852, + -0.04865246840585, -0.0026194784707743997, -0.000430816434869, + -0.047987619312364, -0.0026333638785876, -0.0004345182639549, + -0.0474271867658317, -0.002646770630386, -0.0004382142705318, + -0.0467245881141906, -0.0026592498434844, -0.0004417395056783, + -0.0460219894625496, -0.0026717290565828, -0.0004452647408247, + -0.045408178944869, -0.0026842082696813, -0.0004488266668289, + -0.0447855612099826, -0.0026972109413407, -0.0004523293914941, + -0.0441629434750962, -0.002710033262055, -0.0004558321161593, + -0.0435068913284049, -0.0027200086825417, -0.0004592475355514, + -0.0428731964285869, -0.0027310729186009, -0.0004626987421855, + -0.0422010091649864, -0.0027427186431039, -0.0004661506061286, + -0.0415405728759065, -0.0027537475206145, -0.0004696125707602, + -0.0409217607999681, -0.0027647763981251, -0.0004731086008614, + -0.0402874083802311, -0.0027753564406159, -0.0004763607400176, + -0.0396451193329001, -0.0027850624776268, -0.0004796128791738, + -0.0390231208256099, -0.0027947685146376, -0.000483030266144, + -0.0384301782227657, -0.0028040838297387, -0.0004864034185413, + -0.0377876822852153, -0.0028127057604161, -0.0004895756029407, + -0.0371501300211457, -0.0028213276910936, -0.0004927903941873, + -0.0365181215870211, -0.0028296905666849, -0.000496005185434, + -0.0358861131528964, -0.0028381287316141994, -0.0004992290846473, + -0.0353656206253756, -0.002846989236457, -0.0005024517621063, + -0.0346970227896993, -0.0028541712002749, -0.0005056756725564, + -0.0341207639207835, -0.0028613531640928, -0.0005087486135025, + -0.0334830590440962, -0.0028685351279107, -0.0005118497975156, + -0.0328570997455488, -0.0028757170917285, -0.0005149509815287, + -0.0322311404470014, -0.0028828100549953, -0.0005180521655418, + -0.0316742637826661, -0.0028877420853779, -0.000521098228273, + -0.0310490841049589, -0.0028941869016621, -0.0005240697897398, + -0.030476093602684, -0.0029013682231226, -0.0005270347062636, + -0.0299031031004091, -0.0029077562253052, -0.0005299965359261, + -0.0293301125981341, -0.002913628849963, -0.0005330094597082, + -0.0287386691035563, -0.0029189684115923, -0.0005360223834903, + -0.0281242701929888, -0.0029232249909423, -0.0005389584652615, + -0.0275558708877992, -0.0029276029137945, -0.0005417557844099, + -0.0270079423534522, -0.002932650550752, -0.0005446593575799, + -0.0264722588674275, -0.0029376213676333, -0.0005474608586945, + -0.0258865227523821, -0.0029422631849672, -0.0005501772578365, + -0.0252799513347425, -0.0029448196029226, -0.0005530522741188, + -0.0247670512155783, -0.0029488437780672, -0.000555579144934, + -0.0242327733762314, -0.0029528679532119, -0.0005583100521577, + -0.0236770405973456, -0.0029568921283565, -0.0005611578388169, + -0.0231455346307191, -0.0029609956100598, -0.0005638414954271, + -0.0226098683440097, -0.0029646236262722, -0.0005664309779774, + -0.0220910124072235, -0.0029662317161634, -0.0005690204605278, + -0.0215721564704372, -0.0029677645165731, -0.0005716360743508, + -0.021045734452846, -0.0029692973169828, -0.0005742114749716, + -0.0205240083600519, -0.0029719892306854, -0.0005768234427698, + -0.0200489929705191, -0.0029742929120202, -0.0005792843165846, + -0.0195676868203542, -0.0029754183436893, -0.0005817367751297999, + -0.0190837177789963, -0.0029765437753584, -0.0005841266582675, + -0.0186054272472917, -0.0029776692070275, -0.0005867148562962, + -0.018127136715587, -0.0029798186263901, -0.0005891432465242, + -0.017692175603847803, -0.0029800534643381, -0.000591532817436, + -0.0172633434888955, -0.0029802364983365, -0.0005939146493065, + -0.0168345113739433, -0.0029809431849789, -0.0005960808645833, + -0.0164056792589909, -0.0029801166008125, -0.0005984550789737, + -0.0160179499794973, -0.0029804569008804, -0.0006008562866748, + -0.0156313511908297, -0.0029800405905733, -0.0006031353326307, + -0.0152663480954938, -0.002981038087179, -0.0006053182743065, + -0.0149078280734079, -0.0029802596855916, -0.0006075012159822, + -0.0145308666185142, -0.0029794812840042, -0.0006096841576579, + -0.0142002535162223, -0.0029787028824168, -0.0006119930531941, + -0.0139040127599014, -0.0029776662394815, -0.0006141106020893, + -0.0136077720035806, -0.0029764514305045, -0.0006162281509845, + -0.0133033607435959, -0.0029750039310521, -0.0006183891616291, + -0.0129917812869484, -0.0029724279409118, -0.0006204823843528999, + -0.0127262232620148, -0.0029716999038362, -0.000622371659426, + -0.0124776852580052, -0.0029697310414504, -0.0006244967575083, + -0.0122291472539957, -0.0029677795278337, -0.000626554701409, + -0.0119806092499861, -0.0029658297465837, -0.0006286126453098, + -0.0117320712459766, -0.0029636228572444, -0.0006306705892106, + -0.0115133749576172, -0.0029614159679052, -0.0006324927171658, + -0.0113326951524375, -0.0029586918931527, -0.0006343303602117, + -0.0111520153472577, -0.0029559019974098, -0.0006361680032576, + -0.0109661845047053, -0.0029530145141512, -0.0006380056463036, + -0.0107641187361067, -0.0029501008315298, -0.0006399722223047, + -0.0105761248871502, -0.0029474737176621, -0.0006417967403381, + -0.0104261435483794, -0.0029436789976432, -0.0006435871974419, + -0.0102782524924504, -0.0029395933977074, -0.0006453776545457, + -0.0101269413614452, -0.0029367836041481, -0.0006471681116496, + -0.0099766095933525, -0.0029333887334915, -0.0006489585687534, + -0.0098265760827734, -0.002929993862835, -0.0006504037094877, + -0.0097075725517564, -0.0029253840236279, -0.0006522054927844, + -0.0095833548786368, -0.002921672369855, -0.0006539092045582, + -0.009452333808767, -0.0029179305287062, -0.0006554900643407, + -0.0093297533772573, -0.0029131723669157, -0.0006570678862648, + -0.0092382967734817, -0.0029084338247245, -0.0006587039178002, + -0.0091206531064597, -0.0029043898159327, -0.0006603128713622, + -0.009027690049522, -0.0028996167745937, -0.0006618844732185, + -0.0089166515855383, -0.002894900400299, -0.0006633988462698, + -0.0088211627537652, -0.0028899297444072, -0.000664913219321, + -0.0087256739219922, -0.0028849590885154, -0.0006664240622847, + -0.0086445184502223, -0.0028803356888966, -0.0006678508933337, + -0.0085639308420021, -0.0028750861904748, -0.0006691586275307, + -0.0084833432337818, -0.0028698667959538, -0.0006706377520037, + -0.0084001809323778, -0.0028643374076748, -0.0006722140212131, + -0.0083178794273866, -0.002859277341396, -0.000673514689627, + -0.0082492494758517, -0.0028533304275152, -0.0006748153580408, + -0.0081832588966642, -0.0028473676751865, -0.0006761160264546, + -0.0081172683174767, -0.0028420615251218, -0.0006774166948685, + -0.0080376754580022, -0.002836755375057, -0.0006787173632823, + -0.0079854277405443, -0.0028309979246671, -0.0006799039615538, + -0.0079063204042637, -0.0028244443918548, -0.000681041669548, + -0.0078483600600524, -0.0028178908590426, -0.0006824842577831, + -0.0077903997158412, -0.0028116225673431, -0.0006835632087654, + -0.0077328875157726, -0.0028062466778237, -0.0006847462751272, + -0.0076740620781628, -0.0027999621575802, -0.000685929341489, + -0.0076143000955821, -0.0027937935162006, -0.0006871124078508, + -0.0075607256119335, -0.0027858666606952005, -0.0006882727407652, + -0.0075053388957873, -0.0027805857806548, -0.0006893475118486, + -0.0074499521796411, -0.0027741615816762, -0.000690422282932, + -0.0074007822902645, -0.0027677373826975, -0.0006914714507518, + -0.0073494529910589, -0.0027602899758355, -0.0006924874527207, + -0.007298050827789, -0.0027533693226277, -0.0006935579023307, + -0.0072464882838497, -0.0027460644278811, -0.0006945144924921, + -0.0071999604142222, -0.002739093475962, -0.0006954894928201001, + -0.0071552989062372, -0.0027325372886721, -0.0006964436865576, + -0.0071057313876274, -0.0027251714759307, -0.0006973978802951, + -0.0070561638690176, -0.0027176146486872, -0.0006983685042262, + -0.0070124972687115, -0.0027106269063424, -0.0006992131410853, + -0.0069699046565645, -0.0027036693009504, -0.0006999761046346, + -0.006927944132472, -0.0026965067140898, -0.000700866495031, + -0.0068795459436055, -0.0026893506412815, -0.000701797715226, + -0.0068375495852664, -0.0026815823845199, -0.0007025661062022, + -0.0067956333994131, -0.0026737438648692, -0.0007033344971784, + -0.0067495400914149, -0.0026666694153281, -0.0007041028881546, + -0.0067137292303224, -0.0026587944670793, -0.0007047952394101, + -0.00666756949019, -0.0026510634726172, -0.0007056332395681, + -0.0066268614942498, -0.0026438086960835, -0.000706391201273, + -0.0065861534983096, -0.0026365539195499, -0.0007070748336071, + -0.0065441133941877, -0.0026289809679075, -0.0007077812136235, + -0.0065025484998273, -0.0026203040222085, -0.0007084178476649, + -0.0064633585645253, -0.0026126655849361, -0.0007090225283982, + -0.0064241686292233, -0.0026049372632875, -0.0007096272091315, + -0.0063849786939213, -0.0025978384282717, -0.0007102253396159, + -0.0063457887586193, -0.0025890589555185, -0.0007108379623987, + -0.0063040685233105, -0.0025808859699232, -0.0007114678964302, + -0.0062669986224723, -0.0025734916481293, -0.0007119354729016, + -0.0062274522278763, -0.002565270774237, -0.000712496747808, + -0.0061886928932714, -0.0025575777408602, -0.000713009316097, + -0.0061498057170534, -0.0025498492152617, -0.000713570341701, + -0.0061109266174935, -0.002541722957608, -0.0007139915659591, + -0.0060749863360812, -0.002532658197961, -0.0007144595826743, + -0.0060357932271839, -0.0025254730337863, -0.0007148357233737, + -0.005996768191865, -0.0025172363098771, -0.0007152118640731, + -0.0059592547202338, -0.002508999585968, -0.0007155871854844, + -0.0059210534700154, -0.0025007628620588, -0.000716053273595, + -0.005884153148317, -0.0024922624831313, -0.0007163777193339, + -0.0058474533442132, -0.0024841464275446, -0.0007165887466528, + -0.0058115158836167, -0.0024760303719579, -0.0007170295660578, + -0.0057732397580296, -0.0024679143163711, -0.0007173678330216, + -0.0057355141016838, -0.0024595270083037, -0.0007177060999853, + -0.0056985121854566, -0.002451287857413, -0.000717921510828, + -0.0056615919493375, -0.0024429727366522, -0.0007181579589982, + -0.0056246717132184, -0.0024347540201035, -0.0007183944071684, + -0.0055860296391364, -0.0024255007744884, -0.0007186308553386, + -0.0055515166674432, -0.002417673889309, -0.0007188582307381, + -0.0055150576647062, -0.0024093678788387, -0.0007189194060276, + -0.0054785986619693, -0.0024010618683685, -0.0007191513723843999, + -0.0054424810087425, -0.0023927558578982, -0.000719281373798, + -0.0054063411957115, -0.0023844498474279, -0.0007194113752116, + -0.0053702013826805, -0.0023753568267619, -0.0007195413766252, + -0.0053340615696495, -0.0023675765157637, -0.0007196724861077, + -0.0052979217566184, -0.0023592603267269, -0.0007197693399208, + -0.0052616636580815, -0.0023509441376901, -0.0007197782059459, + -0.0052253444983061, -0.0023426279486533, -0.0007198167893542, + -0.0051897851168945, -0.0023344984971282, -0.0007198065513861, + -0.0051545014423759, -0.00232589869045, -0.000719796313418, + -0.0051191229136025, -0.0023172530226171, -0.0007197860754499, + -0.0050839856262323, -0.0023086073547843, -0.0007197758374818, + -0.0050488483388621, -0.0023006085374929, -0.0007197655995137, + -0.0050137197710696, -0.0022922941605768, -0.0007197553615456, + -0.0049781967230421, -0.0022840935149768, -0.0007197451235775, + -0.0049431476497357, -0.0022755944111085, -0.0007194998611181, + -0.004908410107781, -0.0022670378711532, -0.0007193679371019, + -0.0048736725658262, -0.0022587256982614, -0.0007192670065737, + -0.0048392565052356, -0.0022505405186061, -0.0007191660760455, + -0.0048048358835746, -0.0022422480045486, -0.0007190651455173, + -0.0047704152619135, -0.002233713410259, -0.0007189372150339, + -0.0047364064760821, -0.0022252184550413, -0.0007187111443786, + -0.004701643363325, -0.0022176487069053, -0.0007184850737233, + -0.004668926670264, -0.0022091827445929, -0.000718259003068, + -0.0046333709935822, -0.0022002372748155, -0.000718185478388, + -0.0046000773365218, -0.0021923339393067, -0.000717856047545, + -0.0045667836794613, -0.0021840853811081, -0.0007176135788945, + -0.0045331162697275, -0.0021757946736749, -0.0007173762262015, + -0.0044992136683468, -0.0021672621044842, -0.0007171186768218, + -0.0044653110669662, -0.002159346980359, -0.0007168294801295, + -0.0044325472189336, -0.0021510927182363, -0.0007165122262894, + -0.0044000902204747, -0.0021428384561136, -0.0007161949724493, + -0.0043679398626953, -0.0021340986592356, -0.0007158777186092, + -0.0043342487356257, -0.0021259190255061, -0.0007155368329953, + -0.0043019454336619, -0.0021178187221824, -0.000715221635341, + -0.004269642131698, -0.0021097184188588, -0.0007148906493861, + -0.0042373388297342, -0.0021016181155351, -0.0007144975182846, + -0.0042050355277704, -0.0020932202547117, -0.0007141043871832, + -0.0041737353603142, -0.0020846412821667, -0.0007137112560817, + -0.0041422821224863, -0.0020770210323224, -0.0007133181249802, + -0.0041109410181582, -0.0020687103387127996, -0.0007127261546698, + -0.0040792605945633, -0.0020605467444665, -0.0007124590122827, + -0.0040480001961413, -0.0020524967815802, -0.0007119952929518, + -0.004017068887086, -0.0020444468186939, -0.0007115688247357, + -0.0039869078652965, -0.0020358347853191, -0.0007110866267808, + -0.0039567468435071, -0.0020282035015091, -0.0007106356941833, + -0.0039259860921417, -0.0020200611093127, -0.0007101599947063, + -0.0038957569614511, -0.0020118555320416, -0.0007096842952293, + -0.0038655278307606, -0.0020036499547705, -0.0007091752108479, + -0.0038352971205271, -0.0019956955843876, -0.0007086238895989, + -0.0038064960818872, -0.0019876698008814, -0.0007081125788642, + -0.0037776161784433, -0.0019796182856573, -0.0007076012681296, + -0.0037481556192203, -0.0019717222937269, -0.0007070848981457, + -0.0037185808498993, -0.0019635401723105, -0.0007064504886157, + -0.0036899201818425, -0.00195558995112, -0.0007059061304505, + -0.0036612779324392, -0.0019476397299294, -0.0007053692487739, + -0.003632635683036, -0.001939664674357, -0.0007047668468314, + -0.0036049041196426, -0.0019318937490383, -0.0007041160714032, + -0.0035769773323789, -0.0019238563804939, -0.0007034652959751, + -0.0035485474974149, -0.0019159950987077, -0.0007029121951846, + -0.0035213193004180006, -0.0019081338169216, -0.0007021771751762999, + -0.0034935617481705, -0.0019002725351354, -0.0007016030918318, + -0.0034660440732971, -0.0018920224807947997, -0.0007010290084872, + -0.003438753557689, -0.0018847697449252, -0.0007003603257629, + -0.0034122113981524, -0.0018763734191556, -0.0006996480321752, + -0.003385707379352, -0.0018689471780698, -0.0006989357385876, + -0.0033590786977764, -0.0018612524056548, -0.0006982234449999, + -0.0033324708342828, -0.0018535576332398, -0.0006975111514123, + -0.0033057883601749, -0.0018458536339424, -0.0006967202563465, + -0.0032799778978317, -0.0018381377500557, -0.0006960710371564, + -0.0032546157631142, -0.0018304218661691, -0.0006953443223028, + -0.0032291859180623, -0.0018229657061193, -0.0006946072476542, + -0.0032032993021561, -0.0018149070599226, -0.000693874623884, + -0.0031774126862498, -0.0018074804043373002, -0.0006931377795553, + -0.0031524892833985, -0.001799884948005, -0.0006923654368679, + -0.0031280471798728, -0.0017922894916727, -0.0006915704690692, + -0.0031035332859373, -0.0017848294400498, -0.0006907780780518, + -0.0030788379576178, -0.0017773417301988, -0.0006899825860666, + -0.003054178574285, -0.0017694352606076, -0.0006892483797187, + -0.0030302293904284, -0.001762292709686, -0.000688356688438, + -0.0030063088907929, -0.0017548385762602, -0.0006875293463414, + -0.0029822314593149, -0.0017473844428344, -0.0006867020042447, + -0.0029596093978294, -0.0017398973489104, -0.0006858746621481, + -0.0029345278498627, -0.0017323663028172, -0.0006850467539663, + -0.0029120530975224, -0.0017248831541924, -0.0006841786945941, + -0.0028891855555847, -0.0017177894952054, -0.0006833385949507, + -0.0028661237488041, -0.0017105299189813, -0.0006824550104563, + -0.0028430672592261, -0.0017031140302848, -0.0006815609405629, + -0.0028200107696481, -0.0016958035536266, -0.0006806717568822, + -0.0027987269588904, -0.0016888206191084, -0.0006798179246837, + -0.0027763216806235, -0.0016813850768859, -0.000678902983228, + -0.0027539505817865, -0.0016740818855858, -0.0006779814353311, + -0.0027320107783795, -0.0016670377830038, -0.0006770598874342, + -0.002709918911346, -0.0016598287644271, -0.0006761132867489, + -0.002688801532531, -0.0016527378586816, -0.0006752347177873, + -0.0026676841537159, -0.0016456469529361, -0.0006743113793732, + -0.0026467059953822, -0.0016385395913511, -0.00067337951097, + -0.0026257590716723, -0.001631242532369, -0.0006724554564251, + -0.0026042317848652, -0.0016244227544254, -0.0006714790663526, + -0.002584026617073, -0.0016174778010999, -0.0006705535158694, + -0.0025638214492807, -0.0016105328477744, -0.0006696231350019, + -0.0025436162814884, -0.0016035682348798, -0.0006686058076995, + -0.0025236265785265, -0.001596499377036, -0.0006675588424045, + -0.0025038393320384, -0.0015894305191922, -0.0006666577516098, + -0.0024840829174981, -0.0015825411398701, -0.0006657227310121, + -0.0024640705091458, -0.0015759351458513, -0.0006647025455078, + -0.0024447780940997, -0.0015692346043917, -0.0006637352883507, + -0.0024254856790536, -0.0015621768318786, -0.0006627728880466, + -0.0024061932640073998, -0.001555133163259, -0.0006617331844119, + -0.0023876140261706, -0.0015485092574113, -0.0006607138957784, + -0.002369176482015, -0.0015418959211937, -0.0006597025796632, + -0.0023505469236107, -0.0015352825849761, -0.000658625309268, + -0.0023322084245734, -0.0015284844685723, -0.0006576713520227, + -0.0023138071029552, -0.001521648529863, -0.0006566283452067, + -0.0022956714453878, -0.0015152273600347, -0.0006555853383906, + -0.0022782003868179, -0.0015085038725164, -0.0006545423315746, + -0.0022600666639275, -0.0015021039162824, -0.0006534993247585, + -0.0022428285005192, -0.0014952948586437, -0.0006524660702404, + -0.0022255903371108, -0.0014888359995509, -0.0006514391998833, + -0.0022083521737025, -0.001482377140458, -0.0006502624173756, + -0.0021911140102942, -0.0014759010283861, -0.0006492334719946, + -0.0021737997358976, -0.001469443156174, -0.0006481845783786, + -0.0021569883873312, -0.0014628527329606, -0.0006471652019458, + -0.0021407102346608, -0.0014564853819082, -0.0006460997668304, + -0.0021237343456312, -0.0014501180308557, -0.0006449475061984, + -0.0021075503618665, -0.0014437506798032, -0.0006438485078025, + -0.0020912986594125, -0.0014374017154138, -0.0006427654465429, + -0.0020750469569584, -0.0014310501548233, -0.0006416474921875, + -0.0020587952545044, -0.0014248129143897, -0.0006405253331968, + -0.0020425435520504, -0.0014184234545152, -0.000639432478559, + -0.0020270227778407, -0.0014120339946408, -0.0006383468840662, + -0.0020115754242505, -0.0014058442599591, -0.0006372449058915, + -0.0019961280706603, -0.0013997365320333, -0.0006360847092818, + -0.0019806807170701, -0.0013936288041076, -0.0006349290269109, + -0.0019656174752458, -0.0013875210761818, -0.0006337466969733, + -0.0019505652842957, -0.0013812782704588, -0.000632641478854, + -0.0019355151617828, -0.0013751613944419, -0.0006315130575417, + -0.0019204650392699, -0.0013690445184249, -0.0006303678792773, + -0.0019054506464465, -0.0013629849313363, -0.0006291922600058, + -0.0018911377855055, -0.001356912390574, -0.0006280166407344, + -0.0018769712720732, -0.0013508606717056, -0.0006268410214629, + -0.0018625664199496, -0.0013450112454309, -0.0006257520845704, + -0.0018481615678260003, -0.0013390365225677, -0.0006245723523137, + -0.0018334240403182, -0.0013330459539878, -0.0006233617406387, + -0.0018198516535089, -0.0013271691015563, -0.0006222110762525, + -0.0018061886914806, -0.001321215141594, -0.0006209982101475, + -0.0017925257294522, -0.0013153238775829, -0.0006198723739205, + -0.0017788627674238, -0.0013093918942074, -0.0006187018207897, + -0.0017651723301659, -0.0013036514493051, -0.0006175378703101, + -0.0017515321193007, -0.0012978679560062, -0.00061633949998, + -0.0017385897013646, -0.001292092572987, -0.0006151411296499, + -0.0017251377421517, -0.0012863317195157, -0.0006139077267476, + -0.0017121944510196, -0.0012805926449543, -0.0006127896954363, + -0.0016992511598876, -0.0012748310977361, -0.0006116418347051, + -0.0016863078687555, -0.0012691717988745, -0.0006104106469198, + -0.0016733645776235, -0.0012635125000129, -0.000609180692584, + -0.0016610272221852, -0.0012578933308143, -0.0006079507382481, + -0.0016481311026191, -0.001252338307744, -0.0006067772880985, + -0.0016358949964283, -0.00124667389459, -0.0006056238137379, + -0.0016236588902375, -0.0012411463364568, -0.0006044463562355, + -0.00161125515127, -0.0012356187783237, -0.0006032076720009, + -0.0015989191254204, -0.0012300912201905997, -0.0006019816002949, + -0.0015875652730913, -0.0012245636620575, -0.0006007943736859, + -0.0015751841038772, -0.0012190320056422, -0.0005994919285059, + -0.0015636046001782, -0.0012136407706088, -0.0005983190019341, + -0.0015518941866442, -0.0012082398333616, -0.0005971643728195, + -0.0015400769298288, -0.0012028606607397, -0.0005959664972806, + -0.0015286772493856, -0.0011974389459517, -0.0005947686217418, + -0.0015173823485406, -0.0011920017716598, -0.0005935203297044, + -0.0015060332802457, -0.0011867049259348, -0.0005923342793523, + -0.0014948444087412, -0.0011814735718188, -0.0005910880533284, + -0.0014838347393376, -0.001176154850933, -0.0005898485958551, + -0.0014723914806561, -0.0011707743391695, -0.0005886091383818, + -0.0014617627573137, -0.0011653976520328, -0.0005873908718305, + -0.0014510808189875, -0.0011603051676244, -0.0005861748266634, + -0.0014403486079348, -0.0011550702202045, -0.0005849587814964, + -0.0014296163968822, -0.0011499897432829, -0.0005837138842206, + -0.001419323991237, -0.0011448088679113003, -0.0005824891717771, + -0.0014089440782866, -0.0011396873706494, -0.0005812651743809, + -0.0013982798172504, -0.0011345658733874, -0.0005800231844478, + -0.0013880729049886, -0.0011294443761255, -0.0005787697703011, + -0.0013778659927268003, -0.0011242308095326, -0.000577533867844, + -0.0013680804631716, -0.0011193961408248, -0.0005763045556722, + -0.0013580281124906, -0.0011140849509121, -0.0005750661582734, + -0.0013478842403506, -0.0011092842147971, -0.0005737773860611, + -0.0013382823862754, -0.0011043157286141, -0.0005725503811437, + -0.0013286805322002, -0.001099354540589, -0.0005712914257581, + -0.0013189355255095, -0.0010943938777308, -0.0005700324703725, + -0.0013093099087386, -0.0010894128659769, -0.0005687735149869, + -0.0012996842919677002, -0.001084431854223, -0.0005675097682552, + -0.0012900586751968, -0.0010795901615188, -0.0005662565841737, + -0.0012809255764534, -0.0010748124586556, -0.0005649985053381, + -0.0012718334870868, -0.0010699456871883, -0.0005637642822264, + -0.0012626443900178, -0.0010651086465646, -0.0005624897703347, + -0.0012536726251017, -0.0010603744466599, -0.000561233158652, + -0.0012446169077368, -0.0010555637895527, -0.0005599428102459, + -0.0012357738559526, -0.001050820068925, -0.000558717326337, + -0.0012269308041683, -0.0010460374685581, -0.0005574600580222, + -0.0012181158257807, -0.0010413760777168, -0.0005561781950023, + -0.001209460561677, -0.0010367229108881, -0.0005548906028004, + -0.0012009129680223, -0.0010320209814477003, -0.0005536400705326, + -0.0011923647678234, -0.0010273412058881, -0.0005523963137663, + -0.0011838164468995, -0.0010227140547039, -0.0005511525569999, + -0.0011757236104193, -0.0010180869035197, -0.0005498728616248, + -0.0011669012373268, -0.0010134752093902, -0.0005485794222723, + -0.0011588054433455, -0.0010089506125845, -0.0005472859829197, + -0.0011507096493642, -0.0010044237425555, -0.0005460458942188, + -0.0011426138553829, -0.0009998976769205, -0.0005447628637322, + -0.0011345180614016, -0.000995495079265, -0.0005435067641368, + -0.0011264222674203, -0.0009909244545451, -0.0005421843379198, + -0.001118326473439, -0.0009864678214793, -0.0005409655347429, + -0.0011107807189138, -0.0009820325971077, -0.000539689922498, + -0.0011029033943209, -0.000977597372736, -0.0005384143102531, + -0.0010950437593227, -0.0009731621483643, -0.0005371210521882, + -0.0010875048368032, -0.000968786973843, -0.0005358892169829, + -0.0010797149852513, -0.0009645109360617, -0.0005346030920978, + -0.0010722202700062, -0.0009601579823865, -0.0005333320581708, + -0.0010647255547611, -0.0009558050287113, -0.0005320665053913999, + -0.0010572308395159998, -0.0009514520750361, -0.0005307659440994, + -0.001049989019305, -0.000947259686503, -0.000529513438927, + -0.0010427341462033, -0.0009429874439936, -0.0005282609337546, + -0.001035692213056, -0.0009387337208361, -0.0005270084285822, + -0.0010284843796268, -0.0009345230124447, -0.0005257232680122, + -0.0010214434961317, -0.0009301858543086, -0.0005244035412978, + -0.0010142813007021, -0.0009261058749854, -0.0005232170344378, + -0.0010073412300502, -0.0009220123524262, -0.0005219418174782, + -0.0010003519988883, -0.0009178434460101, -0.0005206591595382, + -0.0009933875869795, -0.0009136923846148, -0.0005194056256721, + -0.0009866569376854, -0.0009095055089697, -0.000518152091806, + -0.0009799453651166, -0.0009054540079573, -0.0005168470542317, + -0.0009731917258584, -0.0009013748673889, -0.0005156458808159, + -0.0009665998532672, -0.000897351995162, -0.0005143858123969, + -0.000960007980676, -0.0008933329462491, -0.0005131248937254, + -0.0009533508854839, -0.0008893047312461, -0.0005118588042951, + -0.0009469658824781, -0.0008853146347395, -0.0005106002855707, + -0.000940568574765, -0.0008813674558258, -0.0005093623381538, + -0.0009341705328488, -0.0008774181001407, -0.0005081059555869, + -0.0009277394185792, -0.0008733927772252, -0.0005068429284585, + -0.0009213083043096, -0.0008695051023059, -0.0005056004809967, + -0.000915189140365, -0.0008656143599931, -0.0005043580335348, + -0.000909086353175, -0.0008616983712694, -0.0005031155860729, + -0.000902983565985, -0.0008577823825458, -0.0005018386107367, + -0.0008968455632345, -0.0008539635706166, -0.0005005784635945, + -0.0008906720434544, -0.000850147360529, -0.0004994209178987, + -0.000884813294101, -0.0008463162281197, -0.000498152302566, + -0.0008789267310512, -0.0008424796528586, -0.0004969053150761, + -0.0008729891254002, -0.000838723953375, -0.0004956726244964, + -0.0008670515197492, -0.0008349634709325, -0.0004944399339167, + -0.0008611612471871, -0.0008312168234285, -0.000493207243337, + -0.0008555092712236, -0.0008274701759245, -0.0004920052077908, + -0.000849890147112, -0.000823716915081, -0.0004907431274328, + -0.0008442222830155, -0.0008200713894401, -0.0004895188576486, + -0.000838533612904, -0.0008164081691737, -0.0004882875476144, + -0.0008328449427925, -0.0008127348899767, -0.0004870503850797, + -0.000827453586855, -0.0008091017884652, -0.0004858410894276, + -0.0008220017499703, -0.0008054686869537, -0.0004846107236078, + -0.0008165499084891, -0.0008018747593049, -0.0004833894416116, + -0.0008110980670079, -0.0007982907667230001, -0.0004821681596154, + -0.0008057367314885, -0.0007947702841711, -0.0004809468776193, + -0.0008004924575287, -0.000791164550717, -0.00047970970558129997, + -0.0007952481835689, -0.0007876844513987001, -0.0004785043628513, + -0.000790075908225, -0.0007842206721155, -0.0004772990201213, + -0.0007848599072416, -0.0007806989075587, -0.0004760823994884, + -0.0007796439062581, -0.000777158151812, -0.0004748861175177, + -0.00077458931201, -0.0007737877981457, -0.0004736696419911, + -0.0007695689828324, -0.0007703285095173, -0.0004724302333973, + -0.0007645589259536, -0.0007668606711776, -0.0004711908248034, + -0.0007594942291498, -0.0007634664359442, -0.0004700142546201, + -0.0007546052085952, -0.0007600694599065, -0.0004688162512674, + -0.0007497225469567, -0.0007567410321686, -0.0004675816948649, + -0.0007448398853181, -0.0007533398569904, -0.0004663964278384, + -0.0007399927269553, -0.0007500236819525, -0.0004651964358268, + -0.0007351293103381, -0.0007467075069146, -0.0004639828214706, + -0.000730380967879, -0.0007433913318767, -0.0004627864071167, + -0.0007257679433839, -0.0007400928302605, -0.0004615813303575, + -0.0007211549188888, -0.0007368563211057, -0.0004603739159368, + -0.0007165179113396, -0.0007335879801221, -0.0004591665015162, + -0.0007119929184703, -0.0007303459565264002, -0.0004580266816084, + -0.0007073893346036, -0.0007271011926736, -0.0004568043349981, + -0.0007028600229735001, -0.0007238983396846, -0.0004556134602544, + -0.0006983492773482, -0.0007206928454046, -0.0004544129123381, + -0.000693886106427, -0.0007175076950435, -0.0004532123644219, + -0.0006894451006919, -0.0007143263701036, -0.0004520425740383, + -0.0006850040949569, -0.0007111599098683, -0.0004508643380898, + -0.0006805630892219, -0.0007080252145928, -0.0004496482504744, + -0.0006763756746900999, -0.0007048913085699, -0.0004484950408584, + -0.0006720143255198, -0.0007017805057198, -0.0004473096480099, + -0.0006677292900980001, -0.0006986837220171, -0.0004461242551614, + -0.0006635798760072, -0.0006955731277007, -0.000444938862313, + -0.0006593997442684, -0.0006925047795116, -0.000443758293258, + -0.0006551886488733, -0.0006894364313225, -0.0004425751313232, + -0.0006509775534782, -0.0006863680831334, -0.0004414122580823, + -0.0006468813787658, -0.0006833344758822, -0.0004402398148214, + -0.0006427686972517, -0.000680284494037, -0.0004390586902301, + -0.0006388098113687, -0.0006773000431692, -0.0004378783159366, + -0.0006348509254858, -0.0006743155923013, -0.0004366979416432, + -0.0006308920396029, -0.0006713595473913, -0.0004355517914136, + -0.0006269214275912, -0.0006683738053195, -0.0004343724903087, + -0.0006229586181936, -0.0006653880632477, -0.0004332202910668, + -0.0006191566175431, -0.0006624201599483, -0.0004320680918249, + -0.0006153232861929, -0.0006595412272498, -0.0004309036626337, + -0.0006114770120649, -0.0006566663381174, -0.0004297242107181, + -0.0006076307379368, -0.000653791448985, -0.0004285869017139, + -0.0006037844638087999, -0.0006508708780977, -0.0004274430843416, + -0.0006001462718652, -0.0006479636953673, -0.0004262809001781, + -0.0005965016202136, -0.0006451324742974, -0.0004251196391172, + -0.0005928535734265, -0.0006423100607809, -0.0004239737935314, + -0.0005892243411779, -0.0006394792602932, -0.0004228279479457, + -0.0005855230890564, -0.0006366484598055, -0.00042169036109669997, + -0.0005819221294035, -0.0006338390253845, -0.0004205447521588, + -0.0005785063292805, -0.0006310790428178, -0.0004194005534747, + -0.0005749228592405, -0.0006283391661439, -0.0004182767124888, + -0.0005713993891872, -0.0006255438999929, -0.0004171220222078, + -0.0005678731734072, -0.0006227669889807, -0.0004159895983612, + -0.0005644268824037, -0.0006200255337523, -0.0004148440130289, + -0.0005610414824095, -0.0006173480750179, -0.000413715515259, + -0.0005576560824152, -0.000614673048333, -0.0004125797887719, + -0.000554270682421, -0.0006119414196862, -0.0004114591326492, + -0.0005509530329773, -0.000609230529076, -0.0004103248570169, + -0.0005476345582869, -0.0006065976008005001, -0.0004092081990032, + -0.0005443688096459, -0.0006039583102913, -0.0004080915409895, + -0.000541106730871, -0.0006013140894083, -0.0004069748829757, + -0.0005378459540213, -0.0005986841324962, -0.000405858224962, + -0.0005346096869029, -0.000596049926088, -0.0004046777789154, + -0.0005314162207101, -0.0005934578637932, -0.0004036298687604, + -0.0005282864302495, -0.0005908640372836, -0.0004024841912852, + -0.000525123128966, -0.0005882803946223, -0.00040138273185630005, + -0.0005219893376852, -0.000585696751961, -0.0004002812724274, + -0.0005188365176509, -0.0005831020133504, -0.0003991798129985, + -0.0005157977892481, -0.0005805865612325, -0.0003980702277107, + -0.0005127590608452, -0.0005780711091145, -0.0003969782222878, + -0.0005097082199846, -0.0005755556569966, -0.0003958862168648, + -0.0005066955997587, -0.0005730411262107, -0.000394773280798, + -0.0005036375507069, -0.0005704774359282, -0.0003936665113617, + -0.0005006965249307, -0.000568075295003, -0.00039259841638080004, + -0.000497805857292, -0.000565564432263, -0.0003915022240977, + -0.0004947991212514, -0.0005630985060854, -0.0003904226773059, + -0.0004918970698967, -0.0005606325799079, -0.0003893466812315, + -0.0004889851779522, -0.0005581742560949, -0.0003882486177026, + -0.0004861273442815, -0.000555768221413, -0.0003871622456393, + -0.0004832703724021, -0.0005533621867311, -0.0003860901318679, + -0.0004804272737844, -0.0005509561520492, -0.0003850180180964, + -0.0004775904184147, -0.0005485501173673, -0.0003839459043249, + -0.0004747452840585, -0.0005461440826854, -0.0003828227424024 + ], + "Bz": [ + -0.0011700953437782, 0.000226480086027, 0.0004121396007212, + -0.001174790575521, 0.000230876277319, 0.0004148025696297, + -0.001179422938636, 0.0002352720662439, 0.0004174550356053, + -0.001184055301751, 0.0002396678551688, 0.0004201315147112, + -0.0011891929039375, 0.0002441024643245, 0.0004228218165779, + -0.0011941197612011, 0.0002487670372061, 0.0004255121184447, + -0.0011992521609092, 0.000253439867369, 0.0004282024203114, + -0.0012044557344526, 0.0002579938923801, 0.0004308978997428, + -0.001209659307996, 0.0002625855753655, 0.0004336214483373, + -0.0012150001616914, 0.0002674045379732, 0.0004363306378805, + -0.0012199940825792003, 0.0002722235005809, 0.0004391009641183, + -0.0012253312480413, 0.0002770424631886, 0.0004418708324289, + -0.0012307920118332, 0.0002818457545828, 0.0004446407007395, + -0.0012362527756252, 0.000286899054953, 0.0004474105690502, + -0.0012414244922337, 0.0002919523553232, 0.0004501804373608, + -0.0012468942645025, 0.0002970133175854, 0.0004529710091366, + -0.0012524638629474, 0.0003020788921391, 0.0004558219375259, + -0.0012580334613924, 0.000307170422598, 0.0004586750163241, + -0.0012635138419708, 0.0003123063106566, 0.000461526714324, + -0.0012688148672755, 0.0003175738207993, 0.000464378412324, + -0.0012743890629002, 0.0003228831932329, 0.0004671678737777, + -0.0012799450620711997, 0.0003282062677197, 0.0004700886178892, + -0.0012855010612423, 0.0003336268079417, 0.0004729996948708, + -0.0012910472133672, 0.0003390678312911, 0.0004759520356844, + -0.0012963620043518, 0.0003445893289204, 0.000478904376498, + -0.0013016767953365, 0.0003501677287899, 0.0004818278702155, + -0.0013074468769344, 0.0003557815365625, 0.000484743852919, + -0.0013126875078228, 0.000361400676632, 0.0004877497420527, + -0.0013184219347489, 0.0003672136798153, 0.0004907251902566, + -0.0013241519401515, 0.0003729964996705, 0.0004936873620459, + -0.0013296315837728, 0.0003788133093633, 0.0004966782905113, + -0.001335160139599, 0.000384630119056, 0.0004996497246862, + -0.0013406886954252, 0.0003907057872344, 0.0005027123607647, + -0.0013461071077717998, 0.0003967522264177, 0.0005056255637270999, + -0.0013519262502228, 0.000402798665601, 0.0005087032707734, + -0.0013579073791524002, 0.0004089391618798, 0.0005117809778197, + -0.0013635257122737, 0.0004152110835267, 0.000514858684866, + -0.0013695160116336, 0.0004214830051737, 0.0005179236784557, + -0.0013749328310216, 0.0004277466853393001, 0.0005210625386705, + -0.001380262202254, 0.0004340316542312, 0.0005242076120538, + -0.001385638844427, 0.0004405969673175, 0.0005272809812819, + -0.0013910260860543, 0.000447171900731, 0.0005304159667911, + -0.0013963894397025, 0.0004537994573446, 0.0005335509523003, + -0.0014026781115884, 0.0004602828440951, 0.0005367006532396, + -0.0014083744177295, 0.0004670089341486, 0.0005398303536531, + -0.0014140829229963, 0.0004738108698256, 0.0005430620296022, + -0.0014198260735006, 0.0004806641982247, 0.0005462937055513, + -0.0014257746423569, 0.0004877005079252, 0.0005494791471691, + -0.0014312315660269, 0.0004945395708782, 0.0005527197615033, + -0.0014369013160933, 0.0005016223862386, 0.0005559603758374, + -0.0014425710661597, 0.0005086973558575, 0.0005592009901716, + -0.0014477721399285, 0.0005157782663468, 0.0005623965783243, + -0.0014535305338425, 0.0005230989282901, 0.0005657346111138, + -0.0014592889277566, 0.0005304423254786, 0.0005690726439032, + -0.0014650185871574, 0.0005378047610555, 0.0005723261033516, + -0.0014707072893427, 0.0005454853594666, 0.000575666726329, + -0.0014763132811999, 0.0005529588075929, 0.0005790073493064, + -0.0014821870085342, 0.0005606559228602, 0.0005823479722837, + -0.0014879496506168, 0.0005683530381274001, 0.0005856885952611, + -0.0014933005612739, 0.0005760501533947, 0.0005890462120664, + -0.001498988346639, 0.000584131819927, 0.0005924654896594, + -0.0015046937437769, 0.0005915017349603, 0.0005958259489528, + -0.0015104491890316, 0.0005997254420243, 0.0005992238418249, + -0.0015162046342863, 0.0006078766172724, 0.0006026395009072, + -0.0015219949192194, 0.0006161291638587, 0.0006060551599895, + -0.0015271419520229, 0.000624381710445, 0.0006094142722825, + -0.0015324634092979, 0.0006326830200378, 0.0006129205361128, + -0.0015379075584515, 0.0006410598661399, 0.0006164079464588, + -0.001543801029788, 0.0006494130393401, 0.0006199435257933, + -0.0015496945011245, 0.0006581078512756, 0.0006234149718799, + -0.0015555268537368, 0.0006666758669074, 0.0006269044086111, + -0.0015613223077187, 0.0006754625971686, 0.0006304037326377, + -0.0015667331756198, 0.0006842694193683, 0.0006339398176686, + -0.0015719231551924, 0.0006931198873317, 0.0006375065641664, + -0.0015773818508038, 0.0007019703552951, 0.0006410733106641, + -0.0015826440562319, 0.0007108208232585, 0.0006446187552176, + -0.0015877475007841, 0.0007196712912219, 0.0006482193203554, + -0.001593094715205, 0.0007292635202923, 0.0006518198854932, + -0.0015985992181147, 0.0007381087141101, 0.000655420450631, + -0.0016043254889733, 0.0007476251359492, 0.0006590210157688, + -0.0016099102138378, 0.0007571415577884, 0.0006626836981847, + -0.0016155487611214, 0.0007666579796275, 0.0006661191807474, + -0.001621298228835, 0.0007761744014666, 0.00066994068528, + -0.0016263771632971, 0.0007857980943242, 0.0006736066964235, + -0.0016310749969705, 0.0007956286276789, 0.0006772727075669, + -0.0016362273269043, 0.0008055903337794, 0.0006809387187104, + -0.0016413630523211, 0.0008156845173648, 0.0006846280094815, + -0.0016467396618708, 0.0008257836387999, 0.0006883586338856, + -0.0016517050205819, 0.0008360006802508, 0.0006920302676396, + -0.0016566703792931, 0.0008461472512199, 0.0006957531833998, + -0.0016616357380042, 0.0008562425639678, 0.00069947609916, + -0.0016664442239569, 0.0008667921805435, 0.0007031990149202, + -0.0016711730827315, 0.0008773349557211, 0.0007069219306805, + -0.0016759019415061, 0.0008878777308987, 0.000710641844212, + -0.0016806308002807, 0.0008984682842417, 0.0007145096276684, + -0.0016858424369601, 0.0009092729127164998, 0.0007183153931429, + -0.0016921762150884, 0.0009203240646151, 0.0007221211586173, + -0.0016964173675452, 0.000931448439039, 0.0007259269240918, + -0.001700658520002, 0.0009426235744222, 0.0007297310287126, + -0.0017048996724589, 0.0009539033159042, 0.0007335978627903, + -0.0017091408249157, 0.0009651617069376, 0.0007374548550155, + -0.0017133819773725, 0.0009764200979709, 0.0007413198996876, + -0.0017176523920995, 0.0009879725733265, 0.0007451849443596, + -0.0017220873443318, 0.0009996776167525, 0.0007490706087002, + -0.001726522296564, 0.0010113113752317, 0.0007529494243391, + -0.001730722723051, 0.001023167457306, 0.0007567521566255, + -0.0017340829606634, 0.0010350235393803, 0.0007607097613165, + -0.0017386618714929, 0.0010469022857232, 0.0007646468906034, + -0.0017424525225038, 0.0010591414917606, 0.0007685923972024, + -0.0017462750228496, 0.0010714983832777, 0.0007725358012954, + -0.0017500961671582, 0.0010838552747948, 0.0007764998989664, + -0.0017539173114668, 0.001096240688911, 0.0007804791117384, + -0.0017577384557753, 0.0011084047723461, 0.0007844929068876, + -0.0017615596000839, 0.0011213629310844, 0.0007884444275481, + -0.0017648030342937, 0.0011342497071821, 0.0007923855083283, + -0.0017678035678753, 0.0011471912528425, 0.0007964026909586, + -0.0017703645873624, 0.00116023082505, 0.0008004110591252, + -0.0017732111124229, 0.0011734539778167, 0.0008044167596096, + -0.0017756130895772, 0.0011866771305833, 0.0008084425802672, + -0.0017780150667316, 0.001200073315448, 0.0008125222029856, + -0.0017810287025203, 0.0012132746439799, 0.0008165554193678, + -0.0017828147956532, 0.0012267150849855, 0.0008205910058584, + -0.0017843880070247, 0.001240422062331, 0.000824534681481, + -0.0017865371261228, 0.0012541534557338, 0.0008286733656846, + -0.0017888571011622, 0.0012679468432454, 0.0008328188989156, + -0.0017912188973442, 0.001281740230757, 0.0008369709536294, + -0.001793413760359, 0.0012962593181599, 0.000841142249742, + -0.0017952671083041, 0.0013104705393762, 0.000845225689861, + -0.0017964255351063, 0.0013246817605926, 0.00084930912998, + -0.0017968684198922, 0.0013392831374232, 0.0008534432461671, + -0.0017984195433434, 0.0013540794766908, 0.0008575682601295, + -0.0017992315123441, 0.0013690217832368, 0.000861693274092, + -0.0017997275234821, 0.0013834618056975, 0.0008658182880544, + -0.0018002235346201, 0.001398510302776, 0.00086997505122, + -0.0018002258823652, 0.0014135587998546, 0.0008743737061541, + -0.0018016739278702, 0.0014287683083986, 0.000878511494182, + -0.0018021916061571, 0.0014442059293334, 0.0008826850645954, + -0.0018021547102181, 0.0014593963878938, 0.0008868586350087, + -0.0018013830700395, 0.0014751909331064, 0.0008910322054221, + -0.0018002844399064, 0.001491088287564, 0.0008952057758355, + -0.001798673500662, 0.0015069368284699, 0.0008993793462488, + -0.001796904429495, 0.0015230090973643, 0.0009035529166622, + -0.0017967249204883, 0.0015393862840638, 0.0009077264870755, + -0.0017942263304904, 0.0015553420196484, 0.0009123261828011, + -0.0017917277404925999, 0.0015716110722368, 0.0009162819576544, + -0.0017892291504947, 0.0015879387618724, 0.0009205666369026002, + -0.0017855167646362, 0.0016043919683224, 0.0009248513161509, + -0.0017821924841994, 0.001621297008823, 0.0009291359953991, + -0.0017806520267372, 0.0016381842717968, 0.0009334206746473, + -0.0017764125890862, 0.001655130757259, 0.0009377053538956, + -0.0017721731514352, 0.0016720575307839, 0.000942008619754, + -0.0017679337137842, 0.0016894185132343, 0.0009463962120233, + -0.0017632300240029, 0.0017068568445988, 0.0009506850446403, + -0.0017593652412555, 0.0017241828672928, 0.0009549932498299, + -0.001754461277459, 0.0017414754203759, 0.0009593014550195, + -0.0017495573136625, 0.0017596657708571, 0.0009636096602091, + -0.0017437583304342, 0.001777625973598, 0.0009679342419473, + -0.0017375598255732, 0.0017955861763388, 0.0009722682483513, + -0.0017318354397811, 0.0018135463790796, 0.0009765856461948, + -0.0017258684467435, 0.0018328426962026, 0.0009808977612126, + -0.0017170966964336, 0.0018508438549805, 0.0009853187125729, + -0.0017098334591915, 0.0018687445387058, 0.0009897475817939, + -0.0017014007722445, 0.0018873312743755, 0.0009941593707899, + -0.0016929680852975, 0.0019064028003376, 0.0009985022018186, + -0.0016845353983506, 0.0019254743262997, 0.0010028008938836, + -0.0016755530057395, 0.0019445458522618, 0.0010071400727208, + -0.0016660744933951, 0.0019636034969792, 0.0010115315791227, + -0.0016560708962844, 0.0019829989601589, 0.0010159310027538, + -0.0016462427697518, 0.0020023944233386, 0.0010203238200552, + -0.0016306044633373, 0.0020217898865182, 0.0010246651159075, + -0.0016207558086433, 0.0020411853496979, 0.0010289007868224, + -0.0016059627302559, 0.0020620159388805, 0.0010334523664332, + -0.0015956240769604, 0.0020813518712167, 0.0010378157287178, + -0.0015803102073876, 0.0021016858256466, 0.0010422005326033, + -0.0015649963378147, 0.002122130200091, 0.0010465853364889, + -0.0015514343264533, 0.0021426194650537, 0.0010509970348998, + -0.0015341424154192, 0.0021631087300164, 0.0010553419256455, + -0.0015182143608209, 0.0021835979949791, 0.0010598035787915, + -0.0015014556469984, 0.0022044358885693, 0.0010642558763238, + -0.001484696933176, 0.0022257773135136, 0.0010687081738562, + -0.0014682259215158, 0.0022473676763589, 0.0010731505111464, + -0.0014522558200065, 0.0022682539909875, 0.0010775351343312, + -0.0014321257557431, 0.0022898158218093, 0.0010819217799385, + -0.0014112700909378, 0.002311377652631, 0.0010863084255457, + -0.0013904144261324, 0.0023327285406789, 0.0010906646228412, + -0.0013698432905882, 0.002354236005826, 0.0010951882387461, + -0.0013477557060531, 0.0023765806588227, 0.0010996892131722, + -0.0013252760569706, 0.0023988019149515, 0.0011041724414671, + -0.0013027964078882, 0.0024212327536165, 0.0011085737536813, + -0.0012768632194061, 0.0024433704467179, 0.0011129498141931, + -0.0012496087529237, 0.0024659428813628, 0.0011173499446098, + -0.001222710320666, 0.0024886994972573, 0.0011216511412579, + -0.0011935914789662, 0.0025114032863408, 0.0011262597335285, + -0.0011681809044823, 0.0025341070754243, 0.0011306642069316, + -0.0011337647896972, 0.0025568108645078, 0.0011350657192317, + -0.0011024497555516, 0.0025802008735141, 0.0011394609602339, + -0.001071134721406, 0.0026034193923012, 0.0011439215397668, + -0.0010398196872604, 0.0026271236246328, 0.0011483750308636, + -0.0010108201423636, 0.0026506958366008, 0.0011528285219604003, + -0.0009739296363925, 0.0026742680485688, 0.0011572820130571, + -0.0009379659684593, 0.0026978402605368, 0.0011618949742971, + -0.0009067164582285, 0.0027218676617076, 0.0011662210804683, + -0.0008563926669003, 0.0027457960092448, 0.0011706093869099, + -0.0008153201932664, 0.0027697243567819, 0.0011750241997864, + -0.0007742477196324, 0.0027934491539686, 0.0011794008006845, + -0.0007331752459985, 0.0028184003927629, 0.0011838916776351, + -0.0006921027723646, 0.0028433516315572, 0.0011883825545857, + -0.0006510302987307, 0.0028683028703515, 0.0011928583981932, + -0.0006121885324947, 0.0028936776870734, 0.001197289548546, + -0.0005489654431809, 0.0029184860092569, 0.0012017167974459, + -0.0005067518919991, 0.0029435116873488, 0.001206131508697, + -0.0004546462284219, 0.002968766251051, 0.0012105156706551, + -0.0003995667594879, 0.0029940208147532, 0.0012148998326132, + -0.000344487290554, 0.0030196253637052, 0.0012192839945713, + -0.0002894078216201, 0.0030449290416641, 0.0012235924239704, + -0.0002298909217867, 0.0030712237008731, 0.0012281273644377, + -0.0001680064892468, 0.0030975699337565, 0.0012325990946483, + -0.0001106051235543, 0.0031239293346748, 0.0012370236454375, + -4.58450033347286e-5, 0.0031502887355932, 0.0012414694924684, + 1.89151168849298e-5, 0.0031766481365116, 0.0012459184274904, + 8.36752371045924e-5, 0.00320300753743, 0.0012502924301698, + 0.0001538644866968, 0.0032294853437039, 0.001254599707067, + 0.0002276722713897, 0.0032559282710689, 0.0012589338477372, + 0.0003042569848923, 0.0032823711984338, 0.0012632008698762, + 0.0003769568223299, 0.0033088905986034, 0.0012675575179028, + 0.0004538614019075, 0.0033358185415031, 0.0012719141659293, + 0.0005343016550566, 0.0033627625873426, 0.0012762479130784, + 0.0006261890703284, 0.0033896191794957, 0.0012805825476212, + 0.0007035794809521, 0.0034171959364441, 0.0012848237100605, + 0.0007918464492326, 0.0034447726933925, 0.0012890631168872, + 0.0008821296557587, 0.0034722770295171, 0.0012932844783397, + 0.0009799400188533, 0.0034981395028842, 0.0012975058397923, + 0.001073976972717, 0.003528340009521, 0.001301812126067, + 0.0011737481407545, 0.0035562160071033, 0.0013062110069342, + 0.0012756328344679, 0.0035843768149096, 0.00131047007665, + 0.0013775175281814, 0.0036108526815472, 0.0013148216265249, + 0.0014861780247188, 0.0036396032165213, 0.001319071684509, + 0.0015950098975383, 0.0036684049687085, 0.0013233121597211, + 0.0017149110049635, 0.0036965183099958, 0.0013275526349331, + 0.0018426103537113, 0.0037248748624979, 0.0013318450511988, + 0.0019639263135864, 0.003753231415, 0.0013360395222974, + 0.0020879019853085, 0.0037816283712372, 0.001340241627854, + 0.002211667651678, 0.0038100517587897, 0.0013442663050133, + 0.0023458224518748, 0.0038390173805388, 0.001348380396778, + 0.0024799339688382, 0.0038674548042495, 0.0013525257452357, + 0.0026200661378014, 0.0038957529466407, 0.0013567020525316, + 0.0027668877853212, 0.003923772618264, 0.0013610529086734, + 0.002913709432841, 0.0039542616896501, 0.0013648841784801, + 0.0030605310803607, 0.0039833530897927, 0.0013690442004215, + 0.0032102449166610996, 0.0040127046608789, 0.0013732042223629, + 0.0033677377829071, 0.0040421468046736, 0.0013773308461488, + 0.003556633348152, 0.0040712281960218, 0.0013814291183557, + 0.0037352698879318, 0.0041001007261332, 0.0013855273905626, + 0.0039159986777679, 0.0041289732562446, 0.0013896673533822, + 0.0040918190369149, 0.0041587575074521, 0.0013936125318612, + 0.0042842021133466, 0.0041886499770288, 0.00139773077559, + 0.004477889523611999, 0.0042185375470548, 0.001401735097134, + 0.0046822477645576, 0.0042482891577447, 0.001405720565643, + 0.0048866060055032, 0.0042780200447595, 0.0014097060341521, + 0.0050984576708386, 0.0043080009885029, 0.0014136915026611, + 0.0053176610555686, 0.0043382904210453, 0.0014176099593736, + 0.0055458422506096, 0.0043681855006171, 0.0014215925860693, + 0.0057847638882598, 0.0043981192559373, 0.0014252727965791, + 0.0060234707372303995, 0.0044269837988713, 0.0014291838513946, + 0.0062576177152163, 0.0044568691701137, 0.0014330949062101, + 0.0065068556267646, 0.0044867801137558, 0.0014371132566672, + 0.0067682754230448, 0.0045161404778411, 0.0014414026810001, + 0.0070391390537781, 0.0045470147089879, 0.0014450337331337, + 0.0073262321479528, 0.0045771430482963, 0.001448836423295, + 0.0076133252421275, 0.0046079559804811, 0.001452621108567, + 0.0078937336185737, 0.0046379301101489, 0.0014563979405334, + 0.0081713197777129, 0.0046676048690416, 0.0014601368847526, + 0.0084489059368521, 0.0046976476210124, 0.0014638733791615, + 0.008836714736353, 0.0047278470637256, 0.0014676098735704, + 0.0091561881430148, 0.0047578452223364, 0.0014713463679793, + 0.0095185244921686, 0.004787792246116, 0.0014753958755753, + 0.0098648142489437, 0.0048170194620867, 0.0014790014625069, + 0.0102152059378818, 0.0048462992836158, 0.0014826070494384, + 0.0105655976268198, 0.0048775213479769, 0.0014862126363699, + 0.0109814972248539, 0.004907359631067, 0.0014898182233015, + 0.0113588860272016, 0.0049371979141571, 0.0014934262957382, + 0.0117528767845744, 0.0049667921197397, 0.0014971494145613, + 0.012186606259845, 0.0049961863241704, 0.0015007527304554, + 0.0126127198638048, 0.0050270491077718, 0.0015043560463495, + 0.0130553156987753, 0.0050565707811665, 0.001508014015667, + 0.0134979115337458, 0.005086799131728, 0.0015115223902198, + 0.0139272181636886, 0.0051170145578451, 0.0015149683409342, + 0.014425910292275, 0.0051470307379546, 0.0015184569640378002, + 0.0149333122043755, 0.0051770469180642, 0.0015219455871415, + 0.015457863561567902, 0.0052068184780665, 0.0015253922669377, + 0.0159824149187603, 0.0052363769629349, 0.0015287877576496, + 0.0165069662759527, 0.005264964661565, 0.0015321599379244, + 0.017060979097726, 0.0052942509561619, 0.0015355321181993, + 0.0176292888648659, 0.0053230190099053, 0.0015389042984742, + 0.0182413846630771, 0.0053534726864681, 0.0015423931454267, + 0.0188555986364269, 0.0053832126473999, 0.0015457262938635, + 0.0194978204688974, 0.0054107372920829, 0.0015490424665342, + 0.020140042301368, 0.0054397319828098, 0.0015522187248853, + 0.0207822641338385, 0.0054689465852066, 0.0015555022911095, + 0.0214244859663091, 0.0054981611876034, 0.0015587234236974, + 0.022187847469656, 0.0055273757900002, 0.0015619175096823, + 0.0228356929087596, 0.0055561674647572, 0.0015651056442559, + 0.0236226695268317, 0.0055850385593374, 0.0015678934470929, + 0.0244096461449038, 0.0056139096539176, 0.0015712484477103, + 0.025196622762975997, 0.0056427807484977, 0.0015744590835324, + 0.025983599381048, 0.0056681223434767, 0.0015775753887499, + 0.0267357129968736, 0.0056958412007864, 0.0015806145147553, + 0.0276065979560759, 0.0057261979881171, 0.0015836536407607, + 0.0285215956442029, 0.0057535427343799, 0.0015866960401029, + 0.0294596964430027, 0.0057807249577117, 0.0015897403083657, + 0.0303977972418025, 0.0058087749093195, 0.0015927033338751, + 0.0313358980406023, 0.0058361904163282, 0.001595583179492, + 0.0323026395811684, 0.0058636059233369, 0.0015984585328418003, + 0.0332297743813405, 0.0058889215630316, 0.0016013233081595, + 0.0342831550873308, 0.0059169913623706, 0.0016041002837735, + 0.0353029223252083, 0.0059439435715828, 0.0016068762870961, + 0.0363406931929468, 0.0059714253056236, 0.0016096552759677, + 0.0374278935583192, 0.0059990295103339, 0.0016123940533226, + 0.0385150939236917, 0.0060252345117938, 0.0016151155783187, + 0.039692705666872, 0.0060514395132538, 0.0016178371033148, + 0.0409167667378377, 0.0060771406887968, 0.0016204910740013, + 0.0421956952922563, 0.0061023537028823, 0.0016230765133695, + 0.043373827529557, 0.0061275447741458, 0.0016256183401111, + 0.0446694421028355, 0.0061522326088891, 0.0016281601668527, + 0.0459650566761142, 0.0061769204436323, 0.0016307019935943, + 0.0472606712493927, 0.0062016769377712, 0.0016331506133395, + 0.0485562858226713, 0.0062265916571652, 0.001635646368427, + 0.0498535992869567, 0.0062511046060201, 0.001638068310904, + 0.0512644334490164, 0.0062748704476831, 0.0016404902533811, + 0.0526752676110761, 0.0062988934436821, 0.0016428707327704, + 0.0540714801299771, 0.0063213963095464, 0.001645198031974, + 0.0555038222370263, 0.0063429752523705, 0.0016474675773249, + 0.0569642266128685, 0.0063672868717695, 0.0016497371226757, + 0.0584381022169155, 0.0063902888364037, 0.0016520066680266, + 0.0599119778209626, 0.0064127455296187, 0.0016541601291295, + 0.0615345571328864, 0.0064350638435488, 0.0016563499726507, + 0.0631420096899115, 0.0064566967944517, 0.0016584810332113, + 0.0646143822736669, 0.006479021074957, 0.001660600203916, + 0.0660510670194804, 0.0065008880531619, 0.0016627111465261, + 0.0675286724553261, 0.0065198754250499, 0.001664858036614, + 0.0693523138343946, 0.006541678399515, 0.0016669264621654, + 0.0708957187086867, 0.0065629375078112, 0.0016689261538578, + 0.0727860807489274, 0.0065842775244245, 0.0016706069943617, + 0.0743428347846275, 0.0066046654911979, 0.0016726226267073, + 0.0758995888203275, 0.0066246206630866, 0.001674638259053, + 0.0774563428560276, 0.0066429683617301, 0.0016766855787019, + 0.0790130968917277, 0.0066625803562443, 0.0016786222664764, + 0.0805698509274278, 0.0066816985039769, 0.0016803103586966, + 0.0821266049631278, 0.006700816651709499, 0.0016820474889399, + 0.0843468434633577, 0.0067173869797457, 0.0016837846191832, + 0.0856406292540275, 0.0067355767713661, 0.0016854246560902, + 0.087401809454829, 0.006753558896686, 0.0016870240953348, + 0.0889659347832605, 0.0067715410220059, 0.0016886223602974, + 0.0905300601116921, 0.006788523141709, 0.0016903277457477, + 0.0919009870855618, 0.0068050859175255, 0.0016919465155843, + 0.0935746562115302, 0.0068213012192545, 0.0016935506147947, + 0.0951455677943792, 0.0068371088937419, 0.0016950393819411, + 0.0966924639770202, 0.0068536601558043, 0.0016965281490875, + 0.0982393601596614, 0.0068689153635748, 0.0016979575823342, + 0.0995096807906246, 0.0068841705713452, 0.001699431439585, + 0.101200425017518, 0.006897849188838, 0.0017007725652615, + 0.102741925264899, 0.0069104558858096, 0.001702113690938, + 0.104101107057649, 0.006925450568134, 0.0017031186954244, + 0.105393894420524, 0.0069391998197652, 0.0017045549811786, + 0.106711798041901, 0.0069526686778978, 0.0017058749532577, + 0.108029701663278, 0.0069660274774112, 0.0017070784637132, + 0.109329564900419, 0.0069787031146654, 0.0017085043931475, + 0.110625725333162, 0.0069905952507511, 0.0017096368386158, + 0.111749857014761, 0.0070024873868368, 0.0017107692840841, + 0.112868339514225, 0.0070130350353462, 0.0017117271019292, + 0.113865719118395, 0.0070241314499823, 0.0017127793312184, + 0.114959500641085, 0.0070352001016107, 0.0017139149597835, + 0.116115244715826, 0.0070452793464028, 0.0017148653786644, + 0.117270988790566, 0.0070550301791186, 0.0017158157975453, + 0.11832286129974, 0.0070638868524464, 0.0017167662164262, + 0.119286126963954, 0.0070732006224858, 0.0017175968025501, + 0.120170954699872, 0.0070815348352747, 0.0017184625115899, + 0.121055782435791, 0.0070893130051908, 0.0017192717200335, + 0.121901220322352, 0.0070972863266267, 0.0017200092242027, + 0.122699186761964, 0.0071025220436731, 0.001720693236939, + 0.1234498821103, 0.0071107980788476, 0.0017213772496753, + 0.124123768287835, 0.0071194707276502, 0.0017219471200851, + 0.124798169009388, 0.0071256349663164, 0.0017225439746268, + 0.125463717532074, 0.0071311495137263, 0.0017231641615175, + 0.126078442496827, 0.0071366640611362, 0.001723786041491, + 0.126693167461579, 0.0071421786085461, 0.0017243272255705, + 0.127220837420962, 0.0071421273648469, 0.0017248314340984, + 0.12769491896692, 0.0071477648272356, 0.0017253108876412, + 0.128169000512877, 0.0071501260008319, 0.0017257142084958, + 0.128461457717985, 0.0071562567628722, 0.0017261559591131, + 0.129082897945297, 0.0071584500380771, 0.0017265416672165, + 0.129468993397123, 0.0071606433132821, 0.0017268406148627, + 0.129687650303603, 0.007162836588487, 0.0017270550388566, + 0.129891882844397, 0.007165029863692, 0.0017272021614573, + 0.130096422344081, 0.0071659502261144, 0.0017273849025287, + 0.130271716928769, 0.0071673474423341, 0.0017274500425659, + 0.13039341441668, 0.0071668553225532, 0.001727497699419, + 0.13051511190459, 0.0071667143455241, 0.0017275453562721, + 0.130383194732741, 0.007166573368495, 0.0017275930131252, + 0.13053458832312, 0.007166432391466, 0.0017276406699783, + 0.130697982966324, 0.0071634645286584, 0.0017272770719963, + 0.130526488491562, 0.0071608847396013, 0.001727136184402, + 0.130382525791173, 0.0071594448733453, 0.0017271691554382, + 0.130211298494551, 0.007155969245721, 0.0017270004901141, + 0.130040071197929, 0.0071524936180967, 0.0017268319857685, + 0.129916369443871, 0.0071490179904724, 0.0017266516789144, + 0.129739904235892, 0.0071455423628481, 0.0017263148585129, + 0.129550694306412, 0.0071420667352238, 0.0017260886533199, + 0.129163199635685, 0.0071388499676593, 0.0017256873742814, + 0.128796084745393, 0.007133254491379, 0.001725286095243, + 0.128431186894076, 0.0071276590150987, 0.0017248848162045, + 0.127945915136816, 0.0071223955480981, 0.0017244576346275, + 0.127454739223973, 0.0071166658093707, 0.0017239117622864, + 0.126941829692927, 0.0071109360706433, 0.0017233466704382, + 0.126409699417491, 0.0071042501052809, 0.0017227445422467, + 0.125553489868094, 0.0070954888505512, 0.0017221185568929, + 0.125062109607101, 0.0070889383958879, 0.0017214763323765, + 0.124366264426482, 0.0070802058051686, 0.0017207970701098, + 0.123670419245862, 0.0070714732144494, 0.0017200865574934, + 0.122885284941031, 0.0070625282645336, 0.0017193343620293, + 0.122077016492499, 0.0070538579019291, 0.0017184192454417998, + 0.121161132301782, 0.0070438012682151, 0.0017175693599569, + 0.120249153658137, 0.0070323391464699, 0.0017168828583452, + 0.11967165116326, 0.0070208770247246, 0.0017160293369181, + 0.118361218223119, 0.0070102718924585, 0.0017149576811927, + 0.117448457715261, 0.006999018399348299, 0.0017140080467523, + 0.116411005719947, 0.0069873705603617, 0.0017129653944381, + 0.115373553724632, 0.0069750169054996, 0.0017119545266821, + 0.114336101729318, 0.0069593357279327, 0.001710830095451, + 0.113195094592727, 0.0069462133150268, 0.0017097056642199, + 0.112039952468278, 0.0069326247323824, 0.0017085812329888, + 0.110805385064949, 0.0069220169621077, 0.0017074568017578, + 0.109523086801158, 0.0069069705904039, 0.0017062539270022, + 0.108243447874495, 0.0068922641852531, 0.0017050335095214, + 0.106963808947833, 0.0068775577801023, 0.0017036202245059998, + 0.10568417002117, 0.0068622416729123, 0.0017022445252539, + 0.104268301617802, 0.0068470200229689, 0.0017009991260906, + 0.10279868060516, 0.0068316531648363, 0.0016996276893112, + 0.101428194418917, 0.0068161411435322, 0.0016978638316231, + 0.0998774274694785, 0.0067998377624771, 0.001696575175347, + 0.0983266605200399, 0.0067831369504309, 0.0016950864138822, + 0.0967865633008647, 0.0067657975602715, 0.0016935030604701, + 0.0952479451200244, 0.006747653063839, 0.0016920846271996, + 0.0937016458814111, 0.0067300424461536, 0.0016903656791153, + 0.0920289664680526, 0.0067117483095057, 0.001688646731031, + 0.090310916646173, 0.0066922842361842, 0.0016869277829467, + 0.0886946981569645, 0.0066728278024707, 0.0016852088348624, + 0.0870471247376279, 0.0066538514752735, 0.001683477797099, + 0.0853740702108801, 0.0066347590557992, 0.0016817198834115, + 0.0836487255159816, 0.0066156666363249, 0.001679961969724, + 0.0819233808210831, 0.0065957564412926, 0.0016781371751614, + 0.0802232592948711, 0.006575356108985, 0.0016762487745483, + 0.0784502556153114, 0.006554955776677399, 0.0016743603739352, + 0.0766122034331799, 0.0065330565101503, 0.0016724719733221, + 0.0748922423170414, 0.0065118161216871, 0.0016704936123622, + 0.0732579469646555, 0.0064913847159112, 0.0016684432077531, + 0.0715386633682238, 0.0064688173172085, 0.0016663732406159, + 0.0698193797717923, 0.0064449204293501, 0.0016642749860289, + 0.0681289980999825, 0.0064239383809611, 0.0016620363573876, + 0.0664617563035061, 0.0064009009344162, 0.0016599674697564, + 0.0647945145070294, 0.0063778634878713, 0.0016578772667167, + 0.0631667953272727, 0.0063543392854293, 0.0016557693480879, + 0.0613534810261136, 0.0063308395945119, 0.0016536296217486, + 0.0595759844555078, 0.006307339903594499, 0.0016513527418251, + 0.0578202396984491, 0.0062832813760205, 0.001648979507887, + 0.056064660511227, 0.0062603468376141, 0.0016466164081693998, + 0.0546689671351738, 0.0062366418784849, 0.0016443673021459, + 0.053052301126763, 0.0062120005522253, 0.0016420024953, + 0.0512481338144463, 0.0061870708584188, 0.0016396522083707, + 0.0497537614328065, 0.0061621411646124, 0.0016371634636158, + 0.0482593890511665, 0.0061378043094437, 0.0016347267153942, + 0.0467876250373092, 0.006111115754418, 0.0016322899671727, + 0.045342529263299, 0.0060844271993923, 0.0016298472334699, + 0.0438974334892889, 0.0060591360586065, 0.0016275811562847, + 0.0424523377152787, 0.0060326360234345, 0.0016250230226377, + 0.0410193953224242, 0.0060061359882625, 0.0016224320133291, + 0.0395641343619497, 0.0059796359530904, 0.0016198554456226, + 0.0382215564980974, 0.005952860115658, 0.001617278877916, + 0.0369489215976097, 0.0059270967187267, 0.001614542810893, + 0.0355767141456201, 0.005899398971925, 0.0016120109268517, + 0.0342045066936307, 0.0058727436081572, 0.0016093824528547, + 0.0328491587223517, 0.005844929902906101, 0.0016066191886113, + 0.0315632213724732, 0.0058167399610339, 0.0016040794253235, + 0.0303213145551578, 0.005791063408278, 0.0016013709286757, + 0.0292709514834141, 0.0057626928769646, 0.0015985290903217, + 0.0280265820949152, 0.0057343223456512, 0.0015956814676082, + 0.0269751102011363, 0.0057059518143378, 0.0015928232110408, + 0.0258209957104725, 0.0056782539689648, 0.0015899079089816, + 0.0247450777202221, 0.0056504592987137, 0.0015869926069224, + 0.023648897089107, 0.0056220978854356, 0.0015840525638507, + 0.0225754397331075, 0.0055941473586768, 0.0015810991929038, + 0.0215927001770893, 0.0055661968319181, 0.0015781458219569, + 0.0206121917038675, 0.0055374749355539, 0.0015750540493237, + 0.0196316832306456, 0.0055083257930479, 0.0015719743480574, + 0.0186727361887591, 0.005478875625439, 0.0015689330485026, + 0.0178247559172222, 0.0054497028279515, 0.0015658946282754, + 0.0169461754158744, 0.0054203442039192, 0.001562667649691, + 0.0160763721437715, 0.0053908332352913, 0.0015595795489656, + 0.0152062719418714, 0.0053623246200899, 0.0015564087006857, + 0.0143361717399715, 0.0053324632470072, 0.001553193407908, + 0.013615828686746599, 0.0053026814094734, 0.0015499503209164, + 0.0128442289363222, 0.0052726455385598, 0.0015466481799494, + 0.0120726291858979, 0.0052426096676462, 0.0015433460389823, + 0.0113567237164084, 0.0052125737967326, 0.0015400872014754, + 0.010636119845596, 0.0051852632023929, 0.001536792655322, + 0.0099155159747836, 0.0051559338836105, 0.0015334981091685, + 0.0092499184795625, 0.0051252648422651, 0.0015300557968705, + 0.0085792199502319, 0.00509607302102, 0.0015266792846134, + 0.0079197521339223, 0.0050659779294957, 0.0015232747050563, + 0.0072536404428304, 0.0050363519438017, 0.0015198624784334, + 0.0067787000343988, 0.0050067259581078, 0.0015164524344293, + 0.0062045432614582, 0.0049770008768551, 0.0015130230369876, + 0.0056305230350587, 0.0049471463853231, 0.001509593639546, + 0.0050652939622021, 0.0049172918937911, 0.0015060406979231, + 0.0045399287538832, 0.0048873340475595, 0.0015025035370293, + 0.0040405603427014, 0.00485759994191, 0.0014989673357409, + 0.003554810419661, 0.0048278658362605, 0.0014953671060572, + 0.0030689631343808, 0.0047981120231807, 0.0014917668763735, + 0.0025831158491006, 0.0047676338058998, 0.0014881915745163002, + 0.002183379574323, 0.0047373237683335, 0.0014846801108218, + 0.0017017307300915, 0.0047069900515175, 0.0014811611414421, + 0.0012777455839441, 0.0046766563347015, 0.0014775510305901, + 0.0009114286436032, 0.0046463226178855, 0.0014738559418333, + 0.0005325496506067, 0.0046159889010695, 0.0014701608530766, + 0.0001536706576101, 0.0045878017844947, 0.0014664657643198, + -0.0002281253487771, 0.0045558127294463, 0.0014627699479455, + -0.0006151739731098001, 0.0045266698574331, 0.0014590348770567, + -0.0009187308777598, 0.0044970435276089, 0.0014552288514765, + -0.0012222877824099, 0.0044668587973515, 0.0014514082830493998, + -0.0015258446870599, 0.0044374744474635, 0.0014476829033231, + -0.0018229072638117, 0.0044079502964584, 0.0014439575235968, + -0.0021125425750158, 0.004378531487687, 0.0014401690558798, + -0.0023674484550184, 0.0043495358738313, 0.0014362960272512, + -0.002598239059294, 0.0043194411777678, 0.0014325076391464, + -0.0028263604865131, 0.0042889266685932, 0.0014287130693588, + -0.003030167326251, 0.0042599579597409, 0.0014248410274049, + -0.0032335993514527, 0.0042288514718145, 0.001420832609301, + -0.0034059793135802, 0.0041998553649392, 0.0014169563217249, + -0.0035686179878742, 0.0041708592580639, 0.0014129890538135, + -0.0037256905921249, 0.0041418631511886, 0.0014092436698039, + -0.0038647632018585, 0.0041129426552834, 0.0014052933739141, + -0.0039682928965337, 0.0040838674099053, 0.0014013014970207, + -0.0040560311880102, 0.0040547660356107, 0.0013973096201273, + -0.0041437694794867, 0.0040252875220643, 0.0013931266863785, + -0.0042349831431957, 0.0039958090085178, 0.0013892724373389, + -0.0043152037668764, 0.0039675695508406, 0.0013853365643368, + -0.0044088496171316, 0.0039390545993663, 0.0013813574603203, + -0.0044263953899967, 0.0039104139517175, 0.0013773757707361, + -0.0044513000989963, 0.0038817733040686, 0.0013733598187601, + -0.0044691682519277, 0.0038531326564197, 0.0013693199779545, + -0.0044870364048591, 0.0038262911902241, 0.0013652701662098, + -0.0044838487593346, 0.0037983228835164, 0.0013612352477177, + -0.0044610790771343, 0.0037696536338097, 0.0013571713462559, + -0.0044383093949341, 0.0037420469450656, 0.0013531753588969, + -0.0044155397127338, 0.0037132874915196, 0.0013489958048398, + -0.0042911445642238, 0.0036861195179764, 0.0013448887465478, + -0.0042383954166172, 0.0036595765102776, 0.0013407486032411, + -0.0041756224106508, 0.0036307614364569, 0.0013366085538675, + -0.0041239530198997, 0.0036033567217732, 0.0013324685044939, + -0.0040172356917231, 0.0035759520070895, 0.0013283284551204, + -0.0039338367361911, 0.0035485472924058, 0.001324071254911, + -0.0038473022389771, 0.0035214929952318, 0.0013199477572424, + -0.0037607677417631, 0.0034945657883757, 0.0013158242595739, + -0.0036604332519609, 0.0034675807507408, 0.0013117095442417, + -0.0035482880091246, 0.0034400688958125, 0.001307719426259, + -0.0034469121522402, 0.0034142380724294, 0.0013035949311341, + -0.003333706318328, 0.0033881586008459, 0.0012993669380849, + -0.0032205004844157, 0.0033618728633516, 0.0012951542254013, + -0.0031072946505035, 0.0033355956222735, 0.0012909415127176, + -0.0029940888165913, 0.0033093251385028, 0.0012867288000339, + -0.0028720249724226, 0.003283054654732, 0.0012824666174531, + -0.0027535023578718, 0.0032569313546167, 0.0012781989922251, + -0.002634979743321, 0.0032308302712144, 0.0012739313669971, + -0.0025251587519531, 0.0032052390130892, 0.001269663741769, + -0.0024334547605202, 0.0031798748980653, 0.0012654904611305, + -0.0023407625359555, 0.0031544073752746, 0.0012613004060582, + -0.0022493515333478, 0.0031287721835893, 0.0012570708247041, + -0.0021583897700465, 0.0031032526254224, 0.0012528412433499, + -0.0020577428904038, 0.0030783890446961, 0.0012486116619957, + -0.0019559293578898, 0.0030535740074844, 0.0012443820806415, + -0.0018562297240626, 0.0030287589702726, 0.0012400837860729, + -0.0017765419946672, 0.003004441483814, 0.0012358658475733, + -0.0016832786819406, 0.0029802474633594, 0.0012315973349984, + -0.0015959675367638, 0.0029556612577856, 0.0012273246778575, + -0.0015122724015718, 0.0029311182884215, 0.0012230753179684, + -0.0014464132117833, 0.0029066025207537, 0.0012187334035099, + -0.0013583910358094, 0.0028828796735959, 0.0012144133842261, + -0.0012768657630978, 0.0028590542249174, 0.0012101076997226, + -0.001219613603758, 0.0028350556858095, 0.0012058127769055, + -0.0011541378225191, 0.0028111702131817, 0.0012015178540884, + -0.0010886620412801, 0.0027872847405539, 0.0011972170546922, + -0.0010252756546409, 0.0027646176197906, 0.0011929269405105, + -0.0009621205872501, 0.0027418057946235, 0.0011887391568127, + -0.0008989655198593, 0.0027189823213579, 0.0011843251519198, + -0.0008568113656604, 0.002695786300573, 0.0011799620270084, + -0.0008031717003923, 0.0026727667445817, 0.0011756279349261, + -0.0007535997082005, 0.0026499991892177, 0.0011712938428438, + -0.0007046896577062, 0.0026271527747869, 0.0011669597507615, + -0.0006557796072119, 0.0026051090350896, 0.0011626256586793, + -0.0006272055538729001, 0.0025830652953923, 0.001158291566597, + -0.0005873334929069999, 0.002561141383578, 0.001153930878956, + -0.0005289418509236, 0.0025393295501665, 0.0011495370127655, + -0.0004988486410776, 0.002517517716755, 0.0011452510361113, + -0.0004687554312316, 0.0024952649885583, 0.0011407892964984, + -0.0004426804519314, 0.0024748725767112, 0.0011364803996266, + -0.0004092101346478, 0.0024534640293945, 0.0011321715027548, + -0.0003800400004291, 0.0024319064193313, 0.001127862605883, + -0.0003481271668165, 0.0024099952635125, 0.0011235629176845, + -0.0003227320015951, 0.0023891340722521, 0.0011192260451868, + -0.0002973368363738, 0.0023683299613353, 0.0011148891726891, + -0.0002787497340886, 0.0023475258504186, 0.0011105512720884, + -0.000258756704509, 0.0023270988298504, 0.0011062121700223, + -0.000237218463514, 0.0023066394841322, 0.0011018040913734, + -0.0002153076029436, 0.0022861268572602, 0.0010975048100728, + -0.0001972052797989, 0.0022661689772077, 0.0010932249851793, + -0.0001806582282729, 0.0022462587808157004, 0.0010889590593726, + -0.0001670325402975, 0.0022262600594211, 0.0010846931335659, + -0.0001534068523222, 0.0022061616633442, 0.0010804274141374, + -0.0001422810300442, 0.0021868129545246, 0.001076087770626, + -0.0001308301711206, 0.0021675299568098, 0.0010717392023799, + -0.00012001069463190001, 0.0021482768642796, 0.0010674810943381, + -0.0001124625315315, 0.0021291406272263, 0.0010631785832583, + -0.0001055973226161, 0.0021100088532755, 0.0010588995794392, + -9.74509995515929e-5, 0.0020901068872914, 0.0010546205756201, + -9.25281503163712e-5, 0.0020721698823287, 0.001050341571801, + -8.98607808322629e-5, 0.002053468298328, 0.0010459828874652, + -8.37380813241858e-5, 0.0020346477289004, 0.0010417171560588, + -8.09733975270886e-5, 0.0020164232172626, 0.0010374862142216, + -7.82087137299911e-5, 0.0019981987056248, 0.001033214716147, + -7.62704810736196e-5, 0.0019800014079202, 0.001028943023297, + -7.57435742809512e-5, 0.001961975456897, 0.0010246794172932, + -7.67452257810172e-5, 0.0019443870079835, 0.001020451522768, + -7.774687728108321e-5, 0.0019268105191669, 0.0010162236282428, + -7.87485287811492e-5, 0.0019085108438387003, 0.0010119870864817, + -7.97501802812151e-5, 0.0018916317321404, 0.0010077020034287, + -8.37557572551294e-5, 0.0018739881390394, 0.0010034257506444, + -8.68570172125101e-5, 0.0018565264382033, 0.0009991181044103, + -9.22426668058846e-5, 0.0018392304248458, 0.0009950349994503, + -9.49844611633423e-5, 0.0018224452247876, 0.0009907336885359, + -9.96286571356079e-5, 0.001805659828614, 0.0009865705031592, + -0.0001043294965178, 0.0017889662581104, 0.0009824100059494, + -0.0001099800808386, 0.0017724101997906, 0.0009782580304595, + -0.0001142076572046, 0.0017557162952002, 0.0009740861612367, + -0.0001205155461468, 0.0017396692655838, 0.0009699142920139, + -0.0001272548912663, 0.0017236222359674, 0.0009657481203857, + -0.0001338250413063, 0.001707575206351, 0.0009615608001692, + -0.0001412631522464, 0.0016910020724122, 0.0009573500837651, + -0.000148802050823, 0.0016754212512197, 0.0009531303421211, + -0.0001561158052651, 0.0016598404300272, 0.0009491361454629, + -0.0001641604119665, 0.0016442596088346, 0.0009450190016215, + -0.000172551488505, 0.0016287828225651, 0.0009409018577801, + -0.0001815615091711, 0.0016136529235145, 0.0009367769422012, + -0.0001905365411176, 0.0015985080183681, 0.0009326654207645, + -0.000199511573064, 0.0015833947706489, 0.0009285538993277, + -0.0002091905107707, 0.0015686916755066, 0.0009244423778909, + -0.0002173396883685, 0.0015537011179149, 0.0009203391952852, + -0.0002268095415497, 0.0015389519518522, 0.0009162711077072, + -0.000236279394731, 0.0015242027857895, 0.0009122286734843, + -0.0002461514172292, 0.0015094536197267, 0.0009081222093661999, + -0.0002560583198465, 0.001494704453664, 0.0009040157452482, + -0.0002659652224637, 0.0014812036834556, 0.0008999092811301, + -0.000275872125081, 0.001466593212834, 0.0008957942109237, + -0.0002857790276982, 0.0014527769628013, 0.0008916874846986, + -0.0002959112082523, 0.0014389607127687, 0.0008878487801128, + -0.0003063326221174, 0.001425144462736, 0.0008838794184211, + -0.0003163957147803, 0.0014115772371928, 0.0008798757804038, + -0.0003262309432942, 0.0013979498166122, 0.0008758721423865, + -0.0003355738968155, 0.001384301077998, 0.0008718685043692, + -0.00034557118563069997, 0.0013706523393837, 0.000867864866352, + -0.0003555684744459, 0.001357543005225, 0.0008638612283347, + -0.0003656388094563, 0.0013445351825825, 0.0008598575903174001, + -0.0003756828460351, 0.0013314076035688, 0.0008558539523001, + -0.0003857528874026, 0.0013184359424369, 0.0008519180051985, + -0.0003953596798771, 0.0013055472283992, 0.0008478702399297, + -0.0004049664723515, 0.0012928322149688, 0.0008439665296466, + -0.0004145704401387, 0.0012803269979981, 0.0008400628193635, + -0.0004241301945176, 0.0012679235995745, 0.0008361591090804, + -0.0004336899488966, 0.0012554457995749, 0.0008322534129772, + -0.0004434155348065, 0.0012429967698254, 0.0008283419506065, + -0.0004531070725321, 0.0012307884578651, 0.0008244304882358, + -0.0004613969669265, 0.0012185423935557, 0.000820519025865, + -0.000472564607135, 0.0012063712461267003, 0.0008164914706766, + -0.0004813445400705, 0.0011944988736123, 0.0008126895322534, + -0.0004901244730059, 0.0011827603073771, 0.0008088661073715, + -0.0004990396353392, 0.0011710104564386, 0.0008050377846954, + -0.0005080282967776, 0.0011593151069407, 0.00080119643348, + -0.0005170169582159, 0.0011478643216481003, 0.0007973556702735, + -0.0005254155137586, 0.0011364131969517, 0.0007935555635049, + -0.0005336791389201, 0.0011249620722553, 0.0007897554567362, + -0.0005424336783563, 0.0011137236719554, 0.0007859553499675, + -0.000550688953616, 0.0011024784835809, 0.0007821506470435, + -0.0005585424516228, 0.0010915527668544, 0.0007783368186395, + -0.0005663959496296, 0.0010806270501279, 0.0007745857627865, + -0.0005742494476363, 0.0010697013334014, 0.0007707852445324, + -0.0005821029456431, 0.0010590423438471, 0.0007669847262783, + -0.0005892534962637, 0.0010481862584787, 0.0007631842080242, + -0.0005963340673188, 0.0010377611393315, 0.0007593836897701, + -0.0006034240464565, 0.0010270899661474, 0.0007556542002288, + -0.0006108927422424, 0.0010165028560292, 0.0007519239956302, + -0.0006178449228152, 0.0010061462333762, 0.0007481753169727, + -0.000624698468207, 0.0009957896107231, 0.0007445210578828, + -0.0006311818570774, 0.0009855542768721, 0.0007408778117887, + -0.0006376652459478, 0.0009754025142993, 0.0007371815681844, + -0.0006442077918358, 0.00096545422445, 0.0007335201881364, + -0.0006504634861546, 0.0009555583183597, 0.0007298588080885, + -0.0006567191804735, 0.0009456624122694, 0.0007262122829718, + -0.0006628975748204, 0.0009358691726597, 0.0007225516747196, + -0.0006687036458927, 0.0009261585343992, 0.0007189547378157, + -0.0006748514947569, 0.0009164504580639, 0.0007153578009118, + -0.0006800580683616, 0.0009069152835606, 0.0007117532396756, + -0.0006856847096316, 0.000897619365885, 0.0007081403619554, + -0.0006911585266947, 0.0008883194174116, 0.0007045887318053, + -0.0006963908924758, 0.0008790194689382, 0.0007010132754667, + -0.0007016232582569, 0.0008697274533714, 0.0006974192272032, + -0.0007063671828406, 0.0008605502418093, 0.0006938468878496, + -0.0007112426199342, 0.0008514902390092001, 0.0006902745484959, + -0.0007162124490768, 0.0008424746841493, 0.0006868009464306, + -0.0007207759512742, 0.0008334591292893, 0.0006832305960516, + -0.0007256388809568, 0.0008244435744293, 0.0006797702841094, + -0.0007306118341986999, 0.0008156007843858, 0.0006763099721672, + -0.0007335747617295, 0.0008076002783683, 0.0006728457747122, + -0.0007376141213332, 0.0007988284989656, 0.0006693957287435, + -0.0007415524091212, 0.0007902288333627, 0.0006659456827748, + -0.0007454845879653, 0.0007819790567212, 0.0006624956368060999, + -0.0007491997336007, 0.0007737292800796, 0.0006590455908374, + -0.0007527785066971, 0.0007654650867975, 0.0006556856635768, + -0.0007575181102375, 0.0007571197236884, 0.0006522363723509, + -0.0007607947910351, 0.0007487743605794, 0.0006488710232317, + -0.0007640210117772, 0.0007405191267771001, 0.0006454971978925, + -0.0007671128632643, 0.0007326342520289, 0.000642142255701, + -0.0007702047147515, 0.0007246505088741, 0.000638768192654, + -0.0007731706213075, 0.0007167840794993, 0.0006354130082288, + -0.0007760634828736, 0.0007089176501246, 0.000632072236221, + -0.0007788834548238001, 0.0007013368299905, 0.0006287164698903, + -0.0007816359706878, 0.0006935317421322, 0.0006253773551246, + -0.0007840253361061, 0.0006858901245321, 0.0006222176592449, + -0.0007863251372894, 0.0006783483483345, 0.0006187848030336, + -0.000788499630209, 0.0006708727700368, 0.0006155288087449, + -0.0007910741392716, 0.0006633971917391, 0.0006122728144561, + -0.0007929129758065, 0.0006559959806375, 0.0006090168201674, + -0.0007954976151945, 0.0006486651563839, 0.0006057720483353, + -0.0007978892492392, 0.0006414127191101, 0.0006025337929101, + -0.0007997021142587, 0.0006340445877383, 0.0005993174955664, + -0.0008012701498348, 0.0006270124868151, 0.0005961019595452, + -0.0008028880564883, 0.0006201340207655, 0.0005929190872977, + -0.0008045059631418, 0.0006130965585152, 0.0005897528193598, + -0.0008061245618602, 0.0006061099906349, 0.0005865777728251, + -0.0008075468003953, 0.0005992390713149, 0.0005834619374564, + -0.0008089501434771, 0.0005923630225364, 0.0005802949158739, + -0.0008101547098451, 0.0005856286529338, 0.0005771278942914, + -0.0008113724132408, 0.0005789388772746, 0.0005739691015095, + -0.0008123989533424, 0.0005723817693237, 0.0005708666473383, + -0.0008134254934439, 0.0005658246613728, 0.0005677812275415, + -0.0008143963767246, 0.0005592408344709001, 0.0005647002105543, + -0.0008153536009157, 0.0005527431124611, 0.0005616217657136, + -0.0008162653579774, 0.0005464184776157, 0.0005585624999465, + -0.0008167726552492, 0.0005400874290435, 0.0005555118254067, + -0.000817279952521, 0.0005337563804714, 0.0005524673848583, + -0.0008177872497929, 0.0005275053590094, 0.0005494569862403, + -0.0008186355810639, 0.0005213261880712, 0.0005463971267389, + -0.0008191009722659, 0.0005151470171329, 0.0005433544982807, + -0.0008192570924287, 0.0005090398155854, 0.0005404015458655, + -0.0008205483915346, 0.0005030424545061, 0.0005373918752871, + -0.0008205019741321, 0.0004971512954888, 0.0005344278344634, + -0.0008204555567296, 0.0004912985900624, 0.0005314709389775, + -0.0008204091393272, 0.000485435806992, 0.0005285325398413, + -0.000820515917384, 0.0004797312466225, 0.000525596616977, + -0.0008204131672158, 0.0004740300801275, 0.0005226596275056, + -0.0008202487958326, 0.0004683289136325, 0.0005197184958586, + -0.000820172592174, 0.0004627371101444, 0.0005168353184294, + -0.0008202351473137, 0.0004570694312546, 0.0005139624578451, + -0.0008202098839413, 0.0004515362304235, 0.0005110895972607, + -0.0008200346579965, 0.0004460425440069, 0.0005082167366763, + -0.0008194516110222, 0.0004406013492809, 0.0005053438760919, + -0.0008190992074333, 0.0004351961548622, 0.000502497377767, + -0.0008187468038445, 0.0004299016188376, 0.0004996332518505, + -0.0008183944002556, 0.0004246070828129, 0.000496725592281, + -0.0008180419966667, 0.000419310887016, 0.0004939512087124, + -0.0008178522803034, 0.0004140614511259, 0.0004911701243317, + -0.0008166827156140001, 0.000408663136318, 0.0004883680168438, + -0.0008159337339536, 0.0004036552560865, 0.0004855918987939, + -0.0008151199603514, 0.0003986473758549, 0.0004828524080178, + -0.0008144411534822, 0.0003936394956234, 0.0004801161990594, + -0.0008136414256429, 0.0003886588679834, 0.0004773616475159, + -0.0008128416978037, 0.0003836573825059, 0.0004746066965484, + -0.0008120419699644, 0.0003787225923271, 0.0004718408430889, + -0.0008112422421251, 0.000373851257387, 0.0004691075483394, + -0.000810012763665, 0.0003689799224469, 0.0004664127820996, + -0.0008090642958939, 0.0003642363768915, 0.0004637197183034, + -0.0008081158281229, 0.0003595454287783, 0.0004610366762723, + -0.0008071673603518, 0.000354854480665, 0.0004583521647411, + -0.0008060485171037, 0.0003501635325518, 0.0004556756783603, + -0.0008048747640077, 0.0003456391452819, 0.0004530339324843, + -0.0008037122208664, 0.0003411006863558, 0.0004503890261984, + -0.000802549677725, 0.0003365622274298, 0.0004477535984153, + -0.0008013826748493, 0.0003321972938203, 0.0004451364996459, + -0.0008001628070446, 0.00032777477714339995, 0.0004425194008766, + -0.0007990960563096, 0.0003233687210494, 0.0004399023021072, + -0.0007977069116034, 0.0003191170175744, 0.0004373944805817, + -0.0007963177668973, 0.0003146929051007, 0.0004348600551149, + -0.0007946457737407, 0.0003104588204585, 0.0004321960374548, + -0.0007932425019532, 0.0003062395533705, 0.0004296906538169, + -0.0007918041464023, 0.000301990743974, 0.0004271250841614, + -0.0007903657908514, 0.0002978161639207, 0.0004246359977922, + -0.0007889274353005, 0.0002936995302845, 0.000422137424013, + -0.0007875706388447, 0.0002896617508374, 0.0004196101684585, + -0.0007861704661253, 0.0002856412150146, 0.000417124013281, + -0.0007845328837281, 0.0002815067459587, 0.0004146378581034, + -0.0007834287273486, 0.0002775830520137, 0.0004121616625705, + -0.000781756302589, 0.0002736357597919, 0.0004097309921627, + -0.0007800838778295, 0.0002697036331219, 0.0004073135484667, + -0.0007784114530699, 0.0002658764609756, 0.0004048915704265, + -0.0007767390283104, 0.0002620492888293, 0.0004024707835978, + -0.000775243897694, 0.0002582498075655, 0.0004000499967691, + -0.0007738952451412, 0.0002544657754283, 0.0003976692497652, + -0.0007720508312286, 0.0002507269102404, 0.000395299631492, + -0.0007702064173161, 0.0002470401799515, 0.0003929350190171, + -0.0007685424385205, 0.0002433534496626, 0.0003905681031557, + -0.0007667830573404, 0.0002396667193736, 0.0003882042120709, + -0.0007648940525243, 0.0002359799890847, 0.0003858782987935, + -0.0007632912984202, 0.0002325553899786, 0.0003835440787588, + -0.0007614531936912, 0.0002290556246761, 0.0003812709895102, + -0.0007596114542573, 0.0002254831753452, 0.0003789497350109, + -0.0007577446261054, 0.0002220083385777, 0.0003766661078097, + -0.0007558894318831, 0.0002185673823452, 0.0003743824806084, + -0.0007539654959796, 0.0002151395537204, 0.000372108035128, + -0.0007521233478026, 0.00021175948964, 0.0003698580329047, + -0.0007503233464227, 0.0002084251524149, 0.0003676074720122, + -0.0007484338535104, 0.0002051436400267, 0.0003653601064426, + -0.0007465926550505, 0.0002019022713596, 0.00036311274087290005, + -0.0007447270055135001, 0.0001986317172214, 0.0003609378354078, + -0.0007427908348323, 0.0001954420927438, 0.0003587408450676, + -0.0007408260530829, 0.0001921588887662, 0.0003565438547274, + -0.0007388612713335, 0.0001890324727832, 0.0003543556384516, + -0.0007369536881247, 0.0001860013944584, 0.0003521831008246, + -0.0007349399082476, 0.0001829437853216, 0.0003500153177423, + -0.0007329987463626, 0.0001798861761848, 0.0003478593670915, + -0.0007309456153008, 0.000176828567048, 0.0003457103281948, + -0.000728892484239, 0.0001737285138568, 0.0003435959957955, + -0.000727103215668, 0.0001709026742294, 0.0003414735193, + -0.0007250080861789, 0.0001678502185641, 0.0003393344342789, + -0.0007231231206463, 0.000164843824445, 0.000337194023273, + -0.0007209462910666, 0.0001620224098514, 0.0003351321765906, + -0.0007187694614868, 0.0001591915107592, 0.0003330763369179, + -0.000716872394224, 0.0001563520430064, 0.0003310204972452, + -0.0007148251141589, 0.0001535220149745, 0.0003289646575724, + -0.0007127778340939, 0.0001506919869426, 0.0003269017988737, + -0.0007107305540289, 0.0001479428045049, 0.0003248643101188, + -0.0007087370390225, 0.00014521037743, 0.0003228283456182, + -0.0007065666286598, 0.00014250858037530002, 0.0003207961829181, + -0.0007045343883158, 0.0001398607940022, 0.0003187773532782, + -0.0007025382358901, 0.0001372201044325, 0.0003167734861404, + -0.000700286078091, 0.0001346077101921, 0.0003147606432352, + -0.0006982683172335, 0.0001319821667372, 0.0003127700190098, + -0.000696250556376, 0.0001293794253228, 0.0003107826412803, + -0.0006941028516303, 0.0001268485294779, 0.0003088085318723, + -0.0006920897965121, 0.000124307355265, 0.00030683580877119995, + -0.0006900805912488, 0.0001218413632755, 0.0003048994663029, + -0.0006880688682698, 0.0001193933448235, 0.0003029687373007, + -0.0006860577395703001, 0.0001169581404864, 0.0003010380082985, + -0.0006837872217948, 0.0001145229361493, 0.0002991146885138, + -0.0006812886630339, 0.000112111048424, 0.0002972036677819, + -0.0006792703328061, 0.0001097536028487, 0.00029529264705, + -0.0006772520025783, 0.000107382297642, 0.0002934102369018, + -0.0006752336723505, 0.0001050136840311, 0.0002915085160478, + -0.0006732153421227, 0.0001027069905354, 0.0002896328317242, + -0.0006711970118949, 0.0001004609957582, 0.0002878031080387, + -0.0006691786816671, 9.8182409409435e-5, 0.0002859127766237, + -0.0006667990791861, 9.594775200563e-5, 0.0002840647659161, + -0.0006648178452851, 9.37130946018253e-5, 0.0002822167552085, + -0.000662806665497, 9.14784371980205e-5, 0.0002803739713376, + -0.0006608077360399, 8.93139496075192e-5, 0.000278548407679, + -0.000658621228505, 8.70725704343152e-5, 0.0002767290310276, + -0.0006565283836023, 8.49621510685286e-5, 0.0002749248783057, + -0.0006544355386997, 8.2851731702742e-5, 0.0002731232300649, + -0.000652342693797, 8.07413123369554e-5, 0.0002713257941958, + -0.0006502631677346, 7.86530496302597e-5, 0.000269551410432, + -0.000648150985022, 7.66116841480152e-5, 0.0002677770266681, + -0.0006460033569195, 7.45390572615141e-5, 0.0002660026429043, + -0.0006439275118072, 7.24969894759357e-5, 0.0002642492927216, + -0.0006418995465694, 7.04868929054101e-5, 0.0002625055413989, + -0.0006398110745237, 6.85095949618852e-5, 0.0002607773719035, + -0.0006377254377205, 6.6536926486135e-5, 0.0002590533256648, + -0.0006356162365292, 6.45887270341602e-5, 0.0002573048138714, + -0.0006335162796811, 6.26144111763336e-5, 0.0002555955565948, + -0.0006314509599219, 6.06856528100582e-5, 0.0002538862993181, + -0.0006293964733564, 5.88697826254332e-5, 0.0002521910734106, + -0.0006273408252405, 5.70478778144581e-5, 0.0002504848683582, + -0.0006252597662592, 5.52301105859504e-5, 0.0002488026442401, + -0.0006231787072779, 5.33913773696271e-5, 0.0002471263275357, + -0.0006210723514843, 5.15822889029398e-5, 0.0002454575661874, + -0.0006190697826167, 4.97752185468326e-5, 0.0002437962780823, + -0.0006169940489714, 4.80096581169907e-5, 0.000242149322192, + -0.0006149950099863, 4.6232195100823295e-5, 0.0002405117206831, + -0.0006128809398932, 4.44670228895349e-5, 0.0002388810569915, + -0.0006107668698002, 4.27666504650764e-5, 0.0002372654336067, + -0.000608662598836, 4.10626869690246e-5, 0.000235649810222, + -0.000606559191009, 3.93905627446541e-5, 0.0002340341868373, + -0.000604455783182, 3.77184385202834e-5, 0.0002324339072486, + -0.0006024892386909, 3.60617941988604e-5, 0.0002308222654803, + -0.000600509246617, 3.44456990149065e-5, 0.0002292689166086, + -0.0005984353612682, 3.28406512254781e-5, 0.0002277056423418, + -0.0005964809867248, 3.12350056089602e-5, 0.0002261186658213, + -0.0005944217951737, 2.9705505058184e-5, 0.0002245872266251, + -0.0005923626036225, 2.81562570776856e-5, 0.0002230557874289, + -0.0005903025530992, 2.66335620294135e-5, 0.0002215243482327, + -0.0005882365361251, 2.51108669811415e-5, 0.0002199971557285, + -0.0005861596441635, 2.35742177339193e-5, 0.0002184714599507, + -0.0005841140321229, 2.20791607927397e-5, 0.000216967723793, + -0.0005821242546269, 2.06089769134827e-5, 0.0002154717600876, + -0.0005801344771309, 1.91492537273167e-5, 0.000213972896546, + -0.000578165697347, 1.77147088470628e-5, 0.0002124985767816, + -0.0005761589465654, 1.62801639668088e-5, 0.0002110214254602, + -0.0005741334984514, 1.48604891425098e-5, 0.0002095569956941, + -0.0005721080503374, 1.34419964498404e-5, 0.0002080925659279, + -0.0005701612562991, 1.20983382626954e-5, 0.0002066281361617, + -0.0005681783277181999, 1.07130560843651e-5, 0.0002051794971082, + -0.0005661953991374, 9.35836932906087e-6, 0.0002037635398324, + -0.0005642922523806, 8.02285309342116e-6, 0.0002023475825566, + -0.0005622621293538, 6.71463532031401e-6, 0.0002009279552716, + -0.0005602320063269, 5.37172192816201e-6, 0.0001995115005179, + -0.0005582298843459, 4.09386866231783e-6, 0.0001981109106197, + -0.0005562873843537, 2.83658179865251e-6, 0.0001967128485197, + -0.0005543309276217, 1.53962223216165e-6, 0.0001953147864196, + -0.0005524143306435, 2.96098185609588e-7, 0.0001939619430095, + -0.0005505043106975, -9.50681594899478e-7, 0.000192589702649, + -0.0005485592543264, -2.17268107863764e-6, 0.0001912333824155, + -0.0005466141979553, -3.41292894563257e-6, 0.00018988068095, + -0.0005446651872117, -4.62058380683073e-6, 0.0001885275563661, + -0.0005427626117405, -5.82823866802878e-6, 0.0001871815817076, + -0.0005408651903623, -7.03589352922673e-6, 0.00018585734556619997, + -0.0005389680073385, -8.18126260016938e-6, 0.0001845355253721, + -0.0005370708243148, -9.360262028554631e-6, 0.00018321100832799998, + -0.0005351541578238, -1.04992490237793e-5, 0.0001818864912838, + -0.0005333331959165, -1.16251413000938e-5, 0.0001805927662131, + -0.0005313626401512, -1.27587183654847e-5, 0.0001793339746812, + -0.0005294099997913, -1.3874096239243e-5, 0.0001780395978559, + -0.0005276676388588, -1.50138954388461e-5, 0.000176756693314, + -0.0005257558261671, -1.61065810053374e-5, 0.0001754737887721, + -0.0005238714511768, -1.71939704148186e-5, 0.0001742156138621, + -0.0005219870761864, -1.82688013058275e-5, 0.0001729642693437, + -0.000520102701196, -1.93131961589366e-5, 0.0001716891603169, + -0.0005183097205291, -2.03545213181165e-5, 0.0001704449807466, + -0.0005164552437189, -2.13955648023238e-5, 0.0001692164032934, + -0.0005145765252728, -2.24304684145972e-5, 0.0001679878258402, + -0.0005127252239529, -2.3483070976679e-5, 0.0001667592483871, + -0.000510900930704, -2.44570144770062e-5, 0.0001655338689599, + -0.0005091059387692, -2.54309579773334e-5, 0.0001643195244717, + -0.0005073109468343, -2.64049014776607e-5, 0.0001631214870071, + -0.000505495788101, -2.73472580991665e-5, 0.0001619314512245, + -0.0005037078072799, -2.8294886852923e-5, 0.0001607404316021, + -0.0005019187056094, -2.9235575915307696e-5, 0.00015955046949, + -0.0005001296039389, -3.01762649776924e-5, 0.0001583605073779, + -0.0004983405022684, -3.11244445891648e-5, 0.000157192242494, + -0.0004965311336895, -3.203402956436e-5, 0.0001560310232218, + -0.0004947482856928, -3.29436145395551e-5, 0.0001548699559393, + -0.0004929951873225, -3.37894858085653e-5, 0.0001537088886568, + -0.0004912413084747, -3.46629640722409e-5, 0.0001525625426287, + -0.0004894786987537, -3.55387358820739e-5, 0.0001514423962498, + -0.0004877160890327, -3.6414507691907e-5, 0.0001502802976803, + -0.0004859534793117, -3.72622182774759e-5, 0.000149164918689, + -0.0004842469800766, -3.81091701416204e-5, 0.0001480445331008, + -0.0004825385118251, -3.89439200485419e-5, 0.0001469185491249, + -0.0004807823089841, -3.97609084996352e-5, 0.0001458135458157, + -0.0004790544302871, -4.05702930217534e-5, 0.0001447085425064, + -0.0004773403540654, -4.13796775438713e-5, 0.0001436099462649, + -0.0004755944879831, -4.21803658497698e-5, 0.00014252019768370001, + -0.0004737681376628, -4.29729217757853e-5, 0.000141420853577, + -0.0004721487307146, -4.37668330461533e-5, 0.0001403395609554, + -0.0004704713237288, -4.45284304323664e-5, 0.0001392750592266, + -0.000468789530142, -4.52842880064328e-5, 0.0001381939126609, + -0.0004670901697517, -4.60344262540155e-5, 0.000137119043515, + -0.0004654219163328, -4.67810969307601e-5, 0.0001360784950714, + -0.0004637536629139, -4.7529199274809e-5, 0.0001350392669649, + -0.000462085409495, -4.8235141780356e-5, 0.0001339957655234, + -0.0004603945052094, -4.89463630970017e-5, 0.0001329507224897, + -0.0004587537863933, -4.96390481748741e-5, 0.0001319195087755, + -0.0004571218664741, -5.03302301885363e-5, 0.0001308882950614, + -0.0004554887604567, -5.10208954063402e-5, 0.0001298570813472, + -0.0004538540814366, -5.16867589092666e-5, 0.000128825867633, + -0.0004522115971839, -5.23783672479968e-5, 0.0001278347274975, + -0.00045059377938, -5.30445576874222e-5, 0.0001268374675189, + -0.000448965777037, -5.37406107958998e-5, 0.0001258008518395, + -0.0004473823430717, -5.43697611272206e-5, 0.000124820075489, + -0.0004457954515675, -5.49989114585415e-5, 0.0001238392991386, + -0.0004442235602035, -5.56269659936176e-5, 0.0001228585227882, + -0.0004426476417739, -5.62456819003234e-5, 0.0001218843641931, + -0.0004410717233442, -5.68643978070293e-5, 0.0001209138837976, + -0.0004394750696185, -5.74831137137351e-5, 0.0001199434034021, + -0.0004378747867044, -5.81007661009646e-5, 0.0001189986716725, + -0.0004363363014747, -5.86569402343078e-5, 0.0001180319937142, + -0.0004347950182411, -5.92423991967913e-5, 0.0001170733291615, + -0.0004332549491808, -5.98305184065061e-5, 0.0001161294053717, + -0.0004317037428946, -6.03940219123294e-5, 0.0001151843145347, + -0.0004301668505438, -6.09575254181527e-5, 0.0001142459324698, + -0.0004286325302018, -6.15167094402477e-5, 0.0001133060750644, + -0.0004271128995444, -6.20616343449465e-5, 0.000112390206764, + -0.0004256040139625, -6.26065592496452e-5, 0.0001114691614154, + -0.0004240979113702, -6.31514841543439e-5, 0.0001105481160669, + -0.000422586886949, -6.36964090590425e-5, 0.0001096270707184, + -0.0004210540218403, -6.42413339637412e-5, 0.0001087612543311 + ] + }, + "unit": "T" + } + ] +} diff --git a/src/magpylib_material_response/polyline.py b/src/magpylib_material_response/polyline.py index 36e5126..421013a 100644 --- a/src/magpylib_material_response/polyline.py +++ b/src/magpylib_material_response/polyline.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import numpy as np diff --git a/src/magpylib_material_response/utils.py b/src/magpylib_material_response/utils.py index 5fb8e36..aa5f84e 100644 --- a/src/magpylib_material_response/utils.py +++ b/src/magpylib_material_response/utils.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import threading import time import warnings @@ -61,7 +63,7 @@ def timelog(msg, min_log_time=1): if end > min_log_time: logger.opt(colors=True).success( - f"{msg} done" f" 🕑 {round(end, 3)}sec" + f"{msg} done 🕑 {round(end, 3)}sec" ) diff --git a/tests/test_basic.py b/tests/test_basic.py index 4477195..d0d74b4 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import magpylib as magpy import numpy as np diff --git a/tests/test_isotropic_anisotropic.py b/tests/test_isotropic_anisotropic.py index f0c962e..6b8dbd4 100644 --- a/tests/test_isotropic_anisotropic.py +++ b/tests/test_isotropic_anisotropic.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import magpylib as magpy import numpy as np @@ -5,7 +7,6 @@ def test_isotropic_susceptibility(): - cells = 1000 # should be >=1000, otherwise discretization error too large magnet = magpy.magnet.Cuboid(dimension=(1e-3, 1e-3, 1e-3), polarization=(0, 0, 1.1)) @@ -25,7 +26,6 @@ def test_isotropic_susceptibility(): def test_anisotropic_susceptibility(): - cells = 1000 # should be >=1000, otherwise discretization error too large magnet = magpy.magnet.Cuboid(dimension=(1e-3, 1e-3, 1e-3), polarization=(0, 0, 1.1)) @@ -45,7 +45,6 @@ def test_anisotropic_susceptibility(): def test_negative_susceptibility(): - cells = 1000 # should be >=1000, otherwise discretization error too large magnet = magpy.magnet.Cuboid( diff --git a/tests/test_meshing.py b/tests/test_meshing.py index 60f722c..39a4df6 100644 --- a/tests/test_meshing.py +++ b/tests/test_meshing.py @@ -1,5 +1,7 @@ """Test meshing functions""" +from __future__ import annotations + import magpylib as magpy import numpy as np import pytest From b9d458463ebaaea49f240c1b1e5a0a35a66debfe Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 11:35:50 +0200 Subject: [PATCH 03/51] improve dataset handling and package data inclusion --- pyproject.toml | 4 ++++ .../data/__init__.py | 19 ++++++++----------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9bdbda6..679ce26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,6 +58,10 @@ Changelog = "https://github.com/magpylib/magpylib-material-response/releases" [tool.hatch] version.source = "vcs" build.hooks.vcs.version-file = "src/magpylib_material_response/_version.py" +build.include = [ + "src/magpylib_material_response/package_data/datasets/*.json", + "src/magpylib_material_response/package_data/datasets/*.csv", +] [tool.hatch.envs.default] features = ["test"] diff --git a/src/magpylib_material_response/data/__init__.py b/src/magpylib_material_response/data/__init__.py index 4b383a1..80d0841 100644 --- a/src/magpylib_material_response/data/__init__.py +++ b/src/magpylib_material_response/data/__init__.py @@ -2,20 +2,17 @@ Built-in datasets for demonstration, educational and test purposes. """ +from __future__ import annotations def get_dataset(name): + import importlib import json - import os from pathlib import Path - stem = Path(name).stem - name = stem + ".json" - file = os.path.join( - os.path.dirname(os.path.dirname(__file__)), - "package_data", - "datasets", - name, - ) - with open(file) as fp: - sim = json.load(fp) + name = Path(name).with_suffix("").with_suffix(".json") + with importlib.resources.path( + "magpylib_material_response.package_data", "datasets" + ) as resources_path: + with open(resources_path / name) as fp: + sim = json.load(fp) return sim From 248943dbe5c5cb09ce3ae0530a80f9478dda8734 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 11:38:55 +0200 Subject: [PATCH 04/51] pre-commit run --- CHANGELOG.md | 2 +- src/magpylib_material_response/demag.py | 41 ++++++++++--------- src/magpylib_material_response/meshing.py | 2 + .../meshing_utils.py | 2 + .../datasets/FEMdata_test_cuboids.json | 2 +- .../datasets/FEMdata_test_softmag.json | 2 +- src/magpylib_material_response/polyline.py | 2 + src/magpylib_material_response/utils.py | 4 +- tests/test_basic.py | 2 + tests/test_isotropic_anisotropic.py | 5 +-- tests/test_meshing.py | 2 + 11 files changed, 39 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 113dfbe..13e03c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,4 +16,4 @@ # 0.2.0a0 * renaming xi->susceptibility ([#5](https://github.com/magpylib/magpylib-material-response/pull/5)) -* update to magpylib v5 ([#4](https://github.com/magpylib/magpylib-material-response/pull/4)) \ No newline at end of file +* update to magpylib v5 ([#4](https://github.com/magpylib/magpylib-material-response/pull/4)) diff --git a/src/magpylib_material_response/demag.py b/src/magpylib_material_response/demag.py index e5815e8..1aebe0e 100644 --- a/src/magpylib_material_response/demag.py +++ b/src/magpylib_material_response/demag.py @@ -2,6 +2,8 @@ # + # pylint: disable=invalid-name, redefined-outer-name, protected-access +from __future__ import annotations + import sys from collections import Counter @@ -55,25 +57,24 @@ def get_susceptibilities(sources, susceptibility): susis.append(susceptibility) else: raise ValueError("susceptibility is not scalar or array fo length 3") + # susceptibilities as input to demag function + elif np.isscalar(susceptibility): + susis = np.ones((n, 3)) * susceptibility + elif len(susceptibility) == 3: + susis = np.tile(susceptibility, (n, 1)) + if n == 3: + raise ValueError( + "Apply_demag input susceptibility is ambiguous - either scalar list or vector single entry. " + "Please choose different means of input or change the number of cells in the Collection." + ) else: - # susceptibilities as input to demag function - if np.isscalar(susceptibility): - susis = np.ones((n, 3)) * susceptibility - elif len(susceptibility) == 3: - susis = np.tile(susceptibility, (n, 1)) - if n == 3: - raise ValueError( - "Apply_demag input susceptibility is ambiguous - either scalar list or vector single entry. " - "Please choose different means of input or change the number of cells in the Collection." - ) - else: - if len(susceptibility) != n: - raise ValueError( - "Apply_demag input susceptibility must be scalar, 3-vector, or same length as input Collection." - ) - susis = np.array(susceptibility) - if susis.ndim == 1: - susis = np.repeat(susis, 3).reshape(n, 3) + if len(susceptibility) != n: + raise ValueError( + "Apply_demag input susceptibility must be scalar, 3-vector, or same length as input Collection." + ) + susis = np.array(susceptibility) + if susis.ndim == 1: + susis = np.repeat(susis, 3).reshape(n, 3) susis = np.reshape(susis, 3 * n, order="F") return np.array(susis) @@ -141,7 +142,7 @@ def demag_tensor( if pairs_matching and split != 1: raise ValueError("Pairs matching does not support splitting") - elif max_dist != 0: + if max_dist != 0: mask_inds, getH_params, pos0, rot0 = filter_distance( src_list, max_dist, return_params=False, return_base_geo=True ) @@ -179,7 +180,7 @@ def demag_tensor( H_unit_pol = [] for split_ind, src_list_subset in enumerate(src_list_split): logger.info( - f"Sources subset {split_ind+1}/{len(src_list_split)}" + f"Sources subset {split_ind + 1}/{len(src_list_split)}" ) if src_list_subset.size > 0: H_unit_pol.append( diff --git a/src/magpylib_material_response/meshing.py b/src/magpylib_material_response/meshing.py index fb25286..ceef264 100644 --- a/src/magpylib_material_response/meshing.py +++ b/src/magpylib_material_response/meshing.py @@ -1,3 +1,5 @@ +from __future__ import annotations + from collections import Counter from itertools import product diff --git a/src/magpylib_material_response/meshing_utils.py b/src/magpylib_material_response/meshing_utils.py index 6c2ff5b..7ad7c11 100644 --- a/src/magpylib_material_response/meshing_utils.py +++ b/src/magpylib_material_response/meshing_utils.py @@ -1,3 +1,5 @@ +from __future__ import annotations + from itertools import product import numpy as np diff --git a/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json b/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json index e622ddc..71c30fc 100644 --- a/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json +++ b/src/magpylib_material_response/package_data/datasets/FEMdata_test_cuboids.json @@ -1 +1 @@ -{"setup": [{"id": 2198425521360, "type": "Collection", "position": {"value": [0.0, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "No demag", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "children": [{"id": 2197862031424, "type": "Cuboid", "position": {"value": [-0.0015, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=0.3", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.3}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 1.0], "unit": "T"}}, {"id": 2198425551248, "type": "Cuboid", "position": {"value": [0.0, 0.0, 0.0002], "unit": "m"}, "orientation": {"value": [[0.7071067811865475, -0.0, -0.7071067811865476], [0.0, 1.0, -0.0], [0.7071067811865476, 0.0, 0.7071067811865475]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=1.0", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 1.0}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.9, 0.0, 0.0], "unit": "T"}}, {"id": 2198425521744, "type": "Cuboid", "position": {"value": [0.0016, 0.0, 0.0005], "unit": "m"}, "orientation": {"value": [[0.8660254037844387, -0.49999999999999994, 0.0], [0.49999999999999994, 0.8660254037844387, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=0.5", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.5}, "dimension": {"value": [0.001, 0.001, 0.002], "unit": "m"}, "polarization": {"value": [0.29999999999999993, 0.5196152422706632, 0.0], "unit": "T"}}]}, {"id": 2198425447008, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.001], [-0.003973333333333333, 0.0, -0.001], [-0.003946666666666667, 0.0, -0.001], [-0.00392, 0.0, -0.001], [-0.0038933333333333337, 0.0, -0.001], [-0.0038666666666666667, 0.0, -0.001], [-0.0038399999999999997, 0.0, -0.001], [-0.0038133333333333335, 0.0, -0.001], [-0.0037866666666666665, 0.0, -0.001], [-0.00376, 0.0, -0.001], [-0.0037333333333333333, 0.0, -0.001], [-0.0037066666666666667, 0.0, -0.001], [-0.00368, 0.0, -0.001], [-0.0036533333333333335, 0.0, -0.001], [-0.0036266666666666665, 0.0, -0.001], [-0.0036, 0.0, -0.001], [-0.0035733333333333333, 0.0, -0.001], [-0.0035466666666666667, 0.0, -0.001], [-0.00352, 0.0, -0.001], [-0.003493333333333333, 0.0, -0.001], [-0.003466666666666667, 0.0, -0.001], [-0.00344, 0.0, -0.001], [-0.0034133333333333333, 0.0, -0.001], [-0.0033866666666666667, 0.0, -0.001], [-0.0033599999999999997, 0.0, -0.001], [-0.0033333333333333335, 0.0, -0.001], [-0.0033066666666666665, 0.0, -0.001], [-0.0032800000000000004, 0.0, -0.001], [-0.0032533333333333333, 0.0, -0.001], [-0.0032266666666666667, 0.0, -0.001], [-0.0032, 0.0, -0.001], [-0.003173333333333333, 0.0, -0.001], [-0.0031466666666666665, 0.0, -0.001], [-0.00312, 0.0, -0.001], [-0.0030933333333333334, 0.0, -0.001], [-0.0030666666666666663, 0.0, -0.001], [-0.00304, 0.0, -0.001], [-0.003013333333333333, 0.0, -0.001], [-0.0029866666666666665, 0.0, -0.001], [-0.00296, 0.0, -0.001], [-0.0029333333333333334, 0.0, -0.001], [-0.0029066666666666668, 0.0, -0.001], [-0.0028799999999999997, 0.0, -0.001], [-0.0028533333333333336, 0.0, -0.001], [-0.0028266666666666666, 0.0, -0.001], [-0.0028, 0.0, -0.001], [-0.0027733333333333334, 0.0, -0.001], [-0.002746666666666667, 0.0, -0.001], [-0.0027199999999999998, 0.0, -0.001], [-0.002693333333333333, 0.0, -0.001], [-0.002666666666666667, 0.0, -0.001], [-0.0026399999999999996, 0.0, -0.001], [-0.0026133333333333334, 0.0, -0.001], [-0.002586666666666667, 0.0, -0.001], [-0.00256, 0.0, -0.001], [-0.002533333333333333, 0.0, -0.001], [-0.002506666666666667, 0.0, -0.001], [-0.00248, 0.0, -0.001], [-0.002453333333333333, 0.0, -0.001], [-0.002426666666666667, 0.0, -0.001], [-0.0024, 0.0, -0.001], [-0.002373333333333333, 0.0, -0.001], [-0.0023466666666666666, 0.0, -0.001], [-0.0023200000000000004, 0.0, -0.001], [-0.002293333333333333, 0.0, -0.001], [-0.0022666666666666664, 0.0, -0.001], [-0.0022400000000000002, 0.0, -0.001], [-0.002213333333333333, 0.0, -0.001], [-0.0021866666666666666, 0.0, -0.001], [-0.00216, 0.0, -0.001], [-0.0021333333333333334, 0.0, -0.001], [-0.0021066666666666664, 0.0, -0.001], [-0.0020800000000000003, 0.0, -0.001], [-0.0020533333333333332, 0.0, -0.001], [-0.002026666666666666, 0.0, -0.001], [-0.002, 0.0, -0.001], [-0.001973333333333333, 0.0, -0.001], [-0.0019466666666666669, 0.0, -0.001], [-0.0019199999999999998, 0.0, -0.001], [-0.0018933333333333335, 0.0, -0.001], [-0.0018666666666666666, 0.0, -0.001], [-0.0018399999999999998, 0.0, -0.001], [-0.0018133333333333335, 0.0, -0.001], [-0.0017866666666666667, 0.0, -0.001], [-0.0017599999999999998, 0.0, -0.001], [-0.0017333333333333335, 0.0, -0.001], [-0.0017066666666666667, 0.0, -0.001], [-0.00168, 0.0, -0.001], [-0.0016533333333333333, 0.0, -0.001], [-0.0016266666666666665, 0.0, -0.001], [-0.0016, 0.0, -0.001], [-0.0015733333333333333, 0.0, -0.001], [-0.001546666666666667, 0.0, -0.001], [-0.00152, 0.0, -0.001], [-0.0014933333333333333, 0.0, -0.001], [-0.0014666666666666667, 0.0, -0.001], [-0.0014399999999999999, 0.0, -0.001], [-0.0014133333333333335, 0.0, -0.001], [-0.0013866666666666667, 0.0, -0.001], [-0.0013599999999999999, 0.0, -0.001], [-0.0013333333333333335, 0.0, -0.001], [-0.0013066666666666667, 0.0, -0.001], [-0.0012799999999999999, 0.0, -0.001], [-0.0012533333333333335, 0.0, -0.001], [-0.0012266666666666665, 0.0, -0.001], [-0.0012000000000000001, 0.0, -0.001], [-0.0011733333333333333, 0.0, -0.001], [-0.0011466666666666665, 0.0, -0.001], [-0.0011200000000000001, 0.0, -0.001], [-0.0010933333333333333, 0.0, -0.001], [-0.001066666666666667, 0.0, -0.001], [-0.0010400000000000001, 0.0, -0.001], [-0.001013333333333333, 0.0, -0.001], [-0.0009866666666666667, 0.0, -0.001], [-0.0009599999999999999, 0.0, -0.001], [-0.0009333333333333331, 0.0, -0.001], [-0.0009066666666666667, 0.0, -0.001], [-0.0008799999999999999, 0.0, -0.001], [-0.0008533333333333335, 0.0, -0.001], [-0.0008266666666666666, 0.0, -0.001], [-0.0007999999999999998, 0.0, -0.001], [-0.0007733333333333334, 0.0, -0.001], [-0.0007466666666666666, 0.0, -0.001], [-0.0007200000000000002, 0.0, -0.001], [-0.0006933333333333333, 0.0, -0.001], [-0.0006666666666666665, 0.0, -0.001], [-0.0006400000000000002, 0.0, -0.001], [-0.0006133333333333332, 0.0, -0.001], [-0.0005866666666666664, 0.0, -0.001], [-0.0005600000000000001, 0.0, -0.001], [-0.0005333333333333333, 0.0, -0.001], [-0.0005066666666666668, 0.0, -0.001], [-0.00047999999999999996, 0.0, -0.001], [-0.00045333333333333315, 0.0, -0.001], [-0.0004266666666666668, 0.0, -0.001], [-0.0003999999999999999, 0.0, -0.001], [-0.00037333333333333354, 0.0, -0.001], [-0.00034666666666666667, 0.0, -0.001], [-0.00031999999999999986, 0.0, -0.001], [-0.00029333333333333343, 0.0, -0.001], [-0.0002666666666666666, 0.0, -0.001], [-0.00024000000000000022, 0.0, -0.001], [-0.0002133333333333334, 0.0, -0.001], [-0.00018666666666666652, 0.0, -0.001], [-0.00016000000000000015, 0.0, -0.001], [-0.0001333333333333333, 0.0, -0.001], [-0.00010666666666666646, 0.0, -0.001], [-8.000000000000007e-05, 0.0, -0.001], [-5.333333333333323e-05, 0.0, -0.001], [-2.666666666666684e-05, 0.0, -0.001], [0.0, 0.0, -0.001], [2.6666666666666396e-05, 0.0, -0.001], [5.333333333333368e-05, 0.0, -0.001], [8.000000000000007e-05, 0.0, -0.001], [0.00010666666666666646, 0.0, -0.001], [0.00013333333333333375, 0.0, -0.001], [0.00016000000000000015, 0.0, -0.001], [0.00018666666666666652, 0.0, -0.001], [0.00021333333333333293, 0.0, -0.001], [0.00024000000000000022, 0.0, -0.001], [0.0002666666666666666, 0.0, -0.001], [0.000293333333333333, 0.0, -0.001], [0.0003200000000000003, 0.0, -0.001], [0.00034666666666666667, 0.0, -0.001], [0.00037333333333333305, 0.0, -0.001], [0.00040000000000000034, 0.0, -0.001], [0.0004266666666666668, 0.0, -0.001], [0.00045333333333333315, 0.0, -0.001], [0.00048000000000000045, 0.0, -0.001], [0.0005066666666666668, 0.0, -0.001], [0.0005333333333333333, 0.0, -0.001], [0.0005599999999999996, 0.0, -0.001], [0.0005866666666666669, 0.0, -0.001], [0.0006133333333333332, 0.0, -0.001], [0.0006399999999999997, 0.0, -0.001], [0.000666666666666667, 0.0, -0.001], [0.0006933333333333333, 0.0, -0.001], [0.0007199999999999997, 0.0, -0.001], [0.0007466666666666671, 0.0, -0.001], [0.0007733333333333334, 0.0, -0.001], [0.0007999999999999998, 0.0, -0.001], [0.0008266666666666671, 0.0, -0.001], [0.0008533333333333335, 0.0, -0.001], [0.0008799999999999999, 0.0, -0.001], [0.0009066666666666663, 0.0, -0.001], [0.0009333333333333335, 0.0, -0.001], [0.0009599999999999999, 0.0, -0.001], [0.0009866666666666663, 0.0, -0.001], [0.0010133333333333335, 0.0, -0.001], [0.0010400000000000001, 0.0, -0.001], [0.0010666666666666665, 0.0, -0.001], [0.0010933333333333337, 0.0, -0.001], [0.0011200000000000001, 0.0, -0.001], [0.0011466666666666665, 0.0, -0.001], [0.0011733333333333329, 0.0, -0.001], [0.0012000000000000001, 0.0, -0.001], [0.0012266666666666665, 0.0, -0.001], [0.0012533333333333329, 0.0, -0.001], [0.0012800000000000003, 0.0, -0.001], [0.0013066666666666667, 0.0, -0.001], [0.001333333333333333, 0.0, -0.001], [0.0013600000000000003, 0.0, -0.001], [0.0013866666666666667, 0.0, -0.001], [0.001413333333333333, 0.0, -0.001], [0.0014400000000000003, 0.0, -0.001], [0.0014666666666666667, 0.0, -0.001], [0.0014933333333333333, 0.0, -0.001], [0.0015199999999999997, 0.0, -0.001], [0.001546666666666667, 0.0, -0.001], [0.0015733333333333333, 0.0, -0.001], [0.0015999999999999996, 0.0, -0.001], [0.0016266666666666669, 0.0, -0.001], [0.0016533333333333333, 0.0, -0.001], [0.0016799999999999996, 0.0, -0.001], [0.001706666666666667, 0.0, -0.001], [0.0017333333333333335, 0.0, -0.001], [0.0017599999999999998, 0.0, -0.001], [0.001786666666666667, 0.0, -0.001], [0.0018133333333333335, 0.0, -0.001], [0.0018399999999999998, 0.0, -0.001], [0.0018666666666666662, 0.0, -0.001], [0.0018933333333333335, 0.0, -0.001], [0.0019199999999999998, 0.0, -0.001], [0.0019466666666666664, 0.0, -0.001], [0.0019733333333333334, 0.0, -0.001], [0.002, 0.0, -0.001], [0.002026666666666666, 0.0, -0.001], [0.0020533333333333337, 0.0, -0.001], [0.0020800000000000003, 0.0, -0.001], [0.0021066666666666664, 0.0, -0.001], [0.002133333333333334, 0.0, -0.001], [0.00216, 0.0, -0.001], [0.0021866666666666666, 0.0, -0.001], [0.0022133333333333328, 0.0, -0.001], [0.0022400000000000002, 0.0, -0.001], [0.0022666666666666664, 0.0, -0.001], [0.002293333333333333, 0.0, -0.001], [0.0023200000000000004, 0.0, -0.001], [0.0023466666666666666, 0.0, -0.001], [0.002373333333333333, 0.0, -0.001], [0.0024000000000000002, 0.0, -0.001], [0.002426666666666667, 0.0, -0.001], [0.002453333333333333, 0.0, -0.001], [0.0024800000000000004, 0.0, -0.001], [0.002506666666666667, 0.0, -0.001], [0.002533333333333333, 0.0, -0.001], [0.0025599999999999998, 0.0, -0.001], [0.002586666666666667, 0.0, -0.001], [0.0026133333333333334, 0.0, -0.001], [0.0026399999999999996, 0.0, -0.001], [0.002666666666666667, 0.0, -0.001], [0.002693333333333333, 0.0, -0.001], [0.0027199999999999998, 0.0, -0.001], [0.0027466666666666672, 0.0, -0.001], [0.0027733333333333334, 0.0, -0.001], [0.0028, 0.0, -0.001], [0.002826666666666667, 0.0, -0.001], [0.0028533333333333336, 0.0, -0.001], [0.0028799999999999997, 0.0, -0.001], [0.0029066666666666663, 0.0, -0.001], [0.0029333333333333334, 0.0, -0.001], [0.00296, 0.0, -0.001], [0.0029866666666666665, 0.0, -0.001], [0.0030133333333333336, 0.0, -0.001], [0.00304, 0.0, -0.001], [0.0030666666666666663, 0.0, -0.001], [0.003093333333333334, 0.0, -0.001], [0.00312, 0.0, -0.001], [0.0031466666666666665, 0.0, -0.001], [0.0031733333333333327, 0.0, -0.001], [0.0032, 0.0, -0.001], [0.0032266666666666667, 0.0, -0.001], [0.003253333333333333, 0.0, -0.001], [0.0032800000000000004, 0.0, -0.001], [0.0033066666666666665, 0.0, -0.001], [0.003333333333333333, 0.0, -0.001], [0.00336, 0.0, -0.001], [0.0033866666666666667, 0.0, -0.001], [0.0034133333333333333, 0.0, -0.001], [0.0034400000000000003, 0.0, -0.001], [0.003466666666666667, 0.0, -0.001], [0.003493333333333333, 0.0, -0.001], [0.0035199999999999997, 0.0, -0.001], [0.0035466666666666667, 0.0, -0.001], [0.0035733333333333333, 0.0, -0.001], [0.0035999999999999995, 0.0, -0.001], [0.003626666666666667, 0.0, -0.001], [0.0036533333333333335, 0.0, -0.001], [0.0036799999999999997, 0.0, -0.001], [0.003706666666666667, 0.0, -0.001], [0.0037333333333333333, 0.0, -0.001], [0.00376, 0.0, -0.001], [0.003786666666666667, 0.0, -0.001], [0.0038133333333333335, 0.0, -0.001], [0.0038399999999999997, 0.0, -0.001], [0.0038666666666666663, 0.0, -0.001], [0.0038933333333333337, 0.0, -0.001], [0.00392, 0.0, -0.001], [0.003946666666666666, 0.0, -0.001], [0.003973333333333334, 0.0, -0.001], [0.004, 0.0, -0.001]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}], "results": [{"computation": "FEM (ANSYS)", "field": "B", "kwargs": {"sources": [2198425521360], "sensors": [2198425447008], "sumup": false, "pixel_agg": null, "squeeze": true, "output": "dataframe"}, "order": ["source", "path", "sensor", "pixel", "value"], "value": {"Bx": [0.0060501993604089, 0.0061960455797802, 0.0063391508126054, 0.006486617629132699, 0.0066360740011114, 0.0067796264505833, 0.0069289956975891, 0.0070861862125071, 0.0072548717372922, 0.0074444338378504, 0.0076378140713782, 0.0078455227396759, 0.0080721725674173, 0.0083075602265602, 0.0085684318384397, 0.0088284983431987, 0.0091260653956796, 0.0094224697396957, 0.0097472960087496, 0.0100737608343403, 0.0104320206627321, 0.010804308997221, 0.0111945813055182, 0.0116006936333319, 0.0120310981858663, 0.0124750035295116, 0.0129379332603624, 0.0134349930841049, 0.013941202400874302, 0.0144909599359248, 0.0150383897483038, 0.0156452922960432, 0.0162566372572966, 0.0169203227793888, 0.0175980149556054, 0.0183228192892889, 0.0190812870352792, 0.0198506654674769, 0.020692793607858, 0.0215517514218727, 0.0224473380490659, 0.0233851283331473, 0.0243628750695844, 0.0254008820409711, 0.0265260114770658, 0.0275586282508723, 0.0287737980885236, 0.0300128495565023, 0.0312895371487907, 0.0326016230273246, 0.0339705709194694, 0.035411266080879, 0.0368410071386007, 0.0383806920744169, 0.0399495499114504, 0.0415249511841092, 0.0431508606071014, 0.0448536270959897, 0.0466382080628879, 0.0482154576635795, 0.0499945702086684, 0.0517249027827736, 0.0534631349207278, 0.055001580249267, 0.0565918387131236, 0.0580163570026835, 0.0593440518223433, 0.060633687452119, 0.0616803217832849, 0.0626552517212926, 0.0632703899052487, 0.0637108482874222, 0.063743181065586, 0.0636960630444481, 0.063290296879369, 0.0627287252854222, 0.06161476932503869, 0.0605154433723455, 0.0587684167062932, 0.0569630049719656, 0.0547440038069035, 0.0525107813657837, 0.0499109030147293, 0.0472215751082189, 0.0443517677677627, 0.0412550055472719, 0.0380679873393383, 0.0347600159848767, 0.031459151886879, 0.0281201385967537, 0.0245029539684833, 0.0210255732394143, 0.0174960158738058, 0.0139154625363823, 0.0104579661122173, 0.0068352553722182, 0.0033554221023146995, -0.0002250347349626, -0.0035791975981192, -0.0070589141072154, -0.0104427189522744, -0.0137786439410148, -0.016926327764649, -0.0200385407612656, -0.0230379653275292, -0.0259124955889523, -0.0284725756215064, -0.0310194447656001, -0.0332231032667708, -0.0352490237673048, -0.0367769834100979, -0.038164423082138, -0.0393413234546642, -0.0402323239583176, -0.0408288077917225, -0.0412048577978514, -0.0414238435062318, -0.041258318758239, -0.040975912332047, -0.0404093175237935, -0.0399692506301701, -0.0388295233195785, -0.0378247052137281, -0.0367790626389605, -0.0357776322711188, -0.034703337982531, -0.0335878682158573, -0.0324926934173076, -0.0317666031939196, -0.0307953762852025, -0.0300071883730073, -0.0292518925051306, -0.0286923874076531, -0.028157334380888303, -0.0278671822503085, -0.0275654764206188, -0.0277249836650796, -0.0277778737944747, -0.0280611365585564, -0.0283969865820417, -0.028911444001461804, -0.0295035906015935, -0.0303665852163719, -0.0313895971618548, -0.0325630094302637, -0.0335661416106682, -0.034667735913897, -0.0357956690250596, -0.036896457783381, -0.0380114568606236, -0.0391925225026004, -0.0399884972825701, -0.0409611578517079, -0.0416859515708573, -0.0422391689977416, -0.042794298256976, -0.0431044735120447, -0.0432139035848613, -0.0431867388043679, -0.0430523631029081, -0.0427583984134921, -0.0423447057291149, -0.0417602310464419, -0.041149791407033, -0.0403886139069589, -0.0396405637302733, -0.0386417273249432, -0.0376632797605967, -0.0366206800466347, -0.0355637894837793, -0.0344686090782429, -0.0333634087961361, -0.032234219003949, -0.0310434828769092, -0.0298851447941885, -0.028786552434139304, -0.027671160123108, -0.0265495012697285, -0.0254603354456982, -0.0244022676907089, -0.0233523513456414, -0.0223238143806603, -0.0213194019889709, -0.0203766984928523, -0.019443228457924, -0.0185816913529778, -0.0176879495585996, -0.0169200428797812, -0.0160622324561004, -0.0152772141996421, -0.0145322864930298, -0.0137822872230893, -0.0131357952316468, -0.012451975550862, -0.0117752318714405, -0.0111124973687814, -0.0105607828675903, -0.0099837906032737, -0.0094232085482353, -0.0089025667070211, -0.0084151761217117, -0.0079108712975156, -0.0074160610431683, -0.0069421521122613, -0.0064880116068857, -0.0060802439210264, -0.0056914323239349, -0.0053420867159564, -0.0049922479532459, -0.0046623542676896, -0.0043282060452068, -0.0039875887925116, -0.00369420861429, -0.0034337217209112, -0.0032253265639805, -0.0030118631509885, -0.0027617533699095, -0.0026456440592116, -0.0024664718851732, -0.0022884452321962, -0.0021666767247677, -0.001999311387402, -0.001841782895251, -0.0017078334071054, -0.001546071500985, -0.0014230998313021, -0.0012617240142967, -0.0010603010108451, -0.0009750067224797, -0.0008087760913422, -0.000686454603793, -0.0006250633637773, -0.0005085943434571, -0.0004391816902721, -0.0003127219591757, -0.0002373172230562, -0.0001356032694689, -8.78523739553835e-05, -4.82454193622267e-07, 6.49358118721259e-05, 9.52792025734885e-05, 0.0002055585221957, 0.0002546591981924, 0.0002803879777741, 0.0003094084470754, 0.0003235738646996, 0.0003107920893562, 0.0003439853618193, 0.0003820083140724, 0.0003834618969273, 0.0003815404626565, 0.0003837815253919, 0.0003853919998573, 0.0003838053179039, 0.0003878198084254, 0.0003927980156716, 0.0003966633000667, 0.0004034265972848, 0.0004092164996212, 0.0004126185946492, 0.0004095672323976, 0.0004077361982438, 0.0004104266367575, 0.000414641389836, 0.0004105464398481, 0.0004169337998321, 0.0004058105727938, 0.0004164667054553, 0.0004151401029977, 0.0004136962422635, 0.0004105479615716, 0.0004108948972354, 0.0004110523202815, 0.000408349675669, 0.0004063920098184, 0.000405752606153, 0.0004060326811698, 0.0004065790593484, 0.000411343809611, 0.0004124462463604, 0.0004102036338995, 0.0004084284760454, 0.0004098693765882, 0.0004054000615738, 0.0004054502825511, 0.0004053382453649, 0.0004074498013729, 0.0004092066240853, 0.0004118412286571, 0.0004164815835016, 0.0004174214065251, 0.0004203462277796, 0.0004240502601043, 0.00042664434121, 0.0004235660313317, 0.0004233139902501, 0.0004254981927435, 0.0003995535614148, 0.0003816847697257, 0.0003100705341536, 0.000244053117834], "By": [-0.0005243082361124, -0.0004874360341332, -0.0004202239310791, -0.0003937288666377, -0.0003723770366365, -0.0003750749397166, -0.0003773957705386, -0.0003836690560325, -0.0003929733063248, -0.0004044867834609, -0.0004148210899216, -0.0004245533709691, -0.0004402176490366, -0.0004501689224327, -0.0004606836256717, -0.0004673070982811, -0.0004760123248258, -0.0004853098909329, -0.0004929104409827, -0.000513577847274, -0.0005207937656792, -0.0005235024238702, -0.0005387961268642, -0.0005500630626079, -0.0005566484627682, -0.0005616358278106, -0.0005585265240258, -0.0005774411074652, -0.0005907745643605, -0.0006009189161926, -0.0006163023377177, -0.0006236414199406, -0.0006364067139477, -0.0006435850244337, -0.0006519265716606, -0.0006557717232017, -0.0006565125289595, -0.0006568147953313, -0.0006787114086518, -0.0006925683640457, -0.0007044454981057, -0.0007157670796069, -0.000733022977573, -0.0007518412734503, -0.0007646606426349, -0.0007667459151289, -0.0007745017131341, -0.0007975665164909999, -0.0008095303017768, -0.0007712153788468, -0.0008165320982256, -0.000838407212312, -0.0008121981568108, -0.0007858872462343, -0.000843980287421, -0.0008520772856133, -0.0008331957570468, -0.0008886368827564, -0.0008809713881873, -0.0009860446987075, -0.0009820297051088, -0.0009720619781352, -0.0010509229630675, -0.001004422295767, -0.0009411990485862, -0.0010512431223795, -0.001026131151557, -0.0010321167613331, -0.0010296253474704, -0.0010649436682579, -0.0011180818752334, -0.0011725618974236, -0.0012209935820897, -0.0012523873278643, -0.0012451642777704, -0.0012785136105481, -0.0012295904506717, -0.001293405988895, -0.001386977051847, -0.0013119265891815, -0.0013207579458939, -0.0013885287607438, -0.0013823854634311, -0.0013985731698268, -0.0014470811960126, -0.0015470789051096, -0.0015757480156520002, -0.0016999937260336, -0.0017037919711221, -0.0016628980551130997, -0.0016938299212833, -0.0017009707310498, -0.0016707911703556003, -0.001737198644993, -0.0018335170001935, -0.0018218017821842, -0.0019251681178373, -0.002047320632672, -0.0021087817250902, -0.0020774400517616, -0.0020854450024072, -0.0021467192685315, -0.0021025968174404, -0.0021900851039974, -0.0023150966272546996, -0.0024656671454541994, -0.0024360754773129, -0.0025090987186587, -0.0025039233962752, -0.0025455289764461, -0.00256484931712, -0.002593432902942, -0.0027031731499456, -0.0026593296428674, -0.0028404844624294, -0.0029005130407287, -0.0030852605841332, -0.0031770497491099, -0.0032445661160913, -0.0032918562825477, -0.0032255065215415, -0.0033633666582039, -0.0034970095126188, -0.0036415012286982, -0.0037807602601636, -0.0038512295518288, -0.0038775944252875, -0.0040554418093164, -0.0041017407242711, -0.0042690013147797, -0.0043872448808131, -0.0044444948468331, -0.0045606350047286, -0.0046799128623975, -0.0047936845645035, -0.0048806500439178, -0.0050993274540947, -0.0052106110595723, -0.0053827121396587, -0.0055552526138804, -0.0057820801960689, -0.0059019119149594, -0.0060875244064157, -0.0061856555484602, -0.0065134387338085, -0.0067520230539292, -0.0069678199498934, -0.0071595345083408, -0.0074129977178737, -0.0076456006743688, -0.0078335967339282, -0.0081406455977088, -0.0084502893245693, -0.0086836562131214, -0.0090616552434131, -0.0093329243613616, -0.0096333048573522, -0.0099801332740945, -0.0103204802097373, -0.0106876816335318, -0.0110901032093984, -0.0114824559191466, -0.0119246980529752, -0.0124097273123793, -0.0128873851781913, -0.0134030495218799, -0.0138368604548703, -0.014379020521715098, -0.0148923823750797, -0.0154550284208255, -0.0160642169291935, -0.0166888659409875, -0.0173135861899678, -0.0179934534719258, -0.0186324305659162, -0.0193437284944329, -0.0201181247312538, -0.0208429529278879, -0.0216042033483516, -0.0223799255727763, -0.0231774747881989, -0.0240064491253784, -0.024832838597441, -0.0256447854204169, -0.0265287627148285, -0.0273914148318293, -0.0282405559678402, -0.0290674960832271, -0.0298833776392363, -0.0308112518580688, -0.0315698092483277, -0.0323528790319386, -0.0331656767076667, -0.0339386270609323, -0.0346323876722761, -0.0353082188058609, -0.0359195770445978, -0.03650562377278439, -0.0370520356083508, -0.0375939730369776, -0.0381187205672112, -0.0384776678840271, -0.038905123520838, -0.0392623019294073, -0.0395104965715352, -0.0397583955753741, -0.0399803085154466, -0.0401091538663927, -0.0402417760179696, -0.0403507288978079, -0.0404082630749706, -0.0403199875655881, -0.0402118258353868, -0.0401180933062995, -0.0400080993119532, -0.0398153077744236, -0.0396501390808234, -0.0393854497382681, -0.0390285622546562, -0.0386851679199569, -0.0382419012466508, -0.0377379896116533, -0.0371243846128568, -0.0366553821496583, -0.0360812686935659, -0.0353719518334862, -0.0347139837997007, -0.0339377551423899, -0.0333175822910445, -0.0325953528885584, -0.031750960559658, -0.0310112452410713, -0.0301978683965782, -0.0293723911217037, -0.0285308484164408, -0.0275310131111914, -0.0267797660446588, -0.0258258714016904, -0.0250745567775429, -0.0242745432529421, -0.0234490826046038, -0.0226905950700141, -0.0219107452959077, -0.0211719396886091, -0.020433886069021, -0.0197293397253805, -0.0190344247771912, -0.0183351380340073, -0.0176942467122898, -0.0170737301312238, -0.0164873004965426, -0.015929621431456, -0.0153423839243842, -0.0148140292220104, -0.0142965274932951, -0.0138015171730021, -0.0133245292512468, -0.0128372485102249, -0.0124198688473264, -0.0120041913408443, -0.0115970068107961, -0.0112055921864188, -0.0108405215853174, -0.010479725342792, -0.0101367177318699, -0.0098113908758087, -0.0094725804106811, -0.0091865215785893, -0.008896595960832, -0.0086133221493433, -0.0083425258785154, -0.0080764796291813, -0.0078217152785053, -0.0075877108984916, -0.0073533223339897, -0.0071288039009239, -0.006913779253384601, -0.0067085127293717, -0.0065088597199027, -0.0063053431209402, -0.0061232800163526, -0.0059424386468404, -0.0057667269766548, -0.0055971132032239, -0.0054357675239379, -0.0052807920836265, -0.0051301308310576, -0.0049807025328593, -0.0048400625454501, -0.0046997980862858, -0.0045649891822894, -0.0044302107164173, -0.004300433687863, -0.0041708632120634, -0.004041245216156, -0.0039118654533822, -0.0037828926969786, -0.0036354745674672, -0.0034746818935180997, -0.0033085461624024, -0.0031412983315985], "Bz": [-0.0021476660825547, -0.0021139312207257, -0.0021173960562739, -0.0021432448425252, -0.0021500974733329, -0.002176358161247, -0.0021982073899772, -0.0022192825189731, -0.0022391149218501, -0.0022561667793098, -0.0022785596328279, -0.0022956815976052, -0.0023096563358988, -0.0023254240714911, -0.0023354017972169, -0.002346598032302, -0.0023500863608843, -0.0023549038139767, -0.0023551373317092, -0.00235113902351, -0.0023279718857962, -0.0023093230189962, -0.0022822227862692, -0.0022489412380799, -0.0022156959575384, -0.0021673115226191, -0.0021148820275504005, -0.002062927885757, -0.0019881549712739, -0.001899522385175, -0.0017907446631726, -0.0016838718729075, -0.0015441871895287, -0.0013963666824493, -0.0012255871816717, -0.0010358891269572, -0.0008166053203563, -0.000576242343727, -0.0002957738065026, -6.066230390753361e-06, 0.0003355002592819999, 0.0006882290504902, 0.0010982440367509, 0.0015660044639044, 0.002048948081389, 0.0026184839921332, 0.0032599595760909, 0.0039468838881214, 0.0047082520044591, 0.0055806686010266, 0.0064416714509416, 0.0074189538445185, 0.008564863275654, 0.0097523485091456, 0.0110658918660288, 0.012514819894443, 0.0140287016673139, 0.0158354679822987, 0.0177276683524487, 0.0197071397843536, 0.0218463335086567, 0.0243243397135338, 0.0269504749497411, 0.0297302755663066, 0.0326097381206388, 0.0358967178221094, 0.0393047640969182, 0.0427531210061324, 0.0464607652604951, 0.050607075645921, 0.0548580917491997, 0.0590658499320646, 0.0632915659219484, 0.0677180520024475, 0.0721730272328487, 0.0767377775969636, 0.0812595903892174, 0.0857138209996389, 0.0899943648931739, 0.0939401701801069, 0.0978456174347168, 0.101723900875655, 0.105307781763735, 0.108556905052361, 0.111579625974777, 0.114454619681308, 0.11712707959411, 0.119269656728968, 0.12123751852227502, 0.123143663944393, 0.124589237420046, 0.125713310139575, 0.126761884375638, 0.127401778276971, 0.12793449242797, 0.128140347805618, 0.12814341262424198, 0.127841017697639, 0.127310676740725, 0.126459244372673, 0.125274519605816, 0.123966046949053, 0.122448881527181, 0.120697483732819, 0.118683606842647, 0.116352484232328, 0.113693758014202, 0.111113739039898, 0.108065105853922, 0.104862442276066, 0.101598156885755, 0.0982700106760541, 0.0950786589755292, 0.0917105880793272, 0.0883269584658427, 0.0848214051774033, 0.0816073476098778, 0.0784371547902747, 0.07541528598209, 0.0725369992925542, 0.0700193251549834, 0.06755073506202168, 0.0653555252641746, 0.0633296833199055, 0.0616072262375444, 0.0599853971658741, 0.0585634320280162, 0.0575601723162545, 0.0566039148142317, 0.055636283145089, 0.0548494582892488, 0.054225765904419, 0.0538506757881947, 0.05353285699527, 0.0533325264238925, 0.0531789947811233, 0.0530681902949093, 0.0528940982552945, 0.0526676160358988, 0.0524480322356195, 0.0523073048337372, 0.0520475351200664, 0.0517251728043623, 0.0512777783346538, 0.0505147814699133, 0.0496793017958337, 0.048722432107168, 0.0475572050917, 0.0462176052573156, 0.0446700258106467, 0.0429552786843864, 0.0411938153968086, 0.0392658406747446, 0.0371704950874437, 0.0349789086381314, 0.0327432833490317, 0.0303674324526308, 0.0280648948627946, 0.0256850220901617, 0.0234099201454459, 0.021153273312558, 0.0188852545361383, 0.0166478849276344, 0.0145501273399731, 0.0125718998583212, 0.0106098954084227, 0.0087723936489454, 0.0070295323072966, 0.0053748534548557, 0.0038600263117354, 0.0024898199302268, 0.001135537115614, -7.02899101530523e-05, -0.0012210375310891, -0.0022627161503321, -0.0032413096453089, -0.0040944608149504, -0.0048125045874567, -0.0055358286709107, -0.0062152096273556, -0.0067600439222383, -0.0073151004479998, -0.0077691557601359, -0.008150415173407201, -0.0084588507041001, -0.0087311041904343, -0.0090387663400352, -0.0092695034676187, -0.009540381340750598, -0.0097089604586216, -0.0098222533198364, -0.0099047779034045, -0.0100060062324221, -0.0101954716578734, -0.0101768762383079, -0.0101246790724059, -0.0102117440556606, -0.0102277044302123, -0.0102073218304291, -0.0101761199431807, -0.010188299395246198, -0.0100256279055118, -0.0099397831797636, -0.0098913753865206, -0.0098011463403645, -0.0097244149561595, -0.0095909732519628, -0.0094671096715263, -0.0093071214094665, -0.009141010083528, -0.0089315316390084, -0.0088059179672719, -0.0086460341238671, -0.0084846466930992, -0.008353754689418, -0.008217309226689, -0.0080959517692566, -0.0079318405224384, -0.0077424085620376, -0.0076848488970204, -0.0075816560843038, -0.0074511814684548, -0.0072925238180541, -0.0071943473118654, -0.0071378510547529, -0.0069475945058822, -0.0068643371677903, -0.0067329097329515, -0.0066320227164571, -0.006500041828816, -0.0063683867968801, -0.0062050383908802, -0.0059783115975843, -0.0058361723169241, -0.0057457067851953, -0.0056332132908871, -0.0054926134850903, -0.005361151686242, -0.005197221627078899, -0.0050331087404526, -0.0048584863276329, -0.0047541131286311, -0.0046179673691045, -0.0044780146538008, -0.0043476415397705, -0.0041966196705595, -0.0040947736724188, -0.0039954178425374, -0.0038307467734199, -0.0037451245333189, -0.0036548871132092, -0.0035560817198803, -0.0034621308344047, -0.0033638451008218, -0.0032776704197337, -0.0032036535012461, -0.0031191455551665, -0.0030666465456446, -0.0029782733349956, -0.0028894360072431, -0.0027981314380252, -0.0027503193866847, -0.0026912452728733, -0.0026309126292187, -0.0025696395011161, -0.0025117141460436, -0.0024699627573707, -0.0023981722304747, -0.0023500804930251, -0.0022984162741856, -0.0022441445445612, -0.002194734220697, -0.0021472147619665998, -0.002100754235474, -0.0020554485094611, -0.0020113053507174, -0.0019685085712158, -0.0019248932008372, -0.0018871823633325, -0.0018465775697986, -0.0018051163456156, -0.0017644254918345, -0.0017243213010566, -0.0016878410793593, -0.0016518462507259, -0.0016162604067557, -0.0015816266076767, -0.0015477762817821, -0.0015149679178718, -0.0014808689753616, -0.0014471384158383, -0.0014140433852588, -0.0013811700216266, -0.0013474880610883, -0.00131220082885, -0.0012761708909457, -0.0012382508896249, -0.0011796512891943, -0.0011052264248527003, -0.0009972637250282, -0.0008874519168298]}, "unit": "T"}]} \ No newline at end of file +{"setup": [{"id": 2198425521360, "type": "Collection", "position": {"value": [0.0, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "No demag", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "children": [{"id": 2197862031424, "type": "Cuboid", "position": {"value": [-0.0015, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=0.3", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.3}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 1.0], "unit": "T"}}, {"id": 2198425551248, "type": "Cuboid", "position": {"value": [0.0, 0.0, 0.0002], "unit": "m"}, "orientation": {"value": [[0.7071067811865475, -0.0, -0.7071067811865476], [0.0, 1.0, -0.0], [0.7071067811865476, 0.0, 0.7071067811865475]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=1.0", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 1.0}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.9, 0.0, 0.0], "unit": "T"}}, {"id": 2198425521744, "type": "Cuboid", "position": {"value": [0.0016, 0.0, 0.0005], "unit": "m"}, "orientation": {"value": [[0.8660254037844387, -0.49999999999999994, 0.0], [0.49999999999999994, 0.8660254037844387, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Cuboid, susceptibility=0.5", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.5}, "dimension": {"value": [0.001, 0.001, 0.002], "unit": "m"}, "polarization": {"value": [0.29999999999999993, 0.5196152422706632, 0.0], "unit": "T"}}]}, {"id": 2198425447008, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.001], [-0.003973333333333333, 0.0, -0.001], [-0.003946666666666667, 0.0, -0.001], [-0.00392, 0.0, -0.001], [-0.0038933333333333337, 0.0, -0.001], [-0.0038666666666666667, 0.0, -0.001], [-0.0038399999999999997, 0.0, -0.001], [-0.0038133333333333335, 0.0, -0.001], [-0.0037866666666666665, 0.0, -0.001], [-0.00376, 0.0, -0.001], [-0.0037333333333333333, 0.0, -0.001], [-0.0037066666666666667, 0.0, -0.001], [-0.00368, 0.0, -0.001], [-0.0036533333333333335, 0.0, -0.001], [-0.0036266666666666665, 0.0, -0.001], [-0.0036, 0.0, -0.001], [-0.0035733333333333333, 0.0, -0.001], [-0.0035466666666666667, 0.0, -0.001], [-0.00352, 0.0, -0.001], [-0.003493333333333333, 0.0, -0.001], [-0.003466666666666667, 0.0, -0.001], [-0.00344, 0.0, -0.001], [-0.0034133333333333333, 0.0, -0.001], [-0.0033866666666666667, 0.0, -0.001], [-0.0033599999999999997, 0.0, -0.001], [-0.0033333333333333335, 0.0, -0.001], [-0.0033066666666666665, 0.0, -0.001], [-0.0032800000000000004, 0.0, -0.001], [-0.0032533333333333333, 0.0, -0.001], [-0.0032266666666666667, 0.0, -0.001], [-0.0032, 0.0, -0.001], [-0.003173333333333333, 0.0, -0.001], [-0.0031466666666666665, 0.0, -0.001], [-0.00312, 0.0, -0.001], [-0.0030933333333333334, 0.0, -0.001], [-0.0030666666666666663, 0.0, -0.001], [-0.00304, 0.0, -0.001], [-0.003013333333333333, 0.0, -0.001], [-0.0029866666666666665, 0.0, -0.001], [-0.00296, 0.0, -0.001], [-0.0029333333333333334, 0.0, -0.001], [-0.0029066666666666668, 0.0, -0.001], [-0.0028799999999999997, 0.0, -0.001], [-0.0028533333333333336, 0.0, -0.001], [-0.0028266666666666666, 0.0, -0.001], [-0.0028, 0.0, -0.001], [-0.0027733333333333334, 0.0, -0.001], [-0.002746666666666667, 0.0, -0.001], [-0.0027199999999999998, 0.0, -0.001], [-0.002693333333333333, 0.0, -0.001], [-0.002666666666666667, 0.0, -0.001], [-0.0026399999999999996, 0.0, -0.001], [-0.0026133333333333334, 0.0, -0.001], [-0.002586666666666667, 0.0, -0.001], [-0.00256, 0.0, -0.001], [-0.002533333333333333, 0.0, -0.001], [-0.002506666666666667, 0.0, -0.001], [-0.00248, 0.0, -0.001], [-0.002453333333333333, 0.0, -0.001], [-0.002426666666666667, 0.0, -0.001], [-0.0024, 0.0, -0.001], [-0.002373333333333333, 0.0, -0.001], [-0.0023466666666666666, 0.0, -0.001], [-0.0023200000000000004, 0.0, -0.001], [-0.002293333333333333, 0.0, -0.001], [-0.0022666666666666664, 0.0, -0.001], [-0.0022400000000000002, 0.0, -0.001], [-0.002213333333333333, 0.0, -0.001], [-0.0021866666666666666, 0.0, -0.001], [-0.00216, 0.0, -0.001], [-0.0021333333333333334, 0.0, -0.001], [-0.0021066666666666664, 0.0, -0.001], [-0.0020800000000000003, 0.0, -0.001], [-0.0020533333333333332, 0.0, -0.001], [-0.002026666666666666, 0.0, -0.001], [-0.002, 0.0, -0.001], [-0.001973333333333333, 0.0, -0.001], [-0.0019466666666666669, 0.0, -0.001], [-0.0019199999999999998, 0.0, -0.001], [-0.0018933333333333335, 0.0, -0.001], [-0.0018666666666666666, 0.0, -0.001], [-0.0018399999999999998, 0.0, -0.001], [-0.0018133333333333335, 0.0, -0.001], [-0.0017866666666666667, 0.0, -0.001], [-0.0017599999999999998, 0.0, -0.001], [-0.0017333333333333335, 0.0, -0.001], [-0.0017066666666666667, 0.0, -0.001], [-0.00168, 0.0, -0.001], [-0.0016533333333333333, 0.0, -0.001], [-0.0016266666666666665, 0.0, -0.001], [-0.0016, 0.0, -0.001], [-0.0015733333333333333, 0.0, -0.001], [-0.001546666666666667, 0.0, -0.001], [-0.00152, 0.0, -0.001], [-0.0014933333333333333, 0.0, -0.001], [-0.0014666666666666667, 0.0, -0.001], [-0.0014399999999999999, 0.0, -0.001], [-0.0014133333333333335, 0.0, -0.001], [-0.0013866666666666667, 0.0, -0.001], [-0.0013599999999999999, 0.0, -0.001], [-0.0013333333333333335, 0.0, -0.001], [-0.0013066666666666667, 0.0, -0.001], [-0.0012799999999999999, 0.0, -0.001], [-0.0012533333333333335, 0.0, -0.001], [-0.0012266666666666665, 0.0, -0.001], [-0.0012000000000000001, 0.0, -0.001], [-0.0011733333333333333, 0.0, -0.001], [-0.0011466666666666665, 0.0, -0.001], [-0.0011200000000000001, 0.0, -0.001], [-0.0010933333333333333, 0.0, -0.001], [-0.001066666666666667, 0.0, -0.001], [-0.0010400000000000001, 0.0, -0.001], [-0.001013333333333333, 0.0, -0.001], [-0.0009866666666666667, 0.0, -0.001], [-0.0009599999999999999, 0.0, -0.001], [-0.0009333333333333331, 0.0, -0.001], [-0.0009066666666666667, 0.0, -0.001], [-0.0008799999999999999, 0.0, -0.001], [-0.0008533333333333335, 0.0, -0.001], [-0.0008266666666666666, 0.0, -0.001], [-0.0007999999999999998, 0.0, -0.001], [-0.0007733333333333334, 0.0, -0.001], [-0.0007466666666666666, 0.0, -0.001], [-0.0007200000000000002, 0.0, -0.001], [-0.0006933333333333333, 0.0, -0.001], [-0.0006666666666666665, 0.0, -0.001], [-0.0006400000000000002, 0.0, -0.001], [-0.0006133333333333332, 0.0, -0.001], [-0.0005866666666666664, 0.0, -0.001], [-0.0005600000000000001, 0.0, -0.001], [-0.0005333333333333333, 0.0, -0.001], [-0.0005066666666666668, 0.0, -0.001], [-0.00047999999999999996, 0.0, -0.001], [-0.00045333333333333315, 0.0, -0.001], [-0.0004266666666666668, 0.0, -0.001], [-0.0003999999999999999, 0.0, -0.001], [-0.00037333333333333354, 0.0, -0.001], [-0.00034666666666666667, 0.0, -0.001], [-0.00031999999999999986, 0.0, -0.001], [-0.00029333333333333343, 0.0, -0.001], [-0.0002666666666666666, 0.0, -0.001], [-0.00024000000000000022, 0.0, -0.001], [-0.0002133333333333334, 0.0, -0.001], [-0.00018666666666666652, 0.0, -0.001], [-0.00016000000000000015, 0.0, -0.001], [-0.0001333333333333333, 0.0, -0.001], [-0.00010666666666666646, 0.0, -0.001], [-8.000000000000007e-05, 0.0, -0.001], [-5.333333333333323e-05, 0.0, -0.001], [-2.666666666666684e-05, 0.0, -0.001], [0.0, 0.0, -0.001], [2.6666666666666396e-05, 0.0, -0.001], [5.333333333333368e-05, 0.0, -0.001], [8.000000000000007e-05, 0.0, -0.001], [0.00010666666666666646, 0.0, -0.001], [0.00013333333333333375, 0.0, -0.001], [0.00016000000000000015, 0.0, -0.001], [0.00018666666666666652, 0.0, -0.001], [0.00021333333333333293, 0.0, -0.001], [0.00024000000000000022, 0.0, -0.001], [0.0002666666666666666, 0.0, -0.001], [0.000293333333333333, 0.0, -0.001], [0.0003200000000000003, 0.0, -0.001], [0.00034666666666666667, 0.0, -0.001], [0.00037333333333333305, 0.0, -0.001], [0.00040000000000000034, 0.0, -0.001], [0.0004266666666666668, 0.0, -0.001], [0.00045333333333333315, 0.0, -0.001], [0.00048000000000000045, 0.0, -0.001], [0.0005066666666666668, 0.0, -0.001], [0.0005333333333333333, 0.0, -0.001], [0.0005599999999999996, 0.0, -0.001], [0.0005866666666666669, 0.0, -0.001], [0.0006133333333333332, 0.0, -0.001], [0.0006399999999999997, 0.0, -0.001], [0.000666666666666667, 0.0, -0.001], [0.0006933333333333333, 0.0, -0.001], [0.0007199999999999997, 0.0, -0.001], [0.0007466666666666671, 0.0, -0.001], [0.0007733333333333334, 0.0, -0.001], [0.0007999999999999998, 0.0, -0.001], [0.0008266666666666671, 0.0, -0.001], [0.0008533333333333335, 0.0, -0.001], [0.0008799999999999999, 0.0, -0.001], [0.0009066666666666663, 0.0, -0.001], [0.0009333333333333335, 0.0, -0.001], [0.0009599999999999999, 0.0, -0.001], [0.0009866666666666663, 0.0, -0.001], [0.0010133333333333335, 0.0, -0.001], [0.0010400000000000001, 0.0, -0.001], [0.0010666666666666665, 0.0, -0.001], [0.0010933333333333337, 0.0, -0.001], [0.0011200000000000001, 0.0, -0.001], [0.0011466666666666665, 0.0, -0.001], [0.0011733333333333329, 0.0, -0.001], [0.0012000000000000001, 0.0, -0.001], [0.0012266666666666665, 0.0, -0.001], [0.0012533333333333329, 0.0, -0.001], [0.0012800000000000003, 0.0, -0.001], [0.0013066666666666667, 0.0, -0.001], [0.001333333333333333, 0.0, -0.001], [0.0013600000000000003, 0.0, -0.001], [0.0013866666666666667, 0.0, -0.001], [0.001413333333333333, 0.0, -0.001], [0.0014400000000000003, 0.0, -0.001], [0.0014666666666666667, 0.0, -0.001], [0.0014933333333333333, 0.0, -0.001], [0.0015199999999999997, 0.0, -0.001], [0.001546666666666667, 0.0, -0.001], [0.0015733333333333333, 0.0, -0.001], [0.0015999999999999996, 0.0, -0.001], [0.0016266666666666669, 0.0, -0.001], [0.0016533333333333333, 0.0, -0.001], [0.0016799999999999996, 0.0, -0.001], [0.001706666666666667, 0.0, -0.001], [0.0017333333333333335, 0.0, -0.001], [0.0017599999999999998, 0.0, -0.001], [0.001786666666666667, 0.0, -0.001], [0.0018133333333333335, 0.0, -0.001], [0.0018399999999999998, 0.0, -0.001], [0.0018666666666666662, 0.0, -0.001], [0.0018933333333333335, 0.0, -0.001], [0.0019199999999999998, 0.0, -0.001], [0.0019466666666666664, 0.0, -0.001], [0.0019733333333333334, 0.0, -0.001], [0.002, 0.0, -0.001], [0.002026666666666666, 0.0, -0.001], [0.0020533333333333337, 0.0, -0.001], [0.0020800000000000003, 0.0, -0.001], [0.0021066666666666664, 0.0, -0.001], [0.002133333333333334, 0.0, -0.001], [0.00216, 0.0, -0.001], [0.0021866666666666666, 0.0, -0.001], [0.0022133333333333328, 0.0, -0.001], [0.0022400000000000002, 0.0, -0.001], [0.0022666666666666664, 0.0, -0.001], [0.002293333333333333, 0.0, -0.001], [0.0023200000000000004, 0.0, -0.001], [0.0023466666666666666, 0.0, -0.001], [0.002373333333333333, 0.0, -0.001], [0.0024000000000000002, 0.0, -0.001], [0.002426666666666667, 0.0, -0.001], [0.002453333333333333, 0.0, -0.001], [0.0024800000000000004, 0.0, -0.001], [0.002506666666666667, 0.0, -0.001], [0.002533333333333333, 0.0, -0.001], [0.0025599999999999998, 0.0, -0.001], [0.002586666666666667, 0.0, -0.001], [0.0026133333333333334, 0.0, -0.001], [0.0026399999999999996, 0.0, -0.001], [0.002666666666666667, 0.0, -0.001], [0.002693333333333333, 0.0, -0.001], [0.0027199999999999998, 0.0, -0.001], [0.0027466666666666672, 0.0, -0.001], [0.0027733333333333334, 0.0, -0.001], [0.0028, 0.0, -0.001], [0.002826666666666667, 0.0, -0.001], [0.0028533333333333336, 0.0, -0.001], [0.0028799999999999997, 0.0, -0.001], [0.0029066666666666663, 0.0, -0.001], [0.0029333333333333334, 0.0, -0.001], [0.00296, 0.0, -0.001], [0.0029866666666666665, 0.0, -0.001], [0.0030133333333333336, 0.0, -0.001], [0.00304, 0.0, -0.001], [0.0030666666666666663, 0.0, -0.001], [0.003093333333333334, 0.0, -0.001], [0.00312, 0.0, -0.001], [0.0031466666666666665, 0.0, -0.001], [0.0031733333333333327, 0.0, -0.001], [0.0032, 0.0, -0.001], [0.0032266666666666667, 0.0, -0.001], [0.003253333333333333, 0.0, -0.001], [0.0032800000000000004, 0.0, -0.001], [0.0033066666666666665, 0.0, -0.001], [0.003333333333333333, 0.0, -0.001], [0.00336, 0.0, -0.001], [0.0033866666666666667, 0.0, -0.001], [0.0034133333333333333, 0.0, -0.001], [0.0034400000000000003, 0.0, -0.001], [0.003466666666666667, 0.0, -0.001], [0.003493333333333333, 0.0, -0.001], [0.0035199999999999997, 0.0, -0.001], [0.0035466666666666667, 0.0, -0.001], [0.0035733333333333333, 0.0, -0.001], [0.0035999999999999995, 0.0, -0.001], [0.003626666666666667, 0.0, -0.001], [0.0036533333333333335, 0.0, -0.001], [0.0036799999999999997, 0.0, -0.001], [0.003706666666666667, 0.0, -0.001], [0.0037333333333333333, 0.0, -0.001], [0.00376, 0.0, -0.001], [0.003786666666666667, 0.0, -0.001], [0.0038133333333333335, 0.0, -0.001], [0.0038399999999999997, 0.0, -0.001], [0.0038666666666666663, 0.0, -0.001], [0.0038933333333333337, 0.0, -0.001], [0.00392, 0.0, -0.001], [0.003946666666666666, 0.0, -0.001], [0.003973333333333334, 0.0, -0.001], [0.004, 0.0, -0.001]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}], "results": [{"computation": "FEM (ANSYS)", "field": "B", "kwargs": {"sources": [2198425521360], "sensors": [2198425447008], "sumup": false, "pixel_agg": null, "squeeze": true, "output": "dataframe"}, "order": ["source", "path", "sensor", "pixel", "value"], "value": {"Bx": [0.0060501993604089, 0.0061960455797802, 0.0063391508126054, 0.006486617629132699, 0.0066360740011114, 0.0067796264505833, 0.0069289956975891, 0.0070861862125071, 0.0072548717372922, 0.0074444338378504, 0.0076378140713782, 0.0078455227396759, 0.0080721725674173, 0.0083075602265602, 0.0085684318384397, 0.0088284983431987, 0.0091260653956796, 0.0094224697396957, 0.0097472960087496, 0.0100737608343403, 0.0104320206627321, 0.010804308997221, 0.0111945813055182, 0.0116006936333319, 0.0120310981858663, 0.0124750035295116, 0.0129379332603624, 0.0134349930841049, 0.013941202400874302, 0.0144909599359248, 0.0150383897483038, 0.0156452922960432, 0.0162566372572966, 0.0169203227793888, 0.0175980149556054, 0.0183228192892889, 0.0190812870352792, 0.0198506654674769, 0.020692793607858, 0.0215517514218727, 0.0224473380490659, 0.0233851283331473, 0.0243628750695844, 0.0254008820409711, 0.0265260114770658, 0.0275586282508723, 0.0287737980885236, 0.0300128495565023, 0.0312895371487907, 0.0326016230273246, 0.0339705709194694, 0.035411266080879, 0.0368410071386007, 0.0383806920744169, 0.0399495499114504, 0.0415249511841092, 0.0431508606071014, 0.0448536270959897, 0.0466382080628879, 0.0482154576635795, 0.0499945702086684, 0.0517249027827736, 0.0534631349207278, 0.055001580249267, 0.0565918387131236, 0.0580163570026835, 0.0593440518223433, 0.060633687452119, 0.0616803217832849, 0.0626552517212926, 0.0632703899052487, 0.0637108482874222, 0.063743181065586, 0.0636960630444481, 0.063290296879369, 0.0627287252854222, 0.06161476932503869, 0.0605154433723455, 0.0587684167062932, 0.0569630049719656, 0.0547440038069035, 0.0525107813657837, 0.0499109030147293, 0.0472215751082189, 0.0443517677677627, 0.0412550055472719, 0.0380679873393383, 0.0347600159848767, 0.031459151886879, 0.0281201385967537, 0.0245029539684833, 0.0210255732394143, 0.0174960158738058, 0.0139154625363823, 0.0104579661122173, 0.0068352553722182, 0.0033554221023146995, -0.0002250347349626, -0.0035791975981192, -0.0070589141072154, -0.0104427189522744, -0.0137786439410148, -0.016926327764649, -0.0200385407612656, -0.0230379653275292, -0.0259124955889523, -0.0284725756215064, -0.0310194447656001, -0.0332231032667708, -0.0352490237673048, -0.0367769834100979, -0.038164423082138, -0.0393413234546642, -0.0402323239583176, -0.0408288077917225, -0.0412048577978514, -0.0414238435062318, -0.041258318758239, -0.040975912332047, -0.0404093175237935, -0.0399692506301701, -0.0388295233195785, -0.0378247052137281, -0.0367790626389605, -0.0357776322711188, -0.034703337982531, -0.0335878682158573, -0.0324926934173076, -0.0317666031939196, -0.0307953762852025, -0.0300071883730073, -0.0292518925051306, -0.0286923874076531, -0.028157334380888303, -0.0278671822503085, -0.0275654764206188, -0.0277249836650796, -0.0277778737944747, -0.0280611365585564, -0.0283969865820417, -0.028911444001461804, -0.0295035906015935, -0.0303665852163719, -0.0313895971618548, -0.0325630094302637, -0.0335661416106682, -0.034667735913897, -0.0357956690250596, -0.036896457783381, -0.0380114568606236, -0.0391925225026004, -0.0399884972825701, -0.0409611578517079, -0.0416859515708573, -0.0422391689977416, -0.042794298256976, -0.0431044735120447, -0.0432139035848613, -0.0431867388043679, -0.0430523631029081, -0.0427583984134921, -0.0423447057291149, -0.0417602310464419, -0.041149791407033, -0.0403886139069589, -0.0396405637302733, -0.0386417273249432, -0.0376632797605967, -0.0366206800466347, -0.0355637894837793, -0.0344686090782429, -0.0333634087961361, -0.032234219003949, -0.0310434828769092, -0.0298851447941885, -0.028786552434139304, -0.027671160123108, -0.0265495012697285, -0.0254603354456982, -0.0244022676907089, -0.0233523513456414, -0.0223238143806603, -0.0213194019889709, -0.0203766984928523, -0.019443228457924, -0.0185816913529778, -0.0176879495585996, -0.0169200428797812, -0.0160622324561004, -0.0152772141996421, -0.0145322864930298, -0.0137822872230893, -0.0131357952316468, -0.012451975550862, -0.0117752318714405, -0.0111124973687814, -0.0105607828675903, -0.0099837906032737, -0.0094232085482353, -0.0089025667070211, -0.0084151761217117, -0.0079108712975156, -0.0074160610431683, -0.0069421521122613, -0.0064880116068857, -0.0060802439210264, -0.0056914323239349, -0.0053420867159564, -0.0049922479532459, -0.0046623542676896, -0.0043282060452068, -0.0039875887925116, -0.00369420861429, -0.0034337217209112, -0.0032253265639805, -0.0030118631509885, -0.0027617533699095, -0.0026456440592116, -0.0024664718851732, -0.0022884452321962, -0.0021666767247677, -0.001999311387402, -0.001841782895251, -0.0017078334071054, -0.001546071500985, -0.0014230998313021, -0.0012617240142967, -0.0010603010108451, -0.0009750067224797, -0.0008087760913422, -0.000686454603793, -0.0006250633637773, -0.0005085943434571, -0.0004391816902721, -0.0003127219591757, -0.0002373172230562, -0.0001356032694689, -8.78523739553835e-05, -4.82454193622267e-07, 6.49358118721259e-05, 9.52792025734885e-05, 0.0002055585221957, 0.0002546591981924, 0.0002803879777741, 0.0003094084470754, 0.0003235738646996, 0.0003107920893562, 0.0003439853618193, 0.0003820083140724, 0.0003834618969273, 0.0003815404626565, 0.0003837815253919, 0.0003853919998573, 0.0003838053179039, 0.0003878198084254, 0.0003927980156716, 0.0003966633000667, 0.0004034265972848, 0.0004092164996212, 0.0004126185946492, 0.0004095672323976, 0.0004077361982438, 0.0004104266367575, 0.000414641389836, 0.0004105464398481, 0.0004169337998321, 0.0004058105727938, 0.0004164667054553, 0.0004151401029977, 0.0004136962422635, 0.0004105479615716, 0.0004108948972354, 0.0004110523202815, 0.000408349675669, 0.0004063920098184, 0.000405752606153, 0.0004060326811698, 0.0004065790593484, 0.000411343809611, 0.0004124462463604, 0.0004102036338995, 0.0004084284760454, 0.0004098693765882, 0.0004054000615738, 0.0004054502825511, 0.0004053382453649, 0.0004074498013729, 0.0004092066240853, 0.0004118412286571, 0.0004164815835016, 0.0004174214065251, 0.0004203462277796, 0.0004240502601043, 0.00042664434121, 0.0004235660313317, 0.0004233139902501, 0.0004254981927435, 0.0003995535614148, 0.0003816847697257, 0.0003100705341536, 0.000244053117834], "By": [-0.0005243082361124, -0.0004874360341332, -0.0004202239310791, -0.0003937288666377, -0.0003723770366365, -0.0003750749397166, -0.0003773957705386, -0.0003836690560325, -0.0003929733063248, -0.0004044867834609, -0.0004148210899216, -0.0004245533709691, -0.0004402176490366, -0.0004501689224327, -0.0004606836256717, -0.0004673070982811, -0.0004760123248258, -0.0004853098909329, -0.0004929104409827, -0.000513577847274, -0.0005207937656792, -0.0005235024238702, -0.0005387961268642, -0.0005500630626079, -0.0005566484627682, -0.0005616358278106, -0.0005585265240258, -0.0005774411074652, -0.0005907745643605, -0.0006009189161926, -0.0006163023377177, -0.0006236414199406, -0.0006364067139477, -0.0006435850244337, -0.0006519265716606, -0.0006557717232017, -0.0006565125289595, -0.0006568147953313, -0.0006787114086518, -0.0006925683640457, -0.0007044454981057, -0.0007157670796069, -0.000733022977573, -0.0007518412734503, -0.0007646606426349, -0.0007667459151289, -0.0007745017131341, -0.0007975665164909999, -0.0008095303017768, -0.0007712153788468, -0.0008165320982256, -0.000838407212312, -0.0008121981568108, -0.0007858872462343, -0.000843980287421, -0.0008520772856133, -0.0008331957570468, -0.0008886368827564, -0.0008809713881873, -0.0009860446987075, -0.0009820297051088, -0.0009720619781352, -0.0010509229630675, -0.001004422295767, -0.0009411990485862, -0.0010512431223795, -0.001026131151557, -0.0010321167613331, -0.0010296253474704, -0.0010649436682579, -0.0011180818752334, -0.0011725618974236, -0.0012209935820897, -0.0012523873278643, -0.0012451642777704, -0.0012785136105481, -0.0012295904506717, -0.001293405988895, -0.001386977051847, -0.0013119265891815, -0.0013207579458939, -0.0013885287607438, -0.0013823854634311, -0.0013985731698268, -0.0014470811960126, -0.0015470789051096, -0.0015757480156520002, -0.0016999937260336, -0.0017037919711221, -0.0016628980551130997, -0.0016938299212833, -0.0017009707310498, -0.0016707911703556003, -0.001737198644993, -0.0018335170001935, -0.0018218017821842, -0.0019251681178373, -0.002047320632672, -0.0021087817250902, -0.0020774400517616, -0.0020854450024072, -0.0021467192685315, -0.0021025968174404, -0.0021900851039974, -0.0023150966272546996, -0.0024656671454541994, -0.0024360754773129, -0.0025090987186587, -0.0025039233962752, -0.0025455289764461, -0.00256484931712, -0.002593432902942, -0.0027031731499456, -0.0026593296428674, -0.0028404844624294, -0.0029005130407287, -0.0030852605841332, -0.0031770497491099, -0.0032445661160913, -0.0032918562825477, -0.0032255065215415, -0.0033633666582039, -0.0034970095126188, -0.0036415012286982, -0.0037807602601636, -0.0038512295518288, -0.0038775944252875, -0.0040554418093164, -0.0041017407242711, -0.0042690013147797, -0.0043872448808131, -0.0044444948468331, -0.0045606350047286, -0.0046799128623975, -0.0047936845645035, -0.0048806500439178, -0.0050993274540947, -0.0052106110595723, -0.0053827121396587, -0.0055552526138804, -0.0057820801960689, -0.0059019119149594, -0.0060875244064157, -0.0061856555484602, -0.0065134387338085, -0.0067520230539292, -0.0069678199498934, -0.0071595345083408, -0.0074129977178737, -0.0076456006743688, -0.0078335967339282, -0.0081406455977088, -0.0084502893245693, -0.0086836562131214, -0.0090616552434131, -0.0093329243613616, -0.0096333048573522, -0.0099801332740945, -0.0103204802097373, -0.0106876816335318, -0.0110901032093984, -0.0114824559191466, -0.0119246980529752, -0.0124097273123793, -0.0128873851781913, -0.0134030495218799, -0.0138368604548703, -0.014379020521715098, -0.0148923823750797, -0.0154550284208255, -0.0160642169291935, -0.0166888659409875, -0.0173135861899678, -0.0179934534719258, -0.0186324305659162, -0.0193437284944329, -0.0201181247312538, -0.0208429529278879, -0.0216042033483516, -0.0223799255727763, -0.0231774747881989, -0.0240064491253784, -0.024832838597441, -0.0256447854204169, -0.0265287627148285, -0.0273914148318293, -0.0282405559678402, -0.0290674960832271, -0.0298833776392363, -0.0308112518580688, -0.0315698092483277, -0.0323528790319386, -0.0331656767076667, -0.0339386270609323, -0.0346323876722761, -0.0353082188058609, -0.0359195770445978, -0.03650562377278439, -0.0370520356083508, -0.0375939730369776, -0.0381187205672112, -0.0384776678840271, -0.038905123520838, -0.0392623019294073, -0.0395104965715352, -0.0397583955753741, -0.0399803085154466, -0.0401091538663927, -0.0402417760179696, -0.0403507288978079, -0.0404082630749706, -0.0403199875655881, -0.0402118258353868, -0.0401180933062995, -0.0400080993119532, -0.0398153077744236, -0.0396501390808234, -0.0393854497382681, -0.0390285622546562, -0.0386851679199569, -0.0382419012466508, -0.0377379896116533, -0.0371243846128568, -0.0366553821496583, -0.0360812686935659, -0.0353719518334862, -0.0347139837997007, -0.0339377551423899, -0.0333175822910445, -0.0325953528885584, -0.031750960559658, -0.0310112452410713, -0.0301978683965782, -0.0293723911217037, -0.0285308484164408, -0.0275310131111914, -0.0267797660446588, -0.0258258714016904, -0.0250745567775429, -0.0242745432529421, -0.0234490826046038, -0.0226905950700141, -0.0219107452959077, -0.0211719396886091, -0.020433886069021, -0.0197293397253805, -0.0190344247771912, -0.0183351380340073, -0.0176942467122898, -0.0170737301312238, -0.0164873004965426, -0.015929621431456, -0.0153423839243842, -0.0148140292220104, -0.0142965274932951, -0.0138015171730021, -0.0133245292512468, -0.0128372485102249, -0.0124198688473264, -0.0120041913408443, -0.0115970068107961, -0.0112055921864188, -0.0108405215853174, -0.010479725342792, -0.0101367177318699, -0.0098113908758087, -0.0094725804106811, -0.0091865215785893, -0.008896595960832, -0.0086133221493433, -0.0083425258785154, -0.0080764796291813, -0.0078217152785053, -0.0075877108984916, -0.0073533223339897, -0.0071288039009239, -0.006913779253384601, -0.0067085127293717, -0.0065088597199027, -0.0063053431209402, -0.0061232800163526, -0.0059424386468404, -0.0057667269766548, -0.0055971132032239, -0.0054357675239379, -0.0052807920836265, -0.0051301308310576, -0.0049807025328593, -0.0048400625454501, -0.0046997980862858, -0.0045649891822894, -0.0044302107164173, -0.004300433687863, -0.0041708632120634, -0.004041245216156, -0.0039118654533822, -0.0037828926969786, -0.0036354745674672, -0.0034746818935180997, -0.0033085461624024, -0.0031412983315985], "Bz": [-0.0021476660825547, -0.0021139312207257, -0.0021173960562739, -0.0021432448425252, -0.0021500974733329, -0.002176358161247, -0.0021982073899772, -0.0022192825189731, -0.0022391149218501, -0.0022561667793098, -0.0022785596328279, -0.0022956815976052, -0.0023096563358988, -0.0023254240714911, -0.0023354017972169, -0.002346598032302, -0.0023500863608843, -0.0023549038139767, -0.0023551373317092, -0.00235113902351, -0.0023279718857962, -0.0023093230189962, -0.0022822227862692, -0.0022489412380799, -0.0022156959575384, -0.0021673115226191, -0.0021148820275504005, -0.002062927885757, -0.0019881549712739, -0.001899522385175, -0.0017907446631726, -0.0016838718729075, -0.0015441871895287, -0.0013963666824493, -0.0012255871816717, -0.0010358891269572, -0.0008166053203563, -0.000576242343727, -0.0002957738065026, -6.066230390753361e-06, 0.0003355002592819999, 0.0006882290504902, 0.0010982440367509, 0.0015660044639044, 0.002048948081389, 0.0026184839921332, 0.0032599595760909, 0.0039468838881214, 0.0047082520044591, 0.0055806686010266, 0.0064416714509416, 0.0074189538445185, 0.008564863275654, 0.0097523485091456, 0.0110658918660288, 0.012514819894443, 0.0140287016673139, 0.0158354679822987, 0.0177276683524487, 0.0197071397843536, 0.0218463335086567, 0.0243243397135338, 0.0269504749497411, 0.0297302755663066, 0.0326097381206388, 0.0358967178221094, 0.0393047640969182, 0.0427531210061324, 0.0464607652604951, 0.050607075645921, 0.0548580917491997, 0.0590658499320646, 0.0632915659219484, 0.0677180520024475, 0.0721730272328487, 0.0767377775969636, 0.0812595903892174, 0.0857138209996389, 0.0899943648931739, 0.0939401701801069, 0.0978456174347168, 0.101723900875655, 0.105307781763735, 0.108556905052361, 0.111579625974777, 0.114454619681308, 0.11712707959411, 0.119269656728968, 0.12123751852227502, 0.123143663944393, 0.124589237420046, 0.125713310139575, 0.126761884375638, 0.127401778276971, 0.12793449242797, 0.128140347805618, 0.12814341262424198, 0.127841017697639, 0.127310676740725, 0.126459244372673, 0.125274519605816, 0.123966046949053, 0.122448881527181, 0.120697483732819, 0.118683606842647, 0.116352484232328, 0.113693758014202, 0.111113739039898, 0.108065105853922, 0.104862442276066, 0.101598156885755, 0.0982700106760541, 0.0950786589755292, 0.0917105880793272, 0.0883269584658427, 0.0848214051774033, 0.0816073476098778, 0.0784371547902747, 0.07541528598209, 0.0725369992925542, 0.0700193251549834, 0.06755073506202168, 0.0653555252641746, 0.0633296833199055, 0.0616072262375444, 0.0599853971658741, 0.0585634320280162, 0.0575601723162545, 0.0566039148142317, 0.055636283145089, 0.0548494582892488, 0.054225765904419, 0.0538506757881947, 0.05353285699527, 0.0533325264238925, 0.0531789947811233, 0.0530681902949093, 0.0528940982552945, 0.0526676160358988, 0.0524480322356195, 0.0523073048337372, 0.0520475351200664, 0.0517251728043623, 0.0512777783346538, 0.0505147814699133, 0.0496793017958337, 0.048722432107168, 0.0475572050917, 0.0462176052573156, 0.0446700258106467, 0.0429552786843864, 0.0411938153968086, 0.0392658406747446, 0.0371704950874437, 0.0349789086381314, 0.0327432833490317, 0.0303674324526308, 0.0280648948627946, 0.0256850220901617, 0.0234099201454459, 0.021153273312558, 0.0188852545361383, 0.0166478849276344, 0.0145501273399731, 0.0125718998583212, 0.0106098954084227, 0.0087723936489454, 0.0070295323072966, 0.0053748534548557, 0.0038600263117354, 0.0024898199302268, 0.001135537115614, -7.02899101530523e-05, -0.0012210375310891, -0.0022627161503321, -0.0032413096453089, -0.0040944608149504, -0.0048125045874567, -0.0055358286709107, -0.0062152096273556, -0.0067600439222383, -0.0073151004479998, -0.0077691557601359, -0.008150415173407201, -0.0084588507041001, -0.0087311041904343, -0.0090387663400352, -0.0092695034676187, -0.009540381340750598, -0.0097089604586216, -0.0098222533198364, -0.0099047779034045, -0.0100060062324221, -0.0101954716578734, -0.0101768762383079, -0.0101246790724059, -0.0102117440556606, -0.0102277044302123, -0.0102073218304291, -0.0101761199431807, -0.010188299395246198, -0.0100256279055118, -0.0099397831797636, -0.0098913753865206, -0.0098011463403645, -0.0097244149561595, -0.0095909732519628, -0.0094671096715263, -0.0093071214094665, -0.009141010083528, -0.0089315316390084, -0.0088059179672719, -0.0086460341238671, -0.0084846466930992, -0.008353754689418, -0.008217309226689, -0.0080959517692566, -0.0079318405224384, -0.0077424085620376, -0.0076848488970204, -0.0075816560843038, -0.0074511814684548, -0.0072925238180541, -0.0071943473118654, -0.0071378510547529, -0.0069475945058822, -0.0068643371677903, -0.0067329097329515, -0.0066320227164571, -0.006500041828816, -0.0063683867968801, -0.0062050383908802, -0.0059783115975843, -0.0058361723169241, -0.0057457067851953, -0.0056332132908871, -0.0054926134850903, -0.005361151686242, -0.005197221627078899, -0.0050331087404526, -0.0048584863276329, -0.0047541131286311, -0.0046179673691045, -0.0044780146538008, -0.0043476415397705, -0.0041966196705595, -0.0040947736724188, -0.0039954178425374, -0.0038307467734199, -0.0037451245333189, -0.0036548871132092, -0.0035560817198803, -0.0034621308344047, -0.0033638451008218, -0.0032776704197337, -0.0032036535012461, -0.0031191455551665, -0.0030666465456446, -0.0029782733349956, -0.0028894360072431, -0.0027981314380252, -0.0027503193866847, -0.0026912452728733, -0.0026309126292187, -0.0025696395011161, -0.0025117141460436, -0.0024699627573707, -0.0023981722304747, -0.0023500804930251, -0.0022984162741856, -0.0022441445445612, -0.002194734220697, -0.0021472147619665998, -0.002100754235474, -0.0020554485094611, -0.0020113053507174, -0.0019685085712158, -0.0019248932008372, -0.0018871823633325, -0.0018465775697986, -0.0018051163456156, -0.0017644254918345, -0.0017243213010566, -0.0016878410793593, -0.0016518462507259, -0.0016162604067557, -0.0015816266076767, -0.0015477762817821, -0.0015149679178718, -0.0014808689753616, -0.0014471384158383, -0.0014140433852588, -0.0013811700216266, -0.0013474880610883, -0.00131220082885, -0.0012761708909457, -0.0012382508896249, -0.0011796512891943, -0.0011052264248527003, -0.0009972637250282, -0.0008874519168298]}, "unit": "T"}]} diff --git a/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json b/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json index ce2b835..5b486aa 100644 --- a/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json +++ b/src/magpylib_material_response/package_data/datasets/FEMdata_test_softmag.json @@ -1 +1 @@ -{"setup": [{"id": 2678036084816, "type": "Collection", "position": {"value": [0.0, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "No demag", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "children": [{"id": 2678042879984, "type": "Cuboid", "position": {"value": [0.0, 0.0, 0.0005], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Hard cuboid magnet, susceptibility=0.5", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.5}, "dimension": {"value": [0.001, 0.001, 0.002], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 1.0], "unit": "T"}}, {"id": 2678036170400, "type": "Cuboid", "position": {"value": [0.0015, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[0.7071067811865475, 0.0, 0.7071067811865476], [0.0, 1.0, 0.0], [-0.7071067811865476, 0.0, 0.7071067811865475]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Soft cuboid magnet, susceptibility=3999", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 3999}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 0.0], "unit": "T"}}]}, {"id": 2679646060352, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.001], [-0.0039900000000000005, 0.0, -0.001], [-0.00398, 0.0, -0.001], [-0.0039700000000000004, 0.0, -0.001], [-0.00396, 0.0, -0.001], [-0.00395, 0.0, -0.001], [-0.00394, 0.0, -0.001], [-0.00393, 0.0, -0.001], [-0.00392, 0.0, -0.001], [-0.00391, 0.0, -0.001], [-0.0039, 0.0, -0.001], [-0.0038900000000000002, 0.0, -0.001], [-0.0038799999999999998, 0.0, -0.001], [-0.00387, 0.0, -0.001], [-0.0038599999999999997, 0.0, -0.001], [-0.00385, 0.0, -0.001], [-0.0038399999999999997, 0.0, -0.001], [-0.00383, 0.0, -0.001], [-0.00382, 0.0, -0.001], [-0.00381, 0.0, -0.001], [-0.0038, 0.0, -0.001], [-0.00379, 0.0, -0.001], [-0.0037800000000000004, 0.0, -0.001], [-0.00377, 0.0, -0.001], [-0.00376, 0.0, -0.001], [-0.00375, 0.0, -0.001], [-0.0037400000000000003, 0.0, -0.001], [-0.00373, 0.0, -0.001], [-0.0037199999999999998, 0.0, -0.001], [-0.0037099999999999998, 0.0, -0.001], [-0.0037, 0.0, -0.001], [-0.00369, 0.0, -0.001], [-0.00368, 0.0, -0.001], [-0.00367, 0.0, -0.001], [-0.00366, 0.0, -0.001], [-0.00365, 0.0, -0.001], [-0.00364, 0.0, -0.001], [-0.00363, 0.0, -0.001], [-0.00362, 0.0, -0.001], [-0.00361, 0.0, -0.001], [-0.0036, 0.0, -0.001], [-0.00359, 0.0, -0.001], [-0.0035800000000000003, 0.0, -0.001], [-0.0035700000000000003, 0.0, -0.001], [-0.0035600000000000002, 0.0, -0.001], [-0.0035499999999999998, 0.0, -0.001], [-0.00354, 0.0, -0.001], [-0.00353, 0.0, -0.001], [-0.00352, 0.0, -0.001], [-0.0035099999999999997, 0.0, -0.001], [-0.0035, 0.0, -0.001], [-0.00349, 0.0, -0.001], [-0.00348, 0.0, -0.001], [-0.0034699999999999996, 0.0, -0.001], [-0.00346, 0.0, -0.001], [-0.0034500000000000004, 0.0, -0.001], [-0.00344, 0.0, -0.001], [-0.00343, 0.0, -0.001], [-0.00342, 0.0, -0.001], [-0.0034100000000000003, 0.0, -0.001], [-0.0034, 0.0, -0.001], [-0.0033900000000000002, 0.0, -0.001], [-0.0033799999999999998, 0.0, -0.001], [-0.00337, 0.0, -0.001], [-0.0033599999999999997, 0.0, -0.001], [-0.00335, 0.0, -0.001], [-0.0033399999999999997, 0.0, -0.001], [-0.00333, 0.0, -0.001], [-0.00332, 0.0, -0.001], [-0.00331, 0.0, -0.001], [-0.0033, 0.0, -0.001], [-0.00329, 0.0, -0.001], [-0.0032800000000000004, 0.0, -0.001], [-0.00327, 0.0, -0.001], [-0.00326, 0.0, -0.001], [-0.00325, 0.0, -0.001], [-0.0032400000000000003, 0.0, -0.001], [-0.00323, 0.0, -0.001], [-0.0032199999999999998, 0.0, -0.001], [-0.00321, 0.0, -0.001], [-0.0032, 0.0, -0.001], [-0.00319, 0.0, -0.001], [-0.0031799999999999997, 0.0, -0.001], [-0.00317, 0.0, -0.001], [-0.00316, 0.0, -0.001], [-0.00315, 0.0, -0.001], [-0.00314, 0.0, -0.001], [-0.00313, 0.0, -0.001], [-0.00312, 0.0, -0.001], [-0.0031100000000000004, 0.0, -0.001], [-0.0031, 0.0, -0.001], [-0.00309, 0.0, -0.001], [-0.0030800000000000003, 0.0, -0.001], [-0.0030700000000000002, 0.0, -0.001], [-0.0030600000000000002, 0.0, -0.001], [-0.0030499999999999998, 0.0, -0.001], [-0.00304, 0.0, -0.001], [-0.00303, 0.0, -0.001], [-0.00302, 0.0, -0.001], [-0.0030099999999999997, 0.0, -0.001], [-0.003, 0.0, -0.001], [-0.00299, 0.0, -0.001], [-0.00298, 0.0, -0.001], [-0.0029699999999999996, 0.0, -0.001], [-0.00296, 0.0, -0.001], [-0.0029500000000000004, 0.0, -0.001], [-0.00294, 0.0, -0.001], [-0.00293, 0.0, -0.001], [-0.00292, 0.0, -0.001], [-0.0029100000000000003, 0.0, -0.001], [-0.0029, 0.0, -0.001], [-0.0028899999999999998, 0.0, -0.001], [-0.0028799999999999997, 0.0, -0.001], [-0.00287, 0.0, -0.001], [-0.0028599999999999997, 0.0, -0.001], [-0.0028499999999999997, 0.0, -0.001], [-0.0028399999999999996, 0.0, -0.001], [-0.00283, 0.0, -0.001], [-0.0028200000000000005, 0.0, -0.001], [-0.00281, 0.0, -0.001], [-0.0028, 0.0, -0.001], [-0.00279, 0.0, -0.001], [-0.0027800000000000004, 0.0, -0.001], [-0.00277, 0.0, -0.001], [-0.00276, 0.0, -0.001], [-0.00275, 0.0, -0.001], [-0.0027400000000000002, 0.0, -0.001], [-0.00273, 0.0, -0.001], [-0.0027199999999999998, 0.0, -0.001], [-0.00271, 0.0, -0.001], [-0.0027, 0.0, -0.001], [-0.00269, 0.0, -0.001], [-0.0026799999999999997, 0.0, -0.001], [-0.00267, 0.0, -0.001], [-0.00266, 0.0, -0.001], [-0.00265, 0.0, -0.001], [-0.0026399999999999996, 0.0, -0.001], [-0.00263, 0.0, -0.001], [-0.00262, 0.0, -0.001], [-0.00261, 0.0, -0.001], [-0.0025999999999999994, 0.0, -0.001], [-0.00259, 0.0, -0.001], [-0.0025800000000000003, 0.0, -0.001], [-0.0025700000000000002, 0.0, -0.001], [-0.00256, 0.0, -0.001], [-0.0025499999999999997, 0.0, -0.001], [-0.00254, 0.0, -0.001], [-0.00253, 0.0, -0.001], [-0.00252, 0.0, -0.001], [-0.0025099999999999996, 0.0, -0.001], [-0.0025, 0.0, -0.001], [-0.00249, 0.0, -0.001], [-0.00248, 0.0, -0.001], [-0.0024699999999999995, 0.0, -0.001], [-0.00246, 0.0, -0.001], [-0.0024500000000000004, 0.0, -0.001], [-0.00244, 0.0, -0.001], [-0.00243, 0.0, -0.001], [-0.00242, 0.0, -0.001], [-0.0024100000000000002, 0.0, -0.001], [-0.0024, 0.0, -0.001], [-0.0023899999999999998, 0.0, -0.001], [-0.0023799999999999997, 0.0, -0.001], [-0.00237, 0.0, -0.001], [-0.0023599999999999997, 0.0, -0.001], [-0.0023499999999999997, 0.0, -0.001], [-0.00234, 0.0, -0.001], [-0.00233, 0.0, -0.001], [-0.00232, 0.0, -0.001], [-0.0023099999999999996, 0.0, -0.001], [-0.0023, 0.0, -0.001], [-0.00229, 0.0, -0.001], [-0.0022800000000000003, 0.0, -0.001], [-0.00227, 0.0, -0.001], [-0.0022600000000000003, 0.0, -0.001], [-0.00225, 0.0, -0.001], [-0.0022400000000000002, 0.0, -0.001], [-0.0022299999999999998, 0.0, -0.001], [-0.00222, 0.0, -0.001], [-0.00221, 0.0, -0.001], [-0.0022, 0.0, -0.001], [-0.00219, 0.0, -0.001], [-0.00218, 0.0, -0.001], [-0.00217, 0.0, -0.001], [-0.00216, 0.0, -0.001], [-0.00215, 0.0, -0.001], [-0.00214, 0.0, -0.001], [-0.00213, 0.0, -0.001], [-0.00212, 0.0, -0.001], [-0.00211, 0.0, -0.001], [-0.0021000000000000003, 0.0, -0.001], [-0.00209, 0.0, -0.001], [-0.0020800000000000003, 0.0, -0.001], [-0.00207, 0.0, -0.001], [-0.00206, 0.0, -0.001], [-0.0020499999999999997, 0.0, -0.001], [-0.00204, 0.0, -0.001], [-0.0020299999999999997, 0.0, -0.001], [-0.00202, 0.0, -0.001], [-0.0020099999999999996, 0.0, -0.001], [-0.002, 0.0, -0.001], [-0.0019899999999999996, 0.0, -0.001], [-0.00198, 0.0, -0.001], [-0.00197, 0.0, -0.001], [-0.00196, 0.0, -0.001], [-0.0019500000000000001, 0.0, -0.001], [-0.0019399999999999999, 0.0, -0.001], [-0.00193, 0.0, -0.001], [-0.0019199999999999998, 0.0, -0.001], [-0.0019100000000000002, 0.0, -0.001], [-0.0019, 0.0, -0.001], [-0.0018900000000000002, 0.0, -0.001], [-0.00188, 0.0, -0.001], [-0.0018700000000000001, 0.0, -0.001], [-0.0018599999999999999, 0.0, -0.001], [-0.00185, 0.0, -0.001], [-0.0018399999999999998, 0.0, -0.001], [-0.00183, 0.0, -0.001], [-0.0018199999999999998, 0.0, -0.001], [-0.00181, 0.0, -0.001], [-0.0017999999999999997, 0.0, -0.001], [-0.0017900000000000001, 0.0, -0.001], [-0.00178, 0.0, -0.001], [-0.00177, 0.0, -0.001], [-0.0017599999999999998, 0.0, -0.001], [-0.00175, 0.0, -0.001], [-0.0017399999999999998, 0.0, -0.001], [-0.00173, 0.0, -0.001], [-0.0017199999999999997, 0.0, -0.001], [-0.00171, 0.0, -0.001], [-0.0016999999999999997, 0.0, -0.001], [-0.0016899999999999999, 0.0, -0.001], [-0.0016799999999999996, 0.0, -0.001], [-0.0016699999999999998, 0.0, -0.001], [-0.0016599999999999998, 0.0, -0.001], [-0.0016500000000000004, 0.0, -0.001], [-0.0016400000000000002, 0.0, -0.001], [-0.00163, 0.0, -0.001], [-0.0016200000000000001, 0.0, -0.001], [-0.0016100000000000003, 0.0, -0.001], [-0.0016, 0.0, -0.001], [-0.0015899999999999998, 0.0, -0.001], [-0.00158, 0.0, -0.001], [-0.0015700000000000002, 0.0, -0.001], [-0.00156, 0.0, -0.001], [-0.0015499999999999997, 0.0, -0.001], [-0.0015400000000000001, 0.0, -0.001], [-0.0015300000000000003, 0.0, -0.001], [-0.00152, 0.0, -0.001], [-0.0015099999999999998, 0.0, -0.001], [-0.0015, 0.0, -0.001], [-0.0014900000000000002, 0.0, -0.001], [-0.00148, 0.0, -0.001], [-0.0014699999999999997, 0.0, -0.001], [-0.00146, 0.0, -0.001], [-0.0014500000000000001, 0.0, -0.001], [-0.0014399999999999999, 0.0, -0.001], [-0.0014299999999999996, 0.0, -0.001], [-0.0014199999999999998, 0.0, -0.001], [-0.0014100000000000002, 0.0, -0.001], [-0.0014, 0.0, -0.001], [-0.0013899999999999997, 0.0, -0.001], [-0.00138, 0.0, -0.001], [-0.0013700000000000001, 0.0, -0.001], [-0.0013599999999999999, 0.0, -0.001], [-0.0013499999999999996, 0.0, -0.001], [-0.0013399999999999998, 0.0, -0.001], [-0.00133, 0.0, -0.001], [-0.0013199999999999998, 0.0, -0.001], [-0.0013099999999999995, 0.0, -0.001], [-0.0012999999999999997, 0.0, -0.001], [-0.0012900000000000001, 0.0, -0.001], [-0.0012799999999999999, 0.0, -0.001], [-0.0012699999999999996, 0.0, -0.001], [-0.0012599999999999998, 0.0, -0.001], [-0.00125, 0.0, -0.001], [-0.0012399999999999998, 0.0, -0.001], [-0.0012299999999999995, 0.0, -0.001], [-0.0012199999999999997, 0.0, -0.001], [-0.00121, 0.0, -0.001], [-0.0011999999999999997, 0.0, -0.001], [-0.0011899999999999994, 0.0, -0.001], [-0.00118, 0.0, -0.001], [-0.0011700000000000005, 0.0, -0.001], [-0.0011600000000000002, 0.0, -0.001], [-0.0011500000000000004, 0.0, -0.001], [-0.0011400000000000002, 0.0, -0.001], [-0.0011300000000000004, 0.0, -0.001], [-0.0011200000000000001, 0.0, -0.001], [-0.0011100000000000003, 0.0, -0.001], [-0.0011, 0.0, -0.001], [-0.0010900000000000003, 0.0, -0.001], [-0.00108, 0.0, -0.001], [-0.0010700000000000002, 0.0, -0.001], [-0.00106, 0.0, -0.001], [-0.0010500000000000004, 0.0, -0.001], [-0.0010400000000000001, 0.0, -0.001], [-0.0010300000000000003, 0.0, -0.001], [-0.00102, 0.0, -0.001], [-0.0010100000000000003, 0.0, -0.001], [-0.001, 0.0, -0.001], [-0.0009900000000000002, 0.0, -0.001], [-0.00098, 0.0, -0.001], [-0.0009700000000000002, 0.0, -0.001], [-0.0009599999999999999, 0.0, -0.001], [-0.0009500000000000002, 0.0, -0.001], [-0.00094, 0.0, -0.001], [-0.0009300000000000002, 0.0, -0.001], [-0.0009199999999999999, 0.0, -0.001], [-0.0009100000000000001, 0.0, -0.001], [-0.0008999999999999999, 0.0, -0.001], [-0.0008900000000000002, 0.0, -0.001], [-0.0008799999999999999, 0.0, -0.001], [-0.0008700000000000001, 0.0, -0.001], [-0.0008599999999999999, 0.0, -0.001], [-0.0008500000000000001, 0.0, -0.001], [-0.0008399999999999998, 0.0, -0.001], [-0.0008300000000000001, 0.0, -0.001], [-0.0008199999999999999, 0.0, -0.001], [-0.0008100000000000001, 0.0, -0.001], [-0.0007999999999999998, 0.0, -0.001], [-0.00079, 0.0, -0.001], [-0.0007799999999999998, 0.0, -0.001], [-0.0007700000000000001, 0.0, -0.001], [-0.0007599999999999998, 0.0, -0.001], [-0.00075, 0.0, -0.001], [-0.0007399999999999998, 0.0, -0.001], [-0.00073, 0.0, -0.001], [-0.0007199999999999997, 0.0, -0.001], [-0.0007099999999999999, 0.0, -0.001], [-0.0006999999999999998, 0.0, -0.001], [-0.00069, 0.0, -0.001], [-0.0006799999999999997, 0.0, -0.001], [-0.0006699999999999999, 0.0, -0.001], [-0.0006599999999999997, 0.0, -0.001], [-0.0006499999999999999, 0.0, -0.001], [-0.0006399999999999997, 0.0, -0.001], [-0.0006299999999999999, 0.0, -0.001], [-0.0006199999999999997, 0.0, -0.001], [-0.0006099999999999999, 0.0, -0.001], [-0.0005999999999999996, 0.0, -0.001], [-0.0005899999999999998, 0.0, -0.001], [-0.0005799999999999997, 0.0, -0.001], [-0.0005699999999999999, 0.0, -0.001], [-0.0005600000000000005, 0.0, -0.001], [-0.0005500000000000002, 0.0, -0.001], [-0.00054, 0.0, -0.001], [-0.0005300000000000002, 0.0, -0.001], [-0.0005200000000000005, 0.0, -0.001], [-0.0005100000000000003, 0.0, -0.001], [-0.0005, 0.0, -0.001], [-0.0004900000000000002, 0.0, -0.001], [-0.00048000000000000045, 0.0, -0.001], [-0.0004700000000000002, 0.0, -0.001], [-0.00045999999999999996, 0.0, -0.001], [-0.0004500000000000002, 0.0, -0.001], [-0.0004400000000000004, 0.0, -0.001], [-0.00043000000000000015, 0.0, -0.001], [-0.0004199999999999999, 0.0, -0.001], [-0.00041000000000000015, 0.0, -0.001], [-0.00040000000000000034, 0.0, -0.001], [-0.0003900000000000001, 0.0, -0.001], [-0.0003799999999999999, 0.0, -0.001], [-0.0003700000000000001, 0.0, -0.001], [-0.0003600000000000003, 0.0, -0.001], [-0.0003500000000000001, 0.0, -0.001], [-0.00033999999999999986, 0.0, -0.001], [-0.00033000000000000005, 0.0, -0.001], [-0.0003200000000000003, 0.0, -0.001], [-0.00031000000000000005, 0.0, -0.001], [-0.0002999999999999998, 0.0, -0.001], [-0.00029000000000000006, 0.0, -0.001], [-0.00028000000000000025, 0.0, -0.001], [-0.00027, 0.0, -0.001], [-0.00025999999999999976, 0.0, -0.001], [-0.00025, 0.0, -0.001], [-0.00024000000000000022, 0.0, -0.001], [-0.00022999999999999998, 0.0, -0.001], [-0.00021999999999999976, 0.0, -0.001], [-0.00020999999999999995, 0.0, -0.001], [-0.00020000000000000017, 0.0, -0.001], [-0.00018999999999999996, 0.0, -0.001], [-0.0001799999999999997, 0.0, -0.001], [-0.00016999999999999993, 0.0, -0.001], [-0.00016000000000000015, 0.0, -0.001], [-0.0001499999999999999, 0.0, -0.001], [-0.0001399999999999997, 0.0, -0.001], [-0.00012999999999999988, 0.0, -0.001], [-0.00012000000000000011, 0.0, -0.001], [-0.00010999999999999988, 0.0, -0.001], [-9.999999999999964e-05, 0.0, -0.001], [-8.999999999999986e-05, 0.0, -0.001], [-8.000000000000007e-05, 0.0, -0.001], [-6.999999999999984e-05, 0.0, -0.001], [-5.999999999999961e-05, 0.0, -0.001], [-4.999999999999982e-05, 0.0, -0.001], [-4.000000000000004e-05, 0.0, -0.001], [-2.9999999999999804e-05, 0.0, -0.001], [-1.9999999999999575e-05, 0.0, -0.001], [-9.999999999999787e-06, 0.0, -0.001], [0.0, 0.0, -0.001], [9.999999999999787e-06, 0.0, -0.001], [2.0000000000000462e-05, 0.0, -0.001], [3.0000000000000248e-05, 0.0, -0.001], [4.000000000000004e-05, 0.0, -0.001], [5.0000000000000714e-05, 0.0, -0.001], [6.0000000000000496e-05, 0.0, -0.001], [6.99999999999994e-05, 0.0, -0.001], [8.000000000000007e-05, 0.0, -0.001], [8.999999999999986e-05, 0.0, -0.001], [9.999999999999964e-05, 0.0, -0.001], [0.00010999999999999943, 0.0, -0.001], [0.00012000000000000011, 0.0, -0.001], [0.00012999999999999988, 0.0, -0.001], [0.0001399999999999997, 0.0, -0.001], [0.00014999999999999947, 0.0, -0.001], [0.00016000000000000015, 0.0, -0.001], [0.00016999999999999993, 0.0, -0.001], [0.0001799999999999997, 0.0, -0.001], [0.0001899999999999995, 0.0, -0.001], [0.00020000000000000017, 0.0, -0.001], [0.00020999999999999995, 0.0, -0.001], [0.00021999999999999976, 0.0, -0.001], [0.00022999999999999955, 0.0, -0.001], [0.00024000000000000022, 0.0, -0.001], [0.00025, 0.0, -0.001], [0.00025999999999999976, 0.0, -0.001], [0.00026999999999999957, 0.0, -0.001], [0.00028000000000000025, 0.0, -0.001], [0.00029000000000000006, 0.0, -0.001], [0.0002999999999999998, 0.0, -0.001], [0.0003099999999999996, 0.0, -0.001], [0.0003200000000000003, 0.0, -0.001], [0.00033000000000000005, 0.0, -0.001], [0.00033999999999999986, 0.0, -0.001], [0.00034999999999999967, 0.0, -0.001], [0.0003600000000000003, 0.0, -0.001], [0.0003700000000000001, 0.0, -0.001], [0.0003799999999999999, 0.0, -0.001], [0.00038999999999999967, 0.0, -0.001], [0.00040000000000000034, 0.0, -0.001], [0.00041000000000000015, 0.0, -0.001], [0.0004199999999999999, 0.0, -0.001], [0.0004299999999999997, 0.0, -0.001], [0.0004400000000000004, 0.0, -0.001], [0.0004500000000000002, 0.0, -0.001], [0.00045999999999999996, 0.0, -0.001], [0.00046999999999999977, 0.0, -0.001], [0.00048000000000000045, 0.0, -0.001], [0.0004900000000000002, 0.0, -0.001], [0.0005, 0.0, -0.001], [0.0005099999999999998, 0.0, -0.001], [0.0005200000000000005, 0.0, -0.001], [0.0005300000000000002, 0.0, -0.001], [0.00054, 0.0, -0.001], [0.0005499999999999998, 0.0, -0.001], [0.0005600000000000005, 0.0, -0.001], [0.0005700000000000003, 0.0, -0.001], [0.0005800000000000001, 0.0, -0.001], [0.0005899999999999998, 0.0, -0.001], [0.0006000000000000005, 0.0, -0.001], [0.0006100000000000003, 0.0, -0.001], [0.0006200000000000001, 0.0, -0.001], [0.0006299999999999999, 0.0, -0.001], [0.0006400000000000006, 0.0, -0.001], [0.0006500000000000004, 0.0, -0.001], [0.0006600000000000001, 0.0, -0.001], [0.0006699999999999999, 0.0, -0.001], [0.0006800000000000006, 0.0, -0.001], [0.0006899999999999995, 0.0, -0.001], [0.0006999999999999993, 0.0, -0.001], [0.0007099999999999999, 0.0, -0.001], [0.0007199999999999997, 0.0, -0.001], [0.0007299999999999995, 0.0, -0.001], [0.0007400000000000002, 0.0, -0.001], [0.00075, 0.0, -0.001], [0.0007599999999999998, 0.0, -0.001], [0.0007699999999999995, 0.0, -0.001], [0.0007799999999999993, 0.0, -0.001], [0.00079, 0.0, -0.001], [0.0007999999999999998, 0.0, -0.001], [0.0008099999999999996, 0.0, -0.001], [0.0008200000000000003, 0.0, -0.001], [0.0008300000000000001, 0.0, -0.001], [0.0008399999999999998, 0.0, -0.001], [0.0008499999999999996, 0.0, -0.001], [0.0008599999999999994, 0.0, -0.001], [0.0008700000000000001, 0.0, -0.001], [0.0008799999999999999, 0.0, -0.001], [0.0008899999999999997, 0.0, -0.001], [0.0009000000000000004, 0.0, -0.001], [0.0009100000000000001, 0.0, -0.001], [0.0009199999999999999, 0.0, -0.001], [0.0009299999999999997, 0.0, -0.001], [0.0009399999999999995, 0.0, -0.001], [0.0009500000000000002, 0.0, -0.001], [0.0009599999999999999, 0.0, -0.001], [0.0009699999999999997, 0.0, -0.001], [0.0009800000000000004, 0.0, -0.001], [0.0009900000000000002, 0.0, -0.001], [0.001, 0.0, -0.001], [0.0010099999999999998, 0.0, -0.001], [0.0010199999999999996, 0.0, -0.001], [0.0010300000000000003, 0.0, -0.001], [0.0010400000000000001, 0.0, -0.001], [0.0010499999999999997, 0.0, -0.001], [0.0010600000000000004, 0.0, -0.001], [0.0010700000000000002, 0.0, -0.001], [0.00108, 0.0, -0.001], [0.0010899999999999998, 0.0, -0.001], [0.0010999999999999996, 0.0, -0.001], [0.0011100000000000003, 0.0, -0.001], [0.0011200000000000001, 0.0, -0.001], [0.00113, 0.0, -0.001], [0.0011400000000000006, 0.0, -0.001], [0.0011500000000000004, 0.0, -0.001], [0.0011600000000000002, 0.0, -0.001], [0.00117, 0.0, -0.001], [0.0011799999999999996, 0.0, -0.001], [0.0011900000000000003, 0.0, -0.001], [0.0012000000000000001, 0.0, -0.001], [0.00121, 0.0, -0.001], [0.0012200000000000006, 0.0, -0.001], [0.0012300000000000004, 0.0, -0.001], [0.0012400000000000002, 0.0, -0.001], [0.00125, 0.0, -0.001], [0.0012599999999999998, 0.0, -0.001], [0.0012700000000000005, 0.0, -0.001], [0.0012800000000000003, 0.0, -0.001], [0.0012900000000000001, 0.0, -0.001], [0.0013000000000000008, 0.0, -0.001], [0.0013100000000000004, 0.0, -0.001], [0.0013200000000000002, 0.0, -0.001], [0.00133, 0.0, -0.001], [0.0013399999999999998, 0.0, -0.001], [0.0013500000000000005, 0.0, -0.001], [0.0013600000000000003, 0.0, -0.001], [0.0013700000000000001, 0.0, -0.001], [0.0013800000000000008, 0.0, -0.001], [0.0013900000000000006, 0.0, -0.001], [0.0014000000000000004, 0.0, -0.001], [0.0014100000000000002, 0.0, -0.001], [0.0014199999999999998, 0.0, -0.001], [0.0014300000000000005, 0.0, -0.001], [0.0014400000000000003, 0.0, -0.001], [0.0014500000000000001, 0.0, -0.001], [0.0014600000000000008, 0.0, -0.001], [0.0014700000000000006, 0.0, -0.001], [0.0014800000000000004, 0.0, -0.001], [0.0014900000000000002, 0.0, -0.001], [0.0015, 0.0, -0.001], [0.0015100000000000007, 0.0, -0.001], [0.0015200000000000005, 0.0, -0.001], [0.0015300000000000003, 0.0, -0.001], [0.001540000000000001, 0.0, -0.001], [0.0015500000000000008, 0.0, -0.001], [0.0015600000000000004, 0.0, -0.001], [0.0015700000000000002, 0.0, -0.001], [0.00158, 0.0, -0.001], [0.0015900000000000007, 0.0, -0.001], [0.0016000000000000005, 0.0, -0.001], [0.0016100000000000003, 0.0, -0.001], [0.001620000000000001, 0.0, -0.001], [0.001629999999999999, 0.0, -0.001], [0.0016399999999999997, 0.0, -0.001], [0.0016499999999999996, 0.0, -0.001], [0.0016599999999999991, 0.0, -0.001], [0.0016699999999999998, 0.0, -0.001], [0.0016799999999999996, 0.0, -0.001], [0.0016899999999999994, 0.0, -0.001], [0.0016999999999999993, 0.0, -0.001], [0.001709999999999999, 0.0, -0.001], [0.0017199999999999997, 0.0, -0.001], [0.0017299999999999996, 0.0, -0.001], [0.0017399999999999994, 0.0, -0.001], [0.00175, 0.0, -0.001], [0.0017599999999999998, 0.0, -0.001], [0.0017699999999999997, 0.0, -0.001], [0.0017799999999999995, 0.0, -0.001], [0.001789999999999999, 0.0, -0.001], [0.0017999999999999997, 0.0, -0.001], [0.0018099999999999995, 0.0, -0.001], [0.0018199999999999994, 0.0, -0.001], [0.00183, 0.0, -0.001], [0.0018399999999999998, 0.0, -0.001], [0.0018499999999999996, 0.0, -0.001], [0.0018599999999999995, 0.0, -0.001], [0.0018699999999999993, 0.0, -0.001], [0.00188, 0.0, -0.001], [0.0018899999999999998, 0.0, -0.001], [0.0018999999999999996, 0.0, -0.001], [0.0019100000000000002, 0.0, -0.001], [0.0019199999999999998, 0.0, -0.001], [0.0019299999999999996, 0.0, -0.001], [0.0019399999999999995, 0.0, -0.001], [0.0019499999999999993, 0.0, -0.001], [0.00196, 0.0, -0.001], [0.00197, 0.0, -0.001], [0.0019799999999999996, 0.0, -0.001], [0.00199, 0.0, -0.001], [0.002, 0.0, -0.001], [0.0020099999999999996, 0.0, -0.001], [0.0020199999999999997, 0.0, -0.001], [0.0020299999999999993, 0.0, -0.001], [0.00204, 0.0, -0.001], [0.0020499999999999997, 0.0, -0.001], [0.0020599999999999998, 0.0, -0.001], [0.0020700000000000002, 0.0, -0.001], [0.0020800000000000003, 0.0, -0.001], [0.00209, 0.0, -0.001], [0.0020999999999999994, 0.0, -0.001], [0.0021099999999999995, 0.0, -0.001], [0.00212, 0.0, -0.001], [0.00213, 0.0, -0.001], [0.0021399999999999995, 0.0, -0.001], [0.0021500000000000004, 0.0, -0.001], [0.00216, 0.0, -0.001], [0.00217, 0.0, -0.001], [0.0021799999999999996, 0.0, -0.001], [0.0021899999999999997, 0.0, -0.001], [0.0022, 0.0, -0.001], [0.00221, 0.0, -0.001], [0.0022199999999999998, 0.0, -0.001], [0.00223, 0.0, -0.001], [0.0022400000000000002, 0.0, -0.001], [0.00225, 0.0, -0.001], [0.00226, 0.0, -0.001], [0.0022699999999999994, 0.0, -0.001], [0.0022800000000000003, 0.0, -0.001], [0.00229, 0.0, -0.001], [0.0023, 0.0, -0.001], [0.0023100000000000004, 0.0, -0.001], [0.0023200000000000004, 0.0, -0.001], [0.00233, 0.0, -0.001], [0.00234, 0.0, -0.001], [0.0023499999999999997, 0.0, -0.001], [0.00236, 0.0, -0.001], [0.00237, 0.0, -0.001], [0.0023799999999999997, 0.0, -0.001], [0.0023900000000000006, 0.0, -0.001], [0.0024000000000000002, 0.0, -0.001], [0.0024100000000000002, 0.0, -0.001], [0.00242, 0.0, -0.001], [0.00243, 0.0, -0.001], [0.0024400000000000003, 0.0, -0.001], [0.0024500000000000004, 0.0, -0.001], [0.00246, 0.0, -0.001], [0.002470000000000001, 0.0, -0.001], [0.0024800000000000004, 0.0, -0.001], [0.00249, 0.0, -0.001], [0.0025, 0.0, -0.001], [0.0025099999999999996, 0.0, -0.001], [0.0025200000000000005, 0.0, -0.001], [0.00253, 0.0, -0.001], [0.00254, 0.0, -0.001], [0.0025500000000000006, 0.0, -0.001], [0.0025600000000000006, 0.0, -0.001], [0.0025700000000000002, 0.0, -0.001], [0.0025800000000000003, 0.0, -0.001], [0.00259, 0.0, -0.001], [0.0026000000000000007, 0.0, -0.001], [0.0026100000000000003, 0.0, -0.001], [0.00262, 0.0, -0.001], [0.002630000000000001, 0.0, -0.001], [0.0026400000000000004, 0.0, -0.001], [0.0026500000000000004, 0.0, -0.001], [0.00266, 0.0, -0.001], [0.00267, 0.0, -0.001], [0.0026800000000000005, 0.0, -0.001], [0.0026900000000000006, 0.0, -0.001], [0.0027, 0.0, -0.001], [0.002710000000000001, 0.0, -0.001], [0.0027200000000000006, 0.0, -0.001], [0.0027300000000000002, 0.0, -0.001], [0.0027400000000000002, 0.0, -0.001], [0.00275, 0.0, -0.001], [0.0027600000000000007, 0.0, -0.001], [0.0027700000000000003, 0.0, -0.001], [0.0027800000000000004, 0.0, -0.001], [0.002790000000000001, 0.0, -0.001], [0.002800000000000001, 0.0, -0.001], [0.0028100000000000004, 0.0, -0.001], [0.0028200000000000005, 0.0, -0.001], [0.00283, 0.0, -0.001], [0.002840000000000001, 0.0, -0.001], [0.0028500000000000005, 0.0, -0.001], [0.00286, 0.0, -0.001], [0.002870000000000001, 0.0, -0.001], [0.002879999999999999, 0.0, -0.001], [0.0028899999999999998, 0.0, -0.001], [0.0028999999999999994, 0.0, -0.001], [0.0029099999999999994, 0.0, -0.001], [0.00292, 0.0, -0.001], [0.00293, 0.0, -0.001], [0.0029399999999999995, 0.0, -0.001], [0.0029499999999999995, 0.0, -0.001], [0.002959999999999999, 0.0, -0.001], [0.0029699999999999996, 0.0, -0.001], [0.0029799999999999996, 0.0, -0.001], [0.002989999999999999, 0.0, -0.001], [0.003, 0.0, -0.001], [0.0030099999999999997, 0.0, -0.001], [0.0030199999999999997, 0.0, -0.001], [0.0030299999999999993, 0.0, -0.001], [0.0030399999999999993, 0.0, -0.001], [0.0030499999999999998, 0.0, -0.001], [0.00306, 0.0, -0.001], [0.0030699999999999994, 0.0, -0.001], [0.0030800000000000003, 0.0, -0.001], [0.00309, 0.0, -0.001], [0.0030999999999999995, 0.0, -0.001], [0.0031099999999999995, 0.0, -0.001], [0.003119999999999999, 0.0, -0.001], [0.00313, 0.0, -0.001], [0.0031399999999999996, 0.0, -0.001], [0.0031499999999999996, 0.0, -0.001], [0.00316, 0.0, -0.001], [0.00317, 0.0, -0.001], [0.0031799999999999997, 0.0, -0.001], [0.0031899999999999997, 0.0, -0.001], [0.0031999999999999993, 0.0, -0.001], [0.00321, 0.0, -0.001], [0.0032199999999999998, 0.0, -0.001], [0.0032299999999999994, 0.0, -0.001], [0.0032400000000000003, 0.0, -0.001], [0.00325, 0.0, -0.001], [0.00326, 0.0, -0.001], [0.0032699999999999995, 0.0, -0.001], [0.0032799999999999995, 0.0, -0.001], [0.00329, 0.0, -0.001], [0.0033, 0.0, -0.001], [0.0033099999999999996, 0.0, -0.001], [0.0033200000000000005, 0.0, -0.001], [0.00333, 0.0, -0.001], [0.0033399999999999997, 0.0, -0.001], [0.0033499999999999997, 0.0, -0.001], [0.0033599999999999993, 0.0, -0.001], [0.00337, 0.0, -0.001], [0.0033799999999999998, 0.0, -0.001], [0.00339, 0.0, -0.001], [0.0034000000000000002, 0.0, -0.001], [0.0034100000000000003, 0.0, -0.001], [0.00342, 0.0, -0.001], [0.00343, 0.0, -0.001], [0.0034399999999999995, 0.0, -0.001], [0.0034500000000000004, 0.0, -0.001], [0.00346, 0.0, -0.001], [0.0034699999999999996, 0.0, -0.001], [0.0034800000000000005, 0.0, -0.001], [0.00349, 0.0, -0.001], [0.0035, 0.0, -0.001], [0.0035099999999999997, 0.0, -0.001], [0.0035199999999999997, 0.0, -0.001], [0.00353, 0.0, -0.001], [0.00354, 0.0, -0.001], [0.0035499999999999998, 0.0, -0.001], [0.0035600000000000007, 0.0, -0.001], [0.0035700000000000003, 0.0, -0.001], [0.0035800000000000003, 0.0, -0.001], [0.00359, 0.0, -0.001], [0.0035999999999999995, 0.0, -0.001], [0.0036100000000000004, 0.0, -0.001], [0.00362, 0.0, -0.001], [0.00363, 0.0, -0.001], [0.0036400000000000004, 0.0, -0.001], [0.0036500000000000005, 0.0, -0.001], [0.00366, 0.0, -0.001], [0.00367, 0.0, -0.001], [0.0036799999999999997, 0.0, -0.001], [0.0036900000000000006, 0.0, -0.001], [0.0037, 0.0, -0.001], [0.0037099999999999998, 0.0, -0.001], [0.0037200000000000006, 0.0, -0.001], [0.0037300000000000002, 0.0, -0.001], [0.0037400000000000003, 0.0, -0.001], [0.00375, 0.0, -0.001], [0.00376, 0.0, -0.001], [0.0037700000000000003, 0.0, -0.001], [0.0037800000000000004, 0.0, -0.001], [0.00379, 0.0, -0.001], [0.003800000000000001, 0.0, -0.001], [0.0038100000000000005, 0.0, -0.001], [0.0038200000000000005, 0.0, -0.001], [0.00383, 0.0, -0.001], [0.0038399999999999997, 0.0, -0.001], [0.0038500000000000006, 0.0, -0.001], [0.00386, 0.0, -0.001], [0.00387, 0.0, -0.001], [0.0038800000000000006, 0.0, -0.001], [0.0038900000000000007, 0.0, -0.001], [0.0039000000000000003, 0.0, -0.001], [0.00391, 0.0, -0.001], [0.00392, 0.0, -0.001], [0.00393, 0.0, -0.001], [0.003940000000000001, 0.0, -0.001], [0.00395, 0.0, -0.001], [0.003960000000000001, 0.0, -0.001], [0.0039700000000000004, 0.0, -0.001], [0.00398, 0.0, -0.001], [0.0039900000000000005, 0.0, -0.001], [0.004, 0.0, -0.001], [0.00401, 0.0, -0.001], [0.004019999999999999, 0.0, -0.001], [0.0040300000000000015, 0.0, -0.001], [0.004040000000000001, 0.0, -0.001], [0.004050000000000001, 0.0, -0.001], [0.00406, 0.0, -0.001], [0.004070000000000001, 0.0, -0.001], [0.00408, 0.0, -0.001], [0.00409, 0.0, -0.001], [0.004100000000000001, 0.0, -0.001], [0.004110000000000001, 0.0, -0.001], [0.004120000000000001, 0.0, -0.001], [0.004129999999999999, 0.0, -0.001], [0.004139999999999999, 0.0, -0.001], [0.004149999999999998, 0.0, -0.001], [0.0041600000000000005, 0.0, -0.001], [0.00417, 0.0, -0.001], [0.00418, 0.0, -0.001], [0.004189999999999999, 0.0, -0.001], [0.004199999999999999, 0.0, -0.001], [0.004209999999999999, 0.0, -0.001], [0.004219999999999999, 0.0, -0.001], [0.00423, 0.0, -0.001], [0.00424, 0.0, -0.001], [0.00425, 0.0, -0.001], [0.00426, 0.0, -0.001], [0.0042699999999999995, 0.0, -0.001], [0.004279999999999999, 0.0, -0.001], [0.0042899999999999995, 0.0, -0.001], [0.004299999999999999, 0.0, -0.001], [0.004309999999999999, 0.0, -0.001], [0.00432, 0.0, -0.001], [0.00433, 0.0, -0.001], [0.00434, 0.0, -0.001], [0.00435, 0.0, -0.001], [0.004359999999999999, 0.0, -0.001], [0.004369999999999999, 0.0, -0.001], [0.004379999999999999, 0.0, -0.001], [0.004390000000000001, 0.0, -0.001], [0.0044, 0.0, -0.001], [0.00441, 0.0, -0.001], [0.00442, 0.0, -0.001], [0.00443, 0.0, -0.001], [0.0044399999999999995, 0.0, -0.001], [0.004449999999999999, 0.0, -0.001], [0.004459999999999999, 0.0, -0.001], [0.004469999999999999, 0.0, -0.001], [0.0044800000000000005, 0.0, -0.001], [0.00449, 0.0, -0.001], [0.0045, 0.0, -0.001], [0.00451, 0.0, -0.001], [0.00452, 0.0, -0.001], [0.004529999999999999, 0.0, -0.001], [0.004539999999999999, 0.0, -0.001], [0.004550000000000001, 0.0, -0.001], [0.004560000000000001, 0.0, -0.001], [0.00457, 0.0, -0.001], [0.00458, 0.0, -0.001], [0.0045899999999999995, 0.0, -0.001], [0.0046, 0.0, -0.001], [0.0046099999999999995, 0.0, -0.001], [0.004619999999999999, 0.0, -0.001], [0.004629999999999999, 0.0, -0.001], [0.004640000000000001, 0.0, -0.001], [0.0046500000000000005, 0.0, -0.001], [0.00466, 0.0, -0.001], [0.00467, 0.0, -0.001], [0.00468, 0.0, -0.001], [0.00469, 0.0, -0.001], [0.004699999999999999, 0.0, -0.001], [0.004710000000000001, 0.0, -0.001], [0.00472, 0.0, -0.001], [0.004730000000000001, 0.0, -0.001], [0.00474, 0.0, -0.001], [0.00475, 0.0, -0.001], [0.0047599999999999995, 0.0, -0.001], [0.00477, 0.0, -0.001], [0.0047799999999999995, 0.0, -0.001], [0.004789999999999999, 0.0, -0.001], [0.0048000000000000004, 0.0, -0.001], [0.004810000000000001, 0.0, -0.001], [0.0048200000000000005, 0.0, -0.001], [0.00483, 0.0, -0.001], [0.00484, 0.0, -0.001], [0.004849999999999999, 0.0, -0.001], [0.00486, 0.0, -0.001], [0.004870000000000001, 0.0, -0.001], [0.004880000000000001, 0.0, -0.001], [0.00489, 0.0, -0.001], [0.004900000000000001, 0.0, -0.001], [0.00491, 0.0, -0.001], [0.00492, 0.0, -0.001], [0.0049299999999999995, 0.0, -0.001], [0.004939999999999999, 0.0, -0.001], [0.0049499999999999995, 0.0, -0.001], [0.004960000000000001, 0.0, -0.001], [0.0049700000000000005, 0.0, -0.001], [0.00498, 0.0, -0.001], [0.0049900000000000005, 0.0, -0.001], [0.005, 0.0, -0.001], [0.00501, 0.0, -0.001], [0.005019999999999999, 0.0, -0.001], [0.0050300000000000015, 0.0, -0.001], [0.005040000000000001, 0.0, -0.001], [0.005050000000000001, 0.0, -0.001], [0.00506, 0.0, -0.001], [0.00507, 0.0, -0.001], [0.00508, 0.0, -0.001], [0.00509, 0.0, -0.001], [0.0050999999999999995, 0.0, -0.001], [0.005109999999999999, 0.0, -0.001], [0.005120000000000001, 0.0, -0.001], [0.005130000000000001, 0.0, -0.001], [0.0051400000000000005, 0.0, -0.001], [0.00515, 0.0, -0.001], [0.0051600000000000005, 0.0, -0.001], [0.00517, 0.0, -0.001], [0.00518, 0.0, -0.001], [0.005190000000000001, 0.0, -0.001], [0.0052000000000000015, 0.0, -0.001], [0.005210000000000001, 0.0, -0.001], [0.005220000000000001, 0.0, -0.001], [0.00523, 0.0, -0.001], [0.00524, 0.0, -0.001], [0.00525, 0.0, -0.001], [0.00526, 0.0, -0.001], [0.0052699999999999995, 0.0, -0.001], [0.005280000000000001, 0.0, -0.001], [0.005290000000000001, 0.0, -0.001], [0.005300000000000001, 0.0, -0.001], [0.0053100000000000005, 0.0, -0.001], [0.00532, 0.0, -0.001], [0.00533, 0.0, -0.001], [0.00534, 0.0, -0.001], [0.0053500000000000015, 0.0, -0.001], [0.005360000000000001, 0.0, -0.001], [0.005370000000000001, 0.0, -0.001], [0.005379999999999999, 0.0, -0.001], [0.005389999999999999, 0.0, -0.001], [0.0053999999999999986, 0.0, -0.001], [0.00541, 0.0, -0.001], [0.00542, 0.0, -0.001], [0.00543, 0.0, -0.001], [0.0054399999999999995, 0.0, -0.001], [0.005449999999999999, 0.0, -0.001], [0.005459999999999999, 0.0, -0.001], [0.005469999999999999, 0.0, -0.001], [0.0054800000000000005, 0.0, -0.001], [0.00549, 0.0, -0.001], [0.0055, 0.0, -0.001], [0.00551, 0.0, -0.001], [0.00552, 0.0, -0.001], [0.005529999999999999, 0.0, -0.001], [0.005539999999999999, 0.0, -0.001], [0.0055499999999999985, 0.0, -0.001], [0.005559999999999999, 0.0, -0.001], [0.00557, 0.0, -0.001], [0.00558, 0.0, -0.001], [0.0055899999999999995, 0.0, -0.001], [0.0056, 0.0, -0.001], [0.0056099999999999995, 0.0, -0.001], [0.005619999999999999, 0.0, -0.001], [0.005629999999999999, 0.0, -0.001], [0.005640000000000001, 0.0, -0.001], [0.0056500000000000005, 0.0, -0.001], [0.00566, 0.0, -0.001], [0.00567, 0.0, -0.001], [0.005679999999999999, 0.0, -0.001], [0.00569, 0.0, -0.001], [0.005699999999999999, 0.0, -0.001], [0.005709999999999999, 0.0, -0.001], [0.0057199999999999985, 0.0, -0.001], [0.005730000000000001, 0.0, -0.001], [0.00574, 0.0, -0.001], [0.00575, 0.0, -0.001], [0.0057599999999999995, 0.0, -0.001], [0.00577, 0.0, -0.001], [0.0057799999999999995, 0.0, -0.001], [0.005789999999999999, 0.0, -0.001], [0.0058000000000000005, 0.0, -0.001], [0.005810000000000001, 0.0, -0.001], [0.0058200000000000005, 0.0, -0.001], [0.00583, 0.0, -0.001], [0.00584, 0.0, -0.001], [0.005849999999999999, 0.0, -0.001], [0.00586, 0.0, -0.001], [0.005869999999999999, 0.0, -0.001], [0.005879999999999999, 0.0, -0.001], [0.00589, 0.0, -0.001], [0.005900000000000001, 0.0, -0.001], [0.00591, 0.0, -0.001], [0.00592, 0.0, -0.001], [0.0059299999999999995, 0.0, -0.001], [0.005939999999999999, 0.0, -0.001], [0.0059499999999999996, 0.0, -0.001], [0.005960000000000001, 0.0, -0.001], [0.0059700000000000005, 0.0, -0.001], [0.00598, 0.0, -0.001], [0.0059900000000000005, 0.0, -0.001], [0.006, 0.0, -0.001]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "style": {"arrows": {"x": {"color": null, "show": true}, "y": {"color": null, "show": true}, "z": {"color": null, "show": true}}, "color": null, "description": {"show": null, "text": null}, "label": "Sensor, z=-1mm", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}, "pixel": {"color": null, "size": 1, "symbol": null}, "size": null}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}, {"id": 2678042525760, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.003], [-0.0039900000000000005, 0.0, -0.003], [-0.00398, 0.0, -0.003], [-0.0039700000000000004, 0.0, -0.003], [-0.00396, 0.0, -0.003], [-0.00395, 0.0, -0.003], [-0.00394, 0.0, -0.003], [-0.00393, 0.0, -0.003], [-0.00392, 0.0, -0.003], [-0.00391, 0.0, -0.003], [-0.0039, 0.0, -0.003], [-0.0038900000000000002, 0.0, -0.003], [-0.0038799999999999998, 0.0, -0.003], [-0.00387, 0.0, -0.003], [-0.0038599999999999997, 0.0, -0.003], [-0.00385, 0.0, -0.003], [-0.0038399999999999997, 0.0, -0.003], [-0.00383, 0.0, -0.003], [-0.00382, 0.0, -0.003], [-0.00381, 0.0, -0.003], [-0.0038, 0.0, -0.003], [-0.00379, 0.0, -0.003], [-0.0037800000000000004, 0.0, -0.003], [-0.00377, 0.0, -0.003], [-0.00376, 0.0, -0.003], [-0.00375, 0.0, -0.003], [-0.0037400000000000003, 0.0, -0.003], [-0.00373, 0.0, -0.003], [-0.0037199999999999998, 0.0, -0.003], [-0.0037099999999999998, 0.0, -0.003], [-0.0037, 0.0, -0.003], [-0.00369, 0.0, -0.003], [-0.00368, 0.0, -0.003], [-0.00367, 0.0, -0.003], [-0.00366, 0.0, -0.003], [-0.00365, 0.0, -0.003], [-0.00364, 0.0, -0.003], [-0.00363, 0.0, -0.003], [-0.00362, 0.0, -0.003], [-0.00361, 0.0, -0.003], [-0.0036, 0.0, -0.003], [-0.00359, 0.0, -0.003], [-0.0035800000000000003, 0.0, -0.003], [-0.0035700000000000003, 0.0, -0.003], [-0.0035600000000000002, 0.0, -0.003], [-0.0035499999999999998, 0.0, -0.003], [-0.00354, 0.0, -0.003], [-0.00353, 0.0, -0.003], [-0.00352, 0.0, -0.003], [-0.0035099999999999997, 0.0, -0.003], [-0.0035, 0.0, -0.003], [-0.00349, 0.0, -0.003], [-0.00348, 0.0, -0.003], [-0.0034699999999999996, 0.0, -0.003], [-0.00346, 0.0, -0.003], [-0.0034500000000000004, 0.0, -0.003], [-0.00344, 0.0, -0.003], [-0.00343, 0.0, -0.003], [-0.00342, 0.0, -0.003], [-0.0034100000000000003, 0.0, -0.003], [-0.0034, 0.0, -0.003], [-0.0033900000000000002, 0.0, -0.003], [-0.0033799999999999998, 0.0, -0.003], [-0.00337, 0.0, -0.003], [-0.0033599999999999997, 0.0, -0.003], [-0.00335, 0.0, -0.003], [-0.0033399999999999997, 0.0, -0.003], [-0.00333, 0.0, -0.003], [-0.00332, 0.0, -0.003], [-0.00331, 0.0, -0.003], [-0.0033, 0.0, -0.003], [-0.00329, 0.0, -0.003], [-0.0032800000000000004, 0.0, -0.003], [-0.00327, 0.0, -0.003], [-0.00326, 0.0, -0.003], [-0.00325, 0.0, -0.003], [-0.0032400000000000003, 0.0, -0.003], [-0.00323, 0.0, -0.003], [-0.0032199999999999998, 0.0, -0.003], [-0.00321, 0.0, -0.003], [-0.0032, 0.0, -0.003], [-0.00319, 0.0, -0.003], [-0.0031799999999999997, 0.0, -0.003], [-0.00317, 0.0, -0.003], [-0.00316, 0.0, -0.003], [-0.00315, 0.0, -0.003], [-0.00314, 0.0, -0.003], [-0.00313, 0.0, -0.003], [-0.00312, 0.0, -0.003], [-0.0031100000000000004, 0.0, -0.003], [-0.0031, 0.0, -0.003], [-0.00309, 0.0, -0.003], [-0.0030800000000000003, 0.0, -0.003], [-0.0030700000000000002, 0.0, -0.003], [-0.0030600000000000002, 0.0, -0.003], [-0.0030499999999999998, 0.0, -0.003], [-0.00304, 0.0, -0.003], [-0.00303, 0.0, -0.003], [-0.00302, 0.0, -0.003], [-0.0030099999999999997, 0.0, -0.003], [-0.003, 0.0, -0.003], [-0.00299, 0.0, -0.003], [-0.00298, 0.0, -0.003], [-0.0029699999999999996, 0.0, -0.003], [-0.00296, 0.0, -0.003], [-0.0029500000000000004, 0.0, -0.003], [-0.00294, 0.0, -0.003], [-0.00293, 0.0, -0.003], [-0.00292, 0.0, -0.003], [-0.0029100000000000003, 0.0, -0.003], [-0.0029, 0.0, -0.003], [-0.0028899999999999998, 0.0, -0.003], [-0.0028799999999999997, 0.0, -0.003], [-0.00287, 0.0, -0.003], [-0.0028599999999999997, 0.0, -0.003], [-0.0028499999999999997, 0.0, -0.003], [-0.0028399999999999996, 0.0, -0.003], [-0.00283, 0.0, -0.003], [-0.0028200000000000005, 0.0, -0.003], [-0.00281, 0.0, -0.003], [-0.0028, 0.0, -0.003], [-0.00279, 0.0, -0.003], [-0.0027800000000000004, 0.0, -0.003], [-0.00277, 0.0, -0.003], [-0.00276, 0.0, -0.003], [-0.00275, 0.0, -0.003], [-0.0027400000000000002, 0.0, -0.003], [-0.00273, 0.0, -0.003], [-0.0027199999999999998, 0.0, -0.003], [-0.00271, 0.0, -0.003], [-0.0027, 0.0, -0.003], [-0.00269, 0.0, -0.003], [-0.0026799999999999997, 0.0, -0.003], [-0.00267, 0.0, -0.003], [-0.00266, 0.0, -0.003], [-0.00265, 0.0, -0.003], [-0.0026399999999999996, 0.0, -0.003], [-0.00263, 0.0, -0.003], [-0.00262, 0.0, -0.003], [-0.00261, 0.0, -0.003], [-0.0025999999999999994, 0.0, -0.003], [-0.00259, 0.0, -0.003], [-0.0025800000000000003, 0.0, -0.003], [-0.0025700000000000002, 0.0, -0.003], [-0.00256, 0.0, -0.003], [-0.0025499999999999997, 0.0, -0.003], [-0.00254, 0.0, -0.003], [-0.00253, 0.0, -0.003], [-0.00252, 0.0, -0.003], [-0.0025099999999999996, 0.0, -0.003], [-0.0025, 0.0, -0.003], [-0.00249, 0.0, -0.003], [-0.00248, 0.0, -0.003], [-0.0024699999999999995, 0.0, -0.003], [-0.00246, 0.0, -0.003], [-0.0024500000000000004, 0.0, -0.003], [-0.00244, 0.0, -0.003], [-0.00243, 0.0, -0.003], [-0.00242, 0.0, -0.003], [-0.0024100000000000002, 0.0, -0.003], [-0.0024, 0.0, -0.003], [-0.0023899999999999998, 0.0, -0.003], [-0.0023799999999999997, 0.0, -0.003], [-0.00237, 0.0, -0.003], [-0.0023599999999999997, 0.0, -0.003], [-0.0023499999999999997, 0.0, -0.003], [-0.00234, 0.0, -0.003], [-0.00233, 0.0, -0.003], [-0.00232, 0.0, -0.003], [-0.0023099999999999996, 0.0, -0.003], [-0.0023, 0.0, -0.003], [-0.00229, 0.0, -0.003], [-0.0022800000000000003, 0.0, -0.003], [-0.00227, 0.0, -0.003], [-0.0022600000000000003, 0.0, -0.003], [-0.00225, 0.0, -0.003], [-0.0022400000000000002, 0.0, -0.003], [-0.0022299999999999998, 0.0, -0.003], [-0.00222, 0.0, -0.003], [-0.00221, 0.0, -0.003], [-0.0022, 0.0, -0.003], [-0.00219, 0.0, -0.003], [-0.00218, 0.0, -0.003], [-0.00217, 0.0, -0.003], [-0.00216, 0.0, -0.003], [-0.00215, 0.0, -0.003], [-0.00214, 0.0, -0.003], [-0.00213, 0.0, -0.003], [-0.00212, 0.0, -0.003], [-0.00211, 0.0, -0.003], [-0.0021000000000000003, 0.0, -0.003], [-0.00209, 0.0, -0.003], [-0.0020800000000000003, 0.0, -0.003], [-0.00207, 0.0, -0.003], [-0.00206, 0.0, -0.003], [-0.0020499999999999997, 0.0, -0.003], [-0.00204, 0.0, -0.003], [-0.0020299999999999997, 0.0, -0.003], [-0.00202, 0.0, -0.003], [-0.0020099999999999996, 0.0, -0.003], [-0.002, 0.0, -0.003], [-0.0019899999999999996, 0.0, -0.003], [-0.00198, 0.0, -0.003], [-0.00197, 0.0, -0.003], [-0.00196, 0.0, -0.003], [-0.0019500000000000001, 0.0, -0.003], [-0.0019399999999999999, 0.0, -0.003], [-0.00193, 0.0, -0.003], [-0.0019199999999999998, 0.0, -0.003], [-0.0019100000000000002, 0.0, -0.003], [-0.0019, 0.0, -0.003], [-0.0018900000000000002, 0.0, -0.003], [-0.00188, 0.0, -0.003], [-0.0018700000000000001, 0.0, -0.003], [-0.0018599999999999999, 0.0, -0.003], [-0.00185, 0.0, -0.003], [-0.0018399999999999998, 0.0, -0.003], [-0.00183, 0.0, -0.003], [-0.0018199999999999998, 0.0, -0.003], [-0.00181, 0.0, -0.003], [-0.0017999999999999997, 0.0, -0.003], [-0.0017900000000000001, 0.0, -0.003], [-0.00178, 0.0, -0.003], [-0.00177, 0.0, -0.003], [-0.0017599999999999998, 0.0, -0.003], [-0.00175, 0.0, -0.003], [-0.0017399999999999998, 0.0, -0.003], [-0.00173, 0.0, -0.003], [-0.0017199999999999997, 0.0, -0.003], [-0.00171, 0.0, -0.003], [-0.0016999999999999997, 0.0, -0.003], [-0.0016899999999999999, 0.0, -0.003], [-0.0016799999999999996, 0.0, -0.003], [-0.0016699999999999998, 0.0, -0.003], [-0.0016599999999999998, 0.0, -0.003], [-0.0016500000000000004, 0.0, -0.003], [-0.0016400000000000002, 0.0, -0.003], [-0.00163, 0.0, -0.003], [-0.0016200000000000001, 0.0, -0.003], [-0.0016100000000000003, 0.0, -0.003], [-0.0016, 0.0, -0.003], [-0.0015899999999999998, 0.0, -0.003], [-0.00158, 0.0, -0.003], [-0.0015700000000000002, 0.0, -0.003], [-0.00156, 0.0, -0.003], [-0.0015499999999999997, 0.0, -0.003], [-0.0015400000000000001, 0.0, -0.003], [-0.0015300000000000003, 0.0, -0.003], [-0.00152, 0.0, -0.003], [-0.0015099999999999998, 0.0, -0.003], [-0.0015, 0.0, -0.003], [-0.0014900000000000002, 0.0, -0.003], [-0.00148, 0.0, -0.003], [-0.0014699999999999997, 0.0, -0.003], [-0.00146, 0.0, -0.003], [-0.0014500000000000001, 0.0, -0.003], [-0.0014399999999999999, 0.0, -0.003], [-0.0014299999999999996, 0.0, -0.003], [-0.0014199999999999998, 0.0, -0.003], [-0.0014100000000000002, 0.0, -0.003], [-0.0014, 0.0, -0.003], [-0.0013899999999999997, 0.0, -0.003], [-0.00138, 0.0, -0.003], [-0.0013700000000000001, 0.0, -0.003], [-0.0013599999999999999, 0.0, -0.003], [-0.0013499999999999996, 0.0, -0.003], [-0.0013399999999999998, 0.0, -0.003], [-0.00133, 0.0, -0.003], [-0.0013199999999999998, 0.0, -0.003], [-0.0013099999999999995, 0.0, -0.003], [-0.0012999999999999997, 0.0, -0.003], [-0.0012900000000000001, 0.0, -0.003], [-0.0012799999999999999, 0.0, -0.003], [-0.0012699999999999996, 0.0, -0.003], [-0.0012599999999999998, 0.0, -0.003], [-0.00125, 0.0, -0.003], [-0.0012399999999999998, 0.0, -0.003], [-0.0012299999999999995, 0.0, -0.003], [-0.0012199999999999997, 0.0, -0.003], [-0.00121, 0.0, -0.003], [-0.0011999999999999997, 0.0, -0.003], [-0.0011899999999999994, 0.0, -0.003], [-0.00118, 0.0, -0.003], [-0.0011700000000000005, 0.0, -0.003], [-0.0011600000000000002, 0.0, -0.003], [-0.0011500000000000004, 0.0, -0.003], [-0.0011400000000000002, 0.0, -0.003], [-0.0011300000000000004, 0.0, -0.003], [-0.0011200000000000001, 0.0, -0.003], [-0.0011100000000000003, 0.0, -0.003], [-0.0011, 0.0, -0.003], [-0.0010900000000000003, 0.0, -0.003], [-0.00108, 0.0, -0.003], [-0.0010700000000000002, 0.0, -0.003], [-0.00106, 0.0, -0.003], [-0.0010500000000000004, 0.0, -0.003], [-0.0010400000000000001, 0.0, -0.003], [-0.0010300000000000003, 0.0, -0.003], [-0.00102, 0.0, -0.003], [-0.0010100000000000003, 0.0, -0.003], [-0.001, 0.0, -0.003], [-0.0009900000000000002, 0.0, -0.003], [-0.00098, 0.0, -0.003], [-0.0009700000000000002, 0.0, -0.003], [-0.0009599999999999999, 0.0, -0.003], [-0.0009500000000000002, 0.0, -0.003], [-0.00094, 0.0, -0.003], [-0.0009300000000000002, 0.0, -0.003], [-0.0009199999999999999, 0.0, -0.003], [-0.0009100000000000001, 0.0, -0.003], [-0.0008999999999999999, 0.0, -0.003], [-0.0008900000000000002, 0.0, -0.003], [-0.0008799999999999999, 0.0, -0.003], [-0.0008700000000000001, 0.0, -0.003], [-0.0008599999999999999, 0.0, -0.003], [-0.0008500000000000001, 0.0, -0.003], [-0.0008399999999999998, 0.0, -0.003], [-0.0008300000000000001, 0.0, -0.003], [-0.0008199999999999999, 0.0, -0.003], [-0.0008100000000000001, 0.0, -0.003], [-0.0007999999999999998, 0.0, -0.003], [-0.00079, 0.0, -0.003], [-0.0007799999999999998, 0.0, -0.003], [-0.0007700000000000001, 0.0, -0.003], [-0.0007599999999999998, 0.0, -0.003], [-0.00075, 0.0, -0.003], [-0.0007399999999999998, 0.0, -0.003], [-0.00073, 0.0, -0.003], [-0.0007199999999999997, 0.0, -0.003], [-0.0007099999999999999, 0.0, -0.003], [-0.0006999999999999998, 0.0, -0.003], [-0.00069, 0.0, -0.003], [-0.0006799999999999997, 0.0, -0.003], [-0.0006699999999999999, 0.0, -0.003], [-0.0006599999999999997, 0.0, -0.003], [-0.0006499999999999999, 0.0, -0.003], [-0.0006399999999999997, 0.0, -0.003], [-0.0006299999999999999, 0.0, -0.003], [-0.0006199999999999997, 0.0, -0.003], [-0.0006099999999999999, 0.0, -0.003], [-0.0005999999999999996, 0.0, -0.003], [-0.0005899999999999998, 0.0, -0.003], [-0.0005799999999999997, 0.0, -0.003], [-0.0005699999999999999, 0.0, -0.003], [-0.0005600000000000005, 0.0, -0.003], [-0.0005500000000000002, 0.0, -0.003], [-0.00054, 0.0, -0.003], [-0.0005300000000000002, 0.0, -0.003], [-0.0005200000000000005, 0.0, -0.003], [-0.0005100000000000003, 0.0, -0.003], [-0.0005, 0.0, -0.003], [-0.0004900000000000002, 0.0, -0.003], [-0.00048000000000000045, 0.0, -0.003], [-0.0004700000000000002, 0.0, -0.003], [-0.00045999999999999996, 0.0, -0.003], [-0.0004500000000000002, 0.0, -0.003], [-0.0004400000000000004, 0.0, -0.003], [-0.00043000000000000015, 0.0, -0.003], [-0.0004199999999999999, 0.0, -0.003], [-0.00041000000000000015, 0.0, -0.003], [-0.00040000000000000034, 0.0, -0.003], [-0.0003900000000000001, 0.0, -0.003], [-0.0003799999999999999, 0.0, -0.003], [-0.0003700000000000001, 0.0, -0.003], [-0.0003600000000000003, 0.0, -0.003], [-0.0003500000000000001, 0.0, -0.003], [-0.00033999999999999986, 0.0, -0.003], [-0.00033000000000000005, 0.0, -0.003], [-0.0003200000000000003, 0.0, -0.003], [-0.00031000000000000005, 0.0, -0.003], [-0.0002999999999999998, 0.0, -0.003], [-0.00029000000000000006, 0.0, -0.003], [-0.00028000000000000025, 0.0, -0.003], [-0.00027, 0.0, -0.003], [-0.00025999999999999976, 0.0, -0.003], [-0.00025, 0.0, -0.003], [-0.00024000000000000022, 0.0, -0.003], [-0.00022999999999999998, 0.0, -0.003], [-0.00021999999999999976, 0.0, -0.003], [-0.00020999999999999995, 0.0, -0.003], [-0.00020000000000000017, 0.0, -0.003], [-0.00018999999999999996, 0.0, -0.003], [-0.0001799999999999997, 0.0, -0.003], [-0.00016999999999999993, 0.0, -0.003], [-0.00016000000000000015, 0.0, -0.003], [-0.0001499999999999999, 0.0, -0.003], [-0.0001399999999999997, 0.0, -0.003], [-0.00012999999999999988, 0.0, -0.003], [-0.00012000000000000011, 0.0, -0.003], [-0.00010999999999999988, 0.0, -0.003], [-9.999999999999964e-05, 0.0, -0.003], [-8.999999999999986e-05, 0.0, -0.003], [-8.000000000000007e-05, 0.0, -0.003], [-6.999999999999984e-05, 0.0, -0.003], [-5.999999999999961e-05, 0.0, -0.003], [-4.999999999999982e-05, 0.0, -0.003], [-4.000000000000004e-05, 0.0, -0.003], [-2.9999999999999804e-05, 0.0, -0.003], [-1.9999999999999575e-05, 0.0, -0.003], [-9.999999999999787e-06, 0.0, -0.003], [0.0, 0.0, -0.003], [9.999999999999787e-06, 0.0, -0.003], [2.0000000000000462e-05, 0.0, -0.003], [3.0000000000000248e-05, 0.0, -0.003], [4.000000000000004e-05, 0.0, -0.003], [5.0000000000000714e-05, 0.0, -0.003], [6.0000000000000496e-05, 0.0, -0.003], [6.99999999999994e-05, 0.0, -0.003], [8.000000000000007e-05, 0.0, -0.003], [8.999999999999986e-05, 0.0, -0.003], [9.999999999999964e-05, 0.0, -0.003], [0.00010999999999999943, 0.0, -0.003], [0.00012000000000000011, 0.0, -0.003], [0.00012999999999999988, 0.0, -0.003], [0.0001399999999999997, 0.0, -0.003], [0.00014999999999999947, 0.0, -0.003], [0.00016000000000000015, 0.0, -0.003], [0.00016999999999999993, 0.0, -0.003], [0.0001799999999999997, 0.0, -0.003], [0.0001899999999999995, 0.0, -0.003], [0.00020000000000000017, 0.0, -0.003], [0.00020999999999999995, 0.0, -0.003], [0.00021999999999999976, 0.0, -0.003], [0.00022999999999999955, 0.0, -0.003], [0.00024000000000000022, 0.0, -0.003], [0.00025, 0.0, -0.003], [0.00025999999999999976, 0.0, -0.003], [0.00026999999999999957, 0.0, -0.003], [0.00028000000000000025, 0.0, -0.003], [0.00029000000000000006, 0.0, -0.003], [0.0002999999999999998, 0.0, -0.003], [0.0003099999999999996, 0.0, -0.003], [0.0003200000000000003, 0.0, -0.003], [0.00033000000000000005, 0.0, -0.003], [0.00033999999999999986, 0.0, -0.003], [0.00034999999999999967, 0.0, -0.003], [0.0003600000000000003, 0.0, -0.003], [0.0003700000000000001, 0.0, -0.003], [0.0003799999999999999, 0.0, -0.003], [0.00038999999999999967, 0.0, -0.003], [0.00040000000000000034, 0.0, -0.003], [0.00041000000000000015, 0.0, -0.003], [0.0004199999999999999, 0.0, -0.003], [0.0004299999999999997, 0.0, -0.003], [0.0004400000000000004, 0.0, -0.003], [0.0004500000000000002, 0.0, -0.003], [0.00045999999999999996, 0.0, -0.003], [0.00046999999999999977, 0.0, -0.003], [0.00048000000000000045, 0.0, -0.003], [0.0004900000000000002, 0.0, -0.003], [0.0005, 0.0, -0.003], [0.0005099999999999998, 0.0, -0.003], [0.0005200000000000005, 0.0, -0.003], [0.0005300000000000002, 0.0, -0.003], [0.00054, 0.0, -0.003], [0.0005499999999999998, 0.0, -0.003], [0.0005600000000000005, 0.0, -0.003], [0.0005700000000000003, 0.0, -0.003], [0.0005800000000000001, 0.0, -0.003], [0.0005899999999999998, 0.0, -0.003], [0.0006000000000000005, 0.0, -0.003], [0.0006100000000000003, 0.0, -0.003], [0.0006200000000000001, 0.0, -0.003], [0.0006299999999999999, 0.0, -0.003], [0.0006400000000000006, 0.0, -0.003], [0.0006500000000000004, 0.0, -0.003], [0.0006600000000000001, 0.0, -0.003], [0.0006699999999999999, 0.0, -0.003], [0.0006800000000000006, 0.0, -0.003], [0.0006899999999999995, 0.0, -0.003], [0.0006999999999999993, 0.0, -0.003], [0.0007099999999999999, 0.0, -0.003], [0.0007199999999999997, 0.0, -0.003], [0.0007299999999999995, 0.0, -0.003], [0.0007400000000000002, 0.0, -0.003], [0.00075, 0.0, -0.003], [0.0007599999999999998, 0.0, -0.003], [0.0007699999999999995, 0.0, -0.003], [0.0007799999999999993, 0.0, -0.003], [0.00079, 0.0, -0.003], [0.0007999999999999998, 0.0, -0.003], [0.0008099999999999996, 0.0, -0.003], [0.0008200000000000003, 0.0, -0.003], [0.0008300000000000001, 0.0, -0.003], [0.0008399999999999998, 0.0, -0.003], [0.0008499999999999996, 0.0, -0.003], [0.0008599999999999994, 0.0, -0.003], [0.0008700000000000001, 0.0, -0.003], [0.0008799999999999999, 0.0, -0.003], [0.0008899999999999997, 0.0, -0.003], [0.0009000000000000004, 0.0, -0.003], [0.0009100000000000001, 0.0, -0.003], [0.0009199999999999999, 0.0, -0.003], [0.0009299999999999997, 0.0, -0.003], [0.0009399999999999995, 0.0, -0.003], [0.0009500000000000002, 0.0, -0.003], [0.0009599999999999999, 0.0, -0.003], [0.0009699999999999997, 0.0, -0.003], [0.0009800000000000004, 0.0, -0.003], [0.0009900000000000002, 0.0, -0.003], [0.001, 0.0, -0.003], [0.0010099999999999998, 0.0, -0.003], [0.0010199999999999996, 0.0, -0.003], [0.0010300000000000003, 0.0, -0.003], [0.0010400000000000001, 0.0, -0.003], [0.0010499999999999997, 0.0, -0.003], [0.0010600000000000004, 0.0, -0.003], [0.0010700000000000002, 0.0, -0.003], [0.00108, 0.0, -0.003], [0.0010899999999999998, 0.0, -0.003], [0.0010999999999999996, 0.0, -0.003], [0.0011100000000000003, 0.0, -0.003], [0.0011200000000000001, 0.0, -0.003], [0.00113, 0.0, -0.003], [0.0011400000000000006, 0.0, -0.003], [0.0011500000000000004, 0.0, -0.003], [0.0011600000000000002, 0.0, -0.003], [0.00117, 0.0, -0.003], [0.0011799999999999996, 0.0, -0.003], [0.0011900000000000003, 0.0, -0.003], [0.0012000000000000001, 0.0, -0.003], [0.00121, 0.0, -0.003], [0.0012200000000000006, 0.0, -0.003], [0.0012300000000000004, 0.0, -0.003], [0.0012400000000000002, 0.0, -0.003], [0.00125, 0.0, -0.003], [0.0012599999999999998, 0.0, -0.003], [0.0012700000000000005, 0.0, -0.003], [0.0012800000000000003, 0.0, -0.003], [0.0012900000000000001, 0.0, -0.003], [0.0013000000000000008, 0.0, -0.003], [0.0013100000000000004, 0.0, -0.003], [0.0013200000000000002, 0.0, -0.003], [0.00133, 0.0, -0.003], [0.0013399999999999998, 0.0, -0.003], [0.0013500000000000005, 0.0, -0.003], [0.0013600000000000003, 0.0, -0.003], [0.0013700000000000001, 0.0, -0.003], [0.0013800000000000008, 0.0, -0.003], [0.0013900000000000006, 0.0, -0.003], [0.0014000000000000004, 0.0, -0.003], [0.0014100000000000002, 0.0, -0.003], [0.0014199999999999998, 0.0, -0.003], [0.0014300000000000005, 0.0, -0.003], [0.0014400000000000003, 0.0, -0.003], [0.0014500000000000001, 0.0, -0.003], [0.0014600000000000008, 0.0, -0.003], [0.0014700000000000006, 0.0, -0.003], [0.0014800000000000004, 0.0, -0.003], [0.0014900000000000002, 0.0, -0.003], [0.0015, 0.0, -0.003], [0.0015100000000000007, 0.0, -0.003], [0.0015200000000000005, 0.0, -0.003], [0.0015300000000000003, 0.0, -0.003], [0.001540000000000001, 0.0, -0.003], [0.0015500000000000008, 0.0, -0.003], [0.0015600000000000004, 0.0, -0.003], [0.0015700000000000002, 0.0, -0.003], [0.00158, 0.0, -0.003], [0.0015900000000000007, 0.0, -0.003], [0.0016000000000000005, 0.0, -0.003], [0.0016100000000000003, 0.0, -0.003], [0.001620000000000001, 0.0, -0.003], [0.001629999999999999, 0.0, -0.003], [0.0016399999999999997, 0.0, -0.003], [0.0016499999999999996, 0.0, -0.003], [0.0016599999999999991, 0.0, -0.003], [0.0016699999999999998, 0.0, -0.003], [0.0016799999999999996, 0.0, -0.003], [0.0016899999999999994, 0.0, -0.003], [0.0016999999999999993, 0.0, -0.003], [0.001709999999999999, 0.0, -0.003], [0.0017199999999999997, 0.0, -0.003], [0.0017299999999999996, 0.0, -0.003], [0.0017399999999999994, 0.0, -0.003], [0.00175, 0.0, -0.003], [0.0017599999999999998, 0.0, -0.003], [0.0017699999999999997, 0.0, -0.003], [0.0017799999999999995, 0.0, -0.003], [0.001789999999999999, 0.0, -0.003], [0.0017999999999999997, 0.0, -0.003], [0.0018099999999999995, 0.0, -0.003], [0.0018199999999999994, 0.0, -0.003], [0.00183, 0.0, -0.003], [0.0018399999999999998, 0.0, -0.003], [0.0018499999999999996, 0.0, -0.003], [0.0018599999999999995, 0.0, -0.003], [0.0018699999999999993, 0.0, -0.003], [0.00188, 0.0, -0.003], [0.0018899999999999998, 0.0, -0.003], [0.0018999999999999996, 0.0, -0.003], [0.0019100000000000002, 0.0, -0.003], [0.0019199999999999998, 0.0, -0.003], [0.0019299999999999996, 0.0, -0.003], [0.0019399999999999995, 0.0, -0.003], [0.0019499999999999993, 0.0, -0.003], [0.00196, 0.0, -0.003], [0.00197, 0.0, -0.003], [0.0019799999999999996, 0.0, -0.003], [0.00199, 0.0, -0.003], [0.002, 0.0, -0.003], [0.0020099999999999996, 0.0, -0.003], [0.0020199999999999997, 0.0, -0.003], [0.0020299999999999993, 0.0, -0.003], [0.00204, 0.0, -0.003], [0.0020499999999999997, 0.0, -0.003], [0.0020599999999999998, 0.0, -0.003], [0.0020700000000000002, 0.0, -0.003], [0.0020800000000000003, 0.0, -0.003], [0.00209, 0.0, -0.003], [0.0020999999999999994, 0.0, -0.003], [0.0021099999999999995, 0.0, -0.003], [0.00212, 0.0, -0.003], [0.00213, 0.0, -0.003], [0.0021399999999999995, 0.0, -0.003], [0.0021500000000000004, 0.0, -0.003], [0.00216, 0.0, -0.003], [0.00217, 0.0, -0.003], [0.0021799999999999996, 0.0, -0.003], [0.0021899999999999997, 0.0, -0.003], [0.0022, 0.0, -0.003], [0.00221, 0.0, -0.003], [0.0022199999999999998, 0.0, -0.003], [0.00223, 0.0, -0.003], [0.0022400000000000002, 0.0, -0.003], [0.00225, 0.0, -0.003], [0.00226, 0.0, -0.003], [0.0022699999999999994, 0.0, -0.003], [0.0022800000000000003, 0.0, -0.003], [0.00229, 0.0, -0.003], [0.0023, 0.0, -0.003], [0.0023100000000000004, 0.0, -0.003], [0.0023200000000000004, 0.0, -0.003], [0.00233, 0.0, -0.003], [0.00234, 0.0, -0.003], [0.0023499999999999997, 0.0, -0.003], [0.00236, 0.0, -0.003], [0.00237, 0.0, -0.003], [0.0023799999999999997, 0.0, -0.003], [0.0023900000000000006, 0.0, -0.003], [0.0024000000000000002, 0.0, -0.003], [0.0024100000000000002, 0.0, -0.003], [0.00242, 0.0, -0.003], [0.00243, 0.0, -0.003], [0.0024400000000000003, 0.0, -0.003], [0.0024500000000000004, 0.0, -0.003], [0.00246, 0.0, -0.003], [0.002470000000000001, 0.0, -0.003], [0.0024800000000000004, 0.0, -0.003], [0.00249, 0.0, -0.003], [0.0025, 0.0, -0.003], [0.0025099999999999996, 0.0, -0.003], [0.0025200000000000005, 0.0, -0.003], [0.00253, 0.0, -0.003], [0.00254, 0.0, -0.003], [0.0025500000000000006, 0.0, -0.003], [0.0025600000000000006, 0.0, -0.003], [0.0025700000000000002, 0.0, -0.003], [0.0025800000000000003, 0.0, -0.003], [0.00259, 0.0, -0.003], [0.0026000000000000007, 0.0, -0.003], [0.0026100000000000003, 0.0, -0.003], [0.00262, 0.0, -0.003], [0.002630000000000001, 0.0, -0.003], [0.0026400000000000004, 0.0, -0.003], [0.0026500000000000004, 0.0, -0.003], [0.00266, 0.0, -0.003], [0.00267, 0.0, -0.003], [0.0026800000000000005, 0.0, -0.003], [0.0026900000000000006, 0.0, -0.003], [0.0027, 0.0, -0.003], [0.002710000000000001, 0.0, -0.003], [0.0027200000000000006, 0.0, -0.003], [0.0027300000000000002, 0.0, -0.003], [0.0027400000000000002, 0.0, -0.003], [0.00275, 0.0, -0.003], [0.0027600000000000007, 0.0, -0.003], [0.0027700000000000003, 0.0, -0.003], [0.0027800000000000004, 0.0, -0.003], [0.002790000000000001, 0.0, -0.003], [0.002800000000000001, 0.0, -0.003], [0.0028100000000000004, 0.0, -0.003], [0.0028200000000000005, 0.0, -0.003], [0.00283, 0.0, -0.003], [0.002840000000000001, 0.0, -0.003], [0.0028500000000000005, 0.0, -0.003], [0.00286, 0.0, -0.003], [0.002870000000000001, 0.0, -0.003], [0.002879999999999999, 0.0, -0.003], [0.0028899999999999998, 0.0, -0.003], [0.0028999999999999994, 0.0, -0.003], [0.0029099999999999994, 0.0, -0.003], [0.00292, 0.0, -0.003], [0.00293, 0.0, -0.003], [0.0029399999999999995, 0.0, -0.003], [0.0029499999999999995, 0.0, -0.003], [0.002959999999999999, 0.0, -0.003], [0.0029699999999999996, 0.0, -0.003], [0.0029799999999999996, 0.0, -0.003], [0.002989999999999999, 0.0, -0.003], [0.003, 0.0, -0.003], [0.0030099999999999997, 0.0, -0.003], [0.0030199999999999997, 0.0, -0.003], [0.0030299999999999993, 0.0, -0.003], [0.0030399999999999993, 0.0, -0.003], [0.0030499999999999998, 0.0, -0.003], [0.00306, 0.0, -0.003], [0.0030699999999999994, 0.0, -0.003], [0.0030800000000000003, 0.0, -0.003], [0.00309, 0.0, -0.003], [0.0030999999999999995, 0.0, -0.003], [0.0031099999999999995, 0.0, -0.003], [0.003119999999999999, 0.0, -0.003], [0.00313, 0.0, -0.003], [0.0031399999999999996, 0.0, -0.003], [0.0031499999999999996, 0.0, -0.003], [0.00316, 0.0, -0.003], [0.00317, 0.0, -0.003], [0.0031799999999999997, 0.0, -0.003], [0.0031899999999999997, 0.0, -0.003], [0.0031999999999999993, 0.0, -0.003], [0.00321, 0.0, -0.003], [0.0032199999999999998, 0.0, -0.003], [0.0032299999999999994, 0.0, -0.003], [0.0032400000000000003, 0.0, -0.003], [0.00325, 0.0, -0.003], [0.00326, 0.0, -0.003], [0.0032699999999999995, 0.0, -0.003], [0.0032799999999999995, 0.0, -0.003], [0.00329, 0.0, -0.003], [0.0033, 0.0, -0.003], [0.0033099999999999996, 0.0, -0.003], [0.0033200000000000005, 0.0, -0.003], [0.00333, 0.0, -0.003], [0.0033399999999999997, 0.0, -0.003], [0.0033499999999999997, 0.0, -0.003], [0.0033599999999999993, 0.0, -0.003], [0.00337, 0.0, -0.003], [0.0033799999999999998, 0.0, -0.003], [0.00339, 0.0, -0.003], [0.0034000000000000002, 0.0, -0.003], [0.0034100000000000003, 0.0, -0.003], [0.00342, 0.0, -0.003], [0.00343, 0.0, -0.003], [0.0034399999999999995, 0.0, -0.003], [0.0034500000000000004, 0.0, -0.003], [0.00346, 0.0, -0.003], [0.0034699999999999996, 0.0, -0.003], [0.0034800000000000005, 0.0, -0.003], [0.00349, 0.0, -0.003], [0.0035, 0.0, -0.003], [0.0035099999999999997, 0.0, -0.003], [0.0035199999999999997, 0.0, -0.003], [0.00353, 0.0, -0.003], [0.00354, 0.0, -0.003], [0.0035499999999999998, 0.0, -0.003], [0.0035600000000000007, 0.0, -0.003], [0.0035700000000000003, 0.0, -0.003], [0.0035800000000000003, 0.0, -0.003], [0.00359, 0.0, -0.003], [0.0035999999999999995, 0.0, -0.003], [0.0036100000000000004, 0.0, -0.003], [0.00362, 0.0, -0.003], [0.00363, 0.0, -0.003], [0.0036400000000000004, 0.0, -0.003], [0.0036500000000000005, 0.0, -0.003], [0.00366, 0.0, -0.003], [0.00367, 0.0, -0.003], [0.0036799999999999997, 0.0, -0.003], [0.0036900000000000006, 0.0, -0.003], [0.0037, 0.0, -0.003], [0.0037099999999999998, 0.0, -0.003], [0.0037200000000000006, 0.0, -0.003], [0.0037300000000000002, 0.0, -0.003], [0.0037400000000000003, 0.0, -0.003], [0.00375, 0.0, -0.003], [0.00376, 0.0, -0.003], [0.0037700000000000003, 0.0, -0.003], [0.0037800000000000004, 0.0, -0.003], [0.00379, 0.0, -0.003], [0.003800000000000001, 0.0, -0.003], [0.0038100000000000005, 0.0, -0.003], [0.0038200000000000005, 0.0, -0.003], [0.00383, 0.0, -0.003], [0.0038399999999999997, 0.0, -0.003], [0.0038500000000000006, 0.0, -0.003], [0.00386, 0.0, -0.003], [0.00387, 0.0, -0.003], [0.0038800000000000006, 0.0, -0.003], [0.0038900000000000007, 0.0, -0.003], [0.0039000000000000003, 0.0, -0.003], [0.00391, 0.0, -0.003], [0.00392, 0.0, -0.003], [0.00393, 0.0, -0.003], [0.003940000000000001, 0.0, -0.003], [0.00395, 0.0, -0.003], [0.003960000000000001, 0.0, -0.003], [0.0039700000000000004, 0.0, -0.003], [0.00398, 0.0, -0.003], [0.0039900000000000005, 0.0, -0.003], [0.004, 0.0, -0.003], [0.00401, 0.0, -0.003], [0.004019999999999999, 0.0, -0.003], [0.0040300000000000015, 0.0, -0.003], [0.004040000000000001, 0.0, -0.003], [0.004050000000000001, 0.0, -0.003], [0.00406, 0.0, -0.003], [0.004070000000000001, 0.0, -0.003], [0.00408, 0.0, -0.003], [0.00409, 0.0, -0.003], [0.004100000000000001, 0.0, -0.003], [0.004110000000000001, 0.0, -0.003], [0.004120000000000001, 0.0, -0.003], [0.004129999999999999, 0.0, -0.003], [0.004139999999999999, 0.0, -0.003], [0.004149999999999998, 0.0, -0.003], [0.0041600000000000005, 0.0, -0.003], [0.00417, 0.0, -0.003], [0.00418, 0.0, -0.003], [0.004189999999999999, 0.0, -0.003], [0.004199999999999999, 0.0, -0.003], [0.004209999999999999, 0.0, -0.003], [0.004219999999999999, 0.0, -0.003], [0.00423, 0.0, -0.003], [0.00424, 0.0, -0.003], [0.00425, 0.0, -0.003], [0.00426, 0.0, -0.003], [0.0042699999999999995, 0.0, -0.003], [0.004279999999999999, 0.0, -0.003], [0.0042899999999999995, 0.0, -0.003], [0.004299999999999999, 0.0, -0.003], [0.004309999999999999, 0.0, -0.003], [0.00432, 0.0, -0.003], [0.00433, 0.0, -0.003], [0.00434, 0.0, -0.003], [0.00435, 0.0, -0.003], [0.004359999999999999, 0.0, -0.003], [0.004369999999999999, 0.0, -0.003], [0.004379999999999999, 0.0, -0.003], [0.004390000000000001, 0.0, -0.003], [0.0044, 0.0, -0.003], [0.00441, 0.0, -0.003], [0.00442, 0.0, -0.003], [0.00443, 0.0, -0.003], [0.0044399999999999995, 0.0, -0.003], [0.004449999999999999, 0.0, -0.003], [0.004459999999999999, 0.0, -0.003], [0.004469999999999999, 0.0, -0.003], [0.0044800000000000005, 0.0, -0.003], [0.00449, 0.0, -0.003], [0.0045, 0.0, -0.003], [0.00451, 0.0, -0.003], [0.00452, 0.0, -0.003], [0.004529999999999999, 0.0, -0.003], [0.004539999999999999, 0.0, -0.003], [0.004550000000000001, 0.0, -0.003], [0.004560000000000001, 0.0, -0.003], [0.00457, 0.0, -0.003], [0.00458, 0.0, -0.003], [0.0045899999999999995, 0.0, -0.003], [0.0046, 0.0, -0.003], [0.0046099999999999995, 0.0, -0.003], [0.004619999999999999, 0.0, -0.003], [0.004629999999999999, 0.0, -0.003], [0.004640000000000001, 0.0, -0.003], [0.0046500000000000005, 0.0, -0.003], [0.00466, 0.0, -0.003], [0.00467, 0.0, -0.003], [0.00468, 0.0, -0.003], [0.00469, 0.0, -0.003], [0.004699999999999999, 0.0, -0.003], [0.004710000000000001, 0.0, -0.003], [0.00472, 0.0, -0.003], [0.004730000000000001, 0.0, -0.003], [0.00474, 0.0, -0.003], [0.00475, 0.0, -0.003], [0.0047599999999999995, 0.0, -0.003], [0.00477, 0.0, -0.003], [0.0047799999999999995, 0.0, -0.003], [0.004789999999999999, 0.0, -0.003], [0.0048000000000000004, 0.0, -0.003], [0.004810000000000001, 0.0, -0.003], [0.0048200000000000005, 0.0, -0.003], [0.00483, 0.0, -0.003], [0.00484, 0.0, -0.003], [0.004849999999999999, 0.0, -0.003], [0.00486, 0.0, -0.003], [0.004870000000000001, 0.0, -0.003], [0.004880000000000001, 0.0, -0.003], [0.00489, 0.0, -0.003], [0.004900000000000001, 0.0, -0.003], [0.00491, 0.0, -0.003], [0.00492, 0.0, -0.003], [0.0049299999999999995, 0.0, -0.003], [0.004939999999999999, 0.0, -0.003], [0.0049499999999999995, 0.0, -0.003], [0.004960000000000001, 0.0, -0.003], [0.0049700000000000005, 0.0, -0.003], [0.00498, 0.0, -0.003], [0.0049900000000000005, 0.0, -0.003], [0.005, 0.0, -0.003], [0.00501, 0.0, -0.003], [0.005019999999999999, 0.0, -0.003], [0.0050300000000000015, 0.0, -0.003], [0.005040000000000001, 0.0, -0.003], [0.005050000000000001, 0.0, -0.003], [0.00506, 0.0, -0.003], [0.00507, 0.0, -0.003], [0.00508, 0.0, -0.003], [0.00509, 0.0, -0.003], [0.0050999999999999995, 0.0, -0.003], [0.005109999999999999, 0.0, -0.003], [0.005120000000000001, 0.0, -0.003], [0.005130000000000001, 0.0, -0.003], [0.0051400000000000005, 0.0, -0.003], [0.00515, 0.0, -0.003], [0.0051600000000000005, 0.0, -0.003], [0.00517, 0.0, -0.003], [0.00518, 0.0, -0.003], [0.005190000000000001, 0.0, -0.003], [0.0052000000000000015, 0.0, -0.003], [0.005210000000000001, 0.0, -0.003], [0.005220000000000001, 0.0, -0.003], [0.00523, 0.0, -0.003], [0.00524, 0.0, -0.003], [0.00525, 0.0, -0.003], [0.00526, 0.0, -0.003], [0.0052699999999999995, 0.0, -0.003], [0.005280000000000001, 0.0, -0.003], [0.005290000000000001, 0.0, -0.003], [0.005300000000000001, 0.0, -0.003], [0.0053100000000000005, 0.0, -0.003], [0.00532, 0.0, -0.003], [0.00533, 0.0, -0.003], [0.00534, 0.0, -0.003], [0.0053500000000000015, 0.0, -0.003], [0.005360000000000001, 0.0, -0.003], [0.005370000000000001, 0.0, -0.003], [0.005379999999999999, 0.0, -0.003], [0.005389999999999999, 0.0, -0.003], [0.0053999999999999986, 0.0, -0.003], [0.00541, 0.0, -0.003], [0.00542, 0.0, -0.003], [0.00543, 0.0, -0.003], [0.0054399999999999995, 0.0, -0.003], [0.005449999999999999, 0.0, -0.003], [0.005459999999999999, 0.0, -0.003], [0.005469999999999999, 0.0, -0.003], [0.0054800000000000005, 0.0, -0.003], [0.00549, 0.0, -0.003], [0.0055, 0.0, -0.003], [0.00551, 0.0, -0.003], [0.00552, 0.0, -0.003], [0.005529999999999999, 0.0, -0.003], [0.005539999999999999, 0.0, -0.003], [0.0055499999999999985, 0.0, -0.003], [0.005559999999999999, 0.0, -0.003], [0.00557, 0.0, -0.003], [0.00558, 0.0, -0.003], [0.0055899999999999995, 0.0, -0.003], [0.0056, 0.0, -0.003], [0.0056099999999999995, 0.0, -0.003], [0.005619999999999999, 0.0, -0.003], [0.005629999999999999, 0.0, -0.003], [0.005640000000000001, 0.0, -0.003], [0.0056500000000000005, 0.0, -0.003], [0.00566, 0.0, -0.003], [0.00567, 0.0, -0.003], [0.005679999999999999, 0.0, -0.003], [0.00569, 0.0, -0.003], [0.005699999999999999, 0.0, -0.003], [0.005709999999999999, 0.0, -0.003], [0.0057199999999999985, 0.0, -0.003], [0.005730000000000001, 0.0, -0.003], [0.00574, 0.0, -0.003], [0.00575, 0.0, -0.003], [0.0057599999999999995, 0.0, -0.003], [0.00577, 0.0, -0.003], [0.0057799999999999995, 0.0, -0.003], [0.005789999999999999, 0.0, -0.003], [0.0058000000000000005, 0.0, -0.003], [0.005810000000000001, 0.0, -0.003], [0.0058200000000000005, 0.0, -0.003], [0.00583, 0.0, -0.003], [0.00584, 0.0, -0.003], [0.005849999999999999, 0.0, -0.003], [0.00586, 0.0, -0.003], [0.005869999999999999, 0.0, -0.003], [0.005879999999999999, 0.0, -0.003], [0.00589, 0.0, -0.003], [0.005900000000000001, 0.0, -0.003], [0.00591, 0.0, -0.003], [0.00592, 0.0, -0.003], [0.0059299999999999995, 0.0, -0.003], [0.005939999999999999, 0.0, -0.003], [0.0059499999999999996, 0.0, -0.003], [0.005960000000000001, 0.0, -0.003], [0.0059700000000000005, 0.0, -0.003], [0.00598, 0.0, -0.003], [0.0059900000000000005, 0.0, -0.003], [0.006, 0.0, -0.003]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "style": {"arrows": {"x": {"color": null, "show": true}, "y": {"color": null, "show": true}, "z": {"color": null, "show": true}}, "color": null, "description": {"show": null, "text": null}, "label": "Sensor, z=-3mm", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}, "pixel": {"color": null, "size": 1, "symbol": null}, "size": null}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}], "results": [{"computation": "FEM (ANSYS)", "field": "B", "kwargs": {"sources": [2678036084816], "sensors": [2679646060352, 2678042525760], "sumup": false, "pixel_agg": null, "squeeze": true, "output": "dataframe"}, "order": ["source", "path", "sensor", "pixel", "value"], "value": {"Bx": [0.0016329631331849, 0.0013783437156068, 0.0006425539855724, 0.0016472862497218, 0.0013848589700034, 0.0006437835106329, 0.0016608812418537, 0.0013916103983202, 0.0006449515925571, 0.0016744762339856, 0.0013983618266369, 0.0006461892761524, 0.0016887535017375, 0.0014051155997336, 0.0006474597702607, 0.0017029245721215, 0.0014118154064706, 0.0006487302643689, 0.0017174267578112, 0.0014182791950647, 0.0006500007584772, 0.0017322816346829, 0.0014254817225176, 0.0006512458373246, 0.0017471365115546, 0.0014320790748866, 0.0006523567833393, 0.0017619680678991, 0.0014389903755416, 0.0006535120545922, 0.0017767941254528, 0.0014459016761966, 0.0006548231839424, 0.0017923173468457, 0.0014528129768516, 0.0006560159836333, 0.0018077079357075, 0.0014596320497957, 0.0006572087833241, 0.0018230985245693, 0.0014666497556828, 0.0006584015830149, 0.0018392196700937, 0.0014736674615699, 0.0006595943827058, 0.0018544376553512, 0.0014806653092477, 0.0006608231538678, 0.0018708146897641, 0.0014876935279684, 0.0006620271791242, 0.001887191724177, 0.0014947803912751, 0.000663217490521, 0.0019035355211519, 0.0015017560077748, 0.0006644108642605, 0.0019199338704164, 0.0015088527785706, 0.000665604238, 0.0019362365061665, 0.0015160720632767, 0.0006667116085434, 0.0019535117220533, 0.0015232421152799, 0.0006679443821525, 0.0019707869379402, 0.0015305624768372, 0.0006691711998232, 0.0019878253019507, 0.0015377264353053, 0.0006703330369563, 0.0020050458607282, 0.0015448118676366, 0.0006714948740894, 0.0020222664195058, 0.0015521200283344, 0.0006726021231929, 0.0020403278457327, 0.0015594339704807, 0.0006737190774651001, 0.0020586197166087, 0.0015668229563954997, 0.000674966279505, 0.0020766075566777, 0.0015742136260662, 0.0006760448604877, 0.0020950227909233, 0.0015815172847977, 0.0006771997303725, 0.0021133140984596, 0.0015888844670857, 0.0006783480074802, 0.0021320523253891, 0.0015962516493738, 0.0006794359640171, 0.0021507905523186, 0.0016037262248085, 0.0006806155457439, 0.0021703158441757, 0.0016113958888952, 0.000681649578419, 0.0021894914305578, 0.001619065552982, 0.0006827892514638, 0.0022088241397709, 0.0016263733897630003, 0.0006839289245085, 0.0022287050575117, 0.0016340251544381, 0.0006850685975533, 0.0022490118499881, 0.0016416769191132, 0.0006860076067621, 0.0022688852430810995, 0.0016493603744325, 0.0006871767136282, 0.002288831375156, 0.0016569095955802, 0.0006882982220667, 0.0023094988870818, 0.001664766157509, 0.0006894261459829, 0.0023308492784309, 0.0016724075254719998, 0.0006904517167238, 0.0023520935461057, 0.001680146809555, 0.0006914772874648, 0.0023734500009262, 0.001687775944329, 0.0006924982056227, 0.0023945387117662, 0.0016958218556349, 0.0006935186321854, 0.002415759886634, 0.0017036219200486, 0.0006945795099043, 0.0024385760207738, 0.0017108347118184, 0.0006956403876232, 0.0024612961361635, 0.0017190800266993, 0.0006967005968568, 0.0024834560222856, 0.0017273610715756, 0.0006976997986013, 0.0025058308719841, 0.001735189731829, 0.0006986990003457, 0.0025282057216826, 0.0017429904237024, 0.0006996982020902, 0.0025517411078503, 0.0017513049341659, 0.0007005981734269, 0.002575663317951, 0.0017592263696227, 0.0007016177856407, 0.0025995855280517, 0.0017672112256562, 0.0007026373978545, 0.0026239257603504, 0.0017753889342023, 0.0007036762867132, 0.0026486456984659, 0.0017830200723742, 0.0007046020124058, 0.0026724877040988, 0.0017915001944301, 0.0007055277380984, 0.0026978487601367, 0.001799657315864, 0.000706453463791, 0.002722736045493, 0.001807814437298, 0.0007073791894836, 0.0027474515479462, 0.001815971558732, 0.0007083209007471, 0.0027742354800825, 0.0018243364652079, 0.0007092790249207, 0.0027991478611346, 0.0018322337046678, 0.0007102429744657, 0.0028259731320999, 0.001840551353003, 0.000711092718499, 0.0028527984030653, 0.0018488862208982, 0.0007119543569326, 0.0028800580238128, 0.0018571789729023, 0.0007128159953661, 0.002906295663824, 0.0018654717249064, 0.0007136300276875, 0.0029345388263764, 0.0018738472912656, 0.0007145556338243, 0.0029627707941011, 0.0018821211588831, 0.0007154538130862, 0.0029905382775154, 0.0018903772334782, 0.0007162880211296, 0.0030183057609296, 0.0018989883761688, 0.0007171493249729, 0.0030472559992719, 0.0019075583923007, 0.0007179680671916, 0.0030770614684025, 0.0019158053262046, 0.0007187856621011, 0.0031065452384125, 0.0019243431136939, 0.0007195649071008, 0.0031358128331175, 0.0019328206918848, 0.0007203775491739, 0.0031658875920342, 0.0019412982700757, 0.000721190191247, 0.0031965780809815, 0.0019497758482665, 0.0007219521200682, 0.003227529985583, 0.0019582534264574, 0.0007226901033906, 0.0032588772701905, 0.0019674541380149, 0.000723428086713, 0.0032901455453078, 0.0019757567058825, 0.0007241660700354, 0.0033213000394853, 0.001984271289845, 0.0007249040533579, 0.0033532952714645, 0.0019927858738074, 0.0007256973806983, 0.0033866985915401, 0.0020013004577698, 0.0007261844744677, 0.0034200752094961, 0.0020098150417323, 0.0007270488827911, 0.0034530282369256, 0.002018453122245, 0.0007277430443494, 0.0034870187731375, 0.002027442719385, 0.0007284372059077, 0.0035206866253437, 0.0020360602158273, 0.000729131367466, 0.0035560980883565, 0.002045002819072, 0.0007297685589038, 0.0035904225864454, 0.0020540105223708, 0.0007303378797227, 0.0036258711286652, 0.0020625653420445, 0.000731037691014, 0.003661319670885, 0.0020711156644533, 0.0007316476826823, 0.0036967682131048, 0.0020798646971598, 0.0007322576743507, 0.0037339881445351, 0.002088847198125, 0.0007328676660191, 0.0037718412649473, 0.0020978022990999, 0.0007334776576874, 0.0038096943853595, 0.0021067574000749, 0.0007340028083477, 0.0038475475057716995, 0.0021156126125059, 0.000734602249896, 0.0038864522341357, 0.0021240424470572, 0.0007351377034655, 0.0039245286357241, 0.002133115913055, 0.0007356731570349999, 0.0039643201035799, 0.0021421776940378, 0.0007362086106045, 0.0040041115714358, 0.0021512513816639, 0.0007367055434681, 0.0040439030392916, 0.002160046482887, 0.0007372614252866, 0.0040836945071474, 0.0021686775299207, 0.0007377833510418, 0.0041234859750033, 0.0021773085769544, 0.0007382356952445, 0.0041671134085447, 0.0021864839564021, 0.0007386880394471, 0.0042096605142754, 0.0021956594692018, 0.0007391515190665, 0.0042522076200062, 0.0022048058449584, 0.0007395996019979, 0.0042952302326056, 0.0022136560884168, 0.0007399671517604, 0.0043395270552511, 0.0022225063318753, 0.0007403890425996, 0.0043839412119522, 0.0022311121027298, 0.0007408115007273, 0.0044278609136393, 0.0022406485544196, 0.0007412349363866, 0.0044720793624657, 0.0022496576363491, 0.0007415599303539, 0.0045188616089734, 0.0022586667182786, 0.000741919113675, 0.004565643855481, 0.0022674816301825, 0.0007422601411623, 0.0046124261019887, 0.0022760706255021, 0.0007425309963346, 0.0046592083484963, 0.002285378299978, 0.0007428444905886, 0.0047079549417989, 0.0022945021746558, 0.0007431189406909, 0.0047564623078878, 0.0023033635567169, 0.0007434614555967, 0.0048062611271936, 0.0023124426037332, 0.0007436961176991, 0.0048562429364483, 0.0023214830222869, 0.0007438761954143, 0.0049059918676754, 0.0023305234408405, 0.0007441833570518, 0.0049557407989024, 0.0023394107458728, 0.0007444555253789, 0.0050091482124338, 0.0023481596376558, 0.0007446217721997, 0.0050614830224552, 0.0023573006572254, 0.0007447907530933, 0.0051154039858117, 0.0023665251246773, 0.0007448972006118, 0.0051689877842549, 0.0023755985348688, 0.0007451376152372, 0.0052229664484565, 0.0023844649651652, 0.0007453323820765, 0.0052768948593697, 0.0023933313954616, 0.000745476813076, 0.0053335097342519, 0.0024025501393094, 0.000745504654585, 0.0053907240034875, 0.0024113052680097, 0.0007456053767115, 0.0054471423157384, 0.0024200603967101, 0.0007457060988381, 0.0055054095433384, 0.0024292664905794, 0.0007457946500197, 0.0055627798751849, 0.0024378001136502, 0.0007458081098689, 0.0056227736677665, 0.0024468826947379, 0.0007458215697181, 0.0056839457014363, 0.0024561521070961, 0.0007458350295673, 0.005745117735106, 0.0024649988430599, 0.0007458328710628, 0.0058077926795177, 0.0024738455790237, 0.000745761702319, 0.0058701716509565, 0.0024824326804005, 0.0007458901145661, 0.0059330637771247, 0.0024917501621056, 0.000745770467017, 0.005997876925078, 0.0025002054596641, 0.0007456508194678, 0.0060619363224244, 0.0025091940266599, 0.0007455311719187, 0.0061256649790589, 0.0025180919647273, 0.0007454115243695, 0.0061926890767928, 0.0025268753702614, 0.0007452918768204, 0.0062626380307842, 0.0025354079430387, 0.0007451722292713, 0.006328417920654, 0.0025443792759298, 0.0007450525817221, 0.0063991426699724, 0.0025535790065773, 0.0007449447777987, 0.0064698674192908, 0.0025619118571479, 0.0007446836799449, 0.0065405921686092, 0.0025703721362866, 0.0007444363974238, 0.0066145883597525, 0.0025789400564397, 0.0007441891149026, 0.0066873048979358, 0.0025880039768421, 0.0007439418323814, 0.0067577417967833, 0.0025965804849871, 0.0007436945498603, 0.0068332979163111, 0.0026053756448214, 0.0007434472673391, 0.0069088540358389, 0.0026140820285866, 0.0007430027089628001, 0.0069844101553667, 0.0026225572071436, 0.0007427017829518, 0.0070639526941053, 0.002630747890013, 0.0007424765433949, 0.0071426936917663, 0.0026391674521993, 0.0007420894377237, 0.0072221854414496, 0.0026473324165988, 0.0007417023320525, 0.0073016771911329, 0.0026557290811602, 0.0007413152263813, 0.0073837063729301, 0.002664238084234, 0.0007408749234592, 0.0074665492799371, 0.0026727470873078, 0.00074039051016, 0.0075517987286886, 0.0026812560903816, 0.0007399072114291, 0.0076375102207155, 0.0026882552489609, 0.0007394398505677, 0.0077199410421895, 0.0026959808346828, 0.0007390047332583, 0.0078108878899727, 0.0027046101401011, 0.0007384544715029, 0.0078998809585952, 0.0027125207484334, 0.0007378654878781, 0.0079888740272178, 0.0027208168943062, 0.0007373568210199, 0.0080778670958403, 0.0027291130401791, 0.000736801824846, 0.008167993748693998, 0.0027374091860519, 0.0007362621112689, 0.0082621520274696, 0.0027457202893653994, 0.0007356293249463, 0.0083604844513276, 0.002752968054473, 0.000734953864127, 0.008458781405157, 0.0027602158195806, 0.0007342322611466, 0.0085520376614187, 0.0027674635846881, 0.0007335556335206, 0.0086510813998308, 0.0027747113497957, 0.0007329014064741, 0.0087557808767914, 0.0027836285077681, 0.0007322943948107, 0.008852561009393798, 0.002789998577486, 0.0007315439347619, 0.0089564095386135, 0.0027986705508691, 0.0007307515247786, 0.0090602580678331, 0.0028058478312707, 0.0007299591147953, 0.0091633348329771, 0.0028127507751038, 0.0007290716705926, 0.0092724281742292, 0.002819653718937, 0.0007282329062021, 0.0093813732746995, 0.0028265566627701, 0.0007274826902983, 0.0094904258263698, 0.0028338268882608, 0.0007266605943667, 0.00959947837804, 0.0028415820225616, 0.000725838498435, 0.0097160285098213, 0.0028477475611029994, 0.0007250450114623, 0.0098273587848989, 0.0028554723998598, 0.0007240410490977, 0.0099457076541638, 0.0028622056999318, 0.0007230289272145, 0.0100615026733857, 0.0028689390000039, 0.0007220168053313, 0.0101772976926076, 0.0028753876829736, 0.000720970759576, 0.0102930635774087, 0.0028816654405553, 0.000720034750024, 0.0104178148407009, 0.0028887536319199, 0.0007191122680457, 0.0105474229101994, 0.0028954108187401, 0.0007180022826842, 0.0106770309796979, 0.0029015104847747, 0.0007169245496711, 0.01080199016534, 0.0029079877769224, 0.0007159000289542, 0.0109272315244977, 0.0029134145037212, 0.0007146339834626, 0.0110663852517639, 0.0029195905217212, 0.0007134453115278, 0.0111987995259124, 0.0029255999826869, 0.0007125339964419, 0.0113231839376962, 0.0029316094436526, 0.0007113272119958, 0.011465780795948, 0.0029376189046182, 0.0007101129535579, 0.0116069487664855, 0.0029442439523055, 0.0007089032409716, 0.0117481167370231, 0.0029486998585323, 0.0007076333176913, 0.0118892847075607, 0.0029542577419756, 0.0007063763185765, 0.0120296378290768, 0.0029597689687409, 0.0007051193194617, 0.0121863950123775, 0.0029652801955062, 0.000703862320347, 0.0123333010609595, 0.0029707914222715, 0.0007022453800793, 0.0124803177244532, 0.002975361305678, 0.0007010856768689, 0.0126234817237086, 0.0029800444670384, 0.0006996337732205, 0.0127863397526167, 0.0029847276283987, 0.0006982161429555, 0.0129491977815249, 0.0029892127122009, 0.0006967367664693, 0.013112055810433, 0.002993914888971, 0.0006952828906416, 0.0132749138393411, 0.002998617065741, 0.0006938290148139, 0.0134377718682492, 0.0030033192425111, 0.0006923425270258, 0.0135962507548265, 0.0030073737985972, 0.0006909056983317, 0.0137548056545838, 0.0030118786759736, 0.0006893819155621, 0.0139461987172071, 0.0030163462401416, 0.0006878061273732, 0.0141171996760881, 0.0030198105084583, 0.000686143587515, 0.0142943597551533, 0.003023274776775, 0.0006844810476567, 0.0144715198342186, 0.0030263179175451, 0.0006828185077985, 0.0146486799132838, 0.0030295214684308, 0.0006810936475191, 0.0148451504616383, 0.0030338056711955, 0.000679450591951, 0.015031047730252, 0.003036811870927, 0.0006778166219219, 0.0152180286612998, 0.0030397380856992, 0.0006759843332913, 0.0154107246340184, 0.0030426643004714, 0.0006742329653076, 0.0156034206067369, 0.0030455905152435, 0.0006723986753308999, 0.0157961165794555, 0.0030485167300157, 0.000670625065444, 0.0160024839091158, 0.0030508075835426, 0.0006687981767666, 0.0162095383916226, 0.0030528616530161, 0.0006669393250938, 0.0164185893603787, 0.0030549157224895, 0.0006649964937484, 0.0166257230115874, 0.0030570151728603, 0.0006630770601128, 0.0168434841157749, 0.0030592795928691, 0.0006611576264773, 0.0170647797009, 0.0030591232253156, 0.0006592677814141999, 0.0172770725354778, 0.0030625992658038, 0.0006572408963958, 0.0175022178335857, 0.0030638529141289, 0.0006552592728663, 0.0177184545584617, 0.0030651065624539, 0.0006532194216115, 0.0179497978224423, 0.0030643277917276, 0.0006510936651402, 0.018186276832035, 0.0030678016071627, 0.0006489679086688, 0.0184241376962519, 0.0030664769194177, 0.0006468962367757, 0.0186736726376624, 0.0030665021815713, 0.0006448856843022, 0.0189123705955784, 0.0030684684638453, 0.0006425663489964, 0.0191510685534944, 0.0030677083818124, 0.0006403554935029, 0.0194039856552155, 0.0030678303548522, 0.0006382900910718, 0.0196725314248372, 0.003067478094273, 0.0006360090488165, 0.0199363201871099, 0.0030669181583355, 0.0006337280065611, 0.0201842660289209, 0.0030662741263423, 0.0006313570506519, 0.0204357656006683, 0.0030656300943491, 0.000629193835629, 0.0207292716078831, 0.0030646287066697, 0.0006268219911822, 0.0209927131463896, 0.0030631870977595, 0.0006244993439787, 0.0212786152834198, 0.0030631246225877, 0.0006221821013881999, 0.021557119951143, 0.003061601109777, 0.0006196824136415, 0.0218268490174889, 0.0030586378247121, 0.0006171895028577, 0.0221301464578071, 0.0030560136404561, 0.0006148973284943, 0.0224334438981253, 0.0030556885421544, 0.0006122601219552, 0.0227367413384436, 0.0030528864070898, 0.0006097743424125, 0.0230321496325587, 0.003050799827065, 0.0006072885628698, 0.0233207842617709, 0.0030472534602554997, 0.0006047425812838, 0.0236692963300665, 0.0030446218577413, 0.0006021672548616, 0.0239702065169778, 0.0030408455702258, 0.0005995919284393, 0.0242836376525123, 0.0030370692827102, 0.0005970653555558, 0.0246096030043166, 0.003033559133203, 0.0005941229833357, 0.0249479374589656, 0.0030289823963506, 0.0005917699188118, 0.0252662159142501, 0.0030256836811838, 0.0005889376990385, 0.0256272168360056, 0.0030220845302367, 0.0005861327430122, 0.0259882177577612, 0.0030169406049751, 0.0005833277869859, 0.0263300890714286, 0.0030134174761725, 0.0005805228309597, 0.0266675078489713, 0.0030085842471421, 0.0005777467139253, 0.027044292473307, 0.0030021637856779, 0.000574863286395, 0.0274119652681817, 0.0029964479312607, 0.0005720264765105, 0.0277855810675993, 0.0029906617713976, 0.0005691671361203, 0.0281565058546489, 0.0029853658515636, 0.0005663077957301, 0.0285436815619336, 0.0029793910658478, 0.0005633069678555, 0.0289102311503868, 0.00297320189166, 0.0005603324696466, 0.0293251082568675, 0.0029645147375221, 0.0005574128248776, 0.0297242775626822, 0.0029587524836885, 0.0005543847952544, 0.0301234468684969, 0.0029519100072575, 0.0005513371541567, 0.0305210431664933, 0.0029448520248663, 0.0005483087971472, 0.0309172325719048, 0.0029365312942509, 0.0005451614900594, 0.0313134219773164, 0.0029282513361588, 0.0005420206469991, 0.0317836463622333, 0.0029204592032362, 0.0005388798039389, 0.0322440722953905, 0.0029126819338996, 0.0005357389608787, 0.0326442599490657, 0.0029049810797314, 0.0005326604537229, 0.0330917813949499, 0.0028945867202513, 0.0005294251584441, 0.0335341498279911, 0.0028848020743277, 0.0005261898631653, 0.0339765182610322, 0.0028760336784566, 0.0005229545678865, 0.0344048695223756, 0.0028663808599881, 0.0005197192726077, 0.0348348423258572, 0.0028567280415195, 0.0005162493720258, 0.0353705624174545, 0.0028458648962379, 0.0005130885050543, 0.0358593594330554, 0.002834933686344, 0.0005097490739584, 0.0363026612366661, 0.0028237207511793, 0.0005064096428625, 0.0367936548329371, 0.0028132985210584, 0.0005029582935253, 0.03728464842920821, 0.0028023642513785, 0.0004996552411216, 0.0377783656179671, 0.002791347969974, 0.0004962890176199, 0.0383092580173651, 0.0027789764071145, 0.0004928058655546, 0.0388249688913151, 0.002766604844255, 0.0004893227134893, 0.0393140657520889, 0.0027539010095526, 0.0004858994443421, 0.0398031626128627, 0.0027415144213003, 0.0004824689814666, 0.0402922594736364, 0.0027284075907359, 0.0004788587725389, 0.0408482387951534, 0.0027151676702695, 0.0004752485636111, 0.0414302184093149, 0.0027012924845103, 0.0004716383546834, 0.0418920021473856, 0.0026861565437783, 0.0004682220268889, 0.0424261798542598, 0.0026770837239118, 0.0004647014173863, 0.0429643563710469, 0.0026587598073904, 0.0004608868614787, 0.043502532887834, 0.002644084404182, 0.0004573029250233, 0.0440407094046211, 0.0026292154052293, 0.0004535854000037, 0.0445788859214083, 0.0026143464062766, 0.000449938072063, 0.0451943438357756, 0.0025994774073239, 0.0004463227270237, 0.0456852349184725, 0.0025841550903869, 0.0004425230279669, 0.0462236456737939, 0.0025677794444302, 0.000438935661363, 0.0467620564291153, 0.0025514037984736, 0.0004348479808592, 0.0473004671844367, 0.002535028152517, 0.0004312290239834, 0.0478388779397581, 0.0025201896784999, 0.0004274376901162, 0.048426730163175, 0.0024998521615885, 0.0004235766737653, 0.048941375027984, 0.002484669135346, 0.0004197156574143, 0.0494905280002763, 0.0024663033819152, 0.0004158211715795, 0.0500321252206146, 0.0024483851423377, 0.0004118767559763, 0.0505737224409529, 0.0024315054897786, 0.0004080316143737, 0.0511153196612912, 0.0024126395463493, 0.0004039775221088, 0.051694352043988, 0.0023937736029199, 0.0004000144214693, 0.0522050513308249, 0.0023734554753848, 0.000395925012221, 0.0526959411599371, 0.0023544798974892, 0.0003920458909892, 0.0531950679140494, 0.0023364448506403, 0.00038805476852, 0.0537434819366124, 0.002316359805688, 0.0003839689365936, 0.0541653528964353, 0.0022950174890437, 0.0003799878071024, 0.0545872238562582, 0.0022750924731946, 0.0003758715283961, 0.0551734296743378, 0.0022551674573456, 0.0003717552496897, 0.0556997808617663, 0.0022341726654548, 0.0003676919250822, 0.0559649431743643, 0.0022118466670192, 0.0003635261566121, 0.0565268737475225, 0.0021895335673268, 0.0003593906504774, 0.0568889662802123, 0.0021675301299654, 0.0003552551443427, 0.0572510588129022, 0.0021455266926041, 0.000351119638208, 0.0576131513455921, 0.0021231155962936, 0.000347026276303, 0.0579752438782819, 0.0021012295557291, 0.0003428493556185, 0.0582814275016527, 0.0020787374342336002, 0.0003386007000233, 0.0586164557370472, 0.002055824775796, 0.0003343520444282, 0.0589514839724417, 0.0020320849693663, 0.0003299630867357, 0.059264818095703, 0.0020084471135493, 0.0003257675865746, 0.0595372955559735, 0.0019851535725795, 0.0003215239342074, 0.0596323311403623, 0.0019610529188736, 0.0003172802818401, 0.059746029285538, 0.0019365739367206, 0.0003130366294728, 0.0598597274307137, 0.0019130978663019, 0.0003086270574071, 0.0601187122685951, 0.001887831790544, 0.0003041967428769, 0.060119410980421, 0.0018631831146774, 0.0002998720366244, 0.0601780570619175, 0.0018385573602506, 0.0002955334402143, 0.060302882707597, 0.001814043466677, 0.0002911543855253, 0.0603054530401851, 0.0017850981026246, 0.0002868140591343, 0.0596752659075831, 0.0017615642958791, 0.0002823737274677, 0.0598804455042953, 0.0017351037617302, 0.0002779361310494, 0.0600136537991887, 0.0017085936912209, 0.0002734564398731, 0.0597212913042706, 0.0016824305816364, 0.000269009581167, 0.0594289288093526, 0.0016569497656284, 0.0002645627224609, 0.0591365663144345, 0.0016280908125039, 0.0002601855796348, 0.0588442038195164, 0.0016022891209636, 0.0002556742430478, 0.0585518413245983, 0.0015747383730108, 0.0002510925347716, 0.0582594788296801, 0.001547187625058, 0.0002465997881597, 0.0580416414879407, 0.001516148964368, 0.0002421070415477, 0.05721995196409, 0.0014905400226561, 0.0002376303846546, 0.0567902448861828, 0.0014615693883825, 0.0002329373694062, 0.0561828602687846, 0.0014325987541088, 0.0002284227068271, 0.0555754756513864, 0.0014045358668472, 0.0002237534595653, 0.0549487053316608, 0.0013765652338679, 0.000219078161412, 0.0543386998564476, 0.0013468434803957, 0.0002146877751236, 0.0536483901269945, 0.0013170089515363, 0.000210078264332, 0.0529452363482625, 0.0012866901321583, 0.0002054687535403, 0.0522420825695305, 0.0012572193270546, 0.0002007979635702, 0.0509144818480093, 0.0012277485219508, 0.0001960268247343, 0.0501053699459129, 0.0011960838817009, 0.00019138938185, 0.0494784464768134, 0.0011661554106122, 0.0001867519389657, 0.0485540049714459, 0.0011371057510312, 0.0001818789419903, 0.0476043026160753, 0.0011067399194574, 0.0001772390655315, 0.0466190448787653, 0.0010760983009251, 0.0001725916056634, 0.0456337871414554, 0.0010452882646348, 0.0001681986646457, 0.0444416199669898, 0.0010146355952289, 0.0001632069866071, 0.0432537070660835, 0.0009826248989478, 0.0001585713411992, 0.0421973718018301, 0.0009506142026667, 0.0001539356957914, 0.0411455645428467, 0.0009196410865257, 0.0001490330857742, 0.0398135774076171, 0.0008887625707821, 0.0001447154016542, 0.0385935927177541, 0.000857809740482, 0.0001396968429227, 0.0373909609009647, 0.0008254885628611, 0.000134913853933, 0.0361883290841751, 0.0007934961942446, 0.0001301308649432, 0.0346577935820374, 0.0007612410571653, 0.0001253478759534, 0.0337508241306133, 0.00072979586806, 0.0001207214955585, 0.0323515048879394, 0.0006973308127263, 0.0001160544352146, 0.0309521856452653, 0.0006649677904651, 0.000111250697317, 0.029601870140769, 0.0006322600226861, 0.0001064185315116, 0.0283192080805413, 0.0006010704555084, 0.0001015934123215, 0.0269947599244164, 0.0005654158446736, 9.67682931314261e-05, 0.025448134166294, 0.0005345232165506, 9.20492188047461e-05, 0.0240545887769621, 0.0005015183787532, 8.72415668015789e-05, 0.0226562962539495, 0.0004687387603058, 8.23802623539003e-05, 0.0211871178720561, 0.0004359591418585, 7.76314810625425e-05, 0.0197179394901626, 0.0004031795234112, 7.27701239525689e-05, 0.018448633555364, 0.0003696015989219, 6.798578770298718e-05, 0.0169652201965496, 0.0003371902341682, 6.3259231194143e-05, 0.0154818068377352, 0.0003037995885292, 5.84223216094691e-05, 0.0139435092417789, 0.0002699031343138, 5.35439857544572e-05, 0.0126146844571909, 0.0002366311593304, 4.86827205682146e-05, 0.0109943967019331, 0.0002033591843469, 4.37826702167406e-05, 0.0095842784801039, 0.0001700872093635, 3.90795754105018e-05, 0.0081080138060627, 0.00013681523438, 3.43451543041876e-05, 0.0066131149399041, 0.0001050867075787, 2.9592968074049e-05, 0.0051661517602684, 7.27382974041476e-05, 2.46555672991769e-05, 0.0036485414111112, 3.77611552803052e-05, 1.97358358148638e-05, 0.002130931061954, 4.70490556500112e-06, 1.48161043305506e-05, 0.0007480222321201, -2.8351344150302904e-05, 9.89637284623731e-06, -0.0009333572224024, -6.14075938656055e-05, 4.97664136192427e-06, -0.0023861419710286, -9.64575848389084e-05, 1.59393088080231e-07, -0.003539001164797, -0.0001273679158115, -4.64592998432799e-06, -0.0054012266890296, -0.0001621264138429, -9.41925953490733e-06, -0.006886327982415, -0.0001952148600817, -1.43019144986246e-05, -0.0083714292758003, -0.0002283033063204, -1.9175184561888e-05, -0.0098443529446246, -0.0002613917525592, -2.4069504018015305e-05, -0.0112723881870114, -0.000294480198798, -2.85794130957138e-05, -0.0129093368684684, -0.0003275686450367, -3.36310184118623e-05, -0.0142699991280684, -0.0003604998873523, -3.84216980492915e-05, -0.015718783761924, -0.0003939124426843, -4.32123776867202e-05, -0.0171682114977789, -0.0004273249980163, -4.8003057324149e-05, -0.0187233558471282, -0.0004608544716822, -5.28676800800021e-05, -0.0202665448148038, -0.0004941021517328, -5.77049045389757e-05, -0.0217307164625586, -0.0005273498317835, -6.24887583378939e-05, -0.023118915950166498, -0.0005594943385928, -6.73205013330962e-05, -0.0243505649892401, -0.0005925210514772, -7.20394232093454e-05, -0.0260196740967375, -0.0006228347814158, -7.69095994275531e-05, -0.0274488717559664, -0.0006561917009419, -8.16722490968831e-05, -0.0288780694151953, -0.0006895486204681, -8.63353540692129e-05, -0.0301012952282825, -0.0007208527113178, -9.11149747862147e-05, -0.0314626569051705, -0.0007527375305078, -9.59969327180383e-05, -0.032914765423366, -0.0007858818304410999, -0.0001006583982754, -0.0343121209861345, -0.0008174096734334, -0.0001054715630868, -0.035803803435216, -0.0008489375164257, -0.0001102390575098, -0.03687239389661, -0.0008791350527227, -0.0001148382811714, -0.0384526730740668, -0.0009105911076393, -0.0001195782938024, -0.0396907242684096, -0.0009426807649176, -0.0001244149765475, -0.0409287754627523, -0.0009732410276905, -0.0001289821456138, -0.0421668266570952, -0.0010047922869318, -0.000133717127774, -0.043365554751517, -0.0010347411415088, -0.0001384521099342, -0.0446415879625202, -0.0010656621829943, -0.0001431870920944, -0.0457502448522238, -0.0010969215225995, -0.0001479220742546, -0.0468995846443219, -0.0011267354562714, -0.0001525897946086, -0.048043293535655, -0.0011563719694239, -0.0001571532335456, -0.049187002426988, -0.0011860084825765, -0.0001618901008552, -0.0503307113183212, -0.001216477809488, -0.0001664829523399, -0.0512066131532998, -0.001245704219827, -0.0001710227180941, -0.0522846974024972, -0.001274522672289, -0.000175614216232, -0.0531239107242163, -0.0013044354114961, -0.0001804531065048, -0.0541712555660095, -0.0013340432600142, -0.0001849619894606, -0.0552186004078029, -0.0013620591844425, -0.0001897069476454, -0.0561468598147701, -0.0013895861676253, -0.000193989578243, -0.0567994893380236, -0.0014192134246956, -0.0001988063408099, -0.0574835207683044, -0.0014478650489343, -0.0002032926518648, -0.0582355102845064, -0.0014755527878307, -0.0002077789629197, -0.059015089637387, -0.0015031353784952, -0.0002122652739746, -0.0597704960770584, -0.0015308537351372, -0.0002167515850294, -0.0603339957762853, -0.001559428226013, -0.0002212832792138, -0.0608637437384712, -0.0015863200975855, -0.0002258418821779, -0.0614117624206981, -0.0016132119691581, -0.0002304004851419, -0.0619597811029249, -0.0016411300206358, -0.0002349803349681, -0.0624778745783667, -0.0016669767743858, -0.0002393612006114, -0.0628785350848067, -0.0016928235281357, -0.0002437420662546, -0.062987834317469, -0.0017196400285923, -0.0002481229318979, -0.0635544465040277, -0.0017465686318895, -0.0002525986519152, -0.063822797823428, -0.0017706184606739, -0.0002570505241459, -0.0641127756139883, -0.0017966773022814, -0.0002614191380368, -0.0644027534045486, -0.0018209420979271, -0.0002658293994597, -0.064636751989405, -0.0018466428037342, -0.0002701337922947, -0.0646259538830878, -0.0018712690475369, -0.0002744743524596, -0.0646151557767705, -0.0018958952913397, -0.0002789340571407, -0.06453266373462, -0.0019191587095084, -0.0002832584433967, -0.0645707524409426, -0.0019427136107803, -0.0002872647841373, -0.0647394301049868, -0.0019662685120522, -0.0002915689987444, -0.0646004260583057, -0.0019895316344603, -0.0002960068795847, -0.0643247565313982, -0.0020129058611585, -0.0003002436681329, -0.0642700510773215, -0.0020358844581969, -0.0003044665035199, -0.0640637395095804, -0.0020580331295695, -0.0003087047020832, -0.0637020690534169, -0.002080536170495, -0.000312809998585, -0.0636121549974402, -0.0021030392114204, -0.0003170564396134, -0.0635222409414634, -0.0021222083065211, -0.0003211947642528, -0.0633100151299554, -0.0021440021050735, -0.0003253330888921, -0.0628454412826263, -0.0021657959036258, -0.0003296110588578, -0.0623808674352972, -0.0021881804679741, -0.0003335486800789, -0.061916293587968, -0.0022080863304509, -0.0003375782479284, -0.0616406195621602, -0.0022279921929278, -0.0003416812330678, -0.0612674905243747, -0.0022478980554046, -0.0003457123083739, -0.0606968466730937, -0.0022684232877048, -0.0003497433836799, -0.0603025836038838, -0.0022863185294664, -0.0003536818213414, -0.059862644237759, -0.0023059461945773, -0.0003577249540175, -0.0594227048716342, -0.0023262756277157, -0.0003615517807634, -0.0587904231250303, -0.0023448707620538, -0.0003657340777776, -0.0583484087560743, -0.0023632714135169, -0.0003695820764101, -0.0577300055238175, -0.0023813593579223, -0.0003734878712483, -0.0572889728762897, -0.0023988180434203, -0.0003775085748864, -0.0566856241938536, -0.0024162767289183, -0.0003813996058589, -0.0560203788063978, -0.0024337354144163, -0.0003854566647037, -0.0555251495608785, -0.0024502540498475, -0.0003893793126544, -0.0549372161228453, -0.0024679480685496, -0.000393301960605, -0.0543298857573927, -0.0024837140199372, -0.0003971145075703, -0.053726525986551, -0.0025000094953308, -0.0004008881981449, -0.0531189910255707, -0.0025163049707244, -0.0004046618887194, -0.0524647606195056, -0.0025329345072696, -0.0004085251703395, -0.051810530213440405, -0.0025477620502729, -0.0004123393652977, -0.0511066663868976, -0.0025619443317423, -0.0004161822874653, -0.0505591507088549, -0.0025758896743206, -0.0004200069714339, -0.0499507176959637, -0.0025911680307013, -0.0004234683506722, -0.0493173174993361, -0.0026051529212617, -0.000427096984852, -0.04865246840585, -0.0026194784707743997, -0.000430816434869, -0.047987619312364, -0.0026333638785876, -0.0004345182639549, -0.0474271867658317, -0.002646770630386, -0.0004382142705318, -0.0467245881141906, -0.0026592498434844, -0.0004417395056783, -0.0460219894625496, -0.0026717290565828, -0.0004452647408247, -0.045408178944869, -0.0026842082696813, -0.0004488266668289, -0.0447855612099826, -0.0026972109413407, -0.0004523293914941, -0.0441629434750962, -0.002710033262055, -0.0004558321161593, -0.0435068913284049, -0.0027200086825417, -0.0004592475355514, -0.0428731964285869, -0.0027310729186009, -0.0004626987421855, -0.0422010091649864, -0.0027427186431039, -0.0004661506061286, -0.0415405728759065, -0.0027537475206145, -0.0004696125707602, -0.0409217607999681, -0.0027647763981251, -0.0004731086008614, -0.0402874083802311, -0.0027753564406159, -0.0004763607400176, -0.0396451193329001, -0.0027850624776268, -0.0004796128791738, -0.0390231208256099, -0.0027947685146376, -0.000483030266144, -0.0384301782227657, -0.0028040838297387, -0.0004864034185413, -0.0377876822852153, -0.0028127057604161, -0.0004895756029407, -0.0371501300211457, -0.0028213276910936, -0.0004927903941873, -0.0365181215870211, -0.0028296905666849, -0.000496005185434, -0.0358861131528964, -0.0028381287316141994, -0.0004992290846473, -0.0353656206253756, -0.002846989236457, -0.0005024517621063, -0.0346970227896993, -0.0028541712002749, -0.0005056756725564, -0.0341207639207835, -0.0028613531640928, -0.0005087486135025, -0.0334830590440962, -0.0028685351279107, -0.0005118497975156, -0.0328570997455488, -0.0028757170917285, -0.0005149509815287, -0.0322311404470014, -0.0028828100549953, -0.0005180521655418, -0.0316742637826661, -0.0028877420853779, -0.000521098228273, -0.0310490841049589, -0.0028941869016621, -0.0005240697897398, -0.030476093602684, -0.0029013682231226, -0.0005270347062636, -0.0299031031004091, -0.0029077562253052, -0.0005299965359261, -0.0293301125981341, -0.002913628849963, -0.0005330094597082, -0.0287386691035563, -0.0029189684115923, -0.0005360223834903, -0.0281242701929888, -0.0029232249909423, -0.0005389584652615, -0.0275558708877992, -0.0029276029137945, -0.0005417557844099, -0.0270079423534522, -0.002932650550752, -0.0005446593575799, -0.0264722588674275, -0.0029376213676333, -0.0005474608586945, -0.0258865227523821, -0.0029422631849672, -0.0005501772578365, -0.0252799513347425, -0.0029448196029226, -0.0005530522741188, -0.0247670512155783, -0.0029488437780672, -0.000555579144934, -0.0242327733762314, -0.0029528679532119, -0.0005583100521577, -0.0236770405973456, -0.0029568921283565, -0.0005611578388169, -0.0231455346307191, -0.0029609956100598, -0.0005638414954271, -0.0226098683440097, -0.0029646236262722, -0.0005664309779774, -0.0220910124072235, -0.0029662317161634, -0.0005690204605278, -0.0215721564704372, -0.0029677645165731, -0.0005716360743508, -0.021045734452846, -0.0029692973169828, -0.0005742114749716, -0.0205240083600519, -0.0029719892306854, -0.0005768234427698, -0.0200489929705191, -0.0029742929120202, -0.0005792843165846, -0.0195676868203542, -0.0029754183436893, -0.0005817367751297999, -0.0190837177789963, -0.0029765437753584, -0.0005841266582675, -0.0186054272472917, -0.0029776692070275, -0.0005867148562962, -0.018127136715587, -0.0029798186263901, -0.0005891432465242, -0.017692175603847803, -0.0029800534643381, -0.000591532817436, -0.0172633434888955, -0.0029802364983365, -0.0005939146493065, -0.0168345113739433, -0.0029809431849789, -0.0005960808645833, -0.0164056792589909, -0.0029801166008125, -0.0005984550789737, -0.0160179499794973, -0.0029804569008804, -0.0006008562866748, -0.0156313511908297, -0.0029800405905733, -0.0006031353326307, -0.0152663480954938, -0.002981038087179, -0.0006053182743065, -0.0149078280734079, -0.0029802596855916, -0.0006075012159822, -0.0145308666185142, -0.0029794812840042, -0.0006096841576579, -0.0142002535162223, -0.0029787028824168, -0.0006119930531941, -0.0139040127599014, -0.0029776662394815, -0.0006141106020893, -0.0136077720035806, -0.0029764514305045, -0.0006162281509845, -0.0133033607435959, -0.0029750039310521, -0.0006183891616291, -0.0129917812869484, -0.0029724279409118, -0.0006204823843528999, -0.0127262232620148, -0.0029716999038362, -0.000622371659426, -0.0124776852580052, -0.0029697310414504, -0.0006244967575083, -0.0122291472539957, -0.0029677795278337, -0.000626554701409, -0.0119806092499861, -0.0029658297465837, -0.0006286126453098, -0.0117320712459766, -0.0029636228572444, -0.0006306705892106, -0.0115133749576172, -0.0029614159679052, -0.0006324927171658, -0.0113326951524375, -0.0029586918931527, -0.0006343303602117, -0.0111520153472577, -0.0029559019974098, -0.0006361680032576, -0.0109661845047053, -0.0029530145141512, -0.0006380056463036, -0.0107641187361067, -0.0029501008315298, -0.0006399722223047, -0.0105761248871502, -0.0029474737176621, -0.0006417967403381, -0.0104261435483794, -0.0029436789976432, -0.0006435871974419, -0.0102782524924504, -0.0029395933977074, -0.0006453776545457, -0.0101269413614452, -0.0029367836041481, -0.0006471681116496, -0.0099766095933525, -0.0029333887334915, -0.0006489585687534, -0.0098265760827734, -0.002929993862835, -0.0006504037094877, -0.0097075725517564, -0.0029253840236279, -0.0006522054927844, -0.0095833548786368, -0.002921672369855, -0.0006539092045582, -0.009452333808767, -0.0029179305287062, -0.0006554900643407, -0.0093297533772573, -0.0029131723669157, -0.0006570678862648, -0.0092382967734817, -0.0029084338247245, -0.0006587039178002, -0.0091206531064597, -0.0029043898159327, -0.0006603128713622, -0.009027690049522, -0.0028996167745937, -0.0006618844732185, -0.0089166515855383, -0.002894900400299, -0.0006633988462698, -0.0088211627537652, -0.0028899297444072, -0.000664913219321, -0.0087256739219922, -0.0028849590885154, -0.0006664240622847, -0.0086445184502223, -0.0028803356888966, -0.0006678508933337, -0.0085639308420021, -0.0028750861904748, -0.0006691586275307, -0.0084833432337818, -0.0028698667959538, -0.0006706377520037, -0.0084001809323778, -0.0028643374076748, -0.0006722140212131, -0.0083178794273866, -0.002859277341396, -0.000673514689627, -0.0082492494758517, -0.0028533304275152, -0.0006748153580408, -0.0081832588966642, -0.0028473676751865, -0.0006761160264546, -0.0081172683174767, -0.0028420615251218, -0.0006774166948685, -0.0080376754580022, -0.002836755375057, -0.0006787173632823, -0.0079854277405443, -0.0028309979246671, -0.0006799039615538, -0.0079063204042637, -0.0028244443918548, -0.000681041669548, -0.0078483600600524, -0.0028178908590426, -0.0006824842577831, -0.0077903997158412, -0.0028116225673431, -0.0006835632087654, -0.0077328875157726, -0.0028062466778237, -0.0006847462751272, -0.0076740620781628, -0.0027999621575802, -0.000685929341489, -0.0076143000955821, -0.0027937935162006, -0.0006871124078508, -0.0075607256119335, -0.0027858666606952005, -0.0006882727407652, -0.0075053388957873, -0.0027805857806548, -0.0006893475118486, -0.0074499521796411, -0.0027741615816762, -0.000690422282932, -0.0074007822902645, -0.0027677373826975, -0.0006914714507518, -0.0073494529910589, -0.0027602899758355, -0.0006924874527207, -0.007298050827789, -0.0027533693226277, -0.0006935579023307, -0.0072464882838497, -0.0027460644278811, -0.0006945144924921, -0.0071999604142222, -0.002739093475962, -0.0006954894928201001, -0.0071552989062372, -0.0027325372886721, -0.0006964436865576, -0.0071057313876274, -0.0027251714759307, -0.0006973978802951, -0.0070561638690176, -0.0027176146486872, -0.0006983685042262, -0.0070124972687115, -0.0027106269063424, -0.0006992131410853, -0.0069699046565645, -0.0027036693009504, -0.0006999761046346, -0.006927944132472, -0.0026965067140898, -0.000700866495031, -0.0068795459436055, -0.0026893506412815, -0.000701797715226, -0.0068375495852664, -0.0026815823845199, -0.0007025661062022, -0.0067956333994131, -0.0026737438648692, -0.0007033344971784, -0.0067495400914149, -0.0026666694153281, -0.0007041028881546, -0.0067137292303224, -0.0026587944670793, -0.0007047952394101, -0.00666756949019, -0.0026510634726172, -0.0007056332395681, -0.0066268614942498, -0.0026438086960835, -0.000706391201273, -0.0065861534983096, -0.0026365539195499, -0.0007070748336071, -0.0065441133941877, -0.0026289809679075, -0.0007077812136235, -0.0065025484998273, -0.0026203040222085, -0.0007084178476649, -0.0064633585645253, -0.0026126655849361, -0.0007090225283982, -0.0064241686292233, -0.0026049372632875, -0.0007096272091315, -0.0063849786939213, -0.0025978384282717, -0.0007102253396159, -0.0063457887586193, -0.0025890589555185, -0.0007108379623987, -0.0063040685233105, -0.0025808859699232, -0.0007114678964302, -0.0062669986224723, -0.0025734916481293, -0.0007119354729016, -0.0062274522278763, -0.002565270774237, -0.000712496747808, -0.0061886928932714, -0.0025575777408602, -0.000713009316097, -0.0061498057170534, -0.0025498492152617, -0.000713570341701, -0.0061109266174935, -0.002541722957608, -0.0007139915659591, -0.0060749863360812, -0.002532658197961, -0.0007144595826743, -0.0060357932271839, -0.0025254730337863, -0.0007148357233737, -0.005996768191865, -0.0025172363098771, -0.0007152118640731, -0.0059592547202338, -0.002508999585968, -0.0007155871854844, -0.0059210534700154, -0.0025007628620588, -0.000716053273595, -0.005884153148317, -0.0024922624831313, -0.0007163777193339, -0.0058474533442132, -0.0024841464275446, -0.0007165887466528, -0.0058115158836167, -0.0024760303719579, -0.0007170295660578, -0.0057732397580296, -0.0024679143163711, -0.0007173678330216, -0.0057355141016838, -0.0024595270083037, -0.0007177060999853, -0.0056985121854566, -0.002451287857413, -0.000717921510828, -0.0056615919493375, -0.0024429727366522, -0.0007181579589982, -0.0056246717132184, -0.0024347540201035, -0.0007183944071684, -0.0055860296391364, -0.0024255007744884, -0.0007186308553386, -0.0055515166674432, -0.002417673889309, -0.0007188582307381, -0.0055150576647062, -0.0024093678788387, -0.0007189194060276, -0.0054785986619693, -0.0024010618683685, -0.0007191513723843999, -0.0054424810087425, -0.0023927558578982, -0.000719281373798, -0.0054063411957115, -0.0023844498474279, -0.0007194113752116, -0.0053702013826805, -0.0023753568267619, -0.0007195413766252, -0.0053340615696495, -0.0023675765157637, -0.0007196724861077, -0.0052979217566184, -0.0023592603267269, -0.0007197693399208, -0.0052616636580815, -0.0023509441376901, -0.0007197782059459, -0.0052253444983061, -0.0023426279486533, -0.0007198167893542, -0.0051897851168945, -0.0023344984971282, -0.0007198065513861, -0.0051545014423759, -0.00232589869045, -0.000719796313418, -0.0051191229136025, -0.0023172530226171, -0.0007197860754499, -0.0050839856262323, -0.0023086073547843, -0.0007197758374818, -0.0050488483388621, -0.0023006085374929, -0.0007197655995137, -0.0050137197710696, -0.0022922941605768, -0.0007197553615456, -0.0049781967230421, -0.0022840935149768, -0.0007197451235775, -0.0049431476497357, -0.0022755944111085, -0.0007194998611181, -0.004908410107781, -0.0022670378711532, -0.0007193679371019, -0.0048736725658262, -0.0022587256982614, -0.0007192670065737, -0.0048392565052356, -0.0022505405186061, -0.0007191660760455, -0.0048048358835746, -0.0022422480045486, -0.0007190651455173, -0.0047704152619135, -0.002233713410259, -0.0007189372150339, -0.0047364064760821, -0.0022252184550413, -0.0007187111443786, -0.004701643363325, -0.0022176487069053, -0.0007184850737233, -0.004668926670264, -0.0022091827445929, -0.000718259003068, -0.0046333709935822, -0.0022002372748155, -0.000718185478388, -0.0046000773365218, -0.0021923339393067, -0.000717856047545, -0.0045667836794613, -0.0021840853811081, -0.0007176135788945, -0.0045331162697275, -0.0021757946736749, -0.0007173762262015, -0.0044992136683468, -0.0021672621044842, -0.0007171186768218, -0.0044653110669662, -0.002159346980359, -0.0007168294801295, -0.0044325472189336, -0.0021510927182363, -0.0007165122262894, -0.0044000902204747, -0.0021428384561136, -0.0007161949724493, -0.0043679398626953, -0.0021340986592356, -0.0007158777186092, -0.0043342487356257, -0.0021259190255061, -0.0007155368329953, -0.0043019454336619, -0.0021178187221824, -0.000715221635341, -0.004269642131698, -0.0021097184188588, -0.0007148906493861, -0.0042373388297342, -0.0021016181155351, -0.0007144975182846, -0.0042050355277704, -0.0020932202547117, -0.0007141043871832, -0.0041737353603142, -0.0020846412821667, -0.0007137112560817, -0.0041422821224863, -0.0020770210323224, -0.0007133181249802, -0.0041109410181582, -0.0020687103387127996, -0.0007127261546698, -0.0040792605945633, -0.0020605467444665, -0.0007124590122827, -0.0040480001961413, -0.0020524967815802, -0.0007119952929518, -0.004017068887086, -0.0020444468186939, -0.0007115688247357, -0.0039869078652965, -0.0020358347853191, -0.0007110866267808, -0.0039567468435071, -0.0020282035015091, -0.0007106356941833, -0.0039259860921417, -0.0020200611093127, -0.0007101599947063, -0.0038957569614511, -0.0020118555320416, -0.0007096842952293, -0.0038655278307606, -0.0020036499547705, -0.0007091752108479, -0.0038352971205271, -0.0019956955843876, -0.0007086238895989, -0.0038064960818872, -0.0019876698008814, -0.0007081125788642, -0.0037776161784433, -0.0019796182856573, -0.0007076012681296, -0.0037481556192203, -0.0019717222937269, -0.0007070848981457, -0.0037185808498993, -0.0019635401723105, -0.0007064504886157, -0.0036899201818425, -0.00195558995112, -0.0007059061304505, -0.0036612779324392, -0.0019476397299294, -0.0007053692487739, -0.003632635683036, -0.001939664674357, -0.0007047668468314, -0.0036049041196426, -0.0019318937490383, -0.0007041160714032, -0.0035769773323789, -0.0019238563804939, -0.0007034652959751, -0.0035485474974149, -0.0019159950987077, -0.0007029121951846, -0.0035213193004180006, -0.0019081338169216, -0.0007021771751762999, -0.0034935617481705, -0.0019002725351354, -0.0007016030918318, -0.0034660440732971, -0.0018920224807947997, -0.0007010290084872, -0.003438753557689, -0.0018847697449252, -0.0007003603257629, -0.0034122113981524, -0.0018763734191556, -0.0006996480321752, -0.003385707379352, -0.0018689471780698, -0.0006989357385876, -0.0033590786977764, -0.0018612524056548, -0.0006982234449999, -0.0033324708342828, -0.0018535576332398, -0.0006975111514123, -0.0033057883601749, -0.0018458536339424, -0.0006967202563465, -0.0032799778978317, -0.0018381377500557, -0.0006960710371564, -0.0032546157631142, -0.0018304218661691, -0.0006953443223028, -0.0032291859180623, -0.0018229657061193, -0.0006946072476542, -0.0032032993021561, -0.0018149070599226, -0.000693874623884, -0.0031774126862498, -0.0018074804043373002, -0.0006931377795553, -0.0031524892833985, -0.001799884948005, -0.0006923654368679, -0.0031280471798728, -0.0017922894916727, -0.0006915704690692, -0.0031035332859373, -0.0017848294400498, -0.0006907780780518, -0.0030788379576178, -0.0017773417301988, -0.0006899825860666, -0.003054178574285, -0.0017694352606076, -0.0006892483797187, -0.0030302293904284, -0.001762292709686, -0.000688356688438, -0.0030063088907929, -0.0017548385762602, -0.0006875293463414, -0.0029822314593149, -0.0017473844428344, -0.0006867020042447, -0.0029596093978294, -0.0017398973489104, -0.0006858746621481, -0.0029345278498627, -0.0017323663028172, -0.0006850467539663, -0.0029120530975224, -0.0017248831541924, -0.0006841786945941, -0.0028891855555847, -0.0017177894952054, -0.0006833385949507, -0.0028661237488041, -0.0017105299189813, -0.0006824550104563, -0.0028430672592261, -0.0017031140302848, -0.0006815609405629, -0.0028200107696481, -0.0016958035536266, -0.0006806717568822, -0.0027987269588904, -0.0016888206191084, -0.0006798179246837, -0.0027763216806235, -0.0016813850768859, -0.000678902983228, -0.0027539505817865, -0.0016740818855858, -0.0006779814353311, -0.0027320107783795, -0.0016670377830038, -0.0006770598874342, -0.002709918911346, -0.0016598287644271, -0.0006761132867489, -0.002688801532531, -0.0016527378586816, -0.0006752347177873, -0.0026676841537159, -0.0016456469529361, -0.0006743113793732, -0.0026467059953822, -0.0016385395913511, -0.00067337951097, -0.0026257590716723, -0.001631242532369, -0.0006724554564251, -0.0026042317848652, -0.0016244227544254, -0.0006714790663526, -0.002584026617073, -0.0016174778010999, -0.0006705535158694, -0.0025638214492807, -0.0016105328477744, -0.0006696231350019, -0.0025436162814884, -0.0016035682348798, -0.0006686058076995, -0.0025236265785265, -0.001596499377036, -0.0006675588424045, -0.0025038393320384, -0.0015894305191922, -0.0006666577516098, -0.0024840829174981, -0.0015825411398701, -0.0006657227310121, -0.0024640705091458, -0.0015759351458513, -0.0006647025455078, -0.0024447780940997, -0.0015692346043917, -0.0006637352883507, -0.0024254856790536, -0.0015621768318786, -0.0006627728880466, -0.0024061932640073998, -0.001555133163259, -0.0006617331844119, -0.0023876140261706, -0.0015485092574113, -0.0006607138957784, -0.002369176482015, -0.0015418959211937, -0.0006597025796632, -0.0023505469236107, -0.0015352825849761, -0.000658625309268, -0.0023322084245734, -0.0015284844685723, -0.0006576713520227, -0.0023138071029552, -0.001521648529863, -0.0006566283452067, -0.0022956714453878, -0.0015152273600347, -0.0006555853383906, -0.0022782003868179, -0.0015085038725164, -0.0006545423315746, -0.0022600666639275, -0.0015021039162824, -0.0006534993247585, -0.0022428285005192, -0.0014952948586437, -0.0006524660702404, -0.0022255903371108, -0.0014888359995509, -0.0006514391998833, -0.0022083521737025, -0.001482377140458, -0.0006502624173756, -0.0021911140102942, -0.0014759010283861, -0.0006492334719946, -0.0021737997358976, -0.001469443156174, -0.0006481845783786, -0.0021569883873312, -0.0014628527329606, -0.0006471652019458, -0.0021407102346608, -0.0014564853819082, -0.0006460997668304, -0.0021237343456312, -0.0014501180308557, -0.0006449475061984, -0.0021075503618665, -0.0014437506798032, -0.0006438485078025, -0.0020912986594125, -0.0014374017154138, -0.0006427654465429, -0.0020750469569584, -0.0014310501548233, -0.0006416474921875, -0.0020587952545044, -0.0014248129143897, -0.0006405253331968, -0.0020425435520504, -0.0014184234545152, -0.000639432478559, -0.0020270227778407, -0.0014120339946408, -0.0006383468840662, -0.0020115754242505, -0.0014058442599591, -0.0006372449058915, -0.0019961280706603, -0.0013997365320333, -0.0006360847092818, -0.0019806807170701, -0.0013936288041076, -0.0006349290269109, -0.0019656174752458, -0.0013875210761818, -0.0006337466969733, -0.0019505652842957, -0.0013812782704588, -0.000632641478854, -0.0019355151617828, -0.0013751613944419, -0.0006315130575417, -0.0019204650392699, -0.0013690445184249, -0.0006303678792773, -0.0019054506464465, -0.0013629849313363, -0.0006291922600058, -0.0018911377855055, -0.001356912390574, -0.0006280166407344, -0.0018769712720732, -0.0013508606717056, -0.0006268410214629, -0.0018625664199496, -0.0013450112454309, -0.0006257520845704, -0.0018481615678260003, -0.0013390365225677, -0.0006245723523137, -0.0018334240403182, -0.0013330459539878, -0.0006233617406387, -0.0018198516535089, -0.0013271691015563, -0.0006222110762525, -0.0018061886914806, -0.001321215141594, -0.0006209982101475, -0.0017925257294522, -0.0013153238775829, -0.0006198723739205, -0.0017788627674238, -0.0013093918942074, -0.0006187018207897, -0.0017651723301659, -0.0013036514493051, -0.0006175378703101, -0.0017515321193007, -0.0012978679560062, -0.00061633949998, -0.0017385897013646, -0.001292092572987, -0.0006151411296499, -0.0017251377421517, -0.0012863317195157, -0.0006139077267476, -0.0017121944510196, -0.0012805926449543, -0.0006127896954363, -0.0016992511598876, -0.0012748310977361, -0.0006116418347051, -0.0016863078687555, -0.0012691717988745, -0.0006104106469198, -0.0016733645776235, -0.0012635125000129, -0.000609180692584, -0.0016610272221852, -0.0012578933308143, -0.0006079507382481, -0.0016481311026191, -0.001252338307744, -0.0006067772880985, -0.0016358949964283, -0.00124667389459, -0.0006056238137379, -0.0016236588902375, -0.0012411463364568, -0.0006044463562355, -0.00161125515127, -0.0012356187783237, -0.0006032076720009, -0.0015989191254204, -0.0012300912201905997, -0.0006019816002949, -0.0015875652730913, -0.0012245636620575, -0.0006007943736859, -0.0015751841038772, -0.0012190320056422, -0.0005994919285059, -0.0015636046001782, -0.0012136407706088, -0.0005983190019341, -0.0015518941866442, -0.0012082398333616, -0.0005971643728195, -0.0015400769298288, -0.0012028606607397, -0.0005959664972806, -0.0015286772493856, -0.0011974389459517, -0.0005947686217418, -0.0015173823485406, -0.0011920017716598, -0.0005935203297044, -0.0015060332802457, -0.0011867049259348, -0.0005923342793523, -0.0014948444087412, -0.0011814735718188, -0.0005910880533284, -0.0014838347393376, -0.001176154850933, -0.0005898485958551, -0.0014723914806561, -0.0011707743391695, -0.0005886091383818, -0.0014617627573137, -0.0011653976520328, -0.0005873908718305, -0.0014510808189875, -0.0011603051676244, -0.0005861748266634, -0.0014403486079348, -0.0011550702202045, -0.0005849587814964, -0.0014296163968822, -0.0011499897432829, -0.0005837138842206, -0.001419323991237, -0.0011448088679113003, -0.0005824891717771, -0.0014089440782866, -0.0011396873706494, -0.0005812651743809, -0.0013982798172504, -0.0011345658733874, -0.0005800231844478, -0.0013880729049886, -0.0011294443761255, -0.0005787697703011, -0.0013778659927268003, -0.0011242308095326, -0.000577533867844, -0.0013680804631716, -0.0011193961408248, -0.0005763045556722, -0.0013580281124906, -0.0011140849509121, -0.0005750661582734, -0.0013478842403506, -0.0011092842147971, -0.0005737773860611, -0.0013382823862754, -0.0011043157286141, -0.0005725503811437, -0.0013286805322002, -0.001099354540589, -0.0005712914257581, -0.0013189355255095, -0.0010943938777308, -0.0005700324703725, -0.0013093099087386, -0.0010894128659769, -0.0005687735149869, -0.0012996842919677002, -0.001084431854223, -0.0005675097682552, -0.0012900586751968, -0.0010795901615188, -0.0005662565841737, -0.0012809255764534, -0.0010748124586556, -0.0005649985053381, -0.0012718334870868, -0.0010699456871883, -0.0005637642822264, -0.0012626443900178, -0.0010651086465646, -0.0005624897703347, -0.0012536726251017, -0.0010603744466599, -0.000561233158652, -0.0012446169077368, -0.0010555637895527, -0.0005599428102459, -0.0012357738559526, -0.001050820068925, -0.000558717326337, -0.0012269308041683, -0.0010460374685581, -0.0005574600580222, -0.0012181158257807, -0.0010413760777168, -0.0005561781950023, -0.001209460561677, -0.0010367229108881, -0.0005548906028004, -0.0012009129680223, -0.0010320209814477003, -0.0005536400705326, -0.0011923647678234, -0.0010273412058881, -0.0005523963137663, -0.0011838164468995, -0.0010227140547039, -0.0005511525569999, -0.0011757236104193, -0.0010180869035197, -0.0005498728616248, -0.0011669012373268, -0.0010134752093902, -0.0005485794222723, -0.0011588054433455, -0.0010089506125845, -0.0005472859829197, -0.0011507096493642, -0.0010044237425555, -0.0005460458942188, -0.0011426138553829, -0.0009998976769205, -0.0005447628637322, -0.0011345180614016, -0.000995495079265, -0.0005435067641368, -0.0011264222674203, -0.0009909244545451, -0.0005421843379198, -0.001118326473439, -0.0009864678214793, -0.0005409655347429, -0.0011107807189138, -0.0009820325971077, -0.000539689922498, -0.0011029033943209, -0.000977597372736, -0.0005384143102531, -0.0010950437593227, -0.0009731621483643, -0.0005371210521882, -0.0010875048368032, -0.000968786973843, -0.0005358892169829, -0.0010797149852513, -0.0009645109360617, -0.0005346030920978, -0.0010722202700062, -0.0009601579823865, -0.0005333320581708, -0.0010647255547611, -0.0009558050287113, -0.0005320665053913999, -0.0010572308395159998, -0.0009514520750361, -0.0005307659440994, -0.001049989019305, -0.000947259686503, -0.000529513438927, -0.0010427341462033, -0.0009429874439936, -0.0005282609337546, -0.001035692213056, -0.0009387337208361, -0.0005270084285822, -0.0010284843796268, -0.0009345230124447, -0.0005257232680122, -0.0010214434961317, -0.0009301858543086, -0.0005244035412978, -0.0010142813007021, -0.0009261058749854, -0.0005232170344378, -0.0010073412300502, -0.0009220123524262, -0.0005219418174782, -0.0010003519988883, -0.0009178434460101, -0.0005206591595382, -0.0009933875869795, -0.0009136923846148, -0.0005194056256721, -0.0009866569376854, -0.0009095055089697, -0.000518152091806, -0.0009799453651166, -0.0009054540079573, -0.0005168470542317, -0.0009731917258584, -0.0009013748673889, -0.0005156458808159, -0.0009665998532672, -0.000897351995162, -0.0005143858123969, -0.000960007980676, -0.0008933329462491, -0.0005131248937254, -0.0009533508854839, -0.0008893047312461, -0.0005118588042951, -0.0009469658824781, -0.0008853146347395, -0.0005106002855707, -0.000940568574765, -0.0008813674558258, -0.0005093623381538, -0.0009341705328488, -0.0008774181001407, -0.0005081059555869, -0.0009277394185792, -0.0008733927772252, -0.0005068429284585, -0.0009213083043096, -0.0008695051023059, -0.0005056004809967, -0.000915189140365, -0.0008656143599931, -0.0005043580335348, -0.000909086353175, -0.0008616983712694, -0.0005031155860729, -0.000902983565985, -0.0008577823825458, -0.0005018386107367, -0.0008968455632345, -0.0008539635706166, -0.0005005784635945, -0.0008906720434544, -0.000850147360529, -0.0004994209178987, -0.000884813294101, -0.0008463162281197, -0.000498152302566, -0.0008789267310512, -0.0008424796528586, -0.0004969053150761, -0.0008729891254002, -0.000838723953375, -0.0004956726244964, -0.0008670515197492, -0.0008349634709325, -0.0004944399339167, -0.0008611612471871, -0.0008312168234285, -0.000493207243337, -0.0008555092712236, -0.0008274701759245, -0.0004920052077908, -0.000849890147112, -0.000823716915081, -0.0004907431274328, -0.0008442222830155, -0.0008200713894401, -0.0004895188576486, -0.000838533612904, -0.0008164081691737, -0.0004882875476144, -0.0008328449427925, -0.0008127348899767, -0.0004870503850797, -0.000827453586855, -0.0008091017884652, -0.0004858410894276, -0.0008220017499703, -0.0008054686869537, -0.0004846107236078, -0.0008165499084891, -0.0008018747593049, -0.0004833894416116, -0.0008110980670079, -0.0007982907667230001, -0.0004821681596154, -0.0008057367314885, -0.0007947702841711, -0.0004809468776193, -0.0008004924575287, -0.000791164550717, -0.00047970970558129997, -0.0007952481835689, -0.0007876844513987001, -0.0004785043628513, -0.000790075908225, -0.0007842206721155, -0.0004772990201213, -0.0007848599072416, -0.0007806989075587, -0.0004760823994884, -0.0007796439062581, -0.000777158151812, -0.0004748861175177, -0.00077458931201, -0.0007737877981457, -0.0004736696419911, -0.0007695689828324, -0.0007703285095173, -0.0004724302333973, -0.0007645589259536, -0.0007668606711776, -0.0004711908248034, -0.0007594942291498, -0.0007634664359442, -0.0004700142546201, -0.0007546052085952, -0.0007600694599065, -0.0004688162512674, -0.0007497225469567, -0.0007567410321686, -0.0004675816948649, -0.0007448398853181, -0.0007533398569904, -0.0004663964278384, -0.0007399927269553, -0.0007500236819525, -0.0004651964358268, -0.0007351293103381, -0.0007467075069146, -0.0004639828214706, -0.000730380967879, -0.0007433913318767, -0.0004627864071167, -0.0007257679433839, -0.0007400928302605, -0.0004615813303575, -0.0007211549188888, -0.0007368563211057, -0.0004603739159368, -0.0007165179113396, -0.0007335879801221, -0.0004591665015162, -0.0007119929184703, -0.0007303459565264002, -0.0004580266816084, -0.0007073893346036, -0.0007271011926736, -0.0004568043349981, -0.0007028600229735001, -0.0007238983396846, -0.0004556134602544, -0.0006983492773482, -0.0007206928454046, -0.0004544129123381, -0.000693886106427, -0.0007175076950435, -0.0004532123644219, -0.0006894451006919, -0.0007143263701036, -0.0004520425740383, -0.0006850040949569, -0.0007111599098683, -0.0004508643380898, -0.0006805630892219, -0.0007080252145928, -0.0004496482504744, -0.0006763756746900999, -0.0007048913085699, -0.0004484950408584, -0.0006720143255198, -0.0007017805057198, -0.0004473096480099, -0.0006677292900980001, -0.0006986837220171, -0.0004461242551614, -0.0006635798760072, -0.0006955731277007, -0.000444938862313, -0.0006593997442684, -0.0006925047795116, -0.000443758293258, -0.0006551886488733, -0.0006894364313225, -0.0004425751313232, -0.0006509775534782, -0.0006863680831334, -0.0004414122580823, -0.0006468813787658, -0.0006833344758822, -0.0004402398148214, -0.0006427686972517, -0.000680284494037, -0.0004390586902301, -0.0006388098113687, -0.0006773000431692, -0.0004378783159366, -0.0006348509254858, -0.0006743155923013, -0.0004366979416432, -0.0006308920396029, -0.0006713595473913, -0.0004355517914136, -0.0006269214275912, -0.0006683738053195, -0.0004343724903087, -0.0006229586181936, -0.0006653880632477, -0.0004332202910668, -0.0006191566175431, -0.0006624201599483, -0.0004320680918249, -0.0006153232861929, -0.0006595412272498, -0.0004309036626337, -0.0006114770120649, -0.0006566663381174, -0.0004297242107181, -0.0006076307379368, -0.000653791448985, -0.0004285869017139, -0.0006037844638087999, -0.0006508708780977, -0.0004274430843416, -0.0006001462718652, -0.0006479636953673, -0.0004262809001781, -0.0005965016202136, -0.0006451324742974, -0.0004251196391172, -0.0005928535734265, -0.0006423100607809, -0.0004239737935314, -0.0005892243411779, -0.0006394792602932, -0.0004228279479457, -0.0005855230890564, -0.0006366484598055, -0.00042169036109669997, -0.0005819221294035, -0.0006338390253845, -0.0004205447521588, -0.0005785063292805, -0.0006310790428178, -0.0004194005534747, -0.0005749228592405, -0.0006283391661439, -0.0004182767124888, -0.0005713993891872, -0.0006255438999929, -0.0004171220222078, -0.0005678731734072, -0.0006227669889807, -0.0004159895983612, -0.0005644268824037, -0.0006200255337523, -0.0004148440130289, -0.0005610414824095, -0.0006173480750179, -0.000413715515259, -0.0005576560824152, -0.000614673048333, -0.0004125797887719, -0.000554270682421, -0.0006119414196862, -0.0004114591326492, -0.0005509530329773, -0.000609230529076, -0.0004103248570169, -0.0005476345582869, -0.0006065976008005001, -0.0004092081990032, -0.0005443688096459, -0.0006039583102913, -0.0004080915409895, -0.000541106730871, -0.0006013140894083, -0.0004069748829757, -0.0005378459540213, -0.0005986841324962, -0.000405858224962, -0.0005346096869029, -0.000596049926088, -0.0004046777789154, -0.0005314162207101, -0.0005934578637932, -0.0004036298687604, -0.0005282864302495, -0.0005908640372836, -0.0004024841912852, -0.000525123128966, -0.0005882803946223, -0.00040138273185630005, -0.0005219893376852, -0.000585696751961, -0.0004002812724274, -0.0005188365176509, -0.0005831020133504, -0.0003991798129985, -0.0005157977892481, -0.0005805865612325, -0.0003980702277107, -0.0005127590608452, -0.0005780711091145, -0.0003969782222878, -0.0005097082199846, -0.0005755556569966, -0.0003958862168648, -0.0005066955997587, -0.0005730411262107, -0.000394773280798, -0.0005036375507069, -0.0005704774359282, -0.0003936665113617, -0.0005006965249307, -0.000568075295003, -0.00039259841638080004, -0.000497805857292, -0.000565564432263, -0.0003915022240977, -0.0004947991212514, -0.0005630985060854, -0.0003904226773059, -0.0004918970698967, -0.0005606325799079, -0.0003893466812315, -0.0004889851779522, -0.0005581742560949, -0.0003882486177026, -0.0004861273442815, -0.000555768221413, -0.0003871622456393, -0.0004832703724021, -0.0005533621867311, -0.0003860901318679, -0.0004804272737844, -0.0005509561520492, -0.0003850180180964, -0.0004775904184147, -0.0005485501173673, -0.0003839459043249, -0.0004747452840585, -0.0005461440826854, -0.0003828227424024], "Bz": [-0.0011700953437782, 0.000226480086027, 0.0004121396007212, -0.001174790575521, 0.000230876277319, 0.0004148025696297, -0.001179422938636, 0.0002352720662439, 0.0004174550356053, -0.001184055301751, 0.0002396678551688, 0.0004201315147112, -0.0011891929039375, 0.0002441024643245, 0.0004228218165779, -0.0011941197612011, 0.0002487670372061, 0.0004255121184447, -0.0011992521609092, 0.000253439867369, 0.0004282024203114, -0.0012044557344526, 0.0002579938923801, 0.0004308978997428, -0.001209659307996, 0.0002625855753655, 0.0004336214483373, -0.0012150001616914, 0.0002674045379732, 0.0004363306378805, -0.0012199940825792003, 0.0002722235005809, 0.0004391009641183, -0.0012253312480413, 0.0002770424631886, 0.0004418708324289, -0.0012307920118332, 0.0002818457545828, 0.0004446407007395, -0.0012362527756252, 0.000286899054953, 0.0004474105690502, -0.0012414244922337, 0.0002919523553232, 0.0004501804373608, -0.0012468942645025, 0.0002970133175854, 0.0004529710091366, -0.0012524638629474, 0.0003020788921391, 0.0004558219375259, -0.0012580334613924, 0.000307170422598, 0.0004586750163241, -0.0012635138419708, 0.0003123063106566, 0.000461526714324, -0.0012688148672755, 0.0003175738207993, 0.000464378412324, -0.0012743890629002, 0.0003228831932329, 0.0004671678737777, -0.0012799450620711997, 0.0003282062677197, 0.0004700886178892, -0.0012855010612423, 0.0003336268079417, 0.0004729996948708, -0.0012910472133672, 0.0003390678312911, 0.0004759520356844, -0.0012963620043518, 0.0003445893289204, 0.000478904376498, -0.0013016767953365, 0.0003501677287899, 0.0004818278702155, -0.0013074468769344, 0.0003557815365625, 0.000484743852919, -0.0013126875078228, 0.000361400676632, 0.0004877497420527, -0.0013184219347489, 0.0003672136798153, 0.0004907251902566, -0.0013241519401515, 0.0003729964996705, 0.0004936873620459, -0.0013296315837728, 0.0003788133093633, 0.0004966782905113, -0.001335160139599, 0.000384630119056, 0.0004996497246862, -0.0013406886954252, 0.0003907057872344, 0.0005027123607647, -0.0013461071077717998, 0.0003967522264177, 0.0005056255637270999, -0.0013519262502228, 0.000402798665601, 0.0005087032707734, -0.0013579073791524002, 0.0004089391618798, 0.0005117809778197, -0.0013635257122737, 0.0004152110835267, 0.000514858684866, -0.0013695160116336, 0.0004214830051737, 0.0005179236784557, -0.0013749328310216, 0.0004277466853393001, 0.0005210625386705, -0.001380262202254, 0.0004340316542312, 0.0005242076120538, -0.001385638844427, 0.0004405969673175, 0.0005272809812819, -0.0013910260860543, 0.000447171900731, 0.0005304159667911, -0.0013963894397025, 0.0004537994573446, 0.0005335509523003, -0.0014026781115884, 0.0004602828440951, 0.0005367006532396, -0.0014083744177295, 0.0004670089341486, 0.0005398303536531, -0.0014140829229963, 0.0004738108698256, 0.0005430620296022, -0.0014198260735006, 0.0004806641982247, 0.0005462937055513, -0.0014257746423569, 0.0004877005079252, 0.0005494791471691, -0.0014312315660269, 0.0004945395708782, 0.0005527197615033, -0.0014369013160933, 0.0005016223862386, 0.0005559603758374, -0.0014425710661597, 0.0005086973558575, 0.0005592009901716, -0.0014477721399285, 0.0005157782663468, 0.0005623965783243, -0.0014535305338425, 0.0005230989282901, 0.0005657346111138, -0.0014592889277566, 0.0005304423254786, 0.0005690726439032, -0.0014650185871574, 0.0005378047610555, 0.0005723261033516, -0.0014707072893427, 0.0005454853594666, 0.000575666726329, -0.0014763132811999, 0.0005529588075929, 0.0005790073493064, -0.0014821870085342, 0.0005606559228602, 0.0005823479722837, -0.0014879496506168, 0.0005683530381274001, 0.0005856885952611, -0.0014933005612739, 0.0005760501533947, 0.0005890462120664, -0.001498988346639, 0.000584131819927, 0.0005924654896594, -0.0015046937437769, 0.0005915017349603, 0.0005958259489528, -0.0015104491890316, 0.0005997254420243, 0.0005992238418249, -0.0015162046342863, 0.0006078766172724, 0.0006026395009072, -0.0015219949192194, 0.0006161291638587, 0.0006060551599895, -0.0015271419520229, 0.000624381710445, 0.0006094142722825, -0.0015324634092979, 0.0006326830200378, 0.0006129205361128, -0.0015379075584515, 0.0006410598661399, 0.0006164079464588, -0.001543801029788, 0.0006494130393401, 0.0006199435257933, -0.0015496945011245, 0.0006581078512756, 0.0006234149718799, -0.0015555268537368, 0.0006666758669074, 0.0006269044086111, -0.0015613223077187, 0.0006754625971686, 0.0006304037326377, -0.0015667331756198, 0.0006842694193683, 0.0006339398176686, -0.0015719231551924, 0.0006931198873317, 0.0006375065641664, -0.0015773818508038, 0.0007019703552951, 0.0006410733106641, -0.0015826440562319, 0.0007108208232585, 0.0006446187552176, -0.0015877475007841, 0.0007196712912219, 0.0006482193203554, -0.001593094715205, 0.0007292635202923, 0.0006518198854932, -0.0015985992181147, 0.0007381087141101, 0.000655420450631, -0.0016043254889733, 0.0007476251359492, 0.0006590210157688, -0.0016099102138378, 0.0007571415577884, 0.0006626836981847, -0.0016155487611214, 0.0007666579796275, 0.0006661191807474, -0.001621298228835, 0.0007761744014666, 0.00066994068528, -0.0016263771632971, 0.0007857980943242, 0.0006736066964235, -0.0016310749969705, 0.0007956286276789, 0.0006772727075669, -0.0016362273269043, 0.0008055903337794, 0.0006809387187104, -0.0016413630523211, 0.0008156845173648, 0.0006846280094815, -0.0016467396618708, 0.0008257836387999, 0.0006883586338856, -0.0016517050205819, 0.0008360006802508, 0.0006920302676396, -0.0016566703792931, 0.0008461472512199, 0.0006957531833998, -0.0016616357380042, 0.0008562425639678, 0.00069947609916, -0.0016664442239569, 0.0008667921805435, 0.0007031990149202, -0.0016711730827315, 0.0008773349557211, 0.0007069219306805, -0.0016759019415061, 0.0008878777308987, 0.000710641844212, -0.0016806308002807, 0.0008984682842417, 0.0007145096276684, -0.0016858424369601, 0.0009092729127164998, 0.0007183153931429, -0.0016921762150884, 0.0009203240646151, 0.0007221211586173, -0.0016964173675452, 0.000931448439039, 0.0007259269240918, -0.001700658520002, 0.0009426235744222, 0.0007297310287126, -0.0017048996724589, 0.0009539033159042, 0.0007335978627903, -0.0017091408249157, 0.0009651617069376, 0.0007374548550155, -0.0017133819773725, 0.0009764200979709, 0.0007413198996876, -0.0017176523920995, 0.0009879725733265, 0.0007451849443596, -0.0017220873443318, 0.0009996776167525, 0.0007490706087002, -0.001726522296564, 0.0010113113752317, 0.0007529494243391, -0.001730722723051, 0.001023167457306, 0.0007567521566255, -0.0017340829606634, 0.0010350235393803, 0.0007607097613165, -0.0017386618714929, 0.0010469022857232, 0.0007646468906034, -0.0017424525225038, 0.0010591414917606, 0.0007685923972024, -0.0017462750228496, 0.0010714983832777, 0.0007725358012954, -0.0017500961671582, 0.0010838552747948, 0.0007764998989664, -0.0017539173114668, 0.001096240688911, 0.0007804791117384, -0.0017577384557753, 0.0011084047723461, 0.0007844929068876, -0.0017615596000839, 0.0011213629310844, 0.0007884444275481, -0.0017648030342937, 0.0011342497071821, 0.0007923855083283, -0.0017678035678753, 0.0011471912528425, 0.0007964026909586, -0.0017703645873624, 0.00116023082505, 0.0008004110591252, -0.0017732111124229, 0.0011734539778167, 0.0008044167596096, -0.0017756130895772, 0.0011866771305833, 0.0008084425802672, -0.0017780150667316, 0.001200073315448, 0.0008125222029856, -0.0017810287025203, 0.0012132746439799, 0.0008165554193678, -0.0017828147956532, 0.0012267150849855, 0.0008205910058584, -0.0017843880070247, 0.001240422062331, 0.000824534681481, -0.0017865371261228, 0.0012541534557338, 0.0008286733656846, -0.0017888571011622, 0.0012679468432454, 0.0008328188989156, -0.0017912188973442, 0.001281740230757, 0.0008369709536294, -0.001793413760359, 0.0012962593181599, 0.000841142249742, -0.0017952671083041, 0.0013104705393762, 0.000845225689861, -0.0017964255351063, 0.0013246817605926, 0.00084930912998, -0.0017968684198922, 0.0013392831374232, 0.0008534432461671, -0.0017984195433434, 0.0013540794766908, 0.0008575682601295, -0.0017992315123441, 0.0013690217832368, 0.000861693274092, -0.0017997275234821, 0.0013834618056975, 0.0008658182880544, -0.0018002235346201, 0.001398510302776, 0.00086997505122, -0.0018002258823652, 0.0014135587998546, 0.0008743737061541, -0.0018016739278702, 0.0014287683083986, 0.000878511494182, -0.0018021916061571, 0.0014442059293334, 0.0008826850645954, -0.0018021547102181, 0.0014593963878938, 0.0008868586350087, -0.0018013830700395, 0.0014751909331064, 0.0008910322054221, -0.0018002844399064, 0.001491088287564, 0.0008952057758355, -0.001798673500662, 0.0015069368284699, 0.0008993793462488, -0.001796904429495, 0.0015230090973643, 0.0009035529166622, -0.0017967249204883, 0.0015393862840638, 0.0009077264870755, -0.0017942263304904, 0.0015553420196484, 0.0009123261828011, -0.0017917277404925999, 0.0015716110722368, 0.0009162819576544, -0.0017892291504947, 0.0015879387618724, 0.0009205666369026002, -0.0017855167646362, 0.0016043919683224, 0.0009248513161509, -0.0017821924841994, 0.001621297008823, 0.0009291359953991, -0.0017806520267372, 0.0016381842717968, 0.0009334206746473, -0.0017764125890862, 0.001655130757259, 0.0009377053538956, -0.0017721731514352, 0.0016720575307839, 0.000942008619754, -0.0017679337137842, 0.0016894185132343, 0.0009463962120233, -0.0017632300240029, 0.0017068568445988, 0.0009506850446403, -0.0017593652412555, 0.0017241828672928, 0.0009549932498299, -0.001754461277459, 0.0017414754203759, 0.0009593014550195, -0.0017495573136625, 0.0017596657708571, 0.0009636096602091, -0.0017437583304342, 0.001777625973598, 0.0009679342419473, -0.0017375598255732, 0.0017955861763388, 0.0009722682483513, -0.0017318354397811, 0.0018135463790796, 0.0009765856461948, -0.0017258684467435, 0.0018328426962026, 0.0009808977612126, -0.0017170966964336, 0.0018508438549805, 0.0009853187125729, -0.0017098334591915, 0.0018687445387058, 0.0009897475817939, -0.0017014007722445, 0.0018873312743755, 0.0009941593707899, -0.0016929680852975, 0.0019064028003376, 0.0009985022018186, -0.0016845353983506, 0.0019254743262997, 0.0010028008938836, -0.0016755530057395, 0.0019445458522618, 0.0010071400727208, -0.0016660744933951, 0.0019636034969792, 0.0010115315791227, -0.0016560708962844, 0.0019829989601589, 0.0010159310027538, -0.0016462427697518, 0.0020023944233386, 0.0010203238200552, -0.0016306044633373, 0.0020217898865182, 0.0010246651159075, -0.0016207558086433, 0.0020411853496979, 0.0010289007868224, -0.0016059627302559, 0.0020620159388805, 0.0010334523664332, -0.0015956240769604, 0.0020813518712167, 0.0010378157287178, -0.0015803102073876, 0.0021016858256466, 0.0010422005326033, -0.0015649963378147, 0.002122130200091, 0.0010465853364889, -0.0015514343264533, 0.0021426194650537, 0.0010509970348998, -0.0015341424154192, 0.0021631087300164, 0.0010553419256455, -0.0015182143608209, 0.0021835979949791, 0.0010598035787915, -0.0015014556469984, 0.0022044358885693, 0.0010642558763238, -0.001484696933176, 0.0022257773135136, 0.0010687081738562, -0.0014682259215158, 0.0022473676763589, 0.0010731505111464, -0.0014522558200065, 0.0022682539909875, 0.0010775351343312, -0.0014321257557431, 0.0022898158218093, 0.0010819217799385, -0.0014112700909378, 0.002311377652631, 0.0010863084255457, -0.0013904144261324, 0.0023327285406789, 0.0010906646228412, -0.0013698432905882, 0.002354236005826, 0.0010951882387461, -0.0013477557060531, 0.0023765806588227, 0.0010996892131722, -0.0013252760569706, 0.0023988019149515, 0.0011041724414671, -0.0013027964078882, 0.0024212327536165, 0.0011085737536813, -0.0012768632194061, 0.0024433704467179, 0.0011129498141931, -0.0012496087529237, 0.0024659428813628, 0.0011173499446098, -0.001222710320666, 0.0024886994972573, 0.0011216511412579, -0.0011935914789662, 0.0025114032863408, 0.0011262597335285, -0.0011681809044823, 0.0025341070754243, 0.0011306642069316, -0.0011337647896972, 0.0025568108645078, 0.0011350657192317, -0.0011024497555516, 0.0025802008735141, 0.0011394609602339, -0.001071134721406, 0.0026034193923012, 0.0011439215397668, -0.0010398196872604, 0.0026271236246328, 0.0011483750308636, -0.0010108201423636, 0.0026506958366008, 0.0011528285219604003, -0.0009739296363925, 0.0026742680485688, 0.0011572820130571, -0.0009379659684593, 0.0026978402605368, 0.0011618949742971, -0.0009067164582285, 0.0027218676617076, 0.0011662210804683, -0.0008563926669003, 0.0027457960092448, 0.0011706093869099, -0.0008153201932664, 0.0027697243567819, 0.0011750241997864, -0.0007742477196324, 0.0027934491539686, 0.0011794008006845, -0.0007331752459985, 0.0028184003927629, 0.0011838916776351, -0.0006921027723646, 0.0028433516315572, 0.0011883825545857, -0.0006510302987307, 0.0028683028703515, 0.0011928583981932, -0.0006121885324947, 0.0028936776870734, 0.001197289548546, -0.0005489654431809, 0.0029184860092569, 0.0012017167974459, -0.0005067518919991, 0.0029435116873488, 0.001206131508697, -0.0004546462284219, 0.002968766251051, 0.0012105156706551, -0.0003995667594879, 0.0029940208147532, 0.0012148998326132, -0.000344487290554, 0.0030196253637052, 0.0012192839945713, -0.0002894078216201, 0.0030449290416641, 0.0012235924239704, -0.0002298909217867, 0.0030712237008731, 0.0012281273644377, -0.0001680064892468, 0.0030975699337565, 0.0012325990946483, -0.0001106051235543, 0.0031239293346748, 0.0012370236454375, -4.58450033347286e-05, 0.0031502887355932, 0.0012414694924684, 1.89151168849298e-05, 0.0031766481365116, 0.0012459184274904, 8.36752371045924e-05, 0.00320300753743, 0.0012502924301698, 0.0001538644866968, 0.0032294853437039, 0.001254599707067, 0.0002276722713897, 0.0032559282710689, 0.0012589338477372, 0.0003042569848923, 0.0032823711984338, 0.0012632008698762, 0.0003769568223299, 0.0033088905986034, 0.0012675575179028, 0.0004538614019075, 0.0033358185415031, 0.0012719141659293, 0.0005343016550566, 0.0033627625873426, 0.0012762479130784, 0.0006261890703284, 0.0033896191794957, 0.0012805825476212, 0.0007035794809521, 0.0034171959364441, 0.0012848237100605, 0.0007918464492326, 0.0034447726933925, 0.0012890631168872, 0.0008821296557587, 0.0034722770295171, 0.0012932844783397, 0.0009799400188533, 0.0034981395028842, 0.0012975058397923, 0.001073976972717, 0.003528340009521, 0.001301812126067, 0.0011737481407545, 0.0035562160071033, 0.0013062110069342, 0.0012756328344679, 0.0035843768149096, 0.00131047007665, 0.0013775175281814, 0.0036108526815472, 0.0013148216265249, 0.0014861780247188, 0.0036396032165213, 0.001319071684509, 0.0015950098975383, 0.0036684049687085, 0.0013233121597211, 0.0017149110049635, 0.0036965183099958, 0.0013275526349331, 0.0018426103537113, 0.0037248748624979, 0.0013318450511988, 0.0019639263135864, 0.003753231415, 0.0013360395222974, 0.0020879019853085, 0.0037816283712372, 0.001340241627854, 0.002211667651678, 0.0038100517587897, 0.0013442663050133, 0.0023458224518748, 0.0038390173805388, 0.001348380396778, 0.0024799339688382, 0.0038674548042495, 0.0013525257452357, 0.0026200661378014, 0.0038957529466407, 0.0013567020525316, 0.0027668877853212, 0.003923772618264, 0.0013610529086734, 0.002913709432841, 0.0039542616896501, 0.0013648841784801, 0.0030605310803607, 0.0039833530897927, 0.0013690442004215, 0.0032102449166610996, 0.0040127046608789, 0.0013732042223629, 0.0033677377829071, 0.0040421468046736, 0.0013773308461488, 0.003556633348152, 0.0040712281960218, 0.0013814291183557, 0.0037352698879318, 0.0041001007261332, 0.0013855273905626, 0.0039159986777679, 0.0041289732562446, 0.0013896673533822, 0.0040918190369149, 0.0041587575074521, 0.0013936125318612, 0.0042842021133466, 0.0041886499770288, 0.00139773077559, 0.004477889523611999, 0.0042185375470548, 0.001401735097134, 0.0046822477645576, 0.0042482891577447, 0.001405720565643, 0.0048866060055032, 0.0042780200447595, 0.0014097060341521, 0.0050984576708386, 0.0043080009885029, 0.0014136915026611, 0.0053176610555686, 0.0043382904210453, 0.0014176099593736, 0.0055458422506096, 0.0043681855006171, 0.0014215925860693, 0.0057847638882598, 0.0043981192559373, 0.0014252727965791, 0.0060234707372303995, 0.0044269837988713, 0.0014291838513946, 0.0062576177152163, 0.0044568691701137, 0.0014330949062101, 0.0065068556267646, 0.0044867801137558, 0.0014371132566672, 0.0067682754230448, 0.0045161404778411, 0.0014414026810001, 0.0070391390537781, 0.0045470147089879, 0.0014450337331337, 0.0073262321479528, 0.0045771430482963, 0.001448836423295, 0.0076133252421275, 0.0046079559804811, 0.001452621108567, 0.0078937336185737, 0.0046379301101489, 0.0014563979405334, 0.0081713197777129, 0.0046676048690416, 0.0014601368847526, 0.0084489059368521, 0.0046976476210124, 0.0014638733791615, 0.008836714736353, 0.0047278470637256, 0.0014676098735704, 0.0091561881430148, 0.0047578452223364, 0.0014713463679793, 0.0095185244921686, 0.004787792246116, 0.0014753958755753, 0.0098648142489437, 0.0048170194620867, 0.0014790014625069, 0.0102152059378818, 0.0048462992836158, 0.0014826070494384, 0.0105655976268198, 0.0048775213479769, 0.0014862126363699, 0.0109814972248539, 0.004907359631067, 0.0014898182233015, 0.0113588860272016, 0.0049371979141571, 0.0014934262957382, 0.0117528767845744, 0.0049667921197397, 0.0014971494145613, 0.012186606259845, 0.0049961863241704, 0.0015007527304554, 0.0126127198638048, 0.0050270491077718, 0.0015043560463495, 0.0130553156987753, 0.0050565707811665, 0.001508014015667, 0.0134979115337458, 0.005086799131728, 0.0015115223902198, 0.0139272181636886, 0.0051170145578451, 0.0015149683409342, 0.014425910292275, 0.0051470307379546, 0.0015184569640378002, 0.0149333122043755, 0.0051770469180642, 0.0015219455871415, 0.015457863561567902, 0.0052068184780665, 0.0015253922669377, 0.0159824149187603, 0.0052363769629349, 0.0015287877576496, 0.0165069662759527, 0.005264964661565, 0.0015321599379244, 0.017060979097726, 0.0052942509561619, 0.0015355321181993, 0.0176292888648659, 0.0053230190099053, 0.0015389042984742, 0.0182413846630771, 0.0053534726864681, 0.0015423931454267, 0.0188555986364269, 0.0053832126473999, 0.0015457262938635, 0.0194978204688974, 0.0054107372920829, 0.0015490424665342, 0.020140042301368, 0.0054397319828098, 0.0015522187248853, 0.0207822641338385, 0.0054689465852066, 0.0015555022911095, 0.0214244859663091, 0.0054981611876034, 0.0015587234236974, 0.022187847469656, 0.0055273757900002, 0.0015619175096823, 0.0228356929087596, 0.0055561674647572, 0.0015651056442559, 0.0236226695268317, 0.0055850385593374, 0.0015678934470929, 0.0244096461449038, 0.0056139096539176, 0.0015712484477103, 0.025196622762975997, 0.0056427807484977, 0.0015744590835324, 0.025983599381048, 0.0056681223434767, 0.0015775753887499, 0.0267357129968736, 0.0056958412007864, 0.0015806145147553, 0.0276065979560759, 0.0057261979881171, 0.0015836536407607, 0.0285215956442029, 0.0057535427343799, 0.0015866960401029, 0.0294596964430027, 0.0057807249577117, 0.0015897403083657, 0.0303977972418025, 0.0058087749093195, 0.0015927033338751, 0.0313358980406023, 0.0058361904163282, 0.001595583179492, 0.0323026395811684, 0.0058636059233369, 0.0015984585328418003, 0.0332297743813405, 0.0058889215630316, 0.0016013233081595, 0.0342831550873308, 0.0059169913623706, 0.0016041002837735, 0.0353029223252083, 0.0059439435715828, 0.0016068762870961, 0.0363406931929468, 0.0059714253056236, 0.0016096552759677, 0.0374278935583192, 0.0059990295103339, 0.0016123940533226, 0.0385150939236917, 0.0060252345117938, 0.0016151155783187, 0.039692705666872, 0.0060514395132538, 0.0016178371033148, 0.0409167667378377, 0.0060771406887968, 0.0016204910740013, 0.0421956952922563, 0.0061023537028823, 0.0016230765133695, 0.043373827529557, 0.0061275447741458, 0.0016256183401111, 0.0446694421028355, 0.0061522326088891, 0.0016281601668527, 0.0459650566761142, 0.0061769204436323, 0.0016307019935943, 0.0472606712493927, 0.0062016769377712, 0.0016331506133395, 0.0485562858226713, 0.0062265916571652, 0.001635646368427, 0.0498535992869567, 0.0062511046060201, 0.001638068310904, 0.0512644334490164, 0.0062748704476831, 0.0016404902533811, 0.0526752676110761, 0.0062988934436821, 0.0016428707327704, 0.0540714801299771, 0.0063213963095464, 0.001645198031974, 0.0555038222370263, 0.0063429752523705, 0.0016474675773249, 0.0569642266128685, 0.0063672868717695, 0.0016497371226757, 0.0584381022169155, 0.0063902888364037, 0.0016520066680266, 0.0599119778209626, 0.0064127455296187, 0.0016541601291295, 0.0615345571328864, 0.0064350638435488, 0.0016563499726507, 0.0631420096899115, 0.0064566967944517, 0.0016584810332113, 0.0646143822736669, 0.006479021074957, 0.001660600203916, 0.0660510670194804, 0.0065008880531619, 0.0016627111465261, 0.0675286724553261, 0.0065198754250499, 0.001664858036614, 0.0693523138343946, 0.006541678399515, 0.0016669264621654, 0.0708957187086867, 0.0065629375078112, 0.0016689261538578, 0.0727860807489274, 0.0065842775244245, 0.0016706069943617, 0.0743428347846275, 0.0066046654911979, 0.0016726226267073, 0.0758995888203275, 0.0066246206630866, 0.001674638259053, 0.0774563428560276, 0.0066429683617301, 0.0016766855787019, 0.0790130968917277, 0.0066625803562443, 0.0016786222664764, 0.0805698509274278, 0.0066816985039769, 0.0016803103586966, 0.0821266049631278, 0.006700816651709499, 0.0016820474889399, 0.0843468434633577, 0.0067173869797457, 0.0016837846191832, 0.0856406292540275, 0.0067355767713661, 0.0016854246560902, 0.087401809454829, 0.006753558896686, 0.0016870240953348, 0.0889659347832605, 0.0067715410220059, 0.0016886223602974, 0.0905300601116921, 0.006788523141709, 0.0016903277457477, 0.0919009870855618, 0.0068050859175255, 0.0016919465155843, 0.0935746562115302, 0.0068213012192545, 0.0016935506147947, 0.0951455677943792, 0.0068371088937419, 0.0016950393819411, 0.0966924639770202, 0.0068536601558043, 0.0016965281490875, 0.0982393601596614, 0.0068689153635748, 0.0016979575823342, 0.0995096807906246, 0.0068841705713452, 0.001699431439585, 0.101200425017518, 0.006897849188838, 0.0017007725652615, 0.102741925264899, 0.0069104558858096, 0.001702113690938, 0.104101107057649, 0.006925450568134, 0.0017031186954244, 0.105393894420524, 0.0069391998197652, 0.0017045549811786, 0.106711798041901, 0.0069526686778978, 0.0017058749532577, 0.108029701663278, 0.0069660274774112, 0.0017070784637132, 0.109329564900419, 0.0069787031146654, 0.0017085043931475, 0.110625725333162, 0.0069905952507511, 0.0017096368386158, 0.111749857014761, 0.0070024873868368, 0.0017107692840841, 0.112868339514225, 0.0070130350353462, 0.0017117271019292, 0.113865719118395, 0.0070241314499823, 0.0017127793312184, 0.114959500641085, 0.0070352001016107, 0.0017139149597835, 0.116115244715826, 0.0070452793464028, 0.0017148653786644, 0.117270988790566, 0.0070550301791186, 0.0017158157975453, 0.11832286129974, 0.0070638868524464, 0.0017167662164262, 0.119286126963954, 0.0070732006224858, 0.0017175968025501, 0.120170954699872, 0.0070815348352747, 0.0017184625115899, 0.121055782435791, 0.0070893130051908, 0.0017192717200335, 0.121901220322352, 0.0070972863266267, 0.0017200092242027, 0.122699186761964, 0.0071025220436731, 0.001720693236939, 0.1234498821103, 0.0071107980788476, 0.0017213772496753, 0.124123768287835, 0.0071194707276502, 0.0017219471200851, 0.124798169009388, 0.0071256349663164, 0.0017225439746268, 0.125463717532074, 0.0071311495137263, 0.0017231641615175, 0.126078442496827, 0.0071366640611362, 0.001723786041491, 0.126693167461579, 0.0071421786085461, 0.0017243272255705, 0.127220837420962, 0.0071421273648469, 0.0017248314340984, 0.12769491896692, 0.0071477648272356, 0.0017253108876412, 0.128169000512877, 0.0071501260008319, 0.0017257142084958, 0.128461457717985, 0.0071562567628722, 0.0017261559591131, 0.129082897945297, 0.0071584500380771, 0.0017265416672165, 0.129468993397123, 0.0071606433132821, 0.0017268406148627, 0.129687650303603, 0.007162836588487, 0.0017270550388566, 0.129891882844397, 0.007165029863692, 0.0017272021614573, 0.130096422344081, 0.0071659502261144, 0.0017273849025287, 0.130271716928769, 0.0071673474423341, 0.0017274500425659, 0.13039341441668, 0.0071668553225532, 0.001727497699419, 0.13051511190459, 0.0071667143455241, 0.0017275453562721, 0.130383194732741, 0.007166573368495, 0.0017275930131252, 0.13053458832312, 0.007166432391466, 0.0017276406699783, 0.130697982966324, 0.0071634645286584, 0.0017272770719963, 0.130526488491562, 0.0071608847396013, 0.001727136184402, 0.130382525791173, 0.0071594448733453, 0.0017271691554382, 0.130211298494551, 0.007155969245721, 0.0017270004901141, 0.130040071197929, 0.0071524936180967, 0.0017268319857685, 0.129916369443871, 0.0071490179904724, 0.0017266516789144, 0.129739904235892, 0.0071455423628481, 0.0017263148585129, 0.129550694306412, 0.0071420667352238, 0.0017260886533199, 0.129163199635685, 0.0071388499676593, 0.0017256873742814, 0.128796084745393, 0.007133254491379, 0.001725286095243, 0.128431186894076, 0.0071276590150987, 0.0017248848162045, 0.127945915136816, 0.0071223955480981, 0.0017244576346275, 0.127454739223973, 0.0071166658093707, 0.0017239117622864, 0.126941829692927, 0.0071109360706433, 0.0017233466704382, 0.126409699417491, 0.0071042501052809, 0.0017227445422467, 0.125553489868094, 0.0070954888505512, 0.0017221185568929, 0.125062109607101, 0.0070889383958879, 0.0017214763323765, 0.124366264426482, 0.0070802058051686, 0.0017207970701098, 0.123670419245862, 0.0070714732144494, 0.0017200865574934, 0.122885284941031, 0.0070625282645336, 0.0017193343620293, 0.122077016492499, 0.0070538579019291, 0.0017184192454417998, 0.121161132301782, 0.0070438012682151, 0.0017175693599569, 0.120249153658137, 0.0070323391464699, 0.0017168828583452, 0.11967165116326, 0.0070208770247246, 0.0017160293369181, 0.118361218223119, 0.0070102718924585, 0.0017149576811927, 0.117448457715261, 0.006999018399348299, 0.0017140080467523, 0.116411005719947, 0.0069873705603617, 0.0017129653944381, 0.115373553724632, 0.0069750169054996, 0.0017119545266821, 0.114336101729318, 0.0069593357279327, 0.001710830095451, 0.113195094592727, 0.0069462133150268, 0.0017097056642199, 0.112039952468278, 0.0069326247323824, 0.0017085812329888, 0.110805385064949, 0.0069220169621077, 0.0017074568017578, 0.109523086801158, 0.0069069705904039, 0.0017062539270022, 0.108243447874495, 0.0068922641852531, 0.0017050335095214, 0.106963808947833, 0.0068775577801023, 0.0017036202245059998, 0.10568417002117, 0.0068622416729123, 0.0017022445252539, 0.104268301617802, 0.0068470200229689, 0.0017009991260906, 0.10279868060516, 0.0068316531648363, 0.0016996276893112, 0.101428194418917, 0.0068161411435322, 0.0016978638316231, 0.0998774274694785, 0.0067998377624771, 0.001696575175347, 0.0983266605200399, 0.0067831369504309, 0.0016950864138822, 0.0967865633008647, 0.0067657975602715, 0.0016935030604701, 0.0952479451200244, 0.006747653063839, 0.0016920846271996, 0.0937016458814111, 0.0067300424461536, 0.0016903656791153, 0.0920289664680526, 0.0067117483095057, 0.001688646731031, 0.090310916646173, 0.0066922842361842, 0.0016869277829467, 0.0886946981569645, 0.0066728278024707, 0.0016852088348624, 0.0870471247376279, 0.0066538514752735, 0.001683477797099, 0.0853740702108801, 0.0066347590557992, 0.0016817198834115, 0.0836487255159816, 0.0066156666363249, 0.001679961969724, 0.0819233808210831, 0.0065957564412926, 0.0016781371751614, 0.0802232592948711, 0.006575356108985, 0.0016762487745483, 0.0784502556153114, 0.006554955776677399, 0.0016743603739352, 0.0766122034331799, 0.0065330565101503, 0.0016724719733221, 0.0748922423170414, 0.0065118161216871, 0.0016704936123622, 0.0732579469646555, 0.0064913847159112, 0.0016684432077531, 0.0715386633682238, 0.0064688173172085, 0.0016663732406159, 0.0698193797717923, 0.0064449204293501, 0.0016642749860289, 0.0681289980999825, 0.0064239383809611, 0.0016620363573876, 0.0664617563035061, 0.0064009009344162, 0.0016599674697564, 0.0647945145070294, 0.0063778634878713, 0.0016578772667167, 0.0631667953272727, 0.0063543392854293, 0.0016557693480879, 0.0613534810261136, 0.0063308395945119, 0.0016536296217486, 0.0595759844555078, 0.006307339903594499, 0.0016513527418251, 0.0578202396984491, 0.0062832813760205, 0.001648979507887, 0.056064660511227, 0.0062603468376141, 0.0016466164081693998, 0.0546689671351738, 0.0062366418784849, 0.0016443673021459, 0.053052301126763, 0.0062120005522253, 0.0016420024953, 0.0512481338144463, 0.0061870708584188, 0.0016396522083707, 0.0497537614328065, 0.0061621411646124, 0.0016371634636158, 0.0482593890511665, 0.0061378043094437, 0.0016347267153942, 0.0467876250373092, 0.006111115754418, 0.0016322899671727, 0.045342529263299, 0.0060844271993923, 0.0016298472334699, 0.0438974334892889, 0.0060591360586065, 0.0016275811562847, 0.0424523377152787, 0.0060326360234345, 0.0016250230226377, 0.0410193953224242, 0.0060061359882625, 0.0016224320133291, 0.0395641343619497, 0.0059796359530904, 0.0016198554456226, 0.0382215564980974, 0.005952860115658, 0.001617278877916, 0.0369489215976097, 0.0059270967187267, 0.001614542810893, 0.0355767141456201, 0.005899398971925, 0.0016120109268517, 0.0342045066936307, 0.0058727436081572, 0.0016093824528547, 0.0328491587223517, 0.005844929902906101, 0.0016066191886113, 0.0315632213724732, 0.0058167399610339, 0.0016040794253235, 0.0303213145551578, 0.005791063408278, 0.0016013709286757, 0.0292709514834141, 0.0057626928769646, 0.0015985290903217, 0.0280265820949152, 0.0057343223456512, 0.0015956814676082, 0.0269751102011363, 0.0057059518143378, 0.0015928232110408, 0.0258209957104725, 0.0056782539689648, 0.0015899079089816, 0.0247450777202221, 0.0056504592987137, 0.0015869926069224, 0.023648897089107, 0.0056220978854356, 0.0015840525638507, 0.0225754397331075, 0.0055941473586768, 0.0015810991929038, 0.0215927001770893, 0.0055661968319181, 0.0015781458219569, 0.0206121917038675, 0.0055374749355539, 0.0015750540493237, 0.0196316832306456, 0.0055083257930479, 0.0015719743480574, 0.0186727361887591, 0.005478875625439, 0.0015689330485026, 0.0178247559172222, 0.0054497028279515, 0.0015658946282754, 0.0169461754158744, 0.0054203442039192, 0.001562667649691, 0.0160763721437715, 0.0053908332352913, 0.0015595795489656, 0.0152062719418714, 0.0053623246200899, 0.0015564087006857, 0.0143361717399715, 0.0053324632470072, 0.001553193407908, 0.013615828686746599, 0.0053026814094734, 0.0015499503209164, 0.0128442289363222, 0.0052726455385598, 0.0015466481799494, 0.0120726291858979, 0.0052426096676462, 0.0015433460389823, 0.0113567237164084, 0.0052125737967326, 0.0015400872014754, 0.010636119845596, 0.0051852632023929, 0.001536792655322, 0.0099155159747836, 0.0051559338836105, 0.0015334981091685, 0.0092499184795625, 0.0051252648422651, 0.0015300557968705, 0.0085792199502319, 0.00509607302102, 0.0015266792846134, 0.0079197521339223, 0.0050659779294957, 0.0015232747050563, 0.0072536404428304, 0.0050363519438017, 0.0015198624784334, 0.0067787000343988, 0.0050067259581078, 0.0015164524344293, 0.0062045432614582, 0.0049770008768551, 0.0015130230369876, 0.0056305230350587, 0.0049471463853231, 0.001509593639546, 0.0050652939622021, 0.0049172918937911, 0.0015060406979231, 0.0045399287538832, 0.0048873340475595, 0.0015025035370293, 0.0040405603427014, 0.00485759994191, 0.0014989673357409, 0.003554810419661, 0.0048278658362605, 0.0014953671060572, 0.0030689631343808, 0.0047981120231807, 0.0014917668763735, 0.0025831158491006, 0.0047676338058998, 0.0014881915745163002, 0.002183379574323, 0.0047373237683335, 0.0014846801108218, 0.0017017307300915, 0.0047069900515175, 0.0014811611414421, 0.0012777455839441, 0.0046766563347015, 0.0014775510305901, 0.0009114286436032, 0.0046463226178855, 0.0014738559418333, 0.0005325496506067, 0.0046159889010695, 0.0014701608530766, 0.0001536706576101, 0.0045878017844947, 0.0014664657643198, -0.0002281253487771, 0.0045558127294463, 0.0014627699479455, -0.0006151739731098001, 0.0045266698574331, 0.0014590348770567, -0.0009187308777598, 0.0044970435276089, 0.0014552288514765, -0.0012222877824099, 0.0044668587973515, 0.0014514082830493998, -0.0015258446870599, 0.0044374744474635, 0.0014476829033231, -0.0018229072638117, 0.0044079502964584, 0.0014439575235968, -0.0021125425750158, 0.004378531487687, 0.0014401690558798, -0.0023674484550184, 0.0043495358738313, 0.0014362960272512, -0.002598239059294, 0.0043194411777678, 0.0014325076391464, -0.0028263604865131, 0.0042889266685932, 0.0014287130693588, -0.003030167326251, 0.0042599579597409, 0.0014248410274049, -0.0032335993514527, 0.0042288514718145, 0.001420832609301, -0.0034059793135802, 0.0041998553649392, 0.0014169563217249, -0.0035686179878742, 0.0041708592580639, 0.0014129890538135, -0.0037256905921249, 0.0041418631511886, 0.0014092436698039, -0.0038647632018585, 0.0041129426552834, 0.0014052933739141, -0.0039682928965337, 0.0040838674099053, 0.0014013014970207, -0.0040560311880102, 0.0040547660356107, 0.0013973096201273, -0.0041437694794867, 0.0040252875220643, 0.0013931266863785, -0.0042349831431957, 0.0039958090085178, 0.0013892724373389, -0.0043152037668764, 0.0039675695508406, 0.0013853365643368, -0.0044088496171316, 0.0039390545993663, 0.0013813574603203, -0.0044263953899967, 0.0039104139517175, 0.0013773757707361, -0.0044513000989963, 0.0038817733040686, 0.0013733598187601, -0.0044691682519277, 0.0038531326564197, 0.0013693199779545, -0.0044870364048591, 0.0038262911902241, 0.0013652701662098, -0.0044838487593346, 0.0037983228835164, 0.0013612352477177, -0.0044610790771343, 0.0037696536338097, 0.0013571713462559, -0.0044383093949341, 0.0037420469450656, 0.0013531753588969, -0.0044155397127338, 0.0037132874915196, 0.0013489958048398, -0.0042911445642238, 0.0036861195179764, 0.0013448887465478, -0.0042383954166172, 0.0036595765102776, 0.0013407486032411, -0.0041756224106508, 0.0036307614364569, 0.0013366085538675, -0.0041239530198997, 0.0036033567217732, 0.0013324685044939, -0.0040172356917231, 0.0035759520070895, 0.0013283284551204, -0.0039338367361911, 0.0035485472924058, 0.001324071254911, -0.0038473022389771, 0.0035214929952318, 0.0013199477572424, -0.0037607677417631, 0.0034945657883757, 0.0013158242595739, -0.0036604332519609, 0.0034675807507408, 0.0013117095442417, -0.0035482880091246, 0.0034400688958125, 0.001307719426259, -0.0034469121522402, 0.0034142380724294, 0.0013035949311341, -0.003333706318328, 0.0033881586008459, 0.0012993669380849, -0.0032205004844157, 0.0033618728633516, 0.0012951542254013, -0.0031072946505035, 0.0033355956222735, 0.0012909415127176, -0.0029940888165913, 0.0033093251385028, 0.0012867288000339, -0.0028720249724226, 0.003283054654732, 0.0012824666174531, -0.0027535023578718, 0.0032569313546167, 0.0012781989922251, -0.002634979743321, 0.0032308302712144, 0.0012739313669971, -0.0025251587519531, 0.0032052390130892, 0.001269663741769, -0.0024334547605202, 0.0031798748980653, 0.0012654904611305, -0.0023407625359555, 0.0031544073752746, 0.0012613004060582, -0.0022493515333478, 0.0031287721835893, 0.0012570708247041, -0.0021583897700465, 0.0031032526254224, 0.0012528412433499, -0.0020577428904038, 0.0030783890446961, 0.0012486116619957, -0.0019559293578898, 0.0030535740074844, 0.0012443820806415, -0.0018562297240626, 0.0030287589702726, 0.0012400837860729, -0.0017765419946672, 0.003004441483814, 0.0012358658475733, -0.0016832786819406, 0.0029802474633594, 0.0012315973349984, -0.0015959675367638, 0.0029556612577856, 0.0012273246778575, -0.0015122724015718, 0.0029311182884215, 0.0012230753179684, -0.0014464132117833, 0.0029066025207537, 0.0012187334035099, -0.0013583910358094, 0.0028828796735959, 0.0012144133842261, -0.0012768657630978, 0.0028590542249174, 0.0012101076997226, -0.001219613603758, 0.0028350556858095, 0.0012058127769055, -0.0011541378225191, 0.0028111702131817, 0.0012015178540884, -0.0010886620412801, 0.0027872847405539, 0.0011972170546922, -0.0010252756546409, 0.0027646176197906, 0.0011929269405105, -0.0009621205872501, 0.0027418057946235, 0.0011887391568127, -0.0008989655198593, 0.0027189823213579, 0.0011843251519198, -0.0008568113656604, 0.002695786300573, 0.0011799620270084, -0.0008031717003923, 0.0026727667445817, 0.0011756279349261, -0.0007535997082005, 0.0026499991892177, 0.0011712938428438, -0.0007046896577062, 0.0026271527747869, 0.0011669597507615, -0.0006557796072119, 0.0026051090350896, 0.0011626256586793, -0.0006272055538729001, 0.0025830652953923, 0.001158291566597, -0.0005873334929069999, 0.002561141383578, 0.001153930878956, -0.0005289418509236, 0.0025393295501665, 0.0011495370127655, -0.0004988486410776, 0.002517517716755, 0.0011452510361113, -0.0004687554312316, 0.0024952649885583, 0.0011407892964984, -0.0004426804519314, 0.0024748725767112, 0.0011364803996266, -0.0004092101346478, 0.0024534640293945, 0.0011321715027548, -0.0003800400004291, 0.0024319064193313, 0.001127862605883, -0.0003481271668165, 0.0024099952635125, 0.0011235629176845, -0.0003227320015951, 0.0023891340722521, 0.0011192260451868, -0.0002973368363738, 0.0023683299613353, 0.0011148891726891, -0.0002787497340886, 0.0023475258504186, 0.0011105512720884, -0.000258756704509, 0.0023270988298504, 0.0011062121700223, -0.000237218463514, 0.0023066394841322, 0.0011018040913734, -0.0002153076029436, 0.0022861268572602, 0.0010975048100728, -0.0001972052797989, 0.0022661689772077, 0.0010932249851793, -0.0001806582282729, 0.0022462587808157004, 0.0010889590593726, -0.0001670325402975, 0.0022262600594211, 0.0010846931335659, -0.0001534068523222, 0.0022061616633442, 0.0010804274141374, -0.0001422810300442, 0.0021868129545246, 0.001076087770626, -0.0001308301711206, 0.0021675299568098, 0.0010717392023799, -0.00012001069463190001, 0.0021482768642796, 0.0010674810943381, -0.0001124625315315, 0.0021291406272263, 0.0010631785832583, -0.0001055973226161, 0.0021100088532755, 0.0010588995794392, -9.74509995515929e-05, 0.0020901068872914, 0.0010546205756201, -9.25281503163712e-05, 0.0020721698823287, 0.001050341571801, -8.98607808322629e-05, 0.002053468298328, 0.0010459828874652, -8.37380813241858e-05, 0.0020346477289004, 0.0010417171560588, -8.09733975270886e-05, 0.0020164232172626, 0.0010374862142216, -7.82087137299911e-05, 0.0019981987056248, 0.001033214716147, -7.62704810736196e-05, 0.0019800014079202, 0.001028943023297, -7.57435742809512e-05, 0.001961975456897, 0.0010246794172932, -7.67452257810172e-05, 0.0019443870079835, 0.001020451522768, -7.774687728108321e-05, 0.0019268105191669, 0.0010162236282428, -7.87485287811492e-05, 0.0019085108438387003, 0.0010119870864817, -7.97501802812151e-05, 0.0018916317321404, 0.0010077020034287, -8.37557572551294e-05, 0.0018739881390394, 0.0010034257506444, -8.68570172125101e-05, 0.0018565264382033, 0.0009991181044103, -9.22426668058846e-05, 0.0018392304248458, 0.0009950349994503, -9.49844611633423e-05, 0.0018224452247876, 0.0009907336885359, -9.96286571356079e-05, 0.001805659828614, 0.0009865705031592, -0.0001043294965178, 0.0017889662581104, 0.0009824100059494, -0.0001099800808386, 0.0017724101997906, 0.0009782580304595, -0.0001142076572046, 0.0017557162952002, 0.0009740861612367, -0.0001205155461468, 0.0017396692655838, 0.0009699142920139, -0.0001272548912663, 0.0017236222359674, 0.0009657481203857, -0.0001338250413063, 0.001707575206351, 0.0009615608001692, -0.0001412631522464, 0.0016910020724122, 0.0009573500837651, -0.000148802050823, 0.0016754212512197, 0.0009531303421211, -0.0001561158052651, 0.0016598404300272, 0.0009491361454629, -0.0001641604119665, 0.0016442596088346, 0.0009450190016215, -0.000172551488505, 0.0016287828225651, 0.0009409018577801, -0.0001815615091711, 0.0016136529235145, 0.0009367769422012, -0.0001905365411176, 0.0015985080183681, 0.0009326654207645, -0.000199511573064, 0.0015833947706489, 0.0009285538993277, -0.0002091905107707, 0.0015686916755066, 0.0009244423778909, -0.0002173396883685, 0.0015537011179149, 0.0009203391952852, -0.0002268095415497, 0.0015389519518522, 0.0009162711077072, -0.000236279394731, 0.0015242027857895, 0.0009122286734843, -0.0002461514172292, 0.0015094536197267, 0.0009081222093661999, -0.0002560583198465, 0.001494704453664, 0.0009040157452482, -0.0002659652224637, 0.0014812036834556, 0.0008999092811301, -0.000275872125081, 0.001466593212834, 0.0008957942109237, -0.0002857790276982, 0.0014527769628013, 0.0008916874846986, -0.0002959112082523, 0.0014389607127687, 0.0008878487801128, -0.0003063326221174, 0.001425144462736, 0.0008838794184211, -0.0003163957147803, 0.0014115772371928, 0.0008798757804038, -0.0003262309432942, 0.0013979498166122, 0.0008758721423865, -0.0003355738968155, 0.001384301077998, 0.0008718685043692, -0.00034557118563069997, 0.0013706523393837, 0.000867864866352, -0.0003555684744459, 0.001357543005225, 0.0008638612283347, -0.0003656388094563, 0.0013445351825825, 0.0008598575903174001, -0.0003756828460351, 0.0013314076035688, 0.0008558539523001, -0.0003857528874026, 0.0013184359424369, 0.0008519180051985, -0.0003953596798771, 0.0013055472283992, 0.0008478702399297, -0.0004049664723515, 0.0012928322149688, 0.0008439665296466, -0.0004145704401387, 0.0012803269979981, 0.0008400628193635, -0.0004241301945176, 0.0012679235995745, 0.0008361591090804, -0.0004336899488966, 0.0012554457995749, 0.0008322534129772, -0.0004434155348065, 0.0012429967698254, 0.0008283419506065, -0.0004531070725321, 0.0012307884578651, 0.0008244304882358, -0.0004613969669265, 0.0012185423935557, 0.000820519025865, -0.000472564607135, 0.0012063712461267003, 0.0008164914706766, -0.0004813445400705, 0.0011944988736123, 0.0008126895322534, -0.0004901244730059, 0.0011827603073771, 0.0008088661073715, -0.0004990396353392, 0.0011710104564386, 0.0008050377846954, -0.0005080282967776, 0.0011593151069407, 0.00080119643348, -0.0005170169582159, 0.0011478643216481003, 0.0007973556702735, -0.0005254155137586, 0.0011364131969517, 0.0007935555635049, -0.0005336791389201, 0.0011249620722553, 0.0007897554567362, -0.0005424336783563, 0.0011137236719554, 0.0007859553499675, -0.000550688953616, 0.0011024784835809, 0.0007821506470435, -0.0005585424516228, 0.0010915527668544, 0.0007783368186395, -0.0005663959496296, 0.0010806270501279, 0.0007745857627865, -0.0005742494476363, 0.0010697013334014, 0.0007707852445324, -0.0005821029456431, 0.0010590423438471, 0.0007669847262783, -0.0005892534962637, 0.0010481862584787, 0.0007631842080242, -0.0005963340673188, 0.0010377611393315, 0.0007593836897701, -0.0006034240464565, 0.0010270899661474, 0.0007556542002288, -0.0006108927422424, 0.0010165028560292, 0.0007519239956302, -0.0006178449228152, 0.0010061462333762, 0.0007481753169727, -0.000624698468207, 0.0009957896107231, 0.0007445210578828, -0.0006311818570774, 0.0009855542768721, 0.0007408778117887, -0.0006376652459478, 0.0009754025142993, 0.0007371815681844, -0.0006442077918358, 0.00096545422445, 0.0007335201881364, -0.0006504634861546, 0.0009555583183597, 0.0007298588080885, -0.0006567191804735, 0.0009456624122694, 0.0007262122829718, -0.0006628975748204, 0.0009358691726597, 0.0007225516747196, -0.0006687036458927, 0.0009261585343992, 0.0007189547378157, -0.0006748514947569, 0.0009164504580639, 0.0007153578009118, -0.0006800580683616, 0.0009069152835606, 0.0007117532396756, -0.0006856847096316, 0.000897619365885, 0.0007081403619554, -0.0006911585266947, 0.0008883194174116, 0.0007045887318053, -0.0006963908924758, 0.0008790194689382, 0.0007010132754667, -0.0007016232582569, 0.0008697274533714, 0.0006974192272032, -0.0007063671828406, 0.0008605502418093, 0.0006938468878496, -0.0007112426199342, 0.0008514902390092001, 0.0006902745484959, -0.0007162124490768, 0.0008424746841493, 0.0006868009464306, -0.0007207759512742, 0.0008334591292893, 0.0006832305960516, -0.0007256388809568, 0.0008244435744293, 0.0006797702841094, -0.0007306118341986999, 0.0008156007843858, 0.0006763099721672, -0.0007335747617295, 0.0008076002783683, 0.0006728457747122, -0.0007376141213332, 0.0007988284989656, 0.0006693957287435, -0.0007415524091212, 0.0007902288333627, 0.0006659456827748, -0.0007454845879653, 0.0007819790567212, 0.0006624956368060999, -0.0007491997336007, 0.0007737292800796, 0.0006590455908374, -0.0007527785066971, 0.0007654650867975, 0.0006556856635768, -0.0007575181102375, 0.0007571197236884, 0.0006522363723509, -0.0007607947910351, 0.0007487743605794, 0.0006488710232317, -0.0007640210117772, 0.0007405191267771001, 0.0006454971978925, -0.0007671128632643, 0.0007326342520289, 0.000642142255701, -0.0007702047147515, 0.0007246505088741, 0.000638768192654, -0.0007731706213075, 0.0007167840794993, 0.0006354130082288, -0.0007760634828736, 0.0007089176501246, 0.000632072236221, -0.0007788834548238001, 0.0007013368299905, 0.0006287164698903, -0.0007816359706878, 0.0006935317421322, 0.0006253773551246, -0.0007840253361061, 0.0006858901245321, 0.0006222176592449, -0.0007863251372894, 0.0006783483483345, 0.0006187848030336, -0.000788499630209, 0.0006708727700368, 0.0006155288087449, -0.0007910741392716, 0.0006633971917391, 0.0006122728144561, -0.0007929129758065, 0.0006559959806375, 0.0006090168201674, -0.0007954976151945, 0.0006486651563839, 0.0006057720483353, -0.0007978892492392, 0.0006414127191101, 0.0006025337929101, -0.0007997021142587, 0.0006340445877383, 0.0005993174955664, -0.0008012701498348, 0.0006270124868151, 0.0005961019595452, -0.0008028880564883, 0.0006201340207655, 0.0005929190872977, -0.0008045059631418, 0.0006130965585152, 0.0005897528193598, -0.0008061245618602, 0.0006061099906349, 0.0005865777728251, -0.0008075468003953, 0.0005992390713149, 0.0005834619374564, -0.0008089501434771, 0.0005923630225364, 0.0005802949158739, -0.0008101547098451, 0.0005856286529338, 0.0005771278942914, -0.0008113724132408, 0.0005789388772746, 0.0005739691015095, -0.0008123989533424, 0.0005723817693237, 0.0005708666473383, -0.0008134254934439, 0.0005658246613728, 0.0005677812275415, -0.0008143963767246, 0.0005592408344709001, 0.0005647002105543, -0.0008153536009157, 0.0005527431124611, 0.0005616217657136, -0.0008162653579774, 0.0005464184776157, 0.0005585624999465, -0.0008167726552492, 0.0005400874290435, 0.0005555118254067, -0.000817279952521, 0.0005337563804714, 0.0005524673848583, -0.0008177872497929, 0.0005275053590094, 0.0005494569862403, -0.0008186355810639, 0.0005213261880712, 0.0005463971267389, -0.0008191009722659, 0.0005151470171329, 0.0005433544982807, -0.0008192570924287, 0.0005090398155854, 0.0005404015458655, -0.0008205483915346, 0.0005030424545061, 0.0005373918752871, -0.0008205019741321, 0.0004971512954888, 0.0005344278344634, -0.0008204555567296, 0.0004912985900624, 0.0005314709389775, -0.0008204091393272, 0.000485435806992, 0.0005285325398413, -0.000820515917384, 0.0004797312466225, 0.000525596616977, -0.0008204131672158, 0.0004740300801275, 0.0005226596275056, -0.0008202487958326, 0.0004683289136325, 0.0005197184958586, -0.000820172592174, 0.0004627371101444, 0.0005168353184294, -0.0008202351473137, 0.0004570694312546, 0.0005139624578451, -0.0008202098839413, 0.0004515362304235, 0.0005110895972607, -0.0008200346579965, 0.0004460425440069, 0.0005082167366763, -0.0008194516110222, 0.0004406013492809, 0.0005053438760919, -0.0008190992074333, 0.0004351961548622, 0.000502497377767, -0.0008187468038445, 0.0004299016188376, 0.0004996332518505, -0.0008183944002556, 0.0004246070828129, 0.000496725592281, -0.0008180419966667, 0.000419310887016, 0.0004939512087124, -0.0008178522803034, 0.0004140614511259, 0.0004911701243317, -0.0008166827156140001, 0.000408663136318, 0.0004883680168438, -0.0008159337339536, 0.0004036552560865, 0.0004855918987939, -0.0008151199603514, 0.0003986473758549, 0.0004828524080178, -0.0008144411534822, 0.0003936394956234, 0.0004801161990594, -0.0008136414256429, 0.0003886588679834, 0.0004773616475159, -0.0008128416978037, 0.0003836573825059, 0.0004746066965484, -0.0008120419699644, 0.0003787225923271, 0.0004718408430889, -0.0008112422421251, 0.000373851257387, 0.0004691075483394, -0.000810012763665, 0.0003689799224469, 0.0004664127820996, -0.0008090642958939, 0.0003642363768915, 0.0004637197183034, -0.0008081158281229, 0.0003595454287783, 0.0004610366762723, -0.0008071673603518, 0.000354854480665, 0.0004583521647411, -0.0008060485171037, 0.0003501635325518, 0.0004556756783603, -0.0008048747640077, 0.0003456391452819, 0.0004530339324843, -0.0008037122208664, 0.0003411006863558, 0.0004503890261984, -0.000802549677725, 0.0003365622274298, 0.0004477535984153, -0.0008013826748493, 0.0003321972938203, 0.0004451364996459, -0.0008001628070446, 0.00032777477714339995, 0.0004425194008766, -0.0007990960563096, 0.0003233687210494, 0.0004399023021072, -0.0007977069116034, 0.0003191170175744, 0.0004373944805817, -0.0007963177668973, 0.0003146929051007, 0.0004348600551149, -0.0007946457737407, 0.0003104588204585, 0.0004321960374548, -0.0007932425019532, 0.0003062395533705, 0.0004296906538169, -0.0007918041464023, 0.000301990743974, 0.0004271250841614, -0.0007903657908514, 0.0002978161639207, 0.0004246359977922, -0.0007889274353005, 0.0002936995302845, 0.000422137424013, -0.0007875706388447, 0.0002896617508374, 0.0004196101684585, -0.0007861704661253, 0.0002856412150146, 0.000417124013281, -0.0007845328837281, 0.0002815067459587, 0.0004146378581034, -0.0007834287273486, 0.0002775830520137, 0.0004121616625705, -0.000781756302589, 0.0002736357597919, 0.0004097309921627, -0.0007800838778295, 0.0002697036331219, 0.0004073135484667, -0.0007784114530699, 0.0002658764609756, 0.0004048915704265, -0.0007767390283104, 0.0002620492888293, 0.0004024707835978, -0.000775243897694, 0.0002582498075655, 0.0004000499967691, -0.0007738952451412, 0.0002544657754283, 0.0003976692497652, -0.0007720508312286, 0.0002507269102404, 0.000395299631492, -0.0007702064173161, 0.0002470401799515, 0.0003929350190171, -0.0007685424385205, 0.0002433534496626, 0.0003905681031557, -0.0007667830573404, 0.0002396667193736, 0.0003882042120709, -0.0007648940525243, 0.0002359799890847, 0.0003858782987935, -0.0007632912984202, 0.0002325553899786, 0.0003835440787588, -0.0007614531936912, 0.0002290556246761, 0.0003812709895102, -0.0007596114542573, 0.0002254831753452, 0.0003789497350109, -0.0007577446261054, 0.0002220083385777, 0.0003766661078097, -0.0007558894318831, 0.0002185673823452, 0.0003743824806084, -0.0007539654959796, 0.0002151395537204, 0.000372108035128, -0.0007521233478026, 0.00021175948964, 0.0003698580329047, -0.0007503233464227, 0.0002084251524149, 0.0003676074720122, -0.0007484338535104, 0.0002051436400267, 0.0003653601064426, -0.0007465926550505, 0.0002019022713596, 0.00036311274087290005, -0.0007447270055135001, 0.0001986317172214, 0.0003609378354078, -0.0007427908348323, 0.0001954420927438, 0.0003587408450676, -0.0007408260530829, 0.0001921588887662, 0.0003565438547274, -0.0007388612713335, 0.0001890324727832, 0.0003543556384516, -0.0007369536881247, 0.0001860013944584, 0.0003521831008246, -0.0007349399082476, 0.0001829437853216, 0.0003500153177423, -0.0007329987463626, 0.0001798861761848, 0.0003478593670915, -0.0007309456153008, 0.000176828567048, 0.0003457103281948, -0.000728892484239, 0.0001737285138568, 0.0003435959957955, -0.000727103215668, 0.0001709026742294, 0.0003414735193, -0.0007250080861789, 0.0001678502185641, 0.0003393344342789, -0.0007231231206463, 0.000164843824445, 0.000337194023273, -0.0007209462910666, 0.0001620224098514, 0.0003351321765906, -0.0007187694614868, 0.0001591915107592, 0.0003330763369179, -0.000716872394224, 0.0001563520430064, 0.0003310204972452, -0.0007148251141589, 0.0001535220149745, 0.0003289646575724, -0.0007127778340939, 0.0001506919869426, 0.0003269017988737, -0.0007107305540289, 0.0001479428045049, 0.0003248643101188, -0.0007087370390225, 0.00014521037743, 0.0003228283456182, -0.0007065666286598, 0.00014250858037530002, 0.0003207961829181, -0.0007045343883158, 0.0001398607940022, 0.0003187773532782, -0.0007025382358901, 0.0001372201044325, 0.0003167734861404, -0.000700286078091, 0.0001346077101921, 0.0003147606432352, -0.0006982683172335, 0.0001319821667372, 0.0003127700190098, -0.000696250556376, 0.0001293794253228, 0.0003107826412803, -0.0006941028516303, 0.0001268485294779, 0.0003088085318723, -0.0006920897965121, 0.000124307355265, 0.00030683580877119995, -0.0006900805912488, 0.0001218413632755, 0.0003048994663029, -0.0006880688682698, 0.0001193933448235, 0.0003029687373007, -0.0006860577395703001, 0.0001169581404864, 0.0003010380082985, -0.0006837872217948, 0.0001145229361493, 0.0002991146885138, -0.0006812886630339, 0.000112111048424, 0.0002972036677819, -0.0006792703328061, 0.0001097536028487, 0.00029529264705, -0.0006772520025783, 0.000107382297642, 0.0002934102369018, -0.0006752336723505, 0.0001050136840311, 0.0002915085160478, -0.0006732153421227, 0.0001027069905354, 0.0002896328317242, -0.0006711970118949, 0.0001004609957582, 0.0002878031080387, -0.0006691786816671, 9.8182409409435e-05, 0.0002859127766237, -0.0006667990791861, 9.594775200563e-05, 0.0002840647659161, -0.0006648178452851, 9.37130946018253e-05, 0.0002822167552085, -0.000662806665497, 9.14784371980205e-05, 0.0002803739713376, -0.0006608077360399, 8.93139496075192e-05, 0.000278548407679, -0.000658621228505, 8.70725704343152e-05, 0.0002767290310276, -0.0006565283836023, 8.49621510685286e-05, 0.0002749248783057, -0.0006544355386997, 8.2851731702742e-05, 0.0002731232300649, -0.000652342693797, 8.07413123369554e-05, 0.0002713257941958, -0.0006502631677346, 7.86530496302597e-05, 0.000269551410432, -0.000648150985022, 7.66116841480152e-05, 0.0002677770266681, -0.0006460033569195, 7.45390572615141e-05, 0.0002660026429043, -0.0006439275118072, 7.24969894759357e-05, 0.0002642492927216, -0.0006418995465694, 7.04868929054101e-05, 0.0002625055413989, -0.0006398110745237, 6.85095949618852e-05, 0.0002607773719035, -0.0006377254377205, 6.6536926486135e-05, 0.0002590533256648, -0.0006356162365292, 6.45887270341602e-05, 0.0002573048138714, -0.0006335162796811, 6.26144111763336e-05, 0.0002555955565948, -0.0006314509599219, 6.06856528100582e-05, 0.0002538862993181, -0.0006293964733564, 5.88697826254332e-05, 0.0002521910734106, -0.0006273408252405, 5.70478778144581e-05, 0.0002504848683582, -0.0006252597662592, 5.52301105859504e-05, 0.0002488026442401, -0.0006231787072779, 5.33913773696271e-05, 0.0002471263275357, -0.0006210723514843, 5.15822889029398e-05, 0.0002454575661874, -0.0006190697826167, 4.97752185468326e-05, 0.0002437962780823, -0.0006169940489714, 4.80096581169907e-05, 0.000242149322192, -0.0006149950099863, 4.6232195100823295e-05, 0.0002405117206831, -0.0006128809398932, 4.44670228895349e-05, 0.0002388810569915, -0.0006107668698002, 4.27666504650764e-05, 0.0002372654336067, -0.000608662598836, 4.10626869690246e-05, 0.000235649810222, -0.000606559191009, 3.93905627446541e-05, 0.0002340341868373, -0.000604455783182, 3.77184385202834e-05, 0.0002324339072486, -0.0006024892386909, 3.60617941988604e-05, 0.0002308222654803, -0.000600509246617, 3.44456990149065e-05, 0.0002292689166086, -0.0005984353612682, 3.28406512254781e-05, 0.0002277056423418, -0.0005964809867248, 3.12350056089602e-05, 0.0002261186658213, -0.0005944217951737, 2.9705505058184e-05, 0.0002245872266251, -0.0005923626036225, 2.81562570776856e-05, 0.0002230557874289, -0.0005903025530992, 2.66335620294135e-05, 0.0002215243482327, -0.0005882365361251, 2.51108669811415e-05, 0.0002199971557285, -0.0005861596441635, 2.35742177339193e-05, 0.0002184714599507, -0.0005841140321229, 2.20791607927397e-05, 0.000216967723793, -0.0005821242546269, 2.06089769134827e-05, 0.0002154717600876, -0.0005801344771309, 1.91492537273167e-05, 0.000213972896546, -0.000578165697347, 1.77147088470628e-05, 0.0002124985767816, -0.0005761589465654, 1.62801639668088e-05, 0.0002110214254602, -0.0005741334984514, 1.48604891425098e-05, 0.0002095569956941, -0.0005721080503374, 1.34419964498404e-05, 0.0002080925659279, -0.0005701612562991, 1.20983382626954e-05, 0.0002066281361617, -0.0005681783277181999, 1.07130560843651e-05, 0.0002051794971082, -0.0005661953991374, 9.35836932906087e-06, 0.0002037635398324, -0.0005642922523806, 8.02285309342116e-06, 0.0002023475825566, -0.0005622621293538, 6.71463532031401e-06, 0.0002009279552716, -0.0005602320063269, 5.37172192816201e-06, 0.0001995115005179, -0.0005582298843459, 4.09386866231783e-06, 0.0001981109106197, -0.0005562873843537, 2.83658179865251e-06, 0.0001967128485197, -0.0005543309276217, 1.53962223216165e-06, 0.0001953147864196, -0.0005524143306435, 2.96098185609588e-07, 0.0001939619430095, -0.0005505043106975, -9.50681594899478e-07, 0.000192589702649, -0.0005485592543264, -2.17268107863764e-06, 0.0001912333824155, -0.0005466141979553, -3.41292894563257e-06, 0.00018988068095, -0.0005446651872117, -4.62058380683073e-06, 0.0001885275563661, -0.0005427626117405, -5.82823866802878e-06, 0.0001871815817076, -0.0005408651903623, -7.03589352922673e-06, 0.00018585734556619997, -0.0005389680073385, -8.18126260016938e-06, 0.0001845355253721, -0.0005370708243148, -9.360262028554631e-06, 0.00018321100832799998, -0.0005351541578238, -1.04992490237793e-05, 0.0001818864912838, -0.0005333331959165, -1.16251413000938e-05, 0.0001805927662131, -0.0005313626401512, -1.27587183654847e-05, 0.0001793339746812, -0.0005294099997913, -1.3874096239243e-05, 0.0001780395978559, -0.0005276676388588, -1.50138954388461e-05, 0.000176756693314, -0.0005257558261671, -1.61065810053374e-05, 0.0001754737887721, -0.0005238714511768, -1.71939704148186e-05, 0.0001742156138621, -0.0005219870761864, -1.82688013058275e-05, 0.0001729642693437, -0.000520102701196, -1.93131961589366e-05, 0.0001716891603169, -0.0005183097205291, -2.03545213181165e-05, 0.0001704449807466, -0.0005164552437189, -2.13955648023238e-05, 0.0001692164032934, -0.0005145765252728, -2.24304684145972e-05, 0.0001679878258402, -0.0005127252239529, -2.3483070976679e-05, 0.0001667592483871, -0.000510900930704, -2.44570144770062e-05, 0.0001655338689599, -0.0005091059387692, -2.54309579773334e-05, 0.0001643195244717, -0.0005073109468343, -2.64049014776607e-05, 0.0001631214870071, -0.000505495788101, -2.73472580991665e-05, 0.0001619314512245, -0.0005037078072799, -2.8294886852923e-05, 0.0001607404316021, -0.0005019187056094, -2.9235575915307696e-05, 0.00015955046949, -0.0005001296039389, -3.01762649776924e-05, 0.0001583605073779, -0.0004983405022684, -3.11244445891648e-05, 0.000157192242494, -0.0004965311336895, -3.203402956436e-05, 0.0001560310232218, -0.0004947482856928, -3.29436145395551e-05, 0.0001548699559393, -0.0004929951873225, -3.37894858085653e-05, 0.0001537088886568, -0.0004912413084747, -3.46629640722409e-05, 0.0001525625426287, -0.0004894786987537, -3.55387358820739e-05, 0.0001514423962498, -0.0004877160890327, -3.6414507691907e-05, 0.0001502802976803, -0.0004859534793117, -3.72622182774759e-05, 0.000149164918689, -0.0004842469800766, -3.81091701416204e-05, 0.0001480445331008, -0.0004825385118251, -3.89439200485419e-05, 0.0001469185491249, -0.0004807823089841, -3.97609084996352e-05, 0.0001458135458157, -0.0004790544302871, -4.05702930217534e-05, 0.0001447085425064, -0.0004773403540654, -4.13796775438713e-05, 0.0001436099462649, -0.0004755944879831, -4.21803658497698e-05, 0.00014252019768370001, -0.0004737681376628, -4.29729217757853e-05, 0.000141420853577, -0.0004721487307146, -4.37668330461533e-05, 0.0001403395609554, -0.0004704713237288, -4.45284304323664e-05, 0.0001392750592266, -0.000468789530142, -4.52842880064328e-05, 0.0001381939126609, -0.0004670901697517, -4.60344262540155e-05, 0.000137119043515, -0.0004654219163328, -4.67810969307601e-05, 0.0001360784950714, -0.0004637536629139, -4.7529199274809e-05, 0.0001350392669649, -0.000462085409495, -4.8235141780356e-05, 0.0001339957655234, -0.0004603945052094, -4.89463630970017e-05, 0.0001329507224897, -0.0004587537863933, -4.96390481748741e-05, 0.0001319195087755, -0.0004571218664741, -5.03302301885363e-05, 0.0001308882950614, -0.0004554887604567, -5.10208954063402e-05, 0.0001298570813472, -0.0004538540814366, -5.16867589092666e-05, 0.000128825867633, -0.0004522115971839, -5.23783672479968e-05, 0.0001278347274975, -0.00045059377938, -5.30445576874222e-05, 0.0001268374675189, -0.000448965777037, -5.37406107958998e-05, 0.0001258008518395, -0.0004473823430717, -5.43697611272206e-05, 0.000124820075489, -0.0004457954515675, -5.49989114585415e-05, 0.0001238392991386, -0.0004442235602035, -5.56269659936176e-05, 0.0001228585227882, -0.0004426476417739, -5.62456819003234e-05, 0.0001218843641931, -0.0004410717233442, -5.68643978070293e-05, 0.0001209138837976, -0.0004394750696185, -5.74831137137351e-05, 0.0001199434034021, -0.0004378747867044, -5.81007661009646e-05, 0.0001189986716725, -0.0004363363014747, -5.86569402343078e-05, 0.0001180319937142, -0.0004347950182411, -5.92423991967913e-05, 0.0001170733291615, -0.0004332549491808, -5.98305184065061e-05, 0.0001161294053717, -0.0004317037428946, -6.03940219123294e-05, 0.0001151843145347, -0.0004301668505438, -6.09575254181527e-05, 0.0001142459324698, -0.0004286325302018, -6.15167094402477e-05, 0.0001133060750644, -0.0004271128995444, -6.20616343449465e-05, 0.000112390206764, -0.0004256040139625, -6.26065592496452e-05, 0.0001114691614154, -0.0004240979113702, -6.31514841543439e-05, 0.0001105481160669, -0.000422586886949, -6.36964090590425e-05, 0.0001096270707184, -0.0004210540218403, -6.42413339637412e-05, 0.0001087612543311]}, "unit": "T"}]} \ No newline at end of file +{"setup": [{"id": 2678036084816, "type": "Collection", "position": {"value": [0.0, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "No demag", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "children": [{"id": 2678042879984, "type": "Cuboid", "position": {"value": [0.0, 0.0, 0.0005], "unit": "m"}, "orientation": {"value": [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Hard cuboid magnet, susceptibility=0.5", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 0.5}, "dimension": {"value": [0.001, 0.001, 0.002], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 1.0], "unit": "T"}}, {"id": 2678036170400, "type": "Cuboid", "position": {"value": [0.0015, 0.0, 0.0], "unit": "m"}, "orientation": {"value": [[0.7071067811865475, 0.0, 0.7071067811865476], [0.0, 1.0, 0.0], [-0.7071067811865476, 0.0, 0.7071067811865475]], "type": "matrix"}, "style": {"color": null, "description": {"show": null, "text": null}, "label": "Soft cuboid magnet, susceptibility=3999", "magnetization": {"color": {"middle": null, "mode": null, "north": null, "south": null, "transition": null}, "mode": null, "show": null, "size": null}, "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}}, "susceptibility": {"value": 3999}, "dimension": {"value": [0.001, 0.001, 0.001], "unit": "m"}, "polarization": {"value": [0.0, 0.0, 0.0], "unit": "T"}}]}, {"id": 2679646060352, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.001], [-0.0039900000000000005, 0.0, -0.001], [-0.00398, 0.0, -0.001], [-0.0039700000000000004, 0.0, -0.001], [-0.00396, 0.0, -0.001], [-0.00395, 0.0, -0.001], [-0.00394, 0.0, -0.001], [-0.00393, 0.0, -0.001], [-0.00392, 0.0, -0.001], [-0.00391, 0.0, -0.001], [-0.0039, 0.0, -0.001], [-0.0038900000000000002, 0.0, -0.001], [-0.0038799999999999998, 0.0, -0.001], [-0.00387, 0.0, -0.001], [-0.0038599999999999997, 0.0, -0.001], [-0.00385, 0.0, -0.001], [-0.0038399999999999997, 0.0, -0.001], [-0.00383, 0.0, -0.001], [-0.00382, 0.0, -0.001], [-0.00381, 0.0, -0.001], [-0.0038, 0.0, -0.001], [-0.00379, 0.0, -0.001], [-0.0037800000000000004, 0.0, -0.001], [-0.00377, 0.0, -0.001], [-0.00376, 0.0, -0.001], [-0.00375, 0.0, -0.001], [-0.0037400000000000003, 0.0, -0.001], [-0.00373, 0.0, -0.001], [-0.0037199999999999998, 0.0, -0.001], [-0.0037099999999999998, 0.0, -0.001], [-0.0037, 0.0, -0.001], [-0.00369, 0.0, -0.001], [-0.00368, 0.0, -0.001], [-0.00367, 0.0, -0.001], [-0.00366, 0.0, -0.001], [-0.00365, 0.0, -0.001], [-0.00364, 0.0, -0.001], [-0.00363, 0.0, -0.001], [-0.00362, 0.0, -0.001], [-0.00361, 0.0, -0.001], [-0.0036, 0.0, -0.001], [-0.00359, 0.0, -0.001], [-0.0035800000000000003, 0.0, -0.001], [-0.0035700000000000003, 0.0, -0.001], [-0.0035600000000000002, 0.0, -0.001], [-0.0035499999999999998, 0.0, -0.001], [-0.00354, 0.0, -0.001], [-0.00353, 0.0, -0.001], [-0.00352, 0.0, -0.001], [-0.0035099999999999997, 0.0, -0.001], [-0.0035, 0.0, -0.001], [-0.00349, 0.0, -0.001], [-0.00348, 0.0, -0.001], [-0.0034699999999999996, 0.0, -0.001], [-0.00346, 0.0, -0.001], [-0.0034500000000000004, 0.0, -0.001], [-0.00344, 0.0, -0.001], [-0.00343, 0.0, -0.001], [-0.00342, 0.0, -0.001], [-0.0034100000000000003, 0.0, -0.001], [-0.0034, 0.0, -0.001], [-0.0033900000000000002, 0.0, -0.001], [-0.0033799999999999998, 0.0, -0.001], [-0.00337, 0.0, -0.001], [-0.0033599999999999997, 0.0, -0.001], [-0.00335, 0.0, -0.001], [-0.0033399999999999997, 0.0, -0.001], [-0.00333, 0.0, -0.001], [-0.00332, 0.0, -0.001], [-0.00331, 0.0, -0.001], [-0.0033, 0.0, -0.001], [-0.00329, 0.0, -0.001], [-0.0032800000000000004, 0.0, -0.001], [-0.00327, 0.0, -0.001], [-0.00326, 0.0, -0.001], [-0.00325, 0.0, -0.001], [-0.0032400000000000003, 0.0, -0.001], [-0.00323, 0.0, -0.001], [-0.0032199999999999998, 0.0, -0.001], [-0.00321, 0.0, -0.001], [-0.0032, 0.0, -0.001], [-0.00319, 0.0, -0.001], [-0.0031799999999999997, 0.0, -0.001], [-0.00317, 0.0, -0.001], [-0.00316, 0.0, -0.001], [-0.00315, 0.0, -0.001], [-0.00314, 0.0, -0.001], [-0.00313, 0.0, -0.001], [-0.00312, 0.0, -0.001], [-0.0031100000000000004, 0.0, -0.001], [-0.0031, 0.0, -0.001], [-0.00309, 0.0, -0.001], [-0.0030800000000000003, 0.0, -0.001], [-0.0030700000000000002, 0.0, -0.001], [-0.0030600000000000002, 0.0, -0.001], [-0.0030499999999999998, 0.0, -0.001], [-0.00304, 0.0, -0.001], [-0.00303, 0.0, -0.001], [-0.00302, 0.0, -0.001], [-0.0030099999999999997, 0.0, -0.001], [-0.003, 0.0, -0.001], [-0.00299, 0.0, -0.001], [-0.00298, 0.0, -0.001], [-0.0029699999999999996, 0.0, -0.001], [-0.00296, 0.0, -0.001], [-0.0029500000000000004, 0.0, -0.001], [-0.00294, 0.0, -0.001], [-0.00293, 0.0, -0.001], [-0.00292, 0.0, -0.001], [-0.0029100000000000003, 0.0, -0.001], [-0.0029, 0.0, -0.001], [-0.0028899999999999998, 0.0, -0.001], [-0.0028799999999999997, 0.0, -0.001], [-0.00287, 0.0, -0.001], [-0.0028599999999999997, 0.0, -0.001], [-0.0028499999999999997, 0.0, -0.001], [-0.0028399999999999996, 0.0, -0.001], [-0.00283, 0.0, -0.001], [-0.0028200000000000005, 0.0, -0.001], [-0.00281, 0.0, -0.001], [-0.0028, 0.0, -0.001], [-0.00279, 0.0, -0.001], [-0.0027800000000000004, 0.0, -0.001], [-0.00277, 0.0, -0.001], [-0.00276, 0.0, -0.001], [-0.00275, 0.0, -0.001], [-0.0027400000000000002, 0.0, -0.001], [-0.00273, 0.0, -0.001], [-0.0027199999999999998, 0.0, -0.001], [-0.00271, 0.0, -0.001], [-0.0027, 0.0, -0.001], [-0.00269, 0.0, -0.001], [-0.0026799999999999997, 0.0, -0.001], [-0.00267, 0.0, -0.001], [-0.00266, 0.0, -0.001], [-0.00265, 0.0, -0.001], [-0.0026399999999999996, 0.0, -0.001], [-0.00263, 0.0, -0.001], [-0.00262, 0.0, -0.001], [-0.00261, 0.0, -0.001], [-0.0025999999999999994, 0.0, -0.001], [-0.00259, 0.0, -0.001], [-0.0025800000000000003, 0.0, -0.001], [-0.0025700000000000002, 0.0, -0.001], [-0.00256, 0.0, -0.001], [-0.0025499999999999997, 0.0, -0.001], [-0.00254, 0.0, -0.001], [-0.00253, 0.0, -0.001], [-0.00252, 0.0, -0.001], [-0.0025099999999999996, 0.0, -0.001], [-0.0025, 0.0, -0.001], [-0.00249, 0.0, -0.001], [-0.00248, 0.0, -0.001], [-0.0024699999999999995, 0.0, -0.001], [-0.00246, 0.0, -0.001], [-0.0024500000000000004, 0.0, -0.001], [-0.00244, 0.0, -0.001], [-0.00243, 0.0, -0.001], [-0.00242, 0.0, -0.001], [-0.0024100000000000002, 0.0, -0.001], [-0.0024, 0.0, -0.001], [-0.0023899999999999998, 0.0, -0.001], [-0.0023799999999999997, 0.0, -0.001], [-0.00237, 0.0, -0.001], [-0.0023599999999999997, 0.0, -0.001], [-0.0023499999999999997, 0.0, -0.001], [-0.00234, 0.0, -0.001], [-0.00233, 0.0, -0.001], [-0.00232, 0.0, -0.001], [-0.0023099999999999996, 0.0, -0.001], [-0.0023, 0.0, -0.001], [-0.00229, 0.0, -0.001], [-0.0022800000000000003, 0.0, -0.001], [-0.00227, 0.0, -0.001], [-0.0022600000000000003, 0.0, -0.001], [-0.00225, 0.0, -0.001], [-0.0022400000000000002, 0.0, -0.001], [-0.0022299999999999998, 0.0, -0.001], [-0.00222, 0.0, -0.001], [-0.00221, 0.0, -0.001], [-0.0022, 0.0, -0.001], [-0.00219, 0.0, -0.001], [-0.00218, 0.0, -0.001], [-0.00217, 0.0, -0.001], [-0.00216, 0.0, -0.001], [-0.00215, 0.0, -0.001], [-0.00214, 0.0, -0.001], [-0.00213, 0.0, -0.001], [-0.00212, 0.0, -0.001], [-0.00211, 0.0, -0.001], [-0.0021000000000000003, 0.0, -0.001], [-0.00209, 0.0, -0.001], [-0.0020800000000000003, 0.0, -0.001], [-0.00207, 0.0, -0.001], [-0.00206, 0.0, -0.001], [-0.0020499999999999997, 0.0, -0.001], [-0.00204, 0.0, -0.001], [-0.0020299999999999997, 0.0, -0.001], [-0.00202, 0.0, -0.001], [-0.0020099999999999996, 0.0, -0.001], [-0.002, 0.0, -0.001], [-0.0019899999999999996, 0.0, -0.001], [-0.00198, 0.0, -0.001], [-0.00197, 0.0, -0.001], [-0.00196, 0.0, -0.001], [-0.0019500000000000001, 0.0, -0.001], [-0.0019399999999999999, 0.0, -0.001], [-0.00193, 0.0, -0.001], [-0.0019199999999999998, 0.0, -0.001], [-0.0019100000000000002, 0.0, -0.001], [-0.0019, 0.0, -0.001], [-0.0018900000000000002, 0.0, -0.001], [-0.00188, 0.0, -0.001], [-0.0018700000000000001, 0.0, -0.001], [-0.0018599999999999999, 0.0, -0.001], [-0.00185, 0.0, -0.001], [-0.0018399999999999998, 0.0, -0.001], [-0.00183, 0.0, -0.001], [-0.0018199999999999998, 0.0, -0.001], [-0.00181, 0.0, -0.001], [-0.0017999999999999997, 0.0, -0.001], [-0.0017900000000000001, 0.0, -0.001], [-0.00178, 0.0, -0.001], [-0.00177, 0.0, -0.001], [-0.0017599999999999998, 0.0, -0.001], [-0.00175, 0.0, -0.001], [-0.0017399999999999998, 0.0, -0.001], [-0.00173, 0.0, -0.001], [-0.0017199999999999997, 0.0, -0.001], [-0.00171, 0.0, -0.001], [-0.0016999999999999997, 0.0, -0.001], [-0.0016899999999999999, 0.0, -0.001], [-0.0016799999999999996, 0.0, -0.001], [-0.0016699999999999998, 0.0, -0.001], [-0.0016599999999999998, 0.0, -0.001], [-0.0016500000000000004, 0.0, -0.001], [-0.0016400000000000002, 0.0, -0.001], [-0.00163, 0.0, -0.001], [-0.0016200000000000001, 0.0, -0.001], [-0.0016100000000000003, 0.0, -0.001], [-0.0016, 0.0, -0.001], [-0.0015899999999999998, 0.0, -0.001], [-0.00158, 0.0, -0.001], [-0.0015700000000000002, 0.0, -0.001], [-0.00156, 0.0, -0.001], [-0.0015499999999999997, 0.0, -0.001], [-0.0015400000000000001, 0.0, -0.001], [-0.0015300000000000003, 0.0, -0.001], [-0.00152, 0.0, -0.001], [-0.0015099999999999998, 0.0, -0.001], [-0.0015, 0.0, -0.001], [-0.0014900000000000002, 0.0, -0.001], [-0.00148, 0.0, -0.001], [-0.0014699999999999997, 0.0, -0.001], [-0.00146, 0.0, -0.001], [-0.0014500000000000001, 0.0, -0.001], [-0.0014399999999999999, 0.0, -0.001], [-0.0014299999999999996, 0.0, -0.001], [-0.0014199999999999998, 0.0, -0.001], [-0.0014100000000000002, 0.0, -0.001], [-0.0014, 0.0, -0.001], [-0.0013899999999999997, 0.0, -0.001], [-0.00138, 0.0, -0.001], [-0.0013700000000000001, 0.0, -0.001], [-0.0013599999999999999, 0.0, -0.001], [-0.0013499999999999996, 0.0, -0.001], [-0.0013399999999999998, 0.0, -0.001], [-0.00133, 0.0, -0.001], [-0.0013199999999999998, 0.0, -0.001], [-0.0013099999999999995, 0.0, -0.001], [-0.0012999999999999997, 0.0, -0.001], [-0.0012900000000000001, 0.0, -0.001], [-0.0012799999999999999, 0.0, -0.001], [-0.0012699999999999996, 0.0, -0.001], [-0.0012599999999999998, 0.0, -0.001], [-0.00125, 0.0, -0.001], [-0.0012399999999999998, 0.0, -0.001], [-0.0012299999999999995, 0.0, -0.001], [-0.0012199999999999997, 0.0, -0.001], [-0.00121, 0.0, -0.001], [-0.0011999999999999997, 0.0, -0.001], [-0.0011899999999999994, 0.0, -0.001], [-0.00118, 0.0, -0.001], [-0.0011700000000000005, 0.0, -0.001], [-0.0011600000000000002, 0.0, -0.001], [-0.0011500000000000004, 0.0, -0.001], [-0.0011400000000000002, 0.0, -0.001], [-0.0011300000000000004, 0.0, -0.001], [-0.0011200000000000001, 0.0, -0.001], [-0.0011100000000000003, 0.0, -0.001], [-0.0011, 0.0, -0.001], [-0.0010900000000000003, 0.0, -0.001], [-0.00108, 0.0, -0.001], [-0.0010700000000000002, 0.0, -0.001], [-0.00106, 0.0, -0.001], [-0.0010500000000000004, 0.0, -0.001], [-0.0010400000000000001, 0.0, -0.001], [-0.0010300000000000003, 0.0, -0.001], [-0.00102, 0.0, -0.001], [-0.0010100000000000003, 0.0, -0.001], [-0.001, 0.0, -0.001], [-0.0009900000000000002, 0.0, -0.001], [-0.00098, 0.0, -0.001], [-0.0009700000000000002, 0.0, -0.001], [-0.0009599999999999999, 0.0, -0.001], [-0.0009500000000000002, 0.0, -0.001], [-0.00094, 0.0, -0.001], [-0.0009300000000000002, 0.0, -0.001], [-0.0009199999999999999, 0.0, -0.001], [-0.0009100000000000001, 0.0, -0.001], [-0.0008999999999999999, 0.0, -0.001], [-0.0008900000000000002, 0.0, -0.001], [-0.0008799999999999999, 0.0, -0.001], [-0.0008700000000000001, 0.0, -0.001], [-0.0008599999999999999, 0.0, -0.001], [-0.0008500000000000001, 0.0, -0.001], [-0.0008399999999999998, 0.0, -0.001], [-0.0008300000000000001, 0.0, -0.001], [-0.0008199999999999999, 0.0, -0.001], [-0.0008100000000000001, 0.0, -0.001], [-0.0007999999999999998, 0.0, -0.001], [-0.00079, 0.0, -0.001], [-0.0007799999999999998, 0.0, -0.001], [-0.0007700000000000001, 0.0, -0.001], [-0.0007599999999999998, 0.0, -0.001], [-0.00075, 0.0, -0.001], [-0.0007399999999999998, 0.0, -0.001], [-0.00073, 0.0, -0.001], [-0.0007199999999999997, 0.0, -0.001], [-0.0007099999999999999, 0.0, -0.001], [-0.0006999999999999998, 0.0, -0.001], [-0.00069, 0.0, -0.001], [-0.0006799999999999997, 0.0, -0.001], [-0.0006699999999999999, 0.0, -0.001], [-0.0006599999999999997, 0.0, -0.001], [-0.0006499999999999999, 0.0, -0.001], [-0.0006399999999999997, 0.0, -0.001], [-0.0006299999999999999, 0.0, -0.001], [-0.0006199999999999997, 0.0, -0.001], [-0.0006099999999999999, 0.0, -0.001], [-0.0005999999999999996, 0.0, -0.001], [-0.0005899999999999998, 0.0, -0.001], [-0.0005799999999999997, 0.0, -0.001], [-0.0005699999999999999, 0.0, -0.001], [-0.0005600000000000005, 0.0, -0.001], [-0.0005500000000000002, 0.0, -0.001], [-0.00054, 0.0, -0.001], [-0.0005300000000000002, 0.0, -0.001], [-0.0005200000000000005, 0.0, -0.001], [-0.0005100000000000003, 0.0, -0.001], [-0.0005, 0.0, -0.001], [-0.0004900000000000002, 0.0, -0.001], [-0.00048000000000000045, 0.0, -0.001], [-0.0004700000000000002, 0.0, -0.001], [-0.00045999999999999996, 0.0, -0.001], [-0.0004500000000000002, 0.0, -0.001], [-0.0004400000000000004, 0.0, -0.001], [-0.00043000000000000015, 0.0, -0.001], [-0.0004199999999999999, 0.0, -0.001], [-0.00041000000000000015, 0.0, -0.001], [-0.00040000000000000034, 0.0, -0.001], [-0.0003900000000000001, 0.0, -0.001], [-0.0003799999999999999, 0.0, -0.001], [-0.0003700000000000001, 0.0, -0.001], [-0.0003600000000000003, 0.0, -0.001], [-0.0003500000000000001, 0.0, -0.001], [-0.00033999999999999986, 0.0, -0.001], [-0.00033000000000000005, 0.0, -0.001], [-0.0003200000000000003, 0.0, -0.001], [-0.00031000000000000005, 0.0, -0.001], [-0.0002999999999999998, 0.0, -0.001], [-0.00029000000000000006, 0.0, -0.001], [-0.00028000000000000025, 0.0, -0.001], [-0.00027, 0.0, -0.001], [-0.00025999999999999976, 0.0, -0.001], [-0.00025, 0.0, -0.001], [-0.00024000000000000022, 0.0, -0.001], [-0.00022999999999999998, 0.0, -0.001], [-0.00021999999999999976, 0.0, -0.001], [-0.00020999999999999995, 0.0, -0.001], [-0.00020000000000000017, 0.0, -0.001], [-0.00018999999999999996, 0.0, -0.001], [-0.0001799999999999997, 0.0, -0.001], [-0.00016999999999999993, 0.0, -0.001], [-0.00016000000000000015, 0.0, -0.001], [-0.0001499999999999999, 0.0, -0.001], [-0.0001399999999999997, 0.0, -0.001], [-0.00012999999999999988, 0.0, -0.001], [-0.00012000000000000011, 0.0, -0.001], [-0.00010999999999999988, 0.0, -0.001], [-9.999999999999964e-05, 0.0, -0.001], [-8.999999999999986e-05, 0.0, -0.001], [-8.000000000000007e-05, 0.0, -0.001], [-6.999999999999984e-05, 0.0, -0.001], [-5.999999999999961e-05, 0.0, -0.001], [-4.999999999999982e-05, 0.0, -0.001], [-4.000000000000004e-05, 0.0, -0.001], [-2.9999999999999804e-05, 0.0, -0.001], [-1.9999999999999575e-05, 0.0, -0.001], [-9.999999999999787e-06, 0.0, -0.001], [0.0, 0.0, -0.001], [9.999999999999787e-06, 0.0, -0.001], [2.0000000000000462e-05, 0.0, -0.001], [3.0000000000000248e-05, 0.0, -0.001], [4.000000000000004e-05, 0.0, -0.001], [5.0000000000000714e-05, 0.0, -0.001], [6.0000000000000496e-05, 0.0, -0.001], [6.99999999999994e-05, 0.0, -0.001], [8.000000000000007e-05, 0.0, -0.001], [8.999999999999986e-05, 0.0, -0.001], [9.999999999999964e-05, 0.0, -0.001], [0.00010999999999999943, 0.0, -0.001], [0.00012000000000000011, 0.0, -0.001], [0.00012999999999999988, 0.0, -0.001], [0.0001399999999999997, 0.0, -0.001], [0.00014999999999999947, 0.0, -0.001], [0.00016000000000000015, 0.0, -0.001], [0.00016999999999999993, 0.0, -0.001], [0.0001799999999999997, 0.0, -0.001], [0.0001899999999999995, 0.0, -0.001], [0.00020000000000000017, 0.0, -0.001], [0.00020999999999999995, 0.0, -0.001], [0.00021999999999999976, 0.0, -0.001], [0.00022999999999999955, 0.0, -0.001], [0.00024000000000000022, 0.0, -0.001], [0.00025, 0.0, -0.001], [0.00025999999999999976, 0.0, -0.001], [0.00026999999999999957, 0.0, -0.001], [0.00028000000000000025, 0.0, -0.001], [0.00029000000000000006, 0.0, -0.001], [0.0002999999999999998, 0.0, -0.001], [0.0003099999999999996, 0.0, -0.001], [0.0003200000000000003, 0.0, -0.001], [0.00033000000000000005, 0.0, -0.001], [0.00033999999999999986, 0.0, -0.001], [0.00034999999999999967, 0.0, -0.001], [0.0003600000000000003, 0.0, -0.001], [0.0003700000000000001, 0.0, -0.001], [0.0003799999999999999, 0.0, -0.001], [0.00038999999999999967, 0.0, -0.001], [0.00040000000000000034, 0.0, -0.001], [0.00041000000000000015, 0.0, -0.001], [0.0004199999999999999, 0.0, -0.001], [0.0004299999999999997, 0.0, -0.001], [0.0004400000000000004, 0.0, -0.001], [0.0004500000000000002, 0.0, -0.001], [0.00045999999999999996, 0.0, -0.001], [0.00046999999999999977, 0.0, -0.001], [0.00048000000000000045, 0.0, -0.001], [0.0004900000000000002, 0.0, -0.001], [0.0005, 0.0, -0.001], [0.0005099999999999998, 0.0, -0.001], [0.0005200000000000005, 0.0, -0.001], [0.0005300000000000002, 0.0, -0.001], [0.00054, 0.0, -0.001], [0.0005499999999999998, 0.0, -0.001], [0.0005600000000000005, 0.0, -0.001], [0.0005700000000000003, 0.0, -0.001], [0.0005800000000000001, 0.0, -0.001], [0.0005899999999999998, 0.0, -0.001], [0.0006000000000000005, 0.0, -0.001], [0.0006100000000000003, 0.0, -0.001], [0.0006200000000000001, 0.0, -0.001], [0.0006299999999999999, 0.0, -0.001], [0.0006400000000000006, 0.0, -0.001], [0.0006500000000000004, 0.0, -0.001], [0.0006600000000000001, 0.0, -0.001], [0.0006699999999999999, 0.0, -0.001], [0.0006800000000000006, 0.0, -0.001], [0.0006899999999999995, 0.0, -0.001], [0.0006999999999999993, 0.0, -0.001], [0.0007099999999999999, 0.0, -0.001], [0.0007199999999999997, 0.0, -0.001], [0.0007299999999999995, 0.0, -0.001], [0.0007400000000000002, 0.0, -0.001], [0.00075, 0.0, -0.001], [0.0007599999999999998, 0.0, -0.001], [0.0007699999999999995, 0.0, -0.001], [0.0007799999999999993, 0.0, -0.001], [0.00079, 0.0, -0.001], [0.0007999999999999998, 0.0, -0.001], [0.0008099999999999996, 0.0, -0.001], [0.0008200000000000003, 0.0, -0.001], [0.0008300000000000001, 0.0, -0.001], [0.0008399999999999998, 0.0, -0.001], [0.0008499999999999996, 0.0, -0.001], [0.0008599999999999994, 0.0, -0.001], [0.0008700000000000001, 0.0, -0.001], [0.0008799999999999999, 0.0, -0.001], [0.0008899999999999997, 0.0, -0.001], [0.0009000000000000004, 0.0, -0.001], [0.0009100000000000001, 0.0, -0.001], [0.0009199999999999999, 0.0, -0.001], [0.0009299999999999997, 0.0, -0.001], [0.0009399999999999995, 0.0, -0.001], [0.0009500000000000002, 0.0, -0.001], [0.0009599999999999999, 0.0, -0.001], [0.0009699999999999997, 0.0, -0.001], [0.0009800000000000004, 0.0, -0.001], [0.0009900000000000002, 0.0, -0.001], [0.001, 0.0, -0.001], [0.0010099999999999998, 0.0, -0.001], [0.0010199999999999996, 0.0, -0.001], [0.0010300000000000003, 0.0, -0.001], [0.0010400000000000001, 0.0, -0.001], [0.0010499999999999997, 0.0, -0.001], [0.0010600000000000004, 0.0, -0.001], [0.0010700000000000002, 0.0, -0.001], [0.00108, 0.0, -0.001], [0.0010899999999999998, 0.0, -0.001], [0.0010999999999999996, 0.0, -0.001], [0.0011100000000000003, 0.0, -0.001], [0.0011200000000000001, 0.0, -0.001], [0.00113, 0.0, -0.001], [0.0011400000000000006, 0.0, -0.001], [0.0011500000000000004, 0.0, -0.001], [0.0011600000000000002, 0.0, -0.001], [0.00117, 0.0, -0.001], [0.0011799999999999996, 0.0, -0.001], [0.0011900000000000003, 0.0, -0.001], [0.0012000000000000001, 0.0, -0.001], [0.00121, 0.0, -0.001], [0.0012200000000000006, 0.0, -0.001], [0.0012300000000000004, 0.0, -0.001], [0.0012400000000000002, 0.0, -0.001], [0.00125, 0.0, -0.001], [0.0012599999999999998, 0.0, -0.001], [0.0012700000000000005, 0.0, -0.001], [0.0012800000000000003, 0.0, -0.001], [0.0012900000000000001, 0.0, -0.001], [0.0013000000000000008, 0.0, -0.001], [0.0013100000000000004, 0.0, -0.001], [0.0013200000000000002, 0.0, -0.001], [0.00133, 0.0, -0.001], [0.0013399999999999998, 0.0, -0.001], [0.0013500000000000005, 0.0, -0.001], [0.0013600000000000003, 0.0, -0.001], [0.0013700000000000001, 0.0, -0.001], [0.0013800000000000008, 0.0, -0.001], [0.0013900000000000006, 0.0, -0.001], [0.0014000000000000004, 0.0, -0.001], [0.0014100000000000002, 0.0, -0.001], [0.0014199999999999998, 0.0, -0.001], [0.0014300000000000005, 0.0, -0.001], [0.0014400000000000003, 0.0, -0.001], [0.0014500000000000001, 0.0, -0.001], [0.0014600000000000008, 0.0, -0.001], [0.0014700000000000006, 0.0, -0.001], [0.0014800000000000004, 0.0, -0.001], [0.0014900000000000002, 0.0, -0.001], [0.0015, 0.0, -0.001], [0.0015100000000000007, 0.0, -0.001], [0.0015200000000000005, 0.0, -0.001], [0.0015300000000000003, 0.0, -0.001], [0.001540000000000001, 0.0, -0.001], [0.0015500000000000008, 0.0, -0.001], [0.0015600000000000004, 0.0, -0.001], [0.0015700000000000002, 0.0, -0.001], [0.00158, 0.0, -0.001], [0.0015900000000000007, 0.0, -0.001], [0.0016000000000000005, 0.0, -0.001], [0.0016100000000000003, 0.0, -0.001], [0.001620000000000001, 0.0, -0.001], [0.001629999999999999, 0.0, -0.001], [0.0016399999999999997, 0.0, -0.001], [0.0016499999999999996, 0.0, -0.001], [0.0016599999999999991, 0.0, -0.001], [0.0016699999999999998, 0.0, -0.001], [0.0016799999999999996, 0.0, -0.001], [0.0016899999999999994, 0.0, -0.001], [0.0016999999999999993, 0.0, -0.001], [0.001709999999999999, 0.0, -0.001], [0.0017199999999999997, 0.0, -0.001], [0.0017299999999999996, 0.0, -0.001], [0.0017399999999999994, 0.0, -0.001], [0.00175, 0.0, -0.001], [0.0017599999999999998, 0.0, -0.001], [0.0017699999999999997, 0.0, -0.001], [0.0017799999999999995, 0.0, -0.001], [0.001789999999999999, 0.0, -0.001], [0.0017999999999999997, 0.0, -0.001], [0.0018099999999999995, 0.0, -0.001], [0.0018199999999999994, 0.0, -0.001], [0.00183, 0.0, -0.001], [0.0018399999999999998, 0.0, -0.001], [0.0018499999999999996, 0.0, -0.001], [0.0018599999999999995, 0.0, -0.001], [0.0018699999999999993, 0.0, -0.001], [0.00188, 0.0, -0.001], [0.0018899999999999998, 0.0, -0.001], [0.0018999999999999996, 0.0, -0.001], [0.0019100000000000002, 0.0, -0.001], [0.0019199999999999998, 0.0, -0.001], [0.0019299999999999996, 0.0, -0.001], [0.0019399999999999995, 0.0, -0.001], [0.0019499999999999993, 0.0, -0.001], [0.00196, 0.0, -0.001], [0.00197, 0.0, -0.001], [0.0019799999999999996, 0.0, -0.001], [0.00199, 0.0, -0.001], [0.002, 0.0, -0.001], [0.0020099999999999996, 0.0, -0.001], [0.0020199999999999997, 0.0, -0.001], [0.0020299999999999993, 0.0, -0.001], [0.00204, 0.0, -0.001], [0.0020499999999999997, 0.0, -0.001], [0.0020599999999999998, 0.0, -0.001], [0.0020700000000000002, 0.0, -0.001], [0.0020800000000000003, 0.0, -0.001], [0.00209, 0.0, -0.001], [0.0020999999999999994, 0.0, -0.001], [0.0021099999999999995, 0.0, -0.001], [0.00212, 0.0, -0.001], [0.00213, 0.0, -0.001], [0.0021399999999999995, 0.0, -0.001], [0.0021500000000000004, 0.0, -0.001], [0.00216, 0.0, -0.001], [0.00217, 0.0, -0.001], [0.0021799999999999996, 0.0, -0.001], [0.0021899999999999997, 0.0, -0.001], [0.0022, 0.0, -0.001], [0.00221, 0.0, -0.001], [0.0022199999999999998, 0.0, -0.001], [0.00223, 0.0, -0.001], [0.0022400000000000002, 0.0, -0.001], [0.00225, 0.0, -0.001], [0.00226, 0.0, -0.001], [0.0022699999999999994, 0.0, -0.001], [0.0022800000000000003, 0.0, -0.001], [0.00229, 0.0, -0.001], [0.0023, 0.0, -0.001], [0.0023100000000000004, 0.0, -0.001], [0.0023200000000000004, 0.0, -0.001], [0.00233, 0.0, -0.001], [0.00234, 0.0, -0.001], [0.0023499999999999997, 0.0, -0.001], [0.00236, 0.0, -0.001], [0.00237, 0.0, -0.001], [0.0023799999999999997, 0.0, -0.001], [0.0023900000000000006, 0.0, -0.001], [0.0024000000000000002, 0.0, -0.001], [0.0024100000000000002, 0.0, -0.001], [0.00242, 0.0, -0.001], [0.00243, 0.0, -0.001], [0.0024400000000000003, 0.0, -0.001], [0.0024500000000000004, 0.0, -0.001], [0.00246, 0.0, -0.001], [0.002470000000000001, 0.0, -0.001], [0.0024800000000000004, 0.0, -0.001], [0.00249, 0.0, -0.001], [0.0025, 0.0, -0.001], [0.0025099999999999996, 0.0, -0.001], [0.0025200000000000005, 0.0, -0.001], [0.00253, 0.0, -0.001], [0.00254, 0.0, -0.001], [0.0025500000000000006, 0.0, -0.001], [0.0025600000000000006, 0.0, -0.001], [0.0025700000000000002, 0.0, -0.001], [0.0025800000000000003, 0.0, -0.001], [0.00259, 0.0, -0.001], [0.0026000000000000007, 0.0, -0.001], [0.0026100000000000003, 0.0, -0.001], [0.00262, 0.0, -0.001], [0.002630000000000001, 0.0, -0.001], [0.0026400000000000004, 0.0, -0.001], [0.0026500000000000004, 0.0, -0.001], [0.00266, 0.0, -0.001], [0.00267, 0.0, -0.001], [0.0026800000000000005, 0.0, -0.001], [0.0026900000000000006, 0.0, -0.001], [0.0027, 0.0, -0.001], [0.002710000000000001, 0.0, -0.001], [0.0027200000000000006, 0.0, -0.001], [0.0027300000000000002, 0.0, -0.001], [0.0027400000000000002, 0.0, -0.001], [0.00275, 0.0, -0.001], [0.0027600000000000007, 0.0, -0.001], [0.0027700000000000003, 0.0, -0.001], [0.0027800000000000004, 0.0, -0.001], [0.002790000000000001, 0.0, -0.001], [0.002800000000000001, 0.0, -0.001], [0.0028100000000000004, 0.0, -0.001], [0.0028200000000000005, 0.0, -0.001], [0.00283, 0.0, -0.001], [0.002840000000000001, 0.0, -0.001], [0.0028500000000000005, 0.0, -0.001], [0.00286, 0.0, -0.001], [0.002870000000000001, 0.0, -0.001], [0.002879999999999999, 0.0, -0.001], [0.0028899999999999998, 0.0, -0.001], [0.0028999999999999994, 0.0, -0.001], [0.0029099999999999994, 0.0, -0.001], [0.00292, 0.0, -0.001], [0.00293, 0.0, -0.001], [0.0029399999999999995, 0.0, -0.001], [0.0029499999999999995, 0.0, -0.001], [0.002959999999999999, 0.0, -0.001], [0.0029699999999999996, 0.0, -0.001], [0.0029799999999999996, 0.0, -0.001], [0.002989999999999999, 0.0, -0.001], [0.003, 0.0, -0.001], [0.0030099999999999997, 0.0, -0.001], [0.0030199999999999997, 0.0, -0.001], [0.0030299999999999993, 0.0, -0.001], [0.0030399999999999993, 0.0, -0.001], [0.0030499999999999998, 0.0, -0.001], [0.00306, 0.0, -0.001], [0.0030699999999999994, 0.0, -0.001], [0.0030800000000000003, 0.0, -0.001], [0.00309, 0.0, -0.001], [0.0030999999999999995, 0.0, -0.001], [0.0031099999999999995, 0.0, -0.001], [0.003119999999999999, 0.0, -0.001], [0.00313, 0.0, -0.001], [0.0031399999999999996, 0.0, -0.001], [0.0031499999999999996, 0.0, -0.001], [0.00316, 0.0, -0.001], [0.00317, 0.0, -0.001], [0.0031799999999999997, 0.0, -0.001], [0.0031899999999999997, 0.0, -0.001], [0.0031999999999999993, 0.0, -0.001], [0.00321, 0.0, -0.001], [0.0032199999999999998, 0.0, -0.001], [0.0032299999999999994, 0.0, -0.001], [0.0032400000000000003, 0.0, -0.001], [0.00325, 0.0, -0.001], [0.00326, 0.0, -0.001], [0.0032699999999999995, 0.0, -0.001], [0.0032799999999999995, 0.0, -0.001], [0.00329, 0.0, -0.001], [0.0033, 0.0, -0.001], [0.0033099999999999996, 0.0, -0.001], [0.0033200000000000005, 0.0, -0.001], [0.00333, 0.0, -0.001], [0.0033399999999999997, 0.0, -0.001], [0.0033499999999999997, 0.0, -0.001], [0.0033599999999999993, 0.0, -0.001], [0.00337, 0.0, -0.001], [0.0033799999999999998, 0.0, -0.001], [0.00339, 0.0, -0.001], [0.0034000000000000002, 0.0, -0.001], [0.0034100000000000003, 0.0, -0.001], [0.00342, 0.0, -0.001], [0.00343, 0.0, -0.001], [0.0034399999999999995, 0.0, -0.001], [0.0034500000000000004, 0.0, -0.001], [0.00346, 0.0, -0.001], [0.0034699999999999996, 0.0, -0.001], [0.0034800000000000005, 0.0, -0.001], [0.00349, 0.0, -0.001], [0.0035, 0.0, -0.001], [0.0035099999999999997, 0.0, -0.001], [0.0035199999999999997, 0.0, -0.001], [0.00353, 0.0, -0.001], [0.00354, 0.0, -0.001], [0.0035499999999999998, 0.0, -0.001], [0.0035600000000000007, 0.0, -0.001], [0.0035700000000000003, 0.0, -0.001], [0.0035800000000000003, 0.0, -0.001], [0.00359, 0.0, -0.001], [0.0035999999999999995, 0.0, -0.001], [0.0036100000000000004, 0.0, -0.001], [0.00362, 0.0, -0.001], [0.00363, 0.0, -0.001], [0.0036400000000000004, 0.0, -0.001], [0.0036500000000000005, 0.0, -0.001], [0.00366, 0.0, -0.001], [0.00367, 0.0, -0.001], [0.0036799999999999997, 0.0, -0.001], [0.0036900000000000006, 0.0, -0.001], [0.0037, 0.0, -0.001], [0.0037099999999999998, 0.0, -0.001], [0.0037200000000000006, 0.0, -0.001], [0.0037300000000000002, 0.0, -0.001], [0.0037400000000000003, 0.0, -0.001], [0.00375, 0.0, -0.001], [0.00376, 0.0, -0.001], [0.0037700000000000003, 0.0, -0.001], [0.0037800000000000004, 0.0, -0.001], [0.00379, 0.0, -0.001], [0.003800000000000001, 0.0, -0.001], [0.0038100000000000005, 0.0, -0.001], [0.0038200000000000005, 0.0, -0.001], [0.00383, 0.0, -0.001], [0.0038399999999999997, 0.0, -0.001], [0.0038500000000000006, 0.0, -0.001], [0.00386, 0.0, -0.001], [0.00387, 0.0, -0.001], [0.0038800000000000006, 0.0, -0.001], [0.0038900000000000007, 0.0, -0.001], [0.0039000000000000003, 0.0, -0.001], [0.00391, 0.0, -0.001], [0.00392, 0.0, -0.001], [0.00393, 0.0, -0.001], [0.003940000000000001, 0.0, -0.001], [0.00395, 0.0, -0.001], [0.003960000000000001, 0.0, -0.001], [0.0039700000000000004, 0.0, -0.001], [0.00398, 0.0, -0.001], [0.0039900000000000005, 0.0, -0.001], [0.004, 0.0, -0.001], [0.00401, 0.0, -0.001], [0.004019999999999999, 0.0, -0.001], [0.0040300000000000015, 0.0, -0.001], [0.004040000000000001, 0.0, -0.001], [0.004050000000000001, 0.0, -0.001], [0.00406, 0.0, -0.001], [0.004070000000000001, 0.0, -0.001], [0.00408, 0.0, -0.001], [0.00409, 0.0, -0.001], [0.004100000000000001, 0.0, -0.001], [0.004110000000000001, 0.0, -0.001], [0.004120000000000001, 0.0, -0.001], [0.004129999999999999, 0.0, -0.001], [0.004139999999999999, 0.0, -0.001], [0.004149999999999998, 0.0, -0.001], [0.0041600000000000005, 0.0, -0.001], [0.00417, 0.0, -0.001], [0.00418, 0.0, -0.001], [0.004189999999999999, 0.0, -0.001], [0.004199999999999999, 0.0, -0.001], [0.004209999999999999, 0.0, -0.001], [0.004219999999999999, 0.0, -0.001], [0.00423, 0.0, -0.001], [0.00424, 0.0, -0.001], [0.00425, 0.0, -0.001], [0.00426, 0.0, -0.001], [0.0042699999999999995, 0.0, -0.001], [0.004279999999999999, 0.0, -0.001], [0.0042899999999999995, 0.0, -0.001], [0.004299999999999999, 0.0, -0.001], [0.004309999999999999, 0.0, -0.001], [0.00432, 0.0, -0.001], [0.00433, 0.0, -0.001], [0.00434, 0.0, -0.001], [0.00435, 0.0, -0.001], [0.004359999999999999, 0.0, -0.001], [0.004369999999999999, 0.0, -0.001], [0.004379999999999999, 0.0, -0.001], [0.004390000000000001, 0.0, -0.001], [0.0044, 0.0, -0.001], [0.00441, 0.0, -0.001], [0.00442, 0.0, -0.001], [0.00443, 0.0, -0.001], [0.0044399999999999995, 0.0, -0.001], [0.004449999999999999, 0.0, -0.001], [0.004459999999999999, 0.0, -0.001], [0.004469999999999999, 0.0, -0.001], [0.0044800000000000005, 0.0, -0.001], [0.00449, 0.0, -0.001], [0.0045, 0.0, -0.001], [0.00451, 0.0, -0.001], [0.00452, 0.0, -0.001], [0.004529999999999999, 0.0, -0.001], [0.004539999999999999, 0.0, -0.001], [0.004550000000000001, 0.0, -0.001], [0.004560000000000001, 0.0, -0.001], [0.00457, 0.0, -0.001], [0.00458, 0.0, -0.001], [0.0045899999999999995, 0.0, -0.001], [0.0046, 0.0, -0.001], [0.0046099999999999995, 0.0, -0.001], [0.004619999999999999, 0.0, -0.001], [0.004629999999999999, 0.0, -0.001], [0.004640000000000001, 0.0, -0.001], [0.0046500000000000005, 0.0, -0.001], [0.00466, 0.0, -0.001], [0.00467, 0.0, -0.001], [0.00468, 0.0, -0.001], [0.00469, 0.0, -0.001], [0.004699999999999999, 0.0, -0.001], [0.004710000000000001, 0.0, -0.001], [0.00472, 0.0, -0.001], [0.004730000000000001, 0.0, -0.001], [0.00474, 0.0, -0.001], [0.00475, 0.0, -0.001], [0.0047599999999999995, 0.0, -0.001], [0.00477, 0.0, -0.001], [0.0047799999999999995, 0.0, -0.001], [0.004789999999999999, 0.0, -0.001], [0.0048000000000000004, 0.0, -0.001], [0.004810000000000001, 0.0, -0.001], [0.0048200000000000005, 0.0, -0.001], [0.00483, 0.0, -0.001], [0.00484, 0.0, -0.001], [0.004849999999999999, 0.0, -0.001], [0.00486, 0.0, -0.001], [0.004870000000000001, 0.0, -0.001], [0.004880000000000001, 0.0, -0.001], [0.00489, 0.0, -0.001], [0.004900000000000001, 0.0, -0.001], [0.00491, 0.0, -0.001], [0.00492, 0.0, -0.001], [0.0049299999999999995, 0.0, -0.001], [0.004939999999999999, 0.0, -0.001], [0.0049499999999999995, 0.0, -0.001], [0.004960000000000001, 0.0, -0.001], [0.0049700000000000005, 0.0, -0.001], [0.00498, 0.0, -0.001], [0.0049900000000000005, 0.0, -0.001], [0.005, 0.0, -0.001], [0.00501, 0.0, -0.001], [0.005019999999999999, 0.0, -0.001], [0.0050300000000000015, 0.0, -0.001], [0.005040000000000001, 0.0, -0.001], [0.005050000000000001, 0.0, -0.001], [0.00506, 0.0, -0.001], [0.00507, 0.0, -0.001], [0.00508, 0.0, -0.001], [0.00509, 0.0, -0.001], [0.0050999999999999995, 0.0, -0.001], [0.005109999999999999, 0.0, -0.001], [0.005120000000000001, 0.0, -0.001], [0.005130000000000001, 0.0, -0.001], [0.0051400000000000005, 0.0, -0.001], [0.00515, 0.0, -0.001], [0.0051600000000000005, 0.0, -0.001], [0.00517, 0.0, -0.001], [0.00518, 0.0, -0.001], [0.005190000000000001, 0.0, -0.001], [0.0052000000000000015, 0.0, -0.001], [0.005210000000000001, 0.0, -0.001], [0.005220000000000001, 0.0, -0.001], [0.00523, 0.0, -0.001], [0.00524, 0.0, -0.001], [0.00525, 0.0, -0.001], [0.00526, 0.0, -0.001], [0.0052699999999999995, 0.0, -0.001], [0.005280000000000001, 0.0, -0.001], [0.005290000000000001, 0.0, -0.001], [0.005300000000000001, 0.0, -0.001], [0.0053100000000000005, 0.0, -0.001], [0.00532, 0.0, -0.001], [0.00533, 0.0, -0.001], [0.00534, 0.0, -0.001], [0.0053500000000000015, 0.0, -0.001], [0.005360000000000001, 0.0, -0.001], [0.005370000000000001, 0.0, -0.001], [0.005379999999999999, 0.0, -0.001], [0.005389999999999999, 0.0, -0.001], [0.0053999999999999986, 0.0, -0.001], [0.00541, 0.0, -0.001], [0.00542, 0.0, -0.001], [0.00543, 0.0, -0.001], [0.0054399999999999995, 0.0, -0.001], [0.005449999999999999, 0.0, -0.001], [0.005459999999999999, 0.0, -0.001], [0.005469999999999999, 0.0, -0.001], [0.0054800000000000005, 0.0, -0.001], [0.00549, 0.0, -0.001], [0.0055, 0.0, -0.001], [0.00551, 0.0, -0.001], [0.00552, 0.0, -0.001], [0.005529999999999999, 0.0, -0.001], [0.005539999999999999, 0.0, -0.001], [0.0055499999999999985, 0.0, -0.001], [0.005559999999999999, 0.0, -0.001], [0.00557, 0.0, -0.001], [0.00558, 0.0, -0.001], [0.0055899999999999995, 0.0, -0.001], [0.0056, 0.0, -0.001], [0.0056099999999999995, 0.0, -0.001], [0.005619999999999999, 0.0, -0.001], [0.005629999999999999, 0.0, -0.001], [0.005640000000000001, 0.0, -0.001], [0.0056500000000000005, 0.0, -0.001], [0.00566, 0.0, -0.001], [0.00567, 0.0, -0.001], [0.005679999999999999, 0.0, -0.001], [0.00569, 0.0, -0.001], [0.005699999999999999, 0.0, -0.001], [0.005709999999999999, 0.0, -0.001], [0.0057199999999999985, 0.0, -0.001], [0.005730000000000001, 0.0, -0.001], [0.00574, 0.0, -0.001], [0.00575, 0.0, -0.001], [0.0057599999999999995, 0.0, -0.001], [0.00577, 0.0, -0.001], [0.0057799999999999995, 0.0, -0.001], [0.005789999999999999, 0.0, -0.001], [0.0058000000000000005, 0.0, -0.001], [0.005810000000000001, 0.0, -0.001], [0.0058200000000000005, 0.0, -0.001], [0.00583, 0.0, -0.001], [0.00584, 0.0, -0.001], [0.005849999999999999, 0.0, -0.001], [0.00586, 0.0, -0.001], [0.005869999999999999, 0.0, -0.001], [0.005879999999999999, 0.0, -0.001], [0.00589, 0.0, -0.001], [0.005900000000000001, 0.0, -0.001], [0.00591, 0.0, -0.001], [0.00592, 0.0, -0.001], [0.0059299999999999995, 0.0, -0.001], [0.005939999999999999, 0.0, -0.001], [0.0059499999999999996, 0.0, -0.001], [0.005960000000000001, 0.0, -0.001], [0.0059700000000000005, 0.0, -0.001], [0.00598, 0.0, -0.001], [0.0059900000000000005, 0.0, -0.001], [0.006, 0.0, -0.001]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "style": {"arrows": {"x": {"color": null, "show": true}, "y": {"color": null, "show": true}, "z": {"color": null, "show": true}}, "color": null, "description": {"show": null, "text": null}, "label": "Sensor, z=-1mm", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}, "pixel": {"color": null, "size": 1, "symbol": null}, "size": null}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}, {"id": 2678042525760, "type": "Sensor", "position": {"value": [[-0.004, 0.0, -0.003], [-0.0039900000000000005, 0.0, -0.003], [-0.00398, 0.0, -0.003], [-0.0039700000000000004, 0.0, -0.003], [-0.00396, 0.0, -0.003], [-0.00395, 0.0, -0.003], [-0.00394, 0.0, -0.003], [-0.00393, 0.0, -0.003], [-0.00392, 0.0, -0.003], [-0.00391, 0.0, -0.003], [-0.0039, 0.0, -0.003], [-0.0038900000000000002, 0.0, -0.003], [-0.0038799999999999998, 0.0, -0.003], [-0.00387, 0.0, -0.003], [-0.0038599999999999997, 0.0, -0.003], [-0.00385, 0.0, -0.003], [-0.0038399999999999997, 0.0, -0.003], [-0.00383, 0.0, -0.003], [-0.00382, 0.0, -0.003], [-0.00381, 0.0, -0.003], [-0.0038, 0.0, -0.003], [-0.00379, 0.0, -0.003], [-0.0037800000000000004, 0.0, -0.003], [-0.00377, 0.0, -0.003], [-0.00376, 0.0, -0.003], [-0.00375, 0.0, -0.003], [-0.0037400000000000003, 0.0, -0.003], [-0.00373, 0.0, -0.003], [-0.0037199999999999998, 0.0, -0.003], [-0.0037099999999999998, 0.0, -0.003], [-0.0037, 0.0, -0.003], [-0.00369, 0.0, -0.003], [-0.00368, 0.0, -0.003], [-0.00367, 0.0, -0.003], [-0.00366, 0.0, -0.003], [-0.00365, 0.0, -0.003], [-0.00364, 0.0, -0.003], [-0.00363, 0.0, -0.003], [-0.00362, 0.0, -0.003], [-0.00361, 0.0, -0.003], [-0.0036, 0.0, -0.003], [-0.00359, 0.0, -0.003], [-0.0035800000000000003, 0.0, -0.003], [-0.0035700000000000003, 0.0, -0.003], [-0.0035600000000000002, 0.0, -0.003], [-0.0035499999999999998, 0.0, -0.003], [-0.00354, 0.0, -0.003], [-0.00353, 0.0, -0.003], [-0.00352, 0.0, -0.003], [-0.0035099999999999997, 0.0, -0.003], [-0.0035, 0.0, -0.003], [-0.00349, 0.0, -0.003], [-0.00348, 0.0, -0.003], [-0.0034699999999999996, 0.0, -0.003], [-0.00346, 0.0, -0.003], [-0.0034500000000000004, 0.0, -0.003], [-0.00344, 0.0, -0.003], [-0.00343, 0.0, -0.003], [-0.00342, 0.0, -0.003], [-0.0034100000000000003, 0.0, -0.003], [-0.0034, 0.0, -0.003], [-0.0033900000000000002, 0.0, -0.003], [-0.0033799999999999998, 0.0, -0.003], [-0.00337, 0.0, -0.003], [-0.0033599999999999997, 0.0, -0.003], [-0.00335, 0.0, -0.003], [-0.0033399999999999997, 0.0, -0.003], [-0.00333, 0.0, -0.003], [-0.00332, 0.0, -0.003], [-0.00331, 0.0, -0.003], [-0.0033, 0.0, -0.003], [-0.00329, 0.0, -0.003], [-0.0032800000000000004, 0.0, -0.003], [-0.00327, 0.0, -0.003], [-0.00326, 0.0, -0.003], [-0.00325, 0.0, -0.003], [-0.0032400000000000003, 0.0, -0.003], [-0.00323, 0.0, -0.003], [-0.0032199999999999998, 0.0, -0.003], [-0.00321, 0.0, -0.003], [-0.0032, 0.0, -0.003], [-0.00319, 0.0, -0.003], [-0.0031799999999999997, 0.0, -0.003], [-0.00317, 0.0, -0.003], [-0.00316, 0.0, -0.003], [-0.00315, 0.0, -0.003], [-0.00314, 0.0, -0.003], [-0.00313, 0.0, -0.003], [-0.00312, 0.0, -0.003], [-0.0031100000000000004, 0.0, -0.003], [-0.0031, 0.0, -0.003], [-0.00309, 0.0, -0.003], [-0.0030800000000000003, 0.0, -0.003], [-0.0030700000000000002, 0.0, -0.003], [-0.0030600000000000002, 0.0, -0.003], [-0.0030499999999999998, 0.0, -0.003], [-0.00304, 0.0, -0.003], [-0.00303, 0.0, -0.003], [-0.00302, 0.0, -0.003], [-0.0030099999999999997, 0.0, -0.003], [-0.003, 0.0, -0.003], [-0.00299, 0.0, -0.003], [-0.00298, 0.0, -0.003], [-0.0029699999999999996, 0.0, -0.003], [-0.00296, 0.0, -0.003], [-0.0029500000000000004, 0.0, -0.003], [-0.00294, 0.0, -0.003], [-0.00293, 0.0, -0.003], [-0.00292, 0.0, -0.003], [-0.0029100000000000003, 0.0, -0.003], [-0.0029, 0.0, -0.003], [-0.0028899999999999998, 0.0, -0.003], [-0.0028799999999999997, 0.0, -0.003], [-0.00287, 0.0, -0.003], [-0.0028599999999999997, 0.0, -0.003], [-0.0028499999999999997, 0.0, -0.003], [-0.0028399999999999996, 0.0, -0.003], [-0.00283, 0.0, -0.003], [-0.0028200000000000005, 0.0, -0.003], [-0.00281, 0.0, -0.003], [-0.0028, 0.0, -0.003], [-0.00279, 0.0, -0.003], [-0.0027800000000000004, 0.0, -0.003], [-0.00277, 0.0, -0.003], [-0.00276, 0.0, -0.003], [-0.00275, 0.0, -0.003], [-0.0027400000000000002, 0.0, -0.003], [-0.00273, 0.0, -0.003], [-0.0027199999999999998, 0.0, -0.003], [-0.00271, 0.0, -0.003], [-0.0027, 0.0, -0.003], [-0.00269, 0.0, -0.003], [-0.0026799999999999997, 0.0, -0.003], [-0.00267, 0.0, -0.003], [-0.00266, 0.0, -0.003], [-0.00265, 0.0, -0.003], [-0.0026399999999999996, 0.0, -0.003], [-0.00263, 0.0, -0.003], [-0.00262, 0.0, -0.003], [-0.00261, 0.0, -0.003], [-0.0025999999999999994, 0.0, -0.003], [-0.00259, 0.0, -0.003], [-0.0025800000000000003, 0.0, -0.003], [-0.0025700000000000002, 0.0, -0.003], [-0.00256, 0.0, -0.003], [-0.0025499999999999997, 0.0, -0.003], [-0.00254, 0.0, -0.003], [-0.00253, 0.0, -0.003], [-0.00252, 0.0, -0.003], [-0.0025099999999999996, 0.0, -0.003], [-0.0025, 0.0, -0.003], [-0.00249, 0.0, -0.003], [-0.00248, 0.0, -0.003], [-0.0024699999999999995, 0.0, -0.003], [-0.00246, 0.0, -0.003], [-0.0024500000000000004, 0.0, -0.003], [-0.00244, 0.0, -0.003], [-0.00243, 0.0, -0.003], [-0.00242, 0.0, -0.003], [-0.0024100000000000002, 0.0, -0.003], [-0.0024, 0.0, -0.003], [-0.0023899999999999998, 0.0, -0.003], [-0.0023799999999999997, 0.0, -0.003], [-0.00237, 0.0, -0.003], [-0.0023599999999999997, 0.0, -0.003], [-0.0023499999999999997, 0.0, -0.003], [-0.00234, 0.0, -0.003], [-0.00233, 0.0, -0.003], [-0.00232, 0.0, -0.003], [-0.0023099999999999996, 0.0, -0.003], [-0.0023, 0.0, -0.003], [-0.00229, 0.0, -0.003], [-0.0022800000000000003, 0.0, -0.003], [-0.00227, 0.0, -0.003], [-0.0022600000000000003, 0.0, -0.003], [-0.00225, 0.0, -0.003], [-0.0022400000000000002, 0.0, -0.003], [-0.0022299999999999998, 0.0, -0.003], [-0.00222, 0.0, -0.003], [-0.00221, 0.0, -0.003], [-0.0022, 0.0, -0.003], [-0.00219, 0.0, -0.003], [-0.00218, 0.0, -0.003], [-0.00217, 0.0, -0.003], [-0.00216, 0.0, -0.003], [-0.00215, 0.0, -0.003], [-0.00214, 0.0, -0.003], [-0.00213, 0.0, -0.003], [-0.00212, 0.0, -0.003], [-0.00211, 0.0, -0.003], [-0.0021000000000000003, 0.0, -0.003], [-0.00209, 0.0, -0.003], [-0.0020800000000000003, 0.0, -0.003], [-0.00207, 0.0, -0.003], [-0.00206, 0.0, -0.003], [-0.0020499999999999997, 0.0, -0.003], [-0.00204, 0.0, -0.003], [-0.0020299999999999997, 0.0, -0.003], [-0.00202, 0.0, -0.003], [-0.0020099999999999996, 0.0, -0.003], [-0.002, 0.0, -0.003], [-0.0019899999999999996, 0.0, -0.003], [-0.00198, 0.0, -0.003], [-0.00197, 0.0, -0.003], [-0.00196, 0.0, -0.003], [-0.0019500000000000001, 0.0, -0.003], [-0.0019399999999999999, 0.0, -0.003], [-0.00193, 0.0, -0.003], [-0.0019199999999999998, 0.0, -0.003], [-0.0019100000000000002, 0.0, -0.003], [-0.0019, 0.0, -0.003], [-0.0018900000000000002, 0.0, -0.003], [-0.00188, 0.0, -0.003], [-0.0018700000000000001, 0.0, -0.003], [-0.0018599999999999999, 0.0, -0.003], [-0.00185, 0.0, -0.003], [-0.0018399999999999998, 0.0, -0.003], [-0.00183, 0.0, -0.003], [-0.0018199999999999998, 0.0, -0.003], [-0.00181, 0.0, -0.003], [-0.0017999999999999997, 0.0, -0.003], [-0.0017900000000000001, 0.0, -0.003], [-0.00178, 0.0, -0.003], [-0.00177, 0.0, -0.003], [-0.0017599999999999998, 0.0, -0.003], [-0.00175, 0.0, -0.003], [-0.0017399999999999998, 0.0, -0.003], [-0.00173, 0.0, -0.003], [-0.0017199999999999997, 0.0, -0.003], [-0.00171, 0.0, -0.003], [-0.0016999999999999997, 0.0, -0.003], [-0.0016899999999999999, 0.0, -0.003], [-0.0016799999999999996, 0.0, -0.003], [-0.0016699999999999998, 0.0, -0.003], [-0.0016599999999999998, 0.0, -0.003], [-0.0016500000000000004, 0.0, -0.003], [-0.0016400000000000002, 0.0, -0.003], [-0.00163, 0.0, -0.003], [-0.0016200000000000001, 0.0, -0.003], [-0.0016100000000000003, 0.0, -0.003], [-0.0016, 0.0, -0.003], [-0.0015899999999999998, 0.0, -0.003], [-0.00158, 0.0, -0.003], [-0.0015700000000000002, 0.0, -0.003], [-0.00156, 0.0, -0.003], [-0.0015499999999999997, 0.0, -0.003], [-0.0015400000000000001, 0.0, -0.003], [-0.0015300000000000003, 0.0, -0.003], [-0.00152, 0.0, -0.003], [-0.0015099999999999998, 0.0, -0.003], [-0.0015, 0.0, -0.003], [-0.0014900000000000002, 0.0, -0.003], [-0.00148, 0.0, -0.003], [-0.0014699999999999997, 0.0, -0.003], [-0.00146, 0.0, -0.003], [-0.0014500000000000001, 0.0, -0.003], [-0.0014399999999999999, 0.0, -0.003], [-0.0014299999999999996, 0.0, -0.003], [-0.0014199999999999998, 0.0, -0.003], [-0.0014100000000000002, 0.0, -0.003], [-0.0014, 0.0, -0.003], [-0.0013899999999999997, 0.0, -0.003], [-0.00138, 0.0, -0.003], [-0.0013700000000000001, 0.0, -0.003], [-0.0013599999999999999, 0.0, -0.003], [-0.0013499999999999996, 0.0, -0.003], [-0.0013399999999999998, 0.0, -0.003], [-0.00133, 0.0, -0.003], [-0.0013199999999999998, 0.0, -0.003], [-0.0013099999999999995, 0.0, -0.003], [-0.0012999999999999997, 0.0, -0.003], [-0.0012900000000000001, 0.0, -0.003], [-0.0012799999999999999, 0.0, -0.003], [-0.0012699999999999996, 0.0, -0.003], [-0.0012599999999999998, 0.0, -0.003], [-0.00125, 0.0, -0.003], [-0.0012399999999999998, 0.0, -0.003], [-0.0012299999999999995, 0.0, -0.003], [-0.0012199999999999997, 0.0, -0.003], [-0.00121, 0.0, -0.003], [-0.0011999999999999997, 0.0, -0.003], [-0.0011899999999999994, 0.0, -0.003], [-0.00118, 0.0, -0.003], [-0.0011700000000000005, 0.0, -0.003], [-0.0011600000000000002, 0.0, -0.003], [-0.0011500000000000004, 0.0, -0.003], [-0.0011400000000000002, 0.0, -0.003], [-0.0011300000000000004, 0.0, -0.003], [-0.0011200000000000001, 0.0, -0.003], [-0.0011100000000000003, 0.0, -0.003], [-0.0011, 0.0, -0.003], [-0.0010900000000000003, 0.0, -0.003], [-0.00108, 0.0, -0.003], [-0.0010700000000000002, 0.0, -0.003], [-0.00106, 0.0, -0.003], [-0.0010500000000000004, 0.0, -0.003], [-0.0010400000000000001, 0.0, -0.003], [-0.0010300000000000003, 0.0, -0.003], [-0.00102, 0.0, -0.003], [-0.0010100000000000003, 0.0, -0.003], [-0.001, 0.0, -0.003], [-0.0009900000000000002, 0.0, -0.003], [-0.00098, 0.0, -0.003], [-0.0009700000000000002, 0.0, -0.003], [-0.0009599999999999999, 0.0, -0.003], [-0.0009500000000000002, 0.0, -0.003], [-0.00094, 0.0, -0.003], [-0.0009300000000000002, 0.0, -0.003], [-0.0009199999999999999, 0.0, -0.003], [-0.0009100000000000001, 0.0, -0.003], [-0.0008999999999999999, 0.0, -0.003], [-0.0008900000000000002, 0.0, -0.003], [-0.0008799999999999999, 0.0, -0.003], [-0.0008700000000000001, 0.0, -0.003], [-0.0008599999999999999, 0.0, -0.003], [-0.0008500000000000001, 0.0, -0.003], [-0.0008399999999999998, 0.0, -0.003], [-0.0008300000000000001, 0.0, -0.003], [-0.0008199999999999999, 0.0, -0.003], [-0.0008100000000000001, 0.0, -0.003], [-0.0007999999999999998, 0.0, -0.003], [-0.00079, 0.0, -0.003], [-0.0007799999999999998, 0.0, -0.003], [-0.0007700000000000001, 0.0, -0.003], [-0.0007599999999999998, 0.0, -0.003], [-0.00075, 0.0, -0.003], [-0.0007399999999999998, 0.0, -0.003], [-0.00073, 0.0, -0.003], [-0.0007199999999999997, 0.0, -0.003], [-0.0007099999999999999, 0.0, -0.003], [-0.0006999999999999998, 0.0, -0.003], [-0.00069, 0.0, -0.003], [-0.0006799999999999997, 0.0, -0.003], [-0.0006699999999999999, 0.0, -0.003], [-0.0006599999999999997, 0.0, -0.003], [-0.0006499999999999999, 0.0, -0.003], [-0.0006399999999999997, 0.0, -0.003], [-0.0006299999999999999, 0.0, -0.003], [-0.0006199999999999997, 0.0, -0.003], [-0.0006099999999999999, 0.0, -0.003], [-0.0005999999999999996, 0.0, -0.003], [-0.0005899999999999998, 0.0, -0.003], [-0.0005799999999999997, 0.0, -0.003], [-0.0005699999999999999, 0.0, -0.003], [-0.0005600000000000005, 0.0, -0.003], [-0.0005500000000000002, 0.0, -0.003], [-0.00054, 0.0, -0.003], [-0.0005300000000000002, 0.0, -0.003], [-0.0005200000000000005, 0.0, -0.003], [-0.0005100000000000003, 0.0, -0.003], [-0.0005, 0.0, -0.003], [-0.0004900000000000002, 0.0, -0.003], [-0.00048000000000000045, 0.0, -0.003], [-0.0004700000000000002, 0.0, -0.003], [-0.00045999999999999996, 0.0, -0.003], [-0.0004500000000000002, 0.0, -0.003], [-0.0004400000000000004, 0.0, -0.003], [-0.00043000000000000015, 0.0, -0.003], [-0.0004199999999999999, 0.0, -0.003], [-0.00041000000000000015, 0.0, -0.003], [-0.00040000000000000034, 0.0, -0.003], [-0.0003900000000000001, 0.0, -0.003], [-0.0003799999999999999, 0.0, -0.003], [-0.0003700000000000001, 0.0, -0.003], [-0.0003600000000000003, 0.0, -0.003], [-0.0003500000000000001, 0.0, -0.003], [-0.00033999999999999986, 0.0, -0.003], [-0.00033000000000000005, 0.0, -0.003], [-0.0003200000000000003, 0.0, -0.003], [-0.00031000000000000005, 0.0, -0.003], [-0.0002999999999999998, 0.0, -0.003], [-0.00029000000000000006, 0.0, -0.003], [-0.00028000000000000025, 0.0, -0.003], [-0.00027, 0.0, -0.003], [-0.00025999999999999976, 0.0, -0.003], [-0.00025, 0.0, -0.003], [-0.00024000000000000022, 0.0, -0.003], [-0.00022999999999999998, 0.0, -0.003], [-0.00021999999999999976, 0.0, -0.003], [-0.00020999999999999995, 0.0, -0.003], [-0.00020000000000000017, 0.0, -0.003], [-0.00018999999999999996, 0.0, -0.003], [-0.0001799999999999997, 0.0, -0.003], [-0.00016999999999999993, 0.0, -0.003], [-0.00016000000000000015, 0.0, -0.003], [-0.0001499999999999999, 0.0, -0.003], [-0.0001399999999999997, 0.0, -0.003], [-0.00012999999999999988, 0.0, -0.003], [-0.00012000000000000011, 0.0, -0.003], [-0.00010999999999999988, 0.0, -0.003], [-9.999999999999964e-05, 0.0, -0.003], [-8.999999999999986e-05, 0.0, -0.003], [-8.000000000000007e-05, 0.0, -0.003], [-6.999999999999984e-05, 0.0, -0.003], [-5.999999999999961e-05, 0.0, -0.003], [-4.999999999999982e-05, 0.0, -0.003], [-4.000000000000004e-05, 0.0, -0.003], [-2.9999999999999804e-05, 0.0, -0.003], [-1.9999999999999575e-05, 0.0, -0.003], [-9.999999999999787e-06, 0.0, -0.003], [0.0, 0.0, -0.003], [9.999999999999787e-06, 0.0, -0.003], [2.0000000000000462e-05, 0.0, -0.003], [3.0000000000000248e-05, 0.0, -0.003], [4.000000000000004e-05, 0.0, -0.003], [5.0000000000000714e-05, 0.0, -0.003], [6.0000000000000496e-05, 0.0, -0.003], [6.99999999999994e-05, 0.0, -0.003], [8.000000000000007e-05, 0.0, -0.003], [8.999999999999986e-05, 0.0, -0.003], [9.999999999999964e-05, 0.0, -0.003], [0.00010999999999999943, 0.0, -0.003], [0.00012000000000000011, 0.0, -0.003], [0.00012999999999999988, 0.0, -0.003], [0.0001399999999999997, 0.0, -0.003], [0.00014999999999999947, 0.0, -0.003], [0.00016000000000000015, 0.0, -0.003], [0.00016999999999999993, 0.0, -0.003], [0.0001799999999999997, 0.0, -0.003], [0.0001899999999999995, 0.0, -0.003], [0.00020000000000000017, 0.0, -0.003], [0.00020999999999999995, 0.0, -0.003], [0.00021999999999999976, 0.0, -0.003], [0.00022999999999999955, 0.0, -0.003], [0.00024000000000000022, 0.0, -0.003], [0.00025, 0.0, -0.003], [0.00025999999999999976, 0.0, -0.003], [0.00026999999999999957, 0.0, -0.003], [0.00028000000000000025, 0.0, -0.003], [0.00029000000000000006, 0.0, -0.003], [0.0002999999999999998, 0.0, -0.003], [0.0003099999999999996, 0.0, -0.003], [0.0003200000000000003, 0.0, -0.003], [0.00033000000000000005, 0.0, -0.003], [0.00033999999999999986, 0.0, -0.003], [0.00034999999999999967, 0.0, -0.003], [0.0003600000000000003, 0.0, -0.003], [0.0003700000000000001, 0.0, -0.003], [0.0003799999999999999, 0.0, -0.003], [0.00038999999999999967, 0.0, -0.003], [0.00040000000000000034, 0.0, -0.003], [0.00041000000000000015, 0.0, -0.003], [0.0004199999999999999, 0.0, -0.003], [0.0004299999999999997, 0.0, -0.003], [0.0004400000000000004, 0.0, -0.003], [0.0004500000000000002, 0.0, -0.003], [0.00045999999999999996, 0.0, -0.003], [0.00046999999999999977, 0.0, -0.003], [0.00048000000000000045, 0.0, -0.003], [0.0004900000000000002, 0.0, -0.003], [0.0005, 0.0, -0.003], [0.0005099999999999998, 0.0, -0.003], [0.0005200000000000005, 0.0, -0.003], [0.0005300000000000002, 0.0, -0.003], [0.00054, 0.0, -0.003], [0.0005499999999999998, 0.0, -0.003], [0.0005600000000000005, 0.0, -0.003], [0.0005700000000000003, 0.0, -0.003], [0.0005800000000000001, 0.0, -0.003], [0.0005899999999999998, 0.0, -0.003], [0.0006000000000000005, 0.0, -0.003], [0.0006100000000000003, 0.0, -0.003], [0.0006200000000000001, 0.0, -0.003], [0.0006299999999999999, 0.0, -0.003], [0.0006400000000000006, 0.0, -0.003], [0.0006500000000000004, 0.0, -0.003], [0.0006600000000000001, 0.0, -0.003], [0.0006699999999999999, 0.0, -0.003], [0.0006800000000000006, 0.0, -0.003], [0.0006899999999999995, 0.0, -0.003], [0.0006999999999999993, 0.0, -0.003], [0.0007099999999999999, 0.0, -0.003], [0.0007199999999999997, 0.0, -0.003], [0.0007299999999999995, 0.0, -0.003], [0.0007400000000000002, 0.0, -0.003], [0.00075, 0.0, -0.003], [0.0007599999999999998, 0.0, -0.003], [0.0007699999999999995, 0.0, -0.003], [0.0007799999999999993, 0.0, -0.003], [0.00079, 0.0, -0.003], [0.0007999999999999998, 0.0, -0.003], [0.0008099999999999996, 0.0, -0.003], [0.0008200000000000003, 0.0, -0.003], [0.0008300000000000001, 0.0, -0.003], [0.0008399999999999998, 0.0, -0.003], [0.0008499999999999996, 0.0, -0.003], [0.0008599999999999994, 0.0, -0.003], [0.0008700000000000001, 0.0, -0.003], [0.0008799999999999999, 0.0, -0.003], [0.0008899999999999997, 0.0, -0.003], [0.0009000000000000004, 0.0, -0.003], [0.0009100000000000001, 0.0, -0.003], [0.0009199999999999999, 0.0, -0.003], [0.0009299999999999997, 0.0, -0.003], [0.0009399999999999995, 0.0, -0.003], [0.0009500000000000002, 0.0, -0.003], [0.0009599999999999999, 0.0, -0.003], [0.0009699999999999997, 0.0, -0.003], [0.0009800000000000004, 0.0, -0.003], [0.0009900000000000002, 0.0, -0.003], [0.001, 0.0, -0.003], [0.0010099999999999998, 0.0, -0.003], [0.0010199999999999996, 0.0, -0.003], [0.0010300000000000003, 0.0, -0.003], [0.0010400000000000001, 0.0, -0.003], [0.0010499999999999997, 0.0, -0.003], [0.0010600000000000004, 0.0, -0.003], [0.0010700000000000002, 0.0, -0.003], [0.00108, 0.0, -0.003], [0.0010899999999999998, 0.0, -0.003], [0.0010999999999999996, 0.0, -0.003], [0.0011100000000000003, 0.0, -0.003], [0.0011200000000000001, 0.0, -0.003], [0.00113, 0.0, -0.003], [0.0011400000000000006, 0.0, -0.003], [0.0011500000000000004, 0.0, -0.003], [0.0011600000000000002, 0.0, -0.003], [0.00117, 0.0, -0.003], [0.0011799999999999996, 0.0, -0.003], [0.0011900000000000003, 0.0, -0.003], [0.0012000000000000001, 0.0, -0.003], [0.00121, 0.0, -0.003], [0.0012200000000000006, 0.0, -0.003], [0.0012300000000000004, 0.0, -0.003], [0.0012400000000000002, 0.0, -0.003], [0.00125, 0.0, -0.003], [0.0012599999999999998, 0.0, -0.003], [0.0012700000000000005, 0.0, -0.003], [0.0012800000000000003, 0.0, -0.003], [0.0012900000000000001, 0.0, -0.003], [0.0013000000000000008, 0.0, -0.003], [0.0013100000000000004, 0.0, -0.003], [0.0013200000000000002, 0.0, -0.003], [0.00133, 0.0, -0.003], [0.0013399999999999998, 0.0, -0.003], [0.0013500000000000005, 0.0, -0.003], [0.0013600000000000003, 0.0, -0.003], [0.0013700000000000001, 0.0, -0.003], [0.0013800000000000008, 0.0, -0.003], [0.0013900000000000006, 0.0, -0.003], [0.0014000000000000004, 0.0, -0.003], [0.0014100000000000002, 0.0, -0.003], [0.0014199999999999998, 0.0, -0.003], [0.0014300000000000005, 0.0, -0.003], [0.0014400000000000003, 0.0, -0.003], [0.0014500000000000001, 0.0, -0.003], [0.0014600000000000008, 0.0, -0.003], [0.0014700000000000006, 0.0, -0.003], [0.0014800000000000004, 0.0, -0.003], [0.0014900000000000002, 0.0, -0.003], [0.0015, 0.0, -0.003], [0.0015100000000000007, 0.0, -0.003], [0.0015200000000000005, 0.0, -0.003], [0.0015300000000000003, 0.0, -0.003], [0.001540000000000001, 0.0, -0.003], [0.0015500000000000008, 0.0, -0.003], [0.0015600000000000004, 0.0, -0.003], [0.0015700000000000002, 0.0, -0.003], [0.00158, 0.0, -0.003], [0.0015900000000000007, 0.0, -0.003], [0.0016000000000000005, 0.0, -0.003], [0.0016100000000000003, 0.0, -0.003], [0.001620000000000001, 0.0, -0.003], [0.001629999999999999, 0.0, -0.003], [0.0016399999999999997, 0.0, -0.003], [0.0016499999999999996, 0.0, -0.003], [0.0016599999999999991, 0.0, -0.003], [0.0016699999999999998, 0.0, -0.003], [0.0016799999999999996, 0.0, -0.003], [0.0016899999999999994, 0.0, -0.003], [0.0016999999999999993, 0.0, -0.003], [0.001709999999999999, 0.0, -0.003], [0.0017199999999999997, 0.0, -0.003], [0.0017299999999999996, 0.0, -0.003], [0.0017399999999999994, 0.0, -0.003], [0.00175, 0.0, -0.003], [0.0017599999999999998, 0.0, -0.003], [0.0017699999999999997, 0.0, -0.003], [0.0017799999999999995, 0.0, -0.003], [0.001789999999999999, 0.0, -0.003], [0.0017999999999999997, 0.0, -0.003], [0.0018099999999999995, 0.0, -0.003], [0.0018199999999999994, 0.0, -0.003], [0.00183, 0.0, -0.003], [0.0018399999999999998, 0.0, -0.003], [0.0018499999999999996, 0.0, -0.003], [0.0018599999999999995, 0.0, -0.003], [0.0018699999999999993, 0.0, -0.003], [0.00188, 0.0, -0.003], [0.0018899999999999998, 0.0, -0.003], [0.0018999999999999996, 0.0, -0.003], [0.0019100000000000002, 0.0, -0.003], [0.0019199999999999998, 0.0, -0.003], [0.0019299999999999996, 0.0, -0.003], [0.0019399999999999995, 0.0, -0.003], [0.0019499999999999993, 0.0, -0.003], [0.00196, 0.0, -0.003], [0.00197, 0.0, -0.003], [0.0019799999999999996, 0.0, -0.003], [0.00199, 0.0, -0.003], [0.002, 0.0, -0.003], [0.0020099999999999996, 0.0, -0.003], [0.0020199999999999997, 0.0, -0.003], [0.0020299999999999993, 0.0, -0.003], [0.00204, 0.0, -0.003], [0.0020499999999999997, 0.0, -0.003], [0.0020599999999999998, 0.0, -0.003], [0.0020700000000000002, 0.0, -0.003], [0.0020800000000000003, 0.0, -0.003], [0.00209, 0.0, -0.003], [0.0020999999999999994, 0.0, -0.003], [0.0021099999999999995, 0.0, -0.003], [0.00212, 0.0, -0.003], [0.00213, 0.0, -0.003], [0.0021399999999999995, 0.0, -0.003], [0.0021500000000000004, 0.0, -0.003], [0.00216, 0.0, -0.003], [0.00217, 0.0, -0.003], [0.0021799999999999996, 0.0, -0.003], [0.0021899999999999997, 0.0, -0.003], [0.0022, 0.0, -0.003], [0.00221, 0.0, -0.003], [0.0022199999999999998, 0.0, -0.003], [0.00223, 0.0, -0.003], [0.0022400000000000002, 0.0, -0.003], [0.00225, 0.0, -0.003], [0.00226, 0.0, -0.003], [0.0022699999999999994, 0.0, -0.003], [0.0022800000000000003, 0.0, -0.003], [0.00229, 0.0, -0.003], [0.0023, 0.0, -0.003], [0.0023100000000000004, 0.0, -0.003], [0.0023200000000000004, 0.0, -0.003], [0.00233, 0.0, -0.003], [0.00234, 0.0, -0.003], [0.0023499999999999997, 0.0, -0.003], [0.00236, 0.0, -0.003], [0.00237, 0.0, -0.003], [0.0023799999999999997, 0.0, -0.003], [0.0023900000000000006, 0.0, -0.003], [0.0024000000000000002, 0.0, -0.003], [0.0024100000000000002, 0.0, -0.003], [0.00242, 0.0, -0.003], [0.00243, 0.0, -0.003], [0.0024400000000000003, 0.0, -0.003], [0.0024500000000000004, 0.0, -0.003], [0.00246, 0.0, -0.003], [0.002470000000000001, 0.0, -0.003], [0.0024800000000000004, 0.0, -0.003], [0.00249, 0.0, -0.003], [0.0025, 0.0, -0.003], [0.0025099999999999996, 0.0, -0.003], [0.0025200000000000005, 0.0, -0.003], [0.00253, 0.0, -0.003], [0.00254, 0.0, -0.003], [0.0025500000000000006, 0.0, -0.003], [0.0025600000000000006, 0.0, -0.003], [0.0025700000000000002, 0.0, -0.003], [0.0025800000000000003, 0.0, -0.003], [0.00259, 0.0, -0.003], [0.0026000000000000007, 0.0, -0.003], [0.0026100000000000003, 0.0, -0.003], [0.00262, 0.0, -0.003], [0.002630000000000001, 0.0, -0.003], [0.0026400000000000004, 0.0, -0.003], [0.0026500000000000004, 0.0, -0.003], [0.00266, 0.0, -0.003], [0.00267, 0.0, -0.003], [0.0026800000000000005, 0.0, -0.003], [0.0026900000000000006, 0.0, -0.003], [0.0027, 0.0, -0.003], [0.002710000000000001, 0.0, -0.003], [0.0027200000000000006, 0.0, -0.003], [0.0027300000000000002, 0.0, -0.003], [0.0027400000000000002, 0.0, -0.003], [0.00275, 0.0, -0.003], [0.0027600000000000007, 0.0, -0.003], [0.0027700000000000003, 0.0, -0.003], [0.0027800000000000004, 0.0, -0.003], [0.002790000000000001, 0.0, -0.003], [0.002800000000000001, 0.0, -0.003], [0.0028100000000000004, 0.0, -0.003], [0.0028200000000000005, 0.0, -0.003], [0.00283, 0.0, -0.003], [0.002840000000000001, 0.0, -0.003], [0.0028500000000000005, 0.0, -0.003], [0.00286, 0.0, -0.003], [0.002870000000000001, 0.0, -0.003], [0.002879999999999999, 0.0, -0.003], [0.0028899999999999998, 0.0, -0.003], [0.0028999999999999994, 0.0, -0.003], [0.0029099999999999994, 0.0, -0.003], [0.00292, 0.0, -0.003], [0.00293, 0.0, -0.003], [0.0029399999999999995, 0.0, -0.003], [0.0029499999999999995, 0.0, -0.003], [0.002959999999999999, 0.0, -0.003], [0.0029699999999999996, 0.0, -0.003], [0.0029799999999999996, 0.0, -0.003], [0.002989999999999999, 0.0, -0.003], [0.003, 0.0, -0.003], [0.0030099999999999997, 0.0, -0.003], [0.0030199999999999997, 0.0, -0.003], [0.0030299999999999993, 0.0, -0.003], [0.0030399999999999993, 0.0, -0.003], [0.0030499999999999998, 0.0, -0.003], [0.00306, 0.0, -0.003], [0.0030699999999999994, 0.0, -0.003], [0.0030800000000000003, 0.0, -0.003], [0.00309, 0.0, -0.003], [0.0030999999999999995, 0.0, -0.003], [0.0031099999999999995, 0.0, -0.003], [0.003119999999999999, 0.0, -0.003], [0.00313, 0.0, -0.003], [0.0031399999999999996, 0.0, -0.003], [0.0031499999999999996, 0.0, -0.003], [0.00316, 0.0, -0.003], [0.00317, 0.0, -0.003], [0.0031799999999999997, 0.0, -0.003], [0.0031899999999999997, 0.0, -0.003], [0.0031999999999999993, 0.0, -0.003], [0.00321, 0.0, -0.003], [0.0032199999999999998, 0.0, -0.003], [0.0032299999999999994, 0.0, -0.003], [0.0032400000000000003, 0.0, -0.003], [0.00325, 0.0, -0.003], [0.00326, 0.0, -0.003], [0.0032699999999999995, 0.0, -0.003], [0.0032799999999999995, 0.0, -0.003], [0.00329, 0.0, -0.003], [0.0033, 0.0, -0.003], [0.0033099999999999996, 0.0, -0.003], [0.0033200000000000005, 0.0, -0.003], [0.00333, 0.0, -0.003], [0.0033399999999999997, 0.0, -0.003], [0.0033499999999999997, 0.0, -0.003], [0.0033599999999999993, 0.0, -0.003], [0.00337, 0.0, -0.003], [0.0033799999999999998, 0.0, -0.003], [0.00339, 0.0, -0.003], [0.0034000000000000002, 0.0, -0.003], [0.0034100000000000003, 0.0, -0.003], [0.00342, 0.0, -0.003], [0.00343, 0.0, -0.003], [0.0034399999999999995, 0.0, -0.003], [0.0034500000000000004, 0.0, -0.003], [0.00346, 0.0, -0.003], [0.0034699999999999996, 0.0, -0.003], [0.0034800000000000005, 0.0, -0.003], [0.00349, 0.0, -0.003], [0.0035, 0.0, -0.003], [0.0035099999999999997, 0.0, -0.003], [0.0035199999999999997, 0.0, -0.003], [0.00353, 0.0, -0.003], [0.00354, 0.0, -0.003], [0.0035499999999999998, 0.0, -0.003], [0.0035600000000000007, 0.0, -0.003], [0.0035700000000000003, 0.0, -0.003], [0.0035800000000000003, 0.0, -0.003], [0.00359, 0.0, -0.003], [0.0035999999999999995, 0.0, -0.003], [0.0036100000000000004, 0.0, -0.003], [0.00362, 0.0, -0.003], [0.00363, 0.0, -0.003], [0.0036400000000000004, 0.0, -0.003], [0.0036500000000000005, 0.0, -0.003], [0.00366, 0.0, -0.003], [0.00367, 0.0, -0.003], [0.0036799999999999997, 0.0, -0.003], [0.0036900000000000006, 0.0, -0.003], [0.0037, 0.0, -0.003], [0.0037099999999999998, 0.0, -0.003], [0.0037200000000000006, 0.0, -0.003], [0.0037300000000000002, 0.0, -0.003], [0.0037400000000000003, 0.0, -0.003], [0.00375, 0.0, -0.003], [0.00376, 0.0, -0.003], [0.0037700000000000003, 0.0, -0.003], [0.0037800000000000004, 0.0, -0.003], [0.00379, 0.0, -0.003], [0.003800000000000001, 0.0, -0.003], [0.0038100000000000005, 0.0, -0.003], [0.0038200000000000005, 0.0, -0.003], [0.00383, 0.0, -0.003], [0.0038399999999999997, 0.0, -0.003], [0.0038500000000000006, 0.0, -0.003], [0.00386, 0.0, -0.003], [0.00387, 0.0, -0.003], [0.0038800000000000006, 0.0, -0.003], [0.0038900000000000007, 0.0, -0.003], [0.0039000000000000003, 0.0, -0.003], [0.00391, 0.0, -0.003], [0.00392, 0.0, -0.003], [0.00393, 0.0, -0.003], [0.003940000000000001, 0.0, -0.003], [0.00395, 0.0, -0.003], [0.003960000000000001, 0.0, -0.003], [0.0039700000000000004, 0.0, -0.003], [0.00398, 0.0, -0.003], [0.0039900000000000005, 0.0, -0.003], [0.004, 0.0, -0.003], [0.00401, 0.0, -0.003], [0.004019999999999999, 0.0, -0.003], [0.0040300000000000015, 0.0, -0.003], [0.004040000000000001, 0.0, -0.003], [0.004050000000000001, 0.0, -0.003], [0.00406, 0.0, -0.003], [0.004070000000000001, 0.0, -0.003], [0.00408, 0.0, -0.003], [0.00409, 0.0, -0.003], [0.004100000000000001, 0.0, -0.003], [0.004110000000000001, 0.0, -0.003], [0.004120000000000001, 0.0, -0.003], [0.004129999999999999, 0.0, -0.003], [0.004139999999999999, 0.0, -0.003], [0.004149999999999998, 0.0, -0.003], [0.0041600000000000005, 0.0, -0.003], [0.00417, 0.0, -0.003], [0.00418, 0.0, -0.003], [0.004189999999999999, 0.0, -0.003], [0.004199999999999999, 0.0, -0.003], [0.004209999999999999, 0.0, -0.003], [0.004219999999999999, 0.0, -0.003], [0.00423, 0.0, -0.003], [0.00424, 0.0, -0.003], [0.00425, 0.0, -0.003], [0.00426, 0.0, -0.003], [0.0042699999999999995, 0.0, -0.003], [0.004279999999999999, 0.0, -0.003], [0.0042899999999999995, 0.0, -0.003], [0.004299999999999999, 0.0, -0.003], [0.004309999999999999, 0.0, -0.003], [0.00432, 0.0, -0.003], [0.00433, 0.0, -0.003], [0.00434, 0.0, -0.003], [0.00435, 0.0, -0.003], [0.004359999999999999, 0.0, -0.003], [0.004369999999999999, 0.0, -0.003], [0.004379999999999999, 0.0, -0.003], [0.004390000000000001, 0.0, -0.003], [0.0044, 0.0, -0.003], [0.00441, 0.0, -0.003], [0.00442, 0.0, -0.003], [0.00443, 0.0, -0.003], [0.0044399999999999995, 0.0, -0.003], [0.004449999999999999, 0.0, -0.003], [0.004459999999999999, 0.0, -0.003], [0.004469999999999999, 0.0, -0.003], [0.0044800000000000005, 0.0, -0.003], [0.00449, 0.0, -0.003], [0.0045, 0.0, -0.003], [0.00451, 0.0, -0.003], [0.00452, 0.0, -0.003], [0.004529999999999999, 0.0, -0.003], [0.004539999999999999, 0.0, -0.003], [0.004550000000000001, 0.0, -0.003], [0.004560000000000001, 0.0, -0.003], [0.00457, 0.0, -0.003], [0.00458, 0.0, -0.003], [0.0045899999999999995, 0.0, -0.003], [0.0046, 0.0, -0.003], [0.0046099999999999995, 0.0, -0.003], [0.004619999999999999, 0.0, -0.003], [0.004629999999999999, 0.0, -0.003], [0.004640000000000001, 0.0, -0.003], [0.0046500000000000005, 0.0, -0.003], [0.00466, 0.0, -0.003], [0.00467, 0.0, -0.003], [0.00468, 0.0, -0.003], [0.00469, 0.0, -0.003], [0.004699999999999999, 0.0, -0.003], [0.004710000000000001, 0.0, -0.003], [0.00472, 0.0, -0.003], [0.004730000000000001, 0.0, -0.003], [0.00474, 0.0, -0.003], [0.00475, 0.0, -0.003], [0.0047599999999999995, 0.0, -0.003], [0.00477, 0.0, -0.003], [0.0047799999999999995, 0.0, -0.003], [0.004789999999999999, 0.0, -0.003], [0.0048000000000000004, 0.0, -0.003], [0.004810000000000001, 0.0, -0.003], [0.0048200000000000005, 0.0, -0.003], [0.00483, 0.0, -0.003], [0.00484, 0.0, -0.003], [0.004849999999999999, 0.0, -0.003], [0.00486, 0.0, -0.003], [0.004870000000000001, 0.0, -0.003], [0.004880000000000001, 0.0, -0.003], [0.00489, 0.0, -0.003], [0.004900000000000001, 0.0, -0.003], [0.00491, 0.0, -0.003], [0.00492, 0.0, -0.003], [0.0049299999999999995, 0.0, -0.003], [0.004939999999999999, 0.0, -0.003], [0.0049499999999999995, 0.0, -0.003], [0.004960000000000001, 0.0, -0.003], [0.0049700000000000005, 0.0, -0.003], [0.00498, 0.0, -0.003], [0.0049900000000000005, 0.0, -0.003], [0.005, 0.0, -0.003], [0.00501, 0.0, -0.003], [0.005019999999999999, 0.0, -0.003], [0.0050300000000000015, 0.0, -0.003], [0.005040000000000001, 0.0, -0.003], [0.005050000000000001, 0.0, -0.003], [0.00506, 0.0, -0.003], [0.00507, 0.0, -0.003], [0.00508, 0.0, -0.003], [0.00509, 0.0, -0.003], [0.0050999999999999995, 0.0, -0.003], [0.005109999999999999, 0.0, -0.003], [0.005120000000000001, 0.0, -0.003], [0.005130000000000001, 0.0, -0.003], [0.0051400000000000005, 0.0, -0.003], [0.00515, 0.0, -0.003], [0.0051600000000000005, 0.0, -0.003], [0.00517, 0.0, -0.003], [0.00518, 0.0, -0.003], [0.005190000000000001, 0.0, -0.003], [0.0052000000000000015, 0.0, -0.003], [0.005210000000000001, 0.0, -0.003], [0.005220000000000001, 0.0, -0.003], [0.00523, 0.0, -0.003], [0.00524, 0.0, -0.003], [0.00525, 0.0, -0.003], [0.00526, 0.0, -0.003], [0.0052699999999999995, 0.0, -0.003], [0.005280000000000001, 0.0, -0.003], [0.005290000000000001, 0.0, -0.003], [0.005300000000000001, 0.0, -0.003], [0.0053100000000000005, 0.0, -0.003], [0.00532, 0.0, -0.003], [0.00533, 0.0, -0.003], [0.00534, 0.0, -0.003], [0.0053500000000000015, 0.0, -0.003], [0.005360000000000001, 0.0, -0.003], [0.005370000000000001, 0.0, -0.003], [0.005379999999999999, 0.0, -0.003], [0.005389999999999999, 0.0, -0.003], [0.0053999999999999986, 0.0, -0.003], [0.00541, 0.0, -0.003], [0.00542, 0.0, -0.003], [0.00543, 0.0, -0.003], [0.0054399999999999995, 0.0, -0.003], [0.005449999999999999, 0.0, -0.003], [0.005459999999999999, 0.0, -0.003], [0.005469999999999999, 0.0, -0.003], [0.0054800000000000005, 0.0, -0.003], [0.00549, 0.0, -0.003], [0.0055, 0.0, -0.003], [0.00551, 0.0, -0.003], [0.00552, 0.0, -0.003], [0.005529999999999999, 0.0, -0.003], [0.005539999999999999, 0.0, -0.003], [0.0055499999999999985, 0.0, -0.003], [0.005559999999999999, 0.0, -0.003], [0.00557, 0.0, -0.003], [0.00558, 0.0, -0.003], [0.0055899999999999995, 0.0, -0.003], [0.0056, 0.0, -0.003], [0.0056099999999999995, 0.0, -0.003], [0.005619999999999999, 0.0, -0.003], [0.005629999999999999, 0.0, -0.003], [0.005640000000000001, 0.0, -0.003], [0.0056500000000000005, 0.0, -0.003], [0.00566, 0.0, -0.003], [0.00567, 0.0, -0.003], [0.005679999999999999, 0.0, -0.003], [0.00569, 0.0, -0.003], [0.005699999999999999, 0.0, -0.003], [0.005709999999999999, 0.0, -0.003], [0.0057199999999999985, 0.0, -0.003], [0.005730000000000001, 0.0, -0.003], [0.00574, 0.0, -0.003], [0.00575, 0.0, -0.003], [0.0057599999999999995, 0.0, -0.003], [0.00577, 0.0, -0.003], [0.0057799999999999995, 0.0, -0.003], [0.005789999999999999, 0.0, -0.003], [0.0058000000000000005, 0.0, -0.003], [0.005810000000000001, 0.0, -0.003], [0.0058200000000000005, 0.0, -0.003], [0.00583, 0.0, -0.003], [0.00584, 0.0, -0.003], [0.005849999999999999, 0.0, -0.003], [0.00586, 0.0, -0.003], [0.005869999999999999, 0.0, -0.003], [0.005879999999999999, 0.0, -0.003], [0.00589, 0.0, -0.003], [0.005900000000000001, 0.0, -0.003], [0.00591, 0.0, -0.003], [0.00592, 0.0, -0.003], [0.0059299999999999995, 0.0, -0.003], [0.005939999999999999, 0.0, -0.003], [0.0059499999999999996, 0.0, -0.003], [0.005960000000000001, 0.0, -0.003], [0.0059700000000000005, 0.0, -0.003], [0.00598, 0.0, -0.003], [0.0059900000000000005, 0.0, -0.003], [0.006, 0.0, -0.003]], "unit": "m"}, "orientation": {"value": [[[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]], [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]]], "type": "matrix"}, "style": {"arrows": {"x": {"color": null, "show": true}, "y": {"color": null, "show": true}, "z": {"color": null, "show": true}}, "color": null, "description": {"show": null, "text": null}, "label": "Sensor, z=-3mm", "model3d": {"data": [], "showdefault": true}, "opacity": null, "path": {"frames": null, "line": {"color": null, "style": null, "width": null}, "marker": {"color": null, "size": null, "symbol": null}, "numbering": null, "show": null}, "pixel": {"color": null, "size": 1, "symbol": null}, "size": null}, "pixel": {"value": [0.0, 0.0, 0.0], "unit": "m"}}], "results": [{"computation": "FEM (ANSYS)", "field": "B", "kwargs": {"sources": [2678036084816], "sensors": [2679646060352, 2678042525760], "sumup": false, "pixel_agg": null, "squeeze": true, "output": "dataframe"}, "order": ["source", "path", "sensor", "pixel", "value"], "value": {"Bx": [0.0016329631331849, 0.0013783437156068, 0.0006425539855724, 0.0016472862497218, 0.0013848589700034, 0.0006437835106329, 0.0016608812418537, 0.0013916103983202, 0.0006449515925571, 0.0016744762339856, 0.0013983618266369, 0.0006461892761524, 0.0016887535017375, 0.0014051155997336, 0.0006474597702607, 0.0017029245721215, 0.0014118154064706, 0.0006487302643689, 0.0017174267578112, 0.0014182791950647, 0.0006500007584772, 0.0017322816346829, 0.0014254817225176, 0.0006512458373246, 0.0017471365115546, 0.0014320790748866, 0.0006523567833393, 0.0017619680678991, 0.0014389903755416, 0.0006535120545922, 0.0017767941254528, 0.0014459016761966, 0.0006548231839424, 0.0017923173468457, 0.0014528129768516, 0.0006560159836333, 0.0018077079357075, 0.0014596320497957, 0.0006572087833241, 0.0018230985245693, 0.0014666497556828, 0.0006584015830149, 0.0018392196700937, 0.0014736674615699, 0.0006595943827058, 0.0018544376553512, 0.0014806653092477, 0.0006608231538678, 0.0018708146897641, 0.0014876935279684, 0.0006620271791242, 0.001887191724177, 0.0014947803912751, 0.000663217490521, 0.0019035355211519, 0.0015017560077748, 0.0006644108642605, 0.0019199338704164, 0.0015088527785706, 0.000665604238, 0.0019362365061665, 0.0015160720632767, 0.0006667116085434, 0.0019535117220533, 0.0015232421152799, 0.0006679443821525, 0.0019707869379402, 0.0015305624768372, 0.0006691711998232, 0.0019878253019507, 0.0015377264353053, 0.0006703330369563, 0.0020050458607282, 0.0015448118676366, 0.0006714948740894, 0.0020222664195058, 0.0015521200283344, 0.0006726021231929, 0.0020403278457327, 0.0015594339704807, 0.0006737190774651001, 0.0020586197166087, 0.0015668229563954997, 0.000674966279505, 0.0020766075566777, 0.0015742136260662, 0.0006760448604877, 0.0020950227909233, 0.0015815172847977, 0.0006771997303725, 0.0021133140984596, 0.0015888844670857, 0.0006783480074802, 0.0021320523253891, 0.0015962516493738, 0.0006794359640171, 0.0021507905523186, 0.0016037262248085, 0.0006806155457439, 0.0021703158441757, 0.0016113958888952, 0.000681649578419, 0.0021894914305578, 0.001619065552982, 0.0006827892514638, 0.0022088241397709, 0.0016263733897630003, 0.0006839289245085, 0.0022287050575117, 0.0016340251544381, 0.0006850685975533, 0.0022490118499881, 0.0016416769191132, 0.0006860076067621, 0.0022688852430810995, 0.0016493603744325, 0.0006871767136282, 0.002288831375156, 0.0016569095955802, 0.0006882982220667, 0.0023094988870818, 0.001664766157509, 0.0006894261459829, 0.0023308492784309, 0.0016724075254719998, 0.0006904517167238, 0.0023520935461057, 0.001680146809555, 0.0006914772874648, 0.0023734500009262, 0.001687775944329, 0.0006924982056227, 0.0023945387117662, 0.0016958218556349, 0.0006935186321854, 0.002415759886634, 0.0017036219200486, 0.0006945795099043, 0.0024385760207738, 0.0017108347118184, 0.0006956403876232, 0.0024612961361635, 0.0017190800266993, 0.0006967005968568, 0.0024834560222856, 0.0017273610715756, 0.0006976997986013, 0.0025058308719841, 0.001735189731829, 0.0006986990003457, 0.0025282057216826, 0.0017429904237024, 0.0006996982020902, 0.0025517411078503, 0.0017513049341659, 0.0007005981734269, 0.002575663317951, 0.0017592263696227, 0.0007016177856407, 0.0025995855280517, 0.0017672112256562, 0.0007026373978545, 0.0026239257603504, 0.0017753889342023, 0.0007036762867132, 0.0026486456984659, 0.0017830200723742, 0.0007046020124058, 0.0026724877040988, 0.0017915001944301, 0.0007055277380984, 0.0026978487601367, 0.001799657315864, 0.000706453463791, 0.002722736045493, 0.001807814437298, 0.0007073791894836, 0.0027474515479462, 0.001815971558732, 0.0007083209007471, 0.0027742354800825, 0.0018243364652079, 0.0007092790249207, 0.0027991478611346, 0.0018322337046678, 0.0007102429744657, 0.0028259731320999, 0.001840551353003, 0.000711092718499, 0.0028527984030653, 0.0018488862208982, 0.0007119543569326, 0.0028800580238128, 0.0018571789729023, 0.0007128159953661, 0.002906295663824, 0.0018654717249064, 0.0007136300276875, 0.0029345388263764, 0.0018738472912656, 0.0007145556338243, 0.0029627707941011, 0.0018821211588831, 0.0007154538130862, 0.0029905382775154, 0.0018903772334782, 0.0007162880211296, 0.0030183057609296, 0.0018989883761688, 0.0007171493249729, 0.0030472559992719, 0.0019075583923007, 0.0007179680671916, 0.0030770614684025, 0.0019158053262046, 0.0007187856621011, 0.0031065452384125, 0.0019243431136939, 0.0007195649071008, 0.0031358128331175, 0.0019328206918848, 0.0007203775491739, 0.0031658875920342, 0.0019412982700757, 0.000721190191247, 0.0031965780809815, 0.0019497758482665, 0.0007219521200682, 0.003227529985583, 0.0019582534264574, 0.0007226901033906, 0.0032588772701905, 0.0019674541380149, 0.000723428086713, 0.0032901455453078, 0.0019757567058825, 0.0007241660700354, 0.0033213000394853, 0.001984271289845, 0.0007249040533579, 0.0033532952714645, 0.0019927858738074, 0.0007256973806983, 0.0033866985915401, 0.0020013004577698, 0.0007261844744677, 0.0034200752094961, 0.0020098150417323, 0.0007270488827911, 0.0034530282369256, 0.002018453122245, 0.0007277430443494, 0.0034870187731375, 0.002027442719385, 0.0007284372059077, 0.0035206866253437, 0.0020360602158273, 0.000729131367466, 0.0035560980883565, 0.002045002819072, 0.0007297685589038, 0.0035904225864454, 0.0020540105223708, 0.0007303378797227, 0.0036258711286652, 0.0020625653420445, 0.000731037691014, 0.003661319670885, 0.0020711156644533, 0.0007316476826823, 0.0036967682131048, 0.0020798646971598, 0.0007322576743507, 0.0037339881445351, 0.002088847198125, 0.0007328676660191, 0.0037718412649473, 0.0020978022990999, 0.0007334776576874, 0.0038096943853595, 0.0021067574000749, 0.0007340028083477, 0.0038475475057716995, 0.0021156126125059, 0.000734602249896, 0.0038864522341357, 0.0021240424470572, 0.0007351377034655, 0.0039245286357241, 0.002133115913055, 0.0007356731570349999, 0.0039643201035799, 0.0021421776940378, 0.0007362086106045, 0.0040041115714358, 0.0021512513816639, 0.0007367055434681, 0.0040439030392916, 0.002160046482887, 0.0007372614252866, 0.0040836945071474, 0.0021686775299207, 0.0007377833510418, 0.0041234859750033, 0.0021773085769544, 0.0007382356952445, 0.0041671134085447, 0.0021864839564021, 0.0007386880394471, 0.0042096605142754, 0.0021956594692018, 0.0007391515190665, 0.0042522076200062, 0.0022048058449584, 0.0007395996019979, 0.0042952302326056, 0.0022136560884168, 0.0007399671517604, 0.0043395270552511, 0.0022225063318753, 0.0007403890425996, 0.0043839412119522, 0.0022311121027298, 0.0007408115007273, 0.0044278609136393, 0.0022406485544196, 0.0007412349363866, 0.0044720793624657, 0.0022496576363491, 0.0007415599303539, 0.0045188616089734, 0.0022586667182786, 0.000741919113675, 0.004565643855481, 0.0022674816301825, 0.0007422601411623, 0.0046124261019887, 0.0022760706255021, 0.0007425309963346, 0.0046592083484963, 0.002285378299978, 0.0007428444905886, 0.0047079549417989, 0.0022945021746558, 0.0007431189406909, 0.0047564623078878, 0.0023033635567169, 0.0007434614555967, 0.0048062611271936, 0.0023124426037332, 0.0007436961176991, 0.0048562429364483, 0.0023214830222869, 0.0007438761954143, 0.0049059918676754, 0.0023305234408405, 0.0007441833570518, 0.0049557407989024, 0.0023394107458728, 0.0007444555253789, 0.0050091482124338, 0.0023481596376558, 0.0007446217721997, 0.0050614830224552, 0.0023573006572254, 0.0007447907530933, 0.0051154039858117, 0.0023665251246773, 0.0007448972006118, 0.0051689877842549, 0.0023755985348688, 0.0007451376152372, 0.0052229664484565, 0.0023844649651652, 0.0007453323820765, 0.0052768948593697, 0.0023933313954616, 0.000745476813076, 0.0053335097342519, 0.0024025501393094, 0.000745504654585, 0.0053907240034875, 0.0024113052680097, 0.0007456053767115, 0.0054471423157384, 0.0024200603967101, 0.0007457060988381, 0.0055054095433384, 0.0024292664905794, 0.0007457946500197, 0.0055627798751849, 0.0024378001136502, 0.0007458081098689, 0.0056227736677665, 0.0024468826947379, 0.0007458215697181, 0.0056839457014363, 0.0024561521070961, 0.0007458350295673, 0.005745117735106, 0.0024649988430599, 0.0007458328710628, 0.0058077926795177, 0.0024738455790237, 0.000745761702319, 0.0058701716509565, 0.0024824326804005, 0.0007458901145661, 0.0059330637771247, 0.0024917501621056, 0.000745770467017, 0.005997876925078, 0.0025002054596641, 0.0007456508194678, 0.0060619363224244, 0.0025091940266599, 0.0007455311719187, 0.0061256649790589, 0.0025180919647273, 0.0007454115243695, 0.0061926890767928, 0.0025268753702614, 0.0007452918768204, 0.0062626380307842, 0.0025354079430387, 0.0007451722292713, 0.006328417920654, 0.0025443792759298, 0.0007450525817221, 0.0063991426699724, 0.0025535790065773, 0.0007449447777987, 0.0064698674192908, 0.0025619118571479, 0.0007446836799449, 0.0065405921686092, 0.0025703721362866, 0.0007444363974238, 0.0066145883597525, 0.0025789400564397, 0.0007441891149026, 0.0066873048979358, 0.0025880039768421, 0.0007439418323814, 0.0067577417967833, 0.0025965804849871, 0.0007436945498603, 0.0068332979163111, 0.0026053756448214, 0.0007434472673391, 0.0069088540358389, 0.0026140820285866, 0.0007430027089628001, 0.0069844101553667, 0.0026225572071436, 0.0007427017829518, 0.0070639526941053, 0.002630747890013, 0.0007424765433949, 0.0071426936917663, 0.0026391674521993, 0.0007420894377237, 0.0072221854414496, 0.0026473324165988, 0.0007417023320525, 0.0073016771911329, 0.0026557290811602, 0.0007413152263813, 0.0073837063729301, 0.002664238084234, 0.0007408749234592, 0.0074665492799371, 0.0026727470873078, 0.00074039051016, 0.0075517987286886, 0.0026812560903816, 0.0007399072114291, 0.0076375102207155, 0.0026882552489609, 0.0007394398505677, 0.0077199410421895, 0.0026959808346828, 0.0007390047332583, 0.0078108878899727, 0.0027046101401011, 0.0007384544715029, 0.0078998809585952, 0.0027125207484334, 0.0007378654878781, 0.0079888740272178, 0.0027208168943062, 0.0007373568210199, 0.0080778670958403, 0.0027291130401791, 0.000736801824846, 0.008167993748693998, 0.0027374091860519, 0.0007362621112689, 0.0082621520274696, 0.0027457202893653994, 0.0007356293249463, 0.0083604844513276, 0.002752968054473, 0.000734953864127, 0.008458781405157, 0.0027602158195806, 0.0007342322611466, 0.0085520376614187, 0.0027674635846881, 0.0007335556335206, 0.0086510813998308, 0.0027747113497957, 0.0007329014064741, 0.0087557808767914, 0.0027836285077681, 0.0007322943948107, 0.008852561009393798, 0.002789998577486, 0.0007315439347619, 0.0089564095386135, 0.0027986705508691, 0.0007307515247786, 0.0090602580678331, 0.0028058478312707, 0.0007299591147953, 0.0091633348329771, 0.0028127507751038, 0.0007290716705926, 0.0092724281742292, 0.002819653718937, 0.0007282329062021, 0.0093813732746995, 0.0028265566627701, 0.0007274826902983, 0.0094904258263698, 0.0028338268882608, 0.0007266605943667, 0.00959947837804, 0.0028415820225616, 0.000725838498435, 0.0097160285098213, 0.0028477475611029994, 0.0007250450114623, 0.0098273587848989, 0.0028554723998598, 0.0007240410490977, 0.0099457076541638, 0.0028622056999318, 0.0007230289272145, 0.0100615026733857, 0.0028689390000039, 0.0007220168053313, 0.0101772976926076, 0.0028753876829736, 0.000720970759576, 0.0102930635774087, 0.0028816654405553, 0.000720034750024, 0.0104178148407009, 0.0028887536319199, 0.0007191122680457, 0.0105474229101994, 0.0028954108187401, 0.0007180022826842, 0.0106770309796979, 0.0029015104847747, 0.0007169245496711, 0.01080199016534, 0.0029079877769224, 0.0007159000289542, 0.0109272315244977, 0.0029134145037212, 0.0007146339834626, 0.0110663852517639, 0.0029195905217212, 0.0007134453115278, 0.0111987995259124, 0.0029255999826869, 0.0007125339964419, 0.0113231839376962, 0.0029316094436526, 0.0007113272119958, 0.011465780795948, 0.0029376189046182, 0.0007101129535579, 0.0116069487664855, 0.0029442439523055, 0.0007089032409716, 0.0117481167370231, 0.0029486998585323, 0.0007076333176913, 0.0118892847075607, 0.0029542577419756, 0.0007063763185765, 0.0120296378290768, 0.0029597689687409, 0.0007051193194617, 0.0121863950123775, 0.0029652801955062, 0.000703862320347, 0.0123333010609595, 0.0029707914222715, 0.0007022453800793, 0.0124803177244532, 0.002975361305678, 0.0007010856768689, 0.0126234817237086, 0.0029800444670384, 0.0006996337732205, 0.0127863397526167, 0.0029847276283987, 0.0006982161429555, 0.0129491977815249, 0.0029892127122009, 0.0006967367664693, 0.013112055810433, 0.002993914888971, 0.0006952828906416, 0.0132749138393411, 0.002998617065741, 0.0006938290148139, 0.0134377718682492, 0.0030033192425111, 0.0006923425270258, 0.0135962507548265, 0.0030073737985972, 0.0006909056983317, 0.0137548056545838, 0.0030118786759736, 0.0006893819155621, 0.0139461987172071, 0.0030163462401416, 0.0006878061273732, 0.0141171996760881, 0.0030198105084583, 0.000686143587515, 0.0142943597551533, 0.003023274776775, 0.0006844810476567, 0.0144715198342186, 0.0030263179175451, 0.0006828185077985, 0.0146486799132838, 0.0030295214684308, 0.0006810936475191, 0.0148451504616383, 0.0030338056711955, 0.000679450591951, 0.015031047730252, 0.003036811870927, 0.0006778166219219, 0.0152180286612998, 0.0030397380856992, 0.0006759843332913, 0.0154107246340184, 0.0030426643004714, 0.0006742329653076, 0.0156034206067369, 0.0030455905152435, 0.0006723986753308999, 0.0157961165794555, 0.0030485167300157, 0.000670625065444, 0.0160024839091158, 0.0030508075835426, 0.0006687981767666, 0.0162095383916226, 0.0030528616530161, 0.0006669393250938, 0.0164185893603787, 0.0030549157224895, 0.0006649964937484, 0.0166257230115874, 0.0030570151728603, 0.0006630770601128, 0.0168434841157749, 0.0030592795928691, 0.0006611576264773, 0.0170647797009, 0.0030591232253156, 0.0006592677814141999, 0.0172770725354778, 0.0030625992658038, 0.0006572408963958, 0.0175022178335857, 0.0030638529141289, 0.0006552592728663, 0.0177184545584617, 0.0030651065624539, 0.0006532194216115, 0.0179497978224423, 0.0030643277917276, 0.0006510936651402, 0.018186276832035, 0.0030678016071627, 0.0006489679086688, 0.0184241376962519, 0.0030664769194177, 0.0006468962367757, 0.0186736726376624, 0.0030665021815713, 0.0006448856843022, 0.0189123705955784, 0.0030684684638453, 0.0006425663489964, 0.0191510685534944, 0.0030677083818124, 0.0006403554935029, 0.0194039856552155, 0.0030678303548522, 0.0006382900910718, 0.0196725314248372, 0.003067478094273, 0.0006360090488165, 0.0199363201871099, 0.0030669181583355, 0.0006337280065611, 0.0201842660289209, 0.0030662741263423, 0.0006313570506519, 0.0204357656006683, 0.0030656300943491, 0.000629193835629, 0.0207292716078831, 0.0030646287066697, 0.0006268219911822, 0.0209927131463896, 0.0030631870977595, 0.0006244993439787, 0.0212786152834198, 0.0030631246225877, 0.0006221821013881999, 0.021557119951143, 0.003061601109777, 0.0006196824136415, 0.0218268490174889, 0.0030586378247121, 0.0006171895028577, 0.0221301464578071, 0.0030560136404561, 0.0006148973284943, 0.0224334438981253, 0.0030556885421544, 0.0006122601219552, 0.0227367413384436, 0.0030528864070898, 0.0006097743424125, 0.0230321496325587, 0.003050799827065, 0.0006072885628698, 0.0233207842617709, 0.0030472534602554997, 0.0006047425812838, 0.0236692963300665, 0.0030446218577413, 0.0006021672548616, 0.0239702065169778, 0.0030408455702258, 0.0005995919284393, 0.0242836376525123, 0.0030370692827102, 0.0005970653555558, 0.0246096030043166, 0.003033559133203, 0.0005941229833357, 0.0249479374589656, 0.0030289823963506, 0.0005917699188118, 0.0252662159142501, 0.0030256836811838, 0.0005889376990385, 0.0256272168360056, 0.0030220845302367, 0.0005861327430122, 0.0259882177577612, 0.0030169406049751, 0.0005833277869859, 0.0263300890714286, 0.0030134174761725, 0.0005805228309597, 0.0266675078489713, 0.0030085842471421, 0.0005777467139253, 0.027044292473307, 0.0030021637856779, 0.000574863286395, 0.0274119652681817, 0.0029964479312607, 0.0005720264765105, 0.0277855810675993, 0.0029906617713976, 0.0005691671361203, 0.0281565058546489, 0.0029853658515636, 0.0005663077957301, 0.0285436815619336, 0.0029793910658478, 0.0005633069678555, 0.0289102311503868, 0.00297320189166, 0.0005603324696466, 0.0293251082568675, 0.0029645147375221, 0.0005574128248776, 0.0297242775626822, 0.0029587524836885, 0.0005543847952544, 0.0301234468684969, 0.0029519100072575, 0.0005513371541567, 0.0305210431664933, 0.0029448520248663, 0.0005483087971472, 0.0309172325719048, 0.0029365312942509, 0.0005451614900594, 0.0313134219773164, 0.0029282513361588, 0.0005420206469991, 0.0317836463622333, 0.0029204592032362, 0.0005388798039389, 0.0322440722953905, 0.0029126819338996, 0.0005357389608787, 0.0326442599490657, 0.0029049810797314, 0.0005326604537229, 0.0330917813949499, 0.0028945867202513, 0.0005294251584441, 0.0335341498279911, 0.0028848020743277, 0.0005261898631653, 0.0339765182610322, 0.0028760336784566, 0.0005229545678865, 0.0344048695223756, 0.0028663808599881, 0.0005197192726077, 0.0348348423258572, 0.0028567280415195, 0.0005162493720258, 0.0353705624174545, 0.0028458648962379, 0.0005130885050543, 0.0358593594330554, 0.002834933686344, 0.0005097490739584, 0.0363026612366661, 0.0028237207511793, 0.0005064096428625, 0.0367936548329371, 0.0028132985210584, 0.0005029582935253, 0.03728464842920821, 0.0028023642513785, 0.0004996552411216, 0.0377783656179671, 0.002791347969974, 0.0004962890176199, 0.0383092580173651, 0.0027789764071145, 0.0004928058655546, 0.0388249688913151, 0.002766604844255, 0.0004893227134893, 0.0393140657520889, 0.0027539010095526, 0.0004858994443421, 0.0398031626128627, 0.0027415144213003, 0.0004824689814666, 0.0402922594736364, 0.0027284075907359, 0.0004788587725389, 0.0408482387951534, 0.0027151676702695, 0.0004752485636111, 0.0414302184093149, 0.0027012924845103, 0.0004716383546834, 0.0418920021473856, 0.0026861565437783, 0.0004682220268889, 0.0424261798542598, 0.0026770837239118, 0.0004647014173863, 0.0429643563710469, 0.0026587598073904, 0.0004608868614787, 0.043502532887834, 0.002644084404182, 0.0004573029250233, 0.0440407094046211, 0.0026292154052293, 0.0004535854000037, 0.0445788859214083, 0.0026143464062766, 0.000449938072063, 0.0451943438357756, 0.0025994774073239, 0.0004463227270237, 0.0456852349184725, 0.0025841550903869, 0.0004425230279669, 0.0462236456737939, 0.0025677794444302, 0.000438935661363, 0.0467620564291153, 0.0025514037984736, 0.0004348479808592, 0.0473004671844367, 0.002535028152517, 0.0004312290239834, 0.0478388779397581, 0.0025201896784999, 0.0004274376901162, 0.048426730163175, 0.0024998521615885, 0.0004235766737653, 0.048941375027984, 0.002484669135346, 0.0004197156574143, 0.0494905280002763, 0.0024663033819152, 0.0004158211715795, 0.0500321252206146, 0.0024483851423377, 0.0004118767559763, 0.0505737224409529, 0.0024315054897786, 0.0004080316143737, 0.0511153196612912, 0.0024126395463493, 0.0004039775221088, 0.051694352043988, 0.0023937736029199, 0.0004000144214693, 0.0522050513308249, 0.0023734554753848, 0.000395925012221, 0.0526959411599371, 0.0023544798974892, 0.0003920458909892, 0.0531950679140494, 0.0023364448506403, 0.00038805476852, 0.0537434819366124, 0.002316359805688, 0.0003839689365936, 0.0541653528964353, 0.0022950174890437, 0.0003799878071024, 0.0545872238562582, 0.0022750924731946, 0.0003758715283961, 0.0551734296743378, 0.0022551674573456, 0.0003717552496897, 0.0556997808617663, 0.0022341726654548, 0.0003676919250822, 0.0559649431743643, 0.0022118466670192, 0.0003635261566121, 0.0565268737475225, 0.0021895335673268, 0.0003593906504774, 0.0568889662802123, 0.0021675301299654, 0.0003552551443427, 0.0572510588129022, 0.0021455266926041, 0.000351119638208, 0.0576131513455921, 0.0021231155962936, 0.000347026276303, 0.0579752438782819, 0.0021012295557291, 0.0003428493556185, 0.0582814275016527, 0.0020787374342336002, 0.0003386007000233, 0.0586164557370472, 0.002055824775796, 0.0003343520444282, 0.0589514839724417, 0.0020320849693663, 0.0003299630867357, 0.059264818095703, 0.0020084471135493, 0.0003257675865746, 0.0595372955559735, 0.0019851535725795, 0.0003215239342074, 0.0596323311403623, 0.0019610529188736, 0.0003172802818401, 0.059746029285538, 0.0019365739367206, 0.0003130366294728, 0.0598597274307137, 0.0019130978663019, 0.0003086270574071, 0.0601187122685951, 0.001887831790544, 0.0003041967428769, 0.060119410980421, 0.0018631831146774, 0.0002998720366244, 0.0601780570619175, 0.0018385573602506, 0.0002955334402143, 0.060302882707597, 0.001814043466677, 0.0002911543855253, 0.0603054530401851, 0.0017850981026246, 0.0002868140591343, 0.0596752659075831, 0.0017615642958791, 0.0002823737274677, 0.0598804455042953, 0.0017351037617302, 0.0002779361310494, 0.0600136537991887, 0.0017085936912209, 0.0002734564398731, 0.0597212913042706, 0.0016824305816364, 0.000269009581167, 0.0594289288093526, 0.0016569497656284, 0.0002645627224609, 0.0591365663144345, 0.0016280908125039, 0.0002601855796348, 0.0588442038195164, 0.0016022891209636, 0.0002556742430478, 0.0585518413245983, 0.0015747383730108, 0.0002510925347716, 0.0582594788296801, 0.001547187625058, 0.0002465997881597, 0.0580416414879407, 0.001516148964368, 0.0002421070415477, 0.05721995196409, 0.0014905400226561, 0.0002376303846546, 0.0567902448861828, 0.0014615693883825, 0.0002329373694062, 0.0561828602687846, 0.0014325987541088, 0.0002284227068271, 0.0555754756513864, 0.0014045358668472, 0.0002237534595653, 0.0549487053316608, 0.0013765652338679, 0.000219078161412, 0.0543386998564476, 0.0013468434803957, 0.0002146877751236, 0.0536483901269945, 0.0013170089515363, 0.000210078264332, 0.0529452363482625, 0.0012866901321583, 0.0002054687535403, 0.0522420825695305, 0.0012572193270546, 0.0002007979635702, 0.0509144818480093, 0.0012277485219508, 0.0001960268247343, 0.0501053699459129, 0.0011960838817009, 0.00019138938185, 0.0494784464768134, 0.0011661554106122, 0.0001867519389657, 0.0485540049714459, 0.0011371057510312, 0.0001818789419903, 0.0476043026160753, 0.0011067399194574, 0.0001772390655315, 0.0466190448787653, 0.0010760983009251, 0.0001725916056634, 0.0456337871414554, 0.0010452882646348, 0.0001681986646457, 0.0444416199669898, 0.0010146355952289, 0.0001632069866071, 0.0432537070660835, 0.0009826248989478, 0.0001585713411992, 0.0421973718018301, 0.0009506142026667, 0.0001539356957914, 0.0411455645428467, 0.0009196410865257, 0.0001490330857742, 0.0398135774076171, 0.0008887625707821, 0.0001447154016542, 0.0385935927177541, 0.000857809740482, 0.0001396968429227, 0.0373909609009647, 0.0008254885628611, 0.000134913853933, 0.0361883290841751, 0.0007934961942446, 0.0001301308649432, 0.0346577935820374, 0.0007612410571653, 0.0001253478759534, 0.0337508241306133, 0.00072979586806, 0.0001207214955585, 0.0323515048879394, 0.0006973308127263, 0.0001160544352146, 0.0309521856452653, 0.0006649677904651, 0.000111250697317, 0.029601870140769, 0.0006322600226861, 0.0001064185315116, 0.0283192080805413, 0.0006010704555084, 0.0001015934123215, 0.0269947599244164, 0.0005654158446736, 9.67682931314261e-05, 0.025448134166294, 0.0005345232165506, 9.20492188047461e-05, 0.0240545887769621, 0.0005015183787532, 8.72415668015789e-05, 0.0226562962539495, 0.0004687387603058, 8.23802623539003e-05, 0.0211871178720561, 0.0004359591418585, 7.76314810625425e-05, 0.0197179394901626, 0.0004031795234112, 7.27701239525689e-05, 0.018448633555364, 0.0003696015989219, 6.798578770298718e-05, 0.0169652201965496, 0.0003371902341682, 6.3259231194143e-05, 0.0154818068377352, 0.0003037995885292, 5.84223216094691e-05, 0.0139435092417789, 0.0002699031343138, 5.35439857544572e-05, 0.0126146844571909, 0.0002366311593304, 4.86827205682146e-05, 0.0109943967019331, 0.0002033591843469, 4.37826702167406e-05, 0.0095842784801039, 0.0001700872093635, 3.90795754105018e-05, 0.0081080138060627, 0.00013681523438, 3.43451543041876e-05, 0.0066131149399041, 0.0001050867075787, 2.9592968074049e-05, 0.0051661517602684, 7.27382974041476e-05, 2.46555672991769e-05, 0.0036485414111112, 3.77611552803052e-05, 1.97358358148638e-05, 0.002130931061954, 4.70490556500112e-06, 1.48161043305506e-05, 0.0007480222321201, -2.8351344150302904e-05, 9.89637284623731e-06, -0.0009333572224024, -6.14075938656055e-05, 4.97664136192427e-06, -0.0023861419710286, -9.64575848389084e-05, 1.59393088080231e-07, -0.003539001164797, -0.0001273679158115, -4.64592998432799e-06, -0.0054012266890296, -0.0001621264138429, -9.41925953490733e-06, -0.006886327982415, -0.0001952148600817, -1.43019144986246e-05, -0.0083714292758003, -0.0002283033063204, -1.9175184561888e-05, -0.0098443529446246, -0.0002613917525592, -2.4069504018015305e-05, -0.0112723881870114, -0.000294480198798, -2.85794130957138e-05, -0.0129093368684684, -0.0003275686450367, -3.36310184118623e-05, -0.0142699991280684, -0.0003604998873523, -3.84216980492915e-05, -0.015718783761924, -0.0003939124426843, -4.32123776867202e-05, -0.0171682114977789, -0.0004273249980163, -4.8003057324149e-05, -0.0187233558471282, -0.0004608544716822, -5.28676800800021e-05, -0.0202665448148038, -0.0004941021517328, -5.77049045389757e-05, -0.0217307164625586, -0.0005273498317835, -6.24887583378939e-05, -0.023118915950166498, -0.0005594943385928, -6.73205013330962e-05, -0.0243505649892401, -0.0005925210514772, -7.20394232093454e-05, -0.0260196740967375, -0.0006228347814158, -7.69095994275531e-05, -0.0274488717559664, -0.0006561917009419, -8.16722490968831e-05, -0.0288780694151953, -0.0006895486204681, -8.63353540692129e-05, -0.0301012952282825, -0.0007208527113178, -9.11149747862147e-05, -0.0314626569051705, -0.0007527375305078, -9.59969327180383e-05, -0.032914765423366, -0.0007858818304410999, -0.0001006583982754, -0.0343121209861345, -0.0008174096734334, -0.0001054715630868, -0.035803803435216, -0.0008489375164257, -0.0001102390575098, -0.03687239389661, -0.0008791350527227, -0.0001148382811714, -0.0384526730740668, -0.0009105911076393, -0.0001195782938024, -0.0396907242684096, -0.0009426807649176, -0.0001244149765475, -0.0409287754627523, -0.0009732410276905, -0.0001289821456138, -0.0421668266570952, -0.0010047922869318, -0.000133717127774, -0.043365554751517, -0.0010347411415088, -0.0001384521099342, -0.0446415879625202, -0.0010656621829943, -0.0001431870920944, -0.0457502448522238, -0.0010969215225995, -0.0001479220742546, -0.0468995846443219, -0.0011267354562714, -0.0001525897946086, -0.048043293535655, -0.0011563719694239, -0.0001571532335456, -0.049187002426988, -0.0011860084825765, -0.0001618901008552, -0.0503307113183212, -0.001216477809488, -0.0001664829523399, -0.0512066131532998, -0.001245704219827, -0.0001710227180941, -0.0522846974024972, -0.001274522672289, -0.000175614216232, -0.0531239107242163, -0.0013044354114961, -0.0001804531065048, -0.0541712555660095, -0.0013340432600142, -0.0001849619894606, -0.0552186004078029, -0.0013620591844425, -0.0001897069476454, -0.0561468598147701, -0.0013895861676253, -0.000193989578243, -0.0567994893380236, -0.0014192134246956, -0.0001988063408099, -0.0574835207683044, -0.0014478650489343, -0.0002032926518648, -0.0582355102845064, -0.0014755527878307, -0.0002077789629197, -0.059015089637387, -0.0015031353784952, -0.0002122652739746, -0.0597704960770584, -0.0015308537351372, -0.0002167515850294, -0.0603339957762853, -0.001559428226013, -0.0002212832792138, -0.0608637437384712, -0.0015863200975855, -0.0002258418821779, -0.0614117624206981, -0.0016132119691581, -0.0002304004851419, -0.0619597811029249, -0.0016411300206358, -0.0002349803349681, -0.0624778745783667, -0.0016669767743858, -0.0002393612006114, -0.0628785350848067, -0.0016928235281357, -0.0002437420662546, -0.062987834317469, -0.0017196400285923, -0.0002481229318979, -0.0635544465040277, -0.0017465686318895, -0.0002525986519152, -0.063822797823428, -0.0017706184606739, -0.0002570505241459, -0.0641127756139883, -0.0017966773022814, -0.0002614191380368, -0.0644027534045486, -0.0018209420979271, -0.0002658293994597, -0.064636751989405, -0.0018466428037342, -0.0002701337922947, -0.0646259538830878, -0.0018712690475369, -0.0002744743524596, -0.0646151557767705, -0.0018958952913397, -0.0002789340571407, -0.06453266373462, -0.0019191587095084, -0.0002832584433967, -0.0645707524409426, -0.0019427136107803, -0.0002872647841373, -0.0647394301049868, -0.0019662685120522, -0.0002915689987444, -0.0646004260583057, -0.0019895316344603, -0.0002960068795847, -0.0643247565313982, -0.0020129058611585, -0.0003002436681329, -0.0642700510773215, -0.0020358844581969, -0.0003044665035199, -0.0640637395095804, -0.0020580331295695, -0.0003087047020832, -0.0637020690534169, -0.002080536170495, -0.000312809998585, -0.0636121549974402, -0.0021030392114204, -0.0003170564396134, -0.0635222409414634, -0.0021222083065211, -0.0003211947642528, -0.0633100151299554, -0.0021440021050735, -0.0003253330888921, -0.0628454412826263, -0.0021657959036258, -0.0003296110588578, -0.0623808674352972, -0.0021881804679741, -0.0003335486800789, -0.061916293587968, -0.0022080863304509, -0.0003375782479284, -0.0616406195621602, -0.0022279921929278, -0.0003416812330678, -0.0612674905243747, -0.0022478980554046, -0.0003457123083739, -0.0606968466730937, -0.0022684232877048, -0.0003497433836799, -0.0603025836038838, -0.0022863185294664, -0.0003536818213414, -0.059862644237759, -0.0023059461945773, -0.0003577249540175, -0.0594227048716342, -0.0023262756277157, -0.0003615517807634, -0.0587904231250303, -0.0023448707620538, -0.0003657340777776, -0.0583484087560743, -0.0023632714135169, -0.0003695820764101, -0.0577300055238175, -0.0023813593579223, -0.0003734878712483, -0.0572889728762897, -0.0023988180434203, -0.0003775085748864, -0.0566856241938536, -0.0024162767289183, -0.0003813996058589, -0.0560203788063978, -0.0024337354144163, -0.0003854566647037, -0.0555251495608785, -0.0024502540498475, -0.0003893793126544, -0.0549372161228453, -0.0024679480685496, -0.000393301960605, -0.0543298857573927, -0.0024837140199372, -0.0003971145075703, -0.053726525986551, -0.0025000094953308, -0.0004008881981449, -0.0531189910255707, -0.0025163049707244, -0.0004046618887194, -0.0524647606195056, -0.0025329345072696, -0.0004085251703395, -0.051810530213440405, -0.0025477620502729, -0.0004123393652977, -0.0511066663868976, -0.0025619443317423, -0.0004161822874653, -0.0505591507088549, -0.0025758896743206, -0.0004200069714339, -0.0499507176959637, -0.0025911680307013, -0.0004234683506722, -0.0493173174993361, -0.0026051529212617, -0.000427096984852, -0.04865246840585, -0.0026194784707743997, -0.000430816434869, -0.047987619312364, -0.0026333638785876, -0.0004345182639549, -0.0474271867658317, -0.002646770630386, -0.0004382142705318, -0.0467245881141906, -0.0026592498434844, -0.0004417395056783, -0.0460219894625496, -0.0026717290565828, -0.0004452647408247, -0.045408178944869, -0.0026842082696813, -0.0004488266668289, -0.0447855612099826, -0.0026972109413407, -0.0004523293914941, -0.0441629434750962, -0.002710033262055, -0.0004558321161593, -0.0435068913284049, -0.0027200086825417, -0.0004592475355514, -0.0428731964285869, -0.0027310729186009, -0.0004626987421855, -0.0422010091649864, -0.0027427186431039, -0.0004661506061286, -0.0415405728759065, -0.0027537475206145, -0.0004696125707602, -0.0409217607999681, -0.0027647763981251, -0.0004731086008614, -0.0402874083802311, -0.0027753564406159, -0.0004763607400176, -0.0396451193329001, -0.0027850624776268, -0.0004796128791738, -0.0390231208256099, -0.0027947685146376, -0.000483030266144, -0.0384301782227657, -0.0028040838297387, -0.0004864034185413, -0.0377876822852153, -0.0028127057604161, -0.0004895756029407, -0.0371501300211457, -0.0028213276910936, -0.0004927903941873, -0.0365181215870211, -0.0028296905666849, -0.000496005185434, -0.0358861131528964, -0.0028381287316141994, -0.0004992290846473, -0.0353656206253756, -0.002846989236457, -0.0005024517621063, -0.0346970227896993, -0.0028541712002749, -0.0005056756725564, -0.0341207639207835, -0.0028613531640928, -0.0005087486135025, -0.0334830590440962, -0.0028685351279107, -0.0005118497975156, -0.0328570997455488, -0.0028757170917285, -0.0005149509815287, -0.0322311404470014, -0.0028828100549953, -0.0005180521655418, -0.0316742637826661, -0.0028877420853779, -0.000521098228273, -0.0310490841049589, -0.0028941869016621, -0.0005240697897398, -0.030476093602684, -0.0029013682231226, -0.0005270347062636, -0.0299031031004091, -0.0029077562253052, -0.0005299965359261, -0.0293301125981341, -0.002913628849963, -0.0005330094597082, -0.0287386691035563, -0.0029189684115923, -0.0005360223834903, -0.0281242701929888, -0.0029232249909423, -0.0005389584652615, -0.0275558708877992, -0.0029276029137945, -0.0005417557844099, -0.0270079423534522, -0.002932650550752, -0.0005446593575799, -0.0264722588674275, -0.0029376213676333, -0.0005474608586945, -0.0258865227523821, -0.0029422631849672, -0.0005501772578365, -0.0252799513347425, -0.0029448196029226, -0.0005530522741188, -0.0247670512155783, -0.0029488437780672, -0.000555579144934, -0.0242327733762314, -0.0029528679532119, -0.0005583100521577, -0.0236770405973456, -0.0029568921283565, -0.0005611578388169, -0.0231455346307191, -0.0029609956100598, -0.0005638414954271, -0.0226098683440097, -0.0029646236262722, -0.0005664309779774, -0.0220910124072235, -0.0029662317161634, -0.0005690204605278, -0.0215721564704372, -0.0029677645165731, -0.0005716360743508, -0.021045734452846, -0.0029692973169828, -0.0005742114749716, -0.0205240083600519, -0.0029719892306854, -0.0005768234427698, -0.0200489929705191, -0.0029742929120202, -0.0005792843165846, -0.0195676868203542, -0.0029754183436893, -0.0005817367751297999, -0.0190837177789963, -0.0029765437753584, -0.0005841266582675, -0.0186054272472917, -0.0029776692070275, -0.0005867148562962, -0.018127136715587, -0.0029798186263901, -0.0005891432465242, -0.017692175603847803, -0.0029800534643381, -0.000591532817436, -0.0172633434888955, -0.0029802364983365, -0.0005939146493065, -0.0168345113739433, -0.0029809431849789, -0.0005960808645833, -0.0164056792589909, -0.0029801166008125, -0.0005984550789737, -0.0160179499794973, -0.0029804569008804, -0.0006008562866748, -0.0156313511908297, -0.0029800405905733, -0.0006031353326307, -0.0152663480954938, -0.002981038087179, -0.0006053182743065, -0.0149078280734079, -0.0029802596855916, -0.0006075012159822, -0.0145308666185142, -0.0029794812840042, -0.0006096841576579, -0.0142002535162223, -0.0029787028824168, -0.0006119930531941, -0.0139040127599014, -0.0029776662394815, -0.0006141106020893, -0.0136077720035806, -0.0029764514305045, -0.0006162281509845, -0.0133033607435959, -0.0029750039310521, -0.0006183891616291, -0.0129917812869484, -0.0029724279409118, -0.0006204823843528999, -0.0127262232620148, -0.0029716999038362, -0.000622371659426, -0.0124776852580052, -0.0029697310414504, -0.0006244967575083, -0.0122291472539957, -0.0029677795278337, -0.000626554701409, -0.0119806092499861, -0.0029658297465837, -0.0006286126453098, -0.0117320712459766, -0.0029636228572444, -0.0006306705892106, -0.0115133749576172, -0.0029614159679052, -0.0006324927171658, -0.0113326951524375, -0.0029586918931527, -0.0006343303602117, -0.0111520153472577, -0.0029559019974098, -0.0006361680032576, -0.0109661845047053, -0.0029530145141512, -0.0006380056463036, -0.0107641187361067, -0.0029501008315298, -0.0006399722223047, -0.0105761248871502, -0.0029474737176621, -0.0006417967403381, -0.0104261435483794, -0.0029436789976432, -0.0006435871974419, -0.0102782524924504, -0.0029395933977074, -0.0006453776545457, -0.0101269413614452, -0.0029367836041481, -0.0006471681116496, -0.0099766095933525, -0.0029333887334915, -0.0006489585687534, -0.0098265760827734, -0.002929993862835, -0.0006504037094877, -0.0097075725517564, -0.0029253840236279, -0.0006522054927844, -0.0095833548786368, -0.002921672369855, -0.0006539092045582, -0.009452333808767, -0.0029179305287062, -0.0006554900643407, -0.0093297533772573, -0.0029131723669157, -0.0006570678862648, -0.0092382967734817, -0.0029084338247245, -0.0006587039178002, -0.0091206531064597, -0.0029043898159327, -0.0006603128713622, -0.009027690049522, -0.0028996167745937, -0.0006618844732185, -0.0089166515855383, -0.002894900400299, -0.0006633988462698, -0.0088211627537652, -0.0028899297444072, -0.000664913219321, -0.0087256739219922, -0.0028849590885154, -0.0006664240622847, -0.0086445184502223, -0.0028803356888966, -0.0006678508933337, -0.0085639308420021, -0.0028750861904748, -0.0006691586275307, -0.0084833432337818, -0.0028698667959538, -0.0006706377520037, -0.0084001809323778, -0.0028643374076748, -0.0006722140212131, -0.0083178794273866, -0.002859277341396, -0.000673514689627, -0.0082492494758517, -0.0028533304275152, -0.0006748153580408, -0.0081832588966642, -0.0028473676751865, -0.0006761160264546, -0.0081172683174767, -0.0028420615251218, -0.0006774166948685, -0.0080376754580022, -0.002836755375057, -0.0006787173632823, -0.0079854277405443, -0.0028309979246671, -0.0006799039615538, -0.0079063204042637, -0.0028244443918548, -0.000681041669548, -0.0078483600600524, -0.0028178908590426, -0.0006824842577831, -0.0077903997158412, -0.0028116225673431, -0.0006835632087654, -0.0077328875157726, -0.0028062466778237, -0.0006847462751272, -0.0076740620781628, -0.0027999621575802, -0.000685929341489, -0.0076143000955821, -0.0027937935162006, -0.0006871124078508, -0.0075607256119335, -0.0027858666606952005, -0.0006882727407652, -0.0075053388957873, -0.0027805857806548, -0.0006893475118486, -0.0074499521796411, -0.0027741615816762, -0.000690422282932, -0.0074007822902645, -0.0027677373826975, -0.0006914714507518, -0.0073494529910589, -0.0027602899758355, -0.0006924874527207, -0.007298050827789, -0.0027533693226277, -0.0006935579023307, -0.0072464882838497, -0.0027460644278811, -0.0006945144924921, -0.0071999604142222, -0.002739093475962, -0.0006954894928201001, -0.0071552989062372, -0.0027325372886721, -0.0006964436865576, -0.0071057313876274, -0.0027251714759307, -0.0006973978802951, -0.0070561638690176, -0.0027176146486872, -0.0006983685042262, -0.0070124972687115, -0.0027106269063424, -0.0006992131410853, -0.0069699046565645, -0.0027036693009504, -0.0006999761046346, -0.006927944132472, -0.0026965067140898, -0.000700866495031, -0.0068795459436055, -0.0026893506412815, -0.000701797715226, -0.0068375495852664, -0.0026815823845199, -0.0007025661062022, -0.0067956333994131, -0.0026737438648692, -0.0007033344971784, -0.0067495400914149, -0.0026666694153281, -0.0007041028881546, -0.0067137292303224, -0.0026587944670793, -0.0007047952394101, -0.00666756949019, -0.0026510634726172, -0.0007056332395681, -0.0066268614942498, -0.0026438086960835, -0.000706391201273, -0.0065861534983096, -0.0026365539195499, -0.0007070748336071, -0.0065441133941877, -0.0026289809679075, -0.0007077812136235, -0.0065025484998273, -0.0026203040222085, -0.0007084178476649, -0.0064633585645253, -0.0026126655849361, -0.0007090225283982, -0.0064241686292233, -0.0026049372632875, -0.0007096272091315, -0.0063849786939213, -0.0025978384282717, -0.0007102253396159, -0.0063457887586193, -0.0025890589555185, -0.0007108379623987, -0.0063040685233105, -0.0025808859699232, -0.0007114678964302, -0.0062669986224723, -0.0025734916481293, -0.0007119354729016, -0.0062274522278763, -0.002565270774237, -0.000712496747808, -0.0061886928932714, -0.0025575777408602, -0.000713009316097, -0.0061498057170534, -0.0025498492152617, -0.000713570341701, -0.0061109266174935, -0.002541722957608, -0.0007139915659591, -0.0060749863360812, -0.002532658197961, -0.0007144595826743, -0.0060357932271839, -0.0025254730337863, -0.0007148357233737, -0.005996768191865, -0.0025172363098771, -0.0007152118640731, -0.0059592547202338, -0.002508999585968, -0.0007155871854844, -0.0059210534700154, -0.0025007628620588, -0.000716053273595, -0.005884153148317, -0.0024922624831313, -0.0007163777193339, -0.0058474533442132, -0.0024841464275446, -0.0007165887466528, -0.0058115158836167, -0.0024760303719579, -0.0007170295660578, -0.0057732397580296, -0.0024679143163711, -0.0007173678330216, -0.0057355141016838, -0.0024595270083037, -0.0007177060999853, -0.0056985121854566, -0.002451287857413, -0.000717921510828, -0.0056615919493375, -0.0024429727366522, -0.0007181579589982, -0.0056246717132184, -0.0024347540201035, -0.0007183944071684, -0.0055860296391364, -0.0024255007744884, -0.0007186308553386, -0.0055515166674432, -0.002417673889309, -0.0007188582307381, -0.0055150576647062, -0.0024093678788387, -0.0007189194060276, -0.0054785986619693, -0.0024010618683685, -0.0007191513723843999, -0.0054424810087425, -0.0023927558578982, -0.000719281373798, -0.0054063411957115, -0.0023844498474279, -0.0007194113752116, -0.0053702013826805, -0.0023753568267619, -0.0007195413766252, -0.0053340615696495, -0.0023675765157637, -0.0007196724861077, -0.0052979217566184, -0.0023592603267269, -0.0007197693399208, -0.0052616636580815, -0.0023509441376901, -0.0007197782059459, -0.0052253444983061, -0.0023426279486533, -0.0007198167893542, -0.0051897851168945, -0.0023344984971282, -0.0007198065513861, -0.0051545014423759, -0.00232589869045, -0.000719796313418, -0.0051191229136025, -0.0023172530226171, -0.0007197860754499, -0.0050839856262323, -0.0023086073547843, -0.0007197758374818, -0.0050488483388621, -0.0023006085374929, -0.0007197655995137, -0.0050137197710696, -0.0022922941605768, -0.0007197553615456, -0.0049781967230421, -0.0022840935149768, -0.0007197451235775, -0.0049431476497357, -0.0022755944111085, -0.0007194998611181, -0.004908410107781, -0.0022670378711532, -0.0007193679371019, -0.0048736725658262, -0.0022587256982614, -0.0007192670065737, -0.0048392565052356, -0.0022505405186061, -0.0007191660760455, -0.0048048358835746, -0.0022422480045486, -0.0007190651455173, -0.0047704152619135, -0.002233713410259, -0.0007189372150339, -0.0047364064760821, -0.0022252184550413, -0.0007187111443786, -0.004701643363325, -0.0022176487069053, -0.0007184850737233, -0.004668926670264, -0.0022091827445929, -0.000718259003068, -0.0046333709935822, -0.0022002372748155, -0.000718185478388, -0.0046000773365218, -0.0021923339393067, -0.000717856047545, -0.0045667836794613, -0.0021840853811081, -0.0007176135788945, -0.0045331162697275, -0.0021757946736749, -0.0007173762262015, -0.0044992136683468, -0.0021672621044842, -0.0007171186768218, -0.0044653110669662, -0.002159346980359, -0.0007168294801295, -0.0044325472189336, -0.0021510927182363, -0.0007165122262894, -0.0044000902204747, -0.0021428384561136, -0.0007161949724493, -0.0043679398626953, -0.0021340986592356, -0.0007158777186092, -0.0043342487356257, -0.0021259190255061, -0.0007155368329953, -0.0043019454336619, -0.0021178187221824, -0.000715221635341, -0.004269642131698, -0.0021097184188588, -0.0007148906493861, -0.0042373388297342, -0.0021016181155351, -0.0007144975182846, -0.0042050355277704, -0.0020932202547117, -0.0007141043871832, -0.0041737353603142, -0.0020846412821667, -0.0007137112560817, -0.0041422821224863, -0.0020770210323224, -0.0007133181249802, -0.0041109410181582, -0.0020687103387127996, -0.0007127261546698, -0.0040792605945633, -0.0020605467444665, -0.0007124590122827, -0.0040480001961413, -0.0020524967815802, -0.0007119952929518, -0.004017068887086, -0.0020444468186939, -0.0007115688247357, -0.0039869078652965, -0.0020358347853191, -0.0007110866267808, -0.0039567468435071, -0.0020282035015091, -0.0007106356941833, -0.0039259860921417, -0.0020200611093127, -0.0007101599947063, -0.0038957569614511, -0.0020118555320416, -0.0007096842952293, -0.0038655278307606, -0.0020036499547705, -0.0007091752108479, -0.0038352971205271, -0.0019956955843876, -0.0007086238895989, -0.0038064960818872, -0.0019876698008814, -0.0007081125788642, -0.0037776161784433, -0.0019796182856573, -0.0007076012681296, -0.0037481556192203, -0.0019717222937269, -0.0007070848981457, -0.0037185808498993, -0.0019635401723105, -0.0007064504886157, -0.0036899201818425, -0.00195558995112, -0.0007059061304505, -0.0036612779324392, -0.0019476397299294, -0.0007053692487739, -0.003632635683036, -0.001939664674357, -0.0007047668468314, -0.0036049041196426, -0.0019318937490383, -0.0007041160714032, -0.0035769773323789, -0.0019238563804939, -0.0007034652959751, -0.0035485474974149, -0.0019159950987077, -0.0007029121951846, -0.0035213193004180006, -0.0019081338169216, -0.0007021771751762999, -0.0034935617481705, -0.0019002725351354, -0.0007016030918318, -0.0034660440732971, -0.0018920224807947997, -0.0007010290084872, -0.003438753557689, -0.0018847697449252, -0.0007003603257629, -0.0034122113981524, -0.0018763734191556, -0.0006996480321752, -0.003385707379352, -0.0018689471780698, -0.0006989357385876, -0.0033590786977764, -0.0018612524056548, -0.0006982234449999, -0.0033324708342828, -0.0018535576332398, -0.0006975111514123, -0.0033057883601749, -0.0018458536339424, -0.0006967202563465, -0.0032799778978317, -0.0018381377500557, -0.0006960710371564, -0.0032546157631142, -0.0018304218661691, -0.0006953443223028, -0.0032291859180623, -0.0018229657061193, -0.0006946072476542, -0.0032032993021561, -0.0018149070599226, -0.000693874623884, -0.0031774126862498, -0.0018074804043373002, -0.0006931377795553, -0.0031524892833985, -0.001799884948005, -0.0006923654368679, -0.0031280471798728, -0.0017922894916727, -0.0006915704690692, -0.0031035332859373, -0.0017848294400498, -0.0006907780780518, -0.0030788379576178, -0.0017773417301988, -0.0006899825860666, -0.003054178574285, -0.0017694352606076, -0.0006892483797187, -0.0030302293904284, -0.001762292709686, -0.000688356688438, -0.0030063088907929, -0.0017548385762602, -0.0006875293463414, -0.0029822314593149, -0.0017473844428344, -0.0006867020042447, -0.0029596093978294, -0.0017398973489104, -0.0006858746621481, -0.0029345278498627, -0.0017323663028172, -0.0006850467539663, -0.0029120530975224, -0.0017248831541924, -0.0006841786945941, -0.0028891855555847, -0.0017177894952054, -0.0006833385949507, -0.0028661237488041, -0.0017105299189813, -0.0006824550104563, -0.0028430672592261, -0.0017031140302848, -0.0006815609405629, -0.0028200107696481, -0.0016958035536266, -0.0006806717568822, -0.0027987269588904, -0.0016888206191084, -0.0006798179246837, -0.0027763216806235, -0.0016813850768859, -0.000678902983228, -0.0027539505817865, -0.0016740818855858, -0.0006779814353311, -0.0027320107783795, -0.0016670377830038, -0.0006770598874342, -0.002709918911346, -0.0016598287644271, -0.0006761132867489, -0.002688801532531, -0.0016527378586816, -0.0006752347177873, -0.0026676841537159, -0.0016456469529361, -0.0006743113793732, -0.0026467059953822, -0.0016385395913511, -0.00067337951097, -0.0026257590716723, -0.001631242532369, -0.0006724554564251, -0.0026042317848652, -0.0016244227544254, -0.0006714790663526, -0.002584026617073, -0.0016174778010999, -0.0006705535158694, -0.0025638214492807, -0.0016105328477744, -0.0006696231350019, -0.0025436162814884, -0.0016035682348798, -0.0006686058076995, -0.0025236265785265, -0.001596499377036, -0.0006675588424045, -0.0025038393320384, -0.0015894305191922, -0.0006666577516098, -0.0024840829174981, -0.0015825411398701, -0.0006657227310121, -0.0024640705091458, -0.0015759351458513, -0.0006647025455078, -0.0024447780940997, -0.0015692346043917, -0.0006637352883507, -0.0024254856790536, -0.0015621768318786, -0.0006627728880466, -0.0024061932640073998, -0.001555133163259, -0.0006617331844119, -0.0023876140261706, -0.0015485092574113, -0.0006607138957784, -0.002369176482015, -0.0015418959211937, -0.0006597025796632, -0.0023505469236107, -0.0015352825849761, -0.000658625309268, -0.0023322084245734, -0.0015284844685723, -0.0006576713520227, -0.0023138071029552, -0.001521648529863, -0.0006566283452067, -0.0022956714453878, -0.0015152273600347, -0.0006555853383906, -0.0022782003868179, -0.0015085038725164, -0.0006545423315746, -0.0022600666639275, -0.0015021039162824, -0.0006534993247585, -0.0022428285005192, -0.0014952948586437, -0.0006524660702404, -0.0022255903371108, -0.0014888359995509, -0.0006514391998833, -0.0022083521737025, -0.001482377140458, -0.0006502624173756, -0.0021911140102942, -0.0014759010283861, -0.0006492334719946, -0.0021737997358976, -0.001469443156174, -0.0006481845783786, -0.0021569883873312, -0.0014628527329606, -0.0006471652019458, -0.0021407102346608, -0.0014564853819082, -0.0006460997668304, -0.0021237343456312, -0.0014501180308557, -0.0006449475061984, -0.0021075503618665, -0.0014437506798032, -0.0006438485078025, -0.0020912986594125, -0.0014374017154138, -0.0006427654465429, -0.0020750469569584, -0.0014310501548233, -0.0006416474921875, -0.0020587952545044, -0.0014248129143897, -0.0006405253331968, -0.0020425435520504, -0.0014184234545152, -0.000639432478559, -0.0020270227778407, -0.0014120339946408, -0.0006383468840662, -0.0020115754242505, -0.0014058442599591, -0.0006372449058915, -0.0019961280706603, -0.0013997365320333, -0.0006360847092818, -0.0019806807170701, -0.0013936288041076, -0.0006349290269109, -0.0019656174752458, -0.0013875210761818, -0.0006337466969733, -0.0019505652842957, -0.0013812782704588, -0.000632641478854, -0.0019355151617828, -0.0013751613944419, -0.0006315130575417, -0.0019204650392699, -0.0013690445184249, -0.0006303678792773, -0.0019054506464465, -0.0013629849313363, -0.0006291922600058, -0.0018911377855055, -0.001356912390574, -0.0006280166407344, -0.0018769712720732, -0.0013508606717056, -0.0006268410214629, -0.0018625664199496, -0.0013450112454309, -0.0006257520845704, -0.0018481615678260003, -0.0013390365225677, -0.0006245723523137, -0.0018334240403182, -0.0013330459539878, -0.0006233617406387, -0.0018198516535089, -0.0013271691015563, -0.0006222110762525, -0.0018061886914806, -0.001321215141594, -0.0006209982101475, -0.0017925257294522, -0.0013153238775829, -0.0006198723739205, -0.0017788627674238, -0.0013093918942074, -0.0006187018207897, -0.0017651723301659, -0.0013036514493051, -0.0006175378703101, -0.0017515321193007, -0.0012978679560062, -0.00061633949998, -0.0017385897013646, -0.001292092572987, -0.0006151411296499, -0.0017251377421517, -0.0012863317195157, -0.0006139077267476, -0.0017121944510196, -0.0012805926449543, -0.0006127896954363, -0.0016992511598876, -0.0012748310977361, -0.0006116418347051, -0.0016863078687555, -0.0012691717988745, -0.0006104106469198, -0.0016733645776235, -0.0012635125000129, -0.000609180692584, -0.0016610272221852, -0.0012578933308143, -0.0006079507382481, -0.0016481311026191, -0.001252338307744, -0.0006067772880985, -0.0016358949964283, -0.00124667389459, -0.0006056238137379, -0.0016236588902375, -0.0012411463364568, -0.0006044463562355, -0.00161125515127, -0.0012356187783237, -0.0006032076720009, -0.0015989191254204, -0.0012300912201905997, -0.0006019816002949, -0.0015875652730913, -0.0012245636620575, -0.0006007943736859, -0.0015751841038772, -0.0012190320056422, -0.0005994919285059, -0.0015636046001782, -0.0012136407706088, -0.0005983190019341, -0.0015518941866442, -0.0012082398333616, -0.0005971643728195, -0.0015400769298288, -0.0012028606607397, -0.0005959664972806, -0.0015286772493856, -0.0011974389459517, -0.0005947686217418, -0.0015173823485406, -0.0011920017716598, -0.0005935203297044, -0.0015060332802457, -0.0011867049259348, -0.0005923342793523, -0.0014948444087412, -0.0011814735718188, -0.0005910880533284, -0.0014838347393376, -0.001176154850933, -0.0005898485958551, -0.0014723914806561, -0.0011707743391695, -0.0005886091383818, -0.0014617627573137, -0.0011653976520328, -0.0005873908718305, -0.0014510808189875, -0.0011603051676244, -0.0005861748266634, -0.0014403486079348, -0.0011550702202045, -0.0005849587814964, -0.0014296163968822, -0.0011499897432829, -0.0005837138842206, -0.001419323991237, -0.0011448088679113003, -0.0005824891717771, -0.0014089440782866, -0.0011396873706494, -0.0005812651743809, -0.0013982798172504, -0.0011345658733874, -0.0005800231844478, -0.0013880729049886, -0.0011294443761255, -0.0005787697703011, -0.0013778659927268003, -0.0011242308095326, -0.000577533867844, -0.0013680804631716, -0.0011193961408248, -0.0005763045556722, -0.0013580281124906, -0.0011140849509121, -0.0005750661582734, -0.0013478842403506, -0.0011092842147971, -0.0005737773860611, -0.0013382823862754, -0.0011043157286141, -0.0005725503811437, -0.0013286805322002, -0.001099354540589, -0.0005712914257581, -0.0013189355255095, -0.0010943938777308, -0.0005700324703725, -0.0013093099087386, -0.0010894128659769, -0.0005687735149869, -0.0012996842919677002, -0.001084431854223, -0.0005675097682552, -0.0012900586751968, -0.0010795901615188, -0.0005662565841737, -0.0012809255764534, -0.0010748124586556, -0.0005649985053381, -0.0012718334870868, -0.0010699456871883, -0.0005637642822264, -0.0012626443900178, -0.0010651086465646, -0.0005624897703347, -0.0012536726251017, -0.0010603744466599, -0.000561233158652, -0.0012446169077368, -0.0010555637895527, -0.0005599428102459, -0.0012357738559526, -0.001050820068925, -0.000558717326337, -0.0012269308041683, -0.0010460374685581, -0.0005574600580222, -0.0012181158257807, -0.0010413760777168, -0.0005561781950023, -0.001209460561677, -0.0010367229108881, -0.0005548906028004, -0.0012009129680223, -0.0010320209814477003, -0.0005536400705326, -0.0011923647678234, -0.0010273412058881, -0.0005523963137663, -0.0011838164468995, -0.0010227140547039, -0.0005511525569999, -0.0011757236104193, -0.0010180869035197, -0.0005498728616248, -0.0011669012373268, -0.0010134752093902, -0.0005485794222723, -0.0011588054433455, -0.0010089506125845, -0.0005472859829197, -0.0011507096493642, -0.0010044237425555, -0.0005460458942188, -0.0011426138553829, -0.0009998976769205, -0.0005447628637322, -0.0011345180614016, -0.000995495079265, -0.0005435067641368, -0.0011264222674203, -0.0009909244545451, -0.0005421843379198, -0.001118326473439, -0.0009864678214793, -0.0005409655347429, -0.0011107807189138, -0.0009820325971077, -0.000539689922498, -0.0011029033943209, -0.000977597372736, -0.0005384143102531, -0.0010950437593227, -0.0009731621483643, -0.0005371210521882, -0.0010875048368032, -0.000968786973843, -0.0005358892169829, -0.0010797149852513, -0.0009645109360617, -0.0005346030920978, -0.0010722202700062, -0.0009601579823865, -0.0005333320581708, -0.0010647255547611, -0.0009558050287113, -0.0005320665053913999, -0.0010572308395159998, -0.0009514520750361, -0.0005307659440994, -0.001049989019305, -0.000947259686503, -0.000529513438927, -0.0010427341462033, -0.0009429874439936, -0.0005282609337546, -0.001035692213056, -0.0009387337208361, -0.0005270084285822, -0.0010284843796268, -0.0009345230124447, -0.0005257232680122, -0.0010214434961317, -0.0009301858543086, -0.0005244035412978, -0.0010142813007021, -0.0009261058749854, -0.0005232170344378, -0.0010073412300502, -0.0009220123524262, -0.0005219418174782, -0.0010003519988883, -0.0009178434460101, -0.0005206591595382, -0.0009933875869795, -0.0009136923846148, -0.0005194056256721, -0.0009866569376854, -0.0009095055089697, -0.000518152091806, -0.0009799453651166, -0.0009054540079573, -0.0005168470542317, -0.0009731917258584, -0.0009013748673889, -0.0005156458808159, -0.0009665998532672, -0.000897351995162, -0.0005143858123969, -0.000960007980676, -0.0008933329462491, -0.0005131248937254, -0.0009533508854839, -0.0008893047312461, -0.0005118588042951, -0.0009469658824781, -0.0008853146347395, -0.0005106002855707, -0.000940568574765, -0.0008813674558258, -0.0005093623381538, -0.0009341705328488, -0.0008774181001407, -0.0005081059555869, -0.0009277394185792, -0.0008733927772252, -0.0005068429284585, -0.0009213083043096, -0.0008695051023059, -0.0005056004809967, -0.000915189140365, -0.0008656143599931, -0.0005043580335348, -0.000909086353175, -0.0008616983712694, -0.0005031155860729, -0.000902983565985, -0.0008577823825458, -0.0005018386107367, -0.0008968455632345, -0.0008539635706166, -0.0005005784635945, -0.0008906720434544, -0.000850147360529, -0.0004994209178987, -0.000884813294101, -0.0008463162281197, -0.000498152302566, -0.0008789267310512, -0.0008424796528586, -0.0004969053150761, -0.0008729891254002, -0.000838723953375, -0.0004956726244964, -0.0008670515197492, -0.0008349634709325, -0.0004944399339167, -0.0008611612471871, -0.0008312168234285, -0.000493207243337, -0.0008555092712236, -0.0008274701759245, -0.0004920052077908, -0.000849890147112, -0.000823716915081, -0.0004907431274328, -0.0008442222830155, -0.0008200713894401, -0.0004895188576486, -0.000838533612904, -0.0008164081691737, -0.0004882875476144, -0.0008328449427925, -0.0008127348899767, -0.0004870503850797, -0.000827453586855, -0.0008091017884652, -0.0004858410894276, -0.0008220017499703, -0.0008054686869537, -0.0004846107236078, -0.0008165499084891, -0.0008018747593049, -0.0004833894416116, -0.0008110980670079, -0.0007982907667230001, -0.0004821681596154, -0.0008057367314885, -0.0007947702841711, -0.0004809468776193, -0.0008004924575287, -0.000791164550717, -0.00047970970558129997, -0.0007952481835689, -0.0007876844513987001, -0.0004785043628513, -0.000790075908225, -0.0007842206721155, -0.0004772990201213, -0.0007848599072416, -0.0007806989075587, -0.0004760823994884, -0.0007796439062581, -0.000777158151812, -0.0004748861175177, -0.00077458931201, -0.0007737877981457, -0.0004736696419911, -0.0007695689828324, -0.0007703285095173, -0.0004724302333973, -0.0007645589259536, -0.0007668606711776, -0.0004711908248034, -0.0007594942291498, -0.0007634664359442, -0.0004700142546201, -0.0007546052085952, -0.0007600694599065, -0.0004688162512674, -0.0007497225469567, -0.0007567410321686, -0.0004675816948649, -0.0007448398853181, -0.0007533398569904, -0.0004663964278384, -0.0007399927269553, -0.0007500236819525, -0.0004651964358268, -0.0007351293103381, -0.0007467075069146, -0.0004639828214706, -0.000730380967879, -0.0007433913318767, -0.0004627864071167, -0.0007257679433839, -0.0007400928302605, -0.0004615813303575, -0.0007211549188888, -0.0007368563211057, -0.0004603739159368, -0.0007165179113396, -0.0007335879801221, -0.0004591665015162, -0.0007119929184703, -0.0007303459565264002, -0.0004580266816084, -0.0007073893346036, -0.0007271011926736, -0.0004568043349981, -0.0007028600229735001, -0.0007238983396846, -0.0004556134602544, -0.0006983492773482, -0.0007206928454046, -0.0004544129123381, -0.000693886106427, -0.0007175076950435, -0.0004532123644219, -0.0006894451006919, -0.0007143263701036, -0.0004520425740383, -0.0006850040949569, -0.0007111599098683, -0.0004508643380898, -0.0006805630892219, -0.0007080252145928, -0.0004496482504744, -0.0006763756746900999, -0.0007048913085699, -0.0004484950408584, -0.0006720143255198, -0.0007017805057198, -0.0004473096480099, -0.0006677292900980001, -0.0006986837220171, -0.0004461242551614, -0.0006635798760072, -0.0006955731277007, -0.000444938862313, -0.0006593997442684, -0.0006925047795116, -0.000443758293258, -0.0006551886488733, -0.0006894364313225, -0.0004425751313232, -0.0006509775534782, -0.0006863680831334, -0.0004414122580823, -0.0006468813787658, -0.0006833344758822, -0.0004402398148214, -0.0006427686972517, -0.000680284494037, -0.0004390586902301, -0.0006388098113687, -0.0006773000431692, -0.0004378783159366, -0.0006348509254858, -0.0006743155923013, -0.0004366979416432, -0.0006308920396029, -0.0006713595473913, -0.0004355517914136, -0.0006269214275912, -0.0006683738053195, -0.0004343724903087, -0.0006229586181936, -0.0006653880632477, -0.0004332202910668, -0.0006191566175431, -0.0006624201599483, -0.0004320680918249, -0.0006153232861929, -0.0006595412272498, -0.0004309036626337, -0.0006114770120649, -0.0006566663381174, -0.0004297242107181, -0.0006076307379368, -0.000653791448985, -0.0004285869017139, -0.0006037844638087999, -0.0006508708780977, -0.0004274430843416, -0.0006001462718652, -0.0006479636953673, -0.0004262809001781, -0.0005965016202136, -0.0006451324742974, -0.0004251196391172, -0.0005928535734265, -0.0006423100607809, -0.0004239737935314, -0.0005892243411779, -0.0006394792602932, -0.0004228279479457, -0.0005855230890564, -0.0006366484598055, -0.00042169036109669997, -0.0005819221294035, -0.0006338390253845, -0.0004205447521588, -0.0005785063292805, -0.0006310790428178, -0.0004194005534747, -0.0005749228592405, -0.0006283391661439, -0.0004182767124888, -0.0005713993891872, -0.0006255438999929, -0.0004171220222078, -0.0005678731734072, -0.0006227669889807, -0.0004159895983612, -0.0005644268824037, -0.0006200255337523, -0.0004148440130289, -0.0005610414824095, -0.0006173480750179, -0.000413715515259, -0.0005576560824152, -0.000614673048333, -0.0004125797887719, -0.000554270682421, -0.0006119414196862, -0.0004114591326492, -0.0005509530329773, -0.000609230529076, -0.0004103248570169, -0.0005476345582869, -0.0006065976008005001, -0.0004092081990032, -0.0005443688096459, -0.0006039583102913, -0.0004080915409895, -0.000541106730871, -0.0006013140894083, -0.0004069748829757, -0.0005378459540213, -0.0005986841324962, -0.000405858224962, -0.0005346096869029, -0.000596049926088, -0.0004046777789154, -0.0005314162207101, -0.0005934578637932, -0.0004036298687604, -0.0005282864302495, -0.0005908640372836, -0.0004024841912852, -0.000525123128966, -0.0005882803946223, -0.00040138273185630005, -0.0005219893376852, -0.000585696751961, -0.0004002812724274, -0.0005188365176509, -0.0005831020133504, -0.0003991798129985, -0.0005157977892481, -0.0005805865612325, -0.0003980702277107, -0.0005127590608452, -0.0005780711091145, -0.0003969782222878, -0.0005097082199846, -0.0005755556569966, -0.0003958862168648, -0.0005066955997587, -0.0005730411262107, -0.000394773280798, -0.0005036375507069, -0.0005704774359282, -0.0003936665113617, -0.0005006965249307, -0.000568075295003, -0.00039259841638080004, -0.000497805857292, -0.000565564432263, -0.0003915022240977, -0.0004947991212514, -0.0005630985060854, -0.0003904226773059, -0.0004918970698967, -0.0005606325799079, -0.0003893466812315, -0.0004889851779522, -0.0005581742560949, -0.0003882486177026, -0.0004861273442815, -0.000555768221413, -0.0003871622456393, -0.0004832703724021, -0.0005533621867311, -0.0003860901318679, -0.0004804272737844, -0.0005509561520492, -0.0003850180180964, -0.0004775904184147, -0.0005485501173673, -0.0003839459043249, -0.0004747452840585, -0.0005461440826854, -0.0003828227424024], "Bz": [-0.0011700953437782, 0.000226480086027, 0.0004121396007212, -0.001174790575521, 0.000230876277319, 0.0004148025696297, -0.001179422938636, 0.0002352720662439, 0.0004174550356053, -0.001184055301751, 0.0002396678551688, 0.0004201315147112, -0.0011891929039375, 0.0002441024643245, 0.0004228218165779, -0.0011941197612011, 0.0002487670372061, 0.0004255121184447, -0.0011992521609092, 0.000253439867369, 0.0004282024203114, -0.0012044557344526, 0.0002579938923801, 0.0004308978997428, -0.001209659307996, 0.0002625855753655, 0.0004336214483373, -0.0012150001616914, 0.0002674045379732, 0.0004363306378805, -0.0012199940825792003, 0.0002722235005809, 0.0004391009641183, -0.0012253312480413, 0.0002770424631886, 0.0004418708324289, -0.0012307920118332, 0.0002818457545828, 0.0004446407007395, -0.0012362527756252, 0.000286899054953, 0.0004474105690502, -0.0012414244922337, 0.0002919523553232, 0.0004501804373608, -0.0012468942645025, 0.0002970133175854, 0.0004529710091366, -0.0012524638629474, 0.0003020788921391, 0.0004558219375259, -0.0012580334613924, 0.000307170422598, 0.0004586750163241, -0.0012635138419708, 0.0003123063106566, 0.000461526714324, -0.0012688148672755, 0.0003175738207993, 0.000464378412324, -0.0012743890629002, 0.0003228831932329, 0.0004671678737777, -0.0012799450620711997, 0.0003282062677197, 0.0004700886178892, -0.0012855010612423, 0.0003336268079417, 0.0004729996948708, -0.0012910472133672, 0.0003390678312911, 0.0004759520356844, -0.0012963620043518, 0.0003445893289204, 0.000478904376498, -0.0013016767953365, 0.0003501677287899, 0.0004818278702155, -0.0013074468769344, 0.0003557815365625, 0.000484743852919, -0.0013126875078228, 0.000361400676632, 0.0004877497420527, -0.0013184219347489, 0.0003672136798153, 0.0004907251902566, -0.0013241519401515, 0.0003729964996705, 0.0004936873620459, -0.0013296315837728, 0.0003788133093633, 0.0004966782905113, -0.001335160139599, 0.000384630119056, 0.0004996497246862, -0.0013406886954252, 0.0003907057872344, 0.0005027123607647, -0.0013461071077717998, 0.0003967522264177, 0.0005056255637270999, -0.0013519262502228, 0.000402798665601, 0.0005087032707734, -0.0013579073791524002, 0.0004089391618798, 0.0005117809778197, -0.0013635257122737, 0.0004152110835267, 0.000514858684866, -0.0013695160116336, 0.0004214830051737, 0.0005179236784557, -0.0013749328310216, 0.0004277466853393001, 0.0005210625386705, -0.001380262202254, 0.0004340316542312, 0.0005242076120538, -0.001385638844427, 0.0004405969673175, 0.0005272809812819, -0.0013910260860543, 0.000447171900731, 0.0005304159667911, -0.0013963894397025, 0.0004537994573446, 0.0005335509523003, -0.0014026781115884, 0.0004602828440951, 0.0005367006532396, -0.0014083744177295, 0.0004670089341486, 0.0005398303536531, -0.0014140829229963, 0.0004738108698256, 0.0005430620296022, -0.0014198260735006, 0.0004806641982247, 0.0005462937055513, -0.0014257746423569, 0.0004877005079252, 0.0005494791471691, -0.0014312315660269, 0.0004945395708782, 0.0005527197615033, -0.0014369013160933, 0.0005016223862386, 0.0005559603758374, -0.0014425710661597, 0.0005086973558575, 0.0005592009901716, -0.0014477721399285, 0.0005157782663468, 0.0005623965783243, -0.0014535305338425, 0.0005230989282901, 0.0005657346111138, -0.0014592889277566, 0.0005304423254786, 0.0005690726439032, -0.0014650185871574, 0.0005378047610555, 0.0005723261033516, -0.0014707072893427, 0.0005454853594666, 0.000575666726329, -0.0014763132811999, 0.0005529588075929, 0.0005790073493064, -0.0014821870085342, 0.0005606559228602, 0.0005823479722837, -0.0014879496506168, 0.0005683530381274001, 0.0005856885952611, -0.0014933005612739, 0.0005760501533947, 0.0005890462120664, -0.001498988346639, 0.000584131819927, 0.0005924654896594, -0.0015046937437769, 0.0005915017349603, 0.0005958259489528, -0.0015104491890316, 0.0005997254420243, 0.0005992238418249, -0.0015162046342863, 0.0006078766172724, 0.0006026395009072, -0.0015219949192194, 0.0006161291638587, 0.0006060551599895, -0.0015271419520229, 0.000624381710445, 0.0006094142722825, -0.0015324634092979, 0.0006326830200378, 0.0006129205361128, -0.0015379075584515, 0.0006410598661399, 0.0006164079464588, -0.001543801029788, 0.0006494130393401, 0.0006199435257933, -0.0015496945011245, 0.0006581078512756, 0.0006234149718799, -0.0015555268537368, 0.0006666758669074, 0.0006269044086111, -0.0015613223077187, 0.0006754625971686, 0.0006304037326377, -0.0015667331756198, 0.0006842694193683, 0.0006339398176686, -0.0015719231551924, 0.0006931198873317, 0.0006375065641664, -0.0015773818508038, 0.0007019703552951, 0.0006410733106641, -0.0015826440562319, 0.0007108208232585, 0.0006446187552176, -0.0015877475007841, 0.0007196712912219, 0.0006482193203554, -0.001593094715205, 0.0007292635202923, 0.0006518198854932, -0.0015985992181147, 0.0007381087141101, 0.000655420450631, -0.0016043254889733, 0.0007476251359492, 0.0006590210157688, -0.0016099102138378, 0.0007571415577884, 0.0006626836981847, -0.0016155487611214, 0.0007666579796275, 0.0006661191807474, -0.001621298228835, 0.0007761744014666, 0.00066994068528, -0.0016263771632971, 0.0007857980943242, 0.0006736066964235, -0.0016310749969705, 0.0007956286276789, 0.0006772727075669, -0.0016362273269043, 0.0008055903337794, 0.0006809387187104, -0.0016413630523211, 0.0008156845173648, 0.0006846280094815, -0.0016467396618708, 0.0008257836387999, 0.0006883586338856, -0.0016517050205819, 0.0008360006802508, 0.0006920302676396, -0.0016566703792931, 0.0008461472512199, 0.0006957531833998, -0.0016616357380042, 0.0008562425639678, 0.00069947609916, -0.0016664442239569, 0.0008667921805435, 0.0007031990149202, -0.0016711730827315, 0.0008773349557211, 0.0007069219306805, -0.0016759019415061, 0.0008878777308987, 0.000710641844212, -0.0016806308002807, 0.0008984682842417, 0.0007145096276684, -0.0016858424369601, 0.0009092729127164998, 0.0007183153931429, -0.0016921762150884, 0.0009203240646151, 0.0007221211586173, -0.0016964173675452, 0.000931448439039, 0.0007259269240918, -0.001700658520002, 0.0009426235744222, 0.0007297310287126, -0.0017048996724589, 0.0009539033159042, 0.0007335978627903, -0.0017091408249157, 0.0009651617069376, 0.0007374548550155, -0.0017133819773725, 0.0009764200979709, 0.0007413198996876, -0.0017176523920995, 0.0009879725733265, 0.0007451849443596, -0.0017220873443318, 0.0009996776167525, 0.0007490706087002, -0.001726522296564, 0.0010113113752317, 0.0007529494243391, -0.001730722723051, 0.001023167457306, 0.0007567521566255, -0.0017340829606634, 0.0010350235393803, 0.0007607097613165, -0.0017386618714929, 0.0010469022857232, 0.0007646468906034, -0.0017424525225038, 0.0010591414917606, 0.0007685923972024, -0.0017462750228496, 0.0010714983832777, 0.0007725358012954, -0.0017500961671582, 0.0010838552747948, 0.0007764998989664, -0.0017539173114668, 0.001096240688911, 0.0007804791117384, -0.0017577384557753, 0.0011084047723461, 0.0007844929068876, -0.0017615596000839, 0.0011213629310844, 0.0007884444275481, -0.0017648030342937, 0.0011342497071821, 0.0007923855083283, -0.0017678035678753, 0.0011471912528425, 0.0007964026909586, -0.0017703645873624, 0.00116023082505, 0.0008004110591252, -0.0017732111124229, 0.0011734539778167, 0.0008044167596096, -0.0017756130895772, 0.0011866771305833, 0.0008084425802672, -0.0017780150667316, 0.001200073315448, 0.0008125222029856, -0.0017810287025203, 0.0012132746439799, 0.0008165554193678, -0.0017828147956532, 0.0012267150849855, 0.0008205910058584, -0.0017843880070247, 0.001240422062331, 0.000824534681481, -0.0017865371261228, 0.0012541534557338, 0.0008286733656846, -0.0017888571011622, 0.0012679468432454, 0.0008328188989156, -0.0017912188973442, 0.001281740230757, 0.0008369709536294, -0.001793413760359, 0.0012962593181599, 0.000841142249742, -0.0017952671083041, 0.0013104705393762, 0.000845225689861, -0.0017964255351063, 0.0013246817605926, 0.00084930912998, -0.0017968684198922, 0.0013392831374232, 0.0008534432461671, -0.0017984195433434, 0.0013540794766908, 0.0008575682601295, -0.0017992315123441, 0.0013690217832368, 0.000861693274092, -0.0017997275234821, 0.0013834618056975, 0.0008658182880544, -0.0018002235346201, 0.001398510302776, 0.00086997505122, -0.0018002258823652, 0.0014135587998546, 0.0008743737061541, -0.0018016739278702, 0.0014287683083986, 0.000878511494182, -0.0018021916061571, 0.0014442059293334, 0.0008826850645954, -0.0018021547102181, 0.0014593963878938, 0.0008868586350087, -0.0018013830700395, 0.0014751909331064, 0.0008910322054221, -0.0018002844399064, 0.001491088287564, 0.0008952057758355, -0.001798673500662, 0.0015069368284699, 0.0008993793462488, -0.001796904429495, 0.0015230090973643, 0.0009035529166622, -0.0017967249204883, 0.0015393862840638, 0.0009077264870755, -0.0017942263304904, 0.0015553420196484, 0.0009123261828011, -0.0017917277404925999, 0.0015716110722368, 0.0009162819576544, -0.0017892291504947, 0.0015879387618724, 0.0009205666369026002, -0.0017855167646362, 0.0016043919683224, 0.0009248513161509, -0.0017821924841994, 0.001621297008823, 0.0009291359953991, -0.0017806520267372, 0.0016381842717968, 0.0009334206746473, -0.0017764125890862, 0.001655130757259, 0.0009377053538956, -0.0017721731514352, 0.0016720575307839, 0.000942008619754, -0.0017679337137842, 0.0016894185132343, 0.0009463962120233, -0.0017632300240029, 0.0017068568445988, 0.0009506850446403, -0.0017593652412555, 0.0017241828672928, 0.0009549932498299, -0.001754461277459, 0.0017414754203759, 0.0009593014550195, -0.0017495573136625, 0.0017596657708571, 0.0009636096602091, -0.0017437583304342, 0.001777625973598, 0.0009679342419473, -0.0017375598255732, 0.0017955861763388, 0.0009722682483513, -0.0017318354397811, 0.0018135463790796, 0.0009765856461948, -0.0017258684467435, 0.0018328426962026, 0.0009808977612126, -0.0017170966964336, 0.0018508438549805, 0.0009853187125729, -0.0017098334591915, 0.0018687445387058, 0.0009897475817939, -0.0017014007722445, 0.0018873312743755, 0.0009941593707899, -0.0016929680852975, 0.0019064028003376, 0.0009985022018186, -0.0016845353983506, 0.0019254743262997, 0.0010028008938836, -0.0016755530057395, 0.0019445458522618, 0.0010071400727208, -0.0016660744933951, 0.0019636034969792, 0.0010115315791227, -0.0016560708962844, 0.0019829989601589, 0.0010159310027538, -0.0016462427697518, 0.0020023944233386, 0.0010203238200552, -0.0016306044633373, 0.0020217898865182, 0.0010246651159075, -0.0016207558086433, 0.0020411853496979, 0.0010289007868224, -0.0016059627302559, 0.0020620159388805, 0.0010334523664332, -0.0015956240769604, 0.0020813518712167, 0.0010378157287178, -0.0015803102073876, 0.0021016858256466, 0.0010422005326033, -0.0015649963378147, 0.002122130200091, 0.0010465853364889, -0.0015514343264533, 0.0021426194650537, 0.0010509970348998, -0.0015341424154192, 0.0021631087300164, 0.0010553419256455, -0.0015182143608209, 0.0021835979949791, 0.0010598035787915, -0.0015014556469984, 0.0022044358885693, 0.0010642558763238, -0.001484696933176, 0.0022257773135136, 0.0010687081738562, -0.0014682259215158, 0.0022473676763589, 0.0010731505111464, -0.0014522558200065, 0.0022682539909875, 0.0010775351343312, -0.0014321257557431, 0.0022898158218093, 0.0010819217799385, -0.0014112700909378, 0.002311377652631, 0.0010863084255457, -0.0013904144261324, 0.0023327285406789, 0.0010906646228412, -0.0013698432905882, 0.002354236005826, 0.0010951882387461, -0.0013477557060531, 0.0023765806588227, 0.0010996892131722, -0.0013252760569706, 0.0023988019149515, 0.0011041724414671, -0.0013027964078882, 0.0024212327536165, 0.0011085737536813, -0.0012768632194061, 0.0024433704467179, 0.0011129498141931, -0.0012496087529237, 0.0024659428813628, 0.0011173499446098, -0.001222710320666, 0.0024886994972573, 0.0011216511412579, -0.0011935914789662, 0.0025114032863408, 0.0011262597335285, -0.0011681809044823, 0.0025341070754243, 0.0011306642069316, -0.0011337647896972, 0.0025568108645078, 0.0011350657192317, -0.0011024497555516, 0.0025802008735141, 0.0011394609602339, -0.001071134721406, 0.0026034193923012, 0.0011439215397668, -0.0010398196872604, 0.0026271236246328, 0.0011483750308636, -0.0010108201423636, 0.0026506958366008, 0.0011528285219604003, -0.0009739296363925, 0.0026742680485688, 0.0011572820130571, -0.0009379659684593, 0.0026978402605368, 0.0011618949742971, -0.0009067164582285, 0.0027218676617076, 0.0011662210804683, -0.0008563926669003, 0.0027457960092448, 0.0011706093869099, -0.0008153201932664, 0.0027697243567819, 0.0011750241997864, -0.0007742477196324, 0.0027934491539686, 0.0011794008006845, -0.0007331752459985, 0.0028184003927629, 0.0011838916776351, -0.0006921027723646, 0.0028433516315572, 0.0011883825545857, -0.0006510302987307, 0.0028683028703515, 0.0011928583981932, -0.0006121885324947, 0.0028936776870734, 0.001197289548546, -0.0005489654431809, 0.0029184860092569, 0.0012017167974459, -0.0005067518919991, 0.0029435116873488, 0.001206131508697, -0.0004546462284219, 0.002968766251051, 0.0012105156706551, -0.0003995667594879, 0.0029940208147532, 0.0012148998326132, -0.000344487290554, 0.0030196253637052, 0.0012192839945713, -0.0002894078216201, 0.0030449290416641, 0.0012235924239704, -0.0002298909217867, 0.0030712237008731, 0.0012281273644377, -0.0001680064892468, 0.0030975699337565, 0.0012325990946483, -0.0001106051235543, 0.0031239293346748, 0.0012370236454375, -4.58450033347286e-05, 0.0031502887355932, 0.0012414694924684, 1.89151168849298e-05, 0.0031766481365116, 0.0012459184274904, 8.36752371045924e-05, 0.00320300753743, 0.0012502924301698, 0.0001538644866968, 0.0032294853437039, 0.001254599707067, 0.0002276722713897, 0.0032559282710689, 0.0012589338477372, 0.0003042569848923, 0.0032823711984338, 0.0012632008698762, 0.0003769568223299, 0.0033088905986034, 0.0012675575179028, 0.0004538614019075, 0.0033358185415031, 0.0012719141659293, 0.0005343016550566, 0.0033627625873426, 0.0012762479130784, 0.0006261890703284, 0.0033896191794957, 0.0012805825476212, 0.0007035794809521, 0.0034171959364441, 0.0012848237100605, 0.0007918464492326, 0.0034447726933925, 0.0012890631168872, 0.0008821296557587, 0.0034722770295171, 0.0012932844783397, 0.0009799400188533, 0.0034981395028842, 0.0012975058397923, 0.001073976972717, 0.003528340009521, 0.001301812126067, 0.0011737481407545, 0.0035562160071033, 0.0013062110069342, 0.0012756328344679, 0.0035843768149096, 0.00131047007665, 0.0013775175281814, 0.0036108526815472, 0.0013148216265249, 0.0014861780247188, 0.0036396032165213, 0.001319071684509, 0.0015950098975383, 0.0036684049687085, 0.0013233121597211, 0.0017149110049635, 0.0036965183099958, 0.0013275526349331, 0.0018426103537113, 0.0037248748624979, 0.0013318450511988, 0.0019639263135864, 0.003753231415, 0.0013360395222974, 0.0020879019853085, 0.0037816283712372, 0.001340241627854, 0.002211667651678, 0.0038100517587897, 0.0013442663050133, 0.0023458224518748, 0.0038390173805388, 0.001348380396778, 0.0024799339688382, 0.0038674548042495, 0.0013525257452357, 0.0026200661378014, 0.0038957529466407, 0.0013567020525316, 0.0027668877853212, 0.003923772618264, 0.0013610529086734, 0.002913709432841, 0.0039542616896501, 0.0013648841784801, 0.0030605310803607, 0.0039833530897927, 0.0013690442004215, 0.0032102449166610996, 0.0040127046608789, 0.0013732042223629, 0.0033677377829071, 0.0040421468046736, 0.0013773308461488, 0.003556633348152, 0.0040712281960218, 0.0013814291183557, 0.0037352698879318, 0.0041001007261332, 0.0013855273905626, 0.0039159986777679, 0.0041289732562446, 0.0013896673533822, 0.0040918190369149, 0.0041587575074521, 0.0013936125318612, 0.0042842021133466, 0.0041886499770288, 0.00139773077559, 0.004477889523611999, 0.0042185375470548, 0.001401735097134, 0.0046822477645576, 0.0042482891577447, 0.001405720565643, 0.0048866060055032, 0.0042780200447595, 0.0014097060341521, 0.0050984576708386, 0.0043080009885029, 0.0014136915026611, 0.0053176610555686, 0.0043382904210453, 0.0014176099593736, 0.0055458422506096, 0.0043681855006171, 0.0014215925860693, 0.0057847638882598, 0.0043981192559373, 0.0014252727965791, 0.0060234707372303995, 0.0044269837988713, 0.0014291838513946, 0.0062576177152163, 0.0044568691701137, 0.0014330949062101, 0.0065068556267646, 0.0044867801137558, 0.0014371132566672, 0.0067682754230448, 0.0045161404778411, 0.0014414026810001, 0.0070391390537781, 0.0045470147089879, 0.0014450337331337, 0.0073262321479528, 0.0045771430482963, 0.001448836423295, 0.0076133252421275, 0.0046079559804811, 0.001452621108567, 0.0078937336185737, 0.0046379301101489, 0.0014563979405334, 0.0081713197777129, 0.0046676048690416, 0.0014601368847526, 0.0084489059368521, 0.0046976476210124, 0.0014638733791615, 0.008836714736353, 0.0047278470637256, 0.0014676098735704, 0.0091561881430148, 0.0047578452223364, 0.0014713463679793, 0.0095185244921686, 0.004787792246116, 0.0014753958755753, 0.0098648142489437, 0.0048170194620867, 0.0014790014625069, 0.0102152059378818, 0.0048462992836158, 0.0014826070494384, 0.0105655976268198, 0.0048775213479769, 0.0014862126363699, 0.0109814972248539, 0.004907359631067, 0.0014898182233015, 0.0113588860272016, 0.0049371979141571, 0.0014934262957382, 0.0117528767845744, 0.0049667921197397, 0.0014971494145613, 0.012186606259845, 0.0049961863241704, 0.0015007527304554, 0.0126127198638048, 0.0050270491077718, 0.0015043560463495, 0.0130553156987753, 0.0050565707811665, 0.001508014015667, 0.0134979115337458, 0.005086799131728, 0.0015115223902198, 0.0139272181636886, 0.0051170145578451, 0.0015149683409342, 0.014425910292275, 0.0051470307379546, 0.0015184569640378002, 0.0149333122043755, 0.0051770469180642, 0.0015219455871415, 0.015457863561567902, 0.0052068184780665, 0.0015253922669377, 0.0159824149187603, 0.0052363769629349, 0.0015287877576496, 0.0165069662759527, 0.005264964661565, 0.0015321599379244, 0.017060979097726, 0.0052942509561619, 0.0015355321181993, 0.0176292888648659, 0.0053230190099053, 0.0015389042984742, 0.0182413846630771, 0.0053534726864681, 0.0015423931454267, 0.0188555986364269, 0.0053832126473999, 0.0015457262938635, 0.0194978204688974, 0.0054107372920829, 0.0015490424665342, 0.020140042301368, 0.0054397319828098, 0.0015522187248853, 0.0207822641338385, 0.0054689465852066, 0.0015555022911095, 0.0214244859663091, 0.0054981611876034, 0.0015587234236974, 0.022187847469656, 0.0055273757900002, 0.0015619175096823, 0.0228356929087596, 0.0055561674647572, 0.0015651056442559, 0.0236226695268317, 0.0055850385593374, 0.0015678934470929, 0.0244096461449038, 0.0056139096539176, 0.0015712484477103, 0.025196622762975997, 0.0056427807484977, 0.0015744590835324, 0.025983599381048, 0.0056681223434767, 0.0015775753887499, 0.0267357129968736, 0.0056958412007864, 0.0015806145147553, 0.0276065979560759, 0.0057261979881171, 0.0015836536407607, 0.0285215956442029, 0.0057535427343799, 0.0015866960401029, 0.0294596964430027, 0.0057807249577117, 0.0015897403083657, 0.0303977972418025, 0.0058087749093195, 0.0015927033338751, 0.0313358980406023, 0.0058361904163282, 0.001595583179492, 0.0323026395811684, 0.0058636059233369, 0.0015984585328418003, 0.0332297743813405, 0.0058889215630316, 0.0016013233081595, 0.0342831550873308, 0.0059169913623706, 0.0016041002837735, 0.0353029223252083, 0.0059439435715828, 0.0016068762870961, 0.0363406931929468, 0.0059714253056236, 0.0016096552759677, 0.0374278935583192, 0.0059990295103339, 0.0016123940533226, 0.0385150939236917, 0.0060252345117938, 0.0016151155783187, 0.039692705666872, 0.0060514395132538, 0.0016178371033148, 0.0409167667378377, 0.0060771406887968, 0.0016204910740013, 0.0421956952922563, 0.0061023537028823, 0.0016230765133695, 0.043373827529557, 0.0061275447741458, 0.0016256183401111, 0.0446694421028355, 0.0061522326088891, 0.0016281601668527, 0.0459650566761142, 0.0061769204436323, 0.0016307019935943, 0.0472606712493927, 0.0062016769377712, 0.0016331506133395, 0.0485562858226713, 0.0062265916571652, 0.001635646368427, 0.0498535992869567, 0.0062511046060201, 0.001638068310904, 0.0512644334490164, 0.0062748704476831, 0.0016404902533811, 0.0526752676110761, 0.0062988934436821, 0.0016428707327704, 0.0540714801299771, 0.0063213963095464, 0.001645198031974, 0.0555038222370263, 0.0063429752523705, 0.0016474675773249, 0.0569642266128685, 0.0063672868717695, 0.0016497371226757, 0.0584381022169155, 0.0063902888364037, 0.0016520066680266, 0.0599119778209626, 0.0064127455296187, 0.0016541601291295, 0.0615345571328864, 0.0064350638435488, 0.0016563499726507, 0.0631420096899115, 0.0064566967944517, 0.0016584810332113, 0.0646143822736669, 0.006479021074957, 0.001660600203916, 0.0660510670194804, 0.0065008880531619, 0.0016627111465261, 0.0675286724553261, 0.0065198754250499, 0.001664858036614, 0.0693523138343946, 0.006541678399515, 0.0016669264621654, 0.0708957187086867, 0.0065629375078112, 0.0016689261538578, 0.0727860807489274, 0.0065842775244245, 0.0016706069943617, 0.0743428347846275, 0.0066046654911979, 0.0016726226267073, 0.0758995888203275, 0.0066246206630866, 0.001674638259053, 0.0774563428560276, 0.0066429683617301, 0.0016766855787019, 0.0790130968917277, 0.0066625803562443, 0.0016786222664764, 0.0805698509274278, 0.0066816985039769, 0.0016803103586966, 0.0821266049631278, 0.006700816651709499, 0.0016820474889399, 0.0843468434633577, 0.0067173869797457, 0.0016837846191832, 0.0856406292540275, 0.0067355767713661, 0.0016854246560902, 0.087401809454829, 0.006753558896686, 0.0016870240953348, 0.0889659347832605, 0.0067715410220059, 0.0016886223602974, 0.0905300601116921, 0.006788523141709, 0.0016903277457477, 0.0919009870855618, 0.0068050859175255, 0.0016919465155843, 0.0935746562115302, 0.0068213012192545, 0.0016935506147947, 0.0951455677943792, 0.0068371088937419, 0.0016950393819411, 0.0966924639770202, 0.0068536601558043, 0.0016965281490875, 0.0982393601596614, 0.0068689153635748, 0.0016979575823342, 0.0995096807906246, 0.0068841705713452, 0.001699431439585, 0.101200425017518, 0.006897849188838, 0.0017007725652615, 0.102741925264899, 0.0069104558858096, 0.001702113690938, 0.104101107057649, 0.006925450568134, 0.0017031186954244, 0.105393894420524, 0.0069391998197652, 0.0017045549811786, 0.106711798041901, 0.0069526686778978, 0.0017058749532577, 0.108029701663278, 0.0069660274774112, 0.0017070784637132, 0.109329564900419, 0.0069787031146654, 0.0017085043931475, 0.110625725333162, 0.0069905952507511, 0.0017096368386158, 0.111749857014761, 0.0070024873868368, 0.0017107692840841, 0.112868339514225, 0.0070130350353462, 0.0017117271019292, 0.113865719118395, 0.0070241314499823, 0.0017127793312184, 0.114959500641085, 0.0070352001016107, 0.0017139149597835, 0.116115244715826, 0.0070452793464028, 0.0017148653786644, 0.117270988790566, 0.0070550301791186, 0.0017158157975453, 0.11832286129974, 0.0070638868524464, 0.0017167662164262, 0.119286126963954, 0.0070732006224858, 0.0017175968025501, 0.120170954699872, 0.0070815348352747, 0.0017184625115899, 0.121055782435791, 0.0070893130051908, 0.0017192717200335, 0.121901220322352, 0.0070972863266267, 0.0017200092242027, 0.122699186761964, 0.0071025220436731, 0.001720693236939, 0.1234498821103, 0.0071107980788476, 0.0017213772496753, 0.124123768287835, 0.0071194707276502, 0.0017219471200851, 0.124798169009388, 0.0071256349663164, 0.0017225439746268, 0.125463717532074, 0.0071311495137263, 0.0017231641615175, 0.126078442496827, 0.0071366640611362, 0.001723786041491, 0.126693167461579, 0.0071421786085461, 0.0017243272255705, 0.127220837420962, 0.0071421273648469, 0.0017248314340984, 0.12769491896692, 0.0071477648272356, 0.0017253108876412, 0.128169000512877, 0.0071501260008319, 0.0017257142084958, 0.128461457717985, 0.0071562567628722, 0.0017261559591131, 0.129082897945297, 0.0071584500380771, 0.0017265416672165, 0.129468993397123, 0.0071606433132821, 0.0017268406148627, 0.129687650303603, 0.007162836588487, 0.0017270550388566, 0.129891882844397, 0.007165029863692, 0.0017272021614573, 0.130096422344081, 0.0071659502261144, 0.0017273849025287, 0.130271716928769, 0.0071673474423341, 0.0017274500425659, 0.13039341441668, 0.0071668553225532, 0.001727497699419, 0.13051511190459, 0.0071667143455241, 0.0017275453562721, 0.130383194732741, 0.007166573368495, 0.0017275930131252, 0.13053458832312, 0.007166432391466, 0.0017276406699783, 0.130697982966324, 0.0071634645286584, 0.0017272770719963, 0.130526488491562, 0.0071608847396013, 0.001727136184402, 0.130382525791173, 0.0071594448733453, 0.0017271691554382, 0.130211298494551, 0.007155969245721, 0.0017270004901141, 0.130040071197929, 0.0071524936180967, 0.0017268319857685, 0.129916369443871, 0.0071490179904724, 0.0017266516789144, 0.129739904235892, 0.0071455423628481, 0.0017263148585129, 0.129550694306412, 0.0071420667352238, 0.0017260886533199, 0.129163199635685, 0.0071388499676593, 0.0017256873742814, 0.128796084745393, 0.007133254491379, 0.001725286095243, 0.128431186894076, 0.0071276590150987, 0.0017248848162045, 0.127945915136816, 0.0071223955480981, 0.0017244576346275, 0.127454739223973, 0.0071166658093707, 0.0017239117622864, 0.126941829692927, 0.0071109360706433, 0.0017233466704382, 0.126409699417491, 0.0071042501052809, 0.0017227445422467, 0.125553489868094, 0.0070954888505512, 0.0017221185568929, 0.125062109607101, 0.0070889383958879, 0.0017214763323765, 0.124366264426482, 0.0070802058051686, 0.0017207970701098, 0.123670419245862, 0.0070714732144494, 0.0017200865574934, 0.122885284941031, 0.0070625282645336, 0.0017193343620293, 0.122077016492499, 0.0070538579019291, 0.0017184192454417998, 0.121161132301782, 0.0070438012682151, 0.0017175693599569, 0.120249153658137, 0.0070323391464699, 0.0017168828583452, 0.11967165116326, 0.0070208770247246, 0.0017160293369181, 0.118361218223119, 0.0070102718924585, 0.0017149576811927, 0.117448457715261, 0.006999018399348299, 0.0017140080467523, 0.116411005719947, 0.0069873705603617, 0.0017129653944381, 0.115373553724632, 0.0069750169054996, 0.0017119545266821, 0.114336101729318, 0.0069593357279327, 0.001710830095451, 0.113195094592727, 0.0069462133150268, 0.0017097056642199, 0.112039952468278, 0.0069326247323824, 0.0017085812329888, 0.110805385064949, 0.0069220169621077, 0.0017074568017578, 0.109523086801158, 0.0069069705904039, 0.0017062539270022, 0.108243447874495, 0.0068922641852531, 0.0017050335095214, 0.106963808947833, 0.0068775577801023, 0.0017036202245059998, 0.10568417002117, 0.0068622416729123, 0.0017022445252539, 0.104268301617802, 0.0068470200229689, 0.0017009991260906, 0.10279868060516, 0.0068316531648363, 0.0016996276893112, 0.101428194418917, 0.0068161411435322, 0.0016978638316231, 0.0998774274694785, 0.0067998377624771, 0.001696575175347, 0.0983266605200399, 0.0067831369504309, 0.0016950864138822, 0.0967865633008647, 0.0067657975602715, 0.0016935030604701, 0.0952479451200244, 0.006747653063839, 0.0016920846271996, 0.0937016458814111, 0.0067300424461536, 0.0016903656791153, 0.0920289664680526, 0.0067117483095057, 0.001688646731031, 0.090310916646173, 0.0066922842361842, 0.0016869277829467, 0.0886946981569645, 0.0066728278024707, 0.0016852088348624, 0.0870471247376279, 0.0066538514752735, 0.001683477797099, 0.0853740702108801, 0.0066347590557992, 0.0016817198834115, 0.0836487255159816, 0.0066156666363249, 0.001679961969724, 0.0819233808210831, 0.0065957564412926, 0.0016781371751614, 0.0802232592948711, 0.006575356108985, 0.0016762487745483, 0.0784502556153114, 0.006554955776677399, 0.0016743603739352, 0.0766122034331799, 0.0065330565101503, 0.0016724719733221, 0.0748922423170414, 0.0065118161216871, 0.0016704936123622, 0.0732579469646555, 0.0064913847159112, 0.0016684432077531, 0.0715386633682238, 0.0064688173172085, 0.0016663732406159, 0.0698193797717923, 0.0064449204293501, 0.0016642749860289, 0.0681289980999825, 0.0064239383809611, 0.0016620363573876, 0.0664617563035061, 0.0064009009344162, 0.0016599674697564, 0.0647945145070294, 0.0063778634878713, 0.0016578772667167, 0.0631667953272727, 0.0063543392854293, 0.0016557693480879, 0.0613534810261136, 0.0063308395945119, 0.0016536296217486, 0.0595759844555078, 0.006307339903594499, 0.0016513527418251, 0.0578202396984491, 0.0062832813760205, 0.001648979507887, 0.056064660511227, 0.0062603468376141, 0.0016466164081693998, 0.0546689671351738, 0.0062366418784849, 0.0016443673021459, 0.053052301126763, 0.0062120005522253, 0.0016420024953, 0.0512481338144463, 0.0061870708584188, 0.0016396522083707, 0.0497537614328065, 0.0061621411646124, 0.0016371634636158, 0.0482593890511665, 0.0061378043094437, 0.0016347267153942, 0.0467876250373092, 0.006111115754418, 0.0016322899671727, 0.045342529263299, 0.0060844271993923, 0.0016298472334699, 0.0438974334892889, 0.0060591360586065, 0.0016275811562847, 0.0424523377152787, 0.0060326360234345, 0.0016250230226377, 0.0410193953224242, 0.0060061359882625, 0.0016224320133291, 0.0395641343619497, 0.0059796359530904, 0.0016198554456226, 0.0382215564980974, 0.005952860115658, 0.001617278877916, 0.0369489215976097, 0.0059270967187267, 0.001614542810893, 0.0355767141456201, 0.005899398971925, 0.0016120109268517, 0.0342045066936307, 0.0058727436081572, 0.0016093824528547, 0.0328491587223517, 0.005844929902906101, 0.0016066191886113, 0.0315632213724732, 0.0058167399610339, 0.0016040794253235, 0.0303213145551578, 0.005791063408278, 0.0016013709286757, 0.0292709514834141, 0.0057626928769646, 0.0015985290903217, 0.0280265820949152, 0.0057343223456512, 0.0015956814676082, 0.0269751102011363, 0.0057059518143378, 0.0015928232110408, 0.0258209957104725, 0.0056782539689648, 0.0015899079089816, 0.0247450777202221, 0.0056504592987137, 0.0015869926069224, 0.023648897089107, 0.0056220978854356, 0.0015840525638507, 0.0225754397331075, 0.0055941473586768, 0.0015810991929038, 0.0215927001770893, 0.0055661968319181, 0.0015781458219569, 0.0206121917038675, 0.0055374749355539, 0.0015750540493237, 0.0196316832306456, 0.0055083257930479, 0.0015719743480574, 0.0186727361887591, 0.005478875625439, 0.0015689330485026, 0.0178247559172222, 0.0054497028279515, 0.0015658946282754, 0.0169461754158744, 0.0054203442039192, 0.001562667649691, 0.0160763721437715, 0.0053908332352913, 0.0015595795489656, 0.0152062719418714, 0.0053623246200899, 0.0015564087006857, 0.0143361717399715, 0.0053324632470072, 0.001553193407908, 0.013615828686746599, 0.0053026814094734, 0.0015499503209164, 0.0128442289363222, 0.0052726455385598, 0.0015466481799494, 0.0120726291858979, 0.0052426096676462, 0.0015433460389823, 0.0113567237164084, 0.0052125737967326, 0.0015400872014754, 0.010636119845596, 0.0051852632023929, 0.001536792655322, 0.0099155159747836, 0.0051559338836105, 0.0015334981091685, 0.0092499184795625, 0.0051252648422651, 0.0015300557968705, 0.0085792199502319, 0.00509607302102, 0.0015266792846134, 0.0079197521339223, 0.0050659779294957, 0.0015232747050563, 0.0072536404428304, 0.0050363519438017, 0.0015198624784334, 0.0067787000343988, 0.0050067259581078, 0.0015164524344293, 0.0062045432614582, 0.0049770008768551, 0.0015130230369876, 0.0056305230350587, 0.0049471463853231, 0.001509593639546, 0.0050652939622021, 0.0049172918937911, 0.0015060406979231, 0.0045399287538832, 0.0048873340475595, 0.0015025035370293, 0.0040405603427014, 0.00485759994191, 0.0014989673357409, 0.003554810419661, 0.0048278658362605, 0.0014953671060572, 0.0030689631343808, 0.0047981120231807, 0.0014917668763735, 0.0025831158491006, 0.0047676338058998, 0.0014881915745163002, 0.002183379574323, 0.0047373237683335, 0.0014846801108218, 0.0017017307300915, 0.0047069900515175, 0.0014811611414421, 0.0012777455839441, 0.0046766563347015, 0.0014775510305901, 0.0009114286436032, 0.0046463226178855, 0.0014738559418333, 0.0005325496506067, 0.0046159889010695, 0.0014701608530766, 0.0001536706576101, 0.0045878017844947, 0.0014664657643198, -0.0002281253487771, 0.0045558127294463, 0.0014627699479455, -0.0006151739731098001, 0.0045266698574331, 0.0014590348770567, -0.0009187308777598, 0.0044970435276089, 0.0014552288514765, -0.0012222877824099, 0.0044668587973515, 0.0014514082830493998, -0.0015258446870599, 0.0044374744474635, 0.0014476829033231, -0.0018229072638117, 0.0044079502964584, 0.0014439575235968, -0.0021125425750158, 0.004378531487687, 0.0014401690558798, -0.0023674484550184, 0.0043495358738313, 0.0014362960272512, -0.002598239059294, 0.0043194411777678, 0.0014325076391464, -0.0028263604865131, 0.0042889266685932, 0.0014287130693588, -0.003030167326251, 0.0042599579597409, 0.0014248410274049, -0.0032335993514527, 0.0042288514718145, 0.001420832609301, -0.0034059793135802, 0.0041998553649392, 0.0014169563217249, -0.0035686179878742, 0.0041708592580639, 0.0014129890538135, -0.0037256905921249, 0.0041418631511886, 0.0014092436698039, -0.0038647632018585, 0.0041129426552834, 0.0014052933739141, -0.0039682928965337, 0.0040838674099053, 0.0014013014970207, -0.0040560311880102, 0.0040547660356107, 0.0013973096201273, -0.0041437694794867, 0.0040252875220643, 0.0013931266863785, -0.0042349831431957, 0.0039958090085178, 0.0013892724373389, -0.0043152037668764, 0.0039675695508406, 0.0013853365643368, -0.0044088496171316, 0.0039390545993663, 0.0013813574603203, -0.0044263953899967, 0.0039104139517175, 0.0013773757707361, -0.0044513000989963, 0.0038817733040686, 0.0013733598187601, -0.0044691682519277, 0.0038531326564197, 0.0013693199779545, -0.0044870364048591, 0.0038262911902241, 0.0013652701662098, -0.0044838487593346, 0.0037983228835164, 0.0013612352477177, -0.0044610790771343, 0.0037696536338097, 0.0013571713462559, -0.0044383093949341, 0.0037420469450656, 0.0013531753588969, -0.0044155397127338, 0.0037132874915196, 0.0013489958048398, -0.0042911445642238, 0.0036861195179764, 0.0013448887465478, -0.0042383954166172, 0.0036595765102776, 0.0013407486032411, -0.0041756224106508, 0.0036307614364569, 0.0013366085538675, -0.0041239530198997, 0.0036033567217732, 0.0013324685044939, -0.0040172356917231, 0.0035759520070895, 0.0013283284551204, -0.0039338367361911, 0.0035485472924058, 0.001324071254911, -0.0038473022389771, 0.0035214929952318, 0.0013199477572424, -0.0037607677417631, 0.0034945657883757, 0.0013158242595739, -0.0036604332519609, 0.0034675807507408, 0.0013117095442417, -0.0035482880091246, 0.0034400688958125, 0.001307719426259, -0.0034469121522402, 0.0034142380724294, 0.0013035949311341, -0.003333706318328, 0.0033881586008459, 0.0012993669380849, -0.0032205004844157, 0.0033618728633516, 0.0012951542254013, -0.0031072946505035, 0.0033355956222735, 0.0012909415127176, -0.0029940888165913, 0.0033093251385028, 0.0012867288000339, -0.0028720249724226, 0.003283054654732, 0.0012824666174531, -0.0027535023578718, 0.0032569313546167, 0.0012781989922251, -0.002634979743321, 0.0032308302712144, 0.0012739313669971, -0.0025251587519531, 0.0032052390130892, 0.001269663741769, -0.0024334547605202, 0.0031798748980653, 0.0012654904611305, -0.0023407625359555, 0.0031544073752746, 0.0012613004060582, -0.0022493515333478, 0.0031287721835893, 0.0012570708247041, -0.0021583897700465, 0.0031032526254224, 0.0012528412433499, -0.0020577428904038, 0.0030783890446961, 0.0012486116619957, -0.0019559293578898, 0.0030535740074844, 0.0012443820806415, -0.0018562297240626, 0.0030287589702726, 0.0012400837860729, -0.0017765419946672, 0.003004441483814, 0.0012358658475733, -0.0016832786819406, 0.0029802474633594, 0.0012315973349984, -0.0015959675367638, 0.0029556612577856, 0.0012273246778575, -0.0015122724015718, 0.0029311182884215, 0.0012230753179684, -0.0014464132117833, 0.0029066025207537, 0.0012187334035099, -0.0013583910358094, 0.0028828796735959, 0.0012144133842261, -0.0012768657630978, 0.0028590542249174, 0.0012101076997226, -0.001219613603758, 0.0028350556858095, 0.0012058127769055, -0.0011541378225191, 0.0028111702131817, 0.0012015178540884, -0.0010886620412801, 0.0027872847405539, 0.0011972170546922, -0.0010252756546409, 0.0027646176197906, 0.0011929269405105, -0.0009621205872501, 0.0027418057946235, 0.0011887391568127, -0.0008989655198593, 0.0027189823213579, 0.0011843251519198, -0.0008568113656604, 0.002695786300573, 0.0011799620270084, -0.0008031717003923, 0.0026727667445817, 0.0011756279349261, -0.0007535997082005, 0.0026499991892177, 0.0011712938428438, -0.0007046896577062, 0.0026271527747869, 0.0011669597507615, -0.0006557796072119, 0.0026051090350896, 0.0011626256586793, -0.0006272055538729001, 0.0025830652953923, 0.001158291566597, -0.0005873334929069999, 0.002561141383578, 0.001153930878956, -0.0005289418509236, 0.0025393295501665, 0.0011495370127655, -0.0004988486410776, 0.002517517716755, 0.0011452510361113, -0.0004687554312316, 0.0024952649885583, 0.0011407892964984, -0.0004426804519314, 0.0024748725767112, 0.0011364803996266, -0.0004092101346478, 0.0024534640293945, 0.0011321715027548, -0.0003800400004291, 0.0024319064193313, 0.001127862605883, -0.0003481271668165, 0.0024099952635125, 0.0011235629176845, -0.0003227320015951, 0.0023891340722521, 0.0011192260451868, -0.0002973368363738, 0.0023683299613353, 0.0011148891726891, -0.0002787497340886, 0.0023475258504186, 0.0011105512720884, -0.000258756704509, 0.0023270988298504, 0.0011062121700223, -0.000237218463514, 0.0023066394841322, 0.0011018040913734, -0.0002153076029436, 0.0022861268572602, 0.0010975048100728, -0.0001972052797989, 0.0022661689772077, 0.0010932249851793, -0.0001806582282729, 0.0022462587808157004, 0.0010889590593726, -0.0001670325402975, 0.0022262600594211, 0.0010846931335659, -0.0001534068523222, 0.0022061616633442, 0.0010804274141374, -0.0001422810300442, 0.0021868129545246, 0.001076087770626, -0.0001308301711206, 0.0021675299568098, 0.0010717392023799, -0.00012001069463190001, 0.0021482768642796, 0.0010674810943381, -0.0001124625315315, 0.0021291406272263, 0.0010631785832583, -0.0001055973226161, 0.0021100088532755, 0.0010588995794392, -9.74509995515929e-05, 0.0020901068872914, 0.0010546205756201, -9.25281503163712e-05, 0.0020721698823287, 0.001050341571801, -8.98607808322629e-05, 0.002053468298328, 0.0010459828874652, -8.37380813241858e-05, 0.0020346477289004, 0.0010417171560588, -8.09733975270886e-05, 0.0020164232172626, 0.0010374862142216, -7.82087137299911e-05, 0.0019981987056248, 0.001033214716147, -7.62704810736196e-05, 0.0019800014079202, 0.001028943023297, -7.57435742809512e-05, 0.001961975456897, 0.0010246794172932, -7.67452257810172e-05, 0.0019443870079835, 0.001020451522768, -7.774687728108321e-05, 0.0019268105191669, 0.0010162236282428, -7.87485287811492e-05, 0.0019085108438387003, 0.0010119870864817, -7.97501802812151e-05, 0.0018916317321404, 0.0010077020034287, -8.37557572551294e-05, 0.0018739881390394, 0.0010034257506444, -8.68570172125101e-05, 0.0018565264382033, 0.0009991181044103, -9.22426668058846e-05, 0.0018392304248458, 0.0009950349994503, -9.49844611633423e-05, 0.0018224452247876, 0.0009907336885359, -9.96286571356079e-05, 0.001805659828614, 0.0009865705031592, -0.0001043294965178, 0.0017889662581104, 0.0009824100059494, -0.0001099800808386, 0.0017724101997906, 0.0009782580304595, -0.0001142076572046, 0.0017557162952002, 0.0009740861612367, -0.0001205155461468, 0.0017396692655838, 0.0009699142920139, -0.0001272548912663, 0.0017236222359674, 0.0009657481203857, -0.0001338250413063, 0.001707575206351, 0.0009615608001692, -0.0001412631522464, 0.0016910020724122, 0.0009573500837651, -0.000148802050823, 0.0016754212512197, 0.0009531303421211, -0.0001561158052651, 0.0016598404300272, 0.0009491361454629, -0.0001641604119665, 0.0016442596088346, 0.0009450190016215, -0.000172551488505, 0.0016287828225651, 0.0009409018577801, -0.0001815615091711, 0.0016136529235145, 0.0009367769422012, -0.0001905365411176, 0.0015985080183681, 0.0009326654207645, -0.000199511573064, 0.0015833947706489, 0.0009285538993277, -0.0002091905107707, 0.0015686916755066, 0.0009244423778909, -0.0002173396883685, 0.0015537011179149, 0.0009203391952852, -0.0002268095415497, 0.0015389519518522, 0.0009162711077072, -0.000236279394731, 0.0015242027857895, 0.0009122286734843, -0.0002461514172292, 0.0015094536197267, 0.0009081222093661999, -0.0002560583198465, 0.001494704453664, 0.0009040157452482, -0.0002659652224637, 0.0014812036834556, 0.0008999092811301, -0.000275872125081, 0.001466593212834, 0.0008957942109237, -0.0002857790276982, 0.0014527769628013, 0.0008916874846986, -0.0002959112082523, 0.0014389607127687, 0.0008878487801128, -0.0003063326221174, 0.001425144462736, 0.0008838794184211, -0.0003163957147803, 0.0014115772371928, 0.0008798757804038, -0.0003262309432942, 0.0013979498166122, 0.0008758721423865, -0.0003355738968155, 0.001384301077998, 0.0008718685043692, -0.00034557118563069997, 0.0013706523393837, 0.000867864866352, -0.0003555684744459, 0.001357543005225, 0.0008638612283347, -0.0003656388094563, 0.0013445351825825, 0.0008598575903174001, -0.0003756828460351, 0.0013314076035688, 0.0008558539523001, -0.0003857528874026, 0.0013184359424369, 0.0008519180051985, -0.0003953596798771, 0.0013055472283992, 0.0008478702399297, -0.0004049664723515, 0.0012928322149688, 0.0008439665296466, -0.0004145704401387, 0.0012803269979981, 0.0008400628193635, -0.0004241301945176, 0.0012679235995745, 0.0008361591090804, -0.0004336899488966, 0.0012554457995749, 0.0008322534129772, -0.0004434155348065, 0.0012429967698254, 0.0008283419506065, -0.0004531070725321, 0.0012307884578651, 0.0008244304882358, -0.0004613969669265, 0.0012185423935557, 0.000820519025865, -0.000472564607135, 0.0012063712461267003, 0.0008164914706766, -0.0004813445400705, 0.0011944988736123, 0.0008126895322534, -0.0004901244730059, 0.0011827603073771, 0.0008088661073715, -0.0004990396353392, 0.0011710104564386, 0.0008050377846954, -0.0005080282967776, 0.0011593151069407, 0.00080119643348, -0.0005170169582159, 0.0011478643216481003, 0.0007973556702735, -0.0005254155137586, 0.0011364131969517, 0.0007935555635049, -0.0005336791389201, 0.0011249620722553, 0.0007897554567362, -0.0005424336783563, 0.0011137236719554, 0.0007859553499675, -0.000550688953616, 0.0011024784835809, 0.0007821506470435, -0.0005585424516228, 0.0010915527668544, 0.0007783368186395, -0.0005663959496296, 0.0010806270501279, 0.0007745857627865, -0.0005742494476363, 0.0010697013334014, 0.0007707852445324, -0.0005821029456431, 0.0010590423438471, 0.0007669847262783, -0.0005892534962637, 0.0010481862584787, 0.0007631842080242, -0.0005963340673188, 0.0010377611393315, 0.0007593836897701, -0.0006034240464565, 0.0010270899661474, 0.0007556542002288, -0.0006108927422424, 0.0010165028560292, 0.0007519239956302, -0.0006178449228152, 0.0010061462333762, 0.0007481753169727, -0.000624698468207, 0.0009957896107231, 0.0007445210578828, -0.0006311818570774, 0.0009855542768721, 0.0007408778117887, -0.0006376652459478, 0.0009754025142993, 0.0007371815681844, -0.0006442077918358, 0.00096545422445, 0.0007335201881364, -0.0006504634861546, 0.0009555583183597, 0.0007298588080885, -0.0006567191804735, 0.0009456624122694, 0.0007262122829718, -0.0006628975748204, 0.0009358691726597, 0.0007225516747196, -0.0006687036458927, 0.0009261585343992, 0.0007189547378157, -0.0006748514947569, 0.0009164504580639, 0.0007153578009118, -0.0006800580683616, 0.0009069152835606, 0.0007117532396756, -0.0006856847096316, 0.000897619365885, 0.0007081403619554, -0.0006911585266947, 0.0008883194174116, 0.0007045887318053, -0.0006963908924758, 0.0008790194689382, 0.0007010132754667, -0.0007016232582569, 0.0008697274533714, 0.0006974192272032, -0.0007063671828406, 0.0008605502418093, 0.0006938468878496, -0.0007112426199342, 0.0008514902390092001, 0.0006902745484959, -0.0007162124490768, 0.0008424746841493, 0.0006868009464306, -0.0007207759512742, 0.0008334591292893, 0.0006832305960516, -0.0007256388809568, 0.0008244435744293, 0.0006797702841094, -0.0007306118341986999, 0.0008156007843858, 0.0006763099721672, -0.0007335747617295, 0.0008076002783683, 0.0006728457747122, -0.0007376141213332, 0.0007988284989656, 0.0006693957287435, -0.0007415524091212, 0.0007902288333627, 0.0006659456827748, -0.0007454845879653, 0.0007819790567212, 0.0006624956368060999, -0.0007491997336007, 0.0007737292800796, 0.0006590455908374, -0.0007527785066971, 0.0007654650867975, 0.0006556856635768, -0.0007575181102375, 0.0007571197236884, 0.0006522363723509, -0.0007607947910351, 0.0007487743605794, 0.0006488710232317, -0.0007640210117772, 0.0007405191267771001, 0.0006454971978925, -0.0007671128632643, 0.0007326342520289, 0.000642142255701, -0.0007702047147515, 0.0007246505088741, 0.000638768192654, -0.0007731706213075, 0.0007167840794993, 0.0006354130082288, -0.0007760634828736, 0.0007089176501246, 0.000632072236221, -0.0007788834548238001, 0.0007013368299905, 0.0006287164698903, -0.0007816359706878, 0.0006935317421322, 0.0006253773551246, -0.0007840253361061, 0.0006858901245321, 0.0006222176592449, -0.0007863251372894, 0.0006783483483345, 0.0006187848030336, -0.000788499630209, 0.0006708727700368, 0.0006155288087449, -0.0007910741392716, 0.0006633971917391, 0.0006122728144561, -0.0007929129758065, 0.0006559959806375, 0.0006090168201674, -0.0007954976151945, 0.0006486651563839, 0.0006057720483353, -0.0007978892492392, 0.0006414127191101, 0.0006025337929101, -0.0007997021142587, 0.0006340445877383, 0.0005993174955664, -0.0008012701498348, 0.0006270124868151, 0.0005961019595452, -0.0008028880564883, 0.0006201340207655, 0.0005929190872977, -0.0008045059631418, 0.0006130965585152, 0.0005897528193598, -0.0008061245618602, 0.0006061099906349, 0.0005865777728251, -0.0008075468003953, 0.0005992390713149, 0.0005834619374564, -0.0008089501434771, 0.0005923630225364, 0.0005802949158739, -0.0008101547098451, 0.0005856286529338, 0.0005771278942914, -0.0008113724132408, 0.0005789388772746, 0.0005739691015095, -0.0008123989533424, 0.0005723817693237, 0.0005708666473383, -0.0008134254934439, 0.0005658246613728, 0.0005677812275415, -0.0008143963767246, 0.0005592408344709001, 0.0005647002105543, -0.0008153536009157, 0.0005527431124611, 0.0005616217657136, -0.0008162653579774, 0.0005464184776157, 0.0005585624999465, -0.0008167726552492, 0.0005400874290435, 0.0005555118254067, -0.000817279952521, 0.0005337563804714, 0.0005524673848583, -0.0008177872497929, 0.0005275053590094, 0.0005494569862403, -0.0008186355810639, 0.0005213261880712, 0.0005463971267389, -0.0008191009722659, 0.0005151470171329, 0.0005433544982807, -0.0008192570924287, 0.0005090398155854, 0.0005404015458655, -0.0008205483915346, 0.0005030424545061, 0.0005373918752871, -0.0008205019741321, 0.0004971512954888, 0.0005344278344634, -0.0008204555567296, 0.0004912985900624, 0.0005314709389775, -0.0008204091393272, 0.000485435806992, 0.0005285325398413, -0.000820515917384, 0.0004797312466225, 0.000525596616977, -0.0008204131672158, 0.0004740300801275, 0.0005226596275056, -0.0008202487958326, 0.0004683289136325, 0.0005197184958586, -0.000820172592174, 0.0004627371101444, 0.0005168353184294, -0.0008202351473137, 0.0004570694312546, 0.0005139624578451, -0.0008202098839413, 0.0004515362304235, 0.0005110895972607, -0.0008200346579965, 0.0004460425440069, 0.0005082167366763, -0.0008194516110222, 0.0004406013492809, 0.0005053438760919, -0.0008190992074333, 0.0004351961548622, 0.000502497377767, -0.0008187468038445, 0.0004299016188376, 0.0004996332518505, -0.0008183944002556, 0.0004246070828129, 0.000496725592281, -0.0008180419966667, 0.000419310887016, 0.0004939512087124, -0.0008178522803034, 0.0004140614511259, 0.0004911701243317, -0.0008166827156140001, 0.000408663136318, 0.0004883680168438, -0.0008159337339536, 0.0004036552560865, 0.0004855918987939, -0.0008151199603514, 0.0003986473758549, 0.0004828524080178, -0.0008144411534822, 0.0003936394956234, 0.0004801161990594, -0.0008136414256429, 0.0003886588679834, 0.0004773616475159, -0.0008128416978037, 0.0003836573825059, 0.0004746066965484, -0.0008120419699644, 0.0003787225923271, 0.0004718408430889, -0.0008112422421251, 0.000373851257387, 0.0004691075483394, -0.000810012763665, 0.0003689799224469, 0.0004664127820996, -0.0008090642958939, 0.0003642363768915, 0.0004637197183034, -0.0008081158281229, 0.0003595454287783, 0.0004610366762723, -0.0008071673603518, 0.000354854480665, 0.0004583521647411, -0.0008060485171037, 0.0003501635325518, 0.0004556756783603, -0.0008048747640077, 0.0003456391452819, 0.0004530339324843, -0.0008037122208664, 0.0003411006863558, 0.0004503890261984, -0.000802549677725, 0.0003365622274298, 0.0004477535984153, -0.0008013826748493, 0.0003321972938203, 0.0004451364996459, -0.0008001628070446, 0.00032777477714339995, 0.0004425194008766, -0.0007990960563096, 0.0003233687210494, 0.0004399023021072, -0.0007977069116034, 0.0003191170175744, 0.0004373944805817, -0.0007963177668973, 0.0003146929051007, 0.0004348600551149, -0.0007946457737407, 0.0003104588204585, 0.0004321960374548, -0.0007932425019532, 0.0003062395533705, 0.0004296906538169, -0.0007918041464023, 0.000301990743974, 0.0004271250841614, -0.0007903657908514, 0.0002978161639207, 0.0004246359977922, -0.0007889274353005, 0.0002936995302845, 0.000422137424013, -0.0007875706388447, 0.0002896617508374, 0.0004196101684585, -0.0007861704661253, 0.0002856412150146, 0.000417124013281, -0.0007845328837281, 0.0002815067459587, 0.0004146378581034, -0.0007834287273486, 0.0002775830520137, 0.0004121616625705, -0.000781756302589, 0.0002736357597919, 0.0004097309921627, -0.0007800838778295, 0.0002697036331219, 0.0004073135484667, -0.0007784114530699, 0.0002658764609756, 0.0004048915704265, -0.0007767390283104, 0.0002620492888293, 0.0004024707835978, -0.000775243897694, 0.0002582498075655, 0.0004000499967691, -0.0007738952451412, 0.0002544657754283, 0.0003976692497652, -0.0007720508312286, 0.0002507269102404, 0.000395299631492, -0.0007702064173161, 0.0002470401799515, 0.0003929350190171, -0.0007685424385205, 0.0002433534496626, 0.0003905681031557, -0.0007667830573404, 0.0002396667193736, 0.0003882042120709, -0.0007648940525243, 0.0002359799890847, 0.0003858782987935, -0.0007632912984202, 0.0002325553899786, 0.0003835440787588, -0.0007614531936912, 0.0002290556246761, 0.0003812709895102, -0.0007596114542573, 0.0002254831753452, 0.0003789497350109, -0.0007577446261054, 0.0002220083385777, 0.0003766661078097, -0.0007558894318831, 0.0002185673823452, 0.0003743824806084, -0.0007539654959796, 0.0002151395537204, 0.000372108035128, -0.0007521233478026, 0.00021175948964, 0.0003698580329047, -0.0007503233464227, 0.0002084251524149, 0.0003676074720122, -0.0007484338535104, 0.0002051436400267, 0.0003653601064426, -0.0007465926550505, 0.0002019022713596, 0.00036311274087290005, -0.0007447270055135001, 0.0001986317172214, 0.0003609378354078, -0.0007427908348323, 0.0001954420927438, 0.0003587408450676, -0.0007408260530829, 0.0001921588887662, 0.0003565438547274, -0.0007388612713335, 0.0001890324727832, 0.0003543556384516, -0.0007369536881247, 0.0001860013944584, 0.0003521831008246, -0.0007349399082476, 0.0001829437853216, 0.0003500153177423, -0.0007329987463626, 0.0001798861761848, 0.0003478593670915, -0.0007309456153008, 0.000176828567048, 0.0003457103281948, -0.000728892484239, 0.0001737285138568, 0.0003435959957955, -0.000727103215668, 0.0001709026742294, 0.0003414735193, -0.0007250080861789, 0.0001678502185641, 0.0003393344342789, -0.0007231231206463, 0.000164843824445, 0.000337194023273, -0.0007209462910666, 0.0001620224098514, 0.0003351321765906, -0.0007187694614868, 0.0001591915107592, 0.0003330763369179, -0.000716872394224, 0.0001563520430064, 0.0003310204972452, -0.0007148251141589, 0.0001535220149745, 0.0003289646575724, -0.0007127778340939, 0.0001506919869426, 0.0003269017988737, -0.0007107305540289, 0.0001479428045049, 0.0003248643101188, -0.0007087370390225, 0.00014521037743, 0.0003228283456182, -0.0007065666286598, 0.00014250858037530002, 0.0003207961829181, -0.0007045343883158, 0.0001398607940022, 0.0003187773532782, -0.0007025382358901, 0.0001372201044325, 0.0003167734861404, -0.000700286078091, 0.0001346077101921, 0.0003147606432352, -0.0006982683172335, 0.0001319821667372, 0.0003127700190098, -0.000696250556376, 0.0001293794253228, 0.0003107826412803, -0.0006941028516303, 0.0001268485294779, 0.0003088085318723, -0.0006920897965121, 0.000124307355265, 0.00030683580877119995, -0.0006900805912488, 0.0001218413632755, 0.0003048994663029, -0.0006880688682698, 0.0001193933448235, 0.0003029687373007, -0.0006860577395703001, 0.0001169581404864, 0.0003010380082985, -0.0006837872217948, 0.0001145229361493, 0.0002991146885138, -0.0006812886630339, 0.000112111048424, 0.0002972036677819, -0.0006792703328061, 0.0001097536028487, 0.00029529264705, -0.0006772520025783, 0.000107382297642, 0.0002934102369018, -0.0006752336723505, 0.0001050136840311, 0.0002915085160478, -0.0006732153421227, 0.0001027069905354, 0.0002896328317242, -0.0006711970118949, 0.0001004609957582, 0.0002878031080387, -0.0006691786816671, 9.8182409409435e-05, 0.0002859127766237, -0.0006667990791861, 9.594775200563e-05, 0.0002840647659161, -0.0006648178452851, 9.37130946018253e-05, 0.0002822167552085, -0.000662806665497, 9.14784371980205e-05, 0.0002803739713376, -0.0006608077360399, 8.93139496075192e-05, 0.000278548407679, -0.000658621228505, 8.70725704343152e-05, 0.0002767290310276, -0.0006565283836023, 8.49621510685286e-05, 0.0002749248783057, -0.0006544355386997, 8.2851731702742e-05, 0.0002731232300649, -0.000652342693797, 8.07413123369554e-05, 0.0002713257941958, -0.0006502631677346, 7.86530496302597e-05, 0.000269551410432, -0.000648150985022, 7.66116841480152e-05, 0.0002677770266681, -0.0006460033569195, 7.45390572615141e-05, 0.0002660026429043, -0.0006439275118072, 7.24969894759357e-05, 0.0002642492927216, -0.0006418995465694, 7.04868929054101e-05, 0.0002625055413989, -0.0006398110745237, 6.85095949618852e-05, 0.0002607773719035, -0.0006377254377205, 6.6536926486135e-05, 0.0002590533256648, -0.0006356162365292, 6.45887270341602e-05, 0.0002573048138714, -0.0006335162796811, 6.26144111763336e-05, 0.0002555955565948, -0.0006314509599219, 6.06856528100582e-05, 0.0002538862993181, -0.0006293964733564, 5.88697826254332e-05, 0.0002521910734106, -0.0006273408252405, 5.70478778144581e-05, 0.0002504848683582, -0.0006252597662592, 5.52301105859504e-05, 0.0002488026442401, -0.0006231787072779, 5.33913773696271e-05, 0.0002471263275357, -0.0006210723514843, 5.15822889029398e-05, 0.0002454575661874, -0.0006190697826167, 4.97752185468326e-05, 0.0002437962780823, -0.0006169940489714, 4.80096581169907e-05, 0.000242149322192, -0.0006149950099863, 4.6232195100823295e-05, 0.0002405117206831, -0.0006128809398932, 4.44670228895349e-05, 0.0002388810569915, -0.0006107668698002, 4.27666504650764e-05, 0.0002372654336067, -0.000608662598836, 4.10626869690246e-05, 0.000235649810222, -0.000606559191009, 3.93905627446541e-05, 0.0002340341868373, -0.000604455783182, 3.77184385202834e-05, 0.0002324339072486, -0.0006024892386909, 3.60617941988604e-05, 0.0002308222654803, -0.000600509246617, 3.44456990149065e-05, 0.0002292689166086, -0.0005984353612682, 3.28406512254781e-05, 0.0002277056423418, -0.0005964809867248, 3.12350056089602e-05, 0.0002261186658213, -0.0005944217951737, 2.9705505058184e-05, 0.0002245872266251, -0.0005923626036225, 2.81562570776856e-05, 0.0002230557874289, -0.0005903025530992, 2.66335620294135e-05, 0.0002215243482327, -0.0005882365361251, 2.51108669811415e-05, 0.0002199971557285, -0.0005861596441635, 2.35742177339193e-05, 0.0002184714599507, -0.0005841140321229, 2.20791607927397e-05, 0.000216967723793, -0.0005821242546269, 2.06089769134827e-05, 0.0002154717600876, -0.0005801344771309, 1.91492537273167e-05, 0.000213972896546, -0.000578165697347, 1.77147088470628e-05, 0.0002124985767816, -0.0005761589465654, 1.62801639668088e-05, 0.0002110214254602, -0.0005741334984514, 1.48604891425098e-05, 0.0002095569956941, -0.0005721080503374, 1.34419964498404e-05, 0.0002080925659279, -0.0005701612562991, 1.20983382626954e-05, 0.0002066281361617, -0.0005681783277181999, 1.07130560843651e-05, 0.0002051794971082, -0.0005661953991374, 9.35836932906087e-06, 0.0002037635398324, -0.0005642922523806, 8.02285309342116e-06, 0.0002023475825566, -0.0005622621293538, 6.71463532031401e-06, 0.0002009279552716, -0.0005602320063269, 5.37172192816201e-06, 0.0001995115005179, -0.0005582298843459, 4.09386866231783e-06, 0.0001981109106197, -0.0005562873843537, 2.83658179865251e-06, 0.0001967128485197, -0.0005543309276217, 1.53962223216165e-06, 0.0001953147864196, -0.0005524143306435, 2.96098185609588e-07, 0.0001939619430095, -0.0005505043106975, -9.50681594899478e-07, 0.000192589702649, -0.0005485592543264, -2.17268107863764e-06, 0.0001912333824155, -0.0005466141979553, -3.41292894563257e-06, 0.00018988068095, -0.0005446651872117, -4.62058380683073e-06, 0.0001885275563661, -0.0005427626117405, -5.82823866802878e-06, 0.0001871815817076, -0.0005408651903623, -7.03589352922673e-06, 0.00018585734556619997, -0.0005389680073385, -8.18126260016938e-06, 0.0001845355253721, -0.0005370708243148, -9.360262028554631e-06, 0.00018321100832799998, -0.0005351541578238, -1.04992490237793e-05, 0.0001818864912838, -0.0005333331959165, -1.16251413000938e-05, 0.0001805927662131, -0.0005313626401512, -1.27587183654847e-05, 0.0001793339746812, -0.0005294099997913, -1.3874096239243e-05, 0.0001780395978559, -0.0005276676388588, -1.50138954388461e-05, 0.000176756693314, -0.0005257558261671, -1.61065810053374e-05, 0.0001754737887721, -0.0005238714511768, -1.71939704148186e-05, 0.0001742156138621, -0.0005219870761864, -1.82688013058275e-05, 0.0001729642693437, -0.000520102701196, -1.93131961589366e-05, 0.0001716891603169, -0.0005183097205291, -2.03545213181165e-05, 0.0001704449807466, -0.0005164552437189, -2.13955648023238e-05, 0.0001692164032934, -0.0005145765252728, -2.24304684145972e-05, 0.0001679878258402, -0.0005127252239529, -2.3483070976679e-05, 0.0001667592483871, -0.000510900930704, -2.44570144770062e-05, 0.0001655338689599, -0.0005091059387692, -2.54309579773334e-05, 0.0001643195244717, -0.0005073109468343, -2.64049014776607e-05, 0.0001631214870071, -0.000505495788101, -2.73472580991665e-05, 0.0001619314512245, -0.0005037078072799, -2.8294886852923e-05, 0.0001607404316021, -0.0005019187056094, -2.9235575915307696e-05, 0.00015955046949, -0.0005001296039389, -3.01762649776924e-05, 0.0001583605073779, -0.0004983405022684, -3.11244445891648e-05, 0.000157192242494, -0.0004965311336895, -3.203402956436e-05, 0.0001560310232218, -0.0004947482856928, -3.29436145395551e-05, 0.0001548699559393, -0.0004929951873225, -3.37894858085653e-05, 0.0001537088886568, -0.0004912413084747, -3.46629640722409e-05, 0.0001525625426287, -0.0004894786987537, -3.55387358820739e-05, 0.0001514423962498, -0.0004877160890327, -3.6414507691907e-05, 0.0001502802976803, -0.0004859534793117, -3.72622182774759e-05, 0.000149164918689, -0.0004842469800766, -3.81091701416204e-05, 0.0001480445331008, -0.0004825385118251, -3.89439200485419e-05, 0.0001469185491249, -0.0004807823089841, -3.97609084996352e-05, 0.0001458135458157, -0.0004790544302871, -4.05702930217534e-05, 0.0001447085425064, -0.0004773403540654, -4.13796775438713e-05, 0.0001436099462649, -0.0004755944879831, -4.21803658497698e-05, 0.00014252019768370001, -0.0004737681376628, -4.29729217757853e-05, 0.000141420853577, -0.0004721487307146, -4.37668330461533e-05, 0.0001403395609554, -0.0004704713237288, -4.45284304323664e-05, 0.0001392750592266, -0.000468789530142, -4.52842880064328e-05, 0.0001381939126609, -0.0004670901697517, -4.60344262540155e-05, 0.000137119043515, -0.0004654219163328, -4.67810969307601e-05, 0.0001360784950714, -0.0004637536629139, -4.7529199274809e-05, 0.0001350392669649, -0.000462085409495, -4.8235141780356e-05, 0.0001339957655234, -0.0004603945052094, -4.89463630970017e-05, 0.0001329507224897, -0.0004587537863933, -4.96390481748741e-05, 0.0001319195087755, -0.0004571218664741, -5.03302301885363e-05, 0.0001308882950614, -0.0004554887604567, -5.10208954063402e-05, 0.0001298570813472, -0.0004538540814366, -5.16867589092666e-05, 0.000128825867633, -0.0004522115971839, -5.23783672479968e-05, 0.0001278347274975, -0.00045059377938, -5.30445576874222e-05, 0.0001268374675189, -0.000448965777037, -5.37406107958998e-05, 0.0001258008518395, -0.0004473823430717, -5.43697611272206e-05, 0.000124820075489, -0.0004457954515675, -5.49989114585415e-05, 0.0001238392991386, -0.0004442235602035, -5.56269659936176e-05, 0.0001228585227882, -0.0004426476417739, -5.62456819003234e-05, 0.0001218843641931, -0.0004410717233442, -5.68643978070293e-05, 0.0001209138837976, -0.0004394750696185, -5.74831137137351e-05, 0.0001199434034021, -0.0004378747867044, -5.81007661009646e-05, 0.0001189986716725, -0.0004363363014747, -5.86569402343078e-05, 0.0001180319937142, -0.0004347950182411, -5.92423991967913e-05, 0.0001170733291615, -0.0004332549491808, -5.98305184065061e-05, 0.0001161294053717, -0.0004317037428946, -6.03940219123294e-05, 0.0001151843145347, -0.0004301668505438, -6.09575254181527e-05, 0.0001142459324698, -0.0004286325302018, -6.15167094402477e-05, 0.0001133060750644, -0.0004271128995444, -6.20616343449465e-05, 0.000112390206764, -0.0004256040139625, -6.26065592496452e-05, 0.0001114691614154, -0.0004240979113702, -6.31514841543439e-05, 0.0001105481160669, -0.000422586886949, -6.36964090590425e-05, 0.0001096270707184, -0.0004210540218403, -6.42413339637412e-05, 0.0001087612543311]}, "unit": "T"}]} diff --git a/src/magpylib_material_response/polyline.py b/src/magpylib_material_response/polyline.py index 36e5126..421013a 100644 --- a/src/magpylib_material_response/polyline.py +++ b/src/magpylib_material_response/polyline.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import numpy as np diff --git a/src/magpylib_material_response/utils.py b/src/magpylib_material_response/utils.py index 5fb8e36..aa5f84e 100644 --- a/src/magpylib_material_response/utils.py +++ b/src/magpylib_material_response/utils.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import threading import time import warnings @@ -61,7 +63,7 @@ def timelog(msg, min_log_time=1): if end > min_log_time: logger.opt(colors=True).success( - f"{msg} done" f" 🕑 {round(end, 3)}sec" + f"{msg} done 🕑 {round(end, 3)}sec" ) diff --git a/tests/test_basic.py b/tests/test_basic.py index 4477195..d0d74b4 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import magpylib as magpy import numpy as np diff --git a/tests/test_isotropic_anisotropic.py b/tests/test_isotropic_anisotropic.py index f0c962e..6b8dbd4 100644 --- a/tests/test_isotropic_anisotropic.py +++ b/tests/test_isotropic_anisotropic.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import magpylib as magpy import numpy as np @@ -5,7 +7,6 @@ def test_isotropic_susceptibility(): - cells = 1000 # should be >=1000, otherwise discretization error too large magnet = magpy.magnet.Cuboid(dimension=(1e-3, 1e-3, 1e-3), polarization=(0, 0, 1.1)) @@ -25,7 +26,6 @@ def test_isotropic_susceptibility(): def test_anisotropic_susceptibility(): - cells = 1000 # should be >=1000, otherwise discretization error too large magnet = magpy.magnet.Cuboid(dimension=(1e-3, 1e-3, 1e-3), polarization=(0, 0, 1.1)) @@ -45,7 +45,6 @@ def test_anisotropic_susceptibility(): def test_negative_susceptibility(): - cells = 1000 # should be >=1000, otherwise discretization error too large magnet = magpy.magnet.Cuboid( diff --git a/tests/test_meshing.py b/tests/test_meshing.py index 60f722c..39a4df6 100644 --- a/tests/test_meshing.py +++ b/tests/test_meshing.py @@ -1,5 +1,7 @@ """Test meshing functions""" +from __future__ import annotations + import magpylib as magpy import numpy as np import pytest From bca6daab78bda21cb98c831b9b6400f75ff4f7d4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 13 Apr 2025 09:40:53 +0000 Subject: [PATCH 05/51] style: pre-commit fixes --- src/magpylib_material_response/data/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/magpylib_material_response/data/__init__.py b/src/magpylib_material_response/data/__init__.py index 80d0841..e3a49ba 100644 --- a/src/magpylib_material_response/data/__init__.py +++ b/src/magpylib_material_response/data/__init__.py @@ -4,6 +4,7 @@ from __future__ import annotations + def get_dataset(name): import importlib import json From 4b245a232f80e79093ac05bc543b3c280d00cdb1 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 20:41:07 +0200 Subject: [PATCH 06/51] readd deps --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 679ce26..352cebd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,10 @@ classifiers = [ "Typing :: Typed", ] dynamic = ["version"] -dependencies = [] +dependencies = [ + "magpylib>=5.0", + "loguru>=0.5.0", +] [project.optional-dependencies] test = [ From c73d941674cab150512efd7163cb583919a03586 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 20:49:08 +0200 Subject: [PATCH 07/51] readd doc examples --- docs/index.md | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/docs/index.md b/docs/index.md index 313da37..a2cd34c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,13 +1,22 @@ # magpylib-material-response + +```{include} ../README.md +:start-after: +``` + ```{toctree} +:caption: CONTENT +:glob: true :maxdepth: 2 -:hidden: - ``` -```{include} ../README.md -:start-after: +```{toctree} +:caption: EXAMPLES +:glob: true +:maxdepth: 2 + +examples/* ``` ## Indices and tables From e3f489eafda2e74cf5fd122ba2a5481c5c8d4671 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 13 Apr 2025 18:49:25 +0000 Subject: [PATCH 08/51] style: pre-commit fixes --- docs/index.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index a2cd34c..f540d37 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,5 @@ # magpylib-material-response - ```{include} ../README.md :start-after: ``` From eed217fc487b3132a26afc7a28b0ecdf0ceffcd0 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 20:54:23 +0200 Subject: [PATCH 09/51] readd myst_nb --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 85f7a22..18c8709 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,6 +10,7 @@ extensions = [ "myst_parser", + "myst_nb", "sphinx.ext.autodoc", "sphinx.ext.intersphinx", "sphinx.ext.mathjax", @@ -62,3 +63,5 @@ ] always_document_param_types = True + +suppress_warnings = ["mystnb.unknown_mime_type"] \ No newline at end of file From 15280a972b4bf6cf95c5af10c60766d5a9d04c85 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 13 Apr 2025 18:54:40 +0000 Subject: [PATCH 10/51] style: pre-commit fixes --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 18c8709..c10523e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,4 +64,4 @@ always_document_param_types = True -suppress_warnings = ["mystnb.unknown_mime_type"] \ No newline at end of file +suppress_warnings = ["mystnb.unknown_mime_type"] From 2084ef178d851194371178283ef75904ab57da9c Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 20:56:21 +0200 Subject: [PATCH 11/51] add myst_nb --- pyproject.toml | 1 + uv.lock | 1892 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1893 insertions(+) create mode 100644 uv.lock diff --git a/pyproject.toml b/pyproject.toml index 352cebd..0ebf54e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,6 +45,7 @@ dev = [ ] docs = [ "sphinx>=7.0", + "myst_nb", "myst_parser>=0.13", "sphinx_copybutton", "sphinx_autodoc_typehints", diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..f0005bf --- /dev/null +++ b/uv.lock @@ -0,0 +1,1892 @@ +version = 1 +revision = 1 +requires-python = ">=3.9" +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", + "python_full_version < '3.10'", +] + +[[package]] +name = "alabaster" +version = "0.7.16" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/3e/13dd8e5ed9094e734ac430b5d0eb4f2bb001708a8b7856cbf8e084e001ba/alabaster-0.7.16.tar.gz", hash = "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65", size = 23776 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/34/d4e1c02d3bee589efb5dfa17f88ea08bdb3e3eac12bc475462aec52ed223/alabaster-0.7.16-py3-none-any.whl", hash = "sha256:b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92", size = 13511 }, +] + +[[package]] +name = "alabaster" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929 }, +] + +[[package]] +name = "babel" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/6b/d52e42361e1aa00709585ecc30b3f9684b3ab62530771402248b1b1d6240/babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d", size = 9951852 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2", size = 10182537 }, +] + +[[package]] +name = "beautifulsoup4" +version = "4.13.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "soupsieve" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f0/3c/adaf39ce1fb4afdd21b611e3d530b183bb7759c9b673d60db0e347fd4439/beautifulsoup4-4.13.3.tar.gz", hash = "sha256:1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b", size = 619516 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl", hash = "sha256:99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16", size = 186015 }, +] + +[[package]] +name = "certifi" +version = "2025.1.31" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/58/5580c1716040bc89206c77d8f74418caf82ce519aae06450393ca73475d1/charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de", size = 198013 }, + { url = "https://files.pythonhosted.org/packages/d0/11/00341177ae71c6f5159a08168bcb98c6e6d196d372c94511f9f6c9afe0c6/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176", size = 141285 }, + { url = "https://files.pythonhosted.org/packages/01/09/11d684ea5819e5a8f5100fb0b38cf8d02b514746607934134d31233e02c8/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037", size = 151449 }, + { url = "https://files.pythonhosted.org/packages/08/06/9f5a12939db324d905dc1f70591ae7d7898d030d7662f0d426e2286f68c9/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f", size = 143892 }, + { url = "https://files.pythonhosted.org/packages/93/62/5e89cdfe04584cb7f4d36003ffa2936681b03ecc0754f8e969c2becb7e24/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a", size = 146123 }, + { url = "https://files.pythonhosted.org/packages/a9/ac/ab729a15c516da2ab70a05f8722ecfccc3f04ed7a18e45c75bbbaa347d61/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a", size = 147943 }, + { url = "https://files.pythonhosted.org/packages/03/d2/3f392f23f042615689456e9a274640c1d2e5dd1d52de36ab8f7955f8f050/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247", size = 142063 }, + { url = "https://files.pythonhosted.org/packages/f2/e3/e20aae5e1039a2cd9b08d9205f52142329f887f8cf70da3650326670bddf/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408", size = 150578 }, + { url = "https://files.pythonhosted.org/packages/8d/af/779ad72a4da0aed925e1139d458adc486e61076d7ecdcc09e610ea8678db/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb", size = 153629 }, + { url = "https://files.pythonhosted.org/packages/c2/b6/7aa450b278e7aa92cf7732140bfd8be21f5f29d5bf334ae987c945276639/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d", size = 150778 }, + { url = "https://files.pythonhosted.org/packages/39/f4/d9f4f712d0951dcbfd42920d3db81b00dd23b6ab520419626f4023334056/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807", size = 146453 }, + { url = "https://files.pythonhosted.org/packages/49/2b/999d0314e4ee0cff3cb83e6bc9aeddd397eeed693edb4facb901eb8fbb69/charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f", size = 95479 }, + { url = "https://files.pythonhosted.org/packages/2d/ce/3cbed41cff67e455a386fb5e5dd8906cdda2ed92fbc6297921f2e4419309/charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f", size = 102790 }, + { url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995 }, + { url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471 }, + { url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831 }, + { url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335 }, + { url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862 }, + { url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673 }, + { url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211 }, + { url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039 }, + { url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939 }, + { url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075 }, + { url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340 }, + { url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205 }, + { url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441 }, + { url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105 }, + { url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404 }, + { url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423 }, + { url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184 }, + { url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268 }, + { url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601 }, + { url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098 }, + { url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520 }, + { url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852 }, + { url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488 }, + { url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192 }, + { url = "https://files.pythonhosted.org/packages/b2/21/2b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746/charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35", size = 95550 }, + { url = "https://files.pythonhosted.org/packages/21/5b/1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c/charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f", size = 102785 }, + { url = "https://files.pythonhosted.org/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda", size = 195698 }, + { url = "https://files.pythonhosted.org/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313", size = 140162 }, + { url = "https://files.pythonhosted.org/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9", size = 150263 }, + { url = "https://files.pythonhosted.org/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b", size = 142966 }, + { url = "https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11", size = 144992 }, + { url = "https://files.pythonhosted.org/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f", size = 147162 }, + { url = "https://files.pythonhosted.org/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd", size = 140972 }, + { url = "https://files.pythonhosted.org/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2", size = 149095 }, + { url = "https://files.pythonhosted.org/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886", size = 152668 }, + { url = "https://files.pythonhosted.org/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601", size = 150073 }, + { url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732 }, + { url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391 }, + { url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702 }, + { url = "https://files.pythonhosted.org/packages/7f/c0/b913f8f02836ed9ab32ea643c6fe4d3325c3d8627cf6e78098671cafff86/charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41", size = 197867 }, + { url = "https://files.pythonhosted.org/packages/0f/6c/2bee440303d705b6fb1e2ec789543edec83d32d258299b16eed28aad48e0/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f", size = 141385 }, + { url = "https://files.pythonhosted.org/packages/3d/04/cb42585f07f6f9fd3219ffb6f37d5a39b4fd2db2355b23683060029c35f7/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2", size = 151367 }, + { url = "https://files.pythonhosted.org/packages/54/54/2412a5b093acb17f0222de007cc129ec0e0df198b5ad2ce5699355269dfe/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770", size = 143928 }, + { url = "https://files.pythonhosted.org/packages/5a/6d/e2773862b043dcf8a221342954f375392bb2ce6487bcd9f2c1b34e1d6781/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4", size = 146203 }, + { url = "https://files.pythonhosted.org/packages/b9/f8/ca440ef60d8f8916022859885f231abb07ada3c347c03d63f283bec32ef5/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537", size = 148082 }, + { url = "https://files.pythonhosted.org/packages/04/d2/42fd330901aaa4b805a1097856c2edf5095e260a597f65def493f4b8c833/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496", size = 142053 }, + { url = "https://files.pythonhosted.org/packages/9e/af/3a97a4fa3c53586f1910dadfc916e9c4f35eeada36de4108f5096cb7215f/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78", size = 150625 }, + { url = "https://files.pythonhosted.org/packages/26/ae/23d6041322a3556e4da139663d02fb1b3c59a23ab2e2b56432bd2ad63ded/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7", size = 153549 }, + { url = "https://files.pythonhosted.org/packages/94/22/b8f2081c6a77cb20d97e57e0b385b481887aa08019d2459dc2858ed64871/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6", size = 150945 }, + { url = "https://files.pythonhosted.org/packages/c7/0b/c5ec5092747f801b8b093cdf5610e732b809d6cb11f4c51e35fc28d1d389/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294", size = 146595 }, + { url = "https://files.pythonhosted.org/packages/0c/5a/0b59704c38470df6768aa154cc87b1ac7c9bb687990a1559dc8765e8627e/charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5", size = 95453 }, + { url = "https://files.pythonhosted.org/packages/85/2d/a9790237cb4d01a6d57afadc8573c8b73c609ade20b80f4cda30802009ee/charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765", size = 102811 }, + { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + +[[package]] +name = "contourpy" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f5/f6/31a8f28b4a2a4fa0e01085e542f3081ab0588eff8e589d39d775172c9792/contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4", size = 13464370 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/e0/be8dcc796cfdd96708933e0e2da99ba4bb8f9b2caa9d560a50f3f09a65f3/contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7", size = 265366 }, + { url = "https://files.pythonhosted.org/packages/50/d6/c953b400219443535d412fcbbc42e7a5e823291236bc0bb88936e3cc9317/contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42", size = 249226 }, + { url = "https://files.pythonhosted.org/packages/6f/b4/6fffdf213ffccc28483c524b9dad46bb78332851133b36ad354b856ddc7c/contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7", size = 308460 }, + { url = "https://files.pythonhosted.org/packages/cf/6c/118fc917b4050f0afe07179a6dcbe4f3f4ec69b94f36c9e128c4af480fb8/contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab", size = 347623 }, + { url = "https://files.pythonhosted.org/packages/f9/a4/30ff110a81bfe3abf7b9673284d21ddce8cc1278f6f77393c91199da4c90/contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589", size = 317761 }, + { url = "https://files.pythonhosted.org/packages/99/e6/d11966962b1aa515f5586d3907ad019f4b812c04e4546cc19ebf62b5178e/contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41", size = 322015 }, + { url = "https://files.pythonhosted.org/packages/4d/e3/182383743751d22b7b59c3c753277b6aee3637049197624f333dac5b4c80/contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d", size = 1262672 }, + { url = "https://files.pythonhosted.org/packages/78/53/974400c815b2e605f252c8fb9297e2204347d1755a5374354ee77b1ea259/contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223", size = 1321688 }, + { url = "https://files.pythonhosted.org/packages/52/29/99f849faed5593b2926a68a31882af98afbeac39c7fdf7de491d9c85ec6a/contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f", size = 171145 }, + { url = "https://files.pythonhosted.org/packages/a9/97/3f89bba79ff6ff2b07a3cbc40aa693c360d5efa90d66e914f0ff03b95ec7/contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b", size = 216019 }, + { url = "https://files.pythonhosted.org/packages/b3/1f/9375917786cb39270b0ee6634536c0e22abf225825602688990d8f5c6c19/contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad", size = 266356 }, + { url = "https://files.pythonhosted.org/packages/05/46/9256dd162ea52790c127cb58cfc3b9e3413a6e3478917d1f811d420772ec/contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49", size = 250915 }, + { url = "https://files.pythonhosted.org/packages/e1/5d/3056c167fa4486900dfbd7e26a2fdc2338dc58eee36d490a0ed3ddda5ded/contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66", size = 310443 }, + { url = "https://files.pythonhosted.org/packages/ca/c2/1a612e475492e07f11c8e267ea5ec1ce0d89971be496c195e27afa97e14a/contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081", size = 348548 }, + { url = "https://files.pythonhosted.org/packages/45/cf/2c2fc6bb5874158277b4faf136847f0689e1b1a1f640a36d76d52e78907c/contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1", size = 319118 }, + { url = "https://files.pythonhosted.org/packages/03/33/003065374f38894cdf1040cef474ad0546368eea7e3a51d48b8a423961f8/contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d", size = 323162 }, + { url = "https://files.pythonhosted.org/packages/42/80/e637326e85e4105a802e42959f56cff2cd39a6b5ef68d5d9aee3ea5f0e4c/contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c", size = 1265396 }, + { url = "https://files.pythonhosted.org/packages/7c/3b/8cbd6416ca1bbc0202b50f9c13b2e0b922b64be888f9d9ee88e6cfabfb51/contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb", size = 1324297 }, + { url = "https://files.pythonhosted.org/packages/4d/2c/021a7afaa52fe891f25535506cc861c30c3c4e5a1c1ce94215e04b293e72/contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c", size = 171808 }, + { url = "https://files.pythonhosted.org/packages/8d/2f/804f02ff30a7fae21f98198828d0857439ec4c91a96e20cf2d6c49372966/contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67", size = 217181 }, + { url = "https://files.pythonhosted.org/packages/c9/92/8e0bbfe6b70c0e2d3d81272b58c98ac69ff1a4329f18c73bd64824d8b12e/contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f", size = 267838 }, + { url = "https://files.pythonhosted.org/packages/e3/04/33351c5d5108460a8ce6d512307690b023f0cfcad5899499f5c83b9d63b1/contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6", size = 251549 }, + { url = "https://files.pythonhosted.org/packages/51/3d/aa0fe6ae67e3ef9f178389e4caaaa68daf2f9024092aa3c6032e3d174670/contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639", size = 303177 }, + { url = "https://files.pythonhosted.org/packages/56/c3/c85a7e3e0cab635575d3b657f9535443a6f5d20fac1a1911eaa4bbe1aceb/contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c", size = 341735 }, + { url = "https://files.pythonhosted.org/packages/dd/8d/20f7a211a7be966a53f474bc90b1a8202e9844b3f1ef85f3ae45a77151ee/contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06", size = 314679 }, + { url = "https://files.pythonhosted.org/packages/6e/be/524e377567defac0e21a46e2a529652d165fed130a0d8a863219303cee18/contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09", size = 320549 }, + { url = "https://files.pythonhosted.org/packages/0f/96/fdb2552a172942d888915f3a6663812e9bc3d359d53dafd4289a0fb462f0/contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd", size = 1263068 }, + { url = "https://files.pythonhosted.org/packages/2a/25/632eab595e3140adfa92f1322bf8915f68c932bac468e89eae9974cf1c00/contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35", size = 1322833 }, + { url = "https://files.pythonhosted.org/packages/73/e3/69738782e315a1d26d29d71a550dbbe3eb6c653b028b150f70c1a5f4f229/contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb", size = 172681 }, + { url = "https://files.pythonhosted.org/packages/0c/89/9830ba00d88e43d15e53d64931e66b8792b46eb25e2050a88fec4a0df3d5/contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b", size = 218283 }, + { url = "https://files.pythonhosted.org/packages/53/a1/d20415febfb2267af2d7f06338e82171824d08614084714fb2c1dac9901f/contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3", size = 267879 }, + { url = "https://files.pythonhosted.org/packages/aa/45/5a28a3570ff6218d8bdfc291a272a20d2648104815f01f0177d103d985e1/contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7", size = 251573 }, + { url = "https://files.pythonhosted.org/packages/39/1c/d3f51540108e3affa84f095c8b04f0aa833bb797bc8baa218a952a98117d/contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84", size = 303184 }, + { url = "https://files.pythonhosted.org/packages/00/56/1348a44fb6c3a558c1a3a0cd23d329d604c99d81bf5a4b58c6b71aab328f/contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0", size = 340262 }, + { url = "https://files.pythonhosted.org/packages/2b/23/00d665ba67e1bb666152131da07e0f24c95c3632d7722caa97fb61470eca/contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b", size = 313806 }, + { url = "https://files.pythonhosted.org/packages/5a/42/3cf40f7040bb8362aea19af9a5fb7b32ce420f645dd1590edcee2c657cd5/contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da", size = 319710 }, + { url = "https://files.pythonhosted.org/packages/05/32/f3bfa3fc083b25e1a7ae09197f897476ee68e7386e10404bdf9aac7391f0/contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14", size = 1264107 }, + { url = "https://files.pythonhosted.org/packages/1c/1e/1019d34473a736664f2439542b890b2dc4c6245f5c0d8cdfc0ccc2cab80c/contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8", size = 1322458 }, + { url = "https://files.pythonhosted.org/packages/22/85/4f8bfd83972cf8909a4d36d16b177f7b8bdd942178ea4bf877d4a380a91c/contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294", size = 172643 }, + { url = "https://files.pythonhosted.org/packages/cc/4a/fb3c83c1baba64ba90443626c228ca14f19a87c51975d3b1de308dd2cf08/contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087", size = 218301 }, + { url = "https://files.pythonhosted.org/packages/76/65/702f4064f397821fea0cb493f7d3bc95a5d703e20954dce7d6d39bacf378/contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8", size = 278972 }, + { url = "https://files.pythonhosted.org/packages/80/85/21f5bba56dba75c10a45ec00ad3b8190dbac7fd9a8a8c46c6116c933e9cf/contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b", size = 263375 }, + { url = "https://files.pythonhosted.org/packages/0a/64/084c86ab71d43149f91ab3a4054ccf18565f0a8af36abfa92b1467813ed6/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973", size = 307188 }, + { url = "https://files.pythonhosted.org/packages/3d/ff/d61a4c288dc42da0084b8d9dc2aa219a850767165d7d9a9c364ff530b509/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18", size = 345644 }, + { url = "https://files.pythonhosted.org/packages/ca/aa/00d2313d35ec03f188e8f0786c2fc61f589306e02fdc158233697546fd58/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8", size = 317141 }, + { url = "https://files.pythonhosted.org/packages/8d/6a/b5242c8cb32d87f6abf4f5e3044ca397cb1a76712e3fa2424772e3ff495f/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6", size = 323469 }, + { url = "https://files.pythonhosted.org/packages/6f/a6/73e929d43028a9079aca4bde107494864d54f0d72d9db508a51ff0878593/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2", size = 1260894 }, + { url = "https://files.pythonhosted.org/packages/2b/1e/1e726ba66eddf21c940821df8cf1a7d15cb165f0682d62161eaa5e93dae1/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927", size = 1314829 }, + { url = "https://files.pythonhosted.org/packages/b3/e3/b9f72758adb6ef7397327ceb8b9c39c75711affb220e4f53c745ea1d5a9a/contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8", size = 265518 }, + { url = "https://files.pythonhosted.org/packages/ec/22/19f5b948367ab5260fb41d842c7a78dae645603881ea6bc39738bcfcabf6/contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c", size = 249350 }, + { url = "https://files.pythonhosted.org/packages/26/76/0c7d43263dd00ae21a91a24381b7e813d286a3294d95d179ef3a7b9fb1d7/contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca", size = 309167 }, + { url = "https://files.pythonhosted.org/packages/96/3b/cadff6773e89f2a5a492c1a8068e21d3fccaf1a1c1df7d65e7c8e3ef60ba/contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f", size = 348279 }, + { url = "https://files.pythonhosted.org/packages/e1/86/158cc43aa549d2081a955ab11c6bdccc7a22caacc2af93186d26f5f48746/contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc", size = 318519 }, + { url = "https://files.pythonhosted.org/packages/05/11/57335544a3027e9b96a05948c32e566328e3a2f84b7b99a325b7a06d2b06/contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2", size = 321922 }, + { url = "https://files.pythonhosted.org/packages/0b/e3/02114f96543f4a1b694333b92a6dcd4f8eebbefcc3a5f3bbb1316634178f/contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e", size = 1258017 }, + { url = "https://files.pythonhosted.org/packages/f3/3b/bfe4c81c6d5881c1c643dde6620be0b42bf8aab155976dd644595cfab95c/contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800", size = 1316773 }, + { url = "https://files.pythonhosted.org/packages/f1/17/c52d2970784383cafb0bd918b6fb036d98d96bbf0bc1befb5d1e31a07a70/contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5", size = 171353 }, + { url = "https://files.pythonhosted.org/packages/53/23/db9f69676308e094d3c45f20cc52e12d10d64f027541c995d89c11ad5c75/contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843", size = 211817 }, + { url = "https://files.pythonhosted.org/packages/d1/09/60e486dc2b64c94ed33e58dcfb6f808192c03dfc5574c016218b9b7680dc/contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c", size = 261886 }, + { url = "https://files.pythonhosted.org/packages/19/20/b57f9f7174fcd439a7789fb47d764974ab646fa34d1790551de386457a8e/contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779", size = 311008 }, + { url = "https://files.pythonhosted.org/packages/74/fc/5040d42623a1845d4f17a418e590fd7a79ae8cb2bad2b2f83de63c3bdca4/contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4", size = 215690 }, + { url = "https://files.pythonhosted.org/packages/2b/24/dc3dcd77ac7460ab7e9d2b01a618cb31406902e50e605a8d6091f0a8f7cc/contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0", size = 261894 }, + { url = "https://files.pythonhosted.org/packages/b1/db/531642a01cfec39d1682e46b5457b07cf805e3c3c584ec27e2a6223f8f6c/contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102", size = 311099 }, + { url = "https://files.pythonhosted.org/packages/38/1e/94bda024d629f254143a134eead69e21c836429a2a6ce82209a00ddcb79a/contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb", size = 215838 }, +] + +[[package]] +name = "contourpy" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +dependencies = [ + { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699", size = 13465753 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b2/a3/80937fe3efe0edacf67c9a20b955139a1a622730042c1ea991956f2704ad/contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab", size = 268466 }, + { url = "https://files.pythonhosted.org/packages/82/1d/e3eaebb4aa2d7311528c048350ca8e99cdacfafd99da87bc0a5f8d81f2c2/contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124", size = 253314 }, + { url = "https://files.pythonhosted.org/packages/de/f3/d796b22d1a2b587acc8100ba8c07fb7b5e17fde265a7bb05ab967f4c935a/contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1", size = 312003 }, + { url = "https://files.pythonhosted.org/packages/bf/f5/0e67902bc4394daee8daa39c81d4f00b50e063ee1a46cb3938cc65585d36/contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b", size = 351896 }, + { url = "https://files.pythonhosted.org/packages/1f/d6/e766395723f6256d45d6e67c13bb638dd1fa9dc10ef912dc7dd3dcfc19de/contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453", size = 320814 }, + { url = "https://files.pythonhosted.org/packages/a9/57/86c500d63b3e26e5b73a28b8291a67c5608d4aa87ebd17bd15bb33c178bc/contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3", size = 324969 }, + { url = "https://files.pythonhosted.org/packages/b8/62/bb146d1289d6b3450bccc4642e7f4413b92ebffd9bf2e91b0404323704a7/contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277", size = 1265162 }, + { url = "https://files.pythonhosted.org/packages/18/04/9f7d132ce49a212c8e767042cc80ae390f728060d2eea47058f55b9eff1c/contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595", size = 1324328 }, + { url = "https://files.pythonhosted.org/packages/46/23/196813901be3f97c83ababdab1382e13e0edc0bb4e7b49a7bff15fcf754e/contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697", size = 173861 }, + { url = "https://files.pythonhosted.org/packages/e0/82/c372be3fc000a3b2005061ca623a0d1ecd2eaafb10d9e883a2fc8566e951/contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e", size = 218566 }, + { url = "https://files.pythonhosted.org/packages/12/bb/11250d2906ee2e8b466b5f93e6b19d525f3e0254ac8b445b56e618527718/contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b", size = 269555 }, + { url = "https://files.pythonhosted.org/packages/67/71/1e6e95aee21a500415f5d2dbf037bf4567529b6a4e986594d7026ec5ae90/contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc", size = 254549 }, + { url = "https://files.pythonhosted.org/packages/31/2c/b88986e8d79ac45efe9d8801ae341525f38e087449b6c2f2e6050468a42c/contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86", size = 313000 }, + { url = "https://files.pythonhosted.org/packages/c4/18/65280989b151fcf33a8352f992eff71e61b968bef7432fbfde3a364f0730/contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6", size = 352925 }, + { url = "https://files.pythonhosted.org/packages/f5/c7/5fd0146c93220dbfe1a2e0f98969293b86ca9bc041d6c90c0e065f4619ad/contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85", size = 323693 }, + { url = "https://files.pythonhosted.org/packages/85/fc/7fa5d17daf77306840a4e84668a48ddff09e6bc09ba4e37e85ffc8e4faa3/contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c", size = 326184 }, + { url = "https://files.pythonhosted.org/packages/ef/e7/104065c8270c7397c9571620d3ab880558957216f2b5ebb7e040f85eeb22/contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291", size = 1268031 }, + { url = "https://files.pythonhosted.org/packages/e2/4a/c788d0bdbf32c8113c2354493ed291f924d4793c4a2e85b69e737a21a658/contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f", size = 1325995 }, + { url = "https://files.pythonhosted.org/packages/a6/e6/a2f351a90d955f8b0564caf1ebe4b1451a3f01f83e5e3a414055a5b8bccb/contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375", size = 174396 }, + { url = "https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9", size = 219787 }, + { url = "https://files.pythonhosted.org/packages/37/6b/175f60227d3e7f5f1549fcb374592be311293132207e451c3d7c654c25fb/contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509", size = 271494 }, + { url = "https://files.pythonhosted.org/packages/6b/6a/7833cfae2c1e63d1d8875a50fd23371394f540ce809d7383550681a1fa64/contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc", size = 255444 }, + { url = "https://files.pythonhosted.org/packages/7f/b3/7859efce66eaca5c14ba7619791b084ed02d868d76b928ff56890d2d059d/contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454", size = 307628 }, + { url = "https://files.pythonhosted.org/packages/48/b2/011415f5e3f0a50b1e285a0bf78eb5d92a4df000553570f0851b6e309076/contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80", size = 347271 }, + { url = "https://files.pythonhosted.org/packages/84/7d/ef19b1db0f45b151ac78c65127235239a8cf21a59d1ce8507ce03e89a30b/contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec", size = 318906 }, + { url = "https://files.pythonhosted.org/packages/ba/99/6794142b90b853a9155316c8f470d2e4821fe6f086b03e372aca848227dd/contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9", size = 323622 }, + { url = "https://files.pythonhosted.org/packages/3c/0f/37d2c84a900cd8eb54e105f4fa9aebd275e14e266736778bb5dccbf3bbbb/contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b", size = 1266699 }, + { url = "https://files.pythonhosted.org/packages/3a/8a/deb5e11dc7d9cc8f0f9c8b29d4f062203f3af230ba83c30a6b161a6effc9/contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d", size = 1326395 }, + { url = "https://files.pythonhosted.org/packages/1a/35/7e267ae7c13aaf12322ccc493531f1e7f2eb8fba2927b9d7a05ff615df7a/contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e", size = 175354 }, + { url = "https://files.pythonhosted.org/packages/a1/35/c2de8823211d07e8a79ab018ef03960716c5dff6f4d5bff5af87fd682992/contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d", size = 220971 }, + { url = "https://files.pythonhosted.org/packages/9a/e7/de62050dce687c5e96f946a93546910bc67e483fe05324439e329ff36105/contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2", size = 271548 }, + { url = "https://files.pythonhosted.org/packages/78/4d/c2a09ae014ae984c6bdd29c11e74d3121b25eaa117eca0bb76340efd7e1c/contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5", size = 255576 }, + { url = "https://files.pythonhosted.org/packages/ab/8a/915380ee96a5638bda80cd061ccb8e666bfdccea38d5741cb69e6dbd61fc/contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81", size = 306635 }, + { url = "https://files.pythonhosted.org/packages/29/5c/c83ce09375428298acd4e6582aeb68b1e0d1447f877fa993d9bf6cd3b0a0/contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2", size = 345925 }, + { url = "https://files.pythonhosted.org/packages/29/63/5b52f4a15e80c66c8078a641a3bfacd6e07106835682454647aca1afc852/contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7", size = 318000 }, + { url = "https://files.pythonhosted.org/packages/9a/e2/30ca086c692691129849198659bf0556d72a757fe2769eb9620a27169296/contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c", size = 322689 }, + { url = "https://files.pythonhosted.org/packages/6b/77/f37812ef700f1f185d348394debf33f22d531e714cf6a35d13d68a7003c7/contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3", size = 1268413 }, + { url = "https://files.pythonhosted.org/packages/3f/6d/ce84e79cdd128542ebeb268f84abb4b093af78e7f8ec504676673d2675bc/contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1", size = 1326530 }, + { url = "https://files.pythonhosted.org/packages/72/22/8282f4eae20c73c89bee7a82a19c4e27af9b57bb602ecaa00713d5bdb54d/contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82", size = 175315 }, + { url = "https://files.pythonhosted.org/packages/e3/d5/28bca491f65312b438fbf076589dcde7f6f966b196d900777f5811b9c4e2/contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd", size = 220987 }, + { url = "https://files.pythonhosted.org/packages/2f/24/a4b285d6adaaf9746e4700932f579f1a7b6f9681109f694cfa233ae75c4e/contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30", size = 285001 }, + { url = "https://files.pythonhosted.org/packages/48/1d/fb49a401b5ca4f06ccf467cd6c4f1fd65767e63c21322b29b04ec40b40b9/contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751", size = 268553 }, + { url = "https://files.pythonhosted.org/packages/79/1e/4aef9470d13fd029087388fae750dccb49a50c012a6c8d1d634295caa644/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342", size = 310386 }, + { url = "https://files.pythonhosted.org/packages/b0/34/910dc706ed70153b60392b5305c708c9810d425bde12499c9184a1100888/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c", size = 349806 }, + { url = "https://files.pythonhosted.org/packages/31/3c/faee6a40d66d7f2a87f7102236bf4780c57990dd7f98e5ff29881b1b1344/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f", size = 321108 }, + { url = "https://files.pythonhosted.org/packages/17/69/390dc9b20dd4bb20585651d7316cc3054b7d4a7b4f8b710b2b698e08968d/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda", size = 327291 }, + { url = "https://files.pythonhosted.org/packages/ef/74/7030b67c4e941fe1e5424a3d988080e83568030ce0355f7c9fc556455b01/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242", size = 1263752 }, + { url = "https://files.pythonhosted.org/packages/f0/ed/92d86f183a8615f13f6b9cbfc5d4298a509d6ce433432e21da838b4b63f4/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1", size = 1318403 }, + { url = "https://files.pythonhosted.org/packages/b3/0e/c8e4950c77dcfc897c71d61e56690a0a9df39543d2164040301b5df8e67b/contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1", size = 185117 }, + { url = "https://files.pythonhosted.org/packages/c1/31/1ae946f11dfbd229222e6d6ad8e7bd1891d3d48bde5fbf7a0beb9491f8e3/contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546", size = 236668 }, + { url = "https://files.pythonhosted.org/packages/3e/4f/e56862e64b52b55b5ddcff4090085521fc228ceb09a88390a2b103dccd1b/contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6", size = 265605 }, + { url = "https://files.pythonhosted.org/packages/b0/2e/52bfeeaa4541889f23d8eadc6386b442ee2470bd3cff9baa67deb2dd5c57/contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750", size = 315040 }, + { url = "https://files.pythonhosted.org/packages/52/94/86bfae441707205634d80392e873295652fc313dfd93c233c52c4dc07874/contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53", size = 218221 }, +] + +[[package]] +name = "coverage" +version = "7.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/4f/2251e65033ed2ce1e68f00f91a0294e0f80c80ae8c3ebbe2f12828c4cd53/coverage-7.8.0.tar.gz", hash = "sha256:7a3d62b3b03b4b6fd41a085f3574874cf946cb4604d2b4d3e8dca8cd570ca501", size = 811872 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/01/1c5e6ee4ebaaa5e079db933a9a45f61172048c7efa06648445821a201084/coverage-7.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2931f66991175369859b5fd58529cd4b73582461877ecfd859b6549869287ffe", size = 211379 }, + { url = "https://files.pythonhosted.org/packages/e9/16/a463389f5ff916963471f7c13585e5f38c6814607306b3cb4d6b4cf13384/coverage-7.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:52a523153c568d2c0ef8826f6cc23031dc86cffb8c6aeab92c4ff776e7951b28", size = 211814 }, + { url = "https://files.pythonhosted.org/packages/b8/b1/77062b0393f54d79064dfb72d2da402657d7c569cfbc724d56ac0f9c67ed/coverage-7.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c8a5c139aae4c35cbd7cadca1df02ea8cf28a911534fc1b0456acb0b14234f3", size = 240937 }, + { url = "https://files.pythonhosted.org/packages/d7/54/c7b00a23150083c124e908c352db03bcd33375494a4beb0c6d79b35448b9/coverage-7.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a26c0c795c3e0b63ec7da6efded5f0bc856d7c0b24b2ac84b4d1d7bc578d676", size = 238849 }, + { url = "https://files.pythonhosted.org/packages/f7/ec/a6b7cfebd34e7b49f844788fda94713035372b5200c23088e3bbafb30970/coverage-7.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:821f7bcbaa84318287115d54becb1915eece6918136c6f91045bb84e2f88739d", size = 239986 }, + { url = "https://files.pythonhosted.org/packages/21/8c/c965ecef8af54e6d9b11bfbba85d4f6a319399f5f724798498387f3209eb/coverage-7.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a321c61477ff8ee705b8a5fed370b5710c56b3a52d17b983d9215861e37b642a", size = 239896 }, + { url = "https://files.pythonhosted.org/packages/40/83/070550273fb4c480efa8381735969cb403fa8fd1626d74865bfaf9e4d903/coverage-7.8.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ed2144b8a78f9d94d9515963ed273d620e07846acd5d4b0a642d4849e8d91a0c", size = 238613 }, + { url = "https://files.pythonhosted.org/packages/07/76/fbb2540495b01d996d38e9f8897b861afed356be01160ab4e25471f4fed1/coverage-7.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:042e7841a26498fff7a37d6fda770d17519982f5b7d8bf5278d140b67b61095f", size = 238909 }, + { url = "https://files.pythonhosted.org/packages/a3/7e/76d604db640b7d4a86e5dd730b73e96e12a8185f22b5d0799025121f4dcb/coverage-7.8.0-cp310-cp310-win32.whl", hash = "sha256:f9983d01d7705b2d1f7a95e10bbe4091fabc03a46881a256c2787637b087003f", size = 213948 }, + { url = "https://files.pythonhosted.org/packages/5c/a7/f8ce4aafb4a12ab475b56c76a71a40f427740cf496c14e943ade72e25023/coverage-7.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a570cd9bd20b85d1a0d7b009aaf6c110b52b5755c17be6962f8ccd65d1dbd23", size = 214844 }, + { url = "https://files.pythonhosted.org/packages/2b/77/074d201adb8383addae5784cb8e2dac60bb62bfdf28b2b10f3a3af2fda47/coverage-7.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e7ac22a0bb2c7c49f441f7a6d46c9c80d96e56f5a8bc6972529ed43c8b694e27", size = 211493 }, + { url = "https://files.pythonhosted.org/packages/a9/89/7a8efe585750fe59b48d09f871f0e0c028a7b10722b2172dfe021fa2fdd4/coverage-7.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bf13d564d310c156d1c8e53877baf2993fb3073b2fc9f69790ca6a732eb4bfea", size = 211921 }, + { url = "https://files.pythonhosted.org/packages/e9/ef/96a90c31d08a3f40c49dbe897df4f1fd51fb6583821a1a1c5ee30cc8f680/coverage-7.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5761c70c017c1b0d21b0815a920ffb94a670c8d5d409d9b38857874c21f70d7", size = 244556 }, + { url = "https://files.pythonhosted.org/packages/89/97/dcd5c2ce72cee9d7b0ee8c89162c24972fb987a111b92d1a3d1d19100c61/coverage-7.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ff52d790c7e1628241ffbcaeb33e07d14b007b6eb00a19320c7b8a7024c040", size = 242245 }, + { url = "https://files.pythonhosted.org/packages/b2/7b/b63cbb44096141ed435843bbb251558c8e05cc835c8da31ca6ffb26d44c0/coverage-7.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d39fc4817fd67b3915256af5dda75fd4ee10621a3d484524487e33416c6f3543", size = 244032 }, + { url = "https://files.pythonhosted.org/packages/97/e3/7fa8c2c00a1ef530c2a42fa5df25a6971391f92739d83d67a4ee6dcf7a02/coverage-7.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b44674870709017e4b4036e3d0d6c17f06a0e6d4436422e0ad29b882c40697d2", size = 243679 }, + { url = "https://files.pythonhosted.org/packages/4f/b3/e0a59d8df9150c8a0c0841d55d6568f0a9195692136c44f3d21f1842c8f6/coverage-7.8.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8f99eb72bf27cbb167b636eb1726f590c00e1ad375002230607a844d9e9a2318", size = 241852 }, + { url = "https://files.pythonhosted.org/packages/9b/82/db347ccd57bcef150c173df2ade97976a8367a3be7160e303e43dd0c795f/coverage-7.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b571bf5341ba8c6bc02e0baeaf3b061ab993bf372d982ae509807e7f112554e9", size = 242389 }, + { url = "https://files.pythonhosted.org/packages/21/f6/3f7d7879ceb03923195d9ff294456241ed05815281f5254bc16ef71d6a20/coverage-7.8.0-cp311-cp311-win32.whl", hash = "sha256:e75a2ad7b647fd8046d58c3132d7eaf31b12d8a53c0e4b21fa9c4d23d6ee6d3c", size = 213997 }, + { url = "https://files.pythonhosted.org/packages/28/87/021189643e18ecf045dbe1e2071b2747901f229df302de01c998eeadf146/coverage-7.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:3043ba1c88b2139126fc72cb48574b90e2e0546d4c78b5299317f61b7f718b78", size = 214911 }, + { url = "https://files.pythonhosted.org/packages/aa/12/4792669473297f7973518bec373a955e267deb4339286f882439b8535b39/coverage-7.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bbb5cc845a0292e0c520656d19d7ce40e18d0e19b22cb3e0409135a575bf79fc", size = 211684 }, + { url = "https://files.pythonhosted.org/packages/be/e1/2a4ec273894000ebedd789e8f2fc3813fcaf486074f87fd1c5b2cb1c0a2b/coverage-7.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4dfd9a93db9e78666d178d4f08a5408aa3f2474ad4d0e0378ed5f2ef71640cb6", size = 211935 }, + { url = "https://files.pythonhosted.org/packages/f8/3a/7b14f6e4372786709a361729164125f6b7caf4024ce02e596c4a69bccb89/coverage-7.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f017a61399f13aa6d1039f75cd467be388d157cd81f1a119b9d9a68ba6f2830d", size = 245994 }, + { url = "https://files.pythonhosted.org/packages/54/80/039cc7f1f81dcbd01ea796d36d3797e60c106077e31fd1f526b85337d6a1/coverage-7.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0915742f4c82208ebf47a2b154a5334155ed9ef9fe6190674b8a46c2fb89cb05", size = 242885 }, + { url = "https://files.pythonhosted.org/packages/10/e0/dc8355f992b6cc2f9dcd5ef6242b62a3f73264893bc09fbb08bfcab18eb4/coverage-7.8.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a40fcf208e021eb14b0fac6bdb045c0e0cab53105f93ba0d03fd934c956143a", size = 245142 }, + { url = "https://files.pythonhosted.org/packages/43/1b/33e313b22cf50f652becb94c6e7dae25d8f02e52e44db37a82de9ac357e8/coverage-7.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a1f406a8e0995d654b2ad87c62caf6befa767885301f3b8f6f73e6f3c31ec3a6", size = 244906 }, + { url = "https://files.pythonhosted.org/packages/05/08/c0a8048e942e7f918764ccc99503e2bccffba1c42568693ce6955860365e/coverage-7.8.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:77af0f6447a582fdc7de5e06fa3757a3ef87769fbb0fdbdeba78c23049140a47", size = 243124 }, + { url = "https://files.pythonhosted.org/packages/5b/62/ea625b30623083c2aad645c9a6288ad9fc83d570f9adb913a2abdba562dd/coverage-7.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f2d32f95922927186c6dbc8bc60df0d186b6edb828d299ab10898ef3f40052fe", size = 244317 }, + { url = "https://files.pythonhosted.org/packages/62/cb/3871f13ee1130a6c8f020e2f71d9ed269e1e2124aa3374d2180ee451cee9/coverage-7.8.0-cp312-cp312-win32.whl", hash = "sha256:769773614e676f9d8e8a0980dd7740f09a6ea386d0f383db6821df07d0f08545", size = 214170 }, + { url = "https://files.pythonhosted.org/packages/88/26/69fe1193ab0bfa1eb7a7c0149a066123611baba029ebb448500abd8143f9/coverage-7.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:e5d2b9be5b0693cf21eb4ce0ec8d211efb43966f6657807f6859aab3814f946b", size = 214969 }, + { url = "https://files.pythonhosted.org/packages/f3/21/87e9b97b568e223f3438d93072479c2f36cc9b3f6b9f7094b9d50232acc0/coverage-7.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ac46d0c2dd5820ce93943a501ac5f6548ea81594777ca585bf002aa8854cacd", size = 211708 }, + { url = "https://files.pythonhosted.org/packages/75/be/882d08b28a0d19c9c4c2e8a1c6ebe1f79c9c839eb46d4fca3bd3b34562b9/coverage-7.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:771eb7587a0563ca5bb6f622b9ed7f9d07bd08900f7589b4febff05f469bea00", size = 211981 }, + { url = "https://files.pythonhosted.org/packages/7a/1d/ce99612ebd58082fbe3f8c66f6d8d5694976c76a0d474503fa70633ec77f/coverage-7.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42421e04069fb2cbcbca5a696c4050b84a43b05392679d4068acbe65449b5c64", size = 245495 }, + { url = "https://files.pythonhosted.org/packages/dc/8d/6115abe97df98db6b2bd76aae395fcc941d039a7acd25f741312ced9a78f/coverage-7.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:554fec1199d93ab30adaa751db68acec2b41c5602ac944bb19187cb9a41a8067", size = 242538 }, + { url = "https://files.pythonhosted.org/packages/cb/74/2f8cc196643b15bc096d60e073691dadb3dca48418f08bc78dd6e899383e/coverage-7.8.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aaeb00761f985007b38cf463b1d160a14a22c34eb3f6a39d9ad6fc27cb73008", size = 244561 }, + { url = "https://files.pythonhosted.org/packages/22/70/c10c77cd77970ac965734fe3419f2c98665f6e982744a9bfb0e749d298f4/coverage-7.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:581a40c7b94921fffd6457ffe532259813fc68eb2bdda60fa8cc343414ce3733", size = 244633 }, + { url = "https://files.pythonhosted.org/packages/38/5a/4f7569d946a07c952688debee18c2bb9ab24f88027e3d71fd25dbc2f9dca/coverage-7.8.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f319bae0321bc838e205bf9e5bc28f0a3165f30c203b610f17ab5552cff90323", size = 242712 }, + { url = "https://files.pythonhosted.org/packages/bb/a1/03a43b33f50475a632a91ea8c127f7e35e53786dbe6781c25f19fd5a65f8/coverage-7.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:04bfec25a8ef1c5f41f5e7e5c842f6b615599ca8ba8391ec33a9290d9d2db3a3", size = 244000 }, + { url = "https://files.pythonhosted.org/packages/6a/89/ab6c43b1788a3128e4d1b7b54214548dcad75a621f9d277b14d16a80d8a1/coverage-7.8.0-cp313-cp313-win32.whl", hash = "sha256:dd19608788b50eed889e13a5d71d832edc34fc9dfce606f66e8f9f917eef910d", size = 214195 }, + { url = "https://files.pythonhosted.org/packages/12/12/6bf5f9a8b063d116bac536a7fb594fc35cb04981654cccb4bbfea5dcdfa0/coverage-7.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:a9abbccd778d98e9c7e85038e35e91e67f5b520776781d9a1e2ee9d400869487", size = 214998 }, + { url = "https://files.pythonhosted.org/packages/2a/e6/1e9df74ef7a1c983a9c7443dac8aac37a46f1939ae3499424622e72a6f78/coverage-7.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:18c5ae6d061ad5b3e7eef4363fb27a0576012a7447af48be6c75b88494c6cf25", size = 212541 }, + { url = "https://files.pythonhosted.org/packages/04/51/c32174edb7ee49744e2e81c4b1414ac9df3dacfcb5b5f273b7f285ad43f6/coverage-7.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:95aa6ae391a22bbbce1b77ddac846c98c5473de0372ba5c463480043a07bff42", size = 212767 }, + { url = "https://files.pythonhosted.org/packages/e9/8f/f454cbdb5212f13f29d4a7983db69169f1937e869a5142bce983ded52162/coverage-7.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e013b07ba1c748dacc2a80e69a46286ff145935f260eb8c72df7185bf048f502", size = 256997 }, + { url = "https://files.pythonhosted.org/packages/e6/74/2bf9e78b321216d6ee90a81e5c22f912fc428442c830c4077b4a071db66f/coverage-7.8.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d766a4f0e5aa1ba056ec3496243150698dc0481902e2b8559314368717be82b1", size = 252708 }, + { url = "https://files.pythonhosted.org/packages/92/4d/50d7eb1e9a6062bee6e2f92e78b0998848a972e9afad349b6cdde6fa9e32/coverage-7.8.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad80e6b4a0c3cb6f10f29ae4c60e991f424e6b14219d46f1e7d442b938ee68a4", size = 255046 }, + { url = "https://files.pythonhosted.org/packages/40/9e/71fb4e7402a07c4198ab44fc564d09d7d0ffca46a9fb7b0a7b929e7641bd/coverage-7.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b87eb6fc9e1bb8f98892a2458781348fa37e6925f35bb6ceb9d4afd54ba36c73", size = 256139 }, + { url = "https://files.pythonhosted.org/packages/49/1a/78d37f7a42b5beff027e807c2843185961fdae7fe23aad5a4837c93f9d25/coverage-7.8.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:d1ba00ae33be84066cfbe7361d4e04dec78445b2b88bdb734d0d1cbab916025a", size = 254307 }, + { url = "https://files.pythonhosted.org/packages/58/e9/8fb8e0ff6bef5e170ee19d59ca694f9001b2ec085dc99b4f65c128bb3f9a/coverage-7.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f3c38e4e5ccbdc9198aecc766cedbb134b2d89bf64533973678dfcf07effd883", size = 255116 }, + { url = "https://files.pythonhosted.org/packages/56/b0/d968ecdbe6fe0a863de7169bbe9e8a476868959f3af24981f6a10d2b6924/coverage-7.8.0-cp313-cp313t-win32.whl", hash = "sha256:379fe315e206b14e21db5240f89dc0774bdd3e25c3c58c2c733c99eca96f1ada", size = 214909 }, + { url = "https://files.pythonhosted.org/packages/87/e9/d6b7ef9fecf42dfb418d93544af47c940aa83056c49e6021a564aafbc91f/coverage-7.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2e4b6b87bb0c846a9315e3ab4be2d52fac905100565f4b92f02c445c8799e257", size = 216068 }, + { url = "https://files.pythonhosted.org/packages/60/0c/5da94be095239814bf2730a28cffbc48d6df4304e044f80d39e1ae581997/coverage-7.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa260de59dfb143af06dcf30c2be0b200bed2a73737a8a59248fcb9fa601ef0f", size = 211377 }, + { url = "https://files.pythonhosted.org/packages/d5/cb/b9e93ebf193a0bb89dbcd4f73d7b0e6ecb7c1b6c016671950e25f041835e/coverage-7.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:96121edfa4c2dfdda409877ea8608dd01de816a4dc4a0523356067b305e4e17a", size = 211803 }, + { url = "https://files.pythonhosted.org/packages/78/1a/cdbfe9e1bb14d3afcaf6bb6e1b9ba76c72666e329cd06865bbd241efd652/coverage-7.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b8af63b9afa1031c0ef05b217faa598f3069148eeee6bb24b79da9012423b82", size = 240561 }, + { url = "https://files.pythonhosted.org/packages/59/04/57f1223f26ac018d7ce791bfa65b0c29282de3e041c1cd3ed430cfeac5a5/coverage-7.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89b1f4af0d4afe495cd4787a68e00f30f1d15939f550e869de90a86efa7e0814", size = 238488 }, + { url = "https://files.pythonhosted.org/packages/b7/b1/0f25516ae2a35e265868670384feebe64e7857d9cffeeb3887b0197e2ba2/coverage-7.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94ec0be97723ae72d63d3aa41961a0b9a6f5a53ff599813c324548d18e3b9e8c", size = 239589 }, + { url = "https://files.pythonhosted.org/packages/e0/a4/99d88baac0d1d5a46ceef2dd687aac08fffa8795e4c3e71b6f6c78e14482/coverage-7.8.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8a1d96e780bdb2d0cbb297325711701f7c0b6f89199a57f2049e90064c29f6bd", size = 239366 }, + { url = "https://files.pythonhosted.org/packages/ea/9e/1db89e135feb827a868ed15f8fc857160757f9cab140ffee21342c783ceb/coverage-7.8.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f1d8a2a57b47142b10374902777e798784abf400a004b14f1b0b9eaf1e528ba4", size = 237591 }, + { url = "https://files.pythonhosted.org/packages/1b/6d/ac4d6fdfd0e201bc82d1b08adfacb1e34b40d21a22cdd62cfaf3c1828566/coverage-7.8.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cf60dd2696b457b710dd40bf17ad269d5f5457b96442f7f85722bdb16fa6c899", size = 238572 }, + { url = "https://files.pythonhosted.org/packages/25/5e/917cbe617c230f7f1745b6a13e780a3a1cd1cf328dbcd0fd8d7ec52858cd/coverage-7.8.0-cp39-cp39-win32.whl", hash = "sha256:be945402e03de47ba1872cd5236395e0f4ad635526185a930735f66710e1bd3f", size = 213966 }, + { url = "https://files.pythonhosted.org/packages/bd/93/72b434fe550135869f9ea88dd36068af19afce666db576e059e75177e813/coverage-7.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:90e7fbc6216ecaffa5a880cdc9c77b7418c1dcb166166b78dbc630d07f278cc3", size = 214852 }, + { url = "https://files.pythonhosted.org/packages/c4/f1/1da77bb4c920aa30e82fa9b6ea065da3467977c2e5e032e38e66f1c57ffd/coverage-7.8.0-pp39.pp310.pp311-none-any.whl", hash = "sha256:b8194fb8e50d556d5849753de991d390c5a1edeeba50f68e3a9253fbd8bf8ccd", size = 203443 }, + { url = "https://files.pythonhosted.org/packages/59/f1/4da7717f0063a222db253e7121bd6a56f6fb1ba439dcc36659088793347c/coverage-7.8.0-py3-none-any.whl", hash = "sha256:dbf364b4c5e7bae9250528167dfe40219b62e2d573c854d74be213e1e52069f7", size = 203435 }, +] + +[package.optional-dependencies] +toml = [ + { name = "tomli", marker = "python_full_version <= '3.11'" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321 }, +] + +[[package]] +name = "docutils" +version = "0.21.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408 }, +] + +[[package]] +name = "exceptiongroup" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 }, +] + +[[package]] +name = "fonttools" +version = "4.57.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/03/2d/a9a0b6e3a0cf6bd502e64fc16d894269011930cabfc89aee20d1635b1441/fonttools-4.57.0.tar.gz", hash = "sha256:727ece10e065be2f9dd239d15dd5d60a66e17eac11aea47d447f9f03fdbc42de", size = 3492448 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/17/3ddfd1881878b3f856065130bb603f5922e81ae8a4eb53bce0ea78f765a8/fonttools-4.57.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:babe8d1eb059a53e560e7bf29f8e8f4accc8b6cfb9b5fd10e485bde77e71ef41", size = 2756260 }, + { url = "https://files.pythonhosted.org/packages/26/2b/6957890c52c030b0bf9e0add53e5badab4682c6ff024fac9a332bb2ae063/fonttools-4.57.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:81aa97669cd726349eb7bd43ca540cf418b279ee3caba5e2e295fb4e8f841c02", size = 2284691 }, + { url = "https://files.pythonhosted.org/packages/cc/8e/c043b4081774e5eb06a834cedfdb7d432b4935bc8c4acf27207bdc34dfc4/fonttools-4.57.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0e9618630edd1910ad4f07f60d77c184b2f572c8ee43305ea3265675cbbfe7e", size = 4566077 }, + { url = "https://files.pythonhosted.org/packages/59/bc/e16ae5d9eee6c70830ce11d1e0b23d6018ddfeb28025fda092cae7889c8b/fonttools-4.57.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34687a5d21f1d688d7d8d416cb4c5b9c87fca8a1797ec0d74b9fdebfa55c09ab", size = 4608729 }, + { url = "https://files.pythonhosted.org/packages/25/13/e557bf10bb38e4e4c436d3a9627aadf691bc7392ae460910447fda5fad2b/fonttools-4.57.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69ab81b66ebaa8d430ba56c7a5f9abe0183afefd3a2d6e483060343398b13fb1", size = 4759646 }, + { url = "https://files.pythonhosted.org/packages/bc/c9/5e2952214d4a8e31026bf80beb18187199b7001e60e99a6ce19773249124/fonttools-4.57.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d639397de852f2ccfb3134b152c741406752640a266d9c1365b0f23d7b88077f", size = 4941652 }, + { url = "https://files.pythonhosted.org/packages/df/04/e80242b3d9ec91a1f785d949edc277a13ecfdcfae744de4b170df9ed77d8/fonttools-4.57.0-cp310-cp310-win32.whl", hash = "sha256:cc066cb98b912f525ae901a24cd381a656f024f76203bc85f78fcc9e66ae5aec", size = 2159432 }, + { url = "https://files.pythonhosted.org/packages/33/ba/e858cdca275daf16e03c0362aa43734ea71104c3b356b2100b98543dba1b/fonttools-4.57.0-cp310-cp310-win_amd64.whl", hash = "sha256:7a64edd3ff6a7f711a15bd70b4458611fb240176ec11ad8845ccbab4fe6745db", size = 2203869 }, + { url = "https://files.pythonhosted.org/packages/81/1f/e67c99aa3c6d3d2f93d956627e62a57ae0d35dc42f26611ea2a91053f6d6/fonttools-4.57.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3871349303bdec958360eedb619169a779956503ffb4543bb3e6211e09b647c4", size = 2757392 }, + { url = "https://files.pythonhosted.org/packages/aa/f1/f75770d0ddc67db504850898d96d75adde238c35313409bfcd8db4e4a5fe/fonttools-4.57.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c59375e85126b15a90fcba3443eaac58f3073ba091f02410eaa286da9ad80ed8", size = 2285609 }, + { url = "https://files.pythonhosted.org/packages/f5/d3/bc34e4953cb204bae0c50b527307dce559b810e624a733351a654cfc318e/fonttools-4.57.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967b65232e104f4b0f6370a62eb33089e00024f2ce143aecbf9755649421c683", size = 4873292 }, + { url = "https://files.pythonhosted.org/packages/41/b8/d5933559303a4ab18c799105f4c91ee0318cc95db4a2a09e300116625e7a/fonttools-4.57.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39acf68abdfc74e19de7485f8f7396fa4d2418efea239b7061d6ed6a2510c746", size = 4902503 }, + { url = "https://files.pythonhosted.org/packages/32/13/acb36bfaa316f481153ce78de1fa3926a8bad42162caa3b049e1afe2408b/fonttools-4.57.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9d077f909f2343daf4495ba22bb0e23b62886e8ec7c109ee8234bdbd678cf344", size = 5077351 }, + { url = "https://files.pythonhosted.org/packages/b5/23/6d383a2ca83b7516d73975d8cca9d81a01acdcaa5e4db8579e4f3de78518/fonttools-4.57.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:46370ac47a1e91895d40e9ad48effbe8e9d9db1a4b80888095bc00e7beaa042f", size = 5275067 }, + { url = "https://files.pythonhosted.org/packages/bc/ca/31b8919c6da0198d5d522f1d26c980201378c087bdd733a359a1e7485769/fonttools-4.57.0-cp311-cp311-win32.whl", hash = "sha256:ca2aed95855506b7ae94e8f1f6217b7673c929e4f4f1217bcaa236253055cb36", size = 2158263 }, + { url = "https://files.pythonhosted.org/packages/13/4c/de2612ea2216eb45cfc8eb91a8501615dd87716feaf5f8fb65cbca576289/fonttools-4.57.0-cp311-cp311-win_amd64.whl", hash = "sha256:17168a4670bbe3775f3f3f72d23ee786bd965395381dfbb70111e25e81505b9d", size = 2204968 }, + { url = "https://files.pythonhosted.org/packages/cb/98/d4bc42d43392982eecaaca117d79845734d675219680cd43070bb001bc1f/fonttools-4.57.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:889e45e976c74abc7256d3064aa7c1295aa283c6bb19810b9f8b604dfe5c7f31", size = 2751824 }, + { url = "https://files.pythonhosted.org/packages/1a/62/7168030eeca3742fecf45f31e63b5ef48969fa230a672216b805f1d61548/fonttools-4.57.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0425c2e052a5f1516c94e5855dbda706ae5a768631e9fcc34e57d074d1b65b92", size = 2283072 }, + { url = "https://files.pythonhosted.org/packages/5d/82/121a26d9646f0986ddb35fbbaf58ef791c25b59ecb63ffea2aab0099044f/fonttools-4.57.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44c26a311be2ac130f40a96769264809d3b0cb297518669db437d1cc82974888", size = 4788020 }, + { url = "https://files.pythonhosted.org/packages/5b/26/e0f2fb662e022d565bbe280a3cfe6dafdaabf58889ff86fdef2d31ff1dde/fonttools-4.57.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84c41ba992df5b8d680b89fd84c6a1f2aca2b9f1ae8a67400c8930cd4ea115f6", size = 4859096 }, + { url = "https://files.pythonhosted.org/packages/9e/44/9075e323347b1891cdece4b3f10a3b84a8f4c42a7684077429d9ce842056/fonttools-4.57.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ea1e9e43ca56b0c12440a7c689b1350066595bebcaa83baad05b8b2675129d98", size = 4964356 }, + { url = "https://files.pythonhosted.org/packages/48/28/caa8df32743462fb966be6de6a79d7f30393859636d7732e82efa09fbbb4/fonttools-4.57.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:84fd56c78d431606332a0627c16e2a63d243d0d8b05521257d77c6529abe14d8", size = 5226546 }, + { url = "https://files.pythonhosted.org/packages/f6/46/95ab0f0d2e33c5b1a4fc1c0efe5e286ba9359602c0a9907adb1faca44175/fonttools-4.57.0-cp312-cp312-win32.whl", hash = "sha256:f4376819c1c778d59e0a31db5dc6ede854e9edf28bbfa5b756604727f7f800ac", size = 2146776 }, + { url = "https://files.pythonhosted.org/packages/06/5d/1be5424bb305880e1113631f49a55ea7c7da3a5fe02608ca7c16a03a21da/fonttools-4.57.0-cp312-cp312-win_amd64.whl", hash = "sha256:57e30241524879ea10cdf79c737037221f77cc126a8cdc8ff2c94d4a522504b9", size = 2193956 }, + { url = "https://files.pythonhosted.org/packages/e9/2f/11439f3af51e4bb75ac9598c29f8601aa501902dcedf034bdc41f47dd799/fonttools-4.57.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:408ce299696012d503b714778d89aa476f032414ae57e57b42e4b92363e0b8ef", size = 2739175 }, + { url = "https://files.pythonhosted.org/packages/25/52/677b55a4c0972dc3820c8dba20a29c358197a78229daa2ea219fdb19e5d5/fonttools-4.57.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bbceffc80aa02d9e8b99f2a7491ed8c4a783b2fc4020119dc405ca14fb5c758c", size = 2276583 }, + { url = "https://files.pythonhosted.org/packages/64/79/184555f8fa77b827b9460a4acdbbc0b5952bb6915332b84c615c3a236826/fonttools-4.57.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f022601f3ee9e1f6658ed6d184ce27fa5216cee5b82d279e0f0bde5deebece72", size = 4766437 }, + { url = "https://files.pythonhosted.org/packages/f8/ad/c25116352f456c0d1287545a7aa24e98987b6d99c5b0456c4bd14321f20f/fonttools-4.57.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4dea5893b58d4637ffa925536462ba626f8a1b9ffbe2f5c272cdf2c6ebadb817", size = 4838431 }, + { url = "https://files.pythonhosted.org/packages/53/ae/398b2a833897297797a44f519c9af911c2136eb7aa27d3f1352c6d1129fa/fonttools-4.57.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dff02c5c8423a657c550b48231d0a48d7e2b2e131088e55983cfe74ccc2c7cc9", size = 4951011 }, + { url = "https://files.pythonhosted.org/packages/b7/5d/7cb31c4bc9ffb9a2bbe8b08f8f53bad94aeb158efad75da645b40b62cb73/fonttools-4.57.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:767604f244dc17c68d3e2dbf98e038d11a18abc078f2d0f84b6c24571d9c0b13", size = 5205679 }, + { url = "https://files.pythonhosted.org/packages/4c/e4/6934513ec2c4d3d69ca1bc3bd34d5c69dafcbf68c15388dd3bb062daf345/fonttools-4.57.0-cp313-cp313-win32.whl", hash = "sha256:8e2e12d0d862f43d51e5afb8b9751c77e6bec7d2dc00aad80641364e9df5b199", size = 2144833 }, + { url = "https://files.pythonhosted.org/packages/c4/0d/2177b7fdd23d017bcfb702fd41e47d4573766b9114da2fddbac20dcc4957/fonttools-4.57.0-cp313-cp313-win_amd64.whl", hash = "sha256:f1d6bc9c23356908db712d282acb3eebd4ae5ec6d8b696aa40342b1d84f8e9e3", size = 2190799 }, + { url = "https://files.pythonhosted.org/packages/d2/c7/3bddafbb95447f6fbabdd0b399bf468649321fd4029e356b4f6bd70fbc1b/fonttools-4.57.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7339e6a3283e4b0ade99cade51e97cde3d54cd6d1c3744459e886b66d630c8b3", size = 2758942 }, + { url = "https://files.pythonhosted.org/packages/d4/a2/8dd7771022e365c90e428b1607174c3297d5c0a2cc2cf4cdccb2221945b7/fonttools-4.57.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:05efceb2cb5f6ec92a4180fcb7a64aa8d3385fd49cfbbe459350229d1974f0b1", size = 2285959 }, + { url = "https://files.pythonhosted.org/packages/58/5a/2fd29c5e38b14afe1fae7d472373e66688e7c7a98554252f3cf44371e033/fonttools-4.57.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a97bb05eb24637714a04dee85bdf0ad1941df64fe3b802ee4ac1c284a5f97b7c", size = 4571677 }, + { url = "https://files.pythonhosted.org/packages/bf/30/b77cf81923f1a67ff35d6765a9db4718c0688eb8466c464c96a23a2e28d4/fonttools-4.57.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:541cb48191a19ceb1a2a4b90c1fcebd22a1ff7491010d3cf840dd3a68aebd654", size = 4616644 }, + { url = "https://files.pythonhosted.org/packages/06/33/376605898d8d553134144dff167506a49694cb0e0cf684c14920fbc1e99f/fonttools-4.57.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:cdef9a056c222d0479a1fdb721430f9efd68268014c54e8166133d2643cb05d9", size = 4761314 }, + { url = "https://files.pythonhosted.org/packages/48/e4/e0e48f5bae04bc1a1c6b4fcd7d1ca12b29f1fe74221534b7ff83ed0db8fe/fonttools-4.57.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3cf97236b192a50a4bf200dc5ba405aa78d4f537a2c6e4c624bb60466d5b03bd", size = 4945563 }, + { url = "https://files.pythonhosted.org/packages/61/98/2dacfc6d70f2d93bde1bbf814286be343cb17f53057130ad3b843144dd00/fonttools-4.57.0-cp39-cp39-win32.whl", hash = "sha256:e952c684274a7714b3160f57ec1d78309f955c6335c04433f07d36c5eb27b1f9", size = 2159997 }, + { url = "https://files.pythonhosted.org/packages/93/fa/e61cc236f40d504532d2becf90c297bfed8e40abc0c8b08375fbb83eff29/fonttools-4.57.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2a722c0e4bfd9966a11ff55c895c817158fcce1b2b6700205a376403b546ad9", size = 2204508 }, + { url = "https://files.pythonhosted.org/packages/90/27/45f8957c3132917f91aaa56b700bcfc2396be1253f685bd5c68529b6f610/fonttools-4.57.0-py3-none-any.whl", hash = "sha256:3122c604a675513c68bd24c6a8f9091f1c2376d18e8f5fe5a101746c81b3e98f", size = 1093605 }, +] + +[[package]] +name = "furo" +version = "2024.8.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "beautifulsoup4" }, + { name = "pygments" }, + { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "sphinx-basic-ng" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a0/e2/d351d69a9a9e4badb4a5be062c2d0e87bd9e6c23b5e57337fef14bef34c8/furo-2024.8.6.tar.gz", hash = "sha256:b63e4cee8abfc3136d3bc03a3d45a76a850bada4d6374d24c1716b0e01394a01", size = 1661506 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/48/e791a7ed487dbb9729ef32bb5d1af16693d8925f4366befef54119b2e576/furo-2024.8.6-py3-none-any.whl", hash = "sha256:6cd97c58b47813d3619e63e9081169880fbe331f0ca883c871ff1f3f11814f5c", size = 341333 }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, +] + +[[package]] +name = "imagesize" +version = "1.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a", size = 1280026 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b", size = 8769 }, +] + +[[package]] +name = "importlib-metadata" +version = "8.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/33/08/c1395a292bb23fd03bdf572a1357c5a733d3eecbab877641ceacab23db6e/importlib_metadata-8.6.1.tar.gz", hash = "sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580", size = 55767 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/79/9d/0fb148dc4d6fa4a7dd1d8378168d9b4cd8d4560a6fbf6f0121c5fc34eb68/importlib_metadata-8.6.1-py3-none-any.whl", hash = "sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e", size = 26971 }, +] + +[[package]] +name = "importlib-resources" +version = "6.5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cf/8c/f834fbf984f691b4f7ff60f50b514cc3de5cc08abfc3295564dd89c5e2e7/importlib_resources-6.5.2.tar.gz", hash = "sha256:185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c", size = 44693 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec", size = 37461 }, +] + +[[package]] +name = "iniconfig" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050 }, +] + +[[package]] +name = "jinja2" +version = "3.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899 }, +] + +[[package]] +name = "kiwisolver" +version = "1.4.7" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +sdist = { url = "https://files.pythonhosted.org/packages/85/4d/2255e1c76304cbd60b48cee302b66d1dde4468dc5b1160e4b7cb43778f2a/kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60", size = 97286 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/97/14/fc943dd65268a96347472b4fbe5dcc2f6f55034516f80576cd0dd3a8930f/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6", size = 122440 }, + { url = "https://files.pythonhosted.org/packages/1e/46/e68fed66236b69dd02fcdb506218c05ac0e39745d696d22709498896875d/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17", size = 65758 }, + { url = "https://files.pythonhosted.org/packages/ef/fa/65de49c85838681fc9cb05de2a68067a683717321e01ddafb5b8024286f0/kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9", size = 64311 }, + { url = "https://files.pythonhosted.org/packages/42/9c/cc8d90f6ef550f65443bad5872ffa68f3dee36de4974768628bea7c14979/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9", size = 1637109 }, + { url = "https://files.pythonhosted.org/packages/55/91/0a57ce324caf2ff5403edab71c508dd8f648094b18cfbb4c8cc0fde4a6ac/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c", size = 1617814 }, + { url = "https://files.pythonhosted.org/packages/12/5d/c36140313f2510e20207708adf36ae4919416d697ee0236b0ddfb6fd1050/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599", size = 1400881 }, + { url = "https://files.pythonhosted.org/packages/56/d0/786e524f9ed648324a466ca8df86298780ef2b29c25313d9a4f16992d3cf/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05", size = 1512972 }, + { url = "https://files.pythonhosted.org/packages/67/5a/77851f2f201e6141d63c10a0708e996a1363efaf9e1609ad0441b343763b/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407", size = 1444787 }, + { url = "https://files.pythonhosted.org/packages/06/5f/1f5eaab84355885e224a6fc8d73089e8713dc7e91c121f00b9a1c58a2195/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278", size = 2199212 }, + { url = "https://files.pythonhosted.org/packages/b5/28/9152a3bfe976a0ae21d445415defc9d1cd8614b2910b7614b30b27a47270/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5", size = 2346399 }, + { url = "https://files.pythonhosted.org/packages/26/f6/453d1904c52ac3b400f4d5e240ac5fec25263716723e44be65f4d7149d13/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad", size = 2308688 }, + { url = "https://files.pythonhosted.org/packages/5a/9a/d4968499441b9ae187e81745e3277a8b4d7c60840a52dc9d535a7909fac3/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895", size = 2445493 }, + { url = "https://files.pythonhosted.org/packages/07/c9/032267192e7828520dacb64dfdb1d74f292765f179e467c1cba97687f17d/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3", size = 2262191 }, + { url = "https://files.pythonhosted.org/packages/6c/ad/db0aedb638a58b2951da46ddaeecf204be8b4f5454df020d850c7fa8dca8/kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc", size = 46644 }, + { url = "https://files.pythonhosted.org/packages/12/ca/d0f7b7ffbb0be1e7c2258b53554efec1fd652921f10d7d85045aff93ab61/kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c", size = 55877 }, + { url = "https://files.pythonhosted.org/packages/97/6c/cfcc128672f47a3e3c0d918ecb67830600078b025bfc32d858f2e2d5c6a4/kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a", size = 48347 }, + { url = "https://files.pythonhosted.org/packages/e9/44/77429fa0a58f941d6e1c58da9efe08597d2e86bf2b2cce6626834f49d07b/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54", size = 122442 }, + { url = "https://files.pythonhosted.org/packages/e5/20/8c75caed8f2462d63c7fd65e16c832b8f76cda331ac9e615e914ee80bac9/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95", size = 65762 }, + { url = "https://files.pythonhosted.org/packages/f4/98/fe010f15dc7230f45bc4cf367b012d651367fd203caaa992fd1f5963560e/kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935", size = 64319 }, + { url = "https://files.pythonhosted.org/packages/8b/1b/b5d618f4e58c0675654c1e5051bcf42c776703edb21c02b8c74135541f60/kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb", size = 1334260 }, + { url = "https://files.pythonhosted.org/packages/b8/01/946852b13057a162a8c32c4c8d2e9ed79f0bb5d86569a40c0b5fb103e373/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02", size = 1426589 }, + { url = "https://files.pythonhosted.org/packages/70/d1/c9f96df26b459e15cf8a965304e6e6f4eb291e0f7a9460b4ad97b047561e/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51", size = 1541080 }, + { url = "https://files.pythonhosted.org/packages/d3/73/2686990eb8b02d05f3de759d6a23a4ee7d491e659007dd4c075fede4b5d0/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052", size = 1470049 }, + { url = "https://files.pythonhosted.org/packages/a7/4b/2db7af3ed3af7c35f388d5f53c28e155cd402a55432d800c543dc6deb731/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18", size = 1426376 }, + { url = "https://files.pythonhosted.org/packages/05/83/2857317d04ea46dc5d115f0df7e676997bbd968ced8e2bd6f7f19cfc8d7f/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545", size = 2222231 }, + { url = "https://files.pythonhosted.org/packages/0d/b5/866f86f5897cd4ab6d25d22e403404766a123f138bd6a02ecb2cdde52c18/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b", size = 2368634 }, + { url = "https://files.pythonhosted.org/packages/c1/ee/73de8385403faba55f782a41260210528fe3273d0cddcf6d51648202d6d0/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36", size = 2329024 }, + { url = "https://files.pythonhosted.org/packages/a1/e7/cd101d8cd2cdfaa42dc06c433df17c8303d31129c9fdd16c0ea37672af91/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3", size = 2468484 }, + { url = "https://files.pythonhosted.org/packages/e1/72/84f09d45a10bc57a40bb58b81b99d8f22b58b2040c912b7eb97ebf625bf2/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523", size = 2284078 }, + { url = "https://files.pythonhosted.org/packages/d2/d4/71828f32b956612dc36efd7be1788980cb1e66bfb3706e6dec9acad9b4f9/kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d", size = 46645 }, + { url = "https://files.pythonhosted.org/packages/a1/65/d43e9a20aabcf2e798ad1aff6c143ae3a42cf506754bcb6a7ed8259c8425/kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b", size = 56022 }, + { url = "https://files.pythonhosted.org/packages/35/b3/9f75a2e06f1b4ca00b2b192bc2b739334127d27f1d0625627ff8479302ba/kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376", size = 48536 }, + { url = "https://files.pythonhosted.org/packages/97/9c/0a11c714cf8b6ef91001c8212c4ef207f772dd84540104952c45c1f0a249/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2", size = 121808 }, + { url = "https://files.pythonhosted.org/packages/f2/d8/0fe8c5f5d35878ddd135f44f2af0e4e1d379e1c7b0716f97cdcb88d4fd27/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a", size = 65531 }, + { url = "https://files.pythonhosted.org/packages/80/c5/57fa58276dfdfa612241d640a64ca2f76adc6ffcebdbd135b4ef60095098/kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee", size = 63894 }, + { url = "https://files.pythonhosted.org/packages/8b/e9/26d3edd4c4ad1c5b891d8747a4f81b1b0aba9fb9721de6600a4adc09773b/kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640", size = 1369296 }, + { url = "https://files.pythonhosted.org/packages/b6/67/3f4850b5e6cffb75ec40577ddf54f7b82b15269cc5097ff2e968ee32ea7d/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f", size = 1461450 }, + { url = "https://files.pythonhosted.org/packages/52/be/86cbb9c9a315e98a8dc6b1d23c43cffd91d97d49318854f9c37b0e41cd68/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483", size = 1579168 }, + { url = "https://files.pythonhosted.org/packages/0f/00/65061acf64bd5fd34c1f4ae53f20b43b0a017a541f242a60b135b9d1e301/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258", size = 1507308 }, + { url = "https://files.pythonhosted.org/packages/21/e4/c0b6746fd2eb62fe702118b3ca0cb384ce95e1261cfada58ff693aeec08a/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e", size = 1464186 }, + { url = "https://files.pythonhosted.org/packages/0a/0f/529d0a9fffb4d514f2782c829b0b4b371f7f441d61aa55f1de1c614c4ef3/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107", size = 2247877 }, + { url = "https://files.pythonhosted.org/packages/d1/e1/66603ad779258843036d45adcbe1af0d1a889a07af4635f8b4ec7dccda35/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948", size = 2404204 }, + { url = "https://files.pythonhosted.org/packages/8d/61/de5fb1ca7ad1f9ab7970e340a5b833d735df24689047de6ae71ab9d8d0e7/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038", size = 2352461 }, + { url = "https://files.pythonhosted.org/packages/ba/d2/0edc00a852e369827f7e05fd008275f550353f1f9bcd55db9363d779fc63/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383", size = 2501358 }, + { url = "https://files.pythonhosted.org/packages/84/15/adc15a483506aec6986c01fb7f237c3aec4d9ed4ac10b756e98a76835933/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520", size = 2314119 }, + { url = "https://files.pythonhosted.org/packages/36/08/3a5bb2c53c89660863a5aa1ee236912269f2af8762af04a2e11df851d7b2/kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b", size = 46367 }, + { url = "https://files.pythonhosted.org/packages/19/93/c05f0a6d825c643779fc3c70876bff1ac221f0e31e6f701f0e9578690d70/kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb", size = 55884 }, + { url = "https://files.pythonhosted.org/packages/d2/f9/3828d8f21b6de4279f0667fb50a9f5215e6fe57d5ec0d61905914f5b6099/kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a", size = 48528 }, + { url = "https://files.pythonhosted.org/packages/c4/06/7da99b04259b0f18b557a4effd1b9c901a747f7fdd84cf834ccf520cb0b2/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e", size = 121913 }, + { url = "https://files.pythonhosted.org/packages/97/f5/b8a370d1aa593c17882af0a6f6755aaecd643640c0ed72dcfd2eafc388b9/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6", size = 65627 }, + { url = "https://files.pythonhosted.org/packages/2a/fc/6c0374f7503522539e2d4d1b497f5ebad3f8ed07ab51aed2af988dd0fb65/kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750", size = 63888 }, + { url = "https://files.pythonhosted.org/packages/bf/3e/0b7172793d0f41cae5c923492da89a2ffcd1adf764c16159ca047463ebd3/kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d", size = 1369145 }, + { url = "https://files.pythonhosted.org/packages/77/92/47d050d6f6aced2d634258123f2688fbfef8ded3c5baf2c79d94d91f1f58/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379", size = 1461448 }, + { url = "https://files.pythonhosted.org/packages/9c/1b/8f80b18e20b3b294546a1adb41701e79ae21915f4175f311a90d042301cf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c", size = 1578750 }, + { url = "https://files.pythonhosted.org/packages/a4/fe/fe8e72f3be0a844f257cadd72689c0848c6d5c51bc1d60429e2d14ad776e/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34", size = 1507175 }, + { url = "https://files.pythonhosted.org/packages/39/fa/cdc0b6105d90eadc3bee525fecc9179e2b41e1ce0293caaf49cb631a6aaf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1", size = 1463963 }, + { url = "https://files.pythonhosted.org/packages/6e/5c/0c03c4e542720c6177d4f408e56d1c8315899db72d46261a4e15b8b33a41/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f", size = 2248220 }, + { url = "https://files.pythonhosted.org/packages/3d/ee/55ef86d5a574f4e767df7da3a3a7ff4954c996e12d4fbe9c408170cd7dcc/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b", size = 2404463 }, + { url = "https://files.pythonhosted.org/packages/0f/6d/73ad36170b4bff4825dc588acf4f3e6319cb97cd1fb3eb04d9faa6b6f212/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27", size = 2352842 }, + { url = "https://files.pythonhosted.org/packages/0b/16/fa531ff9199d3b6473bb4d0f47416cdb08d556c03b8bc1cccf04e756b56d/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a", size = 2501635 }, + { url = "https://files.pythonhosted.org/packages/78/7e/aa9422e78419db0cbe75fb86d8e72b433818f2e62e2e394992d23d23a583/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee", size = 2314556 }, + { url = "https://files.pythonhosted.org/packages/a8/b2/15f7f556df0a6e5b3772a1e076a9d9f6c538ce5f05bd590eca8106508e06/kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07", size = 46364 }, + { url = "https://files.pythonhosted.org/packages/0b/db/32e897e43a330eee8e4770bfd2737a9584b23e33587a0812b8e20aac38f7/kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76", size = 55887 }, + { url = "https://files.pythonhosted.org/packages/c8/a4/df2bdca5270ca85fd25253049eb6708d4127be2ed0e5c2650217450b59e9/kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650", size = 48530 }, + { url = "https://files.pythonhosted.org/packages/11/88/37ea0ea64512997b13d69772db8dcdc3bfca5442cda3a5e4bb943652ee3e/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd", size = 122449 }, + { url = "https://files.pythonhosted.org/packages/4e/45/5a5c46078362cb3882dcacad687c503089263c017ca1241e0483857791eb/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583", size = 65757 }, + { url = "https://files.pythonhosted.org/packages/8a/be/a6ae58978772f685d48dd2e84460937761c53c4bbd84e42b0336473d9775/kiwisolver-1.4.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417", size = 64312 }, + { url = "https://files.pythonhosted.org/packages/f4/04/18ef6f452d311e1e1eb180c9bf5589187fa1f042db877e6fe443ef10099c/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904", size = 1626966 }, + { url = "https://files.pythonhosted.org/packages/21/b1/40655f6c3fa11ce740e8a964fa8e4c0479c87d6a7944b95af799c7a55dfe/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a", size = 1607044 }, + { url = "https://files.pythonhosted.org/packages/fd/93/af67dbcfb9b3323bbd2c2db1385a7139d8f77630e4a37bb945b57188eb2d/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8", size = 1391879 }, + { url = "https://files.pythonhosted.org/packages/40/6f/d60770ef98e77b365d96061d090c0cd9e23418121c55fff188fa4bdf0b54/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2", size = 1504751 }, + { url = "https://files.pythonhosted.org/packages/fa/3a/5f38667d313e983c432f3fcd86932177519ed8790c724e07d77d1de0188a/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88", size = 1436990 }, + { url = "https://files.pythonhosted.org/packages/cb/3b/1520301a47326e6a6043b502647e42892be33b3f051e9791cc8bb43f1a32/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde", size = 2191122 }, + { url = "https://files.pythonhosted.org/packages/cf/c4/eb52da300c166239a2233f1f9c4a1b767dfab98fae27681bfb7ea4873cb6/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c", size = 2338126 }, + { url = "https://files.pythonhosted.org/packages/1a/cb/42b92fd5eadd708dd9107c089e817945500685f3437ce1fd387efebc6d6e/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2", size = 2298313 }, + { url = "https://files.pythonhosted.org/packages/4f/eb/be25aa791fe5fc75a8b1e0c965e00f942496bc04635c9aae8035f6b76dcd/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb", size = 2437784 }, + { url = "https://files.pythonhosted.org/packages/c5/22/30a66be7f3368d76ff95689e1c2e28d382383952964ab15330a15d8bfd03/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327", size = 2253988 }, + { url = "https://files.pythonhosted.org/packages/35/d3/5f2ecb94b5211c8a04f218a76133cc8d6d153b0f9cd0b45fad79907f0689/kiwisolver-1.4.7-cp39-cp39-win32.whl", hash = "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644", size = 46980 }, + { url = "https://files.pythonhosted.org/packages/ef/17/cd10d020578764ea91740204edc6b3236ed8106228a46f568d716b11feb2/kiwisolver-1.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4", size = 55847 }, + { url = "https://files.pythonhosted.org/packages/91/84/32232502020bd78d1d12be7afde15811c64a95ed1f606c10456db4e4c3ac/kiwisolver-1.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f", size = 48494 }, + { url = "https://files.pythonhosted.org/packages/ac/59/741b79775d67ab67ced9bb38552da688c0305c16e7ee24bba7a2be253fb7/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643", size = 59491 }, + { url = "https://files.pythonhosted.org/packages/58/cc/fb239294c29a5656e99e3527f7369b174dd9cc7c3ef2dea7cb3c54a8737b/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706", size = 57648 }, + { url = "https://files.pythonhosted.org/packages/3b/ef/2f009ac1f7aab9f81efb2d837301d255279d618d27b6015780115ac64bdd/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6", size = 84257 }, + { url = "https://files.pythonhosted.org/packages/81/e1/c64f50987f85b68b1c52b464bb5bf73e71570c0f7782d626d1eb283ad620/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2", size = 80906 }, + { url = "https://files.pythonhosted.org/packages/fd/71/1687c5c0a0be2cee39a5c9c389e546f9c6e215e46b691d00d9f646892083/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4", size = 79951 }, + { url = "https://files.pythonhosted.org/packages/ea/8b/d7497df4a1cae9367adf21665dd1f896c2a7aeb8769ad77b662c5e2bcce7/kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a", size = 55715 }, + { url = "https://files.pythonhosted.org/packages/d5/df/ce37d9b26f07ab90880923c94d12a6ff4d27447096b4c849bfc4339ccfdf/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39", size = 58666 }, + { url = "https://files.pythonhosted.org/packages/b0/d3/e4b04f43bc629ac8e186b77b2b1a251cdfa5b7610fa189dc0db622672ce6/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e", size = 57088 }, + { url = "https://files.pythonhosted.org/packages/30/1c/752df58e2d339e670a535514d2db4fe8c842ce459776b8080fbe08ebb98e/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608", size = 84321 }, + { url = "https://files.pythonhosted.org/packages/f0/f8/fe6484e847bc6e238ec9f9828089fb2c0bb53f2f5f3a79351fde5b565e4f/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674", size = 80776 }, + { url = "https://files.pythonhosted.org/packages/9b/57/d7163c0379f250ef763aba85330a19feefb5ce6cb541ade853aaba881524/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225", size = 79984 }, + { url = "https://files.pythonhosted.org/packages/8c/95/4a103776c265d13b3d2cd24fb0494d4e04ea435a8ef97e1b2c026d43250b/kiwisolver-1.4.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0", size = 55811 }, +] + +[[package]] +name = "kiwisolver" +version = "1.4.8" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/5f/4d8e9e852d98ecd26cdf8eaf7ed8bc33174033bba5e07001b289f07308fd/kiwisolver-1.4.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:88c6f252f6816a73b1f8c904f7bbe02fd67c09a69f7cb8a0eecdbf5ce78e63db", size = 124623 }, + { url = "https://files.pythonhosted.org/packages/1d/70/7f5af2a18a76fe92ea14675f8bd88ce53ee79e37900fa5f1a1d8e0b42998/kiwisolver-1.4.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c72941acb7b67138f35b879bbe85be0f6c6a70cab78fe3ef6db9c024d9223e5b", size = 66720 }, + { url = "https://files.pythonhosted.org/packages/c6/13/e15f804a142353aefd089fadc8f1d985561a15358c97aca27b0979cb0785/kiwisolver-1.4.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce2cf1e5688edcb727fdf7cd1bbd0b6416758996826a8be1d958f91880d0809d", size = 65413 }, + { url = "https://files.pythonhosted.org/packages/ce/6d/67d36c4d2054e83fb875c6b59d0809d5c530de8148846b1370475eeeece9/kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c8bf637892dc6e6aad2bc6d4d69d08764166e5e3f69d469e55427b6ac001b19d", size = 1650826 }, + { url = "https://files.pythonhosted.org/packages/de/c6/7b9bb8044e150d4d1558423a1568e4f227193662a02231064e3824f37e0a/kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:034d2c891f76bd3edbdb3ea11140d8510dca675443da7304205a2eaa45d8334c", size = 1628231 }, + { url = "https://files.pythonhosted.org/packages/b6/38/ad10d437563063eaaedbe2c3540a71101fc7fb07a7e71f855e93ea4de605/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d47b28d1dfe0793d5e96bce90835e17edf9a499b53969b03c6c47ea5985844c3", size = 1408938 }, + { url = "https://files.pythonhosted.org/packages/52/ce/c0106b3bd7f9e665c5f5bc1e07cc95b5dabd4e08e3dad42dbe2faad467e7/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb158fe28ca0c29f2260cca8c43005329ad58452c36f0edf298204de32a9a3ed", size = 1422799 }, + { url = "https://files.pythonhosted.org/packages/d0/87/efb704b1d75dc9758087ba374c0f23d3254505edaedd09cf9d247f7878b9/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5536185fce131780ebd809f8e623bf4030ce1b161353166c49a3c74c287897f", size = 1354362 }, + { url = "https://files.pythonhosted.org/packages/eb/b3/fd760dc214ec9a8f208b99e42e8f0130ff4b384eca8b29dd0efc62052176/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:369b75d40abedc1da2c1f4de13f3482cb99e3237b38726710f4a793432b1c5ff", size = 2222695 }, + { url = "https://files.pythonhosted.org/packages/a2/09/a27fb36cca3fc01700687cc45dae7a6a5f8eeb5f657b9f710f788748e10d/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:641f2ddf9358c80faa22e22eb4c9f54bd3f0e442e038728f500e3b978d00aa7d", size = 2370802 }, + { url = "https://files.pythonhosted.org/packages/3d/c3/ba0a0346db35fe4dc1f2f2cf8b99362fbb922d7562e5f911f7ce7a7b60fa/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d561d2d8883e0819445cfe58d7ddd673e4015c3c57261d7bdcd3710d0d14005c", size = 2334646 }, + { url = "https://files.pythonhosted.org/packages/41/52/942cf69e562f5ed253ac67d5c92a693745f0bed3c81f49fc0cbebe4d6b00/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1732e065704b47c9afca7ffa272f845300a4eb959276bf6970dc07265e73b605", size = 2467260 }, + { url = "https://files.pythonhosted.org/packages/32/26/2d9668f30d8a494b0411d4d7d4ea1345ba12deb6a75274d58dd6ea01e951/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bcb1ebc3547619c3b58a39e2448af089ea2ef44b37988caf432447374941574e", size = 2288633 }, + { url = "https://files.pythonhosted.org/packages/98/99/0dd05071654aa44fe5d5e350729961e7bb535372935a45ac89a8924316e6/kiwisolver-1.4.8-cp310-cp310-win_amd64.whl", hash = "sha256:89c107041f7b27844179ea9c85d6da275aa55ecf28413e87624d033cf1f6b751", size = 71885 }, + { url = "https://files.pythonhosted.org/packages/6c/fc/822e532262a97442989335394d441cd1d0448c2e46d26d3e04efca84df22/kiwisolver-1.4.8-cp310-cp310-win_arm64.whl", hash = "sha256:b5773efa2be9eb9fcf5415ea3ab70fc785d598729fd6057bea38d539ead28271", size = 65175 }, + { url = "https://files.pythonhosted.org/packages/da/ed/c913ee28936c371418cb167b128066ffb20bbf37771eecc2c97edf8a6e4c/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4d3601908c560bdf880f07d94f31d734afd1bb71e96585cace0e38ef44c6d84", size = 124635 }, + { url = "https://files.pythonhosted.org/packages/4c/45/4a7f896f7467aaf5f56ef093d1f329346f3b594e77c6a3c327b2d415f521/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:856b269c4d28a5c0d5e6c1955ec36ebfd1651ac00e1ce0afa3e28da95293b561", size = 66717 }, + { url = "https://files.pythonhosted.org/packages/5f/b4/c12b3ac0852a3a68f94598d4c8d569f55361beef6159dce4e7b624160da2/kiwisolver-1.4.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2b9a96e0f326205af81a15718a9073328df1173a2619a68553decb7097fd5d7", size = 65413 }, + { url = "https://files.pythonhosted.org/packages/a9/98/1df4089b1ed23d83d410adfdc5947245c753bddfbe06541c4aae330e9e70/kiwisolver-1.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5020c83e8553f770cb3b5fc13faac40f17e0b205bd237aebd21d53d733adb03", size = 1343994 }, + { url = "https://files.pythonhosted.org/packages/8d/bf/b4b169b050c8421a7c53ea1ea74e4ef9c335ee9013216c558a047f162d20/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dace81d28c787956bfbfbbfd72fdcef014f37d9b48830829e488fdb32b49d954", size = 1434804 }, + { url = "https://files.pythonhosted.org/packages/66/5a/e13bd341fbcf73325ea60fdc8af752addf75c5079867af2e04cc41f34434/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11e1022b524bd48ae56c9b4f9296bce77e15a2e42a502cceba602f804b32bb79", size = 1450690 }, + { url = "https://files.pythonhosted.org/packages/9b/4f/5955dcb376ba4a830384cc6fab7d7547bd6759fe75a09564910e9e3bb8ea/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b9b4d2892fefc886f30301cdd80debd8bb01ecdf165a449eb6e78f79f0fabd6", size = 1376839 }, + { url = "https://files.pythonhosted.org/packages/3a/97/5edbed69a9d0caa2e4aa616ae7df8127e10f6586940aa683a496c2c280b9/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a96c0e790ee875d65e340ab383700e2b4891677b7fcd30a699146f9384a2bb0", size = 1435109 }, + { url = "https://files.pythonhosted.org/packages/13/fc/e756382cb64e556af6c1809a1bbb22c141bbc2445049f2da06b420fe52bf/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23454ff084b07ac54ca8be535f4174170c1094a4cff78fbae4f73a4bcc0d4dab", size = 2245269 }, + { url = "https://files.pythonhosted.org/packages/76/15/e59e45829d7f41c776d138245cabae6515cb4eb44b418f6d4109c478b481/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:87b287251ad6488e95b4f0b4a79a6d04d3ea35fde6340eb38fbd1ca9cd35bbbc", size = 2393468 }, + { url = "https://files.pythonhosted.org/packages/e9/39/483558c2a913ab8384d6e4b66a932406f87c95a6080112433da5ed668559/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b21dbe165081142b1232a240fc6383fd32cdd877ca6cc89eab93e5f5883e1c25", size = 2355394 }, + { url = "https://files.pythonhosted.org/packages/01/aa/efad1fbca6570a161d29224f14b082960c7e08268a133fe5dc0f6906820e/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:768cade2c2df13db52475bd28d3a3fac8c9eff04b0e9e2fda0f3760f20b3f7fc", size = 2490901 }, + { url = "https://files.pythonhosted.org/packages/c9/4f/15988966ba46bcd5ab9d0c8296914436720dd67fca689ae1a75b4ec1c72f/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d47cfb2650f0e103d4bf68b0b5804c68da97272c84bb12850d877a95c056bd67", size = 2312306 }, + { url = "https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl", hash = "sha256:ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34", size = 71966 }, + { url = "https://files.pythonhosted.org/packages/4a/c9/9642ea855604aeb2968a8e145fc662edf61db7632ad2e4fb92424be6b6c0/kiwisolver-1.4.8-cp311-cp311-win_arm64.whl", hash = "sha256:16523b40aab60426ffdebe33ac374457cf62863e330a90a0383639ce14bf44b2", size = 65311 }, + { url = "https://files.pythonhosted.org/packages/fc/aa/cea685c4ab647f349c3bc92d2daf7ae34c8e8cf405a6dcd3a497f58a2ac3/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d6af5e8815fd02997cb6ad9bbed0ee1e60014438ee1a5c2444c96f87b8843502", size = 124152 }, + { url = "https://files.pythonhosted.org/packages/c5/0b/8db6d2e2452d60d5ebc4ce4b204feeb16176a851fd42462f66ade6808084/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bade438f86e21d91e0cf5dd7c0ed00cda0f77c8c1616bd83f9fc157fa6760d31", size = 66555 }, + { url = "https://files.pythonhosted.org/packages/60/26/d6a0db6785dd35d3ba5bf2b2df0aedc5af089962c6eb2cbf67a15b81369e/kiwisolver-1.4.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b83dc6769ddbc57613280118fb4ce3cd08899cc3369f7d0e0fab518a7cf37fdb", size = 65067 }, + { url = "https://files.pythonhosted.org/packages/c9/ed/1d97f7e3561e09757a196231edccc1bcf59d55ddccefa2afc9c615abd8e0/kiwisolver-1.4.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111793b232842991be367ed828076b03d96202c19221b5ebab421ce8bcad016f", size = 1378443 }, + { url = "https://files.pythonhosted.org/packages/29/61/39d30b99954e6b46f760e6289c12fede2ab96a254c443639052d1b573fbc/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:257af1622860e51b1a9d0ce387bf5c2c4f36a90594cb9514f55b074bcc787cfc", size = 1472728 }, + { url = "https://files.pythonhosted.org/packages/0c/3e/804163b932f7603ef256e4a715e5843a9600802bb23a68b4e08c8c0ff61d/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b5637c3f316cab1ec1c9a12b8c5f4750a4c4b71af9157645bf32830e39c03a", size = 1478388 }, + { url = "https://files.pythonhosted.org/packages/8a/9e/60eaa75169a154700be74f875a4d9961b11ba048bef315fbe89cb6999056/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:782bb86f245ec18009890e7cb8d13a5ef54dcf2ebe18ed65f795e635a96a1c6a", size = 1413849 }, + { url = "https://files.pythonhosted.org/packages/bc/b3/9458adb9472e61a998c8c4d95cfdfec91c73c53a375b30b1428310f923e4/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc978a80a0db3a66d25767b03688f1147a69e6237175c0f4ffffaaedf744055a", size = 1475533 }, + { url = "https://files.pythonhosted.org/packages/e4/7a/0a42d9571e35798de80aef4bb43a9b672aa7f8e58643d7bd1950398ffb0a/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:36dbbfd34838500a31f52c9786990d00150860e46cd5041386f217101350f0d3", size = 2268898 }, + { url = "https://files.pythonhosted.org/packages/d9/07/1255dc8d80271400126ed8db35a1795b1a2c098ac3a72645075d06fe5c5d/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:eaa973f1e05131de5ff3569bbba7f5fd07ea0595d3870ed4a526d486fe57fa1b", size = 2425605 }, + { url = "https://files.pythonhosted.org/packages/84/df/5a3b4cf13780ef6f6942df67b138b03b7e79e9f1f08f57c49957d5867f6e/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a66f60f8d0c87ab7f59b6fb80e642ebb29fec354a4dfad687ca4092ae69d04f4", size = 2375801 }, + { url = "https://files.pythonhosted.org/packages/8f/10/2348d068e8b0f635c8c86892788dac7a6b5c0cb12356620ab575775aad89/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858416b7fb777a53f0c59ca08190ce24e9abbd3cffa18886a5781b8e3e26f65d", size = 2520077 }, + { url = "https://files.pythonhosted.org/packages/32/d8/014b89fee5d4dce157d814303b0fce4d31385a2af4c41fed194b173b81ac/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:085940635c62697391baafaaeabdf3dd7a6c3643577dde337f4d66eba021b2b8", size = 2338410 }, + { url = "https://files.pythonhosted.org/packages/bd/72/dfff0cc97f2a0776e1c9eb5bef1ddfd45f46246c6533b0191887a427bca5/kiwisolver-1.4.8-cp312-cp312-win_amd64.whl", hash = "sha256:01c3d31902c7db5fb6182832713d3b4122ad9317c2c5877d0539227d96bb2e50", size = 71853 }, + { url = "https://files.pythonhosted.org/packages/dc/85/220d13d914485c0948a00f0b9eb419efaf6da81b7d72e88ce2391f7aed8d/kiwisolver-1.4.8-cp312-cp312-win_arm64.whl", hash = "sha256:a3c44cb68861de93f0c4a8175fbaa691f0aa22550c331fefef02b618a9dcb476", size = 65424 }, + { url = "https://files.pythonhosted.org/packages/79/b3/e62464a652f4f8cd9006e13d07abad844a47df1e6537f73ddfbf1bc997ec/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09", size = 124156 }, + { url = "https://files.pythonhosted.org/packages/8d/2d/f13d06998b546a2ad4f48607a146e045bbe48030774de29f90bdc573df15/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1", size = 66555 }, + { url = "https://files.pythonhosted.org/packages/59/e3/b8bd14b0a54998a9fd1e8da591c60998dc003618cb19a3f94cb233ec1511/kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c", size = 65071 }, + { url = "https://files.pythonhosted.org/packages/f0/1c/6c86f6d85ffe4d0ce04228d976f00674f1df5dc893bf2dd4f1928748f187/kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b", size = 1378053 }, + { url = "https://files.pythonhosted.org/packages/4e/b9/1c6e9f6dcb103ac5cf87cb695845f5fa71379021500153566d8a8a9fc291/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47", size = 1472278 }, + { url = "https://files.pythonhosted.org/packages/ee/81/aca1eb176de671f8bda479b11acdc42c132b61a2ac861c883907dde6debb/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16", size = 1478139 }, + { url = "https://files.pythonhosted.org/packages/49/f4/e081522473671c97b2687d380e9e4c26f748a86363ce5af48b4a28e48d06/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc", size = 1413517 }, + { url = "https://files.pythonhosted.org/packages/8f/e9/6a7d025d8da8c4931522922cd706105aa32b3291d1add8c5427cdcd66e63/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246", size = 1474952 }, + { url = "https://files.pythonhosted.org/packages/82/13/13fa685ae167bee5d94b415991c4fc7bb0a1b6ebea6e753a87044b209678/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794", size = 2269132 }, + { url = "https://files.pythonhosted.org/packages/ef/92/bb7c9395489b99a6cb41d502d3686bac692586db2045adc19e45ee64ed23/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b", size = 2425997 }, + { url = "https://files.pythonhosted.org/packages/ed/12/87f0e9271e2b63d35d0d8524954145837dd1a6c15b62a2d8c1ebe0f182b4/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3", size = 2376060 }, + { url = "https://files.pythonhosted.org/packages/02/6e/c8af39288edbce8bf0fa35dee427b082758a4b71e9c91ef18fa667782138/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957", size = 2520471 }, + { url = "https://files.pythonhosted.org/packages/13/78/df381bc7b26e535c91469f77f16adcd073beb3e2dd25042efd064af82323/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb", size = 2338793 }, + { url = "https://files.pythonhosted.org/packages/d0/dc/c1abe38c37c071d0fc71c9a474fd0b9ede05d42f5a458d584619cfd2371a/kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2", size = 71855 }, + { url = "https://files.pythonhosted.org/packages/a0/b6/21529d595b126ac298fdd90b705d87d4c5693de60023e0efcb4f387ed99e/kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30", size = 65430 }, + { url = "https://files.pythonhosted.org/packages/34/bd/b89380b7298e3af9b39f49334e3e2a4af0e04819789f04b43d560516c0c8/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c", size = 126294 }, + { url = "https://files.pythonhosted.org/packages/83/41/5857dc72e5e4148eaac5aa76e0703e594e4465f8ab7ec0fc60e3a9bb8fea/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc", size = 67736 }, + { url = "https://files.pythonhosted.org/packages/e1/d1/be059b8db56ac270489fb0b3297fd1e53d195ba76e9bbb30e5401fa6b759/kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712", size = 66194 }, + { url = "https://files.pythonhosted.org/packages/e1/83/4b73975f149819eb7dcf9299ed467eba068ecb16439a98990dcb12e63fdd/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e", size = 1465942 }, + { url = "https://files.pythonhosted.org/packages/c7/2c/30a5cdde5102958e602c07466bce058b9d7cb48734aa7a4327261ac8e002/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880", size = 1595341 }, + { url = "https://files.pythonhosted.org/packages/ff/9b/1e71db1c000385aa069704f5990574b8244cce854ecd83119c19e83c9586/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062", size = 1598455 }, + { url = "https://files.pythonhosted.org/packages/85/92/c8fec52ddf06231b31cbb779af77e99b8253cd96bd135250b9498144c78b/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7", size = 1522138 }, + { url = "https://files.pythonhosted.org/packages/0b/51/9eb7e2cd07a15d8bdd976f6190c0164f92ce1904e5c0c79198c4972926b7/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed", size = 1582857 }, + { url = "https://files.pythonhosted.org/packages/0f/95/c5a00387a5405e68ba32cc64af65ce881a39b98d73cc394b24143bebc5b8/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d", size = 2293129 }, + { url = "https://files.pythonhosted.org/packages/44/83/eeb7af7d706b8347548313fa3a3a15931f404533cc54fe01f39e830dd231/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165", size = 2421538 }, + { url = "https://files.pythonhosted.org/packages/05/f9/27e94c1b3eb29e6933b6986ffc5fa1177d2cd1f0c8efc5f02c91c9ac61de/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6", size = 2390661 }, + { url = "https://files.pythonhosted.org/packages/d9/d4/3c9735faa36ac591a4afcc2980d2691000506050b7a7e80bcfe44048daa7/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90", size = 2546710 }, + { url = "https://files.pythonhosted.org/packages/4c/fa/be89a49c640930180657482a74970cdcf6f7072c8d2471e1babe17a222dc/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85", size = 2349213 }, + { url = "https://files.pythonhosted.org/packages/1f/f9/ae81c47a43e33b93b0a9819cac6723257f5da2a5a60daf46aa5c7226ea85/kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e7a019419b7b510f0f7c9dceff8c5eae2392037eae483a7f9162625233802b0a", size = 60403 }, + { url = "https://files.pythonhosted.org/packages/58/ca/f92b5cb6f4ce0c1ebfcfe3e2e42b96917e16f7090e45b21102941924f18f/kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:286b18e86682fd2217a48fc6be6b0f20c1d0ed10958d8dc53453ad58d7be0bf8", size = 58657 }, + { url = "https://files.pythonhosted.org/packages/80/28/ae0240f732f0484d3a4dc885d055653c47144bdf59b670aae0ec3c65a7c8/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4191ee8dfd0be1c3666ccbac178c5a05d5f8d689bbe3fc92f3c4abec817f8fe0", size = 84948 }, + { url = "https://files.pythonhosted.org/packages/5d/eb/78d50346c51db22c7203c1611f9b513075f35c4e0e4877c5dde378d66043/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd2785b9391f2873ad46088ed7599a6a71e762e1ea33e87514b1a441ed1da1c", size = 81186 }, + { url = "https://files.pythonhosted.org/packages/43/f8/7259f18c77adca88d5f64f9a522792e178b2691f3748817a8750c2d216ef/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c07b29089b7ba090b6f1a669f1411f27221c3662b3a1b7010e67b59bb5a6f10b", size = 80279 }, + { url = "https://files.pythonhosted.org/packages/3a/1d/50ad811d1c5dae091e4cf046beba925bcae0a610e79ae4c538f996f63ed5/kiwisolver-1.4.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65ea09a5a3faadd59c2ce96dc7bf0f364986a315949dc6374f04396b0d60e09b", size = 71762 }, +] + +[[package]] +name = "loguru" +version = "0.7.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "win32-setctime", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3a/05/a1dae3dffd1116099471c643b8924f5aa6524411dc6c63fdae648c4f1aca/loguru-0.7.3.tar.gz", hash = "sha256:19480589e77d47b8d85b2c827ad95d49bf31b0dcde16593892eb51dd18706eb6", size = 63559 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/29/0348de65b8cc732daa3e33e67806420b2ae89bdce2b04af740289c5c6c8c/loguru-0.7.3-py3-none-any.whl", hash = "sha256:31a33c10c8e1e10422bfd431aeb5d351c7cf7fa671e3c4df004162264b28220c", size = 61595 }, +] + +[[package]] +name = "magpylib" +version = "5.0.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "matplotlib", version = "3.9.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "plotly", marker = "python_full_version < '3.10'" }, + { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/d3/8603a7392382bcc8927443281adcd8292318598c8889084f85acbc4a2ddb/magpylib-5.0.1.tar.gz", hash = "sha256:80f0d387f779ef4a7583c999555cfe0d603f37aabbc4b57f25dac22db035efb2", size = 10354729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/c6/ec74e54b75f6386115a6a4bec66e8ad4ffb7af695b0b71c74d4f3242f731/magpylib-5.0.1-py3-none-any.whl", hash = "sha256:a9d5967be0897bdb6965e53fe7777f6d685ca8ecb2db4baa2fad383954bba8d6", size = 184906 }, +] + +[[package]] +name = "magpylib" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +dependencies = [ + { name = "matplotlib", version = "3.10.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "plotly", marker = "python_full_version >= '3.10'" }, + { name = "scipy", version = "1.15.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/18/3d8e183b6f4540157cab2be92cfa6d295b77a5c98c4f01f28b6e00cfdc77/magpylib-5.1.1.tar.gz", hash = "sha256:be339e034fd72cb9792e95375fd2705c1c5c82e877eaafa280db80bc6851b6ef", size = 11024890 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/d1/c6ee8b2b02928eb7ae361ce240d60748b7015dd6c8a51d82396745e6eb13/magpylib-5.1.1-py3-none-any.whl", hash = "sha256:ec643faf433f0a01ff1eb64a4fbf6f55cb09c992533427f2c32bade81cb8c0b2", size = 188785 }, +] + +[[package]] +name = "magpylib-material-response" +source = { editable = "." } +dependencies = [ + { name = "loguru" }, + { name = "magpylib", version = "5.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "magpylib", version = "5.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, +] + +[package.optional-dependencies] +dev = [ + { name = "pytest" }, + { name = "pytest-cov" }, +] +docs = [ + { name = "furo" }, + { name = "myst-parser", version = "3.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "myst-parser", version = "4.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "sphinx-autodoc-typehints", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "sphinx-autodoc-typehints", version = "3.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "sphinx-autodoc-typehints", version = "3.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "sphinx-copybutton" }, +] +test = [ + { name = "pytest" }, + { name = "pytest-cov" }, +] + +[package.dev-dependencies] +dev = [ + { name = "magpylib-material-response", extra = ["test"] }, +] + +[package.metadata] +requires-dist = [ + { name = "furo", marker = "extra == 'docs'", specifier = ">=2023.8.17" }, + { name = "loguru", specifier = ">=0.5.0" }, + { name = "magpylib", specifier = ">=5.0" }, + { name = "myst-parser", marker = "extra == 'docs'", specifier = ">=0.13" }, + { name = "pytest", marker = "extra == 'dev'", specifier = ">=6" }, + { name = "pytest", marker = "extra == 'test'", specifier = ">=6" }, + { name = "pytest-cov", marker = "extra == 'dev'", specifier = ">=3" }, + { name = "pytest-cov", marker = "extra == 'test'", specifier = ">=3" }, + { name = "sphinx", marker = "extra == 'docs'", specifier = ">=7.0" }, + { name = "sphinx-autodoc-typehints", marker = "extra == 'docs'" }, + { name = "sphinx-copybutton", marker = "extra == 'docs'" }, +] +provides-extras = ["dev", "docs", "test"] + +[package.metadata.requires-dev] +dev = [{ name = "magpylib-material-response", extras = ["test"] }] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, +] + +[[package]] +name = "markupsafe" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/90/d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd/MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", size = 14357 }, + { url = "https://files.pythonhosted.org/packages/04/e1/6e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374/MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", size = 12393 }, + { url = "https://files.pythonhosted.org/packages/1d/69/35fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", size = 21732 }, + { url = "https://files.pythonhosted.org/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", size = 20866 }, + { url = "https://files.pythonhosted.org/packages/29/28/6d029a903727a1b62edb51863232152fd335d602def598dade38996887f0/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", size = 20964 }, + { url = "https://files.pythonhosted.org/packages/cc/cd/07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", size = 21977 }, + { url = "https://files.pythonhosted.org/packages/29/01/84b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", size = 21366 }, + { url = "https://files.pythonhosted.org/packages/bd/6e/61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", size = 21091 }, + { url = "https://files.pythonhosted.org/packages/11/23/ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499/MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50", size = 15065 }, + { url = "https://files.pythonhosted.org/packages/44/06/e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3/MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", size = 15514 }, + { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353 }, + { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392 }, + { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984 }, + { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120 }, + { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032 }, + { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057 }, + { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359 }, + { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306 }, + { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 }, + { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 }, + { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274 }, + { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348 }, + { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149 }, + { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118 }, + { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993 }, + { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178 }, + { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319 }, + { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352 }, + { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097 }, + { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601 }, + { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274 }, + { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352 }, + { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122 }, + { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085 }, + { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978 }, + { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208 }, + { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357 }, + { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344 }, + { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101 }, + { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603 }, + { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510 }, + { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486 }, + { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480 }, + { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914 }, + { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796 }, + { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473 }, + { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114 }, + { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098 }, + { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208 }, + { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739 }, + { url = "https://files.pythonhosted.org/packages/a7/ea/9b1530c3fdeeca613faeb0fb5cbcf2389d816072fab72a71b45749ef6062/MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a", size = 14344 }, + { url = "https://files.pythonhosted.org/packages/4b/c2/fbdbfe48848e7112ab05e627e718e854d20192b674952d9042ebd8c9e5de/MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff", size = 12389 }, + { url = "https://files.pythonhosted.org/packages/f0/25/7a7c6e4dbd4f867d95d94ca15449e91e52856f6ed1905d58ef1de5e211d0/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13", size = 21607 }, + { url = "https://files.pythonhosted.org/packages/53/8f/f339c98a178f3c1e545622206b40986a4c3307fe39f70ccd3d9df9a9e425/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144", size = 20728 }, + { url = "https://files.pythonhosted.org/packages/1a/03/8496a1a78308456dbd50b23a385c69b41f2e9661c67ea1329849a598a8f9/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29", size = 20826 }, + { url = "https://files.pythonhosted.org/packages/e6/cf/0a490a4bd363048c3022f2f475c8c05582179bb179defcee4766fb3dcc18/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0", size = 21843 }, + { url = "https://files.pythonhosted.org/packages/19/a3/34187a78613920dfd3cdf68ef6ce5e99c4f3417f035694074beb8848cd77/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0", size = 21219 }, + { url = "https://files.pythonhosted.org/packages/17/d8/5811082f85bb88410ad7e452263af048d685669bbbfb7b595e8689152498/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178", size = 20946 }, + { url = "https://files.pythonhosted.org/packages/7c/31/bd635fb5989440d9365c5e3c47556cfea121c7803f5034ac843e8f37c2f2/MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f", size = 15063 }, + { url = "https://files.pythonhosted.org/packages/b3/73/085399401383ce949f727afec55ec3abd76648d04b9f22e1c0e99cb4bec3/MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a", size = 15506 }, +] + +[[package]] +name = "matplotlib" +version = "3.9.4" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "contourpy", version = "1.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "cycler", marker = "python_full_version < '3.10'" }, + { name = "fonttools", marker = "python_full_version < '3.10'" }, + { name = "importlib-resources", marker = "python_full_version < '3.10'" }, + { name = "kiwisolver", version = "1.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "packaging", marker = "python_full_version < '3.10'" }, + { name = "pillow", marker = "python_full_version < '3.10'" }, + { name = "pyparsing", marker = "python_full_version < '3.10'" }, + { name = "python-dateutil", marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/17/1747b4154034befd0ed33b52538f5eb7752d05bb51c5e2a31470c3bc7d52/matplotlib-3.9.4.tar.gz", hash = "sha256:1e00e8be7393cbdc6fedfa8a6fba02cf3e83814b285db1c60b906a023ba41bc3", size = 36106529 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/94/27d2e2c30d54b56c7b764acc1874a909e34d1965a427fc7092bb6a588b63/matplotlib-3.9.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:c5fdd7abfb706dfa8d307af64a87f1a862879ec3cd8d0ec8637458f0885b9c50", size = 7885089 }, + { url = "https://files.pythonhosted.org/packages/c6/25/828273307e40a68eb8e9df832b6b2aaad075864fdc1de4b1b81e40b09e48/matplotlib-3.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d89bc4e85e40a71d1477780366c27fb7c6494d293e1617788986f74e2a03d7ff", size = 7770600 }, + { url = "https://files.pythonhosted.org/packages/f2/65/f841a422ec994da5123368d76b126acf4fc02ea7459b6e37c4891b555b83/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ddf9f3c26aae695c5daafbf6b94e4c1a30d6cd617ba594bbbded3b33a1fcfa26", size = 8200138 }, + { url = "https://files.pythonhosted.org/packages/07/06/272aca07a38804d93b6050813de41ca7ab0e29ba7a9dd098e12037c919a9/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18ebcf248030173b59a868fda1fe42397253f6698995b55e81e1f57431d85e50", size = 8312711 }, + { url = "https://files.pythonhosted.org/packages/98/37/f13e23b233c526b7e27ad61be0a771894a079e0f7494a10d8d81557e0e9a/matplotlib-3.9.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974896ec43c672ec23f3f8c648981e8bc880ee163146e0312a9b8def2fac66f5", size = 9090622 }, + { url = "https://files.pythonhosted.org/packages/4f/8c/b1f5bd2bd70e60f93b1b54c4d5ba7a992312021d0ddddf572f9a1a6d9348/matplotlib-3.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:4598c394ae9711cec135639374e70871fa36b56afae17bdf032a345be552a88d", size = 7828211 }, + { url = "https://files.pythonhosted.org/packages/74/4b/65be7959a8fa118a3929b49a842de5b78bb55475236fcf64f3e308ff74a0/matplotlib-3.9.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d4dd29641d9fb8bc4492420c5480398dd40a09afd73aebe4eb9d0071a05fbe0c", size = 7894430 }, + { url = "https://files.pythonhosted.org/packages/e9/18/80f70d91896e0a517b4a051c3fd540daa131630fd75e02e250365353b253/matplotlib-3.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30e5b22e8bcfb95442bf7d48b0d7f3bdf4a450cbf68986ea45fca3d11ae9d099", size = 7780045 }, + { url = "https://files.pythonhosted.org/packages/a2/73/ccb381026e3238c5c25c3609ba4157b2d1a617ec98d65a8b4ee4e1e74d02/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2bb0030d1d447fd56dcc23b4c64a26e44e898f0416276cac1ebc25522e0ac249", size = 8209906 }, + { url = "https://files.pythonhosted.org/packages/ab/33/1648da77b74741c89f5ea95cbf42a291b4b364f2660b316318811404ed97/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aca90ed222ac3565d2752b83dbb27627480d27662671e4d39da72e97f657a423", size = 8322873 }, + { url = "https://files.pythonhosted.org/packages/57/d3/8447ba78bc6593c9044c372d1609f8ea10fb1e071e7a9e0747bea74fc16c/matplotlib-3.9.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a181b2aa2906c608fcae72f977a4a2d76e385578939891b91c2550c39ecf361e", size = 9099566 }, + { url = "https://files.pythonhosted.org/packages/23/e1/4f0e237bf349c02ff9d1b6e7109f1a17f745263809b9714a8576dc17752b/matplotlib-3.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:1f6882828231eca17f501c4dcd98a05abb3f03d157fbc0769c6911fe08b6cfd3", size = 7838065 }, + { url = "https://files.pythonhosted.org/packages/1a/2b/c918bf6c19d6445d1cefe3d2e42cb740fb997e14ab19d4daeb6a7ab8a157/matplotlib-3.9.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:dfc48d67e6661378a21c2983200a654b72b5c5cdbd5d2cf6e5e1ece860f0cc70", size = 7891131 }, + { url = "https://files.pythonhosted.org/packages/c1/e5/b4e8fc601ca302afeeabf45f30e706a445c7979a180e3a978b78b2b681a4/matplotlib-3.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:47aef0fab8332d02d68e786eba8113ffd6f862182ea2999379dec9e237b7e483", size = 7776365 }, + { url = "https://files.pythonhosted.org/packages/99/06/b991886c506506476e5d83625c5970c656a491b9f80161458fed94597808/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fba1f52c6b7dc764097f52fd9ab627b90db452c9feb653a59945de16752e965f", size = 8200707 }, + { url = "https://files.pythonhosted.org/packages/c3/e2/556b627498cb27e61026f2d1ba86a78ad1b836fef0996bef5440e8bc9559/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:173ac3748acaac21afcc3fa1633924609ba1b87749006bc25051c52c422a5d00", size = 8313761 }, + { url = "https://files.pythonhosted.org/packages/58/ff/165af33ec766ff818306ea88e91f9f60d2a6ed543be1eb122a98acbf3b0d/matplotlib-3.9.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320edea0cadc07007765e33f878b13b3738ffa9745c5f707705692df70ffe0e0", size = 9095284 }, + { url = "https://files.pythonhosted.org/packages/9f/8b/3d0c7a002db3b1ed702731c2a9a06d78d035f1f2fb0fb936a8e43cc1e9f4/matplotlib-3.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a4a4cfc82330b27042a7169533da7991e8789d180dd5b3daeaee57d75cd5a03b", size = 7841160 }, + { url = "https://files.pythonhosted.org/packages/49/b1/999f89a7556d101b23a2f0b54f1b6e140d73f56804da1398f2f0bc0924bc/matplotlib-3.9.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:37eeffeeca3c940985b80f5b9a7b95ea35671e0e7405001f249848d2b62351b6", size = 7891499 }, + { url = "https://files.pythonhosted.org/packages/87/7b/06a32b13a684977653396a1bfcd34d4e7539c5d55c8cbfaa8ae04d47e4a9/matplotlib-3.9.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3e7465ac859ee4abcb0d836137cd8414e7bb7ad330d905abced457217d4f0f45", size = 7776802 }, + { url = "https://files.pythonhosted.org/packages/65/87/ac498451aff739e515891bbb92e566f3c7ef31891aaa878402a71f9b0910/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4c12302c34afa0cf061bea23b331e747e5e554b0fa595c96e01c7b75bc3b858", size = 8200802 }, + { url = "https://files.pythonhosted.org/packages/f8/6b/9eb761c00e1cb838f6c92e5f25dcda3f56a87a52f6cb8fdfa561e6cf6a13/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b8c97917f21b75e72108b97707ba3d48f171541a74aa2a56df7a40626bafc64", size = 8313880 }, + { url = "https://files.pythonhosted.org/packages/d7/a2/c8eaa600e2085eec7e38cbbcc58a30fc78f8224939d31d3152bdafc01fd1/matplotlib-3.9.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0229803bd7e19271b03cb09f27db76c918c467aa4ce2ae168171bc67c3f508df", size = 9094637 }, + { url = "https://files.pythonhosted.org/packages/71/1f/c6e1daea55b7bfeb3d84c6cb1abc449f6a02b181e7e2a5e4db34c3afb793/matplotlib-3.9.4-cp313-cp313-win_amd64.whl", hash = "sha256:7c0d8ef442ebf56ff5e206f8083d08252ee738e04f3dc88ea882853a05488799", size = 7841311 }, + { url = "https://files.pythonhosted.org/packages/c0/3a/2757d3f7d388b14dd48f5a83bea65b6d69f000e86b8f28f74d86e0d375bd/matplotlib-3.9.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a04c3b00066a688834356d196136349cb32f5e1003c55ac419e91585168b88fb", size = 7919989 }, + { url = "https://files.pythonhosted.org/packages/24/28/f5077c79a4f521589a37fe1062d6a6ea3534e068213f7357e7cfffc2e17a/matplotlib-3.9.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:04c519587f6c210626741a1e9a68eefc05966ede24205db8982841826af5871a", size = 7809417 }, + { url = "https://files.pythonhosted.org/packages/36/c8/c523fd2963156692916a8eb7d4069084cf729359f7955cf09075deddfeaf/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:308afbf1a228b8b525fcd5cec17f246bbbb63b175a3ef6eb7b4d33287ca0cf0c", size = 8226258 }, + { url = "https://files.pythonhosted.org/packages/f6/88/499bf4b8fa9349b6f5c0cf4cead0ebe5da9d67769129f1b5651e5ac51fbc/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddb3b02246ddcffd3ce98e88fed5b238bc5faff10dbbaa42090ea13241d15764", size = 8335849 }, + { url = "https://files.pythonhosted.org/packages/b8/9f/20a4156b9726188646a030774ee337d5ff695a965be45ce4dbcb9312c170/matplotlib-3.9.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8a75287e9cb9eee48cb79ec1d806f75b29c0fde978cb7223a1f4c5848d696041", size = 9102152 }, + { url = "https://files.pythonhosted.org/packages/10/11/237f9c3a4e8d810b1759b67ff2da7c32c04f9c80aa475e7beb36ed43a8fb/matplotlib-3.9.4-cp313-cp313t-win_amd64.whl", hash = "sha256:488deb7af140f0ba86da003e66e10d55ff915e152c78b4b66d231638400b1965", size = 7896987 }, + { url = "https://files.pythonhosted.org/packages/56/eb/501b465c9fef28f158e414ea3a417913dc2ac748564c7ed41535f23445b4/matplotlib-3.9.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3c3724d89a387ddf78ff88d2a30ca78ac2b4c89cf37f2db4bd453c34799e933c", size = 7885919 }, + { url = "https://files.pythonhosted.org/packages/da/36/236fbd868b6c91309a5206bd90c3f881f4f44b2d997cd1d6239ef652f878/matplotlib-3.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d5f0a8430ffe23d7e32cfd86445864ccad141797f7d25b7c41759a5b5d17cfd7", size = 7771486 }, + { url = "https://files.pythonhosted.org/packages/e0/4b/105caf2d54d5ed11d9f4335398f5103001a03515f2126c936a752ccf1461/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bb0141a21aef3b64b633dc4d16cbd5fc538b727e4958be82a0e1c92a234160e", size = 8201838 }, + { url = "https://files.pythonhosted.org/packages/5d/a7/bb01188fb4013d34d274caf44a2f8091255b0497438e8b6c0a7c1710c692/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57aa235109e9eed52e2c2949db17da185383fa71083c00c6c143a60e07e0888c", size = 8314492 }, + { url = "https://files.pythonhosted.org/packages/33/19/02e1a37f7141fc605b193e927d0a9cdf9dc124a20b9e68793f4ffea19695/matplotlib-3.9.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b18c600061477ccfdd1e6fd050c33d8be82431700f3452b297a56d9ed7037abb", size = 9092500 }, + { url = "https://files.pythonhosted.org/packages/57/68/c2feb4667adbf882ffa4b3e0ac9967f848980d9f8b5bebd86644aa67ce6a/matplotlib-3.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:ef5f2d1b67d2d2145ff75e10f8c008bfbf71d45137c4b648c87193e7dd053eac", size = 7822962 }, + { url = "https://files.pythonhosted.org/packages/0c/22/2ef6a364cd3f565442b0b055e0599744f1e4314ec7326cdaaa48a4d864d7/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:44e0ed786d769d85bc787b0606a53f2d8d2d1d3c8a2608237365e9121c1a338c", size = 7877995 }, + { url = "https://files.pythonhosted.org/packages/87/b8/2737456e566e9f4d94ae76b8aa0d953d9acb847714f9a7ad80184474f5be/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:09debb9ce941eb23ecdbe7eab972b1c3e0276dcf01688073faff7b0f61d6c6ca", size = 7769300 }, + { url = "https://files.pythonhosted.org/packages/b2/1f/e709c6ec7b5321e6568769baa288c7178e60a93a9da9e682b39450da0e29/matplotlib-3.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcc53cf157a657bfd03afab14774d54ba73aa84d42cfe2480c91bd94873952db", size = 8313423 }, + { url = "https://files.pythonhosted.org/packages/5e/b6/5a1f868782cd13f053a679984e222007ecff654a9bfbac6b27a65f4eeb05/matplotlib-3.9.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ad45da51be7ad02387801fd154ef74d942f49fe3fcd26a64c94842ba7ec0d865", size = 7854624 }, +] + +[[package]] +name = "matplotlib" +version = "3.10.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +dependencies = [ + { name = "contourpy", version = "1.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "cycler", marker = "python_full_version >= '3.10'" }, + { name = "fonttools", marker = "python_full_version >= '3.10'" }, + { name = "kiwisolver", version = "1.4.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "packaging", marker = "python_full_version >= '3.10'" }, + { name = "pillow", marker = "python_full_version >= '3.10'" }, + { name = "pyparsing", marker = "python_full_version >= '3.10'" }, + { name = "python-dateutil", marker = "python_full_version >= '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2f/08/b89867ecea2e305f408fbb417139a8dd941ecf7b23a2e02157c36da546f0/matplotlib-3.10.1.tar.gz", hash = "sha256:e8d2d0e3881b129268585bf4765ad3ee73a4591d77b9a18c214ac7e3a79fb2ba", size = 36743335 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ee/b1/f70e27cf1cd76ce2a5e1aa5579d05afe3236052c6d9b9a96325bc823a17e/matplotlib-3.10.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:ff2ae14910be903f4a24afdbb6d7d3a6c44da210fc7d42790b87aeac92238a16", size = 8163654 }, + { url = "https://files.pythonhosted.org/packages/26/af/5ec3d4636106718bb62503a03297125d4514f98fe818461bd9e6b9d116e4/matplotlib-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0721a3fd3d5756ed593220a8b86808a36c5031fce489adb5b31ee6dbb47dd5b2", size = 8037943 }, + { url = "https://files.pythonhosted.org/packages/a1/3d/07f9003a71b698b848c9925d05979ffa94a75cd25d1a587202f0bb58aa81/matplotlib-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0673b4b8f131890eb3a1ad058d6e065fb3c6e71f160089b65f8515373394698", size = 8449510 }, + { url = "https://files.pythonhosted.org/packages/12/87/9472d4513ff83b7cd864311821793ab72234fa201ab77310ec1b585d27e2/matplotlib-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e875b95ac59a7908978fe307ecdbdd9a26af7fa0f33f474a27fcf8c99f64a19", size = 8586585 }, + { url = "https://files.pythonhosted.org/packages/31/9e/fe74d237d2963adae8608faeb21f778cf246dbbf4746cef87cffbc82c4b6/matplotlib-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2589659ea30726284c6c91037216f64a506a9822f8e50592d48ac16a2f29e044", size = 9397911 }, + { url = "https://files.pythonhosted.org/packages/b6/1b/025d3e59e8a4281ab463162ad7d072575354a1916aba81b6a11507dfc524/matplotlib-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:a97ff127f295817bc34517255c9db6e71de8eddaab7f837b7d341dee9f2f587f", size = 8052998 }, + { url = "https://files.pythonhosted.org/packages/a5/14/a1b840075be247bb1834b22c1e1d558740b0f618fe3a823740181ca557a1/matplotlib-3.10.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:057206ff2d6ab82ff3e94ebd94463d084760ca682ed5f150817b859372ec4401", size = 8174669 }, + { url = "https://files.pythonhosted.org/packages/0a/e4/300b08e3e08f9c98b0d5635f42edabf2f7a1d634e64cb0318a71a44ff720/matplotlib-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a144867dd6bf8ba8cb5fc81a158b645037e11b3e5cf8a50bd5f9917cb863adfe", size = 8047996 }, + { url = "https://files.pythonhosted.org/packages/75/f9/8d99ff5a2498a5f1ccf919fb46fb945109623c6108216f10f96428f388bc/matplotlib-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56c5d9fcd9879aa8040f196a235e2dcbdf7dd03ab5b07c0696f80bc6cf04bedd", size = 8461612 }, + { url = "https://files.pythonhosted.org/packages/40/b8/53fa08a5eaf78d3a7213fd6da1feec4bae14a81d9805e567013811ff0e85/matplotlib-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f69dc9713e4ad2fb21a1c30e37bd445d496524257dfda40ff4a8efb3604ab5c", size = 8602258 }, + { url = "https://files.pythonhosted.org/packages/40/87/4397d2ce808467af86684a622dd112664553e81752ea8bf61bdd89d24a41/matplotlib-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4c59af3e8aca75d7744b68e8e78a669e91ccbcf1ac35d0102a7b1b46883f1dd7", size = 9408896 }, + { url = "https://files.pythonhosted.org/packages/d7/68/0d03098b3feb786cbd494df0aac15b571effda7f7cbdec267e8a8d398c16/matplotlib-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:11b65088c6f3dae784bc72e8d039a2580186285f87448babb9ddb2ad0082993a", size = 8061281 }, + { url = "https://files.pythonhosted.org/packages/7c/1d/5e0dc3b59c034e43de16f94deb68f4ad8a96b3ea00f4b37c160b7474928e/matplotlib-3.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:66e907a06e68cb6cfd652c193311d61a12b54f56809cafbed9736ce5ad92f107", size = 8175488 }, + { url = "https://files.pythonhosted.org/packages/7a/81/dae7e14042e74da658c3336ab9799128e09a1ee03964f2d89630b5d12106/matplotlib-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b4bb156abb8fa5e5b2b460196f7db7264fc6d62678c03457979e7d5254b7be", size = 8046264 }, + { url = "https://files.pythonhosted.org/packages/21/c4/22516775dcde10fc9c9571d155f90710761b028fc44f660508106c363c97/matplotlib-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1985ad3d97f51307a2cbfc801a930f120def19ba22864182dacef55277102ba6", size = 8452048 }, + { url = "https://files.pythonhosted.org/packages/63/23/c0615001f67ce7c96b3051d856baedc0c818a2ed84570b9bf9bde200f85d/matplotlib-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c96f2c2f825d1257e437a1482c5a2cf4fee15db4261bd6fc0750f81ba2b4ba3d", size = 8597111 }, + { url = "https://files.pythonhosted.org/packages/ca/c0/a07939a82aed77770514348f4568177d7dadab9787ebc618a616fe3d665e/matplotlib-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35e87384ee9e488d8dd5a2dd7baf471178d38b90618d8ea147aced4ab59c9bea", size = 9402771 }, + { url = "https://files.pythonhosted.org/packages/a6/b6/a9405484fb40746fdc6ae4502b16a9d6e53282ba5baaf9ebe2da579f68c4/matplotlib-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:cfd414bce89cc78a7e1d25202e979b3f1af799e416010a20ab2b5ebb3a02425c", size = 8063742 }, + { url = "https://files.pythonhosted.org/packages/60/73/6770ff5e5523d00f3bc584acb6031e29ee5c8adc2336b16cd1d003675fe0/matplotlib-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c42eee41e1b60fd83ee3292ed83a97a5f2a8239b10c26715d8a6172226988d7b", size = 8176112 }, + { url = "https://files.pythonhosted.org/packages/08/97/b0ca5da0ed54a3f6599c3ab568bdda65269bc27c21a2c97868c1625e4554/matplotlib-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4f0647b17b667ae745c13721602b540f7aadb2a32c5b96e924cd4fea5dcb90f1", size = 8046931 }, + { url = "https://files.pythonhosted.org/packages/df/9a/1acbdc3b165d4ce2dcd2b1a6d4ffb46a7220ceee960c922c3d50d8514067/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa3854b5f9473564ef40a41bc922be978fab217776e9ae1545c9b3a5cf2092a3", size = 8453422 }, + { url = "https://files.pythonhosted.org/packages/51/d0/2bc4368abf766203e548dc7ab57cf7e9c621f1a3c72b516cc7715347b179/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e496c01441be4c7d5f96d4e40f7fca06e20dcb40e44c8daa2e740e1757ad9e6", size = 8596819 }, + { url = "https://files.pythonhosted.org/packages/ab/1b/8b350f8a1746c37ab69dda7d7528d1fc696efb06db6ade9727b7887be16d/matplotlib-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5d45d3f5245be5b469843450617dcad9af75ca50568acf59997bed9311131a0b", size = 9402782 }, + { url = "https://files.pythonhosted.org/packages/89/06/f570373d24d93503988ba8d04f213a372fa1ce48381c5eb15da985728498/matplotlib-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:8e8e25b1209161d20dfe93037c8a7f7ca796ec9aa326e6e4588d8c4a5dd1e473", size = 8063812 }, + { url = "https://files.pythonhosted.org/packages/fc/e0/8c811a925b5a7ad75135f0e5af46408b78af88bbb02a1df775100ef9bfef/matplotlib-3.10.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:19b06241ad89c3ae9469e07d77efa87041eac65d78df4fcf9cac318028009b01", size = 8214021 }, + { url = "https://files.pythonhosted.org/packages/4a/34/319ec2139f68ba26da9d00fce2ff9f27679fb799a6c8e7358539801fd629/matplotlib-3.10.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:01e63101ebb3014e6e9f80d9cf9ee361a8599ddca2c3e166c563628b39305dbb", size = 8090782 }, + { url = "https://files.pythonhosted.org/packages/77/ea/9812124ab9a99df5b2eec1110e9b2edc0b8f77039abf4c56e0a376e84a29/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f06bad951eea6422ac4e8bdebcf3a70c59ea0a03338c5d2b109f57b64eb3972", size = 8478901 }, + { url = "https://files.pythonhosted.org/packages/c9/db/b05bf463689134789b06dea85828f8ebe506fa1e37593f723b65b86c9582/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3dfb036f34873b46978f55e240cff7a239f6c4409eac62d8145bad3fc6ba5a3", size = 8613864 }, + { url = "https://files.pythonhosted.org/packages/c2/04/41ccec4409f3023a7576df3b5c025f1a8c8b81fbfe922ecfd837ac36e081/matplotlib-3.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dc6ab14a7ab3b4d813b88ba957fc05c79493a037f54e246162033591e770de6f", size = 9409487 }, + { url = "https://files.pythonhosted.org/packages/ac/c2/0d5aae823bdcc42cc99327ecdd4d28585e15ccd5218c453b7bcd827f3421/matplotlib-3.10.1-cp313-cp313t-win_amd64.whl", hash = "sha256:bc411ebd5889a78dabbc457b3fa153203e22248bfa6eedc6797be5df0164dbf9", size = 8134832 }, + { url = "https://files.pythonhosted.org/packages/c8/f6/10adb696d8cbeed2ab4c2e26ecf1c80dd3847bbf3891f4a0c362e0e08a5a/matplotlib-3.10.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:648406f1899f9a818cef8c0231b44dcfc4ff36f167101c3fd1c9151f24220fdc", size = 8158685 }, + { url = "https://files.pythonhosted.org/packages/3f/84/0603d917406072763e7f9bb37747d3d74d7ecd4b943a8c947cc3ae1cf7af/matplotlib-3.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:02582304e352f40520727984a5a18f37e8187861f954fea9be7ef06569cf85b4", size = 8035491 }, + { url = "https://files.pythonhosted.org/packages/fd/7d/6a8b31dd07ed856b3eae001c9129670ef75c4698fa1c2a6ac9f00a4a7054/matplotlib-3.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3809916157ba871bcdd33d3493acd7fe3037db5daa917ca6e77975a94cef779", size = 8590087 }, +] + +[[package]] +name = "mdit-py-plugins" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/03/a2ecab526543b152300717cf232bb4bb8605b6edb946c845016fa9c9c9fd/mdit_py_plugins-0.4.2.tar.gz", hash = "sha256:5f2cd1fdb606ddf152d37ec30e46101a60512bc0e5fa1a7002c36647b09e26b5", size = 43542 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl", hash = "sha256:0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636", size = 55316 }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, +] + +[[package]] +name = "myst-parser" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "docutils", marker = "python_full_version < '3.10'" }, + { name = "jinja2", marker = "python_full_version < '3.10'" }, + { name = "markdown-it-py", marker = "python_full_version < '3.10'" }, + { name = "mdit-py-plugins", marker = "python_full_version < '3.10'" }, + { name = "pyyaml", marker = "python_full_version < '3.10'" }, + { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/49/64/e2f13dac02f599980798c01156393b781aec983b52a6e4057ee58f07c43a/myst_parser-3.0.1.tar.gz", hash = "sha256:88f0cb406cb363b077d176b51c476f62d60604d68a8dcdf4832e080441301a87", size = 92392 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/de/21aa8394f16add8f7427f0a1326ccd2b3a2a8a3245c9252bc5ac034c6155/myst_parser-3.0.1-py3-none-any.whl", hash = "sha256:6457aaa33a5d474aca678b8ead9b3dc298e89c68e67012e73146ea6fd54babf1", size = 83163 }, +] + +[[package]] +name = "myst-parser" +version = "4.0.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +dependencies = [ + { name = "docutils", marker = "python_full_version >= '3.10'" }, + { name = "jinja2", marker = "python_full_version >= '3.10'" }, + { name = "markdown-it-py", marker = "python_full_version >= '3.10'" }, + { name = "mdit-py-plugins", marker = "python_full_version >= '3.10'" }, + { name = "pyyaml", marker = "python_full_version >= '3.10'" }, + { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/a5/9626ba4f73555b3735ad86247a8077d4603aa8628537687c839ab08bfe44/myst_parser-4.0.1.tar.gz", hash = "sha256:5cfea715e4f3574138aecbf7d54132296bfd72bb614d31168f48c477a830a7c4", size = 93985 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5f/df/76d0321c3797b54b60fef9ec3bd6f4cfd124b9e422182156a1dd418722cf/myst_parser-4.0.1-py3-none-any.whl", hash = "sha256:9134e88959ec3b5780aedf8a99680ea242869d012e8821db3126d427edc9c95d", size = 84579 }, +] + +[[package]] +name = "narwhals" +version = "1.34.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f5/6d/0ad9e8fe41dba509f1c3241a46e52c9677eb9f67f7eb3c8018b1ae088469/narwhals-1.34.1.tar.gz", hash = "sha256:8941a08cf62f39ae67be945090b20a19c51fb9048ac909cad2f95aee23f9e302", size = 265602 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/a2/2ea3f2058ae661b06fad1a14c0f29f1cc8e49478d02a2d68f0eac3872b86/narwhals-1.34.1-py3-none-any.whl", hash = "sha256:aee49a30d1624371ad975ede2bab16cd125ab5df0fd185e2f4757e103b074d27", size = 325548 }, +] + +[[package]] +name = "numpy" +version = "2.0.2" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +sdist = { url = "https://files.pythonhosted.org/packages/a9/75/10dd1f8116a8b796cb2c737b674e02d02e80454bda953fa7e65d8c12b016/numpy-2.0.2.tar.gz", hash = "sha256:883c987dee1880e2a864ab0dc9892292582510604156762362d9326444636e78", size = 18902015 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/21/91/3495b3237510f79f5d81f2508f9f13fea78ebfdf07538fc7444badda173d/numpy-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:51129a29dbe56f9ca83438b706e2e69a39892b5eda6cedcb6b0c9fdc9b0d3ece", size = 21165245 }, + { url = "https://files.pythonhosted.org/packages/05/33/26178c7d437a87082d11019292dce6d3fe6f0e9026b7b2309cbf3e489b1d/numpy-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f15975dfec0cf2239224d80e32c3170b1d168335eaedee69da84fbe9f1f9cd04", size = 13738540 }, + { url = "https://files.pythonhosted.org/packages/ec/31/cc46e13bf07644efc7a4bf68df2df5fb2a1a88d0cd0da9ddc84dc0033e51/numpy-2.0.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8c5713284ce4e282544c68d1c3b2c7161d38c256d2eefc93c1d683cf47683e66", size = 5300623 }, + { url = "https://files.pythonhosted.org/packages/6e/16/7bfcebf27bb4f9d7ec67332ffebee4d1bf085c84246552d52dbb548600e7/numpy-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:becfae3ddd30736fe1889a37f1f580e245ba79a5855bff5f2a29cb3ccc22dd7b", size = 6901774 }, + { url = "https://files.pythonhosted.org/packages/f9/a3/561c531c0e8bf082c5bef509d00d56f82e0ea7e1e3e3a7fc8fa78742a6e5/numpy-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2da5960c3cf0df7eafefd806d4e612c5e19358de82cb3c343631188991566ccd", size = 13907081 }, + { url = "https://files.pythonhosted.org/packages/fa/66/f7177ab331876200ac7563a580140643d1179c8b4b6a6b0fc9838de2a9b8/numpy-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:496f71341824ed9f3d2fd36cf3ac57ae2e0165c143b55c3a035ee219413f3318", size = 19523451 }, + { url = "https://files.pythonhosted.org/packages/25/7f/0b209498009ad6453e4efc2c65bcdf0ae08a182b2b7877d7ab38a92dc542/numpy-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a61ec659f68ae254e4d237816e33171497e978140353c0c2038d46e63282d0c8", size = 19927572 }, + { url = "https://files.pythonhosted.org/packages/3e/df/2619393b1e1b565cd2d4c4403bdd979621e2c4dea1f8532754b2598ed63b/numpy-2.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d731a1c6116ba289c1e9ee714b08a8ff882944d4ad631fd411106a30f083c326", size = 14400722 }, + { url = "https://files.pythonhosted.org/packages/22/ad/77e921b9f256d5da36424ffb711ae79ca3f451ff8489eeca544d0701d74a/numpy-2.0.2-cp310-cp310-win32.whl", hash = "sha256:984d96121c9f9616cd33fbd0618b7f08e0cfc9600a7ee1d6fd9b239186d19d97", size = 6472170 }, + { url = "https://files.pythonhosted.org/packages/10/05/3442317535028bc29cf0c0dd4c191a4481e8376e9f0db6bcf29703cadae6/numpy-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:c7b0be4ef08607dd04da4092faee0b86607f111d5ae68036f16cc787e250a131", size = 15905558 }, + { url = "https://files.pythonhosted.org/packages/8b/cf/034500fb83041aa0286e0fb16e7c76e5c8b67c0711bb6e9e9737a717d5fe/numpy-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:49ca4decb342d66018b01932139c0961a8f9ddc7589611158cb3c27cbcf76448", size = 21169137 }, + { url = "https://files.pythonhosted.org/packages/4a/d9/32de45561811a4b87fbdee23b5797394e3d1504b4a7cf40c10199848893e/numpy-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:11a76c372d1d37437857280aa142086476136a8c0f373b2e648ab2c8f18fb195", size = 13703552 }, + { url = "https://files.pythonhosted.org/packages/c1/ca/2f384720020c7b244d22508cb7ab23d95f179fcfff33c31a6eeba8d6c512/numpy-2.0.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:807ec44583fd708a21d4a11d94aedf2f4f3c3719035c76a2bbe1fe8e217bdc57", size = 5298957 }, + { url = "https://files.pythonhosted.org/packages/0e/78/a3e4f9fb6aa4e6fdca0c5428e8ba039408514388cf62d89651aade838269/numpy-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8cafab480740e22f8d833acefed5cc87ce276f4ece12fdaa2e8903db2f82897a", size = 6905573 }, + { url = "https://files.pythonhosted.org/packages/a0/72/cfc3a1beb2caf4efc9d0b38a15fe34025230da27e1c08cc2eb9bfb1c7231/numpy-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a15f476a45e6e5a3a79d8a14e62161d27ad897381fecfa4a09ed5322f2085669", size = 13914330 }, + { url = "https://files.pythonhosted.org/packages/ba/a8/c17acf65a931ce551fee11b72e8de63bf7e8a6f0e21add4c937c83563538/numpy-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13e689d772146140a252c3a28501da66dfecd77490b498b168b501835041f951", size = 19534895 }, + { url = "https://files.pythonhosted.org/packages/ba/86/8767f3d54f6ae0165749f84648da9dcc8cd78ab65d415494962c86fac80f/numpy-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9ea91dfb7c3d1c56a0e55657c0afb38cf1eeae4544c208dc465c3c9f3a7c09f9", size = 19937253 }, + { url = "https://files.pythonhosted.org/packages/df/87/f76450e6e1c14e5bb1eae6836478b1028e096fd02e85c1c37674606ab752/numpy-2.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c1c9307701fec8f3f7a1e6711f9089c06e6284b3afbbcd259f7791282d660a15", size = 14414074 }, + { url = "https://files.pythonhosted.org/packages/5c/ca/0f0f328e1e59f73754f06e1adfb909de43726d4f24c6a3f8805f34f2b0fa/numpy-2.0.2-cp311-cp311-win32.whl", hash = "sha256:a392a68bd329eafac5817e5aefeb39038c48b671afd242710b451e76090e81f4", size = 6470640 }, + { url = "https://files.pythonhosted.org/packages/eb/57/3a3f14d3a759dcf9bf6e9eda905794726b758819df4663f217d658a58695/numpy-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:286cd40ce2b7d652a6f22efdfc6d1edf879440e53e76a75955bc0c826c7e64dc", size = 15910230 }, + { url = "https://files.pythonhosted.org/packages/45/40/2e117be60ec50d98fa08c2f8c48e09b3edea93cfcabd5a9ff6925d54b1c2/numpy-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:df55d490dea7934f330006d0f81e8551ba6010a5bf035a249ef61a94f21c500b", size = 20895803 }, + { url = "https://files.pythonhosted.org/packages/46/92/1b8b8dee833f53cef3e0a3f69b2374467789e0bb7399689582314df02651/numpy-2.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8df823f570d9adf0978347d1f926b2a867d5608f434a7cff7f7908c6570dcf5e", size = 13471835 }, + { url = "https://files.pythonhosted.org/packages/7f/19/e2793bde475f1edaea6945be141aef6c8b4c669b90c90a300a8954d08f0a/numpy-2.0.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9a92ae5c14811e390f3767053ff54eaee3bf84576d99a2456391401323f4ec2c", size = 5038499 }, + { url = "https://files.pythonhosted.org/packages/e3/ff/ddf6dac2ff0dd50a7327bcdba45cb0264d0e96bb44d33324853f781a8f3c/numpy-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:a842d573724391493a97a62ebbb8e731f8a5dcc5d285dfc99141ca15a3302d0c", size = 6633497 }, + { url = "https://files.pythonhosted.org/packages/72/21/67f36eac8e2d2cd652a2e69595a54128297cdcb1ff3931cfc87838874bd4/numpy-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05e238064fc0610c840d1cf6a13bf63d7e391717d247f1bf0318172e759e692", size = 13621158 }, + { url = "https://files.pythonhosted.org/packages/39/68/e9f1126d757653496dbc096cb429014347a36b228f5a991dae2c6b6cfd40/numpy-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0123ffdaa88fa4ab64835dcbde75dcdf89c453c922f18dced6e27c90d1d0ec5a", size = 19236173 }, + { url = "https://files.pythonhosted.org/packages/d1/e9/1f5333281e4ebf483ba1c888b1d61ba7e78d7e910fdd8e6499667041cc35/numpy-2.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:96a55f64139912d61de9137f11bf39a55ec8faec288c75a54f93dfd39f7eb40c", size = 19634174 }, + { url = "https://files.pythonhosted.org/packages/71/af/a469674070c8d8408384e3012e064299f7a2de540738a8e414dcfd639996/numpy-2.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec9852fb39354b5a45a80bdab5ac02dd02b15f44b3804e9f00c556bf24b4bded", size = 14099701 }, + { url = "https://files.pythonhosted.org/packages/d0/3d/08ea9f239d0e0e939b6ca52ad403c84a2bce1bde301a8eb4888c1c1543f1/numpy-2.0.2-cp312-cp312-win32.whl", hash = "sha256:671bec6496f83202ed2d3c8fdc486a8fc86942f2e69ff0e986140339a63bcbe5", size = 6174313 }, + { url = "https://files.pythonhosted.org/packages/b2/b5/4ac39baebf1fdb2e72585c8352c56d063b6126be9fc95bd2bb5ef5770c20/numpy-2.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:cfd41e13fdc257aa5778496b8caa5e856dc4896d4ccf01841daee1d96465467a", size = 15606179 }, + { url = "https://files.pythonhosted.org/packages/43/c1/41c8f6df3162b0c6ffd4437d729115704bd43363de0090c7f913cfbc2d89/numpy-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9059e10581ce4093f735ed23f3b9d283b9d517ff46009ddd485f1747eb22653c", size = 21169942 }, + { url = "https://files.pythonhosted.org/packages/39/bc/fd298f308dcd232b56a4031fd6ddf11c43f9917fbc937e53762f7b5a3bb1/numpy-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:423e89b23490805d2a5a96fe40ec507407b8ee786d66f7328be214f9679df6dd", size = 13711512 }, + { url = "https://files.pythonhosted.org/packages/96/ff/06d1aa3eeb1c614eda245c1ba4fb88c483bee6520d361641331872ac4b82/numpy-2.0.2-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:2b2955fa6f11907cf7a70dab0d0755159bca87755e831e47932367fc8f2f2d0b", size = 5306976 }, + { url = "https://files.pythonhosted.org/packages/2d/98/121996dcfb10a6087a05e54453e28e58694a7db62c5a5a29cee14c6e047b/numpy-2.0.2-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:97032a27bd9d8988b9a97a8c4d2c9f2c15a81f61e2f21404d7e8ef00cb5be729", size = 6906494 }, + { url = "https://files.pythonhosted.org/packages/15/31/9dffc70da6b9bbf7968f6551967fc21156207366272c2a40b4ed6008dc9b/numpy-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e795a8be3ddbac43274f18588329c72939870a16cae810c2b73461c40718ab1", size = 13912596 }, + { url = "https://files.pythonhosted.org/packages/b9/14/78635daab4b07c0930c919d451b8bf8c164774e6a3413aed04a6d95758ce/numpy-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b258c385842546006213344c50655ff1555a9338e2e5e02a0756dc3e803dd", size = 19526099 }, + { url = "https://files.pythonhosted.org/packages/26/4c/0eeca4614003077f68bfe7aac8b7496f04221865b3a5e7cb230c9d055afd/numpy-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fec9451a7789926bcf7c2b8d187292c9f93ea30284802a0ab3f5be8ab36865d", size = 19932823 }, + { url = "https://files.pythonhosted.org/packages/f1/46/ea25b98b13dccaebddf1a803f8c748680d972e00507cd9bc6dcdb5aa2ac1/numpy-2.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9189427407d88ff25ecf8f12469d4d39d35bee1db5d39fc5c168c6f088a6956d", size = 14404424 }, + { url = "https://files.pythonhosted.org/packages/c8/a6/177dd88d95ecf07e722d21008b1b40e681a929eb9e329684d449c36586b2/numpy-2.0.2-cp39-cp39-win32.whl", hash = "sha256:905d16e0c60200656500c95b6b8dca5d109e23cb24abc701d41c02d74c6b3afa", size = 6476809 }, + { url = "https://files.pythonhosted.org/packages/ea/2b/7fc9f4e7ae5b507c1a3a21f0f15ed03e794c1242ea8a242ac158beb56034/numpy-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:a3f4ab0caa7f053f6797fcd4e1e25caee367db3112ef2b6ef82d749530768c73", size = 15911314 }, + { url = "https://files.pythonhosted.org/packages/8f/3b/df5a870ac6a3be3a86856ce195ef42eec7ae50d2a202be1f5a4b3b340e14/numpy-2.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7f0a0c6f12e07fa94133c8a67404322845220c06a9e80e85999afe727f7438b8", size = 21025288 }, + { url = "https://files.pythonhosted.org/packages/2c/97/51af92f18d6f6f2d9ad8b482a99fb74e142d71372da5d834b3a2747a446e/numpy-2.0.2-pp39-pypy39_pp73-macosx_14_0_x86_64.whl", hash = "sha256:312950fdd060354350ed123c0e25a71327d3711584beaef30cdaa93320c392d4", size = 6762793 }, + { url = "https://files.pythonhosted.org/packages/12/46/de1fbd0c1b5ccaa7f9a005b66761533e2f6a3e560096682683a223631fe9/numpy-2.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26df23238872200f63518dd2aa984cfca675d82469535dc7162dc2ee52d9dd5c", size = 19334885 }, + { url = "https://files.pythonhosted.org/packages/cc/dc/d330a6faefd92b446ec0f0dfea4c3207bb1fef3c4771d19cf4543efd2c78/numpy-2.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a46288ec55ebbd58947d31d72be2c63cbf839f0a63b49cb755022310792a3385", size = 15828784 }, +] + +[[package]] +name = "numpy" +version = "2.2.4" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +sdist = { url = "https://files.pythonhosted.org/packages/e1/78/31103410a57bc2c2b93a3597340a8119588571f6a4539067546cb9a0bfac/numpy-2.2.4.tar.gz", hash = "sha256:9ba03692a45d3eef66559efe1d1096c4b9b75c0986b5dff5530c378fb8331d4f", size = 20270701 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/89/a79e86e5c1433926ed7d60cb267fb64aa578b6101ab645800fd43b4801de/numpy-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8146f3550d627252269ac42ae660281d673eb6f8b32f113538e0cc2a9aed42b9", size = 21250661 }, + { url = "https://files.pythonhosted.org/packages/79/c2/f50921beb8afd60ed9589ad880332cfefdb805422210d327fb48f12b7a81/numpy-2.2.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e642d86b8f956098b564a45e6f6ce68a22c2c97a04f5acd3f221f57b8cb850ae", size = 14389926 }, + { url = "https://files.pythonhosted.org/packages/c7/b9/2c4e96130b0b0f97b0ef4a06d6dae3b39d058b21a5e2fa2decd7fd6b1c8f/numpy-2.2.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:a84eda42bd12edc36eb5b53bbcc9b406820d3353f1994b6cfe453a33ff101775", size = 5428329 }, + { url = "https://files.pythonhosted.org/packages/7f/a5/3d7094aa898f4fc5c84cdfb26beeae780352d43f5d8bdec966c4393d644c/numpy-2.2.4-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:4ba5054787e89c59c593a4169830ab362ac2bee8a969249dc56e5d7d20ff8df9", size = 6963559 }, + { url = "https://files.pythonhosted.org/packages/4c/22/fb1be710a14434c09080dd4a0acc08939f612ec02efcb04b9e210474782d/numpy-2.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7716e4a9b7af82c06a2543c53ca476fa0b57e4d760481273e09da04b74ee6ee2", size = 14368066 }, + { url = "https://files.pythonhosted.org/packages/c2/07/2e5cc71193e3ef3a219ffcf6ca4858e46ea2be09c026ddd480d596b32867/numpy-2.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adf8c1d66f432ce577d0197dceaac2ac00c0759f573f28516246351c58a85020", size = 16417040 }, + { url = "https://files.pythonhosted.org/packages/1a/97/3b1537776ad9a6d1a41813818343745e8dd928a2916d4c9edcd9a8af1dac/numpy-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:218f061d2faa73621fa23d6359442b0fc658d5b9a70801373625d958259eaca3", size = 15879862 }, + { url = "https://files.pythonhosted.org/packages/b0/b7/4472f603dd45ef36ff3d8e84e84fe02d9467c78f92cc121633dce6da307b/numpy-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:df2f57871a96bbc1b69733cd4c51dc33bea66146b8c63cacbfed73eec0883017", size = 18206032 }, + { url = "https://files.pythonhosted.org/packages/0d/bd/6a092963fb82e6c5aa0d0440635827bbb2910da229545473bbb58c537ed3/numpy-2.2.4-cp310-cp310-win32.whl", hash = "sha256:a0258ad1f44f138b791327961caedffbf9612bfa504ab9597157806faa95194a", size = 6608517 }, + { url = "https://files.pythonhosted.org/packages/01/e3/cb04627bc2a1638948bc13e818df26495aa18e20d5be1ed95ab2b10b6847/numpy-2.2.4-cp310-cp310-win_amd64.whl", hash = "sha256:0d54974f9cf14acf49c60f0f7f4084b6579d24d439453d5fc5805d46a165b542", size = 12943498 }, + { url = "https://files.pythonhosted.org/packages/16/fb/09e778ee3a8ea0d4dc8329cca0a9c9e65fed847d08e37eba74cb7ed4b252/numpy-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e9e0a277bb2eb5d8a7407e14688b85fd8ad628ee4e0c7930415687b6564207a4", size = 21254989 }, + { url = "https://files.pythonhosted.org/packages/a2/0a/1212befdbecab5d80eca3cde47d304cad986ad4eec7d85a42e0b6d2cc2ef/numpy-2.2.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9eeea959168ea555e556b8188da5fa7831e21d91ce031e95ce23747b7609f8a4", size = 14425910 }, + { url = "https://files.pythonhosted.org/packages/2b/3e/e7247c1d4f15086bb106c8d43c925b0b2ea20270224f5186fa48d4fb5cbd/numpy-2.2.4-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bd3ad3b0a40e713fc68f99ecfd07124195333f1e689387c180813f0e94309d6f", size = 5426490 }, + { url = "https://files.pythonhosted.org/packages/5d/fa/aa7cd6be51419b894c5787a8a93c3302a1ed4f82d35beb0613ec15bdd0e2/numpy-2.2.4-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:cf28633d64294969c019c6df4ff37f5698e8326db68cc2b66576a51fad634880", size = 6967754 }, + { url = "https://files.pythonhosted.org/packages/d5/ee/96457c943265de9fadeb3d2ffdbab003f7fba13d971084a9876affcda095/numpy-2.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fa8fa7697ad1646b5c93de1719965844e004fcad23c91228aca1cf0800044a1", size = 14373079 }, + { url = "https://files.pythonhosted.org/packages/c5/5c/ceefca458559f0ccc7a982319f37ed07b0d7b526964ae6cc61f8ad1b6119/numpy-2.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f4162988a360a29af158aeb4a2f4f09ffed6a969c9776f8f3bdee9b06a8ab7e5", size = 16428819 }, + { url = "https://files.pythonhosted.org/packages/22/31/9b2ac8eee99e001eb6add9fa27514ef5e9faf176169057a12860af52704c/numpy-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:892c10d6a73e0f14935c31229e03325a7b3093fafd6ce0af704be7f894d95687", size = 15881470 }, + { url = "https://files.pythonhosted.org/packages/f0/dc/8569b5f25ff30484b555ad8a3f537e0225d091abec386c9420cf5f7a2976/numpy-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db1f1c22173ac1c58db249ae48aa7ead29f534b9a948bc56828337aa84a32ed6", size = 18218144 }, + { url = "https://files.pythonhosted.org/packages/5e/05/463c023a39bdeb9bb43a99e7dee2c664cb68d5bb87d14f92482b9f6011cc/numpy-2.2.4-cp311-cp311-win32.whl", hash = "sha256:ea2bb7e2ae9e37d96835b3576a4fa4b3a97592fbea8ef7c3587078b0068b8f09", size = 6606368 }, + { url = "https://files.pythonhosted.org/packages/8b/72/10c1d2d82101c468a28adc35de6c77b308f288cfd0b88e1070f15b98e00c/numpy-2.2.4-cp311-cp311-win_amd64.whl", hash = "sha256:f7de08cbe5551911886d1ab60de58448c6df0f67d9feb7d1fb21e9875ef95e91", size = 12947526 }, + { url = "https://files.pythonhosted.org/packages/a2/30/182db21d4f2a95904cec1a6f779479ea1ac07c0647f064dea454ec650c42/numpy-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a7b9084668aa0f64e64bd00d27ba5146ef1c3a8835f3bd912e7a9e01326804c4", size = 20947156 }, + { url = "https://files.pythonhosted.org/packages/24/6d/9483566acfbda6c62c6bc74b6e981c777229d2af93c8eb2469b26ac1b7bc/numpy-2.2.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:dbe512c511956b893d2dacd007d955a3f03d555ae05cfa3ff1c1ff6df8851854", size = 14133092 }, + { url = "https://files.pythonhosted.org/packages/27/f6/dba8a258acbf9d2bed2525cdcbb9493ef9bae5199d7a9cb92ee7e9b2aea6/numpy-2.2.4-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:bb649f8b207ab07caebba230d851b579a3c8711a851d29efe15008e31bb4de24", size = 5163515 }, + { url = "https://files.pythonhosted.org/packages/62/30/82116199d1c249446723c68f2c9da40d7f062551036f50b8c4caa42ae252/numpy-2.2.4-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:f34dc300df798742b3d06515aa2a0aee20941c13579d7a2f2e10af01ae4901ee", size = 6696558 }, + { url = "https://files.pythonhosted.org/packages/0e/b2/54122b3c6df5df3e87582b2e9430f1bdb63af4023c739ba300164c9ae503/numpy-2.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3f7ac96b16955634e223b579a3e5798df59007ca43e8d451a0e6a50f6bfdfba", size = 14084742 }, + { url = "https://files.pythonhosted.org/packages/02/e2/e2cbb8d634151aab9528ef7b8bab52ee4ab10e076509285602c2a3a686e0/numpy-2.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f92084defa704deadd4e0a5ab1dc52d8ac9e8a8ef617f3fbb853e79b0ea3592", size = 16134051 }, + { url = "https://files.pythonhosted.org/packages/8e/21/efd47800e4affc993e8be50c1b768de038363dd88865920439ef7b422c60/numpy-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7a4e84a6283b36632e2a5b56e121961f6542ab886bc9e12f8f9818b3c266bfbb", size = 15578972 }, + { url = "https://files.pythonhosted.org/packages/04/1e/f8bb88f6157045dd5d9b27ccf433d016981032690969aa5c19e332b138c0/numpy-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:11c43995255eb4127115956495f43e9343736edb7fcdb0d973defd9de14cd84f", size = 17898106 }, + { url = "https://files.pythonhosted.org/packages/2b/93/df59a5a3897c1f036ae8ff845e45f4081bb06943039ae28a3c1c7c780f22/numpy-2.2.4-cp312-cp312-win32.whl", hash = "sha256:65ef3468b53269eb5fdb3a5c09508c032b793da03251d5f8722b1194f1790c00", size = 6311190 }, + { url = "https://files.pythonhosted.org/packages/46/69/8c4f928741c2a8efa255fdc7e9097527c6dc4e4df147e3cadc5d9357ce85/numpy-2.2.4-cp312-cp312-win_amd64.whl", hash = "sha256:2aad3c17ed2ff455b8eaafe06bcdae0062a1db77cb99f4b9cbb5f4ecb13c5146", size = 12644305 }, + { url = "https://files.pythonhosted.org/packages/2a/d0/bd5ad792e78017f5decfb2ecc947422a3669a34f775679a76317af671ffc/numpy-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cf4e5c6a278d620dee9ddeb487dc6a860f9b199eadeecc567f777daace1e9e7", size = 20933623 }, + { url = "https://files.pythonhosted.org/packages/c3/bc/2b3545766337b95409868f8e62053135bdc7fa2ce630aba983a2aa60b559/numpy-2.2.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1974afec0b479e50438fc3648974268f972e2d908ddb6d7fb634598cdb8260a0", size = 14148681 }, + { url = "https://files.pythonhosted.org/packages/6a/70/67b24d68a56551d43a6ec9fe8c5f91b526d4c1a46a6387b956bf2d64744e/numpy-2.2.4-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:79bd5f0a02aa16808fcbc79a9a376a147cc1045f7dfe44c6e7d53fa8b8a79392", size = 5148759 }, + { url = "https://files.pythonhosted.org/packages/1c/8b/e2fc8a75fcb7be12d90b31477c9356c0cbb44abce7ffb36be39a0017afad/numpy-2.2.4-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:3387dd7232804b341165cedcb90694565a6015433ee076c6754775e85d86f1fc", size = 6683092 }, + { url = "https://files.pythonhosted.org/packages/13/73/41b7b27f169ecf368b52533edb72e56a133f9e86256e809e169362553b49/numpy-2.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f527d8fdb0286fd2fd97a2a96c6be17ba4232da346931d967a0630050dfd298", size = 14081422 }, + { url = "https://files.pythonhosted.org/packages/4b/04/e208ff3ae3ddfbafc05910f89546382f15a3f10186b1f56bd99f159689c2/numpy-2.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bce43e386c16898b91e162e5baaad90c4b06f9dcbe36282490032cec98dc8ae7", size = 16132202 }, + { url = "https://files.pythonhosted.org/packages/fe/bc/2218160574d862d5e55f803d88ddcad88beff94791f9c5f86d67bd8fbf1c/numpy-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31504f970f563d99f71a3512d0c01a645b692b12a63630d6aafa0939e52361e6", size = 15573131 }, + { url = "https://files.pythonhosted.org/packages/a5/78/97c775bc4f05abc8a8426436b7cb1be806a02a2994b195945600855e3a25/numpy-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:81413336ef121a6ba746892fad881a83351ee3e1e4011f52e97fba79233611fd", size = 17894270 }, + { url = "https://files.pythonhosted.org/packages/b9/eb/38c06217a5f6de27dcb41524ca95a44e395e6a1decdc0c99fec0832ce6ae/numpy-2.2.4-cp313-cp313-win32.whl", hash = "sha256:f486038e44caa08dbd97275a9a35a283a8f1d2f0ee60ac260a1790e76660833c", size = 6308141 }, + { url = "https://files.pythonhosted.org/packages/52/17/d0dd10ab6d125c6d11ffb6dfa3423c3571befab8358d4f85cd4471964fcd/numpy-2.2.4-cp313-cp313-win_amd64.whl", hash = "sha256:207a2b8441cc8b6a2a78c9ddc64d00d20c303d79fba08c577752f080c4007ee3", size = 12636885 }, + { url = "https://files.pythonhosted.org/packages/fa/e2/793288ede17a0fdc921172916efb40f3cbc2aa97e76c5c84aba6dc7e8747/numpy-2.2.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8120575cb4882318c791f839a4fd66161a6fa46f3f0a5e613071aae35b5dd8f8", size = 20961829 }, + { url = "https://files.pythonhosted.org/packages/3a/75/bb4573f6c462afd1ea5cbedcc362fe3e9bdbcc57aefd37c681be1155fbaa/numpy-2.2.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a761ba0fa886a7bb33c6c8f6f20213735cb19642c580a931c625ee377ee8bd39", size = 14161419 }, + { url = "https://files.pythonhosted.org/packages/03/68/07b4cd01090ca46c7a336958b413cdbe75002286295f2addea767b7f16c9/numpy-2.2.4-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:ac0280f1ba4a4bfff363a99a6aceed4f8e123f8a9b234c89140f5e894e452ecd", size = 5196414 }, + { url = "https://files.pythonhosted.org/packages/a5/fd/d4a29478d622fedff5c4b4b4cedfc37a00691079623c0575978d2446db9e/numpy-2.2.4-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:879cf3a9a2b53a4672a168c21375166171bc3932b7e21f622201811c43cdd3b0", size = 6709379 }, + { url = "https://files.pythonhosted.org/packages/41/78/96dddb75bb9be730b87c72f30ffdd62611aba234e4e460576a068c98eff6/numpy-2.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f05d4198c1bacc9124018109c5fba2f3201dbe7ab6e92ff100494f236209c960", size = 14051725 }, + { url = "https://files.pythonhosted.org/packages/00/06/5306b8199bffac2a29d9119c11f457f6c7d41115a335b78d3f86fad4dbe8/numpy-2.2.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f085ce2e813a50dfd0e01fbfc0c12bbe5d2063d99f8b29da30e544fb6483b8", size = 16101638 }, + { url = "https://files.pythonhosted.org/packages/fa/03/74c5b631ee1ded596945c12027649e6344614144369fd3ec1aaced782882/numpy-2.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:92bda934a791c01d6d9d8e038363c50918ef7c40601552a58ac84c9613a665bc", size = 15571717 }, + { url = "https://files.pythonhosted.org/packages/cb/dc/4fc7c0283abe0981e3b89f9b332a134e237dd476b0c018e1e21083310c31/numpy-2.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ee4d528022f4c5ff67332469e10efe06a267e32f4067dc76bb7e2cddf3cd25ff", size = 17879998 }, + { url = "https://files.pythonhosted.org/packages/e5/2b/878576190c5cfa29ed896b518cc516aecc7c98a919e20706c12480465f43/numpy-2.2.4-cp313-cp313t-win32.whl", hash = "sha256:05c076d531e9998e7e694c36e8b349969c56eadd2cdcd07242958489d79a7286", size = 6366896 }, + { url = "https://files.pythonhosted.org/packages/3e/05/eb7eec66b95cf697f08c754ef26c3549d03ebd682819f794cb039574a0a6/numpy-2.2.4-cp313-cp313t-win_amd64.whl", hash = "sha256:188dcbca89834cc2e14eb2f106c96d6d46f200fe0200310fc29089657379c58d", size = 12739119 }, + { url = "https://files.pythonhosted.org/packages/b2/5c/f09c33a511aff41a098e6ef3498465d95f6360621034a3d95f47edbc9119/numpy-2.2.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7051ee569db5fbac144335e0f3b9c2337e0c8d5c9fee015f259a5bd70772b7e8", size = 21081956 }, + { url = "https://files.pythonhosted.org/packages/ba/30/74c48b3b6494c4b820b7fa1781d441e94d87a08daa5b35d222f06ba41a6f/numpy-2.2.4-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:ab2939cd5bec30a7430cbdb2287b63151b77cf9624de0532d629c9a1c59b1d5c", size = 6827143 }, + { url = "https://files.pythonhosted.org/packages/54/f5/ab0d2f48b490535c7a80e05da4a98902b632369efc04f0e47bb31ca97d8f/numpy-2.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0f35b19894a9e08639fd60a1ec1978cb7f5f7f1eace62f38dd36be8aecdef4d", size = 16233350 }, + { url = "https://files.pythonhosted.org/packages/3b/3a/2f6d8c1f8e45d496bca6baaec93208035faeb40d5735c25afac092ec9a12/numpy-2.2.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b4adfbbc64014976d2f91084915ca4e626fbf2057fb81af209c1a6d776d23e3d", size = 12857565 }, +] + +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, +] + +[[package]] +name = "pillow" +version = "11.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/cb/bb5c01fcd2a69335b86c22142b2bccfc3464087efb7fd382eee5ffc7fdf7/pillow-11.2.1.tar.gz", hash = "sha256:a64dd61998416367b7ef979b73d3a85853ba9bec4c2925f74e588879a58716b6", size = 47026707 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/8b/b158ad57ed44d3cc54db8d68ad7c0a58b8fc0e4c7a3f995f9d62d5b464a1/pillow-11.2.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:d57a75d53922fc20c165016a20d9c44f73305e67c351bbc60d1adaf662e74047", size = 3198442 }, + { url = "https://files.pythonhosted.org/packages/b1/f8/bb5d956142f86c2d6cc36704943fa761f2d2e4c48b7436fd0a85c20f1713/pillow-11.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:127bf6ac4a5b58b3d32fc8289656f77f80567d65660bc46f72c0d77e6600cc95", size = 3030553 }, + { url = "https://files.pythonhosted.org/packages/22/7f/0e413bb3e2aa797b9ca2c5c38cb2e2e45d88654e5b12da91ad446964cfae/pillow-11.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ba4be812c7a40280629e55ae0b14a0aafa150dd6451297562e1764808bbe61", size = 4405503 }, + { url = "https://files.pythonhosted.org/packages/f3/b4/cc647f4d13f3eb837d3065824aa58b9bcf10821f029dc79955ee43f793bd/pillow-11.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8bd62331e5032bc396a93609982a9ab6b411c05078a52f5fe3cc59234a3abd1", size = 4490648 }, + { url = "https://files.pythonhosted.org/packages/c2/6f/240b772a3b35cdd7384166461567aa6713799b4e78d180c555bd284844ea/pillow-11.2.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:562d11134c97a62fe3af29581f083033179f7ff435f78392565a1ad2d1c2c45c", size = 4508937 }, + { url = "https://files.pythonhosted.org/packages/f3/5e/7ca9c815ade5fdca18853db86d812f2f188212792780208bdb37a0a6aef4/pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c97209e85b5be259994eb5b69ff50c5d20cca0f458ef9abd835e262d9d88b39d", size = 4599802 }, + { url = "https://files.pythonhosted.org/packages/02/81/c3d9d38ce0c4878a77245d4cf2c46d45a4ad0f93000227910a46caff52f3/pillow-11.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0c3e6d0f59171dfa2e25d7116217543310908dfa2770aa64b8f87605f8cacc97", size = 4576717 }, + { url = "https://files.pythonhosted.org/packages/42/49/52b719b89ac7da3185b8d29c94d0e6aec8140059e3d8adcaa46da3751180/pillow-11.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc1c3bc53befb6096b84165956e886b1729634a799e9d6329a0c512ab651e579", size = 4654874 }, + { url = "https://files.pythonhosted.org/packages/5b/0b/ede75063ba6023798267023dc0d0401f13695d228194d2242d5a7ba2f964/pillow-11.2.1-cp310-cp310-win32.whl", hash = "sha256:312c77b7f07ab2139924d2639860e084ec2a13e72af54d4f08ac843a5fc9c79d", size = 2331717 }, + { url = "https://files.pythonhosted.org/packages/ed/3c/9831da3edea527c2ed9a09f31a2c04e77cd705847f13b69ca60269eec370/pillow-11.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9bc7ae48b8057a611e5fe9f853baa88093b9a76303937449397899385da06fad", size = 2676204 }, + { url = "https://files.pythonhosted.org/packages/01/97/1f66ff8a1503d8cbfc5bae4dc99d54c6ec1e22ad2b946241365320caabc2/pillow-11.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:2728567e249cdd939f6cc3d1f049595c66e4187f3c34078cbc0a7d21c47482d2", size = 2414767 }, + { url = "https://files.pythonhosted.org/packages/68/08/3fbf4b98924c73037a8e8b4c2c774784805e0fb4ebca6c5bb60795c40125/pillow-11.2.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35ca289f712ccfc699508c4658a1d14652e8033e9b69839edf83cbdd0ba39e70", size = 3198450 }, + { url = "https://files.pythonhosted.org/packages/84/92/6505b1af3d2849d5e714fc75ba9e69b7255c05ee42383a35a4d58f576b16/pillow-11.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0409af9f829f87a2dfb7e259f78f317a5351f2045158be321fd135973fff7bf", size = 3030550 }, + { url = "https://files.pythonhosted.org/packages/3c/8c/ac2f99d2a70ff966bc7eb13dacacfaab57c0549b2ffb351b6537c7840b12/pillow-11.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4e5c5edee874dce4f653dbe59db7c73a600119fbea8d31f53423586ee2aafd7", size = 4415018 }, + { url = "https://files.pythonhosted.org/packages/1f/e3/0a58b5d838687f40891fff9cbaf8669f90c96b64dc8f91f87894413856c6/pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b93a07e76d13bff9444f1a029e0af2964e654bfc2e2c2d46bfd080df5ad5f3d8", size = 4498006 }, + { url = "https://files.pythonhosted.org/packages/21/f5/6ba14718135f08fbfa33308efe027dd02b781d3f1d5c471444a395933aac/pillow-11.2.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e6def7eed9e7fa90fde255afaf08060dc4b343bbe524a8f69bdd2a2f0018f600", size = 4517773 }, + { url = "https://files.pythonhosted.org/packages/20/f2/805ad600fc59ebe4f1ba6129cd3a75fb0da126975c8579b8f57abeb61e80/pillow-11.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8f4f3724c068be008c08257207210c138d5f3731af6c155a81c2b09a9eb3a788", size = 4607069 }, + { url = "https://files.pythonhosted.org/packages/71/6b/4ef8a288b4bb2e0180cba13ca0a519fa27aa982875882392b65131401099/pillow-11.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0a6709b47019dff32e678bc12c63008311b82b9327613f534e496dacaefb71e", size = 4583460 }, + { url = "https://files.pythonhosted.org/packages/62/ae/f29c705a09cbc9e2a456590816e5c234382ae5d32584f451c3eb41a62062/pillow-11.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f6b0c664ccb879109ee3ca702a9272d877f4fcd21e5eb63c26422fd6e415365e", size = 4661304 }, + { url = "https://files.pythonhosted.org/packages/6e/1a/c8217b6f2f73794a5e219fbad087701f412337ae6dbb956db37d69a9bc43/pillow-11.2.1-cp311-cp311-win32.whl", hash = "sha256:cc5d875d56e49f112b6def6813c4e3d3036d269c008bf8aef72cd08d20ca6df6", size = 2331809 }, + { url = "https://files.pythonhosted.org/packages/e2/72/25a8f40170dc262e86e90f37cb72cb3de5e307f75bf4b02535a61afcd519/pillow-11.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:0f5c7eda47bf8e3c8a283762cab94e496ba977a420868cb819159980b6709193", size = 2676338 }, + { url = "https://files.pythonhosted.org/packages/06/9e/76825e39efee61efea258b479391ca77d64dbd9e5804e4ad0fa453b4ba55/pillow-11.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:4d375eb838755f2528ac8cbc926c3e31cc49ca4ad0cf79cff48b20e30634a4a7", size = 2414918 }, + { url = "https://files.pythonhosted.org/packages/c7/40/052610b15a1b8961f52537cc8326ca6a881408bc2bdad0d852edeb6ed33b/pillow-11.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:78afba22027b4accef10dbd5eed84425930ba41b3ea0a86fa8d20baaf19d807f", size = 3190185 }, + { url = "https://files.pythonhosted.org/packages/e5/7e/b86dbd35a5f938632093dc40d1682874c33dcfe832558fc80ca56bfcb774/pillow-11.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78092232a4ab376a35d68c4e6d5e00dfd73454bd12b230420025fbe178ee3b0b", size = 3030306 }, + { url = "https://files.pythonhosted.org/packages/a4/5c/467a161f9ed53e5eab51a42923c33051bf8d1a2af4626ac04f5166e58e0c/pillow-11.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25a5f306095c6780c52e6bbb6109624b95c5b18e40aab1c3041da3e9e0cd3e2d", size = 4416121 }, + { url = "https://files.pythonhosted.org/packages/62/73/972b7742e38ae0e2ac76ab137ca6005dcf877480da0d9d61d93b613065b4/pillow-11.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c7b29dbd4281923a2bfe562acb734cee96bbb129e96e6972d315ed9f232bef4", size = 4501707 }, + { url = "https://files.pythonhosted.org/packages/e4/3a/427e4cb0b9e177efbc1a84798ed20498c4f233abde003c06d2650a6d60cb/pillow-11.2.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e645b020f3209a0181a418bffe7b4a93171eef6c4ef6cc20980b30bebf17b7d", size = 4522921 }, + { url = "https://files.pythonhosted.org/packages/fe/7c/d8b1330458e4d2f3f45d9508796d7caf0c0d3764c00c823d10f6f1a3b76d/pillow-11.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2dbea1012ccb784a65349f57bbc93730b96e85b42e9bf7b01ef40443db720b4", size = 4612523 }, + { url = "https://files.pythonhosted.org/packages/b3/2f/65738384e0b1acf451de5a573d8153fe84103772d139e1e0bdf1596be2ea/pillow-11.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:da3104c57bbd72948d75f6a9389e6727d2ab6333c3617f0a89d72d4940aa0443", size = 4587836 }, + { url = "https://files.pythonhosted.org/packages/6a/c5/e795c9f2ddf3debb2dedd0df889f2fe4b053308bb59a3cc02a0cd144d641/pillow-11.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:598174aef4589af795f66f9caab87ba4ff860ce08cd5bb447c6fc553ffee603c", size = 4669390 }, + { url = "https://files.pythonhosted.org/packages/96/ae/ca0099a3995976a9fce2f423166f7bff9b12244afdc7520f6ed38911539a/pillow-11.2.1-cp312-cp312-win32.whl", hash = "sha256:1d535df14716e7f8776b9e7fee118576d65572b4aad3ed639be9e4fa88a1cad3", size = 2332309 }, + { url = "https://files.pythonhosted.org/packages/7c/18/24bff2ad716257fc03da964c5e8f05d9790a779a8895d6566e493ccf0189/pillow-11.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:14e33b28bf17c7a38eede290f77db7c664e4eb01f7869e37fa98a5aa95978941", size = 2676768 }, + { url = "https://files.pythonhosted.org/packages/da/bb/e8d656c9543276517ee40184aaa39dcb41e683bca121022f9323ae11b39d/pillow-11.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:21e1470ac9e5739ff880c211fc3af01e3ae505859392bf65458c224d0bf283eb", size = 2415087 }, + { url = "https://files.pythonhosted.org/packages/36/9c/447528ee3776e7ab8897fe33697a7ff3f0475bb490c5ac1456a03dc57956/pillow-11.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fdec757fea0b793056419bca3e9932eb2b0ceec90ef4813ea4c1e072c389eb28", size = 3190098 }, + { url = "https://files.pythonhosted.org/packages/b5/09/29d5cd052f7566a63e5b506fac9c60526e9ecc553825551333e1e18a4858/pillow-11.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b0e130705d568e2f43a17bcbe74d90958e8a16263868a12c3e0d9c8162690830", size = 3030166 }, + { url = "https://files.pythonhosted.org/packages/71/5d/446ee132ad35e7600652133f9c2840b4799bbd8e4adba881284860da0a36/pillow-11.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bdb5e09068332578214cadd9c05e3d64d99e0e87591be22a324bdbc18925be0", size = 4408674 }, + { url = "https://files.pythonhosted.org/packages/69/5f/cbe509c0ddf91cc3a03bbacf40e5c2339c4912d16458fcb797bb47bcb269/pillow-11.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d189ba1bebfbc0c0e529159631ec72bb9e9bc041f01ec6d3233d6d82eb823bc1", size = 4496005 }, + { url = "https://files.pythonhosted.org/packages/f9/b3/dd4338d8fb8a5f312021f2977fb8198a1184893f9b00b02b75d565c33b51/pillow-11.2.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:191955c55d8a712fab8934a42bfefbf99dd0b5875078240943f913bb66d46d9f", size = 4518707 }, + { url = "https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:ad275964d52e2243430472fc5d2c2334b4fc3ff9c16cb0a19254e25efa03a155", size = 4610008 }, + { url = "https://files.pythonhosted.org/packages/72/d1/924ce51bea494cb6e7959522d69d7b1c7e74f6821d84c63c3dc430cbbf3b/pillow-11.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:750f96efe0597382660d8b53e90dd1dd44568a8edb51cb7f9d5d918b80d4de14", size = 4585420 }, + { url = "https://files.pythonhosted.org/packages/43/ab/8f81312d255d713b99ca37479a4cb4b0f48195e530cdc1611990eb8fd04b/pillow-11.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fe15238d3798788d00716637b3d4e7bb6bde18b26e5d08335a96e88564a36b6b", size = 4667655 }, + { url = "https://files.pythonhosted.org/packages/94/86/8f2e9d2dc3d308dfd137a07fe1cc478df0a23d42a6c4093b087e738e4827/pillow-11.2.1-cp313-cp313-win32.whl", hash = "sha256:3fe735ced9a607fee4f481423a9c36701a39719252a9bb251679635f99d0f7d2", size = 2332329 }, + { url = "https://files.pythonhosted.org/packages/6d/ec/1179083b8d6067a613e4d595359b5fdea65d0a3b7ad623fee906e1b3c4d2/pillow-11.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:74ee3d7ecb3f3c05459ba95eed5efa28d6092d751ce9bf20e3e253a4e497e691", size = 2676388 }, + { url = "https://files.pythonhosted.org/packages/23/f1/2fc1e1e294de897df39fa8622d829b8828ddad938b0eaea256d65b84dd72/pillow-11.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:5119225c622403afb4b44bad4c1ca6c1f98eed79db8d3bc6e4e160fc6339d66c", size = 2414950 }, + { url = "https://files.pythonhosted.org/packages/c4/3e/c328c48b3f0ead7bab765a84b4977acb29f101d10e4ef57a5e3400447c03/pillow-11.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8ce2e8411c7aaef53e6bb29fe98f28cd4fbd9a1d9be2eeea434331aac0536b22", size = 3192759 }, + { url = "https://files.pythonhosted.org/packages/18/0e/1c68532d833fc8b9f404d3a642991441d9058eccd5606eab31617f29b6d4/pillow-11.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9ee66787e095127116d91dea2143db65c7bb1e232f617aa5957c0d9d2a3f23a7", size = 3033284 }, + { url = "https://files.pythonhosted.org/packages/b7/cb/6faf3fb1e7705fd2db74e070f3bf6f88693601b0ed8e81049a8266de4754/pillow-11.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9622e3b6c1d8b551b6e6f21873bdcc55762b4b2126633014cea1803368a9aa16", size = 4445826 }, + { url = "https://files.pythonhosted.org/packages/07/94/8be03d50b70ca47fb434a358919d6a8d6580f282bbb7af7e4aa40103461d/pillow-11.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63b5dff3a68f371ea06025a1a6966c9a1e1ee452fc8020c2cd0ea41b83e9037b", size = 4527329 }, + { url = "https://files.pythonhosted.org/packages/fd/a4/bfe78777076dc405e3bd2080bc32da5ab3945b5a25dc5d8acaa9de64a162/pillow-11.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:31df6e2d3d8fc99f993fd253e97fae451a8db2e7207acf97859732273e108406", size = 4549049 }, + { url = "https://files.pythonhosted.org/packages/65/4d/eaf9068dc687c24979e977ce5677e253624bd8b616b286f543f0c1b91662/pillow-11.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:062b7a42d672c45a70fa1f8b43d1d38ff76b63421cbbe7f88146b39e8a558d91", size = 4635408 }, + { url = "https://files.pythonhosted.org/packages/1d/26/0fd443365d9c63bc79feb219f97d935cd4b93af28353cba78d8e77b61719/pillow-11.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4eb92eca2711ef8be42fd3f67533765d9fd043b8c80db204f16c8ea62ee1a751", size = 4614863 }, + { url = "https://files.pythonhosted.org/packages/49/65/dca4d2506be482c2c6641cacdba5c602bc76d8ceb618fd37de855653a419/pillow-11.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f91ebf30830a48c825590aede79376cb40f110b387c17ee9bd59932c961044f9", size = 4692938 }, + { url = "https://files.pythonhosted.org/packages/b3/92/1ca0c3f09233bd7decf8f7105a1c4e3162fb9142128c74adad0fb361b7eb/pillow-11.2.1-cp313-cp313t-win32.whl", hash = "sha256:e0b55f27f584ed623221cfe995c912c61606be8513bfa0e07d2c674b4516d9dd", size = 2335774 }, + { url = "https://files.pythonhosted.org/packages/a5/ac/77525347cb43b83ae905ffe257bbe2cc6fd23acb9796639a1f56aa59d191/pillow-11.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:36d6b82164c39ce5482f649b437382c0fb2395eabc1e2b1702a6deb8ad647d6e", size = 2681895 }, + { url = "https://files.pythonhosted.org/packages/67/32/32dc030cfa91ca0fc52baebbba2e009bb001122a1daa8b6a79ad830b38d3/pillow-11.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:225c832a13326e34f212d2072982bb1adb210e0cc0b153e688743018c94a2681", size = 2417234 }, + { url = "https://files.pythonhosted.org/packages/21/3a/c1835d1c7cf83559e95b4f4ed07ab0bb7acc689712adfce406b3f456e9fd/pillow-11.2.1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:7491cf8a79b8eb867d419648fff2f83cb0b3891c8b36da92cc7f1931d46108c8", size = 3198391 }, + { url = "https://files.pythonhosted.org/packages/b6/4d/dcb7a9af3fc1e8653267c38ed622605d9d1793349274b3ef7af06457e257/pillow-11.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b02d8f9cb83c52578a0b4beadba92e37d83a4ef11570a8688bbf43f4ca50909", size = 3030573 }, + { url = "https://files.pythonhosted.org/packages/9d/29/530ca098c1a1eb31d4e163d317d0e24e6d2ead907991c69ca5b663de1bc5/pillow-11.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:014ca0050c85003620526b0ac1ac53f56fc93af128f7546623cc8e31875ab928", size = 4398677 }, + { url = "https://files.pythonhosted.org/packages/8b/ee/0e5e51db34de1690264e5f30dcd25328c540aa11d50a3bc0b540e2a445b6/pillow-11.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3692b68c87096ac6308296d96354eddd25f98740c9d2ab54e1549d6c8aea9d79", size = 4484986 }, + { url = "https://files.pythonhosted.org/packages/93/7d/bc723b41ce3d2c28532c47678ec988974f731b5c6fadd5b3a4fba9015e4f/pillow-11.2.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:f781dcb0bc9929adc77bad571b8621ecb1e4cdef86e940fe2e5b5ee24fd33b35", size = 4501897 }, + { url = "https://files.pythonhosted.org/packages/be/0b/532e31abc7389617ddff12551af625a9b03cd61d2989fa595e43c470ec67/pillow-11.2.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:2b490402c96f907a166615e9a5afacf2519e28295f157ec3a2bb9bd57de638cb", size = 4592618 }, + { url = "https://files.pythonhosted.org/packages/4c/f0/21ed6499a6216fef753e2e2254a19d08bff3747108ba042422383f3e9faa/pillow-11.2.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dd6b20b93b3ccc9c1b597999209e4bc5cf2853f9ee66e3fc9a400a78733ffc9a", size = 4570493 }, + { url = "https://files.pythonhosted.org/packages/68/de/17004ddb8ab855573fe1127ab0168d11378cdfe4a7ee2a792a70ff2e9ba7/pillow-11.2.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4b835d89c08a6c2ee7781b8dd0a30209a8012b5f09c0a665b65b0eb3560b6f36", size = 4647748 }, + { url = "https://files.pythonhosted.org/packages/c7/23/82ecb486384bb3578115c509d4a00bb52f463ee700a5ca1be53da3c88c19/pillow-11.2.1-cp39-cp39-win32.whl", hash = "sha256:b10428b3416d4f9c61f94b494681280be7686bda15898a3a9e08eb66a6d92d67", size = 2331731 }, + { url = "https://files.pythonhosted.org/packages/58/bb/87efd58b3689537a623d44dbb2550ef0bb5ff6a62769707a0fe8b1a7bdeb/pillow-11.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:6ebce70c3f486acf7591a3d73431fa504a4e18a9b97ff27f5f47b7368e4b9dd1", size = 2676346 }, + { url = "https://files.pythonhosted.org/packages/80/08/dc268475b22887b816e5dcfae31bce897f524b4646bab130c2142c9b2400/pillow-11.2.1-cp39-cp39-win_arm64.whl", hash = "sha256:c27476257b2fdcd7872d54cfd119b3a9ce4610fb85c8e32b70b42e3680a29a1e", size = 2414623 }, + { url = "https://files.pythonhosted.org/packages/33/49/c8c21e4255b4f4a2c0c68ac18125d7f5460b109acc6dfdef1a24f9b960ef/pillow-11.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:9b7b0d4fd2635f54ad82785d56bc0d94f147096493a79985d0ab57aedd563156", size = 3181727 }, + { url = "https://files.pythonhosted.org/packages/6d/f1/f7255c0838f8c1ef6d55b625cfb286835c17e8136ce4351c5577d02c443b/pillow-11.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:aa442755e31c64037aa7c1cb186e0b369f8416c567381852c63444dd666fb772", size = 2999833 }, + { url = "https://files.pythonhosted.org/packages/e2/57/9968114457bd131063da98d87790d080366218f64fa2943b65ac6739abb3/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d3348c95b766f54b76116d53d4cb171b52992a1027e7ca50c81b43b9d9e363", size = 3437472 }, + { url = "https://files.pythonhosted.org/packages/b2/1b/e35d8a158e21372ecc48aac9c453518cfe23907bb82f950d6e1c72811eb0/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d27ea4c889342f7e35f6d56e7e1cb345632ad592e8c51b693d7b7556043ce0", size = 3459976 }, + { url = "https://files.pythonhosted.org/packages/26/da/2c11d03b765efff0ccc473f1c4186dc2770110464f2177efaed9cf6fae01/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:bf2c33d6791c598142f00c9c4c7d47f6476731c31081331664eb26d6ab583e01", size = 3527133 }, + { url = "https://files.pythonhosted.org/packages/79/1a/4e85bd7cadf78412c2a3069249a09c32ef3323650fd3005c97cca7aa21df/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e616e7154c37669fc1dfc14584f11e284e05d1c650e1c0f972f281c4ccc53193", size = 3571555 }, + { url = "https://files.pythonhosted.org/packages/69/03/239939915216de1e95e0ce2334bf17a7870ae185eb390fab6d706aadbfc0/pillow-11.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39ad2e0f424394e3aebc40168845fee52df1394a4673a6ee512d840d14ab3013", size = 2674713 }, + { url = "https://files.pythonhosted.org/packages/a4/ad/2613c04633c7257d9481ab21d6b5364b59fc5d75faafd7cb8693523945a3/pillow-11.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:80f1df8dbe9572b4b7abdfa17eb5d78dd620b1d55d9e25f834efdbee872d3aed", size = 3181734 }, + { url = "https://files.pythonhosted.org/packages/a4/fd/dcdda4471ed667de57bb5405bb42d751e6cfdd4011a12c248b455c778e03/pillow-11.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ea926cfbc3957090becbcbbb65ad177161a2ff2ad578b5a6ec9bb1e1cd78753c", size = 2999841 }, + { url = "https://files.pythonhosted.org/packages/ac/89/8a2536e95e77432833f0db6fd72a8d310c8e4272a04461fb833eb021bf94/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:738db0e0941ca0376804d4de6a782c005245264edaa253ffce24e5a15cbdc7bd", size = 3437470 }, + { url = "https://files.pythonhosted.org/packages/9d/8f/abd47b73c60712f88e9eda32baced7bfc3e9bd6a7619bb64b93acff28c3e/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db98ab6565c69082ec9b0d4e40dd9f6181dab0dd236d26f7a50b8b9bfbd5076", size = 3460013 }, + { url = "https://files.pythonhosted.org/packages/f6/20/5c0a0aa83b213b7a07ec01e71a3d6ea2cf4ad1d2c686cc0168173b6089e7/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:036e53f4170e270ddb8797d4c590e6dd14d28e15c7da375c18978045f7e6c37b", size = 3527165 }, + { url = "https://files.pythonhosted.org/packages/58/0e/2abab98a72202d91146abc839e10c14f7cf36166f12838ea0c4db3ca6ecb/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:14f73f7c291279bd65fda51ee87affd7c1e097709f7fdd0188957a16c264601f", size = 3571586 }, + { url = "https://files.pythonhosted.org/packages/21/2c/5e05f58658cf49b6667762cca03d6e7d85cededde2caf2ab37b81f80e574/pillow-11.2.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:208653868d5c9ecc2b327f9b9ef34e0e42a4cdd172c2988fd81d62d2bc9bc044", size = 2674751 }, +] + +[[package]] +name = "plotly" +version = "6.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "narwhals" }, + { name = "packaging" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/cc/e41b5f697ae403f0b50e47b7af2e36642a193085f553bf7cc1169362873a/plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b", size = 8094643 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/65/ad2bc85f7377f5cfba5d4466d5474423a3fb7f6a97fd807c06f92dd3e721/plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768", size = 14805757 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + +[[package]] +name = "pygments" +version = "2.19.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 }, +] + +[[package]] +name = "pyparsing" +version = "3.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120 }, +] + +[[package]] +name = "pytest" +version = "8.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/3c/c9d525a414d506893f0cd8a8d0de7706446213181570cdbd766691164e40/pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845", size = 1450891 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/30/3d/64ad57c803f1fa1e963a7946b6e0fea4a70df53c1a7fed304586539c2bac/pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820", size = 343634 }, +] + +[[package]] +name = "pytest-cov" +version = "6.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coverage", extra = ["toml"] }, + { name = "pytest" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/69/5f1e57f6c5a39f81411b550027bf72842c4567ff5fd572bed1edc9e4b5d9/pytest_cov-6.1.1.tar.gz", hash = "sha256:46935f7aaefba760e716c2ebfbe1c216240b9592966e7da99ea8292d4d3e2a0a", size = 66857 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/28/d0/def53b4a790cfb21483016430ed828f64830dd981ebe1089971cd10cab25/pytest_cov-6.1.1-py3-none-any.whl", hash = "sha256:bddf29ed2d0ab6f4df17b4c55b0a657287db8684af9c42ea546b21b1041b3dde", size = 23841 }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199 }, + { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758 }, + { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463 }, + { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280 }, + { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239 }, + { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802 }, + { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527 }, + { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052 }, + { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774 }, + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, + { url = "https://files.pythonhosted.org/packages/65/d8/b7a1db13636d7fb7d4ff431593c510c8b8fca920ade06ca8ef20015493c5/PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", size = 184777 }, + { url = "https://files.pythonhosted.org/packages/0a/02/6ec546cd45143fdf9840b2c6be8d875116a64076218b61d68e12548e5839/PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", size = 172318 }, + { url = "https://files.pythonhosted.org/packages/0e/9a/8cc68be846c972bda34f6c2a93abb644fb2476f4dcc924d52175786932c9/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", size = 720891 }, + { url = "https://files.pythonhosted.org/packages/e9/6c/6e1b7f40181bc4805e2e07f4abc10a88ce4648e7e95ff1abe4ae4014a9b2/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", size = 722614 }, + { url = "https://files.pythonhosted.org/packages/3d/32/e7bd8535d22ea2874cef6a81021ba019474ace0d13a4819c2a4bce79bd6a/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", size = 737360 }, + { url = "https://files.pythonhosted.org/packages/d7/12/7322c1e30b9be969670b672573d45479edef72c9a0deac3bb2868f5d7469/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", size = 699006 }, + { url = "https://files.pythonhosted.org/packages/82/72/04fcad41ca56491995076630c3ec1e834be241664c0c09a64c9a2589b507/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", size = 723577 }, + { url = "https://files.pythonhosted.org/packages/ed/5e/46168b1f2757f1fcd442bc3029cd8767d88a98c9c05770d8b420948743bb/PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", size = 144593 }, + { url = "https://files.pythonhosted.org/packages/19/87/5124b1c1f2412bb95c59ec481eaf936cd32f0fe2a7b16b97b81c4c017a6a/PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", size = 162312 }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + +[[package]] +name = "roman-numerals-py" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/76/48fd56d17c5bdbdf65609abbc67288728a98ed4c02919428d4f52d23b24b/roman_numerals_py-3.1.0.tar.gz", hash = "sha256:be4bf804f083a4ce001b5eb7e3c0862479d10f94c936f6c4e5f250aa5ff5bd2d", size = 9017 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/97/d2cbbaa10c9b826af0e10fdf836e1bf344d9f0abb873ebc34d1f49642d3f/roman_numerals_py-3.1.0-py3-none-any.whl", hash = "sha256:9da2ad2fb670bcf24e81070ceb3be72f6c11c440d73bd579fbeca1e9f330954c", size = 7742 }, +] + +[[package]] +name = "scipy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/00/48c2f661e2816ccf2ecd77982f6605b2950afe60f60a52b4cbbc2504aa8f/scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", size = 57210720 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/59/41b2529908c002ade869623b87eecff3e11e3ce62e996d0bdcb536984187/scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", size = 39328076 }, + { url = "https://files.pythonhosted.org/packages/d5/33/f1307601f492f764062ce7dd471a14750f3360e33cd0f8c614dae208492c/scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", size = 30306232 }, + { url = "https://files.pythonhosted.org/packages/c0/66/9cd4f501dd5ea03e4a4572ecd874936d0da296bd04d1c45ae1a4a75d9c3a/scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", size = 33743202 }, + { url = "https://files.pythonhosted.org/packages/a3/ba/7255e5dc82a65adbe83771c72f384d99c43063648456796436c9a5585ec3/scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f", size = 38577335 }, + { url = "https://files.pythonhosted.org/packages/49/a5/bb9ded8326e9f0cdfdc412eeda1054b914dfea952bda2097d174f8832cc0/scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", size = 38820728 }, + { url = "https://files.pythonhosted.org/packages/12/30/df7a8fcc08f9b4a83f5f27cfaaa7d43f9a2d2ad0b6562cced433e5b04e31/scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", size = 46210588 }, + { url = "https://files.pythonhosted.org/packages/b4/15/4a4bb1b15bbd2cd2786c4f46e76b871b28799b67891f23f455323a0cdcfb/scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", size = 39333805 }, + { url = "https://files.pythonhosted.org/packages/ba/92/42476de1af309c27710004f5cdebc27bec62c204db42e05b23a302cb0c9a/scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", size = 30317687 }, + { url = "https://files.pythonhosted.org/packages/80/ba/8be64fe225360a4beb6840f3cbee494c107c0887f33350d0a47d55400b01/scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", size = 33694638 }, + { url = "https://files.pythonhosted.org/packages/36/07/035d22ff9795129c5a847c64cb43c1fa9188826b59344fee28a3ab02e283/scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", size = 38569931 }, + { url = "https://files.pythonhosted.org/packages/d9/10/f9b43de37e5ed91facc0cfff31d45ed0104f359e4f9a68416cbf4e790241/scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", size = 38838145 }, + { url = "https://files.pythonhosted.org/packages/4a/48/4513a1a5623a23e95f94abd675ed91cfb19989c58e9f6f7d03990f6caf3d/scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", size = 46196227 }, + { url = "https://files.pythonhosted.org/packages/f2/7b/fb6b46fbee30fc7051913068758414f2721003a89dd9a707ad49174e3843/scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", size = 39357301 }, + { url = "https://files.pythonhosted.org/packages/dc/5a/2043a3bde1443d94014aaa41e0b50c39d046dda8360abd3b2a1d3f79907d/scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", size = 30363348 }, + { url = "https://files.pythonhosted.org/packages/e7/cb/26e4a47364bbfdb3b7fb3363be6d8a1c543bcd70a7753ab397350f5f189a/scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", size = 33406062 }, + { url = "https://files.pythonhosted.org/packages/88/ab/6ecdc526d509d33814835447bbbeedbebdec7cca46ef495a61b00a35b4bf/scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", size = 38218311 }, + { url = "https://files.pythonhosted.org/packages/0b/00/9f54554f0f8318100a71515122d8f4f503b1a2c4b4cfab3b4b68c0eb08fa/scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", size = 38442493 }, + { url = "https://files.pythonhosted.org/packages/3e/df/963384e90733e08eac978cd103c34df181d1fec424de383cdc443f418dd4/scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", size = 45910955 }, + { url = "https://files.pythonhosted.org/packages/7f/29/c2ea58c9731b9ecb30b6738113a95d147e83922986b34c685b8f6eefde21/scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", size = 39352927 }, + { url = "https://files.pythonhosted.org/packages/5c/c0/e71b94b20ccf9effb38d7147c0064c08c622309fd487b1b677771a97d18c/scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", size = 30324538 }, + { url = "https://files.pythonhosted.org/packages/6d/0f/aaa55b06d474817cea311e7b10aab2ea1fd5d43bc6a2861ccc9caec9f418/scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", size = 33732190 }, + { url = "https://files.pythonhosted.org/packages/35/f5/d0ad1a96f80962ba65e2ce1de6a1e59edecd1f0a7b55990ed208848012e0/scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", size = 38612244 }, + { url = "https://files.pythonhosted.org/packages/8d/02/1165905f14962174e6569076bcc3315809ae1291ed14de6448cc151eedfd/scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", size = 38845637 }, + { url = "https://files.pythonhosted.org/packages/3e/77/dab54fe647a08ee4253963bcd8f9cf17509c8ca64d6335141422fe2e2114/scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", size = 46227440 }, +] + +[[package]] +name = "scipy" +version = "1.15.2" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", + "python_full_version == '3.10.*'", +] +dependencies = [ + { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/b9/31ba9cd990e626574baf93fbc1ac61cf9ed54faafd04c479117517661637/scipy-1.15.2.tar.gz", hash = "sha256:cd58a314d92838f7e6f755c8a2167ead4f27e1fd5c1251fd54289569ef3495ec", size = 59417316 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/df/ef233fff6838fe6f7840d69b5ef9f20d2b5c912a8727b21ebf876cb15d54/scipy-1.15.2-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a2ec871edaa863e8213ea5df811cd600734f6400b4af272e1c011e69401218e9", size = 38692502 }, + { url = "https://files.pythonhosted.org/packages/5c/20/acdd4efb8a68b842968f7bc5611b1aeb819794508771ad104de418701422/scipy-1.15.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:6f223753c6ea76983af380787611ae1291e3ceb23917393079dcc746ba60cfb5", size = 30085508 }, + { url = "https://files.pythonhosted.org/packages/42/55/39cf96ca7126f1e78ee72a6344ebdc6702fc47d037319ad93221063e6cf4/scipy-1.15.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:ecf797d2d798cf7c838c6d98321061eb3e72a74710e6c40540f0e8087e3b499e", size = 22359166 }, + { url = "https://files.pythonhosted.org/packages/51/48/708d26a4ab8a1441536bf2dfcad1df0ca14a69f010fba3ccbdfc02df7185/scipy-1.15.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:9b18aa747da280664642997e65aab1dd19d0c3d17068a04b3fe34e2559196cb9", size = 25112047 }, + { url = "https://files.pythonhosted.org/packages/dd/65/f9c5755b995ad892020381b8ae11f16d18616208e388621dfacc11df6de6/scipy-1.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87994da02e73549dfecaed9e09a4f9d58a045a053865679aeb8d6d43747d4df3", size = 35536214 }, + { url = "https://files.pythonhosted.org/packages/de/3c/c96d904b9892beec978562f64d8cc43f9cca0842e65bd3cd1b7f7389b0ba/scipy-1.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69ea6e56d00977f355c0f84eba69877b6df084516c602d93a33812aa04d90a3d", size = 37646981 }, + { url = "https://files.pythonhosted.org/packages/3d/74/c2d8a24d18acdeae69ed02e132b9bc1bb67b7bee90feee1afe05a68f9d67/scipy-1.15.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:888307125ea0c4466287191e5606a2c910963405ce9671448ff9c81c53f85f58", size = 37230048 }, + { url = "https://files.pythonhosted.org/packages/42/19/0aa4ce80eca82d487987eff0bc754f014dec10d20de2f66754fa4ea70204/scipy-1.15.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9412f5e408b397ff5641080ed1e798623dbe1ec0d78e72c9eca8992976fa65aa", size = 40010322 }, + { url = "https://files.pythonhosted.org/packages/d0/d2/f0683b7e992be44d1475cc144d1f1eeae63c73a14f862974b4db64af635e/scipy-1.15.2-cp310-cp310-win_amd64.whl", hash = "sha256:b5e025e903b4f166ea03b109bb241355b9c42c279ea694d8864d033727205e65", size = 41233385 }, + { url = "https://files.pythonhosted.org/packages/40/1f/bf0a5f338bda7c35c08b4ed0df797e7bafe8a78a97275e9f439aceb46193/scipy-1.15.2-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:92233b2df6938147be6fa8824b8136f29a18f016ecde986666be5f4d686a91a4", size = 38703651 }, + { url = "https://files.pythonhosted.org/packages/de/54/db126aad3874601048c2c20ae3d8a433dbfd7ba8381551e6f62606d9bd8e/scipy-1.15.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:62ca1ff3eb513e09ed17a5736929429189adf16d2d740f44e53270cc800ecff1", size = 30102038 }, + { url = "https://files.pythonhosted.org/packages/61/d8/84da3fffefb6c7d5a16968fe5b9f24c98606b165bb801bb0b8bc3985200f/scipy-1.15.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:4c6676490ad76d1c2894d77f976144b41bd1a4052107902238047fb6a473e971", size = 22375518 }, + { url = "https://files.pythonhosted.org/packages/44/78/25535a6e63d3b9c4c90147371aedb5d04c72f3aee3a34451f2dc27c0c07f/scipy-1.15.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:a8bf5cb4a25046ac61d38f8d3c3426ec11ebc350246a4642f2f315fe95bda655", size = 25142523 }, + { url = "https://files.pythonhosted.org/packages/e0/22/4b4a26fe1cd9ed0bc2b2cb87b17d57e32ab72c346949eaf9288001f8aa8e/scipy-1.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a8e34cf4c188b6dd004654f88586d78f95639e48a25dfae9c5e34a6dc34547e", size = 35491547 }, + { url = "https://files.pythonhosted.org/packages/32/ea/564bacc26b676c06a00266a3f25fdfe91a9d9a2532ccea7ce6dd394541bc/scipy-1.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28a0d2c2075946346e4408b211240764759e0fabaeb08d871639b5f3b1aca8a0", size = 37634077 }, + { url = "https://files.pythonhosted.org/packages/43/c2/bfd4e60668897a303b0ffb7191e965a5da4056f0d98acfb6ba529678f0fb/scipy-1.15.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:42dabaaa798e987c425ed76062794e93a243be8f0f20fff6e7a89f4d61cb3d40", size = 37231657 }, + { url = "https://files.pythonhosted.org/packages/4a/75/5f13050bf4f84c931bcab4f4e83c212a36876c3c2244475db34e4b5fe1a6/scipy-1.15.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6f5e296ec63c5da6ba6fa0343ea73fd51b8b3e1a300b0a8cae3ed4b1122c7462", size = 40035857 }, + { url = "https://files.pythonhosted.org/packages/b9/8b/7ec1832b09dbc88f3db411f8cdd47db04505c4b72c99b11c920a8f0479c3/scipy-1.15.2-cp311-cp311-win_amd64.whl", hash = "sha256:597a0c7008b21c035831c39927406c6181bcf8f60a73f36219b69d010aa04737", size = 41217654 }, + { url = "https://files.pythonhosted.org/packages/4b/5d/3c78815cbab499610f26b5bae6aed33e227225a9fa5290008a733a64f6fc/scipy-1.15.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c4697a10da8f8765bb7c83e24a470da5797e37041edfd77fd95ba3811a47c4fd", size = 38756184 }, + { url = "https://files.pythonhosted.org/packages/37/20/3d04eb066b471b6e171827548b9ddb3c21c6bbea72a4d84fc5989933910b/scipy-1.15.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:869269b767d5ee7ea6991ed7e22b3ca1f22de73ab9a49c44bad338b725603301", size = 30163558 }, + { url = "https://files.pythonhosted.org/packages/a4/98/e5c964526c929ef1f795d4c343b2ff98634ad2051bd2bbadfef9e772e413/scipy-1.15.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:bad78d580270a4d32470563ea86c6590b465cb98f83d760ff5b0990cb5518a93", size = 22437211 }, + { url = "https://files.pythonhosted.org/packages/1d/cd/1dc7371e29195ecbf5222f9afeedb210e0a75057d8afbd942aa6cf8c8eca/scipy-1.15.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:b09ae80010f52efddb15551025f9016c910296cf70adbf03ce2a8704f3a5ad20", size = 25232260 }, + { url = "https://files.pythonhosted.org/packages/f0/24/1a181a9e5050090e0b5138c5f496fee33293c342b788d02586bc410c6477/scipy-1.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a6fd6eac1ce74a9f77a7fc724080d507c5812d61e72bd5e4c489b042455865e", size = 35198095 }, + { url = "https://files.pythonhosted.org/packages/c0/53/eaada1a414c026673eb983f8b4a55fe5eb172725d33d62c1b21f63ff6ca4/scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b871df1fe1a3ba85d90e22742b93584f8d2b8e6124f8372ab15c71b73e428b8", size = 37297371 }, + { url = "https://files.pythonhosted.org/packages/e9/06/0449b744892ed22b7e7b9a1994a866e64895363572677a316a9042af1fe5/scipy-1.15.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:03205d57a28e18dfd39f0377d5002725bf1f19a46f444108c29bdb246b6c8a11", size = 36872390 }, + { url = "https://files.pythonhosted.org/packages/6a/6f/a8ac3cfd9505ec695c1bc35edc034d13afbd2fc1882a7c6b473e280397bb/scipy-1.15.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:601881dfb761311045b03114c5fe718a12634e5608c3b403737ae463c9885d53", size = 39700276 }, + { url = "https://files.pythonhosted.org/packages/f5/6f/e6e5aff77ea2a48dd96808bb51d7450875af154ee7cbe72188afb0b37929/scipy-1.15.2-cp312-cp312-win_amd64.whl", hash = "sha256:e7c68b6a43259ba0aab737237876e5c2c549a031ddb7abc28c7b47f22e202ded", size = 40942317 }, + { url = "https://files.pythonhosted.org/packages/53/40/09319f6e0f276ea2754196185f95cd191cb852288440ce035d5c3a931ea2/scipy-1.15.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01edfac9f0798ad6b46d9c4c9ca0e0ad23dbf0b1eb70e96adb9fa7f525eff0bf", size = 38717587 }, + { url = "https://files.pythonhosted.org/packages/fe/c3/2854f40ecd19585d65afaef601e5e1f8dbf6758b2f95b5ea93d38655a2c6/scipy-1.15.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:08b57a9336b8e79b305a143c3655cc5bdbe6d5ece3378578888d2afbb51c4e37", size = 30100266 }, + { url = "https://files.pythonhosted.org/packages/dd/b1/f9fe6e3c828cb5930b5fe74cb479de5f3d66d682fa8adb77249acaf545b8/scipy-1.15.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:54c462098484e7466362a9f1672d20888f724911a74c22ae35b61f9c5919183d", size = 22373768 }, + { url = "https://files.pythonhosted.org/packages/15/9d/a60db8c795700414c3f681908a2b911e031e024d93214f2d23c6dae174ab/scipy-1.15.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:cf72ff559a53a6a6d77bd8eefd12a17995ffa44ad86c77a5df96f533d4e6c6bb", size = 25154719 }, + { url = "https://files.pythonhosted.org/packages/37/3b/9bda92a85cd93f19f9ed90ade84aa1e51657e29988317fabdd44544f1dd4/scipy-1.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9de9d1416b3d9e7df9923ab23cd2fe714244af10b763975bea9e4f2e81cebd27", size = 35163195 }, + { url = "https://files.pythonhosted.org/packages/03/5a/fc34bf1aa14dc7c0e701691fa8685f3faec80e57d816615e3625f28feb43/scipy-1.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb530e4794fc8ea76a4a21ccb67dea33e5e0e60f07fc38a49e821e1eae3b71a0", size = 37255404 }, + { url = "https://files.pythonhosted.org/packages/4a/71/472eac45440cee134c8a180dbe4c01b3ec247e0338b7c759e6cd71f199a7/scipy-1.15.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5ea7ed46d437fc52350b028b1d44e002646e28f3e8ddc714011aaf87330f2f32", size = 36860011 }, + { url = "https://files.pythonhosted.org/packages/01/b3/21f890f4f42daf20e4d3aaa18182dddb9192771cd47445aaae2e318f6738/scipy-1.15.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11e7ad32cf184b74380f43d3c0a706f49358b904fa7d5345f16ddf993609184d", size = 39657406 }, + { url = "https://files.pythonhosted.org/packages/0d/76/77cf2ac1f2a9cc00c073d49e1e16244e389dd88e2490c91d84e1e3e4d126/scipy-1.15.2-cp313-cp313-win_amd64.whl", hash = "sha256:a5080a79dfb9b78b768cebf3c9dcbc7b665c5875793569f48bf0e2b1d7f68f6f", size = 40961243 }, + { url = "https://files.pythonhosted.org/packages/4c/4b/a57f8ddcf48e129e6054fa9899a2a86d1fc6b07a0e15c7eebff7ca94533f/scipy-1.15.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:447ce30cee6a9d5d1379087c9e474628dab3db4a67484be1b7dc3196bfb2fac9", size = 38870286 }, + { url = "https://files.pythonhosted.org/packages/0c/43/c304d69a56c91ad5f188c0714f6a97b9c1fed93128c691148621274a3a68/scipy-1.15.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:c90ebe8aaa4397eaefa8455a8182b164a6cc1d59ad53f79943f266d99f68687f", size = 30141634 }, + { url = "https://files.pythonhosted.org/packages/44/1a/6c21b45d2548eb73be9b9bff421aaaa7e85e22c1f9b3bc44b23485dfce0a/scipy-1.15.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:def751dd08243934c884a3221156d63e15234a3155cf25978b0a668409d45eb6", size = 22415179 }, + { url = "https://files.pythonhosted.org/packages/74/4b/aefac4bba80ef815b64f55da06f62f92be5d03b467f2ce3668071799429a/scipy-1.15.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:302093e7dfb120e55515936cb55618ee0b895f8bcaf18ff81eca086c17bd80af", size = 25126412 }, + { url = "https://files.pythonhosted.org/packages/b1/53/1cbb148e6e8f1660aacd9f0a9dfa2b05e9ff1cb54b4386fe868477972ac2/scipy-1.15.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd5b77413e1855351cdde594eca99c1f4a588c2d63711388b6a1f1c01f62274", size = 34952867 }, + { url = "https://files.pythonhosted.org/packages/2c/23/e0eb7f31a9c13cf2dca083828b97992dd22f8184c6ce4fec5deec0c81fcf/scipy-1.15.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d0194c37037707b2afa7a2f2a924cf7bac3dc292d51b6a925e5fcb89bc5c776", size = 36890009 }, + { url = "https://files.pythonhosted.org/packages/03/f3/e699e19cabe96bbac5189c04aaa970718f0105cff03d458dc5e2b6bd1e8c/scipy-1.15.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:bae43364d600fdc3ac327db99659dcb79e6e7ecd279a75fe1266669d9a652828", size = 36545159 }, + { url = "https://files.pythonhosted.org/packages/af/f5/ab3838e56fe5cc22383d6fcf2336e48c8fe33e944b9037fbf6cbdf5a11f8/scipy-1.15.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f031846580d9acccd0044efd1a90e6f4df3a6e12b4b6bd694a7bc03a89892b28", size = 39136566 }, + { url = "https://files.pythonhosted.org/packages/0a/c8/b3f566db71461cabd4b2d5b39bcc24a7e1c119535c8361f81426be39bb47/scipy-1.15.2-cp313-cp313t-win_amd64.whl", hash = "sha256:fe8a9eb875d430d81755472c5ba75e84acc980e4a8f6204d402849234d3017db", size = 40477705 }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 }, +] + +[[package]] +name = "snowballstemmer" +version = "2.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/44/7b/af302bebf22c749c56c9c3e8ae13190b5b5db37a33d9068652e8f73b7089/snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1", size = 86699 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a", size = 93002 }, +] + +[[package]] +name = "soupsieve" +version = "2.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/ce/fbaeed4f9fb8b2daa961f90591662df6a86c1abf25c548329a86920aedfb/soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb", size = 101569 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9", size = 36186 }, +] + +[[package]] +name = "sphinx" +version = "7.4.7" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "alabaster", version = "0.7.16", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "babel", marker = "python_full_version < '3.10'" }, + { name = "colorama", marker = "python_full_version < '3.10' and sys_platform == 'win32'" }, + { name = "docutils", marker = "python_full_version < '3.10'" }, + { name = "imagesize", marker = "python_full_version < '3.10'" }, + { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "jinja2", marker = "python_full_version < '3.10'" }, + { name = "packaging", marker = "python_full_version < '3.10'" }, + { name = "pygments", marker = "python_full_version < '3.10'" }, + { name = "requests", marker = "python_full_version < '3.10'" }, + { name = "snowballstemmer", marker = "python_full_version < '3.10'" }, + { name = "sphinxcontrib-applehelp", marker = "python_full_version < '3.10'" }, + { name = "sphinxcontrib-devhelp", marker = "python_full_version < '3.10'" }, + { name = "sphinxcontrib-htmlhelp", marker = "python_full_version < '3.10'" }, + { name = "sphinxcontrib-jsmath", marker = "python_full_version < '3.10'" }, + { name = "sphinxcontrib-qthelp", marker = "python_full_version < '3.10'" }, + { name = "sphinxcontrib-serializinghtml", marker = "python_full_version < '3.10'" }, + { name = "tomli", marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/be/50e50cb4f2eff47df05673d361095cafd95521d2a22521b920c67a372dcb/sphinx-7.4.7.tar.gz", hash = "sha256:242f92a7ea7e6c5b406fdc2615413890ba9f699114a9c09192d7dfead2ee9cfe", size = 8067911 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/ef/153f6803c5d5f8917dbb7f7fcf6d34a871ede3296fa89c2c703f5f8a6c8e/sphinx-7.4.7-py3-none-any.whl", hash = "sha256:c2419e2135d11f1951cd994d6eb18a1835bd8fdd8429f9ca375dc1f3281bd239", size = 3401624 }, +] + +[[package]] +name = "sphinx" +version = "8.1.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version == '3.10.*'", +] +dependencies = [ + { name = "alabaster", version = "1.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "babel", marker = "python_full_version == '3.10.*'" }, + { name = "colorama", marker = "python_full_version == '3.10.*' and sys_platform == 'win32'" }, + { name = "docutils", marker = "python_full_version == '3.10.*'" }, + { name = "imagesize", marker = "python_full_version == '3.10.*'" }, + { name = "jinja2", marker = "python_full_version == '3.10.*'" }, + { name = "packaging", marker = "python_full_version == '3.10.*'" }, + { name = "pygments", marker = "python_full_version == '3.10.*'" }, + { name = "requests", marker = "python_full_version == '3.10.*'" }, + { name = "snowballstemmer", marker = "python_full_version == '3.10.*'" }, + { name = "sphinxcontrib-applehelp", marker = "python_full_version == '3.10.*'" }, + { name = "sphinxcontrib-devhelp", marker = "python_full_version == '3.10.*'" }, + { name = "sphinxcontrib-htmlhelp", marker = "python_full_version == '3.10.*'" }, + { name = "sphinxcontrib-jsmath", marker = "python_full_version == '3.10.*'" }, + { name = "sphinxcontrib-qthelp", marker = "python_full_version == '3.10.*'" }, + { name = "sphinxcontrib-serializinghtml", marker = "python_full_version == '3.10.*'" }, + { name = "tomli", marker = "python_full_version == '3.10.*'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125 }, +] + +[[package]] +name = "sphinx" +version = "8.2.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", +] +dependencies = [ + { name = "alabaster", version = "1.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "babel", marker = "python_full_version >= '3.11'" }, + { name = "colorama", marker = "python_full_version >= '3.11' and sys_platform == 'win32'" }, + { name = "docutils", marker = "python_full_version >= '3.11'" }, + { name = "imagesize", marker = "python_full_version >= '3.11'" }, + { name = "jinja2", marker = "python_full_version >= '3.11'" }, + { name = "packaging", marker = "python_full_version >= '3.11'" }, + { name = "pygments", marker = "python_full_version >= '3.11'" }, + { name = "requests", marker = "python_full_version >= '3.11'" }, + { name = "roman-numerals-py", marker = "python_full_version >= '3.11'" }, + { name = "snowballstemmer", marker = "python_full_version >= '3.11'" }, + { name = "sphinxcontrib-applehelp", marker = "python_full_version >= '3.11'" }, + { name = "sphinxcontrib-devhelp", marker = "python_full_version >= '3.11'" }, + { name = "sphinxcontrib-htmlhelp", marker = "python_full_version >= '3.11'" }, + { name = "sphinxcontrib-jsmath", marker = "python_full_version >= '3.11'" }, + { name = "sphinxcontrib-qthelp", marker = "python_full_version >= '3.11'" }, + { name = "sphinxcontrib-serializinghtml", marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/ad/4360e50ed56cb483667b8e6dadf2d3fda62359593faabbe749a27c4eaca6/sphinx-8.2.3.tar.gz", hash = "sha256:398ad29dee7f63a75888314e9424d40f52ce5a6a87ae88e7071e80af296ec348", size = 8321876 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/53/136e9eca6e0b9dc0e1962e2c908fbea2e5ac000c2a2fbd9a35797958c48b/sphinx-8.2.3-py3-none-any.whl", hash = "sha256:4405915165f13521d875a8c29c8970800a0141c14cc5416a38feca4ea5d9b9c3", size = 3589741 }, +] + +[[package]] +name = "sphinx-autodoc-typehints" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version < '3.10'", +] +dependencies = [ + { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/74/cd/03e7b917230dc057922130a79ba0240df1693bfd76727ea33fae84b39138/sphinx_autodoc_typehints-2.3.0.tar.gz", hash = "sha256:535c78ed2d6a1bad393ba9f3dfa2602cf424e2631ee207263e07874c38fde084", size = 40709 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/f3/e0a4ce49da4b6f4e4ce84b3c39a0677831884cb9d8a87ccbf1e9e56e53ac/sphinx_autodoc_typehints-2.3.0-py3-none-any.whl", hash = "sha256:3098e2c6d0ba99eacd013eb06861acc9b51c6e595be86ab05c08ee5506ac0c67", size = 19836 }, +] + +[[package]] +name = "sphinx-autodoc-typehints" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version == '3.10.*'", +] +dependencies = [ + { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/26/f0/43c6a5ff3e7b08a8c3b32f81b859f1b518ccc31e45f22e2b41ced38be7b9/sphinx_autodoc_typehints-3.0.1.tar.gz", hash = "sha256:b9b40dd15dee54f6f810c924f863f9cf1c54f9f3265c495140ea01be7f44fa55", size = 36282 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/dc/dc46c5c7c566b7ec5e8f860f9c89533bf03c0e6aadc96fb9b337867e4460/sphinx_autodoc_typehints-3.0.1-py3-none-any.whl", hash = "sha256:4b64b676a14b5b79cefb6628a6dc8070e320d4963e8ff640a2f3e9390ae9045a", size = 20245 }, +] + +[[package]] +name = "sphinx-autodoc-typehints" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.11'", +] +dependencies = [ + { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cb/cc/d38e7260b1bd3af0c84ad8285dfd78236584b74544510584e07963e000ec/sphinx_autodoc_typehints-3.1.0.tar.gz", hash = "sha256:a6b7b0b6df0a380783ce5b29150c2d30352746f027a3e294d37183995d3f23ed", size = 36528 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/2f/bc5bed0677ae00b9ca7919968ea675e2f696b6b20f1648262f26a7a6c6b4/sphinx_autodoc_typehints-3.1.0-py3-none-any.whl", hash = "sha256:67bdee7e27ba943976ce92ebc5647a976a7a08f9f689a826c54617b96a423913", size = 20404 }, +] + +[[package]] +name = "sphinx-basic-ng" +version = "1.0.0b2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/98/0b/a866924ded68efec7a1759587a4e478aec7559d8165fac8b2ad1c0e774d6/sphinx_basic_ng-1.0.0b2.tar.gz", hash = "sha256:9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9", size = 20736 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/dd/018ce05c532a22007ac58d4f45232514cd9d6dd0ee1dc374e309db830983/sphinx_basic_ng-1.0.0b2-py3-none-any.whl", hash = "sha256:eb09aedbabfb650607e9b4b68c9d240b90b1e1be221d6ad71d61c52e29f7932b", size = 22496 }, +] + +[[package]] +name = "sphinx-copybutton" +version = "0.5.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, + { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fc/2b/a964715e7f5295f77509e59309959f4125122d648f86b4fe7d70ca1d882c/sphinx-copybutton-0.5.2.tar.gz", hash = "sha256:4cf17c82fb9646d1bc9ca92ac280813a3b605d8c421225fd9913154103ee1fbd", size = 23039 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/48/1ea60e74949eecb12cdd6ac43987f9fd331156388dcc2319b45e2ebb81bf/sphinx_copybutton-0.5.2-py3-none-any.whl", hash = "sha256:fb543fd386d917746c9a2c50360c7905b605726b9355cd26e9974857afeae06e", size = 13343 }, +] + +[[package]] +name = "sphinxcontrib-applehelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300 }, +] + +[[package]] +name = "sphinxcontrib-devhelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530 }, +] + +[[package]] +name = "sphinxcontrib-htmlhelp" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705 }, +] + +[[package]] +name = "sphinxcontrib-jsmath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071 }, +] + +[[package]] +name = "sphinxcontrib-qthelp" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743 }, +] + +[[package]] +name = "sphinxcontrib-serializinghtml" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072 }, +] + +[[package]] +name = "tomli" +version = "2.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249", size = 131077 }, + { url = "https://files.pythonhosted.org/packages/c7/16/51ae563a8615d472fdbffc43a3f3d46588c264ac4f024f63f01283becfbb/tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6", size = 123429 }, + { url = "https://files.pythonhosted.org/packages/f1/dd/4f6cd1e7b160041db83c694abc78e100473c15d54620083dbd5aae7b990e/tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a", size = 226067 }, + { url = "https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee", size = 236030 }, + { url = "https://files.pythonhosted.org/packages/1f/47/999514fa49cfaf7a92c805a86c3c43f4215621855d151b61c602abb38091/tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e", size = 240898 }, + { url = "https://files.pythonhosted.org/packages/73/41/0a01279a7ae09ee1573b423318e7934674ce06eb33f50936655071d81a24/tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4", size = 229894 }, + { url = "https://files.pythonhosted.org/packages/55/18/5d8bc5b0a0362311ce4d18830a5d28943667599a60d20118074ea1b01bb7/tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106", size = 245319 }, + { url = "https://files.pythonhosted.org/packages/92/a3/7ade0576d17f3cdf5ff44d61390d4b3febb8a9fc2b480c75c47ea048c646/tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8", size = 238273 }, + { url = "https://files.pythonhosted.org/packages/72/6f/fa64ef058ac1446a1e51110c375339b3ec6be245af9d14c87c4a6412dd32/tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff", size = 98310 }, + { url = "https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b", size = 108309 }, + { url = "https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea", size = 132762 }, + { url = "https://files.pythonhosted.org/packages/03/b8/152c68bb84fc00396b83e7bbddd5ec0bd3dd409db4195e2a9b3e398ad2e3/tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8", size = 123453 }, + { url = "https://files.pythonhosted.org/packages/c8/d6/fc9267af9166f79ac528ff7e8c55c8181ded34eb4b0e93daa767b8841573/tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192", size = 233486 }, + { url = "https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222", size = 242349 }, + { url = "https://files.pythonhosted.org/packages/ab/df/bfa89627d13a5cc22402e441e8a931ef2108403db390ff3345c05253935e/tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77", size = 252159 }, + { url = "https://files.pythonhosted.org/packages/9e/6e/fa2b916dced65763a5168c6ccb91066f7639bdc88b48adda990db10c8c0b/tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6", size = 237243 }, + { url = "https://files.pythonhosted.org/packages/b4/04/885d3b1f650e1153cbb93a6a9782c58a972b94ea4483ae4ac5cedd5e4a09/tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd", size = 259645 }, + { url = "https://files.pythonhosted.org/packages/9c/de/6b432d66e986e501586da298e28ebeefd3edc2c780f3ad73d22566034239/tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e", size = 244584 }, + { url = "https://files.pythonhosted.org/packages/1c/9a/47c0449b98e6e7d1be6cbac02f93dd79003234ddc4aaab6ba07a9a7482e2/tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98", size = 98875 }, + { url = "https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4", size = 109418 }, + { url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708 }, + { url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582 }, + { url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543 }, + { url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691 }, + { url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170 }, + { url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530 }, + { url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666 }, + { url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954 }, + { url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724 }, + { url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383 }, + { url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257 }, +] + +[[package]] +name = "typing-extensions" +version = "4.13.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz", hash = "sha256:e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef", size = 106967 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/54/b1ae86c0973cc6f0210b53d508ca3641fb6d0c56823f288d108bc7ab3cc8/typing_extensions-4.13.2-py3-none-any.whl", hash = "sha256:a439e7c04b49fec3e5d3e2beaa21755cadbbdc391694e28ccdd36ca4a1408f8c", size = 45806 }, +] + +[[package]] +name = "urllib3" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz", hash = "sha256:414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466", size = 390672 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl", hash = "sha256:4e16665048960a0900c702d4a66415956a584919c03361cac9f1df5c5dd7e813", size = 128680 }, +] + +[[package]] +name = "win32-setctime" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b3/8f/705086c9d734d3b663af0e9bb3d4de6578d08f46b1b101c2442fd9aecaa2/win32_setctime-1.2.0.tar.gz", hash = "sha256:ae1fdf948f5640aae05c511ade119313fb6a30d7eabe25fef9764dca5873c4c0", size = 4867 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/07/c6fe3ad3e685340704d314d765b7912993bcb8dc198f0e7a89382d37974b/win32_setctime-1.2.0-py3-none-any.whl", hash = "sha256:95d644c4e708aba81dc3704a116d8cbc974d70b3bdb8be1d150e36be6e9d1390", size = 4083 }, +] + +[[package]] +name = "zipp" +version = "3.21.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/50/bad581df71744867e9468ebd0bcd6505de3b275e06f202c2cb016e3ff56f/zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4", size = 24545 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/1a/7e4798e9339adc931158c9d69ecc34f5e6791489d469f5e50ec15e35f458/zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931", size = 9630 }, +] From 066748ac7700efa859478cb6ade52f700edc5849 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 20:57:05 +0200 Subject: [PATCH 12/51] remove uv.lock --- uv.lock | 1892 ------------------------------------------------------- 1 file changed, 1892 deletions(-) delete mode 100644 uv.lock diff --git a/uv.lock b/uv.lock deleted file mode 100644 index f0005bf..0000000 --- a/uv.lock +++ /dev/null @@ -1,1892 +0,0 @@ -version = 1 -revision = 1 -requires-python = ">=3.9" -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", - "python_full_version < '3.10'", -] - -[[package]] -name = "alabaster" -version = "0.7.16" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/c9/3e/13dd8e5ed9094e734ac430b5d0eb4f2bb001708a8b7856cbf8e084e001ba/alabaster-0.7.16.tar.gz", hash = "sha256:75a8b99c28a5dad50dd7f8ccdd447a121ddb3892da9e53d1ca5cca3106d58d65", size = 23776 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/32/34/d4e1c02d3bee589efb5dfa17f88ea08bdb3e3eac12bc475462aec52ed223/alabaster-0.7.16-py3-none-any.whl", hash = "sha256:b46733c07dce03ae4e150330b975c75737fa60f0a7c591b6c8bf4928a28e2c92", size = 13511 }, -] - -[[package]] -name = "alabaster" -version = "1.0.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929 }, -] - -[[package]] -name = "babel" -version = "2.17.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7d/6b/d52e42361e1aa00709585ecc30b3f9684b3ab62530771402248b1b1d6240/babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d", size = 9951852 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2", size = 10182537 }, -] - -[[package]] -name = "beautifulsoup4" -version = "4.13.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "soupsieve" }, - { name = "typing-extensions" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f0/3c/adaf39ce1fb4afdd21b611e3d530b183bb7759c9b673d60db0e347fd4439/beautifulsoup4-4.13.3.tar.gz", hash = "sha256:1bd32405dacc920b42b83ba01644747ed77456a65760e285fbc47633ceddaf8b", size = 619516 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f9/49/6abb616eb3cbab6a7cca303dc02fdf3836de2e0b834bf966a7f5271a34d8/beautifulsoup4-4.13.3-py3-none-any.whl", hash = "sha256:99045d7d3f08f91f0d656bc9b7efbae189426cd913d830294a15eefa0ea4df16", size = 186015 }, -] - -[[package]] -name = "certifi" -version = "2025.1.31" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 }, -] - -[[package]] -name = "charset-normalizer" -version = "3.4.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0d/58/5580c1716040bc89206c77d8f74418caf82ce519aae06450393ca73475d1/charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de", size = 198013 }, - { url = "https://files.pythonhosted.org/packages/d0/11/00341177ae71c6f5159a08168bcb98c6e6d196d372c94511f9f6c9afe0c6/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176", size = 141285 }, - { url = "https://files.pythonhosted.org/packages/01/09/11d684ea5819e5a8f5100fb0b38cf8d02b514746607934134d31233e02c8/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037", size = 151449 }, - { url = "https://files.pythonhosted.org/packages/08/06/9f5a12939db324d905dc1f70591ae7d7898d030d7662f0d426e2286f68c9/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f", size = 143892 }, - { url = "https://files.pythonhosted.org/packages/93/62/5e89cdfe04584cb7f4d36003ffa2936681b03ecc0754f8e969c2becb7e24/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a", size = 146123 }, - { url = "https://files.pythonhosted.org/packages/a9/ac/ab729a15c516da2ab70a05f8722ecfccc3f04ed7a18e45c75bbbaa347d61/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a", size = 147943 }, - { url = "https://files.pythonhosted.org/packages/03/d2/3f392f23f042615689456e9a274640c1d2e5dd1d52de36ab8f7955f8f050/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247", size = 142063 }, - { url = "https://files.pythonhosted.org/packages/f2/e3/e20aae5e1039a2cd9b08d9205f52142329f887f8cf70da3650326670bddf/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408", size = 150578 }, - { url = "https://files.pythonhosted.org/packages/8d/af/779ad72a4da0aed925e1139d458adc486e61076d7ecdcc09e610ea8678db/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb", size = 153629 }, - { url = "https://files.pythonhosted.org/packages/c2/b6/7aa450b278e7aa92cf7732140bfd8be21f5f29d5bf334ae987c945276639/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d", size = 150778 }, - { url = "https://files.pythonhosted.org/packages/39/f4/d9f4f712d0951dcbfd42920d3db81b00dd23b6ab520419626f4023334056/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807", size = 146453 }, - { url = "https://files.pythonhosted.org/packages/49/2b/999d0314e4ee0cff3cb83e6bc9aeddd397eeed693edb4facb901eb8fbb69/charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f", size = 95479 }, - { url = "https://files.pythonhosted.org/packages/2d/ce/3cbed41cff67e455a386fb5e5dd8906cdda2ed92fbc6297921f2e4419309/charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f", size = 102790 }, - { url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995 }, - { url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471 }, - { url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831 }, - { url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335 }, - { url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862 }, - { url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673 }, - { url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211 }, - { url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039 }, - { url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939 }, - { url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075 }, - { url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340 }, - { url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205 }, - { url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441 }, - { url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105 }, - { url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404 }, - { url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423 }, - { url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184 }, - { url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268 }, - { url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601 }, - { url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098 }, - { url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520 }, - { url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852 }, - { url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488 }, - { url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192 }, - { url = "https://files.pythonhosted.org/packages/b2/21/2b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746/charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35", size = 95550 }, - { url = "https://files.pythonhosted.org/packages/21/5b/1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c/charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f", size = 102785 }, - { url = "https://files.pythonhosted.org/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda", size = 195698 }, - { url = "https://files.pythonhosted.org/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313", size = 140162 }, - { url = "https://files.pythonhosted.org/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9", size = 150263 }, - { url = "https://files.pythonhosted.org/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b", size = 142966 }, - { url = "https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11", size = 144992 }, - { url = "https://files.pythonhosted.org/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f", size = 147162 }, - { url = "https://files.pythonhosted.org/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd", size = 140972 }, - { url = "https://files.pythonhosted.org/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2", size = 149095 }, - { url = "https://files.pythonhosted.org/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886", size = 152668 }, - { url = "https://files.pythonhosted.org/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601", size = 150073 }, - { url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732 }, - { url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391 }, - { url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702 }, - { url = "https://files.pythonhosted.org/packages/7f/c0/b913f8f02836ed9ab32ea643c6fe4d3325c3d8627cf6e78098671cafff86/charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41", size = 197867 }, - { url = "https://files.pythonhosted.org/packages/0f/6c/2bee440303d705b6fb1e2ec789543edec83d32d258299b16eed28aad48e0/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f", size = 141385 }, - { url = "https://files.pythonhosted.org/packages/3d/04/cb42585f07f6f9fd3219ffb6f37d5a39b4fd2db2355b23683060029c35f7/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2", size = 151367 }, - { url = "https://files.pythonhosted.org/packages/54/54/2412a5b093acb17f0222de007cc129ec0e0df198b5ad2ce5699355269dfe/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770", size = 143928 }, - { url = "https://files.pythonhosted.org/packages/5a/6d/e2773862b043dcf8a221342954f375392bb2ce6487bcd9f2c1b34e1d6781/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4", size = 146203 }, - { url = "https://files.pythonhosted.org/packages/b9/f8/ca440ef60d8f8916022859885f231abb07ada3c347c03d63f283bec32ef5/charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537", size = 148082 }, - { url = "https://files.pythonhosted.org/packages/04/d2/42fd330901aaa4b805a1097856c2edf5095e260a597f65def493f4b8c833/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496", size = 142053 }, - { url = "https://files.pythonhosted.org/packages/9e/af/3a97a4fa3c53586f1910dadfc916e9c4f35eeada36de4108f5096cb7215f/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78", size = 150625 }, - { url = "https://files.pythonhosted.org/packages/26/ae/23d6041322a3556e4da139663d02fb1b3c59a23ab2e2b56432bd2ad63ded/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7", size = 153549 }, - { url = "https://files.pythonhosted.org/packages/94/22/b8f2081c6a77cb20d97e57e0b385b481887aa08019d2459dc2858ed64871/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6", size = 150945 }, - { url = "https://files.pythonhosted.org/packages/c7/0b/c5ec5092747f801b8b093cdf5610e732b809d6cb11f4c51e35fc28d1d389/charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294", size = 146595 }, - { url = "https://files.pythonhosted.org/packages/0c/5a/0b59704c38470df6768aa154cc87b1ac7c9bb687990a1559dc8765e8627e/charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5", size = 95453 }, - { url = "https://files.pythonhosted.org/packages/85/2d/a9790237cb4d01a6d57afadc8573c8b73c609ade20b80f4cda30802009ee/charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765", size = 102811 }, - { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 }, -] - -[[package]] -name = "colorama" -version = "0.4.6" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, -] - -[[package]] -name = "contourpy" -version = "1.3.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f5/f6/31a8f28b4a2a4fa0e01085e542f3081ab0588eff8e589d39d775172c9792/contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4", size = 13464370 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6c/e0/be8dcc796cfdd96708933e0e2da99ba4bb8f9b2caa9d560a50f3f09a65f3/contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7", size = 265366 }, - { url = "https://files.pythonhosted.org/packages/50/d6/c953b400219443535d412fcbbc42e7a5e823291236bc0bb88936e3cc9317/contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42", size = 249226 }, - { url = "https://files.pythonhosted.org/packages/6f/b4/6fffdf213ffccc28483c524b9dad46bb78332851133b36ad354b856ddc7c/contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7", size = 308460 }, - { url = "https://files.pythonhosted.org/packages/cf/6c/118fc917b4050f0afe07179a6dcbe4f3f4ec69b94f36c9e128c4af480fb8/contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab", size = 347623 }, - { url = "https://files.pythonhosted.org/packages/f9/a4/30ff110a81bfe3abf7b9673284d21ddce8cc1278f6f77393c91199da4c90/contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589", size = 317761 }, - { url = "https://files.pythonhosted.org/packages/99/e6/d11966962b1aa515f5586d3907ad019f4b812c04e4546cc19ebf62b5178e/contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41", size = 322015 }, - { url = "https://files.pythonhosted.org/packages/4d/e3/182383743751d22b7b59c3c753277b6aee3637049197624f333dac5b4c80/contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d", size = 1262672 }, - { url = "https://files.pythonhosted.org/packages/78/53/974400c815b2e605f252c8fb9297e2204347d1755a5374354ee77b1ea259/contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223", size = 1321688 }, - { url = "https://files.pythonhosted.org/packages/52/29/99f849faed5593b2926a68a31882af98afbeac39c7fdf7de491d9c85ec6a/contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f", size = 171145 }, - { url = "https://files.pythonhosted.org/packages/a9/97/3f89bba79ff6ff2b07a3cbc40aa693c360d5efa90d66e914f0ff03b95ec7/contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b", size = 216019 }, - { url = "https://files.pythonhosted.org/packages/b3/1f/9375917786cb39270b0ee6634536c0e22abf225825602688990d8f5c6c19/contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad", size = 266356 }, - { url = "https://files.pythonhosted.org/packages/05/46/9256dd162ea52790c127cb58cfc3b9e3413a6e3478917d1f811d420772ec/contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49", size = 250915 }, - { url = "https://files.pythonhosted.org/packages/e1/5d/3056c167fa4486900dfbd7e26a2fdc2338dc58eee36d490a0ed3ddda5ded/contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66", size = 310443 }, - { url = "https://files.pythonhosted.org/packages/ca/c2/1a612e475492e07f11c8e267ea5ec1ce0d89971be496c195e27afa97e14a/contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081", size = 348548 }, - { url = "https://files.pythonhosted.org/packages/45/cf/2c2fc6bb5874158277b4faf136847f0689e1b1a1f640a36d76d52e78907c/contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1", size = 319118 }, - { url = "https://files.pythonhosted.org/packages/03/33/003065374f38894cdf1040cef474ad0546368eea7e3a51d48b8a423961f8/contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d", size = 323162 }, - { url = "https://files.pythonhosted.org/packages/42/80/e637326e85e4105a802e42959f56cff2cd39a6b5ef68d5d9aee3ea5f0e4c/contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c", size = 1265396 }, - { url = "https://files.pythonhosted.org/packages/7c/3b/8cbd6416ca1bbc0202b50f9c13b2e0b922b64be888f9d9ee88e6cfabfb51/contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb", size = 1324297 }, - { url = "https://files.pythonhosted.org/packages/4d/2c/021a7afaa52fe891f25535506cc861c30c3c4e5a1c1ce94215e04b293e72/contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c", size = 171808 }, - { url = "https://files.pythonhosted.org/packages/8d/2f/804f02ff30a7fae21f98198828d0857439ec4c91a96e20cf2d6c49372966/contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67", size = 217181 }, - { url = "https://files.pythonhosted.org/packages/c9/92/8e0bbfe6b70c0e2d3d81272b58c98ac69ff1a4329f18c73bd64824d8b12e/contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f", size = 267838 }, - { url = "https://files.pythonhosted.org/packages/e3/04/33351c5d5108460a8ce6d512307690b023f0cfcad5899499f5c83b9d63b1/contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6", size = 251549 }, - { url = "https://files.pythonhosted.org/packages/51/3d/aa0fe6ae67e3ef9f178389e4caaaa68daf2f9024092aa3c6032e3d174670/contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639", size = 303177 }, - { url = "https://files.pythonhosted.org/packages/56/c3/c85a7e3e0cab635575d3b657f9535443a6f5d20fac1a1911eaa4bbe1aceb/contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c", size = 341735 }, - { url = "https://files.pythonhosted.org/packages/dd/8d/20f7a211a7be966a53f474bc90b1a8202e9844b3f1ef85f3ae45a77151ee/contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06", size = 314679 }, - { url = "https://files.pythonhosted.org/packages/6e/be/524e377567defac0e21a46e2a529652d165fed130a0d8a863219303cee18/contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09", size = 320549 }, - { url = "https://files.pythonhosted.org/packages/0f/96/fdb2552a172942d888915f3a6663812e9bc3d359d53dafd4289a0fb462f0/contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd", size = 1263068 }, - { url = "https://files.pythonhosted.org/packages/2a/25/632eab595e3140adfa92f1322bf8915f68c932bac468e89eae9974cf1c00/contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35", size = 1322833 }, - { url = "https://files.pythonhosted.org/packages/73/e3/69738782e315a1d26d29d71a550dbbe3eb6c653b028b150f70c1a5f4f229/contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb", size = 172681 }, - { url = "https://files.pythonhosted.org/packages/0c/89/9830ba00d88e43d15e53d64931e66b8792b46eb25e2050a88fec4a0df3d5/contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b", size = 218283 }, - { url = "https://files.pythonhosted.org/packages/53/a1/d20415febfb2267af2d7f06338e82171824d08614084714fb2c1dac9901f/contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3", size = 267879 }, - { url = "https://files.pythonhosted.org/packages/aa/45/5a28a3570ff6218d8bdfc291a272a20d2648104815f01f0177d103d985e1/contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7", size = 251573 }, - { url = "https://files.pythonhosted.org/packages/39/1c/d3f51540108e3affa84f095c8b04f0aa833bb797bc8baa218a952a98117d/contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84", size = 303184 }, - { url = "https://files.pythonhosted.org/packages/00/56/1348a44fb6c3a558c1a3a0cd23d329d604c99d81bf5a4b58c6b71aab328f/contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0", size = 340262 }, - { url = "https://files.pythonhosted.org/packages/2b/23/00d665ba67e1bb666152131da07e0f24c95c3632d7722caa97fb61470eca/contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b", size = 313806 }, - { url = "https://files.pythonhosted.org/packages/5a/42/3cf40f7040bb8362aea19af9a5fb7b32ce420f645dd1590edcee2c657cd5/contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da", size = 319710 }, - { url = "https://files.pythonhosted.org/packages/05/32/f3bfa3fc083b25e1a7ae09197f897476ee68e7386e10404bdf9aac7391f0/contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14", size = 1264107 }, - { url = "https://files.pythonhosted.org/packages/1c/1e/1019d34473a736664f2439542b890b2dc4c6245f5c0d8cdfc0ccc2cab80c/contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8", size = 1322458 }, - { url = "https://files.pythonhosted.org/packages/22/85/4f8bfd83972cf8909a4d36d16b177f7b8bdd942178ea4bf877d4a380a91c/contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294", size = 172643 }, - { url = "https://files.pythonhosted.org/packages/cc/4a/fb3c83c1baba64ba90443626c228ca14f19a87c51975d3b1de308dd2cf08/contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087", size = 218301 }, - { url = "https://files.pythonhosted.org/packages/76/65/702f4064f397821fea0cb493f7d3bc95a5d703e20954dce7d6d39bacf378/contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8", size = 278972 }, - { url = "https://files.pythonhosted.org/packages/80/85/21f5bba56dba75c10a45ec00ad3b8190dbac7fd9a8a8c46c6116c933e9cf/contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b", size = 263375 }, - { url = "https://files.pythonhosted.org/packages/0a/64/084c86ab71d43149f91ab3a4054ccf18565f0a8af36abfa92b1467813ed6/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973", size = 307188 }, - { url = "https://files.pythonhosted.org/packages/3d/ff/d61a4c288dc42da0084b8d9dc2aa219a850767165d7d9a9c364ff530b509/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18", size = 345644 }, - { url = "https://files.pythonhosted.org/packages/ca/aa/00d2313d35ec03f188e8f0786c2fc61f589306e02fdc158233697546fd58/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8", size = 317141 }, - { url = "https://files.pythonhosted.org/packages/8d/6a/b5242c8cb32d87f6abf4f5e3044ca397cb1a76712e3fa2424772e3ff495f/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6", size = 323469 }, - { url = "https://files.pythonhosted.org/packages/6f/a6/73e929d43028a9079aca4bde107494864d54f0d72d9db508a51ff0878593/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2", size = 1260894 }, - { url = "https://files.pythonhosted.org/packages/2b/1e/1e726ba66eddf21c940821df8cf1a7d15cb165f0682d62161eaa5e93dae1/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927", size = 1314829 }, - { url = "https://files.pythonhosted.org/packages/b3/e3/b9f72758adb6ef7397327ceb8b9c39c75711affb220e4f53c745ea1d5a9a/contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8", size = 265518 }, - { url = "https://files.pythonhosted.org/packages/ec/22/19f5b948367ab5260fb41d842c7a78dae645603881ea6bc39738bcfcabf6/contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c", size = 249350 }, - { url = "https://files.pythonhosted.org/packages/26/76/0c7d43263dd00ae21a91a24381b7e813d286a3294d95d179ef3a7b9fb1d7/contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca", size = 309167 }, - { url = "https://files.pythonhosted.org/packages/96/3b/cadff6773e89f2a5a492c1a8068e21d3fccaf1a1c1df7d65e7c8e3ef60ba/contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f", size = 348279 }, - { url = "https://files.pythonhosted.org/packages/e1/86/158cc43aa549d2081a955ab11c6bdccc7a22caacc2af93186d26f5f48746/contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc", size = 318519 }, - { url = "https://files.pythonhosted.org/packages/05/11/57335544a3027e9b96a05948c32e566328e3a2f84b7b99a325b7a06d2b06/contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2", size = 321922 }, - { url = "https://files.pythonhosted.org/packages/0b/e3/02114f96543f4a1b694333b92a6dcd4f8eebbefcc3a5f3bbb1316634178f/contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e", size = 1258017 }, - { url = "https://files.pythonhosted.org/packages/f3/3b/bfe4c81c6d5881c1c643dde6620be0b42bf8aab155976dd644595cfab95c/contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800", size = 1316773 }, - { url = "https://files.pythonhosted.org/packages/f1/17/c52d2970784383cafb0bd918b6fb036d98d96bbf0bc1befb5d1e31a07a70/contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5", size = 171353 }, - { url = "https://files.pythonhosted.org/packages/53/23/db9f69676308e094d3c45f20cc52e12d10d64f027541c995d89c11ad5c75/contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843", size = 211817 }, - { url = "https://files.pythonhosted.org/packages/d1/09/60e486dc2b64c94ed33e58dcfb6f808192c03dfc5574c016218b9b7680dc/contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c", size = 261886 }, - { url = "https://files.pythonhosted.org/packages/19/20/b57f9f7174fcd439a7789fb47d764974ab646fa34d1790551de386457a8e/contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779", size = 311008 }, - { url = "https://files.pythonhosted.org/packages/74/fc/5040d42623a1845d4f17a418e590fd7a79ae8cb2bad2b2f83de63c3bdca4/contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4", size = 215690 }, - { url = "https://files.pythonhosted.org/packages/2b/24/dc3dcd77ac7460ab7e9d2b01a618cb31406902e50e605a8d6091f0a8f7cc/contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0", size = 261894 }, - { url = "https://files.pythonhosted.org/packages/b1/db/531642a01cfec39d1682e46b5457b07cf805e3c3c584ec27e2a6223f8f6c/contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102", size = 311099 }, - { url = "https://files.pythonhosted.org/packages/38/1e/94bda024d629f254143a134eead69e21c836429a2a6ce82209a00ddcb79a/contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb", size = 215838 }, -] - -[[package]] -name = "contourpy" -version = "1.3.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699", size = 13465753 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b2/a3/80937fe3efe0edacf67c9a20b955139a1a622730042c1ea991956f2704ad/contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab", size = 268466 }, - { url = "https://files.pythonhosted.org/packages/82/1d/e3eaebb4aa2d7311528c048350ca8e99cdacfafd99da87bc0a5f8d81f2c2/contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124", size = 253314 }, - { url = "https://files.pythonhosted.org/packages/de/f3/d796b22d1a2b587acc8100ba8c07fb7b5e17fde265a7bb05ab967f4c935a/contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1", size = 312003 }, - { url = "https://files.pythonhosted.org/packages/bf/f5/0e67902bc4394daee8daa39c81d4f00b50e063ee1a46cb3938cc65585d36/contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b", size = 351896 }, - { url = "https://files.pythonhosted.org/packages/1f/d6/e766395723f6256d45d6e67c13bb638dd1fa9dc10ef912dc7dd3dcfc19de/contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453", size = 320814 }, - { url = "https://files.pythonhosted.org/packages/a9/57/86c500d63b3e26e5b73a28b8291a67c5608d4aa87ebd17bd15bb33c178bc/contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3", size = 324969 }, - { url = "https://files.pythonhosted.org/packages/b8/62/bb146d1289d6b3450bccc4642e7f4413b92ebffd9bf2e91b0404323704a7/contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277", size = 1265162 }, - { url = "https://files.pythonhosted.org/packages/18/04/9f7d132ce49a212c8e767042cc80ae390f728060d2eea47058f55b9eff1c/contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595", size = 1324328 }, - { url = "https://files.pythonhosted.org/packages/46/23/196813901be3f97c83ababdab1382e13e0edc0bb4e7b49a7bff15fcf754e/contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697", size = 173861 }, - { url = "https://files.pythonhosted.org/packages/e0/82/c372be3fc000a3b2005061ca623a0d1ecd2eaafb10d9e883a2fc8566e951/contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e", size = 218566 }, - { url = "https://files.pythonhosted.org/packages/12/bb/11250d2906ee2e8b466b5f93e6b19d525f3e0254ac8b445b56e618527718/contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b", size = 269555 }, - { url = "https://files.pythonhosted.org/packages/67/71/1e6e95aee21a500415f5d2dbf037bf4567529b6a4e986594d7026ec5ae90/contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc", size = 254549 }, - { url = "https://files.pythonhosted.org/packages/31/2c/b88986e8d79ac45efe9d8801ae341525f38e087449b6c2f2e6050468a42c/contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86", size = 313000 }, - { url = "https://files.pythonhosted.org/packages/c4/18/65280989b151fcf33a8352f992eff71e61b968bef7432fbfde3a364f0730/contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6", size = 352925 }, - { url = "https://files.pythonhosted.org/packages/f5/c7/5fd0146c93220dbfe1a2e0f98969293b86ca9bc041d6c90c0e065f4619ad/contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85", size = 323693 }, - { url = "https://files.pythonhosted.org/packages/85/fc/7fa5d17daf77306840a4e84668a48ddff09e6bc09ba4e37e85ffc8e4faa3/contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c", size = 326184 }, - { url = "https://files.pythonhosted.org/packages/ef/e7/104065c8270c7397c9571620d3ab880558957216f2b5ebb7e040f85eeb22/contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291", size = 1268031 }, - { url = "https://files.pythonhosted.org/packages/e2/4a/c788d0bdbf32c8113c2354493ed291f924d4793c4a2e85b69e737a21a658/contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f", size = 1325995 }, - { url = "https://files.pythonhosted.org/packages/a6/e6/a2f351a90d955f8b0564caf1ebe4b1451a3f01f83e5e3a414055a5b8bccb/contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375", size = 174396 }, - { url = "https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9", size = 219787 }, - { url = "https://files.pythonhosted.org/packages/37/6b/175f60227d3e7f5f1549fcb374592be311293132207e451c3d7c654c25fb/contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509", size = 271494 }, - { url = "https://files.pythonhosted.org/packages/6b/6a/7833cfae2c1e63d1d8875a50fd23371394f540ce809d7383550681a1fa64/contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc", size = 255444 }, - { url = "https://files.pythonhosted.org/packages/7f/b3/7859efce66eaca5c14ba7619791b084ed02d868d76b928ff56890d2d059d/contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454", size = 307628 }, - { url = "https://files.pythonhosted.org/packages/48/b2/011415f5e3f0a50b1e285a0bf78eb5d92a4df000553570f0851b6e309076/contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80", size = 347271 }, - { url = "https://files.pythonhosted.org/packages/84/7d/ef19b1db0f45b151ac78c65127235239a8cf21a59d1ce8507ce03e89a30b/contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec", size = 318906 }, - { url = "https://files.pythonhosted.org/packages/ba/99/6794142b90b853a9155316c8f470d2e4821fe6f086b03e372aca848227dd/contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9", size = 323622 }, - { url = "https://files.pythonhosted.org/packages/3c/0f/37d2c84a900cd8eb54e105f4fa9aebd275e14e266736778bb5dccbf3bbbb/contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b", size = 1266699 }, - { url = "https://files.pythonhosted.org/packages/3a/8a/deb5e11dc7d9cc8f0f9c8b29d4f062203f3af230ba83c30a6b161a6effc9/contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d", size = 1326395 }, - { url = "https://files.pythonhosted.org/packages/1a/35/7e267ae7c13aaf12322ccc493531f1e7f2eb8fba2927b9d7a05ff615df7a/contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e", size = 175354 }, - { url = "https://files.pythonhosted.org/packages/a1/35/c2de8823211d07e8a79ab018ef03960716c5dff6f4d5bff5af87fd682992/contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d", size = 220971 }, - { url = "https://files.pythonhosted.org/packages/9a/e7/de62050dce687c5e96f946a93546910bc67e483fe05324439e329ff36105/contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2", size = 271548 }, - { url = "https://files.pythonhosted.org/packages/78/4d/c2a09ae014ae984c6bdd29c11e74d3121b25eaa117eca0bb76340efd7e1c/contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5", size = 255576 }, - { url = "https://files.pythonhosted.org/packages/ab/8a/915380ee96a5638bda80cd061ccb8e666bfdccea38d5741cb69e6dbd61fc/contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81", size = 306635 }, - { url = "https://files.pythonhosted.org/packages/29/5c/c83ce09375428298acd4e6582aeb68b1e0d1447f877fa993d9bf6cd3b0a0/contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2", size = 345925 }, - { url = "https://files.pythonhosted.org/packages/29/63/5b52f4a15e80c66c8078a641a3bfacd6e07106835682454647aca1afc852/contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7", size = 318000 }, - { url = "https://files.pythonhosted.org/packages/9a/e2/30ca086c692691129849198659bf0556d72a757fe2769eb9620a27169296/contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c", size = 322689 }, - { url = "https://files.pythonhosted.org/packages/6b/77/f37812ef700f1f185d348394debf33f22d531e714cf6a35d13d68a7003c7/contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3", size = 1268413 }, - { url = "https://files.pythonhosted.org/packages/3f/6d/ce84e79cdd128542ebeb268f84abb4b093af78e7f8ec504676673d2675bc/contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1", size = 1326530 }, - { url = "https://files.pythonhosted.org/packages/72/22/8282f4eae20c73c89bee7a82a19c4e27af9b57bb602ecaa00713d5bdb54d/contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82", size = 175315 }, - { url = "https://files.pythonhosted.org/packages/e3/d5/28bca491f65312b438fbf076589dcde7f6f966b196d900777f5811b9c4e2/contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd", size = 220987 }, - { url = "https://files.pythonhosted.org/packages/2f/24/a4b285d6adaaf9746e4700932f579f1a7b6f9681109f694cfa233ae75c4e/contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30", size = 285001 }, - { url = "https://files.pythonhosted.org/packages/48/1d/fb49a401b5ca4f06ccf467cd6c4f1fd65767e63c21322b29b04ec40b40b9/contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751", size = 268553 }, - { url = "https://files.pythonhosted.org/packages/79/1e/4aef9470d13fd029087388fae750dccb49a50c012a6c8d1d634295caa644/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342", size = 310386 }, - { url = "https://files.pythonhosted.org/packages/b0/34/910dc706ed70153b60392b5305c708c9810d425bde12499c9184a1100888/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c", size = 349806 }, - { url = "https://files.pythonhosted.org/packages/31/3c/faee6a40d66d7f2a87f7102236bf4780c57990dd7f98e5ff29881b1b1344/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f", size = 321108 }, - { url = "https://files.pythonhosted.org/packages/17/69/390dc9b20dd4bb20585651d7316cc3054b7d4a7b4f8b710b2b698e08968d/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda", size = 327291 }, - { url = "https://files.pythonhosted.org/packages/ef/74/7030b67c4e941fe1e5424a3d988080e83568030ce0355f7c9fc556455b01/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242", size = 1263752 }, - { url = "https://files.pythonhosted.org/packages/f0/ed/92d86f183a8615f13f6b9cbfc5d4298a509d6ce433432e21da838b4b63f4/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1", size = 1318403 }, - { url = "https://files.pythonhosted.org/packages/b3/0e/c8e4950c77dcfc897c71d61e56690a0a9df39543d2164040301b5df8e67b/contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1", size = 185117 }, - { url = "https://files.pythonhosted.org/packages/c1/31/1ae946f11dfbd229222e6d6ad8e7bd1891d3d48bde5fbf7a0beb9491f8e3/contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546", size = 236668 }, - { url = "https://files.pythonhosted.org/packages/3e/4f/e56862e64b52b55b5ddcff4090085521fc228ceb09a88390a2b103dccd1b/contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6", size = 265605 }, - { url = "https://files.pythonhosted.org/packages/b0/2e/52bfeeaa4541889f23d8eadc6386b442ee2470bd3cff9baa67deb2dd5c57/contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750", size = 315040 }, - { url = "https://files.pythonhosted.org/packages/52/94/86bfae441707205634d80392e873295652fc313dfd93c233c52c4dc07874/contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53", size = 218221 }, -] - -[[package]] -name = "coverage" -version = "7.8.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/19/4f/2251e65033ed2ce1e68f00f91a0294e0f80c80ae8c3ebbe2f12828c4cd53/coverage-7.8.0.tar.gz", hash = "sha256:7a3d62b3b03b4b6fd41a085f3574874cf946cb4604d2b4d3e8dca8cd570ca501", size = 811872 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/78/01/1c5e6ee4ebaaa5e079db933a9a45f61172048c7efa06648445821a201084/coverage-7.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2931f66991175369859b5fd58529cd4b73582461877ecfd859b6549869287ffe", size = 211379 }, - { url = "https://files.pythonhosted.org/packages/e9/16/a463389f5ff916963471f7c13585e5f38c6814607306b3cb4d6b4cf13384/coverage-7.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:52a523153c568d2c0ef8826f6cc23031dc86cffb8c6aeab92c4ff776e7951b28", size = 211814 }, - { url = "https://files.pythonhosted.org/packages/b8/b1/77062b0393f54d79064dfb72d2da402657d7c569cfbc724d56ac0f9c67ed/coverage-7.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c8a5c139aae4c35cbd7cadca1df02ea8cf28a911534fc1b0456acb0b14234f3", size = 240937 }, - { url = "https://files.pythonhosted.org/packages/d7/54/c7b00a23150083c124e908c352db03bcd33375494a4beb0c6d79b35448b9/coverage-7.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5a26c0c795c3e0b63ec7da6efded5f0bc856d7c0b24b2ac84b4d1d7bc578d676", size = 238849 }, - { url = "https://files.pythonhosted.org/packages/f7/ec/a6b7cfebd34e7b49f844788fda94713035372b5200c23088e3bbafb30970/coverage-7.8.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:821f7bcbaa84318287115d54becb1915eece6918136c6f91045bb84e2f88739d", size = 239986 }, - { url = "https://files.pythonhosted.org/packages/21/8c/c965ecef8af54e6d9b11bfbba85d4f6a319399f5f724798498387f3209eb/coverage-7.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a321c61477ff8ee705b8a5fed370b5710c56b3a52d17b983d9215861e37b642a", size = 239896 }, - { url = "https://files.pythonhosted.org/packages/40/83/070550273fb4c480efa8381735969cb403fa8fd1626d74865bfaf9e4d903/coverage-7.8.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ed2144b8a78f9d94d9515963ed273d620e07846acd5d4b0a642d4849e8d91a0c", size = 238613 }, - { url = "https://files.pythonhosted.org/packages/07/76/fbb2540495b01d996d38e9f8897b861afed356be01160ab4e25471f4fed1/coverage-7.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:042e7841a26498fff7a37d6fda770d17519982f5b7d8bf5278d140b67b61095f", size = 238909 }, - { url = "https://files.pythonhosted.org/packages/a3/7e/76d604db640b7d4a86e5dd730b73e96e12a8185f22b5d0799025121f4dcb/coverage-7.8.0-cp310-cp310-win32.whl", hash = "sha256:f9983d01d7705b2d1f7a95e10bbe4091fabc03a46881a256c2787637b087003f", size = 213948 }, - { url = "https://files.pythonhosted.org/packages/5c/a7/f8ce4aafb4a12ab475b56c76a71a40f427740cf496c14e943ade72e25023/coverage-7.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:5a570cd9bd20b85d1a0d7b009aaf6c110b52b5755c17be6962f8ccd65d1dbd23", size = 214844 }, - { url = "https://files.pythonhosted.org/packages/2b/77/074d201adb8383addae5784cb8e2dac60bb62bfdf28b2b10f3a3af2fda47/coverage-7.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e7ac22a0bb2c7c49f441f7a6d46c9c80d96e56f5a8bc6972529ed43c8b694e27", size = 211493 }, - { url = "https://files.pythonhosted.org/packages/a9/89/7a8efe585750fe59b48d09f871f0e0c028a7b10722b2172dfe021fa2fdd4/coverage-7.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bf13d564d310c156d1c8e53877baf2993fb3073b2fc9f69790ca6a732eb4bfea", size = 211921 }, - { url = "https://files.pythonhosted.org/packages/e9/ef/96a90c31d08a3f40c49dbe897df4f1fd51fb6583821a1a1c5ee30cc8f680/coverage-7.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5761c70c017c1b0d21b0815a920ffb94a670c8d5d409d9b38857874c21f70d7", size = 244556 }, - { url = "https://files.pythonhosted.org/packages/89/97/dcd5c2ce72cee9d7b0ee8c89162c24972fb987a111b92d1a3d1d19100c61/coverage-7.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ff52d790c7e1628241ffbcaeb33e07d14b007b6eb00a19320c7b8a7024c040", size = 242245 }, - { url = "https://files.pythonhosted.org/packages/b2/7b/b63cbb44096141ed435843bbb251558c8e05cc835c8da31ca6ffb26d44c0/coverage-7.8.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d39fc4817fd67b3915256af5dda75fd4ee10621a3d484524487e33416c6f3543", size = 244032 }, - { url = "https://files.pythonhosted.org/packages/97/e3/7fa8c2c00a1ef530c2a42fa5df25a6971391f92739d83d67a4ee6dcf7a02/coverage-7.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b44674870709017e4b4036e3d0d6c17f06a0e6d4436422e0ad29b882c40697d2", size = 243679 }, - { url = "https://files.pythonhosted.org/packages/4f/b3/e0a59d8df9150c8a0c0841d55d6568f0a9195692136c44f3d21f1842c8f6/coverage-7.8.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8f99eb72bf27cbb167b636eb1726f590c00e1ad375002230607a844d9e9a2318", size = 241852 }, - { url = "https://files.pythonhosted.org/packages/9b/82/db347ccd57bcef150c173df2ade97976a8367a3be7160e303e43dd0c795f/coverage-7.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b571bf5341ba8c6bc02e0baeaf3b061ab993bf372d982ae509807e7f112554e9", size = 242389 }, - { url = "https://files.pythonhosted.org/packages/21/f6/3f7d7879ceb03923195d9ff294456241ed05815281f5254bc16ef71d6a20/coverage-7.8.0-cp311-cp311-win32.whl", hash = "sha256:e75a2ad7b647fd8046d58c3132d7eaf31b12d8a53c0e4b21fa9c4d23d6ee6d3c", size = 213997 }, - { url = "https://files.pythonhosted.org/packages/28/87/021189643e18ecf045dbe1e2071b2747901f229df302de01c998eeadf146/coverage-7.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:3043ba1c88b2139126fc72cb48574b90e2e0546d4c78b5299317f61b7f718b78", size = 214911 }, - { url = "https://files.pythonhosted.org/packages/aa/12/4792669473297f7973518bec373a955e267deb4339286f882439b8535b39/coverage-7.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bbb5cc845a0292e0c520656d19d7ce40e18d0e19b22cb3e0409135a575bf79fc", size = 211684 }, - { url = "https://files.pythonhosted.org/packages/be/e1/2a4ec273894000ebedd789e8f2fc3813fcaf486074f87fd1c5b2cb1c0a2b/coverage-7.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4dfd9a93db9e78666d178d4f08a5408aa3f2474ad4d0e0378ed5f2ef71640cb6", size = 211935 }, - { url = "https://files.pythonhosted.org/packages/f8/3a/7b14f6e4372786709a361729164125f6b7caf4024ce02e596c4a69bccb89/coverage-7.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f017a61399f13aa6d1039f75cd467be388d157cd81f1a119b9d9a68ba6f2830d", size = 245994 }, - { url = "https://files.pythonhosted.org/packages/54/80/039cc7f1f81dcbd01ea796d36d3797e60c106077e31fd1f526b85337d6a1/coverage-7.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0915742f4c82208ebf47a2b154a5334155ed9ef9fe6190674b8a46c2fb89cb05", size = 242885 }, - { url = "https://files.pythonhosted.org/packages/10/e0/dc8355f992b6cc2f9dcd5ef6242b62a3f73264893bc09fbb08bfcab18eb4/coverage-7.8.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a40fcf208e021eb14b0fac6bdb045c0e0cab53105f93ba0d03fd934c956143a", size = 245142 }, - { url = "https://files.pythonhosted.org/packages/43/1b/33e313b22cf50f652becb94c6e7dae25d8f02e52e44db37a82de9ac357e8/coverage-7.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a1f406a8e0995d654b2ad87c62caf6befa767885301f3b8f6f73e6f3c31ec3a6", size = 244906 }, - { url = "https://files.pythonhosted.org/packages/05/08/c0a8048e942e7f918764ccc99503e2bccffba1c42568693ce6955860365e/coverage-7.8.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:77af0f6447a582fdc7de5e06fa3757a3ef87769fbb0fdbdeba78c23049140a47", size = 243124 }, - { url = "https://files.pythonhosted.org/packages/5b/62/ea625b30623083c2aad645c9a6288ad9fc83d570f9adb913a2abdba562dd/coverage-7.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f2d32f95922927186c6dbc8bc60df0d186b6edb828d299ab10898ef3f40052fe", size = 244317 }, - { url = "https://files.pythonhosted.org/packages/62/cb/3871f13ee1130a6c8f020e2f71d9ed269e1e2124aa3374d2180ee451cee9/coverage-7.8.0-cp312-cp312-win32.whl", hash = "sha256:769773614e676f9d8e8a0980dd7740f09a6ea386d0f383db6821df07d0f08545", size = 214170 }, - { url = "https://files.pythonhosted.org/packages/88/26/69fe1193ab0bfa1eb7a7c0149a066123611baba029ebb448500abd8143f9/coverage-7.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:e5d2b9be5b0693cf21eb4ce0ec8d211efb43966f6657807f6859aab3814f946b", size = 214969 }, - { url = "https://files.pythonhosted.org/packages/f3/21/87e9b97b568e223f3438d93072479c2f36cc9b3f6b9f7094b9d50232acc0/coverage-7.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5ac46d0c2dd5820ce93943a501ac5f6548ea81594777ca585bf002aa8854cacd", size = 211708 }, - { url = "https://files.pythonhosted.org/packages/75/be/882d08b28a0d19c9c4c2e8a1c6ebe1f79c9c839eb46d4fca3bd3b34562b9/coverage-7.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:771eb7587a0563ca5bb6f622b9ed7f9d07bd08900f7589b4febff05f469bea00", size = 211981 }, - { url = "https://files.pythonhosted.org/packages/7a/1d/ce99612ebd58082fbe3f8c66f6d8d5694976c76a0d474503fa70633ec77f/coverage-7.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42421e04069fb2cbcbca5a696c4050b84a43b05392679d4068acbe65449b5c64", size = 245495 }, - { url = "https://files.pythonhosted.org/packages/dc/8d/6115abe97df98db6b2bd76aae395fcc941d039a7acd25f741312ced9a78f/coverage-7.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:554fec1199d93ab30adaa751db68acec2b41c5602ac944bb19187cb9a41a8067", size = 242538 }, - { url = "https://files.pythonhosted.org/packages/cb/74/2f8cc196643b15bc096d60e073691dadb3dca48418f08bc78dd6e899383e/coverage-7.8.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aaeb00761f985007b38cf463b1d160a14a22c34eb3f6a39d9ad6fc27cb73008", size = 244561 }, - { url = "https://files.pythonhosted.org/packages/22/70/c10c77cd77970ac965734fe3419f2c98665f6e982744a9bfb0e749d298f4/coverage-7.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:581a40c7b94921fffd6457ffe532259813fc68eb2bdda60fa8cc343414ce3733", size = 244633 }, - { url = "https://files.pythonhosted.org/packages/38/5a/4f7569d946a07c952688debee18c2bb9ab24f88027e3d71fd25dbc2f9dca/coverage-7.8.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f319bae0321bc838e205bf9e5bc28f0a3165f30c203b610f17ab5552cff90323", size = 242712 }, - { url = "https://files.pythonhosted.org/packages/bb/a1/03a43b33f50475a632a91ea8c127f7e35e53786dbe6781c25f19fd5a65f8/coverage-7.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:04bfec25a8ef1c5f41f5e7e5c842f6b615599ca8ba8391ec33a9290d9d2db3a3", size = 244000 }, - { url = "https://files.pythonhosted.org/packages/6a/89/ab6c43b1788a3128e4d1b7b54214548dcad75a621f9d277b14d16a80d8a1/coverage-7.8.0-cp313-cp313-win32.whl", hash = "sha256:dd19608788b50eed889e13a5d71d832edc34fc9dfce606f66e8f9f917eef910d", size = 214195 }, - { url = "https://files.pythonhosted.org/packages/12/12/6bf5f9a8b063d116bac536a7fb594fc35cb04981654cccb4bbfea5dcdfa0/coverage-7.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:a9abbccd778d98e9c7e85038e35e91e67f5b520776781d9a1e2ee9d400869487", size = 214998 }, - { url = "https://files.pythonhosted.org/packages/2a/e6/1e9df74ef7a1c983a9c7443dac8aac37a46f1939ae3499424622e72a6f78/coverage-7.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:18c5ae6d061ad5b3e7eef4363fb27a0576012a7447af48be6c75b88494c6cf25", size = 212541 }, - { url = "https://files.pythonhosted.org/packages/04/51/c32174edb7ee49744e2e81c4b1414ac9df3dacfcb5b5f273b7f285ad43f6/coverage-7.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:95aa6ae391a22bbbce1b77ddac846c98c5473de0372ba5c463480043a07bff42", size = 212767 }, - { url = "https://files.pythonhosted.org/packages/e9/8f/f454cbdb5212f13f29d4a7983db69169f1937e869a5142bce983ded52162/coverage-7.8.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e013b07ba1c748dacc2a80e69a46286ff145935f260eb8c72df7185bf048f502", size = 256997 }, - { url = "https://files.pythonhosted.org/packages/e6/74/2bf9e78b321216d6ee90a81e5c22f912fc428442c830c4077b4a071db66f/coverage-7.8.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d766a4f0e5aa1ba056ec3496243150698dc0481902e2b8559314368717be82b1", size = 252708 }, - { url = "https://files.pythonhosted.org/packages/92/4d/50d7eb1e9a6062bee6e2f92e78b0998848a972e9afad349b6cdde6fa9e32/coverage-7.8.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad80e6b4a0c3cb6f10f29ae4c60e991f424e6b14219d46f1e7d442b938ee68a4", size = 255046 }, - { url = "https://files.pythonhosted.org/packages/40/9e/71fb4e7402a07c4198ab44fc564d09d7d0ffca46a9fb7b0a7b929e7641bd/coverage-7.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b87eb6fc9e1bb8f98892a2458781348fa37e6925f35bb6ceb9d4afd54ba36c73", size = 256139 }, - { url = "https://files.pythonhosted.org/packages/49/1a/78d37f7a42b5beff027e807c2843185961fdae7fe23aad5a4837c93f9d25/coverage-7.8.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:d1ba00ae33be84066cfbe7361d4e04dec78445b2b88bdb734d0d1cbab916025a", size = 254307 }, - { url = "https://files.pythonhosted.org/packages/58/e9/8fb8e0ff6bef5e170ee19d59ca694f9001b2ec085dc99b4f65c128bb3f9a/coverage-7.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f3c38e4e5ccbdc9198aecc766cedbb134b2d89bf64533973678dfcf07effd883", size = 255116 }, - { url = "https://files.pythonhosted.org/packages/56/b0/d968ecdbe6fe0a863de7169bbe9e8a476868959f3af24981f6a10d2b6924/coverage-7.8.0-cp313-cp313t-win32.whl", hash = "sha256:379fe315e206b14e21db5240f89dc0774bdd3e25c3c58c2c733c99eca96f1ada", size = 214909 }, - { url = "https://files.pythonhosted.org/packages/87/e9/d6b7ef9fecf42dfb418d93544af47c940aa83056c49e6021a564aafbc91f/coverage-7.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:2e4b6b87bb0c846a9315e3ab4be2d52fac905100565f4b92f02c445c8799e257", size = 216068 }, - { url = "https://files.pythonhosted.org/packages/60/0c/5da94be095239814bf2730a28cffbc48d6df4304e044f80d39e1ae581997/coverage-7.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa260de59dfb143af06dcf30c2be0b200bed2a73737a8a59248fcb9fa601ef0f", size = 211377 }, - { url = "https://files.pythonhosted.org/packages/d5/cb/b9e93ebf193a0bb89dbcd4f73d7b0e6ecb7c1b6c016671950e25f041835e/coverage-7.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:96121edfa4c2dfdda409877ea8608dd01de816a4dc4a0523356067b305e4e17a", size = 211803 }, - { url = "https://files.pythonhosted.org/packages/78/1a/cdbfe9e1bb14d3afcaf6bb6e1b9ba76c72666e329cd06865bbd241efd652/coverage-7.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b8af63b9afa1031c0ef05b217faa598f3069148eeee6bb24b79da9012423b82", size = 240561 }, - { url = "https://files.pythonhosted.org/packages/59/04/57f1223f26ac018d7ce791bfa65b0c29282de3e041c1cd3ed430cfeac5a5/coverage-7.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89b1f4af0d4afe495cd4787a68e00f30f1d15939f550e869de90a86efa7e0814", size = 238488 }, - { url = "https://files.pythonhosted.org/packages/b7/b1/0f25516ae2a35e265868670384feebe64e7857d9cffeeb3887b0197e2ba2/coverage-7.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94ec0be97723ae72d63d3aa41961a0b9a6f5a53ff599813c324548d18e3b9e8c", size = 239589 }, - { url = "https://files.pythonhosted.org/packages/e0/a4/99d88baac0d1d5a46ceef2dd687aac08fffa8795e4c3e71b6f6c78e14482/coverage-7.8.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8a1d96e780bdb2d0cbb297325711701f7c0b6f89199a57f2049e90064c29f6bd", size = 239366 }, - { url = "https://files.pythonhosted.org/packages/ea/9e/1db89e135feb827a868ed15f8fc857160757f9cab140ffee21342c783ceb/coverage-7.8.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f1d8a2a57b47142b10374902777e798784abf400a004b14f1b0b9eaf1e528ba4", size = 237591 }, - { url = "https://files.pythonhosted.org/packages/1b/6d/ac4d6fdfd0e201bc82d1b08adfacb1e34b40d21a22cdd62cfaf3c1828566/coverage-7.8.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cf60dd2696b457b710dd40bf17ad269d5f5457b96442f7f85722bdb16fa6c899", size = 238572 }, - { url = "https://files.pythonhosted.org/packages/25/5e/917cbe617c230f7f1745b6a13e780a3a1cd1cf328dbcd0fd8d7ec52858cd/coverage-7.8.0-cp39-cp39-win32.whl", hash = "sha256:be945402e03de47ba1872cd5236395e0f4ad635526185a930735f66710e1bd3f", size = 213966 }, - { url = "https://files.pythonhosted.org/packages/bd/93/72b434fe550135869f9ea88dd36068af19afce666db576e059e75177e813/coverage-7.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:90e7fbc6216ecaffa5a880cdc9c77b7418c1dcb166166b78dbc630d07f278cc3", size = 214852 }, - { url = "https://files.pythonhosted.org/packages/c4/f1/1da77bb4c920aa30e82fa9b6ea065da3467977c2e5e032e38e66f1c57ffd/coverage-7.8.0-pp39.pp310.pp311-none-any.whl", hash = "sha256:b8194fb8e50d556d5849753de991d390c5a1edeeba50f68e3a9253fbd8bf8ccd", size = 203443 }, - { url = "https://files.pythonhosted.org/packages/59/f1/4da7717f0063a222db253e7121bd6a56f6fb1ba439dcc36659088793347c/coverage-7.8.0-py3-none-any.whl", hash = "sha256:dbf364b4c5e7bae9250528167dfe40219b62e2d573c854d74be213e1e52069f7", size = 203435 }, -] - -[package.optional-dependencies] -toml = [ - { name = "tomli", marker = "python_full_version <= '3.11'" }, -] - -[[package]] -name = "cycler" -version = "0.12.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321 }, -] - -[[package]] -name = "docutils" -version = "0.21.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408 }, -] - -[[package]] -name = "exceptiongroup" -version = "1.2.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 }, -] - -[[package]] -name = "fonttools" -version = "4.57.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/03/2d/a9a0b6e3a0cf6bd502e64fc16d894269011930cabfc89aee20d1635b1441/fonttools-4.57.0.tar.gz", hash = "sha256:727ece10e065be2f9dd239d15dd5d60a66e17eac11aea47d447f9f03fdbc42de", size = 3492448 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/db/17/3ddfd1881878b3f856065130bb603f5922e81ae8a4eb53bce0ea78f765a8/fonttools-4.57.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:babe8d1eb059a53e560e7bf29f8e8f4accc8b6cfb9b5fd10e485bde77e71ef41", size = 2756260 }, - { url = "https://files.pythonhosted.org/packages/26/2b/6957890c52c030b0bf9e0add53e5badab4682c6ff024fac9a332bb2ae063/fonttools-4.57.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:81aa97669cd726349eb7bd43ca540cf418b279ee3caba5e2e295fb4e8f841c02", size = 2284691 }, - { url = "https://files.pythonhosted.org/packages/cc/8e/c043b4081774e5eb06a834cedfdb7d432b4935bc8c4acf27207bdc34dfc4/fonttools-4.57.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0e9618630edd1910ad4f07f60d77c184b2f572c8ee43305ea3265675cbbfe7e", size = 4566077 }, - { url = "https://files.pythonhosted.org/packages/59/bc/e16ae5d9eee6c70830ce11d1e0b23d6018ddfeb28025fda092cae7889c8b/fonttools-4.57.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34687a5d21f1d688d7d8d416cb4c5b9c87fca8a1797ec0d74b9fdebfa55c09ab", size = 4608729 }, - { url = "https://files.pythonhosted.org/packages/25/13/e557bf10bb38e4e4c436d3a9627aadf691bc7392ae460910447fda5fad2b/fonttools-4.57.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69ab81b66ebaa8d430ba56c7a5f9abe0183afefd3a2d6e483060343398b13fb1", size = 4759646 }, - { url = "https://files.pythonhosted.org/packages/bc/c9/5e2952214d4a8e31026bf80beb18187199b7001e60e99a6ce19773249124/fonttools-4.57.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d639397de852f2ccfb3134b152c741406752640a266d9c1365b0f23d7b88077f", size = 4941652 }, - { url = "https://files.pythonhosted.org/packages/df/04/e80242b3d9ec91a1f785d949edc277a13ecfdcfae744de4b170df9ed77d8/fonttools-4.57.0-cp310-cp310-win32.whl", hash = "sha256:cc066cb98b912f525ae901a24cd381a656f024f76203bc85f78fcc9e66ae5aec", size = 2159432 }, - { url = "https://files.pythonhosted.org/packages/33/ba/e858cdca275daf16e03c0362aa43734ea71104c3b356b2100b98543dba1b/fonttools-4.57.0-cp310-cp310-win_amd64.whl", hash = "sha256:7a64edd3ff6a7f711a15bd70b4458611fb240176ec11ad8845ccbab4fe6745db", size = 2203869 }, - { url = "https://files.pythonhosted.org/packages/81/1f/e67c99aa3c6d3d2f93d956627e62a57ae0d35dc42f26611ea2a91053f6d6/fonttools-4.57.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3871349303bdec958360eedb619169a779956503ffb4543bb3e6211e09b647c4", size = 2757392 }, - { url = "https://files.pythonhosted.org/packages/aa/f1/f75770d0ddc67db504850898d96d75adde238c35313409bfcd8db4e4a5fe/fonttools-4.57.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c59375e85126b15a90fcba3443eaac58f3073ba091f02410eaa286da9ad80ed8", size = 2285609 }, - { url = "https://files.pythonhosted.org/packages/f5/d3/bc34e4953cb204bae0c50b527307dce559b810e624a733351a654cfc318e/fonttools-4.57.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967b65232e104f4b0f6370a62eb33089e00024f2ce143aecbf9755649421c683", size = 4873292 }, - { url = "https://files.pythonhosted.org/packages/41/b8/d5933559303a4ab18c799105f4c91ee0318cc95db4a2a09e300116625e7a/fonttools-4.57.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39acf68abdfc74e19de7485f8f7396fa4d2418efea239b7061d6ed6a2510c746", size = 4902503 }, - { url = "https://files.pythonhosted.org/packages/32/13/acb36bfaa316f481153ce78de1fa3926a8bad42162caa3b049e1afe2408b/fonttools-4.57.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9d077f909f2343daf4495ba22bb0e23b62886e8ec7c109ee8234bdbd678cf344", size = 5077351 }, - { url = "https://files.pythonhosted.org/packages/b5/23/6d383a2ca83b7516d73975d8cca9d81a01acdcaa5e4db8579e4f3de78518/fonttools-4.57.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:46370ac47a1e91895d40e9ad48effbe8e9d9db1a4b80888095bc00e7beaa042f", size = 5275067 }, - { url = "https://files.pythonhosted.org/packages/bc/ca/31b8919c6da0198d5d522f1d26c980201378c087bdd733a359a1e7485769/fonttools-4.57.0-cp311-cp311-win32.whl", hash = "sha256:ca2aed95855506b7ae94e8f1f6217b7673c929e4f4f1217bcaa236253055cb36", size = 2158263 }, - { url = "https://files.pythonhosted.org/packages/13/4c/de2612ea2216eb45cfc8eb91a8501615dd87716feaf5f8fb65cbca576289/fonttools-4.57.0-cp311-cp311-win_amd64.whl", hash = "sha256:17168a4670bbe3775f3f3f72d23ee786bd965395381dfbb70111e25e81505b9d", size = 2204968 }, - { url = "https://files.pythonhosted.org/packages/cb/98/d4bc42d43392982eecaaca117d79845734d675219680cd43070bb001bc1f/fonttools-4.57.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:889e45e976c74abc7256d3064aa7c1295aa283c6bb19810b9f8b604dfe5c7f31", size = 2751824 }, - { url = "https://files.pythonhosted.org/packages/1a/62/7168030eeca3742fecf45f31e63b5ef48969fa230a672216b805f1d61548/fonttools-4.57.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0425c2e052a5f1516c94e5855dbda706ae5a768631e9fcc34e57d074d1b65b92", size = 2283072 }, - { url = "https://files.pythonhosted.org/packages/5d/82/121a26d9646f0986ddb35fbbaf58ef791c25b59ecb63ffea2aab0099044f/fonttools-4.57.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44c26a311be2ac130f40a96769264809d3b0cb297518669db437d1cc82974888", size = 4788020 }, - { url = "https://files.pythonhosted.org/packages/5b/26/e0f2fb662e022d565bbe280a3cfe6dafdaabf58889ff86fdef2d31ff1dde/fonttools-4.57.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84c41ba992df5b8d680b89fd84c6a1f2aca2b9f1ae8a67400c8930cd4ea115f6", size = 4859096 }, - { url = "https://files.pythonhosted.org/packages/9e/44/9075e323347b1891cdece4b3f10a3b84a8f4c42a7684077429d9ce842056/fonttools-4.57.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ea1e9e43ca56b0c12440a7c689b1350066595bebcaa83baad05b8b2675129d98", size = 4964356 }, - { url = "https://files.pythonhosted.org/packages/48/28/caa8df32743462fb966be6de6a79d7f30393859636d7732e82efa09fbbb4/fonttools-4.57.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:84fd56c78d431606332a0627c16e2a63d243d0d8b05521257d77c6529abe14d8", size = 5226546 }, - { url = "https://files.pythonhosted.org/packages/f6/46/95ab0f0d2e33c5b1a4fc1c0efe5e286ba9359602c0a9907adb1faca44175/fonttools-4.57.0-cp312-cp312-win32.whl", hash = "sha256:f4376819c1c778d59e0a31db5dc6ede854e9edf28bbfa5b756604727f7f800ac", size = 2146776 }, - { url = "https://files.pythonhosted.org/packages/06/5d/1be5424bb305880e1113631f49a55ea7c7da3a5fe02608ca7c16a03a21da/fonttools-4.57.0-cp312-cp312-win_amd64.whl", hash = "sha256:57e30241524879ea10cdf79c737037221f77cc126a8cdc8ff2c94d4a522504b9", size = 2193956 }, - { url = "https://files.pythonhosted.org/packages/e9/2f/11439f3af51e4bb75ac9598c29f8601aa501902dcedf034bdc41f47dd799/fonttools-4.57.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:408ce299696012d503b714778d89aa476f032414ae57e57b42e4b92363e0b8ef", size = 2739175 }, - { url = "https://files.pythonhosted.org/packages/25/52/677b55a4c0972dc3820c8dba20a29c358197a78229daa2ea219fdb19e5d5/fonttools-4.57.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bbceffc80aa02d9e8b99f2a7491ed8c4a783b2fc4020119dc405ca14fb5c758c", size = 2276583 }, - { url = "https://files.pythonhosted.org/packages/64/79/184555f8fa77b827b9460a4acdbbc0b5952bb6915332b84c615c3a236826/fonttools-4.57.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f022601f3ee9e1f6658ed6d184ce27fa5216cee5b82d279e0f0bde5deebece72", size = 4766437 }, - { url = "https://files.pythonhosted.org/packages/f8/ad/c25116352f456c0d1287545a7aa24e98987b6d99c5b0456c4bd14321f20f/fonttools-4.57.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4dea5893b58d4637ffa925536462ba626f8a1b9ffbe2f5c272cdf2c6ebadb817", size = 4838431 }, - { url = "https://files.pythonhosted.org/packages/53/ae/398b2a833897297797a44f519c9af911c2136eb7aa27d3f1352c6d1129fa/fonttools-4.57.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:dff02c5c8423a657c550b48231d0a48d7e2b2e131088e55983cfe74ccc2c7cc9", size = 4951011 }, - { url = "https://files.pythonhosted.org/packages/b7/5d/7cb31c4bc9ffb9a2bbe8b08f8f53bad94aeb158efad75da645b40b62cb73/fonttools-4.57.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:767604f244dc17c68d3e2dbf98e038d11a18abc078f2d0f84b6c24571d9c0b13", size = 5205679 }, - { url = "https://files.pythonhosted.org/packages/4c/e4/6934513ec2c4d3d69ca1bc3bd34d5c69dafcbf68c15388dd3bb062daf345/fonttools-4.57.0-cp313-cp313-win32.whl", hash = "sha256:8e2e12d0d862f43d51e5afb8b9751c77e6bec7d2dc00aad80641364e9df5b199", size = 2144833 }, - { url = "https://files.pythonhosted.org/packages/c4/0d/2177b7fdd23d017bcfb702fd41e47d4573766b9114da2fddbac20dcc4957/fonttools-4.57.0-cp313-cp313-win_amd64.whl", hash = "sha256:f1d6bc9c23356908db712d282acb3eebd4ae5ec6d8b696aa40342b1d84f8e9e3", size = 2190799 }, - { url = "https://files.pythonhosted.org/packages/d2/c7/3bddafbb95447f6fbabdd0b399bf468649321fd4029e356b4f6bd70fbc1b/fonttools-4.57.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7339e6a3283e4b0ade99cade51e97cde3d54cd6d1c3744459e886b66d630c8b3", size = 2758942 }, - { url = "https://files.pythonhosted.org/packages/d4/a2/8dd7771022e365c90e428b1607174c3297d5c0a2cc2cf4cdccb2221945b7/fonttools-4.57.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:05efceb2cb5f6ec92a4180fcb7a64aa8d3385fd49cfbbe459350229d1974f0b1", size = 2285959 }, - { url = "https://files.pythonhosted.org/packages/58/5a/2fd29c5e38b14afe1fae7d472373e66688e7c7a98554252f3cf44371e033/fonttools-4.57.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a97bb05eb24637714a04dee85bdf0ad1941df64fe3b802ee4ac1c284a5f97b7c", size = 4571677 }, - { url = "https://files.pythonhosted.org/packages/bf/30/b77cf81923f1a67ff35d6765a9db4718c0688eb8466c464c96a23a2e28d4/fonttools-4.57.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:541cb48191a19ceb1a2a4b90c1fcebd22a1ff7491010d3cf840dd3a68aebd654", size = 4616644 }, - { url = "https://files.pythonhosted.org/packages/06/33/376605898d8d553134144dff167506a49694cb0e0cf684c14920fbc1e99f/fonttools-4.57.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:cdef9a056c222d0479a1fdb721430f9efd68268014c54e8166133d2643cb05d9", size = 4761314 }, - { url = "https://files.pythonhosted.org/packages/48/e4/e0e48f5bae04bc1a1c6b4fcd7d1ca12b29f1fe74221534b7ff83ed0db8fe/fonttools-4.57.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3cf97236b192a50a4bf200dc5ba405aa78d4f537a2c6e4c624bb60466d5b03bd", size = 4945563 }, - { url = "https://files.pythonhosted.org/packages/61/98/2dacfc6d70f2d93bde1bbf814286be343cb17f53057130ad3b843144dd00/fonttools-4.57.0-cp39-cp39-win32.whl", hash = "sha256:e952c684274a7714b3160f57ec1d78309f955c6335c04433f07d36c5eb27b1f9", size = 2159997 }, - { url = "https://files.pythonhosted.org/packages/93/fa/e61cc236f40d504532d2becf90c297bfed8e40abc0c8b08375fbb83eff29/fonttools-4.57.0-cp39-cp39-win_amd64.whl", hash = "sha256:a2a722c0e4bfd9966a11ff55c895c817158fcce1b2b6700205a376403b546ad9", size = 2204508 }, - { url = "https://files.pythonhosted.org/packages/90/27/45f8957c3132917f91aaa56b700bcfc2396be1253f685bd5c68529b6f610/fonttools-4.57.0-py3-none-any.whl", hash = "sha256:3122c604a675513c68bd24c6a8f9091f1c2376d18e8f5fe5a101746c81b3e98f", size = 1093605 }, -] - -[[package]] -name = "furo" -version = "2024.8.6" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "beautifulsoup4" }, - { name = "pygments" }, - { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "sphinx-basic-ng" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a0/e2/d351d69a9a9e4badb4a5be062c2d0e87bd9e6c23b5e57337fef14bef34c8/furo-2024.8.6.tar.gz", hash = "sha256:b63e4cee8abfc3136d3bc03a3d45a76a850bada4d6374d24c1716b0e01394a01", size = 1661506 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/27/48/e791a7ed487dbb9729ef32bb5d1af16693d8925f4366befef54119b2e576/furo-2024.8.6-py3-none-any.whl", hash = "sha256:6cd97c58b47813d3619e63e9081169880fbe331f0ca883c871ff1f3f11814f5c", size = 341333 }, -] - -[[package]] -name = "idna" -version = "3.10" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, -] - -[[package]] -name = "imagesize" -version = "1.4.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a", size = 1280026 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b", size = 8769 }, -] - -[[package]] -name = "importlib-metadata" -version = "8.6.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "zipp", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/33/08/c1395a292bb23fd03bdf572a1357c5a733d3eecbab877641ceacab23db6e/importlib_metadata-8.6.1.tar.gz", hash = "sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580", size = 55767 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/79/9d/0fb148dc4d6fa4a7dd1d8378168d9b4cd8d4560a6fbf6f0121c5fc34eb68/importlib_metadata-8.6.1-py3-none-any.whl", hash = "sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e", size = 26971 }, -] - -[[package]] -name = "importlib-resources" -version = "6.5.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "zipp", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/cf/8c/f834fbf984f691b4f7ff60f50b514cc3de5cc08abfc3295564dd89c5e2e7/importlib_resources-6.5.2.tar.gz", hash = "sha256:185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c", size = 44693 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec", size = 37461 }, -] - -[[package]] -name = "iniconfig" -version = "2.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050 }, -] - -[[package]] -name = "jinja2" -version = "3.1.6" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markupsafe" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899 }, -] - -[[package]] -name = "kiwisolver" -version = "1.4.7" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/85/4d/2255e1c76304cbd60b48cee302b66d1dde4468dc5b1160e4b7cb43778f2a/kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60", size = 97286 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/97/14/fc943dd65268a96347472b4fbe5dcc2f6f55034516f80576cd0dd3a8930f/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6", size = 122440 }, - { url = "https://files.pythonhosted.org/packages/1e/46/e68fed66236b69dd02fcdb506218c05ac0e39745d696d22709498896875d/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17", size = 65758 }, - { url = "https://files.pythonhosted.org/packages/ef/fa/65de49c85838681fc9cb05de2a68067a683717321e01ddafb5b8024286f0/kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9", size = 64311 }, - { url = "https://files.pythonhosted.org/packages/42/9c/cc8d90f6ef550f65443bad5872ffa68f3dee36de4974768628bea7c14979/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9", size = 1637109 }, - { url = "https://files.pythonhosted.org/packages/55/91/0a57ce324caf2ff5403edab71c508dd8f648094b18cfbb4c8cc0fde4a6ac/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c", size = 1617814 }, - { url = "https://files.pythonhosted.org/packages/12/5d/c36140313f2510e20207708adf36ae4919416d697ee0236b0ddfb6fd1050/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599", size = 1400881 }, - { url = "https://files.pythonhosted.org/packages/56/d0/786e524f9ed648324a466ca8df86298780ef2b29c25313d9a4f16992d3cf/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05", size = 1512972 }, - { url = "https://files.pythonhosted.org/packages/67/5a/77851f2f201e6141d63c10a0708e996a1363efaf9e1609ad0441b343763b/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407", size = 1444787 }, - { url = "https://files.pythonhosted.org/packages/06/5f/1f5eaab84355885e224a6fc8d73089e8713dc7e91c121f00b9a1c58a2195/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278", size = 2199212 }, - { url = "https://files.pythonhosted.org/packages/b5/28/9152a3bfe976a0ae21d445415defc9d1cd8614b2910b7614b30b27a47270/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5", size = 2346399 }, - { url = "https://files.pythonhosted.org/packages/26/f6/453d1904c52ac3b400f4d5e240ac5fec25263716723e44be65f4d7149d13/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad", size = 2308688 }, - { url = "https://files.pythonhosted.org/packages/5a/9a/d4968499441b9ae187e81745e3277a8b4d7c60840a52dc9d535a7909fac3/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895", size = 2445493 }, - { url = "https://files.pythonhosted.org/packages/07/c9/032267192e7828520dacb64dfdb1d74f292765f179e467c1cba97687f17d/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3", size = 2262191 }, - { url = "https://files.pythonhosted.org/packages/6c/ad/db0aedb638a58b2951da46ddaeecf204be8b4f5454df020d850c7fa8dca8/kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc", size = 46644 }, - { url = "https://files.pythonhosted.org/packages/12/ca/d0f7b7ffbb0be1e7c2258b53554efec1fd652921f10d7d85045aff93ab61/kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c", size = 55877 }, - { url = "https://files.pythonhosted.org/packages/97/6c/cfcc128672f47a3e3c0d918ecb67830600078b025bfc32d858f2e2d5c6a4/kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a", size = 48347 }, - { url = "https://files.pythonhosted.org/packages/e9/44/77429fa0a58f941d6e1c58da9efe08597d2e86bf2b2cce6626834f49d07b/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54", size = 122442 }, - { url = "https://files.pythonhosted.org/packages/e5/20/8c75caed8f2462d63c7fd65e16c832b8f76cda331ac9e615e914ee80bac9/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95", size = 65762 }, - { url = "https://files.pythonhosted.org/packages/f4/98/fe010f15dc7230f45bc4cf367b012d651367fd203caaa992fd1f5963560e/kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935", size = 64319 }, - { url = "https://files.pythonhosted.org/packages/8b/1b/b5d618f4e58c0675654c1e5051bcf42c776703edb21c02b8c74135541f60/kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb", size = 1334260 }, - { url = "https://files.pythonhosted.org/packages/b8/01/946852b13057a162a8c32c4c8d2e9ed79f0bb5d86569a40c0b5fb103e373/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02", size = 1426589 }, - { url = "https://files.pythonhosted.org/packages/70/d1/c9f96df26b459e15cf8a965304e6e6f4eb291e0f7a9460b4ad97b047561e/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51", size = 1541080 }, - { url = "https://files.pythonhosted.org/packages/d3/73/2686990eb8b02d05f3de759d6a23a4ee7d491e659007dd4c075fede4b5d0/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052", size = 1470049 }, - { url = "https://files.pythonhosted.org/packages/a7/4b/2db7af3ed3af7c35f388d5f53c28e155cd402a55432d800c543dc6deb731/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18", size = 1426376 }, - { url = "https://files.pythonhosted.org/packages/05/83/2857317d04ea46dc5d115f0df7e676997bbd968ced8e2bd6f7f19cfc8d7f/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545", size = 2222231 }, - { url = "https://files.pythonhosted.org/packages/0d/b5/866f86f5897cd4ab6d25d22e403404766a123f138bd6a02ecb2cdde52c18/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b", size = 2368634 }, - { url = "https://files.pythonhosted.org/packages/c1/ee/73de8385403faba55f782a41260210528fe3273d0cddcf6d51648202d6d0/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36", size = 2329024 }, - { url = "https://files.pythonhosted.org/packages/a1/e7/cd101d8cd2cdfaa42dc06c433df17c8303d31129c9fdd16c0ea37672af91/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3", size = 2468484 }, - { url = "https://files.pythonhosted.org/packages/e1/72/84f09d45a10bc57a40bb58b81b99d8f22b58b2040c912b7eb97ebf625bf2/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523", size = 2284078 }, - { url = "https://files.pythonhosted.org/packages/d2/d4/71828f32b956612dc36efd7be1788980cb1e66bfb3706e6dec9acad9b4f9/kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d", size = 46645 }, - { url = "https://files.pythonhosted.org/packages/a1/65/d43e9a20aabcf2e798ad1aff6c143ae3a42cf506754bcb6a7ed8259c8425/kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b", size = 56022 }, - { url = "https://files.pythonhosted.org/packages/35/b3/9f75a2e06f1b4ca00b2b192bc2b739334127d27f1d0625627ff8479302ba/kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376", size = 48536 }, - { url = "https://files.pythonhosted.org/packages/97/9c/0a11c714cf8b6ef91001c8212c4ef207f772dd84540104952c45c1f0a249/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2", size = 121808 }, - { url = "https://files.pythonhosted.org/packages/f2/d8/0fe8c5f5d35878ddd135f44f2af0e4e1d379e1c7b0716f97cdcb88d4fd27/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a", size = 65531 }, - { url = "https://files.pythonhosted.org/packages/80/c5/57fa58276dfdfa612241d640a64ca2f76adc6ffcebdbd135b4ef60095098/kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee", size = 63894 }, - { url = "https://files.pythonhosted.org/packages/8b/e9/26d3edd4c4ad1c5b891d8747a4f81b1b0aba9fb9721de6600a4adc09773b/kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640", size = 1369296 }, - { url = "https://files.pythonhosted.org/packages/b6/67/3f4850b5e6cffb75ec40577ddf54f7b82b15269cc5097ff2e968ee32ea7d/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f", size = 1461450 }, - { url = "https://files.pythonhosted.org/packages/52/be/86cbb9c9a315e98a8dc6b1d23c43cffd91d97d49318854f9c37b0e41cd68/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483", size = 1579168 }, - { url = "https://files.pythonhosted.org/packages/0f/00/65061acf64bd5fd34c1f4ae53f20b43b0a017a541f242a60b135b9d1e301/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258", size = 1507308 }, - { url = "https://files.pythonhosted.org/packages/21/e4/c0b6746fd2eb62fe702118b3ca0cb384ce95e1261cfada58ff693aeec08a/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e", size = 1464186 }, - { url = "https://files.pythonhosted.org/packages/0a/0f/529d0a9fffb4d514f2782c829b0b4b371f7f441d61aa55f1de1c614c4ef3/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107", size = 2247877 }, - { url = "https://files.pythonhosted.org/packages/d1/e1/66603ad779258843036d45adcbe1af0d1a889a07af4635f8b4ec7dccda35/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948", size = 2404204 }, - { url = "https://files.pythonhosted.org/packages/8d/61/de5fb1ca7ad1f9ab7970e340a5b833d735df24689047de6ae71ab9d8d0e7/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038", size = 2352461 }, - { url = "https://files.pythonhosted.org/packages/ba/d2/0edc00a852e369827f7e05fd008275f550353f1f9bcd55db9363d779fc63/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383", size = 2501358 }, - { url = "https://files.pythonhosted.org/packages/84/15/adc15a483506aec6986c01fb7f237c3aec4d9ed4ac10b756e98a76835933/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520", size = 2314119 }, - { url = "https://files.pythonhosted.org/packages/36/08/3a5bb2c53c89660863a5aa1ee236912269f2af8762af04a2e11df851d7b2/kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b", size = 46367 }, - { url = "https://files.pythonhosted.org/packages/19/93/c05f0a6d825c643779fc3c70876bff1ac221f0e31e6f701f0e9578690d70/kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb", size = 55884 }, - { url = "https://files.pythonhosted.org/packages/d2/f9/3828d8f21b6de4279f0667fb50a9f5215e6fe57d5ec0d61905914f5b6099/kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a", size = 48528 }, - { url = "https://files.pythonhosted.org/packages/c4/06/7da99b04259b0f18b557a4effd1b9c901a747f7fdd84cf834ccf520cb0b2/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e", size = 121913 }, - { url = "https://files.pythonhosted.org/packages/97/f5/b8a370d1aa593c17882af0a6f6755aaecd643640c0ed72dcfd2eafc388b9/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6", size = 65627 }, - { url = "https://files.pythonhosted.org/packages/2a/fc/6c0374f7503522539e2d4d1b497f5ebad3f8ed07ab51aed2af988dd0fb65/kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750", size = 63888 }, - { url = "https://files.pythonhosted.org/packages/bf/3e/0b7172793d0f41cae5c923492da89a2ffcd1adf764c16159ca047463ebd3/kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d", size = 1369145 }, - { url = "https://files.pythonhosted.org/packages/77/92/47d050d6f6aced2d634258123f2688fbfef8ded3c5baf2c79d94d91f1f58/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379", size = 1461448 }, - { url = "https://files.pythonhosted.org/packages/9c/1b/8f80b18e20b3b294546a1adb41701e79ae21915f4175f311a90d042301cf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c", size = 1578750 }, - { url = "https://files.pythonhosted.org/packages/a4/fe/fe8e72f3be0a844f257cadd72689c0848c6d5c51bc1d60429e2d14ad776e/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34", size = 1507175 }, - { url = "https://files.pythonhosted.org/packages/39/fa/cdc0b6105d90eadc3bee525fecc9179e2b41e1ce0293caaf49cb631a6aaf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1", size = 1463963 }, - { url = "https://files.pythonhosted.org/packages/6e/5c/0c03c4e542720c6177d4f408e56d1c8315899db72d46261a4e15b8b33a41/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f", size = 2248220 }, - { url = "https://files.pythonhosted.org/packages/3d/ee/55ef86d5a574f4e767df7da3a3a7ff4954c996e12d4fbe9c408170cd7dcc/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b", size = 2404463 }, - { url = "https://files.pythonhosted.org/packages/0f/6d/73ad36170b4bff4825dc588acf4f3e6319cb97cd1fb3eb04d9faa6b6f212/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27", size = 2352842 }, - { url = "https://files.pythonhosted.org/packages/0b/16/fa531ff9199d3b6473bb4d0f47416cdb08d556c03b8bc1cccf04e756b56d/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a", size = 2501635 }, - { url = "https://files.pythonhosted.org/packages/78/7e/aa9422e78419db0cbe75fb86d8e72b433818f2e62e2e394992d23d23a583/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee", size = 2314556 }, - { url = "https://files.pythonhosted.org/packages/a8/b2/15f7f556df0a6e5b3772a1e076a9d9f6c538ce5f05bd590eca8106508e06/kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07", size = 46364 }, - { url = "https://files.pythonhosted.org/packages/0b/db/32e897e43a330eee8e4770bfd2737a9584b23e33587a0812b8e20aac38f7/kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76", size = 55887 }, - { url = "https://files.pythonhosted.org/packages/c8/a4/df2bdca5270ca85fd25253049eb6708d4127be2ed0e5c2650217450b59e9/kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650", size = 48530 }, - { url = "https://files.pythonhosted.org/packages/11/88/37ea0ea64512997b13d69772db8dcdc3bfca5442cda3a5e4bb943652ee3e/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd", size = 122449 }, - { url = "https://files.pythonhosted.org/packages/4e/45/5a5c46078362cb3882dcacad687c503089263c017ca1241e0483857791eb/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583", size = 65757 }, - { url = "https://files.pythonhosted.org/packages/8a/be/a6ae58978772f685d48dd2e84460937761c53c4bbd84e42b0336473d9775/kiwisolver-1.4.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417", size = 64312 }, - { url = "https://files.pythonhosted.org/packages/f4/04/18ef6f452d311e1e1eb180c9bf5589187fa1f042db877e6fe443ef10099c/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904", size = 1626966 }, - { url = "https://files.pythonhosted.org/packages/21/b1/40655f6c3fa11ce740e8a964fa8e4c0479c87d6a7944b95af799c7a55dfe/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a", size = 1607044 }, - { url = "https://files.pythonhosted.org/packages/fd/93/af67dbcfb9b3323bbd2c2db1385a7139d8f77630e4a37bb945b57188eb2d/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8", size = 1391879 }, - { url = "https://files.pythonhosted.org/packages/40/6f/d60770ef98e77b365d96061d090c0cd9e23418121c55fff188fa4bdf0b54/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2", size = 1504751 }, - { url = "https://files.pythonhosted.org/packages/fa/3a/5f38667d313e983c432f3fcd86932177519ed8790c724e07d77d1de0188a/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88", size = 1436990 }, - { url = "https://files.pythonhosted.org/packages/cb/3b/1520301a47326e6a6043b502647e42892be33b3f051e9791cc8bb43f1a32/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde", size = 2191122 }, - { url = "https://files.pythonhosted.org/packages/cf/c4/eb52da300c166239a2233f1f9c4a1b767dfab98fae27681bfb7ea4873cb6/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c", size = 2338126 }, - { url = "https://files.pythonhosted.org/packages/1a/cb/42b92fd5eadd708dd9107c089e817945500685f3437ce1fd387efebc6d6e/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2", size = 2298313 }, - { url = "https://files.pythonhosted.org/packages/4f/eb/be25aa791fe5fc75a8b1e0c965e00f942496bc04635c9aae8035f6b76dcd/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb", size = 2437784 }, - { url = "https://files.pythonhosted.org/packages/c5/22/30a66be7f3368d76ff95689e1c2e28d382383952964ab15330a15d8bfd03/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327", size = 2253988 }, - { url = "https://files.pythonhosted.org/packages/35/d3/5f2ecb94b5211c8a04f218a76133cc8d6d153b0f9cd0b45fad79907f0689/kiwisolver-1.4.7-cp39-cp39-win32.whl", hash = "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644", size = 46980 }, - { url = "https://files.pythonhosted.org/packages/ef/17/cd10d020578764ea91740204edc6b3236ed8106228a46f568d716b11feb2/kiwisolver-1.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4", size = 55847 }, - { url = "https://files.pythonhosted.org/packages/91/84/32232502020bd78d1d12be7afde15811c64a95ed1f606c10456db4e4c3ac/kiwisolver-1.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f", size = 48494 }, - { url = "https://files.pythonhosted.org/packages/ac/59/741b79775d67ab67ced9bb38552da688c0305c16e7ee24bba7a2be253fb7/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643", size = 59491 }, - { url = "https://files.pythonhosted.org/packages/58/cc/fb239294c29a5656e99e3527f7369b174dd9cc7c3ef2dea7cb3c54a8737b/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706", size = 57648 }, - { url = "https://files.pythonhosted.org/packages/3b/ef/2f009ac1f7aab9f81efb2d837301d255279d618d27b6015780115ac64bdd/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6", size = 84257 }, - { url = "https://files.pythonhosted.org/packages/81/e1/c64f50987f85b68b1c52b464bb5bf73e71570c0f7782d626d1eb283ad620/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2", size = 80906 }, - { url = "https://files.pythonhosted.org/packages/fd/71/1687c5c0a0be2cee39a5c9c389e546f9c6e215e46b691d00d9f646892083/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4", size = 79951 }, - { url = "https://files.pythonhosted.org/packages/ea/8b/d7497df4a1cae9367adf21665dd1f896c2a7aeb8769ad77b662c5e2bcce7/kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a", size = 55715 }, - { url = "https://files.pythonhosted.org/packages/d5/df/ce37d9b26f07ab90880923c94d12a6ff4d27447096b4c849bfc4339ccfdf/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39", size = 58666 }, - { url = "https://files.pythonhosted.org/packages/b0/d3/e4b04f43bc629ac8e186b77b2b1a251cdfa5b7610fa189dc0db622672ce6/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e", size = 57088 }, - { url = "https://files.pythonhosted.org/packages/30/1c/752df58e2d339e670a535514d2db4fe8c842ce459776b8080fbe08ebb98e/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608", size = 84321 }, - { url = "https://files.pythonhosted.org/packages/f0/f8/fe6484e847bc6e238ec9f9828089fb2c0bb53f2f5f3a79351fde5b565e4f/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674", size = 80776 }, - { url = "https://files.pythonhosted.org/packages/9b/57/d7163c0379f250ef763aba85330a19feefb5ce6cb541ade853aaba881524/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225", size = 79984 }, - { url = "https://files.pythonhosted.org/packages/8c/95/4a103776c265d13b3d2cd24fb0494d4e04ea435a8ef97e1b2c026d43250b/kiwisolver-1.4.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0", size = 55811 }, -] - -[[package]] -name = "kiwisolver" -version = "1.4.8" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/47/5f/4d8e9e852d98ecd26cdf8eaf7ed8bc33174033bba5e07001b289f07308fd/kiwisolver-1.4.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:88c6f252f6816a73b1f8c904f7bbe02fd67c09a69f7cb8a0eecdbf5ce78e63db", size = 124623 }, - { url = "https://files.pythonhosted.org/packages/1d/70/7f5af2a18a76fe92ea14675f8bd88ce53ee79e37900fa5f1a1d8e0b42998/kiwisolver-1.4.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c72941acb7b67138f35b879bbe85be0f6c6a70cab78fe3ef6db9c024d9223e5b", size = 66720 }, - { url = "https://files.pythonhosted.org/packages/c6/13/e15f804a142353aefd089fadc8f1d985561a15358c97aca27b0979cb0785/kiwisolver-1.4.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce2cf1e5688edcb727fdf7cd1bbd0b6416758996826a8be1d958f91880d0809d", size = 65413 }, - { url = "https://files.pythonhosted.org/packages/ce/6d/67d36c4d2054e83fb875c6b59d0809d5c530de8148846b1370475eeeece9/kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c8bf637892dc6e6aad2bc6d4d69d08764166e5e3f69d469e55427b6ac001b19d", size = 1650826 }, - { url = "https://files.pythonhosted.org/packages/de/c6/7b9bb8044e150d4d1558423a1568e4f227193662a02231064e3824f37e0a/kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:034d2c891f76bd3edbdb3ea11140d8510dca675443da7304205a2eaa45d8334c", size = 1628231 }, - { url = "https://files.pythonhosted.org/packages/b6/38/ad10d437563063eaaedbe2c3540a71101fc7fb07a7e71f855e93ea4de605/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d47b28d1dfe0793d5e96bce90835e17edf9a499b53969b03c6c47ea5985844c3", size = 1408938 }, - { url = "https://files.pythonhosted.org/packages/52/ce/c0106b3bd7f9e665c5f5bc1e07cc95b5dabd4e08e3dad42dbe2faad467e7/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb158fe28ca0c29f2260cca8c43005329ad58452c36f0edf298204de32a9a3ed", size = 1422799 }, - { url = "https://files.pythonhosted.org/packages/d0/87/efb704b1d75dc9758087ba374c0f23d3254505edaedd09cf9d247f7878b9/kiwisolver-1.4.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5536185fce131780ebd809f8e623bf4030ce1b161353166c49a3c74c287897f", size = 1354362 }, - { url = "https://files.pythonhosted.org/packages/eb/b3/fd760dc214ec9a8f208b99e42e8f0130ff4b384eca8b29dd0efc62052176/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:369b75d40abedc1da2c1f4de13f3482cb99e3237b38726710f4a793432b1c5ff", size = 2222695 }, - { url = "https://files.pythonhosted.org/packages/a2/09/a27fb36cca3fc01700687cc45dae7a6a5f8eeb5f657b9f710f788748e10d/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:641f2ddf9358c80faa22e22eb4c9f54bd3f0e442e038728f500e3b978d00aa7d", size = 2370802 }, - { url = "https://files.pythonhosted.org/packages/3d/c3/ba0a0346db35fe4dc1f2f2cf8b99362fbb922d7562e5f911f7ce7a7b60fa/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d561d2d8883e0819445cfe58d7ddd673e4015c3c57261d7bdcd3710d0d14005c", size = 2334646 }, - { url = "https://files.pythonhosted.org/packages/41/52/942cf69e562f5ed253ac67d5c92a693745f0bed3c81f49fc0cbebe4d6b00/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1732e065704b47c9afca7ffa272f845300a4eb959276bf6970dc07265e73b605", size = 2467260 }, - { url = "https://files.pythonhosted.org/packages/32/26/2d9668f30d8a494b0411d4d7d4ea1345ba12deb6a75274d58dd6ea01e951/kiwisolver-1.4.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:bcb1ebc3547619c3b58a39e2448af089ea2ef44b37988caf432447374941574e", size = 2288633 }, - { url = "https://files.pythonhosted.org/packages/98/99/0dd05071654aa44fe5d5e350729961e7bb535372935a45ac89a8924316e6/kiwisolver-1.4.8-cp310-cp310-win_amd64.whl", hash = "sha256:89c107041f7b27844179ea9c85d6da275aa55ecf28413e87624d033cf1f6b751", size = 71885 }, - { url = "https://files.pythonhosted.org/packages/6c/fc/822e532262a97442989335394d441cd1d0448c2e46d26d3e04efca84df22/kiwisolver-1.4.8-cp310-cp310-win_arm64.whl", hash = "sha256:b5773efa2be9eb9fcf5415ea3ab70fc785d598729fd6057bea38d539ead28271", size = 65175 }, - { url = "https://files.pythonhosted.org/packages/da/ed/c913ee28936c371418cb167b128066ffb20bbf37771eecc2c97edf8a6e4c/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4d3601908c560bdf880f07d94f31d734afd1bb71e96585cace0e38ef44c6d84", size = 124635 }, - { url = "https://files.pythonhosted.org/packages/4c/45/4a7f896f7467aaf5f56ef093d1f329346f3b594e77c6a3c327b2d415f521/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:856b269c4d28a5c0d5e6c1955ec36ebfd1651ac00e1ce0afa3e28da95293b561", size = 66717 }, - { url = "https://files.pythonhosted.org/packages/5f/b4/c12b3ac0852a3a68f94598d4c8d569f55361beef6159dce4e7b624160da2/kiwisolver-1.4.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2b9a96e0f326205af81a15718a9073328df1173a2619a68553decb7097fd5d7", size = 65413 }, - { url = "https://files.pythonhosted.org/packages/a9/98/1df4089b1ed23d83d410adfdc5947245c753bddfbe06541c4aae330e9e70/kiwisolver-1.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5020c83e8553f770cb3b5fc13faac40f17e0b205bd237aebd21d53d733adb03", size = 1343994 }, - { url = "https://files.pythonhosted.org/packages/8d/bf/b4b169b050c8421a7c53ea1ea74e4ef9c335ee9013216c558a047f162d20/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dace81d28c787956bfbfbbfd72fdcef014f37d9b48830829e488fdb32b49d954", size = 1434804 }, - { url = "https://files.pythonhosted.org/packages/66/5a/e13bd341fbcf73325ea60fdc8af752addf75c5079867af2e04cc41f34434/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11e1022b524bd48ae56c9b4f9296bce77e15a2e42a502cceba602f804b32bb79", size = 1450690 }, - { url = "https://files.pythonhosted.org/packages/9b/4f/5955dcb376ba4a830384cc6fab7d7547bd6759fe75a09564910e9e3bb8ea/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b9b4d2892fefc886f30301cdd80debd8bb01ecdf165a449eb6e78f79f0fabd6", size = 1376839 }, - { url = "https://files.pythonhosted.org/packages/3a/97/5edbed69a9d0caa2e4aa616ae7df8127e10f6586940aa683a496c2c280b9/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a96c0e790ee875d65e340ab383700e2b4891677b7fcd30a699146f9384a2bb0", size = 1435109 }, - { url = "https://files.pythonhosted.org/packages/13/fc/e756382cb64e556af6c1809a1bbb22c141bbc2445049f2da06b420fe52bf/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23454ff084b07ac54ca8be535f4174170c1094a4cff78fbae4f73a4bcc0d4dab", size = 2245269 }, - { url = "https://files.pythonhosted.org/packages/76/15/e59e45829d7f41c776d138245cabae6515cb4eb44b418f6d4109c478b481/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:87b287251ad6488e95b4f0b4a79a6d04d3ea35fde6340eb38fbd1ca9cd35bbbc", size = 2393468 }, - { url = "https://files.pythonhosted.org/packages/e9/39/483558c2a913ab8384d6e4b66a932406f87c95a6080112433da5ed668559/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b21dbe165081142b1232a240fc6383fd32cdd877ca6cc89eab93e5f5883e1c25", size = 2355394 }, - { url = "https://files.pythonhosted.org/packages/01/aa/efad1fbca6570a161d29224f14b082960c7e08268a133fe5dc0f6906820e/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:768cade2c2df13db52475bd28d3a3fac8c9eff04b0e9e2fda0f3760f20b3f7fc", size = 2490901 }, - { url = "https://files.pythonhosted.org/packages/c9/4f/15988966ba46bcd5ab9d0c8296914436720dd67fca689ae1a75b4ec1c72f/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d47cfb2650f0e103d4bf68b0b5804c68da97272c84bb12850d877a95c056bd67", size = 2312306 }, - { url = "https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl", hash = "sha256:ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34", size = 71966 }, - { url = "https://files.pythonhosted.org/packages/4a/c9/9642ea855604aeb2968a8e145fc662edf61db7632ad2e4fb92424be6b6c0/kiwisolver-1.4.8-cp311-cp311-win_arm64.whl", hash = "sha256:16523b40aab60426ffdebe33ac374457cf62863e330a90a0383639ce14bf44b2", size = 65311 }, - { url = "https://files.pythonhosted.org/packages/fc/aa/cea685c4ab647f349c3bc92d2daf7ae34c8e8cf405a6dcd3a497f58a2ac3/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d6af5e8815fd02997cb6ad9bbed0ee1e60014438ee1a5c2444c96f87b8843502", size = 124152 }, - { url = "https://files.pythonhosted.org/packages/c5/0b/8db6d2e2452d60d5ebc4ce4b204feeb16176a851fd42462f66ade6808084/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bade438f86e21d91e0cf5dd7c0ed00cda0f77c8c1616bd83f9fc157fa6760d31", size = 66555 }, - { url = "https://files.pythonhosted.org/packages/60/26/d6a0db6785dd35d3ba5bf2b2df0aedc5af089962c6eb2cbf67a15b81369e/kiwisolver-1.4.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b83dc6769ddbc57613280118fb4ce3cd08899cc3369f7d0e0fab518a7cf37fdb", size = 65067 }, - { url = "https://files.pythonhosted.org/packages/c9/ed/1d97f7e3561e09757a196231edccc1bcf59d55ddccefa2afc9c615abd8e0/kiwisolver-1.4.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111793b232842991be367ed828076b03d96202c19221b5ebab421ce8bcad016f", size = 1378443 }, - { url = "https://files.pythonhosted.org/packages/29/61/39d30b99954e6b46f760e6289c12fede2ab96a254c443639052d1b573fbc/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:257af1622860e51b1a9d0ce387bf5c2c4f36a90594cb9514f55b074bcc787cfc", size = 1472728 }, - { url = "https://files.pythonhosted.org/packages/0c/3e/804163b932f7603ef256e4a715e5843a9600802bb23a68b4e08c8c0ff61d/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b5637c3f316cab1ec1c9a12b8c5f4750a4c4b71af9157645bf32830e39c03a", size = 1478388 }, - { url = "https://files.pythonhosted.org/packages/8a/9e/60eaa75169a154700be74f875a4d9961b11ba048bef315fbe89cb6999056/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:782bb86f245ec18009890e7cb8d13a5ef54dcf2ebe18ed65f795e635a96a1c6a", size = 1413849 }, - { url = "https://files.pythonhosted.org/packages/bc/b3/9458adb9472e61a998c8c4d95cfdfec91c73c53a375b30b1428310f923e4/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc978a80a0db3a66d25767b03688f1147a69e6237175c0f4ffffaaedf744055a", size = 1475533 }, - { url = "https://files.pythonhosted.org/packages/e4/7a/0a42d9571e35798de80aef4bb43a9b672aa7f8e58643d7bd1950398ffb0a/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:36dbbfd34838500a31f52c9786990d00150860e46cd5041386f217101350f0d3", size = 2268898 }, - { url = "https://files.pythonhosted.org/packages/d9/07/1255dc8d80271400126ed8db35a1795b1a2c098ac3a72645075d06fe5c5d/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:eaa973f1e05131de5ff3569bbba7f5fd07ea0595d3870ed4a526d486fe57fa1b", size = 2425605 }, - { url = "https://files.pythonhosted.org/packages/84/df/5a3b4cf13780ef6f6942df67b138b03b7e79e9f1f08f57c49957d5867f6e/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a66f60f8d0c87ab7f59b6fb80e642ebb29fec354a4dfad687ca4092ae69d04f4", size = 2375801 }, - { url = "https://files.pythonhosted.org/packages/8f/10/2348d068e8b0f635c8c86892788dac7a6b5c0cb12356620ab575775aad89/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858416b7fb777a53f0c59ca08190ce24e9abbd3cffa18886a5781b8e3e26f65d", size = 2520077 }, - { url = "https://files.pythonhosted.org/packages/32/d8/014b89fee5d4dce157d814303b0fce4d31385a2af4c41fed194b173b81ac/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:085940635c62697391baafaaeabdf3dd7a6c3643577dde337f4d66eba021b2b8", size = 2338410 }, - { url = "https://files.pythonhosted.org/packages/bd/72/dfff0cc97f2a0776e1c9eb5bef1ddfd45f46246c6533b0191887a427bca5/kiwisolver-1.4.8-cp312-cp312-win_amd64.whl", hash = "sha256:01c3d31902c7db5fb6182832713d3b4122ad9317c2c5877d0539227d96bb2e50", size = 71853 }, - { url = "https://files.pythonhosted.org/packages/dc/85/220d13d914485c0948a00f0b9eb419efaf6da81b7d72e88ce2391f7aed8d/kiwisolver-1.4.8-cp312-cp312-win_arm64.whl", hash = "sha256:a3c44cb68861de93f0c4a8175fbaa691f0aa22550c331fefef02b618a9dcb476", size = 65424 }, - { url = "https://files.pythonhosted.org/packages/79/b3/e62464a652f4f8cd9006e13d07abad844a47df1e6537f73ddfbf1bc997ec/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1c8ceb754339793c24aee1c9fb2485b5b1f5bb1c2c214ff13368431e51fc9a09", size = 124156 }, - { url = "https://files.pythonhosted.org/packages/8d/2d/f13d06998b546a2ad4f48607a146e045bbe48030774de29f90bdc573df15/kiwisolver-1.4.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:54a62808ac74b5e55a04a408cda6156f986cefbcf0ada13572696b507cc92fa1", size = 66555 }, - { url = "https://files.pythonhosted.org/packages/59/e3/b8bd14b0a54998a9fd1e8da591c60998dc003618cb19a3f94cb233ec1511/kiwisolver-1.4.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:68269e60ee4929893aad82666821aaacbd455284124817af45c11e50a4b42e3c", size = 65071 }, - { url = "https://files.pythonhosted.org/packages/f0/1c/6c86f6d85ffe4d0ce04228d976f00674f1df5dc893bf2dd4f1928748f187/kiwisolver-1.4.8-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34d142fba9c464bc3bbfeff15c96eab0e7310343d6aefb62a79d51421fcc5f1b", size = 1378053 }, - { url = "https://files.pythonhosted.org/packages/4e/b9/1c6e9f6dcb103ac5cf87cb695845f5fa71379021500153566d8a8a9fc291/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc373e0eef45b59197de815b1b28ef89ae3955e7722cc9710fb91cd77b7f47", size = 1472278 }, - { url = "https://files.pythonhosted.org/packages/ee/81/aca1eb176de671f8bda479b11acdc42c132b61a2ac861c883907dde6debb/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:77e6f57a20b9bd4e1e2cedda4d0b986ebd0216236f0106e55c28aea3d3d69b16", size = 1478139 }, - { url = "https://files.pythonhosted.org/packages/49/f4/e081522473671c97b2687d380e9e4c26f748a86363ce5af48b4a28e48d06/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08e77738ed7538f036cd1170cbed942ef749137b1311fa2bbe2a7fda2f6bf3cc", size = 1413517 }, - { url = "https://files.pythonhosted.org/packages/8f/e9/6a7d025d8da8c4931522922cd706105aa32b3291d1add8c5427cdcd66e63/kiwisolver-1.4.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5ce1e481a74b44dd5e92ff03ea0cb371ae7a0268318e202be06c8f04f4f1246", size = 1474952 }, - { url = "https://files.pythonhosted.org/packages/82/13/13fa685ae167bee5d94b415991c4fc7bb0a1b6ebea6e753a87044b209678/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fc2ace710ba7c1dfd1a3b42530b62b9ceed115f19a1656adefce7b1782a37794", size = 2269132 }, - { url = "https://files.pythonhosted.org/packages/ef/92/bb7c9395489b99a6cb41d502d3686bac692586db2045adc19e45ee64ed23/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3452046c37c7692bd52b0e752b87954ef86ee2224e624ef7ce6cb21e8c41cc1b", size = 2425997 }, - { url = "https://files.pythonhosted.org/packages/ed/12/87f0e9271e2b63d35d0d8524954145837dd1a6c15b62a2d8c1ebe0f182b4/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e9a60b50fe8b2ec6f448fe8d81b07e40141bfced7f896309df271a0b92f80f3", size = 2376060 }, - { url = "https://files.pythonhosted.org/packages/02/6e/c8af39288edbce8bf0fa35dee427b082758a4b71e9c91ef18fa667782138/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:918139571133f366e8362fa4a297aeba86c7816b7ecf0bc79168080e2bd79957", size = 2520471 }, - { url = "https://files.pythonhosted.org/packages/13/78/df381bc7b26e535c91469f77f16adcd073beb3e2dd25042efd064af82323/kiwisolver-1.4.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e063ef9f89885a1d68dd8b2e18f5ead48653176d10a0e324e3b0030e3a69adeb", size = 2338793 }, - { url = "https://files.pythonhosted.org/packages/d0/dc/c1abe38c37c071d0fc71c9a474fd0b9ede05d42f5a458d584619cfd2371a/kiwisolver-1.4.8-cp313-cp313-win_amd64.whl", hash = "sha256:a17b7c4f5b2c51bb68ed379defd608a03954a1845dfed7cc0117f1cc8a9b7fd2", size = 71855 }, - { url = "https://files.pythonhosted.org/packages/a0/b6/21529d595b126ac298fdd90b705d87d4c5693de60023e0efcb4f387ed99e/kiwisolver-1.4.8-cp313-cp313-win_arm64.whl", hash = "sha256:3cd3bc628b25f74aedc6d374d5babf0166a92ff1317f46267f12d2ed54bc1d30", size = 65430 }, - { url = "https://files.pythonhosted.org/packages/34/bd/b89380b7298e3af9b39f49334e3e2a4af0e04819789f04b43d560516c0c8/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:370fd2df41660ed4e26b8c9d6bbcad668fbe2560462cba151a721d49e5b6628c", size = 126294 }, - { url = "https://files.pythonhosted.org/packages/83/41/5857dc72e5e4148eaac5aa76e0703e594e4465f8ab7ec0fc60e3a9bb8fea/kiwisolver-1.4.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:84a2f830d42707de1d191b9490ac186bf7997a9495d4e9072210a1296345f7dc", size = 67736 }, - { url = "https://files.pythonhosted.org/packages/e1/d1/be059b8db56ac270489fb0b3297fd1e53d195ba76e9bbb30e5401fa6b759/kiwisolver-1.4.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a3ad337add5148cf51ce0b55642dc551c0b9d6248458a757f98796ca7348712", size = 66194 }, - { url = "https://files.pythonhosted.org/packages/e1/83/4b73975f149819eb7dcf9299ed467eba068ecb16439a98990dcb12e63fdd/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7506488470f41169b86d8c9aeff587293f530a23a23a49d6bc64dab66bedc71e", size = 1465942 }, - { url = "https://files.pythonhosted.org/packages/c7/2c/30a5cdde5102958e602c07466bce058b9d7cb48734aa7a4327261ac8e002/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f0121b07b356a22fb0414cec4666bbe36fd6d0d759db3d37228f496ed67c880", size = 1595341 }, - { url = "https://files.pythonhosted.org/packages/ff/9b/1e71db1c000385aa069704f5990574b8244cce854ecd83119c19e83c9586/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d6d6bd87df62c27d4185de7c511c6248040afae67028a8a22012b010bc7ad062", size = 1598455 }, - { url = "https://files.pythonhosted.org/packages/85/92/c8fec52ddf06231b31cbb779af77e99b8253cd96bd135250b9498144c78b/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:291331973c64bb9cce50bbe871fb2e675c4331dab4f31abe89f175ad7679a4d7", size = 1522138 }, - { url = "https://files.pythonhosted.org/packages/0b/51/9eb7e2cd07a15d8bdd976f6190c0164f92ce1904e5c0c79198c4972926b7/kiwisolver-1.4.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:893f5525bb92d3d735878ec00f781b2de998333659507d29ea4466208df37bed", size = 1582857 }, - { url = "https://files.pythonhosted.org/packages/0f/95/c5a00387a5405e68ba32cc64af65ce881a39b98d73cc394b24143bebc5b8/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b47a465040146981dc9db8647981b8cb96366fbc8d452b031e4f8fdffec3f26d", size = 2293129 }, - { url = "https://files.pythonhosted.org/packages/44/83/eeb7af7d706b8347548313fa3a3a15931f404533cc54fe01f39e830dd231/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:99cea8b9dd34ff80c521aef46a1dddb0dcc0283cf18bde6d756f1e6f31772165", size = 2421538 }, - { url = "https://files.pythonhosted.org/packages/05/f9/27e94c1b3eb29e6933b6986ffc5fa1177d2cd1f0c8efc5f02c91c9ac61de/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:151dffc4865e5fe6dafce5480fab84f950d14566c480c08a53c663a0020504b6", size = 2390661 }, - { url = "https://files.pythonhosted.org/packages/d9/d4/3c9735faa36ac591a4afcc2980d2691000506050b7a7e80bcfe44048daa7/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:577facaa411c10421314598b50413aa1ebcf5126f704f1e5d72d7e4e9f020d90", size = 2546710 }, - { url = "https://files.pythonhosted.org/packages/4c/fa/be89a49c640930180657482a74970cdcf6f7072c8d2471e1babe17a222dc/kiwisolver-1.4.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:be4816dc51c8a471749d664161b434912eee82f2ea66bd7628bd14583a833e85", size = 2349213 }, - { url = "https://files.pythonhosted.org/packages/1f/f9/ae81c47a43e33b93b0a9819cac6723257f5da2a5a60daf46aa5c7226ea85/kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e7a019419b7b510f0f7c9dceff8c5eae2392037eae483a7f9162625233802b0a", size = 60403 }, - { url = "https://files.pythonhosted.org/packages/58/ca/f92b5cb6f4ce0c1ebfcfe3e2e42b96917e16f7090e45b21102941924f18f/kiwisolver-1.4.8-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:286b18e86682fd2217a48fc6be6b0f20c1d0ed10958d8dc53453ad58d7be0bf8", size = 58657 }, - { url = "https://files.pythonhosted.org/packages/80/28/ae0240f732f0484d3a4dc885d055653c47144bdf59b670aae0ec3c65a7c8/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4191ee8dfd0be1c3666ccbac178c5a05d5f8d689bbe3fc92f3c4abec817f8fe0", size = 84948 }, - { url = "https://files.pythonhosted.org/packages/5d/eb/78d50346c51db22c7203c1611f9b513075f35c4e0e4877c5dde378d66043/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd2785b9391f2873ad46088ed7599a6a71e762e1ea33e87514b1a441ed1da1c", size = 81186 }, - { url = "https://files.pythonhosted.org/packages/43/f8/7259f18c77adca88d5f64f9a522792e178b2691f3748817a8750c2d216ef/kiwisolver-1.4.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c07b29089b7ba090b6f1a669f1411f27221c3662b3a1b7010e67b59bb5a6f10b", size = 80279 }, - { url = "https://files.pythonhosted.org/packages/3a/1d/50ad811d1c5dae091e4cf046beba925bcae0a610e79ae4c538f996f63ed5/kiwisolver-1.4.8-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:65ea09a5a3faadd59c2ce96dc7bf0f364986a315949dc6374f04396b0d60e09b", size = 71762 }, -] - -[[package]] -name = "loguru" -version = "0.7.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32'" }, - { name = "win32-setctime", marker = "sys_platform == 'win32'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/3a/05/a1dae3dffd1116099471c643b8924f5aa6524411dc6c63fdae648c4f1aca/loguru-0.7.3.tar.gz", hash = "sha256:19480589e77d47b8d85b2c827ad95d49bf31b0dcde16593892eb51dd18706eb6", size = 63559 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0c/29/0348de65b8cc732daa3e33e67806420b2ae89bdce2b04af740289c5c6c8c/loguru-0.7.3-py3-none-any.whl", hash = "sha256:31a33c10c8e1e10422bfd431aeb5d351c7cf7fa671e3c4df004162264b28220c", size = 61595 }, -] - -[[package]] -name = "magpylib" -version = "5.0.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "matplotlib", version = "3.9.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "plotly", marker = "python_full_version < '3.10'" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/19/d3/8603a7392382bcc8927443281adcd8292318598c8889084f85acbc4a2ddb/magpylib-5.0.1.tar.gz", hash = "sha256:80f0d387f779ef4a7583c999555cfe0d603f37aabbc4b57f25dac22db035efb2", size = 10354729 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/eb/c6/ec74e54b75f6386115a6a4bec66e8ad4ffb7af695b0b71c74d4f3242f731/magpylib-5.0.1-py3-none-any.whl", hash = "sha256:a9d5967be0897bdb6965e53fe7777f6d685ca8ecb2db4baa2fad383954bba8d6", size = 184906 }, -] - -[[package]] -name = "magpylib" -version = "5.1.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "matplotlib", version = "3.10.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "plotly", marker = "python_full_version >= '3.10'" }, - { name = "scipy", version = "1.15.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/da/18/3d8e183b6f4540157cab2be92cfa6d295b77a5c98c4f01f28b6e00cfdc77/magpylib-5.1.1.tar.gz", hash = "sha256:be339e034fd72cb9792e95375fd2705c1c5c82e877eaafa280db80bc6851b6ef", size = 11024890 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c8/d1/c6ee8b2b02928eb7ae361ce240d60748b7015dd6c8a51d82396745e6eb13/magpylib-5.1.1-py3-none-any.whl", hash = "sha256:ec643faf433f0a01ff1eb64a4fbf6f55cb09c992533427f2c32bade81cb8c0b2", size = 188785 }, -] - -[[package]] -name = "magpylib-material-response" -source = { editable = "." } -dependencies = [ - { name = "loguru" }, - { name = "magpylib", version = "5.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "magpylib", version = "5.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, -] - -[package.optional-dependencies] -dev = [ - { name = "pytest" }, - { name = "pytest-cov" }, -] -docs = [ - { name = "furo" }, - { name = "myst-parser", version = "3.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "myst-parser", version = "4.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "sphinx-autodoc-typehints", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "sphinx-autodoc-typehints", version = "3.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "sphinx-autodoc-typehints", version = "3.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "sphinx-copybutton" }, -] -test = [ - { name = "pytest" }, - { name = "pytest-cov" }, -] - -[package.dev-dependencies] -dev = [ - { name = "magpylib-material-response", extra = ["test"] }, -] - -[package.metadata] -requires-dist = [ - { name = "furo", marker = "extra == 'docs'", specifier = ">=2023.8.17" }, - { name = "loguru", specifier = ">=0.5.0" }, - { name = "magpylib", specifier = ">=5.0" }, - { name = "myst-parser", marker = "extra == 'docs'", specifier = ">=0.13" }, - { name = "pytest", marker = "extra == 'dev'", specifier = ">=6" }, - { name = "pytest", marker = "extra == 'test'", specifier = ">=6" }, - { name = "pytest-cov", marker = "extra == 'dev'", specifier = ">=3" }, - { name = "pytest-cov", marker = "extra == 'test'", specifier = ">=3" }, - { name = "sphinx", marker = "extra == 'docs'", specifier = ">=7.0" }, - { name = "sphinx-autodoc-typehints", marker = "extra == 'docs'" }, - { name = "sphinx-copybutton", marker = "extra == 'docs'" }, -] -provides-extras = ["dev", "docs", "test"] - -[package.metadata.requires-dev] -dev = [{ name = "magpylib-material-response", extras = ["test"] }] - -[[package]] -name = "markdown-it-py" -version = "3.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mdurl" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, -] - -[[package]] -name = "markupsafe" -version = "3.0.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/90/d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd/MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", size = 14357 }, - { url = "https://files.pythonhosted.org/packages/04/e1/6e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374/MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", size = 12393 }, - { url = "https://files.pythonhosted.org/packages/1d/69/35fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", size = 21732 }, - { url = "https://files.pythonhosted.org/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", size = 20866 }, - { url = "https://files.pythonhosted.org/packages/29/28/6d029a903727a1b62edb51863232152fd335d602def598dade38996887f0/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", size = 20964 }, - { url = "https://files.pythonhosted.org/packages/cc/cd/07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", size = 21977 }, - { url = "https://files.pythonhosted.org/packages/29/01/84b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", size = 21366 }, - { url = "https://files.pythonhosted.org/packages/bd/6e/61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", size = 21091 }, - { url = "https://files.pythonhosted.org/packages/11/23/ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499/MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50", size = 15065 }, - { url = "https://files.pythonhosted.org/packages/44/06/e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3/MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", size = 15514 }, - { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353 }, - { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392 }, - { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984 }, - { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120 }, - { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032 }, - { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057 }, - { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359 }, - { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306 }, - { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 }, - { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 }, - { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274 }, - { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348 }, - { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149 }, - { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118 }, - { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993 }, - { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178 }, - { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319 }, - { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352 }, - { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097 }, - { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601 }, - { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274 }, - { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352 }, - { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122 }, - { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085 }, - { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978 }, - { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208 }, - { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357 }, - { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344 }, - { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101 }, - { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603 }, - { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510 }, - { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486 }, - { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480 }, - { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914 }, - { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796 }, - { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473 }, - { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114 }, - { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098 }, - { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208 }, - { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739 }, - { url = "https://files.pythonhosted.org/packages/a7/ea/9b1530c3fdeeca613faeb0fb5cbcf2389d816072fab72a71b45749ef6062/MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a", size = 14344 }, - { url = "https://files.pythonhosted.org/packages/4b/c2/fbdbfe48848e7112ab05e627e718e854d20192b674952d9042ebd8c9e5de/MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff", size = 12389 }, - { url = "https://files.pythonhosted.org/packages/f0/25/7a7c6e4dbd4f867d95d94ca15449e91e52856f6ed1905d58ef1de5e211d0/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13", size = 21607 }, - { url = "https://files.pythonhosted.org/packages/53/8f/f339c98a178f3c1e545622206b40986a4c3307fe39f70ccd3d9df9a9e425/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144", size = 20728 }, - { url = "https://files.pythonhosted.org/packages/1a/03/8496a1a78308456dbd50b23a385c69b41f2e9661c67ea1329849a598a8f9/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29", size = 20826 }, - { url = "https://files.pythonhosted.org/packages/e6/cf/0a490a4bd363048c3022f2f475c8c05582179bb179defcee4766fb3dcc18/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0", size = 21843 }, - { url = "https://files.pythonhosted.org/packages/19/a3/34187a78613920dfd3cdf68ef6ce5e99c4f3417f035694074beb8848cd77/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0", size = 21219 }, - { url = "https://files.pythonhosted.org/packages/17/d8/5811082f85bb88410ad7e452263af048d685669bbbfb7b595e8689152498/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178", size = 20946 }, - { url = "https://files.pythonhosted.org/packages/7c/31/bd635fb5989440d9365c5e3c47556cfea121c7803f5034ac843e8f37c2f2/MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f", size = 15063 }, - { url = "https://files.pythonhosted.org/packages/b3/73/085399401383ce949f727afec55ec3abd76648d04b9f22e1c0e99cb4bec3/MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a", size = 15506 }, -] - -[[package]] -name = "matplotlib" -version = "3.9.4" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "contourpy", version = "1.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "cycler", marker = "python_full_version < '3.10'" }, - { name = "fonttools", marker = "python_full_version < '3.10'" }, - { name = "importlib-resources", marker = "python_full_version < '3.10'" }, - { name = "kiwisolver", version = "1.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, - { name = "pillow", marker = "python_full_version < '3.10'" }, - { name = "pyparsing", marker = "python_full_version < '3.10'" }, - { name = "python-dateutil", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/df/17/1747b4154034befd0ed33b52538f5eb7752d05bb51c5e2a31470c3bc7d52/matplotlib-3.9.4.tar.gz", hash = "sha256:1e00e8be7393cbdc6fedfa8a6fba02cf3e83814b285db1c60b906a023ba41bc3", size = 36106529 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/94/27d2e2c30d54b56c7b764acc1874a909e34d1965a427fc7092bb6a588b63/matplotlib-3.9.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:c5fdd7abfb706dfa8d307af64a87f1a862879ec3cd8d0ec8637458f0885b9c50", size = 7885089 }, - { url = "https://files.pythonhosted.org/packages/c6/25/828273307e40a68eb8e9df832b6b2aaad075864fdc1de4b1b81e40b09e48/matplotlib-3.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d89bc4e85e40a71d1477780366c27fb7c6494d293e1617788986f74e2a03d7ff", size = 7770600 }, - { url = "https://files.pythonhosted.org/packages/f2/65/f841a422ec994da5123368d76b126acf4fc02ea7459b6e37c4891b555b83/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ddf9f3c26aae695c5daafbf6b94e4c1a30d6cd617ba594bbbded3b33a1fcfa26", size = 8200138 }, - { url = "https://files.pythonhosted.org/packages/07/06/272aca07a38804d93b6050813de41ca7ab0e29ba7a9dd098e12037c919a9/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18ebcf248030173b59a868fda1fe42397253f6698995b55e81e1f57431d85e50", size = 8312711 }, - { url = "https://files.pythonhosted.org/packages/98/37/f13e23b233c526b7e27ad61be0a771894a079e0f7494a10d8d81557e0e9a/matplotlib-3.9.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974896ec43c672ec23f3f8c648981e8bc880ee163146e0312a9b8def2fac66f5", size = 9090622 }, - { url = "https://files.pythonhosted.org/packages/4f/8c/b1f5bd2bd70e60f93b1b54c4d5ba7a992312021d0ddddf572f9a1a6d9348/matplotlib-3.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:4598c394ae9711cec135639374e70871fa36b56afae17bdf032a345be552a88d", size = 7828211 }, - { url = "https://files.pythonhosted.org/packages/74/4b/65be7959a8fa118a3929b49a842de5b78bb55475236fcf64f3e308ff74a0/matplotlib-3.9.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d4dd29641d9fb8bc4492420c5480398dd40a09afd73aebe4eb9d0071a05fbe0c", size = 7894430 }, - { url = "https://files.pythonhosted.org/packages/e9/18/80f70d91896e0a517b4a051c3fd540daa131630fd75e02e250365353b253/matplotlib-3.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30e5b22e8bcfb95442bf7d48b0d7f3bdf4a450cbf68986ea45fca3d11ae9d099", size = 7780045 }, - { url = "https://files.pythonhosted.org/packages/a2/73/ccb381026e3238c5c25c3609ba4157b2d1a617ec98d65a8b4ee4e1e74d02/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2bb0030d1d447fd56dcc23b4c64a26e44e898f0416276cac1ebc25522e0ac249", size = 8209906 }, - { url = "https://files.pythonhosted.org/packages/ab/33/1648da77b74741c89f5ea95cbf42a291b4b364f2660b316318811404ed97/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aca90ed222ac3565d2752b83dbb27627480d27662671e4d39da72e97f657a423", size = 8322873 }, - { url = "https://files.pythonhosted.org/packages/57/d3/8447ba78bc6593c9044c372d1609f8ea10fb1e071e7a9e0747bea74fc16c/matplotlib-3.9.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a181b2aa2906c608fcae72f977a4a2d76e385578939891b91c2550c39ecf361e", size = 9099566 }, - { url = "https://files.pythonhosted.org/packages/23/e1/4f0e237bf349c02ff9d1b6e7109f1a17f745263809b9714a8576dc17752b/matplotlib-3.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:1f6882828231eca17f501c4dcd98a05abb3f03d157fbc0769c6911fe08b6cfd3", size = 7838065 }, - { url = "https://files.pythonhosted.org/packages/1a/2b/c918bf6c19d6445d1cefe3d2e42cb740fb997e14ab19d4daeb6a7ab8a157/matplotlib-3.9.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:dfc48d67e6661378a21c2983200a654b72b5c5cdbd5d2cf6e5e1ece860f0cc70", size = 7891131 }, - { url = "https://files.pythonhosted.org/packages/c1/e5/b4e8fc601ca302afeeabf45f30e706a445c7979a180e3a978b78b2b681a4/matplotlib-3.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:47aef0fab8332d02d68e786eba8113ffd6f862182ea2999379dec9e237b7e483", size = 7776365 }, - { url = "https://files.pythonhosted.org/packages/99/06/b991886c506506476e5d83625c5970c656a491b9f80161458fed94597808/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fba1f52c6b7dc764097f52fd9ab627b90db452c9feb653a59945de16752e965f", size = 8200707 }, - { url = "https://files.pythonhosted.org/packages/c3/e2/556b627498cb27e61026f2d1ba86a78ad1b836fef0996bef5440e8bc9559/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:173ac3748acaac21afcc3fa1633924609ba1b87749006bc25051c52c422a5d00", size = 8313761 }, - { url = "https://files.pythonhosted.org/packages/58/ff/165af33ec766ff818306ea88e91f9f60d2a6ed543be1eb122a98acbf3b0d/matplotlib-3.9.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320edea0cadc07007765e33f878b13b3738ffa9745c5f707705692df70ffe0e0", size = 9095284 }, - { url = "https://files.pythonhosted.org/packages/9f/8b/3d0c7a002db3b1ed702731c2a9a06d78d035f1f2fb0fb936a8e43cc1e9f4/matplotlib-3.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a4a4cfc82330b27042a7169533da7991e8789d180dd5b3daeaee57d75cd5a03b", size = 7841160 }, - { url = "https://files.pythonhosted.org/packages/49/b1/999f89a7556d101b23a2f0b54f1b6e140d73f56804da1398f2f0bc0924bc/matplotlib-3.9.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:37eeffeeca3c940985b80f5b9a7b95ea35671e0e7405001f249848d2b62351b6", size = 7891499 }, - { url = "https://files.pythonhosted.org/packages/87/7b/06a32b13a684977653396a1bfcd34d4e7539c5d55c8cbfaa8ae04d47e4a9/matplotlib-3.9.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3e7465ac859ee4abcb0d836137cd8414e7bb7ad330d905abced457217d4f0f45", size = 7776802 }, - { url = "https://files.pythonhosted.org/packages/65/87/ac498451aff739e515891bbb92e566f3c7ef31891aaa878402a71f9b0910/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4c12302c34afa0cf061bea23b331e747e5e554b0fa595c96e01c7b75bc3b858", size = 8200802 }, - { url = "https://files.pythonhosted.org/packages/f8/6b/9eb761c00e1cb838f6c92e5f25dcda3f56a87a52f6cb8fdfa561e6cf6a13/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b8c97917f21b75e72108b97707ba3d48f171541a74aa2a56df7a40626bafc64", size = 8313880 }, - { url = "https://files.pythonhosted.org/packages/d7/a2/c8eaa600e2085eec7e38cbbcc58a30fc78f8224939d31d3152bdafc01fd1/matplotlib-3.9.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0229803bd7e19271b03cb09f27db76c918c467aa4ce2ae168171bc67c3f508df", size = 9094637 }, - { url = "https://files.pythonhosted.org/packages/71/1f/c6e1daea55b7bfeb3d84c6cb1abc449f6a02b181e7e2a5e4db34c3afb793/matplotlib-3.9.4-cp313-cp313-win_amd64.whl", hash = "sha256:7c0d8ef442ebf56ff5e206f8083d08252ee738e04f3dc88ea882853a05488799", size = 7841311 }, - { url = "https://files.pythonhosted.org/packages/c0/3a/2757d3f7d388b14dd48f5a83bea65b6d69f000e86b8f28f74d86e0d375bd/matplotlib-3.9.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a04c3b00066a688834356d196136349cb32f5e1003c55ac419e91585168b88fb", size = 7919989 }, - { url = "https://files.pythonhosted.org/packages/24/28/f5077c79a4f521589a37fe1062d6a6ea3534e068213f7357e7cfffc2e17a/matplotlib-3.9.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:04c519587f6c210626741a1e9a68eefc05966ede24205db8982841826af5871a", size = 7809417 }, - { url = "https://files.pythonhosted.org/packages/36/c8/c523fd2963156692916a8eb7d4069084cf729359f7955cf09075deddfeaf/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:308afbf1a228b8b525fcd5cec17f246bbbb63b175a3ef6eb7b4d33287ca0cf0c", size = 8226258 }, - { url = "https://files.pythonhosted.org/packages/f6/88/499bf4b8fa9349b6f5c0cf4cead0ebe5da9d67769129f1b5651e5ac51fbc/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddb3b02246ddcffd3ce98e88fed5b238bc5faff10dbbaa42090ea13241d15764", size = 8335849 }, - { url = "https://files.pythonhosted.org/packages/b8/9f/20a4156b9726188646a030774ee337d5ff695a965be45ce4dbcb9312c170/matplotlib-3.9.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8a75287e9cb9eee48cb79ec1d806f75b29c0fde978cb7223a1f4c5848d696041", size = 9102152 }, - { url = "https://files.pythonhosted.org/packages/10/11/237f9c3a4e8d810b1759b67ff2da7c32c04f9c80aa475e7beb36ed43a8fb/matplotlib-3.9.4-cp313-cp313t-win_amd64.whl", hash = "sha256:488deb7af140f0ba86da003e66e10d55ff915e152c78b4b66d231638400b1965", size = 7896987 }, - { url = "https://files.pythonhosted.org/packages/56/eb/501b465c9fef28f158e414ea3a417913dc2ac748564c7ed41535f23445b4/matplotlib-3.9.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3c3724d89a387ddf78ff88d2a30ca78ac2b4c89cf37f2db4bd453c34799e933c", size = 7885919 }, - { url = "https://files.pythonhosted.org/packages/da/36/236fbd868b6c91309a5206bd90c3f881f4f44b2d997cd1d6239ef652f878/matplotlib-3.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d5f0a8430ffe23d7e32cfd86445864ccad141797f7d25b7c41759a5b5d17cfd7", size = 7771486 }, - { url = "https://files.pythonhosted.org/packages/e0/4b/105caf2d54d5ed11d9f4335398f5103001a03515f2126c936a752ccf1461/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bb0141a21aef3b64b633dc4d16cbd5fc538b727e4958be82a0e1c92a234160e", size = 8201838 }, - { url = "https://files.pythonhosted.org/packages/5d/a7/bb01188fb4013d34d274caf44a2f8091255b0497438e8b6c0a7c1710c692/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57aa235109e9eed52e2c2949db17da185383fa71083c00c6c143a60e07e0888c", size = 8314492 }, - { url = "https://files.pythonhosted.org/packages/33/19/02e1a37f7141fc605b193e927d0a9cdf9dc124a20b9e68793f4ffea19695/matplotlib-3.9.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b18c600061477ccfdd1e6fd050c33d8be82431700f3452b297a56d9ed7037abb", size = 9092500 }, - { url = "https://files.pythonhosted.org/packages/57/68/c2feb4667adbf882ffa4b3e0ac9967f848980d9f8b5bebd86644aa67ce6a/matplotlib-3.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:ef5f2d1b67d2d2145ff75e10f8c008bfbf71d45137c4b648c87193e7dd053eac", size = 7822962 }, - { url = "https://files.pythonhosted.org/packages/0c/22/2ef6a364cd3f565442b0b055e0599744f1e4314ec7326cdaaa48a4d864d7/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:44e0ed786d769d85bc787b0606a53f2d8d2d1d3c8a2608237365e9121c1a338c", size = 7877995 }, - { url = "https://files.pythonhosted.org/packages/87/b8/2737456e566e9f4d94ae76b8aa0d953d9acb847714f9a7ad80184474f5be/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:09debb9ce941eb23ecdbe7eab972b1c3e0276dcf01688073faff7b0f61d6c6ca", size = 7769300 }, - { url = "https://files.pythonhosted.org/packages/b2/1f/e709c6ec7b5321e6568769baa288c7178e60a93a9da9e682b39450da0e29/matplotlib-3.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcc53cf157a657bfd03afab14774d54ba73aa84d42cfe2480c91bd94873952db", size = 8313423 }, - { url = "https://files.pythonhosted.org/packages/5e/b6/5a1f868782cd13f053a679984e222007ecff654a9bfbac6b27a65f4eeb05/matplotlib-3.9.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ad45da51be7ad02387801fd154ef74d942f49fe3fcd26a64c94842ba7ec0d865", size = 7854624 }, -] - -[[package]] -name = "matplotlib" -version = "3.10.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "contourpy", version = "1.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "cycler", marker = "python_full_version >= '3.10'" }, - { name = "fonttools", marker = "python_full_version >= '3.10'" }, - { name = "kiwisolver", version = "1.4.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "packaging", marker = "python_full_version >= '3.10'" }, - { name = "pillow", marker = "python_full_version >= '3.10'" }, - { name = "pyparsing", marker = "python_full_version >= '3.10'" }, - { name = "python-dateutil", marker = "python_full_version >= '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2f/08/b89867ecea2e305f408fbb417139a8dd941ecf7b23a2e02157c36da546f0/matplotlib-3.10.1.tar.gz", hash = "sha256:e8d2d0e3881b129268585bf4765ad3ee73a4591d77b9a18c214ac7e3a79fb2ba", size = 36743335 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ee/b1/f70e27cf1cd76ce2a5e1aa5579d05afe3236052c6d9b9a96325bc823a17e/matplotlib-3.10.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:ff2ae14910be903f4a24afdbb6d7d3a6c44da210fc7d42790b87aeac92238a16", size = 8163654 }, - { url = "https://files.pythonhosted.org/packages/26/af/5ec3d4636106718bb62503a03297125d4514f98fe818461bd9e6b9d116e4/matplotlib-3.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0721a3fd3d5756ed593220a8b86808a36c5031fce489adb5b31ee6dbb47dd5b2", size = 8037943 }, - { url = "https://files.pythonhosted.org/packages/a1/3d/07f9003a71b698b848c9925d05979ffa94a75cd25d1a587202f0bb58aa81/matplotlib-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0673b4b8f131890eb3a1ad058d6e065fb3c6e71f160089b65f8515373394698", size = 8449510 }, - { url = "https://files.pythonhosted.org/packages/12/87/9472d4513ff83b7cd864311821793ab72234fa201ab77310ec1b585d27e2/matplotlib-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e875b95ac59a7908978fe307ecdbdd9a26af7fa0f33f474a27fcf8c99f64a19", size = 8586585 }, - { url = "https://files.pythonhosted.org/packages/31/9e/fe74d237d2963adae8608faeb21f778cf246dbbf4746cef87cffbc82c4b6/matplotlib-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2589659ea30726284c6c91037216f64a506a9822f8e50592d48ac16a2f29e044", size = 9397911 }, - { url = "https://files.pythonhosted.org/packages/b6/1b/025d3e59e8a4281ab463162ad7d072575354a1916aba81b6a11507dfc524/matplotlib-3.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:a97ff127f295817bc34517255c9db6e71de8eddaab7f837b7d341dee9f2f587f", size = 8052998 }, - { url = "https://files.pythonhosted.org/packages/a5/14/a1b840075be247bb1834b22c1e1d558740b0f618fe3a823740181ca557a1/matplotlib-3.10.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:057206ff2d6ab82ff3e94ebd94463d084760ca682ed5f150817b859372ec4401", size = 8174669 }, - { url = "https://files.pythonhosted.org/packages/0a/e4/300b08e3e08f9c98b0d5635f42edabf2f7a1d634e64cb0318a71a44ff720/matplotlib-3.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a144867dd6bf8ba8cb5fc81a158b645037e11b3e5cf8a50bd5f9917cb863adfe", size = 8047996 }, - { url = "https://files.pythonhosted.org/packages/75/f9/8d99ff5a2498a5f1ccf919fb46fb945109623c6108216f10f96428f388bc/matplotlib-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56c5d9fcd9879aa8040f196a235e2dcbdf7dd03ab5b07c0696f80bc6cf04bedd", size = 8461612 }, - { url = "https://files.pythonhosted.org/packages/40/b8/53fa08a5eaf78d3a7213fd6da1feec4bae14a81d9805e567013811ff0e85/matplotlib-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f69dc9713e4ad2fb21a1c30e37bd445d496524257dfda40ff4a8efb3604ab5c", size = 8602258 }, - { url = "https://files.pythonhosted.org/packages/40/87/4397d2ce808467af86684a622dd112664553e81752ea8bf61bdd89d24a41/matplotlib-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4c59af3e8aca75d7744b68e8e78a669e91ccbcf1ac35d0102a7b1b46883f1dd7", size = 9408896 }, - { url = "https://files.pythonhosted.org/packages/d7/68/0d03098b3feb786cbd494df0aac15b571effda7f7cbdec267e8a8d398c16/matplotlib-3.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:11b65088c6f3dae784bc72e8d039a2580186285f87448babb9ddb2ad0082993a", size = 8061281 }, - { url = "https://files.pythonhosted.org/packages/7c/1d/5e0dc3b59c034e43de16f94deb68f4ad8a96b3ea00f4b37c160b7474928e/matplotlib-3.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:66e907a06e68cb6cfd652c193311d61a12b54f56809cafbed9736ce5ad92f107", size = 8175488 }, - { url = "https://files.pythonhosted.org/packages/7a/81/dae7e14042e74da658c3336ab9799128e09a1ee03964f2d89630b5d12106/matplotlib-3.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e9b4bb156abb8fa5e5b2b460196f7db7264fc6d62678c03457979e7d5254b7be", size = 8046264 }, - { url = "https://files.pythonhosted.org/packages/21/c4/22516775dcde10fc9c9571d155f90710761b028fc44f660508106c363c97/matplotlib-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1985ad3d97f51307a2cbfc801a930f120def19ba22864182dacef55277102ba6", size = 8452048 }, - { url = "https://files.pythonhosted.org/packages/63/23/c0615001f67ce7c96b3051d856baedc0c818a2ed84570b9bf9bde200f85d/matplotlib-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c96f2c2f825d1257e437a1482c5a2cf4fee15db4261bd6fc0750f81ba2b4ba3d", size = 8597111 }, - { url = "https://files.pythonhosted.org/packages/ca/c0/a07939a82aed77770514348f4568177d7dadab9787ebc618a616fe3d665e/matplotlib-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:35e87384ee9e488d8dd5a2dd7baf471178d38b90618d8ea147aced4ab59c9bea", size = 9402771 }, - { url = "https://files.pythonhosted.org/packages/a6/b6/a9405484fb40746fdc6ae4502b16a9d6e53282ba5baaf9ebe2da579f68c4/matplotlib-3.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:cfd414bce89cc78a7e1d25202e979b3f1af799e416010a20ab2b5ebb3a02425c", size = 8063742 }, - { url = "https://files.pythonhosted.org/packages/60/73/6770ff5e5523d00f3bc584acb6031e29ee5c8adc2336b16cd1d003675fe0/matplotlib-3.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c42eee41e1b60fd83ee3292ed83a97a5f2a8239b10c26715d8a6172226988d7b", size = 8176112 }, - { url = "https://files.pythonhosted.org/packages/08/97/b0ca5da0ed54a3f6599c3ab568bdda65269bc27c21a2c97868c1625e4554/matplotlib-3.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4f0647b17b667ae745c13721602b540f7aadb2a32c5b96e924cd4fea5dcb90f1", size = 8046931 }, - { url = "https://files.pythonhosted.org/packages/df/9a/1acbdc3b165d4ce2dcd2b1a6d4ffb46a7220ceee960c922c3d50d8514067/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa3854b5f9473564ef40a41bc922be978fab217776e9ae1545c9b3a5cf2092a3", size = 8453422 }, - { url = "https://files.pythonhosted.org/packages/51/d0/2bc4368abf766203e548dc7ab57cf7e9c621f1a3c72b516cc7715347b179/matplotlib-3.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e496c01441be4c7d5f96d4e40f7fca06e20dcb40e44c8daa2e740e1757ad9e6", size = 8596819 }, - { url = "https://files.pythonhosted.org/packages/ab/1b/8b350f8a1746c37ab69dda7d7528d1fc696efb06db6ade9727b7887be16d/matplotlib-3.10.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5d45d3f5245be5b469843450617dcad9af75ca50568acf59997bed9311131a0b", size = 9402782 }, - { url = "https://files.pythonhosted.org/packages/89/06/f570373d24d93503988ba8d04f213a372fa1ce48381c5eb15da985728498/matplotlib-3.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:8e8e25b1209161d20dfe93037c8a7f7ca796ec9aa326e6e4588d8c4a5dd1e473", size = 8063812 }, - { url = "https://files.pythonhosted.org/packages/fc/e0/8c811a925b5a7ad75135f0e5af46408b78af88bbb02a1df775100ef9bfef/matplotlib-3.10.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:19b06241ad89c3ae9469e07d77efa87041eac65d78df4fcf9cac318028009b01", size = 8214021 }, - { url = "https://files.pythonhosted.org/packages/4a/34/319ec2139f68ba26da9d00fce2ff9f27679fb799a6c8e7358539801fd629/matplotlib-3.10.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:01e63101ebb3014e6e9f80d9cf9ee361a8599ddca2c3e166c563628b39305dbb", size = 8090782 }, - { url = "https://files.pythonhosted.org/packages/77/ea/9812124ab9a99df5b2eec1110e9b2edc0b8f77039abf4c56e0a376e84a29/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f06bad951eea6422ac4e8bdebcf3a70c59ea0a03338c5d2b109f57b64eb3972", size = 8478901 }, - { url = "https://files.pythonhosted.org/packages/c9/db/b05bf463689134789b06dea85828f8ebe506fa1e37593f723b65b86c9582/matplotlib-3.10.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3dfb036f34873b46978f55e240cff7a239f6c4409eac62d8145bad3fc6ba5a3", size = 8613864 }, - { url = "https://files.pythonhosted.org/packages/c2/04/41ccec4409f3023a7576df3b5c025f1a8c8b81fbfe922ecfd837ac36e081/matplotlib-3.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dc6ab14a7ab3b4d813b88ba957fc05c79493a037f54e246162033591e770de6f", size = 9409487 }, - { url = "https://files.pythonhosted.org/packages/ac/c2/0d5aae823bdcc42cc99327ecdd4d28585e15ccd5218c453b7bcd827f3421/matplotlib-3.10.1-cp313-cp313t-win_amd64.whl", hash = "sha256:bc411ebd5889a78dabbc457b3fa153203e22248bfa6eedc6797be5df0164dbf9", size = 8134832 }, - { url = "https://files.pythonhosted.org/packages/c8/f6/10adb696d8cbeed2ab4c2e26ecf1c80dd3847bbf3891f4a0c362e0e08a5a/matplotlib-3.10.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:648406f1899f9a818cef8c0231b44dcfc4ff36f167101c3fd1c9151f24220fdc", size = 8158685 }, - { url = "https://files.pythonhosted.org/packages/3f/84/0603d917406072763e7f9bb37747d3d74d7ecd4b943a8c947cc3ae1cf7af/matplotlib-3.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:02582304e352f40520727984a5a18f37e8187861f954fea9be7ef06569cf85b4", size = 8035491 }, - { url = "https://files.pythonhosted.org/packages/fd/7d/6a8b31dd07ed856b3eae001c9129670ef75c4698fa1c2a6ac9f00a4a7054/matplotlib-3.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3809916157ba871bcdd33d3493acd7fe3037db5daa917ca6e77975a94cef779", size = 8590087 }, -] - -[[package]] -name = "mdit-py-plugins" -version = "0.4.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "markdown-it-py" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/19/03/a2ecab526543b152300717cf232bb4bb8605b6edb946c845016fa9c9c9fd/mdit_py_plugins-0.4.2.tar.gz", hash = "sha256:5f2cd1fdb606ddf152d37ec30e46101a60512bc0e5fa1a7002c36647b09e26b5", size = 43542 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl", hash = "sha256:0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636", size = 55316 }, -] - -[[package]] -name = "mdurl" -version = "0.1.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, -] - -[[package]] -name = "myst-parser" -version = "3.0.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "docutils", marker = "python_full_version < '3.10'" }, - { name = "jinja2", marker = "python_full_version < '3.10'" }, - { name = "markdown-it-py", marker = "python_full_version < '3.10'" }, - { name = "mdit-py-plugins", marker = "python_full_version < '3.10'" }, - { name = "pyyaml", marker = "python_full_version < '3.10'" }, - { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/49/64/e2f13dac02f599980798c01156393b781aec983b52a6e4057ee58f07c43a/myst_parser-3.0.1.tar.gz", hash = "sha256:88f0cb406cb363b077d176b51c476f62d60604d68a8dcdf4832e080441301a87", size = 92392 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e2/de/21aa8394f16add8f7427f0a1326ccd2b3a2a8a3245c9252bc5ac034c6155/myst_parser-3.0.1-py3-none-any.whl", hash = "sha256:6457aaa33a5d474aca678b8ead9b3dc298e89c68e67012e73146ea6fd54babf1", size = 83163 }, -] - -[[package]] -name = "myst-parser" -version = "4.0.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "docutils", marker = "python_full_version >= '3.10'" }, - { name = "jinja2", marker = "python_full_version >= '3.10'" }, - { name = "markdown-it-py", marker = "python_full_version >= '3.10'" }, - { name = "mdit-py-plugins", marker = "python_full_version >= '3.10'" }, - { name = "pyyaml", marker = "python_full_version >= '3.10'" }, - { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/66/a5/9626ba4f73555b3735ad86247a8077d4603aa8628537687c839ab08bfe44/myst_parser-4.0.1.tar.gz", hash = "sha256:5cfea715e4f3574138aecbf7d54132296bfd72bb614d31168f48c477a830a7c4", size = 93985 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5f/df/76d0321c3797b54b60fef9ec3bd6f4cfd124b9e422182156a1dd418722cf/myst_parser-4.0.1-py3-none-any.whl", hash = "sha256:9134e88959ec3b5780aedf8a99680ea242869d012e8821db3126d427edc9c95d", size = 84579 }, -] - -[[package]] -name = "narwhals" -version = "1.34.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f5/6d/0ad9e8fe41dba509f1c3241a46e52c9677eb9f67f7eb3c8018b1ae088469/narwhals-1.34.1.tar.gz", hash = "sha256:8941a08cf62f39ae67be945090b20a19c51fb9048ac909cad2f95aee23f9e302", size = 265602 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b0/a2/2ea3f2058ae661b06fad1a14c0f29f1cc8e49478d02a2d68f0eac3872b86/narwhals-1.34.1-py3-none-any.whl", hash = "sha256:aee49a30d1624371ad975ede2bab16cd125ab5df0fd185e2f4757e103b074d27", size = 325548 }, -] - -[[package]] -name = "numpy" -version = "2.0.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/a9/75/10dd1f8116a8b796cb2c737b674e02d02e80454bda953fa7e65d8c12b016/numpy-2.0.2.tar.gz", hash = "sha256:883c987dee1880e2a864ab0dc9892292582510604156762362d9326444636e78", size = 18902015 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/21/91/3495b3237510f79f5d81f2508f9f13fea78ebfdf07538fc7444badda173d/numpy-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:51129a29dbe56f9ca83438b706e2e69a39892b5eda6cedcb6b0c9fdc9b0d3ece", size = 21165245 }, - { url = "https://files.pythonhosted.org/packages/05/33/26178c7d437a87082d11019292dce6d3fe6f0e9026b7b2309cbf3e489b1d/numpy-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f15975dfec0cf2239224d80e32c3170b1d168335eaedee69da84fbe9f1f9cd04", size = 13738540 }, - { url = "https://files.pythonhosted.org/packages/ec/31/cc46e13bf07644efc7a4bf68df2df5fb2a1a88d0cd0da9ddc84dc0033e51/numpy-2.0.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8c5713284ce4e282544c68d1c3b2c7161d38c256d2eefc93c1d683cf47683e66", size = 5300623 }, - { url = "https://files.pythonhosted.org/packages/6e/16/7bfcebf27bb4f9d7ec67332ffebee4d1bf085c84246552d52dbb548600e7/numpy-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:becfae3ddd30736fe1889a37f1f580e245ba79a5855bff5f2a29cb3ccc22dd7b", size = 6901774 }, - { url = "https://files.pythonhosted.org/packages/f9/a3/561c531c0e8bf082c5bef509d00d56f82e0ea7e1e3e3a7fc8fa78742a6e5/numpy-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2da5960c3cf0df7eafefd806d4e612c5e19358de82cb3c343631188991566ccd", size = 13907081 }, - { url = "https://files.pythonhosted.org/packages/fa/66/f7177ab331876200ac7563a580140643d1179c8b4b6a6b0fc9838de2a9b8/numpy-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:496f71341824ed9f3d2fd36cf3ac57ae2e0165c143b55c3a035ee219413f3318", size = 19523451 }, - { url = "https://files.pythonhosted.org/packages/25/7f/0b209498009ad6453e4efc2c65bcdf0ae08a182b2b7877d7ab38a92dc542/numpy-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a61ec659f68ae254e4d237816e33171497e978140353c0c2038d46e63282d0c8", size = 19927572 }, - { url = "https://files.pythonhosted.org/packages/3e/df/2619393b1e1b565cd2d4c4403bdd979621e2c4dea1f8532754b2598ed63b/numpy-2.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d731a1c6116ba289c1e9ee714b08a8ff882944d4ad631fd411106a30f083c326", size = 14400722 }, - { url = "https://files.pythonhosted.org/packages/22/ad/77e921b9f256d5da36424ffb711ae79ca3f451ff8489eeca544d0701d74a/numpy-2.0.2-cp310-cp310-win32.whl", hash = "sha256:984d96121c9f9616cd33fbd0618b7f08e0cfc9600a7ee1d6fd9b239186d19d97", size = 6472170 }, - { url = "https://files.pythonhosted.org/packages/10/05/3442317535028bc29cf0c0dd4c191a4481e8376e9f0db6bcf29703cadae6/numpy-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:c7b0be4ef08607dd04da4092faee0b86607f111d5ae68036f16cc787e250a131", size = 15905558 }, - { url = "https://files.pythonhosted.org/packages/8b/cf/034500fb83041aa0286e0fb16e7c76e5c8b67c0711bb6e9e9737a717d5fe/numpy-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:49ca4decb342d66018b01932139c0961a8f9ddc7589611158cb3c27cbcf76448", size = 21169137 }, - { url = "https://files.pythonhosted.org/packages/4a/d9/32de45561811a4b87fbdee23b5797394e3d1504b4a7cf40c10199848893e/numpy-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:11a76c372d1d37437857280aa142086476136a8c0f373b2e648ab2c8f18fb195", size = 13703552 }, - { url = "https://files.pythonhosted.org/packages/c1/ca/2f384720020c7b244d22508cb7ab23d95f179fcfff33c31a6eeba8d6c512/numpy-2.0.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:807ec44583fd708a21d4a11d94aedf2f4f3c3719035c76a2bbe1fe8e217bdc57", size = 5298957 }, - { url = "https://files.pythonhosted.org/packages/0e/78/a3e4f9fb6aa4e6fdca0c5428e8ba039408514388cf62d89651aade838269/numpy-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8cafab480740e22f8d833acefed5cc87ce276f4ece12fdaa2e8903db2f82897a", size = 6905573 }, - { url = "https://files.pythonhosted.org/packages/a0/72/cfc3a1beb2caf4efc9d0b38a15fe34025230da27e1c08cc2eb9bfb1c7231/numpy-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a15f476a45e6e5a3a79d8a14e62161d27ad897381fecfa4a09ed5322f2085669", size = 13914330 }, - { url = "https://files.pythonhosted.org/packages/ba/a8/c17acf65a931ce551fee11b72e8de63bf7e8a6f0e21add4c937c83563538/numpy-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13e689d772146140a252c3a28501da66dfecd77490b498b168b501835041f951", size = 19534895 }, - { url = "https://files.pythonhosted.org/packages/ba/86/8767f3d54f6ae0165749f84648da9dcc8cd78ab65d415494962c86fac80f/numpy-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9ea91dfb7c3d1c56a0e55657c0afb38cf1eeae4544c208dc465c3c9f3a7c09f9", size = 19937253 }, - { url = "https://files.pythonhosted.org/packages/df/87/f76450e6e1c14e5bb1eae6836478b1028e096fd02e85c1c37674606ab752/numpy-2.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c1c9307701fec8f3f7a1e6711f9089c06e6284b3afbbcd259f7791282d660a15", size = 14414074 }, - { url = "https://files.pythonhosted.org/packages/5c/ca/0f0f328e1e59f73754f06e1adfb909de43726d4f24c6a3f8805f34f2b0fa/numpy-2.0.2-cp311-cp311-win32.whl", hash = "sha256:a392a68bd329eafac5817e5aefeb39038c48b671afd242710b451e76090e81f4", size = 6470640 }, - { url = "https://files.pythonhosted.org/packages/eb/57/3a3f14d3a759dcf9bf6e9eda905794726b758819df4663f217d658a58695/numpy-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:286cd40ce2b7d652a6f22efdfc6d1edf879440e53e76a75955bc0c826c7e64dc", size = 15910230 }, - { url = "https://files.pythonhosted.org/packages/45/40/2e117be60ec50d98fa08c2f8c48e09b3edea93cfcabd5a9ff6925d54b1c2/numpy-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:df55d490dea7934f330006d0f81e8551ba6010a5bf035a249ef61a94f21c500b", size = 20895803 }, - { url = "https://files.pythonhosted.org/packages/46/92/1b8b8dee833f53cef3e0a3f69b2374467789e0bb7399689582314df02651/numpy-2.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8df823f570d9adf0978347d1f926b2a867d5608f434a7cff7f7908c6570dcf5e", size = 13471835 }, - { url = "https://files.pythonhosted.org/packages/7f/19/e2793bde475f1edaea6945be141aef6c8b4c669b90c90a300a8954d08f0a/numpy-2.0.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9a92ae5c14811e390f3767053ff54eaee3bf84576d99a2456391401323f4ec2c", size = 5038499 }, - { url = "https://files.pythonhosted.org/packages/e3/ff/ddf6dac2ff0dd50a7327bcdba45cb0264d0e96bb44d33324853f781a8f3c/numpy-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:a842d573724391493a97a62ebbb8e731f8a5dcc5d285dfc99141ca15a3302d0c", size = 6633497 }, - { url = "https://files.pythonhosted.org/packages/72/21/67f36eac8e2d2cd652a2e69595a54128297cdcb1ff3931cfc87838874bd4/numpy-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05e238064fc0610c840d1cf6a13bf63d7e391717d247f1bf0318172e759e692", size = 13621158 }, - { url = "https://files.pythonhosted.org/packages/39/68/e9f1126d757653496dbc096cb429014347a36b228f5a991dae2c6b6cfd40/numpy-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0123ffdaa88fa4ab64835dcbde75dcdf89c453c922f18dced6e27c90d1d0ec5a", size = 19236173 }, - { url = "https://files.pythonhosted.org/packages/d1/e9/1f5333281e4ebf483ba1c888b1d61ba7e78d7e910fdd8e6499667041cc35/numpy-2.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:96a55f64139912d61de9137f11bf39a55ec8faec288c75a54f93dfd39f7eb40c", size = 19634174 }, - { url = "https://files.pythonhosted.org/packages/71/af/a469674070c8d8408384e3012e064299f7a2de540738a8e414dcfd639996/numpy-2.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec9852fb39354b5a45a80bdab5ac02dd02b15f44b3804e9f00c556bf24b4bded", size = 14099701 }, - { url = "https://files.pythonhosted.org/packages/d0/3d/08ea9f239d0e0e939b6ca52ad403c84a2bce1bde301a8eb4888c1c1543f1/numpy-2.0.2-cp312-cp312-win32.whl", hash = "sha256:671bec6496f83202ed2d3c8fdc486a8fc86942f2e69ff0e986140339a63bcbe5", size = 6174313 }, - { url = "https://files.pythonhosted.org/packages/b2/b5/4ac39baebf1fdb2e72585c8352c56d063b6126be9fc95bd2bb5ef5770c20/numpy-2.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:cfd41e13fdc257aa5778496b8caa5e856dc4896d4ccf01841daee1d96465467a", size = 15606179 }, - { url = "https://files.pythonhosted.org/packages/43/c1/41c8f6df3162b0c6ffd4437d729115704bd43363de0090c7f913cfbc2d89/numpy-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9059e10581ce4093f735ed23f3b9d283b9d517ff46009ddd485f1747eb22653c", size = 21169942 }, - { url = "https://files.pythonhosted.org/packages/39/bc/fd298f308dcd232b56a4031fd6ddf11c43f9917fbc937e53762f7b5a3bb1/numpy-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:423e89b23490805d2a5a96fe40ec507407b8ee786d66f7328be214f9679df6dd", size = 13711512 }, - { url = "https://files.pythonhosted.org/packages/96/ff/06d1aa3eeb1c614eda245c1ba4fb88c483bee6520d361641331872ac4b82/numpy-2.0.2-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:2b2955fa6f11907cf7a70dab0d0755159bca87755e831e47932367fc8f2f2d0b", size = 5306976 }, - { url = "https://files.pythonhosted.org/packages/2d/98/121996dcfb10a6087a05e54453e28e58694a7db62c5a5a29cee14c6e047b/numpy-2.0.2-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:97032a27bd9d8988b9a97a8c4d2c9f2c15a81f61e2f21404d7e8ef00cb5be729", size = 6906494 }, - { url = "https://files.pythonhosted.org/packages/15/31/9dffc70da6b9bbf7968f6551967fc21156207366272c2a40b4ed6008dc9b/numpy-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e795a8be3ddbac43274f18588329c72939870a16cae810c2b73461c40718ab1", size = 13912596 }, - { url = "https://files.pythonhosted.org/packages/b9/14/78635daab4b07c0930c919d451b8bf8c164774e6a3413aed04a6d95758ce/numpy-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b258c385842546006213344c50655ff1555a9338e2e5e02a0756dc3e803dd", size = 19526099 }, - { url = "https://files.pythonhosted.org/packages/26/4c/0eeca4614003077f68bfe7aac8b7496f04221865b3a5e7cb230c9d055afd/numpy-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fec9451a7789926bcf7c2b8d187292c9f93ea30284802a0ab3f5be8ab36865d", size = 19932823 }, - { url = "https://files.pythonhosted.org/packages/f1/46/ea25b98b13dccaebddf1a803f8c748680d972e00507cd9bc6dcdb5aa2ac1/numpy-2.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9189427407d88ff25ecf8f12469d4d39d35bee1db5d39fc5c168c6f088a6956d", size = 14404424 }, - { url = "https://files.pythonhosted.org/packages/c8/a6/177dd88d95ecf07e722d21008b1b40e681a929eb9e329684d449c36586b2/numpy-2.0.2-cp39-cp39-win32.whl", hash = "sha256:905d16e0c60200656500c95b6b8dca5d109e23cb24abc701d41c02d74c6b3afa", size = 6476809 }, - { url = "https://files.pythonhosted.org/packages/ea/2b/7fc9f4e7ae5b507c1a3a21f0f15ed03e794c1242ea8a242ac158beb56034/numpy-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:a3f4ab0caa7f053f6797fcd4e1e25caee367db3112ef2b6ef82d749530768c73", size = 15911314 }, - { url = "https://files.pythonhosted.org/packages/8f/3b/df5a870ac6a3be3a86856ce195ef42eec7ae50d2a202be1f5a4b3b340e14/numpy-2.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7f0a0c6f12e07fa94133c8a67404322845220c06a9e80e85999afe727f7438b8", size = 21025288 }, - { url = "https://files.pythonhosted.org/packages/2c/97/51af92f18d6f6f2d9ad8b482a99fb74e142d71372da5d834b3a2747a446e/numpy-2.0.2-pp39-pypy39_pp73-macosx_14_0_x86_64.whl", hash = "sha256:312950fdd060354350ed123c0e25a71327d3711584beaef30cdaa93320c392d4", size = 6762793 }, - { url = "https://files.pythonhosted.org/packages/12/46/de1fbd0c1b5ccaa7f9a005b66761533e2f6a3e560096682683a223631fe9/numpy-2.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26df23238872200f63518dd2aa984cfca675d82469535dc7162dc2ee52d9dd5c", size = 19334885 }, - { url = "https://files.pythonhosted.org/packages/cc/dc/d330a6faefd92b446ec0f0dfea4c3207bb1fef3c4771d19cf4543efd2c78/numpy-2.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a46288ec55ebbd58947d31d72be2c63cbf839f0a63b49cb755022310792a3385", size = 15828784 }, -] - -[[package]] -name = "numpy" -version = "2.2.4" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -sdist = { url = "https://files.pythonhosted.org/packages/e1/78/31103410a57bc2c2b93a3597340a8119588571f6a4539067546cb9a0bfac/numpy-2.2.4.tar.gz", hash = "sha256:9ba03692a45d3eef66559efe1d1096c4b9b75c0986b5dff5530c378fb8331d4f", size = 20270701 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/89/a79e86e5c1433926ed7d60cb267fb64aa578b6101ab645800fd43b4801de/numpy-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8146f3550d627252269ac42ae660281d673eb6f8b32f113538e0cc2a9aed42b9", size = 21250661 }, - { url = "https://files.pythonhosted.org/packages/79/c2/f50921beb8afd60ed9589ad880332cfefdb805422210d327fb48f12b7a81/numpy-2.2.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e642d86b8f956098b564a45e6f6ce68a22c2c97a04f5acd3f221f57b8cb850ae", size = 14389926 }, - { url = "https://files.pythonhosted.org/packages/c7/b9/2c4e96130b0b0f97b0ef4a06d6dae3b39d058b21a5e2fa2decd7fd6b1c8f/numpy-2.2.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:a84eda42bd12edc36eb5b53bbcc9b406820d3353f1994b6cfe453a33ff101775", size = 5428329 }, - { url = "https://files.pythonhosted.org/packages/7f/a5/3d7094aa898f4fc5c84cdfb26beeae780352d43f5d8bdec966c4393d644c/numpy-2.2.4-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:4ba5054787e89c59c593a4169830ab362ac2bee8a969249dc56e5d7d20ff8df9", size = 6963559 }, - { url = "https://files.pythonhosted.org/packages/4c/22/fb1be710a14434c09080dd4a0acc08939f612ec02efcb04b9e210474782d/numpy-2.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7716e4a9b7af82c06a2543c53ca476fa0b57e4d760481273e09da04b74ee6ee2", size = 14368066 }, - { url = "https://files.pythonhosted.org/packages/c2/07/2e5cc71193e3ef3a219ffcf6ca4858e46ea2be09c026ddd480d596b32867/numpy-2.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adf8c1d66f432ce577d0197dceaac2ac00c0759f573f28516246351c58a85020", size = 16417040 }, - { url = "https://files.pythonhosted.org/packages/1a/97/3b1537776ad9a6d1a41813818343745e8dd928a2916d4c9edcd9a8af1dac/numpy-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:218f061d2faa73621fa23d6359442b0fc658d5b9a70801373625d958259eaca3", size = 15879862 }, - { url = "https://files.pythonhosted.org/packages/b0/b7/4472f603dd45ef36ff3d8e84e84fe02d9467c78f92cc121633dce6da307b/numpy-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:df2f57871a96bbc1b69733cd4c51dc33bea66146b8c63cacbfed73eec0883017", size = 18206032 }, - { url = "https://files.pythonhosted.org/packages/0d/bd/6a092963fb82e6c5aa0d0440635827bbb2910da229545473bbb58c537ed3/numpy-2.2.4-cp310-cp310-win32.whl", hash = "sha256:a0258ad1f44f138b791327961caedffbf9612bfa504ab9597157806faa95194a", size = 6608517 }, - { url = "https://files.pythonhosted.org/packages/01/e3/cb04627bc2a1638948bc13e818df26495aa18e20d5be1ed95ab2b10b6847/numpy-2.2.4-cp310-cp310-win_amd64.whl", hash = "sha256:0d54974f9cf14acf49c60f0f7f4084b6579d24d439453d5fc5805d46a165b542", size = 12943498 }, - { url = "https://files.pythonhosted.org/packages/16/fb/09e778ee3a8ea0d4dc8329cca0a9c9e65fed847d08e37eba74cb7ed4b252/numpy-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e9e0a277bb2eb5d8a7407e14688b85fd8ad628ee4e0c7930415687b6564207a4", size = 21254989 }, - { url = "https://files.pythonhosted.org/packages/a2/0a/1212befdbecab5d80eca3cde47d304cad986ad4eec7d85a42e0b6d2cc2ef/numpy-2.2.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9eeea959168ea555e556b8188da5fa7831e21d91ce031e95ce23747b7609f8a4", size = 14425910 }, - { url = "https://files.pythonhosted.org/packages/2b/3e/e7247c1d4f15086bb106c8d43c925b0b2ea20270224f5186fa48d4fb5cbd/numpy-2.2.4-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bd3ad3b0a40e713fc68f99ecfd07124195333f1e689387c180813f0e94309d6f", size = 5426490 }, - { url = "https://files.pythonhosted.org/packages/5d/fa/aa7cd6be51419b894c5787a8a93c3302a1ed4f82d35beb0613ec15bdd0e2/numpy-2.2.4-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:cf28633d64294969c019c6df4ff37f5698e8326db68cc2b66576a51fad634880", size = 6967754 }, - { url = "https://files.pythonhosted.org/packages/d5/ee/96457c943265de9fadeb3d2ffdbab003f7fba13d971084a9876affcda095/numpy-2.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fa8fa7697ad1646b5c93de1719965844e004fcad23c91228aca1cf0800044a1", size = 14373079 }, - { url = "https://files.pythonhosted.org/packages/c5/5c/ceefca458559f0ccc7a982319f37ed07b0d7b526964ae6cc61f8ad1b6119/numpy-2.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f4162988a360a29af158aeb4a2f4f09ffed6a969c9776f8f3bdee9b06a8ab7e5", size = 16428819 }, - { url = "https://files.pythonhosted.org/packages/22/31/9b2ac8eee99e001eb6add9fa27514ef5e9faf176169057a12860af52704c/numpy-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:892c10d6a73e0f14935c31229e03325a7b3093fafd6ce0af704be7f894d95687", size = 15881470 }, - { url = "https://files.pythonhosted.org/packages/f0/dc/8569b5f25ff30484b555ad8a3f537e0225d091abec386c9420cf5f7a2976/numpy-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db1f1c22173ac1c58db249ae48aa7ead29f534b9a948bc56828337aa84a32ed6", size = 18218144 }, - { url = "https://files.pythonhosted.org/packages/5e/05/463c023a39bdeb9bb43a99e7dee2c664cb68d5bb87d14f92482b9f6011cc/numpy-2.2.4-cp311-cp311-win32.whl", hash = "sha256:ea2bb7e2ae9e37d96835b3576a4fa4b3a97592fbea8ef7c3587078b0068b8f09", size = 6606368 }, - { url = "https://files.pythonhosted.org/packages/8b/72/10c1d2d82101c468a28adc35de6c77b308f288cfd0b88e1070f15b98e00c/numpy-2.2.4-cp311-cp311-win_amd64.whl", hash = "sha256:f7de08cbe5551911886d1ab60de58448c6df0f67d9feb7d1fb21e9875ef95e91", size = 12947526 }, - { url = "https://files.pythonhosted.org/packages/a2/30/182db21d4f2a95904cec1a6f779479ea1ac07c0647f064dea454ec650c42/numpy-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a7b9084668aa0f64e64bd00d27ba5146ef1c3a8835f3bd912e7a9e01326804c4", size = 20947156 }, - { url = "https://files.pythonhosted.org/packages/24/6d/9483566acfbda6c62c6bc74b6e981c777229d2af93c8eb2469b26ac1b7bc/numpy-2.2.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:dbe512c511956b893d2dacd007d955a3f03d555ae05cfa3ff1c1ff6df8851854", size = 14133092 }, - { url = "https://files.pythonhosted.org/packages/27/f6/dba8a258acbf9d2bed2525cdcbb9493ef9bae5199d7a9cb92ee7e9b2aea6/numpy-2.2.4-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:bb649f8b207ab07caebba230d851b579a3c8711a851d29efe15008e31bb4de24", size = 5163515 }, - { url = "https://files.pythonhosted.org/packages/62/30/82116199d1c249446723c68f2c9da40d7f062551036f50b8c4caa42ae252/numpy-2.2.4-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:f34dc300df798742b3d06515aa2a0aee20941c13579d7a2f2e10af01ae4901ee", size = 6696558 }, - { url = "https://files.pythonhosted.org/packages/0e/b2/54122b3c6df5df3e87582b2e9430f1bdb63af4023c739ba300164c9ae503/numpy-2.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3f7ac96b16955634e223b579a3e5798df59007ca43e8d451a0e6a50f6bfdfba", size = 14084742 }, - { url = "https://files.pythonhosted.org/packages/02/e2/e2cbb8d634151aab9528ef7b8bab52ee4ab10e076509285602c2a3a686e0/numpy-2.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f92084defa704deadd4e0a5ab1dc52d8ac9e8a8ef617f3fbb853e79b0ea3592", size = 16134051 }, - { url = "https://files.pythonhosted.org/packages/8e/21/efd47800e4affc993e8be50c1b768de038363dd88865920439ef7b422c60/numpy-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7a4e84a6283b36632e2a5b56e121961f6542ab886bc9e12f8f9818b3c266bfbb", size = 15578972 }, - { url = "https://files.pythonhosted.org/packages/04/1e/f8bb88f6157045dd5d9b27ccf433d016981032690969aa5c19e332b138c0/numpy-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:11c43995255eb4127115956495f43e9343736edb7fcdb0d973defd9de14cd84f", size = 17898106 }, - { url = "https://files.pythonhosted.org/packages/2b/93/df59a5a3897c1f036ae8ff845e45f4081bb06943039ae28a3c1c7c780f22/numpy-2.2.4-cp312-cp312-win32.whl", hash = "sha256:65ef3468b53269eb5fdb3a5c09508c032b793da03251d5f8722b1194f1790c00", size = 6311190 }, - { url = "https://files.pythonhosted.org/packages/46/69/8c4f928741c2a8efa255fdc7e9097527c6dc4e4df147e3cadc5d9357ce85/numpy-2.2.4-cp312-cp312-win_amd64.whl", hash = "sha256:2aad3c17ed2ff455b8eaafe06bcdae0062a1db77cb99f4b9cbb5f4ecb13c5146", size = 12644305 }, - { url = "https://files.pythonhosted.org/packages/2a/d0/bd5ad792e78017f5decfb2ecc947422a3669a34f775679a76317af671ffc/numpy-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cf4e5c6a278d620dee9ddeb487dc6a860f9b199eadeecc567f777daace1e9e7", size = 20933623 }, - { url = "https://files.pythonhosted.org/packages/c3/bc/2b3545766337b95409868f8e62053135bdc7fa2ce630aba983a2aa60b559/numpy-2.2.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1974afec0b479e50438fc3648974268f972e2d908ddb6d7fb634598cdb8260a0", size = 14148681 }, - { url = "https://files.pythonhosted.org/packages/6a/70/67b24d68a56551d43a6ec9fe8c5f91b526d4c1a46a6387b956bf2d64744e/numpy-2.2.4-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:79bd5f0a02aa16808fcbc79a9a376a147cc1045f7dfe44c6e7d53fa8b8a79392", size = 5148759 }, - { url = "https://files.pythonhosted.org/packages/1c/8b/e2fc8a75fcb7be12d90b31477c9356c0cbb44abce7ffb36be39a0017afad/numpy-2.2.4-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:3387dd7232804b341165cedcb90694565a6015433ee076c6754775e85d86f1fc", size = 6683092 }, - { url = "https://files.pythonhosted.org/packages/13/73/41b7b27f169ecf368b52533edb72e56a133f9e86256e809e169362553b49/numpy-2.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f527d8fdb0286fd2fd97a2a96c6be17ba4232da346931d967a0630050dfd298", size = 14081422 }, - { url = "https://files.pythonhosted.org/packages/4b/04/e208ff3ae3ddfbafc05910f89546382f15a3f10186b1f56bd99f159689c2/numpy-2.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bce43e386c16898b91e162e5baaad90c4b06f9dcbe36282490032cec98dc8ae7", size = 16132202 }, - { url = "https://files.pythonhosted.org/packages/fe/bc/2218160574d862d5e55f803d88ddcad88beff94791f9c5f86d67bd8fbf1c/numpy-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:31504f970f563d99f71a3512d0c01a645b692b12a63630d6aafa0939e52361e6", size = 15573131 }, - { url = "https://files.pythonhosted.org/packages/a5/78/97c775bc4f05abc8a8426436b7cb1be806a02a2994b195945600855e3a25/numpy-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:81413336ef121a6ba746892fad881a83351ee3e1e4011f52e97fba79233611fd", size = 17894270 }, - { url = "https://files.pythonhosted.org/packages/b9/eb/38c06217a5f6de27dcb41524ca95a44e395e6a1decdc0c99fec0832ce6ae/numpy-2.2.4-cp313-cp313-win32.whl", hash = "sha256:f486038e44caa08dbd97275a9a35a283a8f1d2f0ee60ac260a1790e76660833c", size = 6308141 }, - { url = "https://files.pythonhosted.org/packages/52/17/d0dd10ab6d125c6d11ffb6dfa3423c3571befab8358d4f85cd4471964fcd/numpy-2.2.4-cp313-cp313-win_amd64.whl", hash = "sha256:207a2b8441cc8b6a2a78c9ddc64d00d20c303d79fba08c577752f080c4007ee3", size = 12636885 }, - { url = "https://files.pythonhosted.org/packages/fa/e2/793288ede17a0fdc921172916efb40f3cbc2aa97e76c5c84aba6dc7e8747/numpy-2.2.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8120575cb4882318c791f839a4fd66161a6fa46f3f0a5e613071aae35b5dd8f8", size = 20961829 }, - { url = "https://files.pythonhosted.org/packages/3a/75/bb4573f6c462afd1ea5cbedcc362fe3e9bdbcc57aefd37c681be1155fbaa/numpy-2.2.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a761ba0fa886a7bb33c6c8f6f20213735cb19642c580a931c625ee377ee8bd39", size = 14161419 }, - { url = "https://files.pythonhosted.org/packages/03/68/07b4cd01090ca46c7a336958b413cdbe75002286295f2addea767b7f16c9/numpy-2.2.4-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:ac0280f1ba4a4bfff363a99a6aceed4f8e123f8a9b234c89140f5e894e452ecd", size = 5196414 }, - { url = "https://files.pythonhosted.org/packages/a5/fd/d4a29478d622fedff5c4b4b4cedfc37a00691079623c0575978d2446db9e/numpy-2.2.4-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:879cf3a9a2b53a4672a168c21375166171bc3932b7e21f622201811c43cdd3b0", size = 6709379 }, - { url = "https://files.pythonhosted.org/packages/41/78/96dddb75bb9be730b87c72f30ffdd62611aba234e4e460576a068c98eff6/numpy-2.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f05d4198c1bacc9124018109c5fba2f3201dbe7ab6e92ff100494f236209c960", size = 14051725 }, - { url = "https://files.pythonhosted.org/packages/00/06/5306b8199bffac2a29d9119c11f457f6c7d41115a335b78d3f86fad4dbe8/numpy-2.2.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2f085ce2e813a50dfd0e01fbfc0c12bbe5d2063d99f8b29da30e544fb6483b8", size = 16101638 }, - { url = "https://files.pythonhosted.org/packages/fa/03/74c5b631ee1ded596945c12027649e6344614144369fd3ec1aaced782882/numpy-2.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:92bda934a791c01d6d9d8e038363c50918ef7c40601552a58ac84c9613a665bc", size = 15571717 }, - { url = "https://files.pythonhosted.org/packages/cb/dc/4fc7c0283abe0981e3b89f9b332a134e237dd476b0c018e1e21083310c31/numpy-2.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ee4d528022f4c5ff67332469e10efe06a267e32f4067dc76bb7e2cddf3cd25ff", size = 17879998 }, - { url = "https://files.pythonhosted.org/packages/e5/2b/878576190c5cfa29ed896b518cc516aecc7c98a919e20706c12480465f43/numpy-2.2.4-cp313-cp313t-win32.whl", hash = "sha256:05c076d531e9998e7e694c36e8b349969c56eadd2cdcd07242958489d79a7286", size = 6366896 }, - { url = "https://files.pythonhosted.org/packages/3e/05/eb7eec66b95cf697f08c754ef26c3549d03ebd682819f794cb039574a0a6/numpy-2.2.4-cp313-cp313t-win_amd64.whl", hash = "sha256:188dcbca89834cc2e14eb2f106c96d6d46f200fe0200310fc29089657379c58d", size = 12739119 }, - { url = "https://files.pythonhosted.org/packages/b2/5c/f09c33a511aff41a098e6ef3498465d95f6360621034a3d95f47edbc9119/numpy-2.2.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7051ee569db5fbac144335e0f3b9c2337e0c8d5c9fee015f259a5bd70772b7e8", size = 21081956 }, - { url = "https://files.pythonhosted.org/packages/ba/30/74c48b3b6494c4b820b7fa1781d441e94d87a08daa5b35d222f06ba41a6f/numpy-2.2.4-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:ab2939cd5bec30a7430cbdb2287b63151b77cf9624de0532d629c9a1c59b1d5c", size = 6827143 }, - { url = "https://files.pythonhosted.org/packages/54/f5/ab0d2f48b490535c7a80e05da4a98902b632369efc04f0e47bb31ca97d8f/numpy-2.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0f35b19894a9e08639fd60a1ec1978cb7f5f7f1eace62f38dd36be8aecdef4d", size = 16233350 }, - { url = "https://files.pythonhosted.org/packages/3b/3a/2f6d8c1f8e45d496bca6baaec93208035faeb40d5735c25afac092ec9a12/numpy-2.2.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b4adfbbc64014976d2f91084915ca4e626fbf2057fb81af209c1a6d776d23e3d", size = 12857565 }, -] - -[[package]] -name = "packaging" -version = "24.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, -] - -[[package]] -name = "pillow" -version = "11.2.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/af/cb/bb5c01fcd2a69335b86c22142b2bccfc3464087efb7fd382eee5ffc7fdf7/pillow-11.2.1.tar.gz", hash = "sha256:a64dd61998416367b7ef979b73d3a85853ba9bec4c2925f74e588879a58716b6", size = 47026707 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0d/8b/b158ad57ed44d3cc54db8d68ad7c0a58b8fc0e4c7a3f995f9d62d5b464a1/pillow-11.2.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:d57a75d53922fc20c165016a20d9c44f73305e67c351bbc60d1adaf662e74047", size = 3198442 }, - { url = "https://files.pythonhosted.org/packages/b1/f8/bb5d956142f86c2d6cc36704943fa761f2d2e4c48b7436fd0a85c20f1713/pillow-11.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:127bf6ac4a5b58b3d32fc8289656f77f80567d65660bc46f72c0d77e6600cc95", size = 3030553 }, - { url = "https://files.pythonhosted.org/packages/22/7f/0e413bb3e2aa797b9ca2c5c38cb2e2e45d88654e5b12da91ad446964cfae/pillow-11.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ba4be812c7a40280629e55ae0b14a0aafa150dd6451297562e1764808bbe61", size = 4405503 }, - { url = "https://files.pythonhosted.org/packages/f3/b4/cc647f4d13f3eb837d3065824aa58b9bcf10821f029dc79955ee43f793bd/pillow-11.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8bd62331e5032bc396a93609982a9ab6b411c05078a52f5fe3cc59234a3abd1", size = 4490648 }, - { url = "https://files.pythonhosted.org/packages/c2/6f/240b772a3b35cdd7384166461567aa6713799b4e78d180c555bd284844ea/pillow-11.2.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:562d11134c97a62fe3af29581f083033179f7ff435f78392565a1ad2d1c2c45c", size = 4508937 }, - { url = "https://files.pythonhosted.org/packages/f3/5e/7ca9c815ade5fdca18853db86d812f2f188212792780208bdb37a0a6aef4/pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c97209e85b5be259994eb5b69ff50c5d20cca0f458ef9abd835e262d9d88b39d", size = 4599802 }, - { url = "https://files.pythonhosted.org/packages/02/81/c3d9d38ce0c4878a77245d4cf2c46d45a4ad0f93000227910a46caff52f3/pillow-11.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0c3e6d0f59171dfa2e25d7116217543310908dfa2770aa64b8f87605f8cacc97", size = 4576717 }, - { url = "https://files.pythonhosted.org/packages/42/49/52b719b89ac7da3185b8d29c94d0e6aec8140059e3d8adcaa46da3751180/pillow-11.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc1c3bc53befb6096b84165956e886b1729634a799e9d6329a0c512ab651e579", size = 4654874 }, - { url = "https://files.pythonhosted.org/packages/5b/0b/ede75063ba6023798267023dc0d0401f13695d228194d2242d5a7ba2f964/pillow-11.2.1-cp310-cp310-win32.whl", hash = "sha256:312c77b7f07ab2139924d2639860e084ec2a13e72af54d4f08ac843a5fc9c79d", size = 2331717 }, - { url = "https://files.pythonhosted.org/packages/ed/3c/9831da3edea527c2ed9a09f31a2c04e77cd705847f13b69ca60269eec370/pillow-11.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9bc7ae48b8057a611e5fe9f853baa88093b9a76303937449397899385da06fad", size = 2676204 }, - { url = "https://files.pythonhosted.org/packages/01/97/1f66ff8a1503d8cbfc5bae4dc99d54c6ec1e22ad2b946241365320caabc2/pillow-11.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:2728567e249cdd939f6cc3d1f049595c66e4187f3c34078cbc0a7d21c47482d2", size = 2414767 }, - { url = "https://files.pythonhosted.org/packages/68/08/3fbf4b98924c73037a8e8b4c2c774784805e0fb4ebca6c5bb60795c40125/pillow-11.2.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35ca289f712ccfc699508c4658a1d14652e8033e9b69839edf83cbdd0ba39e70", size = 3198450 }, - { url = "https://files.pythonhosted.org/packages/84/92/6505b1af3d2849d5e714fc75ba9e69b7255c05ee42383a35a4d58f576b16/pillow-11.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0409af9f829f87a2dfb7e259f78f317a5351f2045158be321fd135973fff7bf", size = 3030550 }, - { url = "https://files.pythonhosted.org/packages/3c/8c/ac2f99d2a70ff966bc7eb13dacacfaab57c0549b2ffb351b6537c7840b12/pillow-11.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4e5c5edee874dce4f653dbe59db7c73a600119fbea8d31f53423586ee2aafd7", size = 4415018 }, - { url = "https://files.pythonhosted.org/packages/1f/e3/0a58b5d838687f40891fff9cbaf8669f90c96b64dc8f91f87894413856c6/pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b93a07e76d13bff9444f1a029e0af2964e654bfc2e2c2d46bfd080df5ad5f3d8", size = 4498006 }, - { url = "https://files.pythonhosted.org/packages/21/f5/6ba14718135f08fbfa33308efe027dd02b781d3f1d5c471444a395933aac/pillow-11.2.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e6def7eed9e7fa90fde255afaf08060dc4b343bbe524a8f69bdd2a2f0018f600", size = 4517773 }, - { url = "https://files.pythonhosted.org/packages/20/f2/805ad600fc59ebe4f1ba6129cd3a75fb0da126975c8579b8f57abeb61e80/pillow-11.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8f4f3724c068be008c08257207210c138d5f3731af6c155a81c2b09a9eb3a788", size = 4607069 }, - { url = "https://files.pythonhosted.org/packages/71/6b/4ef8a288b4bb2e0180cba13ca0a519fa27aa982875882392b65131401099/pillow-11.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0a6709b47019dff32e678bc12c63008311b82b9327613f534e496dacaefb71e", size = 4583460 }, - { url = "https://files.pythonhosted.org/packages/62/ae/f29c705a09cbc9e2a456590816e5c234382ae5d32584f451c3eb41a62062/pillow-11.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f6b0c664ccb879109ee3ca702a9272d877f4fcd21e5eb63c26422fd6e415365e", size = 4661304 }, - { url = "https://files.pythonhosted.org/packages/6e/1a/c8217b6f2f73794a5e219fbad087701f412337ae6dbb956db37d69a9bc43/pillow-11.2.1-cp311-cp311-win32.whl", hash = "sha256:cc5d875d56e49f112b6def6813c4e3d3036d269c008bf8aef72cd08d20ca6df6", size = 2331809 }, - { url = "https://files.pythonhosted.org/packages/e2/72/25a8f40170dc262e86e90f37cb72cb3de5e307f75bf4b02535a61afcd519/pillow-11.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:0f5c7eda47bf8e3c8a283762cab94e496ba977a420868cb819159980b6709193", size = 2676338 }, - { url = "https://files.pythonhosted.org/packages/06/9e/76825e39efee61efea258b479391ca77d64dbd9e5804e4ad0fa453b4ba55/pillow-11.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:4d375eb838755f2528ac8cbc926c3e31cc49ca4ad0cf79cff48b20e30634a4a7", size = 2414918 }, - { url = "https://files.pythonhosted.org/packages/c7/40/052610b15a1b8961f52537cc8326ca6a881408bc2bdad0d852edeb6ed33b/pillow-11.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:78afba22027b4accef10dbd5eed84425930ba41b3ea0a86fa8d20baaf19d807f", size = 3190185 }, - { url = "https://files.pythonhosted.org/packages/e5/7e/b86dbd35a5f938632093dc40d1682874c33dcfe832558fc80ca56bfcb774/pillow-11.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78092232a4ab376a35d68c4e6d5e00dfd73454bd12b230420025fbe178ee3b0b", size = 3030306 }, - { url = "https://files.pythonhosted.org/packages/a4/5c/467a161f9ed53e5eab51a42923c33051bf8d1a2af4626ac04f5166e58e0c/pillow-11.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25a5f306095c6780c52e6bbb6109624b95c5b18e40aab1c3041da3e9e0cd3e2d", size = 4416121 }, - { url = "https://files.pythonhosted.org/packages/62/73/972b7742e38ae0e2ac76ab137ca6005dcf877480da0d9d61d93b613065b4/pillow-11.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c7b29dbd4281923a2bfe562acb734cee96bbb129e96e6972d315ed9f232bef4", size = 4501707 }, - { url = "https://files.pythonhosted.org/packages/e4/3a/427e4cb0b9e177efbc1a84798ed20498c4f233abde003c06d2650a6d60cb/pillow-11.2.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e645b020f3209a0181a418bffe7b4a93171eef6c4ef6cc20980b30bebf17b7d", size = 4522921 }, - { url = "https://files.pythonhosted.org/packages/fe/7c/d8b1330458e4d2f3f45d9508796d7caf0c0d3764c00c823d10f6f1a3b76d/pillow-11.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2dbea1012ccb784a65349f57bbc93730b96e85b42e9bf7b01ef40443db720b4", size = 4612523 }, - { url = "https://files.pythonhosted.org/packages/b3/2f/65738384e0b1acf451de5a573d8153fe84103772d139e1e0bdf1596be2ea/pillow-11.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:da3104c57bbd72948d75f6a9389e6727d2ab6333c3617f0a89d72d4940aa0443", size = 4587836 }, - { url = "https://files.pythonhosted.org/packages/6a/c5/e795c9f2ddf3debb2dedd0df889f2fe4b053308bb59a3cc02a0cd144d641/pillow-11.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:598174aef4589af795f66f9caab87ba4ff860ce08cd5bb447c6fc553ffee603c", size = 4669390 }, - { url = "https://files.pythonhosted.org/packages/96/ae/ca0099a3995976a9fce2f423166f7bff9b12244afdc7520f6ed38911539a/pillow-11.2.1-cp312-cp312-win32.whl", hash = "sha256:1d535df14716e7f8776b9e7fee118576d65572b4aad3ed639be9e4fa88a1cad3", size = 2332309 }, - { url = "https://files.pythonhosted.org/packages/7c/18/24bff2ad716257fc03da964c5e8f05d9790a779a8895d6566e493ccf0189/pillow-11.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:14e33b28bf17c7a38eede290f77db7c664e4eb01f7869e37fa98a5aa95978941", size = 2676768 }, - { url = "https://files.pythonhosted.org/packages/da/bb/e8d656c9543276517ee40184aaa39dcb41e683bca121022f9323ae11b39d/pillow-11.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:21e1470ac9e5739ff880c211fc3af01e3ae505859392bf65458c224d0bf283eb", size = 2415087 }, - { url = "https://files.pythonhosted.org/packages/36/9c/447528ee3776e7ab8897fe33697a7ff3f0475bb490c5ac1456a03dc57956/pillow-11.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fdec757fea0b793056419bca3e9932eb2b0ceec90ef4813ea4c1e072c389eb28", size = 3190098 }, - { url = "https://files.pythonhosted.org/packages/b5/09/29d5cd052f7566a63e5b506fac9c60526e9ecc553825551333e1e18a4858/pillow-11.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b0e130705d568e2f43a17bcbe74d90958e8a16263868a12c3e0d9c8162690830", size = 3030166 }, - { url = "https://files.pythonhosted.org/packages/71/5d/446ee132ad35e7600652133f9c2840b4799bbd8e4adba881284860da0a36/pillow-11.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bdb5e09068332578214cadd9c05e3d64d99e0e87591be22a324bdbc18925be0", size = 4408674 }, - { url = "https://files.pythonhosted.org/packages/69/5f/cbe509c0ddf91cc3a03bbacf40e5c2339c4912d16458fcb797bb47bcb269/pillow-11.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d189ba1bebfbc0c0e529159631ec72bb9e9bc041f01ec6d3233d6d82eb823bc1", size = 4496005 }, - { url = "https://files.pythonhosted.org/packages/f9/b3/dd4338d8fb8a5f312021f2977fb8198a1184893f9b00b02b75d565c33b51/pillow-11.2.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:191955c55d8a712fab8934a42bfefbf99dd0b5875078240943f913bb66d46d9f", size = 4518707 }, - { url = "https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:ad275964d52e2243430472fc5d2c2334b4fc3ff9c16cb0a19254e25efa03a155", size = 4610008 }, - { url = "https://files.pythonhosted.org/packages/72/d1/924ce51bea494cb6e7959522d69d7b1c7e74f6821d84c63c3dc430cbbf3b/pillow-11.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:750f96efe0597382660d8b53e90dd1dd44568a8edb51cb7f9d5d918b80d4de14", size = 4585420 }, - { url = "https://files.pythonhosted.org/packages/43/ab/8f81312d255d713b99ca37479a4cb4b0f48195e530cdc1611990eb8fd04b/pillow-11.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fe15238d3798788d00716637b3d4e7bb6bde18b26e5d08335a96e88564a36b6b", size = 4667655 }, - { url = "https://files.pythonhosted.org/packages/94/86/8f2e9d2dc3d308dfd137a07fe1cc478df0a23d42a6c4093b087e738e4827/pillow-11.2.1-cp313-cp313-win32.whl", hash = "sha256:3fe735ced9a607fee4f481423a9c36701a39719252a9bb251679635f99d0f7d2", size = 2332329 }, - { url = "https://files.pythonhosted.org/packages/6d/ec/1179083b8d6067a613e4d595359b5fdea65d0a3b7ad623fee906e1b3c4d2/pillow-11.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:74ee3d7ecb3f3c05459ba95eed5efa28d6092d751ce9bf20e3e253a4e497e691", size = 2676388 }, - { url = "https://files.pythonhosted.org/packages/23/f1/2fc1e1e294de897df39fa8622d829b8828ddad938b0eaea256d65b84dd72/pillow-11.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:5119225c622403afb4b44bad4c1ca6c1f98eed79db8d3bc6e4e160fc6339d66c", size = 2414950 }, - { url = "https://files.pythonhosted.org/packages/c4/3e/c328c48b3f0ead7bab765a84b4977acb29f101d10e4ef57a5e3400447c03/pillow-11.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8ce2e8411c7aaef53e6bb29fe98f28cd4fbd9a1d9be2eeea434331aac0536b22", size = 3192759 }, - { url = "https://files.pythonhosted.org/packages/18/0e/1c68532d833fc8b9f404d3a642991441d9058eccd5606eab31617f29b6d4/pillow-11.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9ee66787e095127116d91dea2143db65c7bb1e232f617aa5957c0d9d2a3f23a7", size = 3033284 }, - { url = "https://files.pythonhosted.org/packages/b7/cb/6faf3fb1e7705fd2db74e070f3bf6f88693601b0ed8e81049a8266de4754/pillow-11.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9622e3b6c1d8b551b6e6f21873bdcc55762b4b2126633014cea1803368a9aa16", size = 4445826 }, - { url = "https://files.pythonhosted.org/packages/07/94/8be03d50b70ca47fb434a358919d6a8d6580f282bbb7af7e4aa40103461d/pillow-11.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63b5dff3a68f371ea06025a1a6966c9a1e1ee452fc8020c2cd0ea41b83e9037b", size = 4527329 }, - { url = "https://files.pythonhosted.org/packages/fd/a4/bfe78777076dc405e3bd2080bc32da5ab3945b5a25dc5d8acaa9de64a162/pillow-11.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:31df6e2d3d8fc99f993fd253e97fae451a8db2e7207acf97859732273e108406", size = 4549049 }, - { url = "https://files.pythonhosted.org/packages/65/4d/eaf9068dc687c24979e977ce5677e253624bd8b616b286f543f0c1b91662/pillow-11.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:062b7a42d672c45a70fa1f8b43d1d38ff76b63421cbbe7f88146b39e8a558d91", size = 4635408 }, - { url = "https://files.pythonhosted.org/packages/1d/26/0fd443365d9c63bc79feb219f97d935cd4b93af28353cba78d8e77b61719/pillow-11.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4eb92eca2711ef8be42fd3f67533765d9fd043b8c80db204f16c8ea62ee1a751", size = 4614863 }, - { url = "https://files.pythonhosted.org/packages/49/65/dca4d2506be482c2c6641cacdba5c602bc76d8ceb618fd37de855653a419/pillow-11.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f91ebf30830a48c825590aede79376cb40f110b387c17ee9bd59932c961044f9", size = 4692938 }, - { url = "https://files.pythonhosted.org/packages/b3/92/1ca0c3f09233bd7decf8f7105a1c4e3162fb9142128c74adad0fb361b7eb/pillow-11.2.1-cp313-cp313t-win32.whl", hash = "sha256:e0b55f27f584ed623221cfe995c912c61606be8513bfa0e07d2c674b4516d9dd", size = 2335774 }, - { url = "https://files.pythonhosted.org/packages/a5/ac/77525347cb43b83ae905ffe257bbe2cc6fd23acb9796639a1f56aa59d191/pillow-11.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:36d6b82164c39ce5482f649b437382c0fb2395eabc1e2b1702a6deb8ad647d6e", size = 2681895 }, - { url = "https://files.pythonhosted.org/packages/67/32/32dc030cfa91ca0fc52baebbba2e009bb001122a1daa8b6a79ad830b38d3/pillow-11.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:225c832a13326e34f212d2072982bb1adb210e0cc0b153e688743018c94a2681", size = 2417234 }, - { url = "https://files.pythonhosted.org/packages/21/3a/c1835d1c7cf83559e95b4f4ed07ab0bb7acc689712adfce406b3f456e9fd/pillow-11.2.1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:7491cf8a79b8eb867d419648fff2f83cb0b3891c8b36da92cc7f1931d46108c8", size = 3198391 }, - { url = "https://files.pythonhosted.org/packages/b6/4d/dcb7a9af3fc1e8653267c38ed622605d9d1793349274b3ef7af06457e257/pillow-11.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8b02d8f9cb83c52578a0b4beadba92e37d83a4ef11570a8688bbf43f4ca50909", size = 3030573 }, - { url = "https://files.pythonhosted.org/packages/9d/29/530ca098c1a1eb31d4e163d317d0e24e6d2ead907991c69ca5b663de1bc5/pillow-11.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:014ca0050c85003620526b0ac1ac53f56fc93af128f7546623cc8e31875ab928", size = 4398677 }, - { url = "https://files.pythonhosted.org/packages/8b/ee/0e5e51db34de1690264e5f30dcd25328c540aa11d50a3bc0b540e2a445b6/pillow-11.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3692b68c87096ac6308296d96354eddd25f98740c9d2ab54e1549d6c8aea9d79", size = 4484986 }, - { url = "https://files.pythonhosted.org/packages/93/7d/bc723b41ce3d2c28532c47678ec988974f731b5c6fadd5b3a4fba9015e4f/pillow-11.2.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:f781dcb0bc9929adc77bad571b8621ecb1e4cdef86e940fe2e5b5ee24fd33b35", size = 4501897 }, - { url = "https://files.pythonhosted.org/packages/be/0b/532e31abc7389617ddff12551af625a9b03cd61d2989fa595e43c470ec67/pillow-11.2.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:2b490402c96f907a166615e9a5afacf2519e28295f157ec3a2bb9bd57de638cb", size = 4592618 }, - { url = "https://files.pythonhosted.org/packages/4c/f0/21ed6499a6216fef753e2e2254a19d08bff3747108ba042422383f3e9faa/pillow-11.2.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dd6b20b93b3ccc9c1b597999209e4bc5cf2853f9ee66e3fc9a400a78733ffc9a", size = 4570493 }, - { url = "https://files.pythonhosted.org/packages/68/de/17004ddb8ab855573fe1127ab0168d11378cdfe4a7ee2a792a70ff2e9ba7/pillow-11.2.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:4b835d89c08a6c2ee7781b8dd0a30209a8012b5f09c0a665b65b0eb3560b6f36", size = 4647748 }, - { url = "https://files.pythonhosted.org/packages/c7/23/82ecb486384bb3578115c509d4a00bb52f463ee700a5ca1be53da3c88c19/pillow-11.2.1-cp39-cp39-win32.whl", hash = "sha256:b10428b3416d4f9c61f94b494681280be7686bda15898a3a9e08eb66a6d92d67", size = 2331731 }, - { url = "https://files.pythonhosted.org/packages/58/bb/87efd58b3689537a623d44dbb2550ef0bb5ff6a62769707a0fe8b1a7bdeb/pillow-11.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:6ebce70c3f486acf7591a3d73431fa504a4e18a9b97ff27f5f47b7368e4b9dd1", size = 2676346 }, - { url = "https://files.pythonhosted.org/packages/80/08/dc268475b22887b816e5dcfae31bce897f524b4646bab130c2142c9b2400/pillow-11.2.1-cp39-cp39-win_arm64.whl", hash = "sha256:c27476257b2fdcd7872d54cfd119b3a9ce4610fb85c8e32b70b42e3680a29a1e", size = 2414623 }, - { url = "https://files.pythonhosted.org/packages/33/49/c8c21e4255b4f4a2c0c68ac18125d7f5460b109acc6dfdef1a24f9b960ef/pillow-11.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:9b7b0d4fd2635f54ad82785d56bc0d94f147096493a79985d0ab57aedd563156", size = 3181727 }, - { url = "https://files.pythonhosted.org/packages/6d/f1/f7255c0838f8c1ef6d55b625cfb286835c17e8136ce4351c5577d02c443b/pillow-11.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:aa442755e31c64037aa7c1cb186e0b369f8416c567381852c63444dd666fb772", size = 2999833 }, - { url = "https://files.pythonhosted.org/packages/e2/57/9968114457bd131063da98d87790d080366218f64fa2943b65ac6739abb3/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d3348c95b766f54b76116d53d4cb171b52992a1027e7ca50c81b43b9d9e363", size = 3437472 }, - { url = "https://files.pythonhosted.org/packages/b2/1b/e35d8a158e21372ecc48aac9c453518cfe23907bb82f950d6e1c72811eb0/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d27ea4c889342f7e35f6d56e7e1cb345632ad592e8c51b693d7b7556043ce0", size = 3459976 }, - { url = "https://files.pythonhosted.org/packages/26/da/2c11d03b765efff0ccc473f1c4186dc2770110464f2177efaed9cf6fae01/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:bf2c33d6791c598142f00c9c4c7d47f6476731c31081331664eb26d6ab583e01", size = 3527133 }, - { url = "https://files.pythonhosted.org/packages/79/1a/4e85bd7cadf78412c2a3069249a09c32ef3323650fd3005c97cca7aa21df/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e616e7154c37669fc1dfc14584f11e284e05d1c650e1c0f972f281c4ccc53193", size = 3571555 }, - { url = "https://files.pythonhosted.org/packages/69/03/239939915216de1e95e0ce2334bf17a7870ae185eb390fab6d706aadbfc0/pillow-11.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39ad2e0f424394e3aebc40168845fee52df1394a4673a6ee512d840d14ab3013", size = 2674713 }, - { url = "https://files.pythonhosted.org/packages/a4/ad/2613c04633c7257d9481ab21d6b5364b59fc5d75faafd7cb8693523945a3/pillow-11.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:80f1df8dbe9572b4b7abdfa17eb5d78dd620b1d55d9e25f834efdbee872d3aed", size = 3181734 }, - { url = "https://files.pythonhosted.org/packages/a4/fd/dcdda4471ed667de57bb5405bb42d751e6cfdd4011a12c248b455c778e03/pillow-11.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ea926cfbc3957090becbcbbb65ad177161a2ff2ad578b5a6ec9bb1e1cd78753c", size = 2999841 }, - { url = "https://files.pythonhosted.org/packages/ac/89/8a2536e95e77432833f0db6fd72a8d310c8e4272a04461fb833eb021bf94/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:738db0e0941ca0376804d4de6a782c005245264edaa253ffce24e5a15cbdc7bd", size = 3437470 }, - { url = "https://files.pythonhosted.org/packages/9d/8f/abd47b73c60712f88e9eda32baced7bfc3e9bd6a7619bb64b93acff28c3e/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db98ab6565c69082ec9b0d4e40dd9f6181dab0dd236d26f7a50b8b9bfbd5076", size = 3460013 }, - { url = "https://files.pythonhosted.org/packages/f6/20/5c0a0aa83b213b7a07ec01e71a3d6ea2cf4ad1d2c686cc0168173b6089e7/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:036e53f4170e270ddb8797d4c590e6dd14d28e15c7da375c18978045f7e6c37b", size = 3527165 }, - { url = "https://files.pythonhosted.org/packages/58/0e/2abab98a72202d91146abc839e10c14f7cf36166f12838ea0c4db3ca6ecb/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:14f73f7c291279bd65fda51ee87affd7c1e097709f7fdd0188957a16c264601f", size = 3571586 }, - { url = "https://files.pythonhosted.org/packages/21/2c/5e05f58658cf49b6667762cca03d6e7d85cededde2caf2ab37b81f80e574/pillow-11.2.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:208653868d5c9ecc2b327f9b9ef34e0e42a4cdd172c2988fd81d62d2bc9bc044", size = 2674751 }, -] - -[[package]] -name = "plotly" -version = "6.0.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "narwhals" }, - { name = "packaging" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c7/cc/e41b5f697ae403f0b50e47b7af2e36642a193085f553bf7cc1169362873a/plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b", size = 8094643 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/02/65/ad2bc85f7377f5cfba5d4466d5474423a3fb7f6a97fd807c06f92dd3e721/plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768", size = 14805757 }, -] - -[[package]] -name = "pluggy" -version = "1.5.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, -] - -[[package]] -name = "pygments" -version = "2.19.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 }, -] - -[[package]] -name = "pyparsing" -version = "3.2.3" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120 }, -] - -[[package]] -name = "pytest" -version = "8.3.5" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32'" }, - { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, - { name = "iniconfig" }, - { name = "packaging" }, - { name = "pluggy" }, - { name = "tomli", marker = "python_full_version < '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ae/3c/c9d525a414d506893f0cd8a8d0de7706446213181570cdbd766691164e40/pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845", size = 1450891 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/30/3d/64ad57c803f1fa1e963a7946b6e0fea4a70df53c1a7fed304586539c2bac/pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820", size = 343634 }, -] - -[[package]] -name = "pytest-cov" -version = "6.1.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "coverage", extra = ["toml"] }, - { name = "pytest" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/25/69/5f1e57f6c5a39f81411b550027bf72842c4567ff5fd572bed1edc9e4b5d9/pytest_cov-6.1.1.tar.gz", hash = "sha256:46935f7aaefba760e716c2ebfbe1c216240b9592966e7da99ea8292d4d3e2a0a", size = 66857 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/28/d0/def53b4a790cfb21483016430ed828f64830dd981ebe1089971cd10cab25/pytest_cov-6.1.1-py3-none-any.whl", hash = "sha256:bddf29ed2d0ab6f4df17b4c55b0a657287db8684af9c42ea546b21b1041b3dde", size = 23841 }, -] - -[[package]] -name = "python-dateutil" -version = "2.9.0.post0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "six" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, -] - -[[package]] -name = "pyyaml" -version = "6.0.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199 }, - { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758 }, - { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463 }, - { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280 }, - { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239 }, - { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802 }, - { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527 }, - { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052 }, - { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774 }, - { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, - { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, - { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, - { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, - { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, - { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, - { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, - { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, - { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, - { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, - { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, - { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, - { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, - { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, - { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, - { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, - { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, - { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, - { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, - { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, - { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, - { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, - { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, - { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, - { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, - { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, - { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, - { url = "https://files.pythonhosted.org/packages/65/d8/b7a1db13636d7fb7d4ff431593c510c8b8fca920ade06ca8ef20015493c5/PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d", size = 184777 }, - { url = "https://files.pythonhosted.org/packages/0a/02/6ec546cd45143fdf9840b2c6be8d875116a64076218b61d68e12548e5839/PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f", size = 172318 }, - { url = "https://files.pythonhosted.org/packages/0e/9a/8cc68be846c972bda34f6c2a93abb644fb2476f4dcc924d52175786932c9/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290", size = 720891 }, - { url = "https://files.pythonhosted.org/packages/e9/6c/6e1b7f40181bc4805e2e07f4abc10a88ce4648e7e95ff1abe4ae4014a9b2/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12", size = 722614 }, - { url = "https://files.pythonhosted.org/packages/3d/32/e7bd8535d22ea2874cef6a81021ba019474ace0d13a4819c2a4bce79bd6a/PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19", size = 737360 }, - { url = "https://files.pythonhosted.org/packages/d7/12/7322c1e30b9be969670b672573d45479edef72c9a0deac3bb2868f5d7469/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e", size = 699006 }, - { url = "https://files.pythonhosted.org/packages/82/72/04fcad41ca56491995076630c3ec1e834be241664c0c09a64c9a2589b507/PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725", size = 723577 }, - { url = "https://files.pythonhosted.org/packages/ed/5e/46168b1f2757f1fcd442bc3029cd8767d88a98c9c05770d8b420948743bb/PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631", size = 144593 }, - { url = "https://files.pythonhosted.org/packages/19/87/5124b1c1f2412bb95c59ec481eaf936cd32f0fe2a7b16b97b81c4c017a6a/PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8", size = 162312 }, -] - -[[package]] -name = "requests" -version = "2.32.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "certifi" }, - { name = "charset-normalizer" }, - { name = "idna" }, - { name = "urllib3" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, -] - -[[package]] -name = "roman-numerals-py" -version = "3.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/30/76/48fd56d17c5bdbdf65609abbc67288728a98ed4c02919428d4f52d23b24b/roman_numerals_py-3.1.0.tar.gz", hash = "sha256:be4bf804f083a4ce001b5eb7e3c0862479d10f94c936f6c4e5f250aa5ff5bd2d", size = 9017 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/53/97/d2cbbaa10c9b826af0e10fdf836e1bf344d9f0abb873ebc34d1f49642d3f/roman_numerals_py-3.1.0-py3-none-any.whl", hash = "sha256:9da2ad2fb670bcf24e81070ceb3be72f6c11c440d73bd579fbeca1e9f330954c", size = 7742 }, -] - -[[package]] -name = "scipy" -version = "1.13.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ae/00/48c2f661e2816ccf2ecd77982f6605b2950afe60f60a52b4cbbc2504aa8f/scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", size = 57210720 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/33/59/41b2529908c002ade869623b87eecff3e11e3ce62e996d0bdcb536984187/scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", size = 39328076 }, - { url = "https://files.pythonhosted.org/packages/d5/33/f1307601f492f764062ce7dd471a14750f3360e33cd0f8c614dae208492c/scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", size = 30306232 }, - { url = "https://files.pythonhosted.org/packages/c0/66/9cd4f501dd5ea03e4a4572ecd874936d0da296bd04d1c45ae1a4a75d9c3a/scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", size = 33743202 }, - { url = "https://files.pythonhosted.org/packages/a3/ba/7255e5dc82a65adbe83771c72f384d99c43063648456796436c9a5585ec3/scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f", size = 38577335 }, - { url = "https://files.pythonhosted.org/packages/49/a5/bb9ded8326e9f0cdfdc412eeda1054b914dfea952bda2097d174f8832cc0/scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", size = 38820728 }, - { url = "https://files.pythonhosted.org/packages/12/30/df7a8fcc08f9b4a83f5f27cfaaa7d43f9a2d2ad0b6562cced433e5b04e31/scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", size = 46210588 }, - { url = "https://files.pythonhosted.org/packages/b4/15/4a4bb1b15bbd2cd2786c4f46e76b871b28799b67891f23f455323a0cdcfb/scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", size = 39333805 }, - { url = "https://files.pythonhosted.org/packages/ba/92/42476de1af309c27710004f5cdebc27bec62c204db42e05b23a302cb0c9a/scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", size = 30317687 }, - { url = "https://files.pythonhosted.org/packages/80/ba/8be64fe225360a4beb6840f3cbee494c107c0887f33350d0a47d55400b01/scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", size = 33694638 }, - { url = "https://files.pythonhosted.org/packages/36/07/035d22ff9795129c5a847c64cb43c1fa9188826b59344fee28a3ab02e283/scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", size = 38569931 }, - { url = "https://files.pythonhosted.org/packages/d9/10/f9b43de37e5ed91facc0cfff31d45ed0104f359e4f9a68416cbf4e790241/scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", size = 38838145 }, - { url = "https://files.pythonhosted.org/packages/4a/48/4513a1a5623a23e95f94abd675ed91cfb19989c58e9f6f7d03990f6caf3d/scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", size = 46196227 }, - { url = "https://files.pythonhosted.org/packages/f2/7b/fb6b46fbee30fc7051913068758414f2721003a89dd9a707ad49174e3843/scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", size = 39357301 }, - { url = "https://files.pythonhosted.org/packages/dc/5a/2043a3bde1443d94014aaa41e0b50c39d046dda8360abd3b2a1d3f79907d/scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", size = 30363348 }, - { url = "https://files.pythonhosted.org/packages/e7/cb/26e4a47364bbfdb3b7fb3363be6d8a1c543bcd70a7753ab397350f5f189a/scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", size = 33406062 }, - { url = "https://files.pythonhosted.org/packages/88/ab/6ecdc526d509d33814835447bbbeedbebdec7cca46ef495a61b00a35b4bf/scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", size = 38218311 }, - { url = "https://files.pythonhosted.org/packages/0b/00/9f54554f0f8318100a71515122d8f4f503b1a2c4b4cfab3b4b68c0eb08fa/scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", size = 38442493 }, - { url = "https://files.pythonhosted.org/packages/3e/df/963384e90733e08eac978cd103c34df181d1fec424de383cdc443f418dd4/scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", size = 45910955 }, - { url = "https://files.pythonhosted.org/packages/7f/29/c2ea58c9731b9ecb30b6738113a95d147e83922986b34c685b8f6eefde21/scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", size = 39352927 }, - { url = "https://files.pythonhosted.org/packages/5c/c0/e71b94b20ccf9effb38d7147c0064c08c622309fd487b1b677771a97d18c/scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", size = 30324538 }, - { url = "https://files.pythonhosted.org/packages/6d/0f/aaa55b06d474817cea311e7b10aab2ea1fd5d43bc6a2861ccc9caec9f418/scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", size = 33732190 }, - { url = "https://files.pythonhosted.org/packages/35/f5/d0ad1a96f80962ba65e2ce1de6a1e59edecd1f0a7b55990ed208848012e0/scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", size = 38612244 }, - { url = "https://files.pythonhosted.org/packages/8d/02/1165905f14962174e6569076bcc3315809ae1291ed14de6448cc151eedfd/scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", size = 38845637 }, - { url = "https://files.pythonhosted.org/packages/3e/77/dab54fe647a08ee4253963bcd8f9cf17509c8ca64d6335141422fe2e2114/scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", size = 46227440 }, -] - -[[package]] -name = "scipy" -version = "1.15.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "numpy", version = "2.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b7/b9/31ba9cd990e626574baf93fbc1ac61cf9ed54faafd04c479117517661637/scipy-1.15.2.tar.gz", hash = "sha256:cd58a314d92838f7e6f755c8a2167ead4f27e1fd5c1251fd54289569ef3495ec", size = 59417316 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/95/df/ef233fff6838fe6f7840d69b5ef9f20d2b5c912a8727b21ebf876cb15d54/scipy-1.15.2-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:a2ec871edaa863e8213ea5df811cd600734f6400b4af272e1c011e69401218e9", size = 38692502 }, - { url = "https://files.pythonhosted.org/packages/5c/20/acdd4efb8a68b842968f7bc5611b1aeb819794508771ad104de418701422/scipy-1.15.2-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:6f223753c6ea76983af380787611ae1291e3ceb23917393079dcc746ba60cfb5", size = 30085508 }, - { url = "https://files.pythonhosted.org/packages/42/55/39cf96ca7126f1e78ee72a6344ebdc6702fc47d037319ad93221063e6cf4/scipy-1.15.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:ecf797d2d798cf7c838c6d98321061eb3e72a74710e6c40540f0e8087e3b499e", size = 22359166 }, - { url = "https://files.pythonhosted.org/packages/51/48/708d26a4ab8a1441536bf2dfcad1df0ca14a69f010fba3ccbdfc02df7185/scipy-1.15.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:9b18aa747da280664642997e65aab1dd19d0c3d17068a04b3fe34e2559196cb9", size = 25112047 }, - { url = "https://files.pythonhosted.org/packages/dd/65/f9c5755b995ad892020381b8ae11f16d18616208e388621dfacc11df6de6/scipy-1.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87994da02e73549dfecaed9e09a4f9d58a045a053865679aeb8d6d43747d4df3", size = 35536214 }, - { url = "https://files.pythonhosted.org/packages/de/3c/c96d904b9892beec978562f64d8cc43f9cca0842e65bd3cd1b7f7389b0ba/scipy-1.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69ea6e56d00977f355c0f84eba69877b6df084516c602d93a33812aa04d90a3d", size = 37646981 }, - { url = "https://files.pythonhosted.org/packages/3d/74/c2d8a24d18acdeae69ed02e132b9bc1bb67b7bee90feee1afe05a68f9d67/scipy-1.15.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:888307125ea0c4466287191e5606a2c910963405ce9671448ff9c81c53f85f58", size = 37230048 }, - { url = "https://files.pythonhosted.org/packages/42/19/0aa4ce80eca82d487987eff0bc754f014dec10d20de2f66754fa4ea70204/scipy-1.15.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9412f5e408b397ff5641080ed1e798623dbe1ec0d78e72c9eca8992976fa65aa", size = 40010322 }, - { url = "https://files.pythonhosted.org/packages/d0/d2/f0683b7e992be44d1475cc144d1f1eeae63c73a14f862974b4db64af635e/scipy-1.15.2-cp310-cp310-win_amd64.whl", hash = "sha256:b5e025e903b4f166ea03b109bb241355b9c42c279ea694d8864d033727205e65", size = 41233385 }, - { url = "https://files.pythonhosted.org/packages/40/1f/bf0a5f338bda7c35c08b4ed0df797e7bafe8a78a97275e9f439aceb46193/scipy-1.15.2-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:92233b2df6938147be6fa8824b8136f29a18f016ecde986666be5f4d686a91a4", size = 38703651 }, - { url = "https://files.pythonhosted.org/packages/de/54/db126aad3874601048c2c20ae3d8a433dbfd7ba8381551e6f62606d9bd8e/scipy-1.15.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:62ca1ff3eb513e09ed17a5736929429189adf16d2d740f44e53270cc800ecff1", size = 30102038 }, - { url = "https://files.pythonhosted.org/packages/61/d8/84da3fffefb6c7d5a16968fe5b9f24c98606b165bb801bb0b8bc3985200f/scipy-1.15.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:4c6676490ad76d1c2894d77f976144b41bd1a4052107902238047fb6a473e971", size = 22375518 }, - { url = "https://files.pythonhosted.org/packages/44/78/25535a6e63d3b9c4c90147371aedb5d04c72f3aee3a34451f2dc27c0c07f/scipy-1.15.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:a8bf5cb4a25046ac61d38f8d3c3426ec11ebc350246a4642f2f315fe95bda655", size = 25142523 }, - { url = "https://files.pythonhosted.org/packages/e0/22/4b4a26fe1cd9ed0bc2b2cb87b17d57e32ab72c346949eaf9288001f8aa8e/scipy-1.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a8e34cf4c188b6dd004654f88586d78f95639e48a25dfae9c5e34a6dc34547e", size = 35491547 }, - { url = "https://files.pythonhosted.org/packages/32/ea/564bacc26b676c06a00266a3f25fdfe91a9d9a2532ccea7ce6dd394541bc/scipy-1.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28a0d2c2075946346e4408b211240764759e0fabaeb08d871639b5f3b1aca8a0", size = 37634077 }, - { url = "https://files.pythonhosted.org/packages/43/c2/bfd4e60668897a303b0ffb7191e965a5da4056f0d98acfb6ba529678f0fb/scipy-1.15.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:42dabaaa798e987c425ed76062794e93a243be8f0f20fff6e7a89f4d61cb3d40", size = 37231657 }, - { url = "https://files.pythonhosted.org/packages/4a/75/5f13050bf4f84c931bcab4f4e83c212a36876c3c2244475db34e4b5fe1a6/scipy-1.15.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6f5e296ec63c5da6ba6fa0343ea73fd51b8b3e1a300b0a8cae3ed4b1122c7462", size = 40035857 }, - { url = "https://files.pythonhosted.org/packages/b9/8b/7ec1832b09dbc88f3db411f8cdd47db04505c4b72c99b11c920a8f0479c3/scipy-1.15.2-cp311-cp311-win_amd64.whl", hash = "sha256:597a0c7008b21c035831c39927406c6181bcf8f60a73f36219b69d010aa04737", size = 41217654 }, - { url = "https://files.pythonhosted.org/packages/4b/5d/3c78815cbab499610f26b5bae6aed33e227225a9fa5290008a733a64f6fc/scipy-1.15.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c4697a10da8f8765bb7c83e24a470da5797e37041edfd77fd95ba3811a47c4fd", size = 38756184 }, - { url = "https://files.pythonhosted.org/packages/37/20/3d04eb066b471b6e171827548b9ddb3c21c6bbea72a4d84fc5989933910b/scipy-1.15.2-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:869269b767d5ee7ea6991ed7e22b3ca1f22de73ab9a49c44bad338b725603301", size = 30163558 }, - { url = "https://files.pythonhosted.org/packages/a4/98/e5c964526c929ef1f795d4c343b2ff98634ad2051bd2bbadfef9e772e413/scipy-1.15.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:bad78d580270a4d32470563ea86c6590b465cb98f83d760ff5b0990cb5518a93", size = 22437211 }, - { url = "https://files.pythonhosted.org/packages/1d/cd/1dc7371e29195ecbf5222f9afeedb210e0a75057d8afbd942aa6cf8c8eca/scipy-1.15.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:b09ae80010f52efddb15551025f9016c910296cf70adbf03ce2a8704f3a5ad20", size = 25232260 }, - { url = "https://files.pythonhosted.org/packages/f0/24/1a181a9e5050090e0b5138c5f496fee33293c342b788d02586bc410c6477/scipy-1.15.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a6fd6eac1ce74a9f77a7fc724080d507c5812d61e72bd5e4c489b042455865e", size = 35198095 }, - { url = "https://files.pythonhosted.org/packages/c0/53/eaada1a414c026673eb983f8b4a55fe5eb172725d33d62c1b21f63ff6ca4/scipy-1.15.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b871df1fe1a3ba85d90e22742b93584f8d2b8e6124f8372ab15c71b73e428b8", size = 37297371 }, - { url = "https://files.pythonhosted.org/packages/e9/06/0449b744892ed22b7e7b9a1994a866e64895363572677a316a9042af1fe5/scipy-1.15.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:03205d57a28e18dfd39f0377d5002725bf1f19a46f444108c29bdb246b6c8a11", size = 36872390 }, - { url = "https://files.pythonhosted.org/packages/6a/6f/a8ac3cfd9505ec695c1bc35edc034d13afbd2fc1882a7c6b473e280397bb/scipy-1.15.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:601881dfb761311045b03114c5fe718a12634e5608c3b403737ae463c9885d53", size = 39700276 }, - { url = "https://files.pythonhosted.org/packages/f5/6f/e6e5aff77ea2a48dd96808bb51d7450875af154ee7cbe72188afb0b37929/scipy-1.15.2-cp312-cp312-win_amd64.whl", hash = "sha256:e7c68b6a43259ba0aab737237876e5c2c549a031ddb7abc28c7b47f22e202ded", size = 40942317 }, - { url = "https://files.pythonhosted.org/packages/53/40/09319f6e0f276ea2754196185f95cd191cb852288440ce035d5c3a931ea2/scipy-1.15.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01edfac9f0798ad6b46d9c4c9ca0e0ad23dbf0b1eb70e96adb9fa7f525eff0bf", size = 38717587 }, - { url = "https://files.pythonhosted.org/packages/fe/c3/2854f40ecd19585d65afaef601e5e1f8dbf6758b2f95b5ea93d38655a2c6/scipy-1.15.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:08b57a9336b8e79b305a143c3655cc5bdbe6d5ece3378578888d2afbb51c4e37", size = 30100266 }, - { url = "https://files.pythonhosted.org/packages/dd/b1/f9fe6e3c828cb5930b5fe74cb479de5f3d66d682fa8adb77249acaf545b8/scipy-1.15.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:54c462098484e7466362a9f1672d20888f724911a74c22ae35b61f9c5919183d", size = 22373768 }, - { url = "https://files.pythonhosted.org/packages/15/9d/a60db8c795700414c3f681908a2b911e031e024d93214f2d23c6dae174ab/scipy-1.15.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:cf72ff559a53a6a6d77bd8eefd12a17995ffa44ad86c77a5df96f533d4e6c6bb", size = 25154719 }, - { url = "https://files.pythonhosted.org/packages/37/3b/9bda92a85cd93f19f9ed90ade84aa1e51657e29988317fabdd44544f1dd4/scipy-1.15.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9de9d1416b3d9e7df9923ab23cd2fe714244af10b763975bea9e4f2e81cebd27", size = 35163195 }, - { url = "https://files.pythonhosted.org/packages/03/5a/fc34bf1aa14dc7c0e701691fa8685f3faec80e57d816615e3625f28feb43/scipy-1.15.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb530e4794fc8ea76a4a21ccb67dea33e5e0e60f07fc38a49e821e1eae3b71a0", size = 37255404 }, - { url = "https://files.pythonhosted.org/packages/4a/71/472eac45440cee134c8a180dbe4c01b3ec247e0338b7c759e6cd71f199a7/scipy-1.15.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5ea7ed46d437fc52350b028b1d44e002646e28f3e8ddc714011aaf87330f2f32", size = 36860011 }, - { url = "https://files.pythonhosted.org/packages/01/b3/21f890f4f42daf20e4d3aaa18182dddb9192771cd47445aaae2e318f6738/scipy-1.15.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:11e7ad32cf184b74380f43d3c0a706f49358b904fa7d5345f16ddf993609184d", size = 39657406 }, - { url = "https://files.pythonhosted.org/packages/0d/76/77cf2ac1f2a9cc00c073d49e1e16244e389dd88e2490c91d84e1e3e4d126/scipy-1.15.2-cp313-cp313-win_amd64.whl", hash = "sha256:a5080a79dfb9b78b768cebf3c9dcbc7b665c5875793569f48bf0e2b1d7f68f6f", size = 40961243 }, - { url = "https://files.pythonhosted.org/packages/4c/4b/a57f8ddcf48e129e6054fa9899a2a86d1fc6b07a0e15c7eebff7ca94533f/scipy-1.15.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:447ce30cee6a9d5d1379087c9e474628dab3db4a67484be1b7dc3196bfb2fac9", size = 38870286 }, - { url = "https://files.pythonhosted.org/packages/0c/43/c304d69a56c91ad5f188c0714f6a97b9c1fed93128c691148621274a3a68/scipy-1.15.2-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:c90ebe8aaa4397eaefa8455a8182b164a6cc1d59ad53f79943f266d99f68687f", size = 30141634 }, - { url = "https://files.pythonhosted.org/packages/44/1a/6c21b45d2548eb73be9b9bff421aaaa7e85e22c1f9b3bc44b23485dfce0a/scipy-1.15.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:def751dd08243934c884a3221156d63e15234a3155cf25978b0a668409d45eb6", size = 22415179 }, - { url = "https://files.pythonhosted.org/packages/74/4b/aefac4bba80ef815b64f55da06f62f92be5d03b467f2ce3668071799429a/scipy-1.15.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:302093e7dfb120e55515936cb55618ee0b895f8bcaf18ff81eca086c17bd80af", size = 25126412 }, - { url = "https://files.pythonhosted.org/packages/b1/53/1cbb148e6e8f1660aacd9f0a9dfa2b05e9ff1cb54b4386fe868477972ac2/scipy-1.15.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7cd5b77413e1855351cdde594eca99c1f4a588c2d63711388b6a1f1c01f62274", size = 34952867 }, - { url = "https://files.pythonhosted.org/packages/2c/23/e0eb7f31a9c13cf2dca083828b97992dd22f8184c6ce4fec5deec0c81fcf/scipy-1.15.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d0194c37037707b2afa7a2f2a924cf7bac3dc292d51b6a925e5fcb89bc5c776", size = 36890009 }, - { url = "https://files.pythonhosted.org/packages/03/f3/e699e19cabe96bbac5189c04aaa970718f0105cff03d458dc5e2b6bd1e8c/scipy-1.15.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:bae43364d600fdc3ac327db99659dcb79e6e7ecd279a75fe1266669d9a652828", size = 36545159 }, - { url = "https://files.pythonhosted.org/packages/af/f5/ab3838e56fe5cc22383d6fcf2336e48c8fe33e944b9037fbf6cbdf5a11f8/scipy-1.15.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f031846580d9acccd0044efd1a90e6f4df3a6e12b4b6bd694a7bc03a89892b28", size = 39136566 }, - { url = "https://files.pythonhosted.org/packages/0a/c8/b3f566db71461cabd4b2d5b39bcc24a7e1c119535c8361f81426be39bb47/scipy-1.15.2-cp313-cp313t-win_amd64.whl", hash = "sha256:fe8a9eb875d430d81755472c5ba75e84acc980e4a8f6204d402849234d3017db", size = 40477705 }, -] - -[[package]] -name = "six" -version = "1.17.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 }, -] - -[[package]] -name = "snowballstemmer" -version = "2.2.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/44/7b/af302bebf22c749c56c9c3e8ae13190b5b5db37a33d9068652e8f73b7089/snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1", size = 86699 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a", size = 93002 }, -] - -[[package]] -name = "soupsieve" -version = "2.6" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d7/ce/fbaeed4f9fb8b2daa961f90591662df6a86c1abf25c548329a86920aedfb/soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb", size = 101569 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9", size = 36186 }, -] - -[[package]] -name = "sphinx" -version = "7.4.7" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "alabaster", version = "0.7.16", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "babel", marker = "python_full_version < '3.10'" }, - { name = "colorama", marker = "python_full_version < '3.10' and sys_platform == 'win32'" }, - { name = "docutils", marker = "python_full_version < '3.10'" }, - { name = "imagesize", marker = "python_full_version < '3.10'" }, - { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, - { name = "jinja2", marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, - { name = "pygments", marker = "python_full_version < '3.10'" }, - { name = "requests", marker = "python_full_version < '3.10'" }, - { name = "snowballstemmer", marker = "python_full_version < '3.10'" }, - { name = "sphinxcontrib-applehelp", marker = "python_full_version < '3.10'" }, - { name = "sphinxcontrib-devhelp", marker = "python_full_version < '3.10'" }, - { name = "sphinxcontrib-htmlhelp", marker = "python_full_version < '3.10'" }, - { name = "sphinxcontrib-jsmath", marker = "python_full_version < '3.10'" }, - { name = "sphinxcontrib-qthelp", marker = "python_full_version < '3.10'" }, - { name = "sphinxcontrib-serializinghtml", marker = "python_full_version < '3.10'" }, - { name = "tomli", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/5b/be/50e50cb4f2eff47df05673d361095cafd95521d2a22521b920c67a372dcb/sphinx-7.4.7.tar.gz", hash = "sha256:242f92a7ea7e6c5b406fdc2615413890ba9f699114a9c09192d7dfead2ee9cfe", size = 8067911 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0d/ef/153f6803c5d5f8917dbb7f7fcf6d34a871ede3296fa89c2c703f5f8a6c8e/sphinx-7.4.7-py3-none-any.whl", hash = "sha256:c2419e2135d11f1951cd994d6eb18a1835bd8fdd8429f9ca375dc1f3281bd239", size = 3401624 }, -] - -[[package]] -name = "sphinx" -version = "8.1.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "alabaster", version = "1.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "babel", marker = "python_full_version == '3.10.*'" }, - { name = "colorama", marker = "python_full_version == '3.10.*' and sys_platform == 'win32'" }, - { name = "docutils", marker = "python_full_version == '3.10.*'" }, - { name = "imagesize", marker = "python_full_version == '3.10.*'" }, - { name = "jinja2", marker = "python_full_version == '3.10.*'" }, - { name = "packaging", marker = "python_full_version == '3.10.*'" }, - { name = "pygments", marker = "python_full_version == '3.10.*'" }, - { name = "requests", marker = "python_full_version == '3.10.*'" }, - { name = "snowballstemmer", marker = "python_full_version == '3.10.*'" }, - { name = "sphinxcontrib-applehelp", marker = "python_full_version == '3.10.*'" }, - { name = "sphinxcontrib-devhelp", marker = "python_full_version == '3.10.*'" }, - { name = "sphinxcontrib-htmlhelp", marker = "python_full_version == '3.10.*'" }, - { name = "sphinxcontrib-jsmath", marker = "python_full_version == '3.10.*'" }, - { name = "sphinxcontrib-qthelp", marker = "python_full_version == '3.10.*'" }, - { name = "sphinxcontrib-serializinghtml", marker = "python_full_version == '3.10.*'" }, - { name = "tomli", marker = "python_full_version == '3.10.*'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125 }, -] - -[[package]] -name = "sphinx" -version = "8.2.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", -] -dependencies = [ - { name = "alabaster", version = "1.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "babel", marker = "python_full_version >= '3.11'" }, - { name = "colorama", marker = "python_full_version >= '3.11' and sys_platform == 'win32'" }, - { name = "docutils", marker = "python_full_version >= '3.11'" }, - { name = "imagesize", marker = "python_full_version >= '3.11'" }, - { name = "jinja2", marker = "python_full_version >= '3.11'" }, - { name = "packaging", marker = "python_full_version >= '3.11'" }, - { name = "pygments", marker = "python_full_version >= '3.11'" }, - { name = "requests", marker = "python_full_version >= '3.11'" }, - { name = "roman-numerals-py", marker = "python_full_version >= '3.11'" }, - { name = "snowballstemmer", marker = "python_full_version >= '3.11'" }, - { name = "sphinxcontrib-applehelp", marker = "python_full_version >= '3.11'" }, - { name = "sphinxcontrib-devhelp", marker = "python_full_version >= '3.11'" }, - { name = "sphinxcontrib-htmlhelp", marker = "python_full_version >= '3.11'" }, - { name = "sphinxcontrib-jsmath", marker = "python_full_version >= '3.11'" }, - { name = "sphinxcontrib-qthelp", marker = "python_full_version >= '3.11'" }, - { name = "sphinxcontrib-serializinghtml", marker = "python_full_version >= '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/38/ad/4360e50ed56cb483667b8e6dadf2d3fda62359593faabbe749a27c4eaca6/sphinx-8.2.3.tar.gz", hash = "sha256:398ad29dee7f63a75888314e9424d40f52ce5a6a87ae88e7071e80af296ec348", size = 8321876 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/31/53/136e9eca6e0b9dc0e1962e2c908fbea2e5ac000c2a2fbd9a35797958c48b/sphinx-8.2.3-py3-none-any.whl", hash = "sha256:4405915165f13521d875a8c29c8970800a0141c14cc5416a38feca4ea5d9b9c3", size = 3589741 }, -] - -[[package]] -name = "sphinx-autodoc-typehints" -version = "2.3.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/74/cd/03e7b917230dc057922130a79ba0240df1693bfd76727ea33fae84b39138/sphinx_autodoc_typehints-2.3.0.tar.gz", hash = "sha256:535c78ed2d6a1bad393ba9f3dfa2602cf424e2631ee207263e07874c38fde084", size = 40709 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/f3/e0a4ce49da4b6f4e4ce84b3c39a0677831884cb9d8a87ccbf1e9e56e53ac/sphinx_autodoc_typehints-2.3.0-py3-none-any.whl", hash = "sha256:3098e2c6d0ba99eacd013eb06861acc9b51c6e595be86ab05c08ee5506ac0c67", size = 19836 }, -] - -[[package]] -name = "sphinx-autodoc-typehints" -version = "3.0.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/26/f0/43c6a5ff3e7b08a8c3b32f81b859f1b518ccc31e45f22e2b41ced38be7b9/sphinx_autodoc_typehints-3.0.1.tar.gz", hash = "sha256:b9b40dd15dee54f6f810c924f863f9cf1c54f9f3265c495140ea01be7f44fa55", size = 36282 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/dc/dc46c5c7c566b7ec5e8f860f9c89533bf03c0e6aadc96fb9b337867e4460/sphinx_autodoc_typehints-3.0.1-py3-none-any.whl", hash = "sha256:4b64b676a14b5b79cefb6628a6dc8070e320d4963e8ff640a2f3e9390ae9045a", size = 20245 }, -] - -[[package]] -name = "sphinx-autodoc-typehints" -version = "3.1.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.11'", -] -dependencies = [ - { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/cb/cc/d38e7260b1bd3af0c84ad8285dfd78236584b74544510584e07963e000ec/sphinx_autodoc_typehints-3.1.0.tar.gz", hash = "sha256:a6b7b0b6df0a380783ce5b29150c2d30352746f027a3e294d37183995d3f23ed", size = 36528 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/14/2f/bc5bed0677ae00b9ca7919968ea675e2f696b6b20f1648262f26a7a6c6b4/sphinx_autodoc_typehints-3.1.0-py3-none-any.whl", hash = "sha256:67bdee7e27ba943976ce92ebc5647a976a7a08f9f689a826c54617b96a423913", size = 20404 }, -] - -[[package]] -name = "sphinx-basic-ng" -version = "1.0.0b2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/98/0b/a866924ded68efec7a1759587a4e478aec7559d8165fac8b2ad1c0e774d6/sphinx_basic_ng-1.0.0b2.tar.gz", hash = "sha256:9ec55a47c90c8c002b5960c57492ec3021f5193cb26cebc2dc4ea226848651c9", size = 20736 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3c/dd/018ce05c532a22007ac58d4f45232514cd9d6dd0ee1dc374e309db830983/sphinx_basic_ng-1.0.0b2-py3-none-any.whl", hash = "sha256:eb09aedbabfb650607e9b4b68c9d240b90b1e1be221d6ad71d61c52e29f7932b", size = 22496 }, -] - -[[package]] -name = "sphinx-copybutton" -version = "0.5.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "sphinx", version = "7.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "sphinx", version = "8.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "sphinx", version = "8.2.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/fc/2b/a964715e7f5295f77509e59309959f4125122d648f86b4fe7d70ca1d882c/sphinx-copybutton-0.5.2.tar.gz", hash = "sha256:4cf17c82fb9646d1bc9ca92ac280813a3b605d8c421225fd9913154103ee1fbd", size = 23039 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9e/48/1ea60e74949eecb12cdd6ac43987f9fd331156388dcc2319b45e2ebb81bf/sphinx_copybutton-0.5.2-py3-none-any.whl", hash = "sha256:fb543fd386d917746c9a2c50360c7905b605726b9355cd26e9974857afeae06e", size = 13343 }, -] - -[[package]] -name = "sphinxcontrib-applehelp" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300 }, -] - -[[package]] -name = "sphinxcontrib-devhelp" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530 }, -] - -[[package]] -name = "sphinxcontrib-htmlhelp" -version = "2.1.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705 }, -] - -[[package]] -name = "sphinxcontrib-jsmath" -version = "1.0.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071 }, -] - -[[package]] -name = "sphinxcontrib-qthelp" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743 }, -] - -[[package]] -name = "sphinxcontrib-serializinghtml" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072 }, -] - -[[package]] -name = "tomli" -version = "2.2.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249", size = 131077 }, - { url = "https://files.pythonhosted.org/packages/c7/16/51ae563a8615d472fdbffc43a3f3d46588c264ac4f024f63f01283becfbb/tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6", size = 123429 }, - { url = "https://files.pythonhosted.org/packages/f1/dd/4f6cd1e7b160041db83c694abc78e100473c15d54620083dbd5aae7b990e/tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a", size = 226067 }, - { url = "https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee", size = 236030 }, - { url = "https://files.pythonhosted.org/packages/1f/47/999514fa49cfaf7a92c805a86c3c43f4215621855d151b61c602abb38091/tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e", size = 240898 }, - { url = "https://files.pythonhosted.org/packages/73/41/0a01279a7ae09ee1573b423318e7934674ce06eb33f50936655071d81a24/tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4", size = 229894 }, - { url = "https://files.pythonhosted.org/packages/55/18/5d8bc5b0a0362311ce4d18830a5d28943667599a60d20118074ea1b01bb7/tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106", size = 245319 }, - { url = "https://files.pythonhosted.org/packages/92/a3/7ade0576d17f3cdf5ff44d61390d4b3febb8a9fc2b480c75c47ea048c646/tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8", size = 238273 }, - { url = "https://files.pythonhosted.org/packages/72/6f/fa64ef058ac1446a1e51110c375339b3ec6be245af9d14c87c4a6412dd32/tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff", size = 98310 }, - { url = "https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b", size = 108309 }, - { url = "https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea", size = 132762 }, - { url = "https://files.pythonhosted.org/packages/03/b8/152c68bb84fc00396b83e7bbddd5ec0bd3dd409db4195e2a9b3e398ad2e3/tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8", size = 123453 }, - { url = "https://files.pythonhosted.org/packages/c8/d6/fc9267af9166f79ac528ff7e8c55c8181ded34eb4b0e93daa767b8841573/tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192", size = 233486 }, - { url = "https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222", size = 242349 }, - { url = "https://files.pythonhosted.org/packages/ab/df/bfa89627d13a5cc22402e441e8a931ef2108403db390ff3345c05253935e/tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77", size = 252159 }, - { url = "https://files.pythonhosted.org/packages/9e/6e/fa2b916dced65763a5168c6ccb91066f7639bdc88b48adda990db10c8c0b/tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6", size = 237243 }, - { url = "https://files.pythonhosted.org/packages/b4/04/885d3b1f650e1153cbb93a6a9782c58a972b94ea4483ae4ac5cedd5e4a09/tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd", size = 259645 }, - { url = "https://files.pythonhosted.org/packages/9c/de/6b432d66e986e501586da298e28ebeefd3edc2c780f3ad73d22566034239/tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e", size = 244584 }, - { url = "https://files.pythonhosted.org/packages/1c/9a/47c0449b98e6e7d1be6cbac02f93dd79003234ddc4aaab6ba07a9a7482e2/tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98", size = 98875 }, - { url = "https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4", size = 109418 }, - { url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708 }, - { url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582 }, - { url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543 }, - { url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691 }, - { url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170 }, - { url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530 }, - { url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666 }, - { url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954 }, - { url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724 }, - { url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383 }, - { url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257 }, -] - -[[package]] -name = "typing-extensions" -version = "4.13.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz", hash = "sha256:e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef", size = 106967 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8b/54/b1ae86c0973cc6f0210b53d508ca3641fb6d0c56823f288d108bc7ab3cc8/typing_extensions-4.13.2-py3-none-any.whl", hash = "sha256:a439e7c04b49fec3e5d3e2beaa21755cadbbdc391694e28ccdd36ca4a1408f8c", size = 45806 }, -] - -[[package]] -name = "urllib3" -version = "2.4.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz", hash = "sha256:414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466", size = 390672 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl", hash = "sha256:4e16665048960a0900c702d4a66415956a584919c03361cac9f1df5c5dd7e813", size = 128680 }, -] - -[[package]] -name = "win32-setctime" -version = "1.2.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b3/8f/705086c9d734d3b663af0e9bb3d4de6578d08f46b1b101c2442fd9aecaa2/win32_setctime-1.2.0.tar.gz", hash = "sha256:ae1fdf948f5640aae05c511ade119313fb6a30d7eabe25fef9764dca5873c4c0", size = 4867 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/07/c6fe3ad3e685340704d314d765b7912993bcb8dc198f0e7a89382d37974b/win32_setctime-1.2.0-py3-none-any.whl", hash = "sha256:95d644c4e708aba81dc3704a116d8cbc974d70b3bdb8be1d150e36be6e9d1390", size = 4083 }, -] - -[[package]] -name = "zipp" -version = "3.21.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/3f/50/bad581df71744867e9468ebd0bcd6505de3b275e06f202c2cb016e3ff56f/zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4", size = 24545 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/1a/7e4798e9339adc931158c9d69ecc34f5e6791489d469f5e50ec15e35f458/zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931", size = 9630 }, -] From f839e31a1d0f424f1e1eb8461710cd6aa9ce6f29 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 21:37:20 +0200 Subject: [PATCH 13/51] fix linting errors --- docs/examples/soft_magnets.md | 2 +- .../data/__init__.py | 13 +-- src/magpylib_material_response/demag.py | 93 +++++++++---------- src/magpylib_material_response/meshing.py | 33 ++++--- .../meshing_utils.py | 34 ++++--- src/magpylib_material_response/polyline.py | 19 ++-- src/magpylib_material_response/utils.py | 32 ++++--- tests/test_meshing.py | 8 +- 8 files changed, 122 insertions(+), 112 deletions(-) diff --git a/docs/examples/soft_magnets.md b/docs/examples/soft_magnets.md index 9515fab..61d3e8b 100644 --- a/docs/examples/soft_magnets.md +++ b/docs/examples/soft_magnets.md @@ -21,7 +21,7 @@ kernelspec: This code demonstrates demagnetization calculations for a hard and a soft cuboid magnet using the Magpylib library. Demagnetization is applied using varying numbers of cells for the mesh and compared to the computed magnetic fields from -Magpylib withoug demagnetization and with FEM analysis data obtained from an +Magpylib without demagnetization and with FEM analysis data obtained from an external dataset. +++ {"user_expressions": []} diff --git a/src/magpylib_material_response/data/__init__.py b/src/magpylib_material_response/data/__init__.py index e3a49ba..bd45b91 100644 --- a/src/magpylib_material_response/data/__init__.py +++ b/src/magpylib_material_response/data/__init__.py @@ -11,9 +11,10 @@ def get_dataset(name): from pathlib import Path name = Path(name).with_suffix("").with_suffix(".json") - with importlib.resources.path( - "magpylib_material_response.package_data", "datasets" - ) as resources_path: - with open(resources_path / name) as fp: - sim = json.load(fp) - return sim + with ( + importlib.resources.path( + "magpylib_material_response.package_data", "datasets" + ) as resources_path, + (resources_path / name).open() as fp, + ): + return json.load(fp) diff --git a/src/magpylib_material_response/demag.py b/src/magpylib_material_response/demag.py index 1aebe0e..af8585f 100644 --- a/src/magpylib_material_response/demag.py +++ b/src/magpylib_material_response/demag.py @@ -1,7 +1,5 @@ """demag_functions""" -# + -# pylint: disable=invalid-name, redefined-outer-name, protected-access from __future__ import annotations import sys @@ -18,16 +16,16 @@ config = { "handlers": [ - dict( - sink=sys.stdout, - colorize=True, - format=( + { + "sink": sys.stdout, + "colorize": True, + "format": ( "{time:YYYY-MM-DD at HH:mm:ss}" " | {level:^8}" " | {function}" " | {extra} {level.icon:<2} {message}" ), - ), + }, ], } logger.configure(**config) @@ -35,7 +33,7 @@ def get_susceptibilities(sources, susceptibility): """Return a list of length (len(sources)) with susceptibility values - Priority is given at the source level, hovever if value is not found, it is searched + Priority is given at the source level, however if value is not found, it is searched up the parent tree, if available. Raises an error if no value is found when reached the top level of the tree.""" n = len(sources) @@ -47,31 +45,31 @@ def get_susceptibilities(sources, susceptibility): susceptibility = getattr(src, "susceptibility", None) if susceptibility is None: if src.parent is None: - raise ValueError( - "No susceptibility defined in any parent collection" - ) + msg = "No susceptibility defined in any parent collection" + raise ValueError(msg) susis.extend(get_susceptibilities(src.parent)) elif not hasattr(susceptibility, "__len__"): susis.append((susceptibility, susceptibility, susceptibility)) elif len(susceptibility) == 3: susis.append(susceptibility) else: - raise ValueError("susceptibility is not scalar or array fo length 3") + msg = "susceptibility is not scalar or array of length 3" + raise ValueError(msg) # susceptibilities as input to demag function elif np.isscalar(susceptibility): susis = np.ones((n, 3)) * susceptibility elif len(susceptibility) == 3: susis = np.tile(susceptibility, (n, 1)) if n == 3: - raise ValueError( + msg = ( "Apply_demag input susceptibility is ambiguous - either scalar list or vector single entry. " "Please choose different means of input or change the number of cells in the Collection." ) + raise ValueError(msg) else: if len(susceptibility) != n: - raise ValueError( - "Apply_demag input susceptibility must be scalar, 3-vector, or same length as input Collection." - ) + msg = "Apply_demag input susceptibility must be scalar, 3-vector, or same length as input Collection." + raise ValueError(msg) susis = np.array(susceptibility) if susis.ndim == 1: susis = np.repeat(susis, 3).reshape(n, 3) @@ -82,7 +80,7 @@ def get_susceptibilities(sources, susceptibility): def get_H_ext(*sources, H_ext=None): """Return a list of length (len(sources)) with H_ext values - Priority is given at the source level, hovever if value is not found, it is searched up the + Priority is given at the source level, however if value is not found, it is searched up the the parent tree, if available. Sets H_ext to zero if no value is found when reached the top level of the tree""" H_exts = [] @@ -120,7 +118,7 @@ def demag_tensor( calculated only once and copied to duplicates. split: int - Number of times the sources list is splitted before getH calculation ind demag + Number of times the sources list is split before getH calculation ind demag tensor calculation min_log_time: @@ -141,7 +139,8 @@ def demag_tensor( nof_src = len(src_list) if pairs_matching and split != 1: - raise ValueError("Pairs matching does not support splitting") + msg = "Pairs matching does not support splitting" + raise ValueError(msg) if max_dist != 0: mask_inds, getH_params, pos0, rot0 = filter_distance( src_list, max_dist, return_params=False, return_base_geo=True @@ -192,9 +191,7 @@ def demag_tensor( H_point.append(H_unit_pol) # shape (n_cells, n_pos, 3_xyz) # shape (3_unit_pol, n_cells, n_pos, 3_xyz) - T = np.array(H_point).reshape((3, nof_src, nof_src, 3)) - - return T + return np.array(H_point).reshape((3, nof_src, nof_src, 3)) def filter_distance( @@ -208,9 +205,8 @@ def filter_distance( with timelog("Distance filter", min_log_time=min_log_time): all_cuboids = all(isinstance(src, Cuboid) for src in src_list) if not all_cuboids: - raise ValueError( - "filter_distance only implemented if all sources are Cuboids" - ) + msg = "filter_distance only implemented if all sources are Cuboids" + raise ValueError(msg) pos0 = np.array([getattr(src, "barycenter", src.position) for src in src_list]) rotQ0 = [src.orientation.as_quat() for src in src_list] rot0 = R.from_quat(rotQ0) @@ -222,12 +218,14 @@ def filter_distance( maxdim2 = np.concatenate(dim2, axis=1).max(axis=1) mask = (dist2 / maxdim2) < max_dist if return_params: - params = dict( - observers=np.tile(pos0, (len(src_list), 1))[mask], - position=np.repeat(pos0, len(src_list), axis=0)[mask], - orientation=R.from_quat(np.repeat(rotQ0, len(src_list), axis=0))[mask], - dimension=np.repeat(dim0, len(src_list), axis=0)[mask], - ) + params = { + "observers": np.tile(pos0, (len(src_list), 1))[mask], + "position": np.repeat(pos0, len(src_list), axis=0)[mask], + "orientation": R.from_quat(np.repeat(rotQ0, len(src_list), axis=0))[ + mask + ], + "dimension": np.repeat(dim0, len(src_list), axis=0)[mask], + } dsf = sum(mask) / len(mask) * 100 log_msg = ( "Interaction pairs left after distance factor filtering: " @@ -252,9 +250,8 @@ def match_pairs(src_list, min_log_time=1): with timelog("Pairs matching", min_log_time=min_log_time): all_cuboids = all(isinstance(src, Cuboid) for src in src_list) if not all_cuboids: - raise ValueError( - "Pairs matching only implemented if all sources are Cuboids" - ) + msg = "Pairs matching only implemented if all sources are Cuboids" + raise ValueError(msg) pos0 = np.array([getattr(src, "barycenter", src.position) for src in src_list]) rotQ0 = [src.orientation.as_quat() for src in src_list] rot0 = R.from_quat(rotQ0) @@ -283,12 +280,12 @@ def match_pairs(src_list, min_log_time=1): f"{perc:.2f}%" ) - params = dict( - observers=np.tile(pos0, (len(src_list), 1))[unique_inds], - position=np.repeat(pos0, len(src_list), axis=0)[unique_inds], - orientation=R.from_quat(rotQ2b)[unique_inds], - dimension=np.repeat(dim0, len(src_list), axis=0)[unique_inds], - ) + params = { + "observers": np.tile(pos0, (len(src_list), 1))[unique_inds], + "position": np.repeat(pos0, len(src_list), axis=0)[unique_inds], + "orientation": R.from_quat(rotQ2b)[unique_inds], + "dimension": np.repeat(dim0, len(src_list), axis=0)[unique_inds], + } return params, unique_inds, unique_inv_inds, pos0, rot0 @@ -331,7 +328,7 @@ def apply_demag( `pairs_matching` or `split` and applies only cuboid cells. split: int - Number of times the sources list is splitted before getH calculation ind demag + Number of times the sources list is split before getH calculation ind demag tensor calculation. This parameter is not compatible with `pairs_matching` or `max_dist`. @@ -353,10 +350,11 @@ def apply_demag( srcs = collection.sources_all src_with_paths = [src for src in srcs if src.position.ndim != 1] if src_with_paths: - raise ValueError( + msg = ( f"{len(src_with_paths)} objects with paths, found. Demagnetization of " "objects with paths is not yet supported" ) + raise ValueError(msg) magnets_list = [src for src in srcs if isinstance(src, BaseMagnet)] currents_list = [src for src in srcs if isinstance(src, BaseCurrent)] others_list = [ @@ -365,16 +363,17 @@ def apply_demag( if not isinstance(src, (BaseMagnet, BaseCurrent, magpy.Sensor)) ] if others_list: - raise TypeError( + msg = ( "Only Magnet and Current sources supported. " "Incompatible objects found: " f"{Counter(s.__class__.__name__ for s in others_list)}" ) + raise TypeError(msg) n = len(magnets_list) counts = Counter(s.__class__.__name__ for s in magnets_list) inplace_str = f"""{" (inplace)" if inplace else ""}""" lbl = collection.style.label - coll_str = str(collection) if not lbl else lbl + coll_str = lbl if lbl else str(collection) demag_msg = ( f"Demagnetization{inplace_str} of {coll_str}" f" with {n} cells - {counts}" @@ -399,9 +398,8 @@ def apply_demag( H_ext = get_H_ext(*magnets_list) H_ext = np.array(H_ext) if len(H_ext) != n: - raise ValueError( - "Apply_demag input collection and H_ext must have same length." - ) + msg = "Apply_demag input collection and H_ext must have same length." + raise ValueError(msg) H_ext = np.reshape(H_ext, (3 * n, 1), order="F") # set up T (3 pol unit, n cells, n positions, 3 Bxyz) @@ -442,3 +440,4 @@ def apply_demag( if not inplace: return collection + return None diff --git a/src/magpylib_material_response/meshing.py b/src/magpylib_material_response/meshing.py index ceef264..266c0b7 100644 --- a/src/magpylib_material_response/meshing.py +++ b/src/magpylib_material_response/meshing.py @@ -52,10 +52,11 @@ def mesh_Cuboid(cuboid, target_elems, verbose=False, **kwargs): Collection of Cuboid cells """ if not isinstance(cuboid, magpy.magnet.Cuboid): - raise TypeError( + msg = ( "Object to be meshed must be a Cuboid, " f"received instead {cuboid.__class__.__name__!r}" ) + raise TypeError(msg) dim0 = cuboid.dimension pol0 = cuboid.polarization @@ -128,12 +129,13 @@ def mesh_Cylinder(cylinder, target_elems, verbose=False, **kwargs): 360, ) else: - raise TypeError("Input must be a Cylinder or CylinderSegment") + msg = "Input must be a Cylinder or CylinderSegment" + raise TypeError(msg) al = (r2 + r1) * 3.14 * (phi2 - phi1) / 360 # arclen = D*pi*arcratio dim = al, r2 - r1, h pol0 = cylinder.polarization - # "unroll" the cylinder and distribute the target number of elemens along the + # "unroll" the cylinder and distribute the target number of elements along the # circumference, radius and height. if np.isscalar(target_elems): nphi, nr, nh = cells_from_dimension(dim, target_elems) @@ -195,7 +197,7 @@ def mesh_thin_CylinderSegment_with_cuboids( CylinderSegment object to be discretized target_elems: int or tuple of int, If `target_elems` is a tuple of integers, the cylinder segment is respectively - divided over circumference and height, if an integer, divisions are infered to + divided over circumference and height, if an integer, divisions are inferred to build cuboids with close to squared faces. ratio_limit: positive number, Sets the r2/(r2-r1) limit to be considered as thin-walled, r1 being the inner @@ -214,11 +216,12 @@ def mesh_thin_CylinderSegment_with_cuboids( r1, r2, h, phi1, phi2 = cyl_seg.dimension pol0 = cyl_seg.polarization if ratio_limit > r2 / (r2 - r1): - raise ValueError( + msg = ( "This meshing function is intended for thin-walled CylinderSegment objects" f" of radii-ratio r2/(r2-r1)>{ratio_limit}, r1 being the inner radius." f"\nInstead r2/(r2-r1)={r2 / (r2 - r1)}" ) + raise ValueError(msg) # distribute elements -> targeting thin close-to-square surface cells circumf = 2 * np.pi * r1 if np.isscalar(target_elems): @@ -279,12 +282,14 @@ def slice_Cuboid(cuboid, shift=0.5, axis="z", **kwargs): If the shift value is not between 0 and 1 (exclusive). """ if not isinstance(cuboid, magpy.magnet.Cuboid): - raise TypeError( + msg = ( "Object to be sliced must be a Cuboid, " f"received instead {cuboid.__class__.__name__!r}" ) + raise TypeError(msg) if not 0 < shift < 1: - raise ValueError("Shift must be between 0 and 1 (exclusive)") + msg = "Shift must be between 0 and 1 (exclusive)" + raise ValueError(msg) dim0 = cuboid.dimension pol0 = cuboid.polarization ind = "xyz".index(axis) @@ -347,7 +352,8 @@ def voxelize(obj, target_elems, strict_inside=True, **kwargs): ) grid = grid[pos_inside_strict_mask] if grid.size == 0: - raise ValueError("No cuboids left with strict-inside method") + msg = "No cuboids left with strict-inside method" + raise ValueError(msg) cells = [] for pos in grid: @@ -399,7 +405,7 @@ def mesh_all( If there are incompatible objects found. """ supported = (magpy.magnet.Cuboid, magpy.magnet.Cylinder) - allowed = supported + (BaseCurrent,) + allowed = (*supported, BaseCurrent) if not inplace: obj = obj.copy(**kwargs) children = [obj] @@ -415,18 +421,19 @@ def mesh_all( else: target_elems_by_child = [max(min_elems, target_elems)] * len(supported_objs) if incompatible_objs: - raise TypeError( + msg = ( "Incompatible objects found: " f"{Counter(s.__class__.__name__ for s in incompatible_objs)}" f"\nSupported: {[s.__name__ for s in supported]}." ) - for child, target_elems in zip(supported_objs, target_elems_by_child): + raise TypeError(msg) + for child, targ_elems in zip(supported_objs, target_elems_by_child): parent = child.parent kw = kwargs if parent is None else {} if isinstance(child, magpy.magnet.Cuboid): - child_meshed = mesh_Cuboid(child, target_elems, **kw) + child_meshed = mesh_Cuboid(child, targ_elems, **kw) elif isinstance(child, magpy.magnet.Cylinder): - child_meshed = mesh_Cylinder(child, target_elems, **kw) + child_meshed = mesh_Cylinder(child, targ_elems, **kw) child.parent = None if parent is not None: parent.add(child_meshed) diff --git a/src/magpylib_material_response/meshing_utils.py b/src/magpylib_material_response/meshing_utils.py index 7ad7c11..b96ad49 100644 --- a/src/magpylib_material_response/meshing_utils.py +++ b/src/magpylib_material_response/meshing_utils.py @@ -97,18 +97,21 @@ def cells_from_dimension( # run all combinations of rounding methods, including parity matching to find the # closest triple with the target_elems constrain result = [funcs[0](k) for k in (a, b, c)] # first guess - for funcs in product(*[funcs] * 3): - res = [f(k) for f, k in zip(funcs, (a, b, c))] + for fns in product(*[funcs] * 3): + res = [f(k) for f, k in zip(fns, (a, b, c))] epsilon_new = elems - np.prod(res) - if np.abs(epsilon_new) <= epsilon and all(r >= min_val for r in res): - if not strict_max or epsilon_new >= 0: - epsilon = np.abs(epsilon_new) - result = res + if ( + np.abs(epsilon_new) <= epsilon + and all(r >= min_val for r in res) + and (not strict_max or epsilon_new >= 0) + ): + epsilon = np.abs(epsilon_new) + result = res return np.array(result).astype(int) def get_volume(obj, return_containing_cube_edge=False): - """Return object volume in mm^3. The `containting_cube_edge` is the mininum side + """Return object volume in mm^3. The `containting_cube_edge` is the minimum side length of an unrotated cube centered at the origin containing the object. """ if obj.__class__.__name__ == "Cuboid": @@ -127,7 +130,8 @@ def get_volume(obj, return_containing_cube_edge=False): vol = 4 / 3 * np.pi * (obj.diameter / 2) ** 3 containing_cube_edge = obj.diameter else: - raise TypeError("Unsupported object type for volume calculation") + msg = "Unsupported object type for volume calculation" + raise TypeError(msg) if return_containing_cube_edge: return vol, containing_cube_edge return vol @@ -147,7 +151,7 @@ def mask_inside_Cylinder(obj, positions, tolerance=1e-14): """Return mask of provided positions inside a Cylinder""" # transform to Cy CS x, y, z = positions.T - r, phi = np.sqrt(x**2 + y**2), np.arctan2(y, x) + r, _phi = np.sqrt(x**2 + y**2), np.arctan2(y, x) r0, z0 = obj.dimension.T / 2 # scale invariance (make dimensionless) @@ -184,12 +188,10 @@ def close(arg1, arg2): # transform dim deg->rad phi1 = phi1 / 180 * np.pi phi2 = phi2 / 180 * np.pi - dim = np.array([r1, r2, phi1, phi2, z1, z2]).T # transform obs_pos to Cy CS -------------------------------------------- x, y, z = positions.T r, phi = np.sqrt(x**2 + y**2), np.arctan2(y, x) - pos_obs_cy = np.concatenate(((r,), (phi,), (z,)), axis=0).T # determine when points lie inside and on surface of magnet ------------- @@ -197,10 +199,6 @@ def close(arg1, arg2): phio1 = phi phio2 = phi - np.sign(phi) * 2 * np.pi - # phi=phi1, phi=phi2 - mask_phi1 = close(phio1, phi1) | close(phio2, phi1) - mask_phi2 = close(phio1, phi2) | close(phio2, phi2) - # r, phi ,z lies in-between, avoid numerical fluctuations # (e.g. due to rotations) by including tolerance mask_r_in = (r1 - tolerance < r) & (r < r2 + tolerance) @@ -210,8 +208,7 @@ def close(arg1, arg2): mask_z_in = (z1 - tolerance < z) & (z < z2 + tolerance) # inside - mask_in = mask_r_in & mask_phi_in & mask_z_in - return mask_in + return mask_r_in & mask_phi_in & mask_z_in def mask_inside(obj, positions, tolerance=1e-14): @@ -224,5 +221,6 @@ def mask_inside(obj, positions, tolerance=1e-14): } func = mask_inside_funcs.get(obj.__class__.__name__, None) if func is None: - raise TypeError("Unsupported object type for inside masking") + msg = "Unsupported object type for inside masking" + raise TypeError(msg) return func(obj, positions, tolerance) diff --git a/src/magpylib_material_response/polyline.py b/src/magpylib_material_response/polyline.py index 421013a..833ff9f 100644 --- a/src/magpylib_material_response/polyline.py +++ b/src/magpylib_material_response/polyline.py @@ -1,6 +1,7 @@ from __future__ import annotations import numpy as np +from loguru import logger def _find_circle_center_and_tangent_points(a, b, c, r, max_ratio=1): @@ -36,7 +37,7 @@ def _find_circle_center_and_tangent_points(a, b, c, r, max_ratio=1): d = r / tan_theta if d > norm_bc * max_ratio or d > norm_ab * max_ratio: # rold, dold = r, d - print("r, d, norm_ab, norm_bc: ", r, d, norm_ab, norm_bc) + logger.debug(f"r: {r}, d: {d}, norm_ab: {norm_ab}, norm_bc: {norm_bc}") d = min(norm_bc * max_ratio, norm_ab * max_ratio) r = d * tan_theta if theta > 0 else 0 # warnings.warn(f"Radius {rold:.4g} is too big and has been reduced to {r:.4g}") @@ -77,10 +78,9 @@ def _interpolate_circle(center, start, end, n_points): v = start - center w = np.cross(v, end - start) w /= np.linalg.norm(w) - circle_points = [ + return [ center + np.cos(angle) * v + np.sin(angle) * np.cross(w, v) for angle in angles ] - return circle_points def _create_fillet_segment(a, b, c, r, N): @@ -148,9 +148,8 @@ def create_polyline_fillet(polyline, max_radius, N): try: filleted_points.extend(_create_fillet_segment(a, b, c, radius, N)) except ValueError as exc: - raise ValueError( - f"The radius {radius} on position vertex {i} is too large" - ) from exc + msg = f"The radius {radius} on position vertex {i} is too large" + raise ValueError(msg) from exc if closed: filleted_points[0] = filleted_points[-1] else: @@ -185,9 +184,7 @@ def _bisectors(polyline): bisectors = normalized_vectors[:-1] + normalized_vectors[1:] # Normalize the bisectors - bisectors_normalized = bisectors / np.linalg.norm(bisectors, axis=1)[:, np.newaxis] - - return bisectors_normalized + return bisectors / np.linalg.norm(bisectors, axis=1)[:, np.newaxis] def _line_plane_intersection(plane_point, plane_normal, line_points, line_directions): @@ -223,9 +220,7 @@ def _line_plane_intersection(plane_point, plane_normal, line_points, line_direct ) # Find the intersection points by plugging t back into the parametric line equation - intersection_points = line_points + np.expand_dims(t, axis=-1) * line_directions - - return intersection_points + return line_points + np.expand_dims(t, axis=-1) * line_directions def move_grid_along_polyline(verts, grid): diff --git a/src/magpylib_material_response/utils.py b/src/magpylib_material_response/utils.py index aa5f84e..d2adc07 100644 --- a/src/magpylib_material_response/utils.py +++ b/src/magpylib_material_response/utils.py @@ -80,7 +80,9 @@ def serialize_recursive(obj, parent="warn"): if getattr(obj, "_style", None) is not None or obj._style_kwargs: dd["style"] = obj.style.as_dict() if parent == "warn" and obj.parent is not None: - warnings.warn(f"object parent ({obj.parent}) not included in serialization") + warnings.warn( + f"object parent ({obj.parent}) not included in serialization", stacklevel=2 + ) if isinstance(obj, BaseMagnet): dd["polarization"] = {"value": obj.polarization.tolist(), "unit": "T"} susceptibility = getattr(obj, "susceptibility", None) @@ -108,7 +110,8 @@ def serialize_recursive(obj, parent="warn"): serialize_recursive(child, parent="ignore") for child in obj.children ] else: - raise TypeError("Only Cuboid supported") + msg = "Only Cuboid supported" + raise TypeError(msg) return dd @@ -130,13 +133,15 @@ def deserialize_recursive(inp, ids=None): kw["position"] = inp["position"]["value"] pos_unit = inp["position"]["unit"] if pos_unit != "m": - raise ValueError(f"Position unit must be `m`, got {pos_unit!r}") + msg = f"Position unit must be `m`, got {pos_unit!r}" + raise ValueError(msg) # orientation orient = inp["orientation"]["value"] orient_typ = inp["orientation"]["type"] if orient_typ != "matrix": - raise ValueError(f"Orientation type must be `matrix`, got {orient_typ!r}") + msg = f"Orientation type must be `matrix`, got {orient_typ!r}" + raise ValueError(msg) kw["orientation"] = Rotation.from_matrix(orient) style = inp.get("style", None) @@ -144,25 +149,29 @@ def deserialize_recursive(inp, ids=None): kw["style"] = style if inp.get("parent", None) is not None: - warnings.warn(f"object parent ({inp['parent']}) ignored") + warnings.warn(f"object parent ({inp['parent']}) ignored", stacklevel=2) if issubclass(constr, BaseMagnet): kw["polarization"] = inp["polarization"]["value"] pol_unit = inp["polarization"]["unit"] if pol_unit != "T": - raise ValueError(f"Polarization unit must be `T`, got {pol_unit!r}") + msg = f"Polarization unit must be `T`, got {pol_unit!r}" + raise ValueError(msg) if issubclass(constr, magpy.magnet.Cuboid): kw["dimension"] = inp["dimension"]["value"] dim_unit = inp["dimension"]["unit"] if dim_unit != "m": - raise ValueError(f"Dimension unit must be `m`, got {dim_unit!r}") + msg = f"Dimension unit must be `m`, got {dim_unit!r}" + raise ValueError(msg) elif issubclass(constr, magpy.Sensor): kw["pixel"] = inp["pixel"]["value"] pix_unit = inp["pixel"]["unit"] if pix_unit != "m": - raise ValueError(f"Pixel unit must be `m`, got {pix_unit!r}") + msg = f"Pixel unit must be `m`, got {pix_unit!r}" + raise ValueError(msg) elif not is_coll: - raise TypeError("Only Collection, Cuboid, Sensor supported") + msg = "Only Collection, Cuboid, Sensor supported" + raise TypeError(msg) obj = constr(**kw) ids[inp["id"]] = obj if inp.get("susceptibility", None) is not None: @@ -183,9 +192,10 @@ def deserialize_setup(*objs, return_ids=False): res = [] ids = {} for obj in objs: + obj_list = [] if not isinstance(obj, (list, tuple)): - obj = [obj] - for sub_obj in obj: + obj_list = [obj] + for sub_obj in obj_list: r, i = deserialize_recursive(sub_obj) res.append(r) ids.update(i) diff --git a/tests/test_meshing.py b/tests/test_meshing.py index 39a4df6..8c5d307 100644 --- a/tests/test_meshing.py +++ b/tests/test_meshing.py @@ -25,7 +25,7 @@ def test_mesh_Cuboid(): position=[0.004, 0.005, 0.006], ) c.style.label = "Cuboid 1" - c.style.opacity = 0 # will be overriden by mesh kwargs lower + c.style.opacity = 0 # will be overridden by mesh kwargs lower c.rotate_from_angax(np.linspace(0, 76, N), "z", anchor=0, start=0) c.move(np.linspace((0, 0, 0), (0, 0, 0.0105), N), start=0) c.susceptibility = 3999 @@ -65,7 +65,7 @@ def test_slice_Cuboid(): position=[0.004, 0.005, 0.006], ) c.style.label = "Cuboid 1" - c.style.opacity = 0 # will be overriden by mesh kwargs lower + c.style.opacity = 0 # will be overridden by mesh kwargs lower c.rotate_from_angax(np.linspace(0, 76, N), "z", anchor=0, start=0) c.move(np.linspace((0, 0, 0), (0, 0, 0.0105), N), start=0) c.susceptibility = 3999 @@ -110,7 +110,7 @@ def test_slice_Cuboid2(): np.testing.assert_allclose(cm[0].position, [0.0, 0.0, -0.45]) np.testing.assert_allclose(cm[1].position, [0.0, 0.0, 0.05]) - with pytest.raises(ValueError): + with pytest.raises(ValueError, match="Shift must be between 0 and 1 (exclusive)"): slice_Cuboid(c, shift=0, axis="y") @@ -124,7 +124,7 @@ def test_mesh_Cylinder(): position=[1, 2, 1], ) c.style.label = "CylinderSegment 1" - c.style.opacity = 0 # will be overriden by mesh kwargs lower + c.style.opacity = 0 # will be overridden by mesh kwargs lower c.rotate_from_angax(np.linspace(0, 90, N), "z", anchor=0, start=0) c.rotate_from_angax(np.linspace(0, 90, N), "x", anchor=0, start=0) c.move(np.linspace((0, 0, 0), (0, 0, 1), N), start=0) From f7d96ffba1b70379ccf3b683c64ab525b8459a73 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 13 Apr 2025 21:57:43 +0200 Subject: [PATCH 14/51] typing --- src/magpylib_material_response/polyline.py | 56 +++++++++++++++++----- 1 file changed, 45 insertions(+), 11 deletions(-) diff --git a/src/magpylib_material_response/polyline.py b/src/magpylib_material_response/polyline.py index 833ff9f..a3a9300 100644 --- a/src/magpylib_material_response/polyline.py +++ b/src/magpylib_material_response/polyline.py @@ -4,7 +4,13 @@ from loguru import logger -def _find_circle_center_and_tangent_points(a, b, c, r, max_ratio=1): +def _find_circle_center_and_tangent_points( + a: np.ndarray, + b: np.ndarray, + c: np.ndarray, + r: float, + max_ratio: float = 1 +) -> tuple[np.ndarray, np.ndarray, np.ndarray] | None: """ Find the center of a circle and its tangent points with given vertices and radius. @@ -31,7 +37,8 @@ def _find_circle_center_and_tangent_points(a, b, c, r, max_ratio=1): dot_babc = np.dot(ba_unit, bc_unit) if dot_babc == -1: # angle is 180° - return None + msg = "Triangle is flat" + raise ValueError(msg) theta = np.arccos(dot_babc) / 2 tan_theta = np.tan(theta) d = r / tan_theta @@ -52,7 +59,7 @@ def _find_circle_center_and_tangent_points(a, b, c, r, max_ratio=1): return circle_center, ta, tb -def _interpolate_circle(center, start, end, n_points): +def _interpolate_circle(center: np.ndarray, start: np.ndarray, end: np.ndarray, n_points: int) -> list[np.ndarray]: """ Interpolate points along a circle arc between two points. @@ -83,7 +90,13 @@ def _interpolate_circle(center, start, end, n_points): ] -def _create_fillet_segment(a, b, c, r, N): +def _create_fillet_segment( + a: np.ndarray, + b: np.ndarray, + c: np.ndarray, + r: float, + N: int +) -> list[np.ndarray]: """ Create a fillet segment with a given radius between three vertices. @@ -101,14 +114,15 @@ def _create_fillet_segment(a, b, c, r, N): list List of NumPy arrays representing the fillet points. """ - res = _find_circle_center_and_tangent_points(a, b, c, r) - if res is None: + try: + res = _find_circle_center_and_tangent_points(a, b, c, r) + circle_center, ta, tb = res + except ValueError: return [b] - circle_center, ta, tb = res return _interpolate_circle(circle_center, ta, tb, N) -def create_polyline_fillet(polyline, max_radius, N): +def create_polyline_fillet(polyline: list | np.ndarray, max_radius: float, N: int) -> np.ndarray: """ Create a filleted polyline with specified maximum radius and number of points. @@ -157,7 +171,7 @@ def create_polyline_fillet(polyline, max_radius, N): return np.array(filleted_points) -def _bisectors(polyline): +def _bisectors(polyline: np.ndarray) -> np.ndarray: """ Calculate and normalize bisectors of the segments in a polyline. @@ -187,7 +201,12 @@ def _bisectors(polyline): return bisectors / np.linalg.norm(bisectors, axis=1)[:, np.newaxis] -def _line_plane_intersection(plane_point, plane_normal, line_points, line_directions): +def _line_plane_intersection( + plane_point: np.ndarray, + plane_normal: np.ndarray, + line_points: np.ndarray, + line_directions: np.ndarray +) -> np.ndarray: """ Find the intersection points of multiple lines and a plane. @@ -223,7 +242,22 @@ def _line_plane_intersection(plane_point, plane_normal, line_points, line_direct return line_points + np.expand_dims(t, axis=-1) * line_directions -def move_grid_along_polyline(verts, grid): +def move_grid_along_polyline(verts: np.ndarray, grid: np.ndarray) -> np.ndarray: + """ + Move a grid along a polyline, defined by the vertices. + + Parameters + ---------- + verts : np.ndarray, shape (n, d) + Array of polyline vertices, where n is the number of vertices and d is the dimension. + grid : np.ndarray, shape (m, d) + Array of grid points to move along the polyline, where m is the number of points. + + Returns + ------- + np.ndarray, shape (m, n, d) + Array of moved grid points along the polyline, with the same dimensions as the input grid. + """ """ Move a grid along a polyline, defined by the vertices. From 2610a9e204d48edfa1eb458b9aafb757561f37ce Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 13 Apr 2025 19:57:59 +0000 Subject: [PATCH 15/51] style: pre-commit fixes --- src/magpylib_material_response/polyline.py | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/src/magpylib_material_response/polyline.py b/src/magpylib_material_response/polyline.py index a3a9300..415adad 100644 --- a/src/magpylib_material_response/polyline.py +++ b/src/magpylib_material_response/polyline.py @@ -5,11 +5,7 @@ def _find_circle_center_and_tangent_points( - a: np.ndarray, - b: np.ndarray, - c: np.ndarray, - r: float, - max_ratio: float = 1 + a: np.ndarray, b: np.ndarray, c: np.ndarray, r: float, max_ratio: float = 1 ) -> tuple[np.ndarray, np.ndarray, np.ndarray] | None: """ Find the center of a circle and its tangent points with given vertices and radius. @@ -59,7 +55,9 @@ def _find_circle_center_and_tangent_points( return circle_center, ta, tb -def _interpolate_circle(center: np.ndarray, start: np.ndarray, end: np.ndarray, n_points: int) -> list[np.ndarray]: +def _interpolate_circle( + center: np.ndarray, start: np.ndarray, end: np.ndarray, n_points: int +) -> list[np.ndarray]: """ Interpolate points along a circle arc between two points. @@ -91,11 +89,7 @@ def _interpolate_circle(center: np.ndarray, start: np.ndarray, end: np.ndarray, def _create_fillet_segment( - a: np.ndarray, - b: np.ndarray, - c: np.ndarray, - r: float, - N: int + a: np.ndarray, b: np.ndarray, c: np.ndarray, r: float, N: int ) -> list[np.ndarray]: """ Create a fillet segment with a given radius between three vertices. @@ -122,7 +116,9 @@ def _create_fillet_segment( return _interpolate_circle(circle_center, ta, tb, N) -def create_polyline_fillet(polyline: list | np.ndarray, max_radius: float, N: int) -> np.ndarray: +def create_polyline_fillet( + polyline: list | np.ndarray, max_radius: float, N: int +) -> np.ndarray: """ Create a filleted polyline with specified maximum radius and number of points. @@ -205,7 +201,7 @@ def _line_plane_intersection( plane_point: np.ndarray, plane_normal: np.ndarray, line_points: np.ndarray, - line_directions: np.ndarray + line_directions: np.ndarray, ) -> np.ndarray: """ Find the intersection points of multiple lines and a plane. From c5c7d2edaadf73e5b2f44e10502cbbc33d3e0f67 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 17:22:28 +0200 Subject: [PATCH 16/51] remove mypy checks for now --- .pre-commit-config.yaml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index be19464..1d6583b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -48,14 +48,15 @@ repos: args: ["--fix", "--show-fixes"] - id: ruff-format - - repo: https://github.com/pre-commit/mirrors-mypy - rev: "v1.15.0" - hooks: - - id: mypy - files: src|tests - args: [] - additional_dependencies: - - pytest + # TODO: enforce type checking in new PR + #- repo: https://github.com/pre-commit/mirrors-mypy + # rev: "v1.15.0" + # hooks: + # - id: mypy + # files: src|tests + # args: [] + # additional_dependencies: + # - pytest - repo: https://github.com/codespell-project/codespell rev: "v2.4.1" From 3e85eab14f0d7fffab3881ba5cd9c961efbeb18c Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 17:40:19 +0200 Subject: [PATCH 17/51] =?UTF-8?q?avoid=20W005=20=E2=80=94=20Wheel=20contai?= =?UTF-8?q?ns=20common=20toplevel=20name=20in=20library?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/magpylib_material_response/__init__.py | 4 +++- src/magpylib_material_response/{data => _data}/__init__.py | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename src/magpylib_material_response/{data => _data}/__init__.py (100%) diff --git a/src/magpylib_material_response/__init__.py b/src/magpylib_material_response/__init__.py index b2cbf27..a510c3b 100644 --- a/src/magpylib_material_response/__init__.py +++ b/src/magpylib_material_response/__init__.py @@ -8,4 +8,6 @@ from ._version import version as __version__ -__all__ = ["__version__"] +import magpylib_material_response._data as data + +__all__ = ["__version__", "data"] diff --git a/src/magpylib_material_response/data/__init__.py b/src/magpylib_material_response/_data/__init__.py similarity index 100% rename from src/magpylib_material_response/data/__init__.py rename to src/magpylib_material_response/_data/__init__.py From 16b134b44de723378a959edc425e25b8ffadfbfc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 18 Apr 2025 15:40:32 +0000 Subject: [PATCH 18/51] style: pre-commit fixes --- src/magpylib_material_response/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/magpylib_material_response/__init__.py b/src/magpylib_material_response/__init__.py index a510c3b..9b476d8 100644 --- a/src/magpylib_material_response/__init__.py +++ b/src/magpylib_material_response/__init__.py @@ -6,8 +6,8 @@ from __future__ import annotations -from ._version import version as __version__ - import magpylib_material_response._data as data +from ._version import version as __version__ + __all__ = ["__version__", "data"] From 144d81df7552c46306963004644249dea0bcfc67 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 17:51:26 +0200 Subject: [PATCH 19/51] add hatch configs --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0ebf54e..16493d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,6 +66,19 @@ build.include = [ "src/magpylib_material_response/package_data/datasets/*.json", "src/magpylib_material_response/package_data/datasets/*.csv", ] +build.sources = ["src"] + +[tool.hatch.build.targets.wheel] +packages = ["src/magpylib_material_response"] + +[tool.hatch.build.targets.sdist] +include = [ + "src/magpylib_material_response", + "README.md", + "LICENSE", + "pyproject.toml", +] + [tool.hatch.envs.default] features = ["test"] From ce877847496bb42f3facccb293faf763ca1029ad Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 18:04:56 +0200 Subject: [PATCH 20/51] update --- pyproject.toml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 16493d4..40ac02e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,18 +68,6 @@ build.include = [ ] build.sources = ["src"] -[tool.hatch.build.targets.wheel] -packages = ["src/magpylib_material_response"] - -[tool.hatch.build.targets.sdist] -include = [ - "src/magpylib_material_response", - "README.md", - "LICENSE", - "pyproject.toml", -] - - [tool.hatch.envs.default] features = ["test"] scripts.test = "pytest {args}" From 9c78fd575f25b5fdfdedebb58a657a8bcf1b899a Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 18:38:53 +0200 Subject: [PATCH 21/51] add myst extensions --- docs/conf.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index c10523e..8c81c5f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,17 @@ } myst_enable_extensions = [ + "amsmath", "colon_fence", + "deflist", + "dollarmath", + "html_admonition", + "html_image", + "linkify", + "replacements", + "smartquotes", + "substitution", + "tasklist", ] intersphinx_mapping = { From 7cdf1f36f2e3b1cb1d7c69dc8886234d6ae701ff Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 18:55:39 +0200 Subject: [PATCH 22/51] update docs deps --- docs/conf.py | 3 +-- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 8c81c5f..d3cf5a2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,6 @@ version = release = importlib.metadata.version("magpylib_material_response") extensions = [ - "myst_parser", "myst_nb", "sphinx.ext.autodoc", "sphinx.ext.intersphinx", @@ -56,7 +55,7 @@ "dollarmath", "html_admonition", "html_image", - "linkify", + #"linkify", "replacements", "smartquotes", "substitution", diff --git a/pyproject.toml b/pyproject.toml index 40ac02e..3238892 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,12 +44,12 @@ dev = [ "pytest-cov >=3", ] docs = [ - "sphinx>=7.0", + "sphinx>=7.0,<8.0", "myst_nb", - "myst_parser>=0.13", "sphinx_copybutton", "sphinx_autodoc_typehints", "furo>=2023.08.17", + "pandas", ] [project.urls] From f8e6f761649cbe0b3027fa40226e860045492cb3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 18 Apr 2025 16:56:42 +0000 Subject: [PATCH 23/51] style: pre-commit fixes --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index d3cf5a2..a9f1d3b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,7 +55,7 @@ "dollarmath", "html_admonition", "html_image", - #"linkify", + # "linkify", "replacements", "smartquotes", "substitution", From 4c562f9ffe9ebcf80c7ac4c8fd61a75ec426c95c Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 19:08:32 +0200 Subject: [PATCH 24/51] ignore jupyter notebook files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 25cf9a4..82d9ad9 100644 --- a/.gitignore +++ b/.gitignore @@ -77,6 +77,7 @@ target/ # Jupyter Notebook .ipynb_checkpoints +*.ipynb # IPython profile_default/ From 1daa641410c7d049a4f192a01a2430c7f35390f4 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 19:12:51 +0200 Subject: [PATCH 25/51] fix get_dataset --- docs/examples/cuboids_demagnetization.md | 4 ++-- docs/examples/soft_magnets.md | 4 ++-- src/magpylib_material_response/__init__.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/examples/cuboids_demagnetization.md b/docs/examples/cuboids_demagnetization.md index 07a8f5a..d14ca0f 100644 --- a/docs/examples/cuboids_demagnetization.md +++ b/docs/examples/cuboids_demagnetization.md @@ -5,7 +5,7 @@ jupytext: extension: .md format_name: myst format_version: 0.13 - jupytext_version: 1.16.1 + jupytext_version: 1.17.0 kernelspec: display_name: Python 3 (ipykernel) language: python @@ -37,7 +37,7 @@ import numpy as np import pandas as pd import plotly.express as px from loguru import logger -from magpylib_material_response.data import get_dataset +from magpylib_material_response import get_dataset from magpylib_material_response.demag import apply_demag from magpylib_material_response.meshing import mesh_all diff --git a/docs/examples/soft_magnets.md b/docs/examples/soft_magnets.md index 61d3e8b..44da19c 100644 --- a/docs/examples/soft_magnets.md +++ b/docs/examples/soft_magnets.md @@ -5,7 +5,7 @@ jupytext: extension: .md format_name: myst format_version: 0.13 - jupytext_version: 1.16.1 + jupytext_version: 1.17.0 kernelspec: display_name: Python 3 (ipykernel) language: python @@ -121,7 +121,7 @@ def get_magpylib_dataframe(collection, sensors): return df -from magpylib_material_response.data import get_dataset +from magpylib_material_response import get_dataset sim_ANSYS = get_dataset("FEMdata_test_softmag") # FEM dataset has only Bx and Bz diff --git a/src/magpylib_material_response/__init__.py b/src/magpylib_material_response/__init__.py index 9b476d8..92b9be1 100644 --- a/src/magpylib_material_response/__init__.py +++ b/src/magpylib_material_response/__init__.py @@ -6,8 +6,8 @@ from __future__ import annotations -import magpylib_material_response._data as data +from magpylib_material_response._data import get_dataset from ._version import version as __version__ -__all__ = ["__version__", "data"] +__all__ = ["__version__", "get_dataset"] From 9b9f7d2490b17336c8cab0b20bc45a970c5ee4a5 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 19:38:45 +0200 Subject: [PATCH 26/51] fix linting --- pyproject.toml | 2 ++ src/magpylib_material_response/_data/__init__.py | 8 ++++---- src/magpylib_material_response/demag.py | 8 ++++++-- src/magpylib_material_response/meshing.py | 12 +++++++----- src/magpylib_material_response/meshing_utils.py | 3 --- src/magpylib_material_response/polyline.py | 15 --------------- tests/test_meshing.py | 2 +- 7 files changed, 20 insertions(+), 30 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3238892..8b0db35 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -166,4 +166,6 @@ messages_control.disable = [ "missing-module-docstring", "missing-function-docstring", "wrong-import-position", + "invalid-name", # TODO - review later + "protected-access", # TODO - review later ] diff --git a/src/magpylib_material_response/_data/__init__.py b/src/magpylib_material_response/_data/__init__.py index bd45b91..8bdac62 100644 --- a/src/magpylib_material_response/_data/__init__.py +++ b/src/magpylib_material_response/_data/__init__.py @@ -4,12 +4,12 @@ from __future__ import annotations +import importlib +import json +from pathlib import Path -def get_dataset(name): - import importlib - import json - from pathlib import Path +def get_dataset(name): name = Path(name).with_suffix("").with_suffix(".json") with ( importlib.resources.path( diff --git a/src/magpylib_material_response/demag.py b/src/magpylib_material_response/demag.py index af8585f..8d6c3e4 100644 --- a/src/magpylib_material_response/demag.py +++ b/src/magpylib_material_response/demag.py @@ -31,7 +31,7 @@ logger.configure(**config) -def get_susceptibilities(sources, susceptibility): +def get_susceptibilities(sources, susceptibility=None): """Return a list of length (len(sources)) with susceptibility values Priority is given at the source level, however if value is not found, it is searched up the parent tree, if available. Raises an error if no value is found when reached @@ -141,6 +141,8 @@ def demag_tensor( if pairs_matching and split != 1: msg = "Pairs matching does not support splitting" raise ValueError(msg) + mask_inds = None + getH_params = {} if max_dist != 0: mask_inds, getH_params, pos0, rot0 = filter_distance( src_list, max_dist, return_params=False, return_base_geo=True @@ -158,7 +160,9 @@ def demag_tensor( # point matching field and demag tensor with timelog(f"getH with unit_pol={unit_pol}", min_log_time=min_log_time): if pairs_matching or max_dist != 0: - polarization = np.repeat(pol_all, len(src_list), axis=0)[mask_inds] + polarization = np.repeat(pol_all, len(src_list), axis=0) + if mask_inds is not None: + polarization = polarization[mask_inds] H_unique = magpy.getH( "Cuboid", polarization=polarization, **getH_params ) diff --git a/src/magpylib_material_response/meshing.py b/src/magpylib_material_response/meshing.py index 266c0b7..e6e9eab 100644 --- a/src/magpylib_material_response/meshing.py +++ b/src/magpylib_material_response/meshing.py @@ -430,13 +430,15 @@ def mesh_all( for child, targ_elems in zip(supported_objs, target_elems_by_child): parent = child.parent kw = kwargs if parent is None else {} + child_meshed = None if isinstance(child, magpy.magnet.Cuboid): child_meshed = mesh_Cuboid(child, targ_elems, **kw) elif isinstance(child, magpy.magnet.Cylinder): child_meshed = mesh_Cylinder(child, targ_elems, **kw) - child.parent = None - if parent is not None: - parent.add(child_meshed) - else: - obj = child_meshed + if child_meshed is not None: + child.parent = None + if parent is not None: + parent.add(child_meshed) + else: + obj = child_meshed return obj diff --git a/src/magpylib_material_response/meshing_utils.py b/src/magpylib_material_response/meshing_utils.py index b96ad49..66119ca 100644 --- a/src/magpylib_material_response/meshing_utils.py +++ b/src/magpylib_material_response/meshing_utils.py @@ -176,9 +176,6 @@ def mask_inside_Sphere(obj, positions, tolerance=1e-14): def mask_inside_CylinderSegment(obj, positions, tolerance=1e-14): """Return mask of provided positions inside a CylinderSegment""" - def close(arg1, arg2): - return np.isclose(arg1, arg2, rtol=tolerance, atol=tolerance) - r1, r2, h, phi1, phi2 = obj.dimension.T r1 = abs(r1) r2 = abs(r2) diff --git a/src/magpylib_material_response/polyline.py b/src/magpylib_material_response/polyline.py index 415adad..e2ddd82 100644 --- a/src/magpylib_material_response/polyline.py +++ b/src/magpylib_material_response/polyline.py @@ -242,21 +242,6 @@ def move_grid_along_polyline(verts: np.ndarray, grid: np.ndarray) -> np.ndarray: """ Move a grid along a polyline, defined by the vertices. - Parameters - ---------- - verts : np.ndarray, shape (n, d) - Array of polyline vertices, where n is the number of vertices and d is the dimension. - grid : np.ndarray, shape (m, d) - Array of grid points to move along the polyline, where m is the number of points. - - Returns - ------- - np.ndarray, shape (m, n, d) - Array of moved grid points along the polyline, with the same dimensions as the input grid. - """ - """ - Move a grid along a polyline, defined by the vertices. - Parameters ---------- verts : np.ndarray, shape (n, d) diff --git a/tests/test_meshing.py b/tests/test_meshing.py index 8c5d307..17c37e1 100644 --- a/tests/test_meshing.py +++ b/tests/test_meshing.py @@ -110,7 +110,7 @@ def test_slice_Cuboid2(): np.testing.assert_allclose(cm[0].position, [0.0, 0.0, -0.45]) np.testing.assert_allclose(cm[1].position, [0.0, 0.0, 0.05]) - with pytest.raises(ValueError, match="Shift must be between 0 and 1 (exclusive)"): + with pytest.raises(ValueError, match=r"Shift must be between 0 and 1 *."): slice_Cuboid(c, shift=0, axis="y") From da1aad5042170eedd6e619bf4264e5e6e63b2e5f Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 19:54:30 +0200 Subject: [PATCH 27/51] test --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8b0db35..d5ecdf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,7 @@ build.include = [ "src/magpylib_material_response/package_data/datasets/*.json", "src/magpylib_material_response/package_data/datasets/*.csv", ] -build.sources = ["src"] +#build.sources = ["src"] [tool.hatch.envs.default] features = ["test"] From b6b431e61d9f7003f524c1768fbf28e56f3ce7b7 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 19:56:30 +0200 Subject: [PATCH 28/51] test --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d5ecdf0..4d37611 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,11 @@ build.include = [ "src/magpylib_material_response/package_data/datasets/*.json", "src/magpylib_material_response/package_data/datasets/*.csv", ] -#build.sources = ["src"] +build.sources = ["src"] + +[tool.hatch.build.targets.wheel] +include = ["src/**"] + [tool.hatch.envs.default] features = ["test"] From 80d441178e9f4989557c6c9c4c8262b099728ab2 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 20:02:02 +0200 Subject: [PATCH 29/51] test --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 4d37611..1f33036 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,6 +61,7 @@ Changelog = "https://github.com/magpylib/magpylib-material-response/releases" [tool.hatch] version.source = "vcs" +version.path = "src/magpylib_material_response/_version.py" build.hooks.vcs.version-file = "src/magpylib_material_response/_version.py" build.include = [ "src/magpylib_material_response/package_data/datasets/*.json", From 006df1e76b9b1859361f336e0460f72b6367fff2 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 20:03:45 +0200 Subject: [PATCH 30/51] test dummpy version.py --- pyproject.toml | 1 - src/magpylib_material_response/_version.py | 0 2 files changed, 1 deletion(-) create mode 100644 src/magpylib_material_response/_version.py diff --git a/pyproject.toml b/pyproject.toml index 1f33036..4d37611 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,6 @@ Changelog = "https://github.com/magpylib/magpylib-material-response/releases" [tool.hatch] version.source = "vcs" -version.path = "src/magpylib_material_response/_version.py" build.hooks.vcs.version-file = "src/magpylib_material_response/_version.py" build.include = [ "src/magpylib_material_response/package_data/datasets/*.json", diff --git a/src/magpylib_material_response/_version.py b/src/magpylib_material_response/_version.py new file mode 100644 index 0000000..e69de29 From 397ceb8bdff21f6f9b0bf4e9420d5a2b1a88cafc Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 20:05:40 +0200 Subject: [PATCH 31/51] remove version.py --- src/magpylib_material_response/_version.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/magpylib_material_response/_version.py diff --git a/src/magpylib_material_response/_version.py b/src/magpylib_material_response/_version.py deleted file mode 100644 index e69de29..0000000 From c85b7b1f457a8529fba6340d9a1fd053a9935bab Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 21:48:00 +0200 Subject: [PATCH 32/51] update --- pyproject.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4d37611..10c0d1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,12 +66,6 @@ build.include = [ "src/magpylib_material_response/package_data/datasets/*.json", "src/magpylib_material_response/package_data/datasets/*.csv", ] -build.sources = ["src"] - -[tool.hatch.build.targets.wheel] -include = ["src/**"] - - [tool.hatch.envs.default] features = ["test"] scripts.test = "pytest {args}" From 9233797d8ff01aa0fa2e484205f58e8c1bdc7e77 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 21:48:27 +0200 Subject: [PATCH 33/51] update --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 10c0d1f..3f005f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,6 +66,7 @@ build.include = [ "src/magpylib_material_response/package_data/datasets/*.json", "src/magpylib_material_response/package_data/datasets/*.csv", ] + [tool.hatch.envs.default] features = ["test"] scripts.test = "pytest {args}" From 918bd17362f6f04c0c8842981bbe3490d99284d8 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 21:50:11 +0200 Subject: [PATCH 34/51] update --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 898e6f2..3df8822 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: - uses: pre-commit/action@v3.0.1 with: extra_args: --hook-stage manual --all-files - - name: Run PyLint + - name: Run Pylint run: pipx run nox -s pylint -- --output-format=github checks: @@ -66,6 +66,6 @@ jobs: --durations=20 - name: Upload coverage report - uses: codecov/codecov-action@v5.4.0 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} From 5f9022acc6c8899ae5aec76cd736203ecc1e52d6 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 21:52:13 +0200 Subject: [PATCH 35/51] update --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index f04a617..39824f8 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,7 +27,7 @@ def lint(session: nox.Session) -> None: @nox.session def pylint(session: nox.Session) -> None: """ - Run PyLint. + Run Pylint. """ # This needs to be installed into the package environment, and is slower # than a pre-commit check From e4549a4d25e162a5575b85fe148e32cd99688c4f Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 22:14:40 +0200 Subject: [PATCH 36/51] update --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3f005f1..1ed223c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,6 +63,7 @@ Changelog = "https://github.com/magpylib/magpylib-material-response/releases" version.source = "vcs" build.hooks.vcs.version-file = "src/magpylib_material_response/_version.py" build.include = [ + "src/*", "src/magpylib_material_response/package_data/datasets/*.json", "src/magpylib_material_response/package_data/datasets/*.csv", ] From 0237e0483a35de35eb6c1f11727ab3d4316f1d92 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 22:22:16 +0200 Subject: [PATCH 37/51] test --- pyproject.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1ed223c..94dc527 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,11 +62,6 @@ Changelog = "https://github.com/magpylib/magpylib-material-response/releases" [tool.hatch] version.source = "vcs" build.hooks.vcs.version-file = "src/magpylib_material_response/_version.py" -build.include = [ - "src/*", - "src/magpylib_material_response/package_data/datasets/*.json", - "src/magpylib_material_response/package_data/datasets/*.csv", -] [tool.hatch.envs.default] features = ["test"] From 1725ec8f4fe3c2fde839fb0ad800de0647b1b923 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 22:30:07 +0200 Subject: [PATCH 38/51] add openblas scipy on pypy --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3df8822..bcb7aff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,10 @@ jobs: python-version: ${{ matrix.python-version }} allow-prereleases: true + - name: Install OpenBLAS + if: runner.os == 'Linux' + run: sudo apt-get update && sudo apt-get install -y libopenblas-dev + - name: Install package run: python -m pip install .[test] From f295f8be631c6f1172d87b3beb02b31a517fe25c Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 22:48:48 +0200 Subject: [PATCH 39/51] openblas only for mypy --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcb7aff..56a68ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: allow-prereleases: true - name: Install OpenBLAS - if: runner.os == 'Linux' + if: runner.os == 'Linux' && startsWith(matrix.python-version, 'pypy') run: sudo apt-get update && sudo apt-get install -y libopenblas-dev - name: Install package From 4d9c4f8cc05148987890f5d2eb443f00d2ea699c Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 23:00:53 +0200 Subject: [PATCH 40/51] Update CHANGELOG.md typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba1fbd0..c1a5cc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ - FE tests for anisotropic chi and negative chi - Improve internals - anisotropic susceptibilities are now allowed. -- Improve suszeptibility input possibilities: +- Improve susceptibility input possibilities: - give susceptibility to parent collection - if susceptiblity input is scalar, isotropic susceptibility is assumed, if it is a 3-vector it can be anisotropic From 196af468c6260c8fa33fa9da30437dc0b2b7b345 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 23:01:08 +0200 Subject: [PATCH 41/51] Update CHANGELOG.md typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1a5cc1..694be24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ - anisotropic susceptibilities are now allowed. - Improve susceptibility input possibilities: - give susceptibility to parent collection - - if susceptiblity input is scalar, isotropic susceptibility is assumed, if it + - if susceptibility input is scalar, isotropic susceptibility is assumed, if it is a 3-vector it can be anisotropic - Various tests included of interface and computation, isotropic and anisotropic tests confirm computaiton From b7c624061d07f3b4c4dbc3f40411440b8dcbe41e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 18 Apr 2025 21:01:17 +0000 Subject: [PATCH 42/51] style: pre-commit fixes --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 694be24..52224e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,8 @@ - anisotropic susceptibilities are now allowed. - Improve susceptibility input possibilities: - give susceptibility to parent collection - - if susceptibility input is scalar, isotropic susceptibility is assumed, if it - is a 3-vector it can be anisotropic + - if susceptibility input is scalar, isotropic susceptibility is assumed, if + it is a 3-vector it can be anisotropic - Various tests included of interface and computation, isotropic and anisotropic tests confirm computaiton From e9a75e7bdfc89184f408afcbf34e91684114bd74 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Fri, 18 Apr 2025 23:08:57 +0200 Subject: [PATCH 43/51] Update CHANGELOG.md typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52224e2..e82279a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,7 @@ - if susceptibility input is scalar, isotropic susceptibility is assumed, if it is a 3-vector it can be anisotropic - Various tests included of interface and computation, isotropic and anisotropic - tests confirm computaiton - + tests confirm computation # 0.2.1a0 - Fix null polarization for rotated objects From 0565ddb10de83831839a880a8681b34c35931807 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 18 Apr 2025 21:09:07 +0000 Subject: [PATCH 44/51] style: pre-commit fixes --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e82279a..1f5a4a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ it is a 3-vector it can be anisotropic - Various tests included of interface and computation, isotropic and anisotropic tests confirm computation + # 0.2.1a0 - Fix null polarization for rotated objects From 29e92d28f583485918a8de8077d258089f3748fd Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 20 Apr 2025 19:19:54 +0200 Subject: [PATCH 45/51] use uv installer for hatch --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 94dc527..07ef719 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,7 @@ version.source = "vcs" build.hooks.vcs.version-file = "src/magpylib_material_response/_version.py" [tool.hatch.envs.default] +installer = "uv" features = ["test"] scripts.test = "pytest {args}" From 20d859b6880a1d14255fa856257ca89ae806a000 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 20 Apr 2025 23:45:50 +0200 Subject: [PATCH 46/51] set min python version to 3.11 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56a68ea..563e55d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.13"] + python-version: ["3.11", "3.12", "3.13"] runs-on: [ubuntu-latest, windows-latest, macos-14] include: diff --git a/pyproject.toml b/pyproject.toml index 07ef719..837ab1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ ] description = "Python package extending the Magpylib library by providing magnetic field analysis for soft materials and demagnetization of hard magnets." readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.11" classifiers = [ "Development Status :: 1 - Planning", "Intended Audience :: Science/Research", @@ -20,8 +20,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", @@ -97,7 +95,7 @@ report.exclude_also = [ [tool.mypy] files = ["src", "tests"] -python_version = "3.9" +python_version = "3.11" warn_unused_configs = true strict = true enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"] @@ -151,7 +149,7 @@ isort.required-imports = ["from __future__ import annotations"] [tool.pylint] -py-version = "3.9" +py-version = "3.11" ignore-paths = [".*/_version.py"] reports.output-format = "colorized" similarities.ignore-imports = "yes" From c080a555791027e7ad72d9e62a31d245c587b976 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 20 Apr 2025 21:46:03 +0000 Subject: [PATCH 47/51] style: pre-commit fixes --- src/magpylib_material_response/demag.py | 4 ++-- src/magpylib_material_response/meshing.py | 12 +++++++----- src/magpylib_material_response/meshing_utils.py | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/magpylib_material_response/demag.py b/src/magpylib_material_response/demag.py index 8d6c3e4..007eb39 100644 --- a/src/magpylib_material_response/demag.py +++ b/src/magpylib_material_response/demag.py @@ -173,7 +173,7 @@ def demag_tensor( else: H_unit_pol = H_unique[unique_inv_inds] else: - for src, pol in zip(src_list, pol_all): + for src, pol in zip(src_list, pol_all, strict=False): src.polarization = pol if split > 1: src_list_split = np.array_split(src_list, split) @@ -439,7 +439,7 @@ def apply_demag( pol_new = np.reshape(pol_new, (n, 3), order="F") # pol_new *= .4*np.pi - for s, pol in zip(collection.sources_all, pol_new): + for s, pol in zip(collection.sources_all, pol_new, strict=False): s.polarization = s.orientation.inv().apply(pol) # ROTATION CHECK if not inplace: diff --git a/src/magpylib_material_response/meshing.py b/src/magpylib_material_response/meshing.py index e6e9eab..62f195f 100644 --- a/src/magpylib_material_response/meshing.py +++ b/src/magpylib_material_response/meshing.py @@ -80,7 +80,7 @@ def mesh_Cuboid(cuboid, target_elems, verbose=False, **kwargs): # inside position grid xs, ys, zs = ( np.linspace(d / 2 * (1 / n - 1), d / 2 * (1 - 1 / n), n) - for d, n in zip(dim0, nnn) + for d, n in zip(dim0, nnn, strict=False) ) grid = np.array([(x, y, z) for x in xs for y in ys for z in zs]) @@ -243,7 +243,7 @@ def mesh_thin_CylinderSegment_with_cuboids( rots = R.from_euler("z", phi_vec) cells = [] for z in np.linspace(-h / 2 + dh / 2, h / 2 - dh / 2, nh): - for pos, orient in zip(poss, rots): + for pos, orient in zip(poss, rots, strict=False): child = magpy.magnet.Cuboid( polarization=orient.inv().apply(pol0), dimension=dim, @@ -297,7 +297,7 @@ def slice_Cuboid(cuboid, shift=0.5, axis="z", **kwargs): dims_k = dim_k * (1 - shift), dim_k * (shift) shift_k = (dim_k - dims_k[0]) / 2, -(dim_k - dims_k[1]) / 2 cells = [] - for d, s in zip(dims_k, shift_k): + for d, s in zip(dims_k, shift_k, strict=False): dimension = dim0.copy() dimension[ind] = d position = np.array([0, 0, 0], dtype=float) @@ -337,7 +337,9 @@ def voxelize(obj, target_elems, strict_inside=True, **kwargs): grid_elems = [int((vol_ratio * target_elems) ** (1 / 3))] * 3 grid_dim = [containing_cube_edge] * 3 - slices = [slice(-d / 2, d / 2, N * 1j) for d, N in zip(grid_dim, grid_elems)] + slices = [ + slice(-d / 2, d / 2, N * 1j) for d, N in zip(grid_dim, grid_elems, strict=False) + ] grid = np.mgrid[slices].reshape(len(slices), -1).T grid = grid[mask_inside(obj, grid, tolerance=1e-14)] cube_cell_dim = np.array([containing_cube_edge / (grid_elems[0] - 1)] * 3) @@ -427,7 +429,7 @@ def mesh_all( f"\nSupported: {[s.__name__ for s in supported]}." ) raise TypeError(msg) - for child, targ_elems in zip(supported_objs, target_elems_by_child): + for child, targ_elems in zip(supported_objs, target_elems_by_child, strict=False): parent = child.parent kw = kwargs if parent is None else {} child_meshed = None diff --git a/src/magpylib_material_response/meshing_utils.py b/src/magpylib_material_response/meshing_utils.py index 66119ca..d9fb650 100644 --- a/src/magpylib_material_response/meshing_utils.py +++ b/src/magpylib_material_response/meshing_utils.py @@ -98,7 +98,7 @@ def cells_from_dimension( # closest triple with the target_elems constrain result = [funcs[0](k) for k in (a, b, c)] # first guess for fns in product(*[funcs] * 3): - res = [f(k) for f, k in zip(fns, (a, b, c))] + res = [f(k) for f, k in zip(fns, (a, b, c), strict=False)] epsilon_new = elems - np.prod(res) if ( np.abs(epsilon_new) <= epsilon From ab9a5550e2f4b12db5263f7ea128a24d520ee06a Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 20 Apr 2025 23:49:38 +0200 Subject: [PATCH 48/51] uv upgrade --- .github/workflows/ci.yml | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 563e55d..84d2e83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,6 @@ concurrency: cancel-in-progress: true env: - # Many color libraries just need this to be set to any value, but at least - # one distinguishes color depth, where "3" -> "256-bit color". FORCE_COLOR: 3 jobs: @@ -24,14 +22,12 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v5 - with: - python-version: "3.x" + - uses: astral-sh/setup-uv@v5 - uses: pre-commit/action@v3.0.1 with: extra_args: --hook-stage manual --all-files - name: Run Pylint - run: pipx run nox -s pylint -- --output-format=github + run: uvx nox -s pylint -- --output-format=github checks: name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} @@ -52,21 +48,21 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - allow-prereleases: true - - name: Install OpenBLAS if: runner.os == 'Linux' && startsWith(matrix.python-version, 'pypy') run: sudo apt-get update && sudo apt-get install -y libopenblas-dev - - name: Install package - run: python -m pip install .[test] + - name: Install uv and set the python version + uses: astral-sh/setup-uv@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies with uv + run: uv pip install .[test] - name: Test package run: >- - python -m pytest -ra --cov --cov-report=xml --cov-report=term + uv run pytest -ra --cov --cov-report=xml --cov-report=term --durations=20 - name: Upload coverage report From 3f58ffb99522cc671facb22def8278a59724bf2a Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 20 Apr 2025 23:54:35 +0200 Subject: [PATCH 49/51] pypy-3.11 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84d2e83..1e5ccf7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: runs-on: [ubuntu-latest, windows-latest, macos-14] include: - - python-version: "pypy-3.10" + - python-version: "pypy-3.11" runs-on: ubuntu-latest steps: From 212a8e6e4efac83b3672cf31ccfa7aea294a46f4 Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Sun, 20 Apr 2025 23:55:47 +0200 Subject: [PATCH 50/51] linting --- src/magpylib_material_response/demag.py | 2 +- src/magpylib_material_response/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/magpylib_material_response/demag.py b/src/magpylib_material_response/demag.py index 007eb39..bffcdd3 100644 --- a/src/magpylib_material_response/demag.py +++ b/src/magpylib_material_response/demag.py @@ -364,7 +364,7 @@ def apply_demag( others_list = [ src for src in srcs - if not isinstance(src, (BaseMagnet, BaseCurrent, magpy.Sensor)) + if not isinstance(src, BaseMagnet | BaseCurrent | magpy.Sensor) ] if others_list: msg = ( diff --git a/src/magpylib_material_response/utils.py b/src/magpylib_material_response/utils.py index d2adc07..7160e6e 100644 --- a/src/magpylib_material_response/utils.py +++ b/src/magpylib_material_response/utils.py @@ -193,7 +193,7 @@ def deserialize_setup(*objs, return_ids=False): ids = {} for obj in objs: obj_list = [] - if not isinstance(obj, (list, tuple)): + if not isinstance(obj, list | tuple): obj_list = [obj] for sub_obj in obj_list: r, i = deserialize_recursive(sub_obj) From 03bcd7f29aa8548c875e80935e2cfd9c4d7e0a1c Mon Sep 17 00:00:00 2001 From: Alexandre Boisselet Date: Mon, 21 Apr 2025 00:13:56 +0200 Subject: [PATCH 51/51] use macos-latest --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e5ccf7..add9840 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: fail-fast: false matrix: python-version: ["3.11", "3.12", "3.13"] - runs-on: [ubuntu-latest, windows-latest, macos-14] + runs-on: [ubuntu-latest, windows-latest, macos-latest] include: - python-version: "pypy-3.11"