diff --git a/.cruft.json b/.cruft.json
new file mode 100644
index 0000000..46ee67b
--- /dev/null
+++ b/.cruft.json
@@ -0,0 +1,26 @@
+{
+ "template": "https://github.com/FAIRmat-NFDI/cookiecutter-nomad-plugin",
+ "commit": "c40010ce548126347c5fd7b36c2a5031bcd0b34b",
+ "checkout": null,
+ "context": {
+ "cookiecutter": {
+ "full_name": "Jose M. Pizarro",
+ "email": "jose.pizarro@physik.hu-berlin.de",
+ "github_username": "JosePizarro3",
+ "plugin_name": "nomad-parser-wannier90",
+ "module_name": "nomad_parser_wannier90",
+ "short_description": "NOMAD parser plugin for Wannier90 input/output files.",
+ "version": "0.0.1",
+ "license": "Apache Software License 2.0",
+ "include_schema_package": true,
+ "include_normalizer": false,
+ "include_parser": true,
+ "include_app": false,
+ "_copy_without_render": [
+ "*.html"
+ ],
+ "_template": "https://github.com/FAIRmat-NFDI/cookiecutter-nomad-plugin"
+ }
+ },
+ "directory": null
+}
diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml
new file mode 100644
index 0000000..f80ffed
--- /dev/null
+++ b/.github/workflows/actions.yml
@@ -0,0 +1,74 @@
+name: install-and-test
+on: [push]
+
+# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
+# `contents` is for permission to the contents of the repository.
+# `pull-requests` is for permission to pull request
+permissions:
+ contents: write
+ checks: write
+ pull-requests: write
+
+jobs:
+ install-and-test:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up Python 3.9
+ uses: actions/setup-python@v5
+ with:
+ python-version: 3.9
+ - name: Install dependencies
+ run: |
+ pip install --upgrade pip
+ pip install uv
+ uv pip install -e '.[dev]' --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple --system
+ uv pip install coveralls --system
+ - name: mypy
+ run: |
+ python -m mypy --ignore-missing-imports --follow-imports=silent --no-strict-optional src/nomad_parser_wannier90/schema_packages src/nomad_parser_wannier90/parsers tests
+ - name: Build coverage file
+ run: |
+ pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=src tests | tee pytest-coverage.txt
+ - name: Pytest coverage comment
+ uses: MishaKav/pytest-coverage-comment@main
+ with:
+ pytest-coverage-path: pytest-coverage.txt
+ junitxml-path: pytest.xml
+ - name: Submit to coveralls
+ continue-on-error: true
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ coveralls --service=github
+ build-and-install:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up Python 3.9
+ uses: actions/setup-python@v5
+ with:
+ python-version: 3.9
+ - name: Build the package
+ run: |
+ pip install uv
+ uv pip install --upgrade pip --system
+ uv pip install build --system
+ python -m build --sdist
+ - name: Install the package
+ run: |
+ uv pip install dist/*.tar.gz --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple --system
+ ruff-linting:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: chartboost/ruff-action@v1
+ with:
+ args: "check ."
+ ruff-formatting:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: chartboost/ruff-action@v1
+ with:
+ args: "format . --check --verbose"
diff --git a/.github/workflows/mkdocs-deploy.yml b/.github/workflows/mkdocs-deploy.yml
new file mode 100644
index 0000000..c46ff23
--- /dev/null
+++ b/.github/workflows/mkdocs-deploy.yml
@@ -0,0 +1,24 @@
+name: Deploy MkDocs Site
+
+on:
+ push:
+ branches:
+ - main # Triggers deployment on push to the main branch
+
+permissions:
+ contents: write
+
+jobs:
+ deploy:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v4
+
+ - name: Deploy docs
+ uses: mhausenblas/mkdocs-deploy-gh-pages@master
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ CONFIG_FILE: mkdocs.yml
+ REQUIREMENTS: requirements_docs.txt
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
new file mode 100644
index 0000000..d4e4675
--- /dev/null
+++ b/.github/workflows/publish.yml
@@ -0,0 +1,43 @@
+# This workflow will upload a Python Package using Twine when a release is created
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
+
+# This workflow uses actions that are not certified by GitHub.
+# They are provided by a third-party and are governed by
+# separate terms of service, privacy policy, and support
+# documentation.
+
+name: Build and Publish Python Package
+
+on:
+ release:
+ types: [published]
+
+permissions:
+ contents: read
+
+jobs:
+ deploy:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Set up Python 3.9
+ uses: actions/setup-python@v3
+ with:
+ python-version: '3.9'
+
+ - name: Install dependencies
+ run: |
+ pip install --upgrade pip
+ pip install build
+
+ - name: Build package
+ run: python -m build
+
+ - name: Publish package to PyPI
+ uses: pypa/gh-action-pypi-publish@release/v1
+ with:
+ user: __token__
+ password: ${{ secrets.PYPI_API_TOKEN }}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b1619d4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,130 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+pip-wheel-metadata/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# 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.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+db.sqlite3-journal
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# IPython
+profile_default/
+ipython_config.py
+
+# pyenv
+.python-version
+
+# pipenv
+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
+# However, in case of collaboration, if having platform-specific dependencies or dependencies
+# having no cross-platform support, pipenv may install dependencies that don't work, or not
+# install all needed dependencies.
+#Pipfile.lock
+
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow
+__pypackages__/
+
+# Celery stuff
+celerybeat-schedule
+celerybeat.pid
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+.pyenv
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..04985fc
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,17 @@
+{
+ "editor.rulers": [
+ 90
+ ],
+ "editor.renderWhitespace": "all",
+ "editor.tabSize": 4,
+ "files.trimTrailingWhitespace": true,
+ "[python]": {
+ "editor.formatOnSave": true,
+ "editor.defaultFormatter": "charliermarsh.ruff"
+ },
+ "python.testing.pytestArgs": [
+ "tests"
+ ],
+ "python.testing.unittestEnabled": false,
+ "python.testing.pytestEnabled": true
+}
diff --git a/LICENSE b/LICENSE
index 261eeb9..427417b 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,3 +1,4 @@
+
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
@@ -178,7 +179,7 @@
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
+ boilerplate notice, with the fields enclosed by brackets "{}"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
@@ -186,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright [yyyy] [name of copyright owner]
+ Copyright {yyyy} {name of copyright owner}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..b5ccc2d
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+recursive-include * nomad_plugin.yaml
diff --git a/README.md b/README.md
index fcf513e..33075f2 100644
--- a/README.md
+++ b/README.md
@@ -1,84 +1,93 @@
-# nomad-plugin-template
-A template repository for creating a repository with a NOMAD plugin package.
+# nomad-nomad-parser-wannier90
+NOMAD parser plugin for Wannier90 input/output files.
-## Getting started
+----
-1. Click on the `Use this template` button and create a new plugin repository. The form will ask you to fill out the name for the new plugin repository.
+This `nomad`_ plugin was generated with `Cookiecutter`_ along with `@nomad`_'s `cookiecutter-nomad-plugin`_ template.
-2. In the newly created repository, start a new Github Codespace and generate the plugin structure.
-Run the following command to create a new NOMAD plugin project using cookiecutter-nomad-plugin:
+### Install
+
+You should create a virtual environment. You will need the `nomad-lab` package (and `pytest`).
+We recommend using Python 3.9.
```sh
-cruft create https://github.com/FAIRmat-NFDI/cookiecutter-nomad-plugin
+python3 -m venv .pyenv
+source .pyenv/bin/activate
+pip install --upgrade pip
+pip install -e '.[dev]' --index-url https://gitlab.mpcdf.mpg.de/api/v4/projects/2187/packages/pypi/simple
```
-Cookiecutter prompts you for information regarding your plugin:
-
-```no-highlight
-full_name [John Doe]: Citizen Kane
-email [john.doe@physik.hu-berlin.de]: citizen@kane.de
-github_username [foo]: kane
-plugin_name [foobar]: awesome-tools
-module_name [awesome_tools]: awesome_tools
-short_description [NOMAD example template]: An awesome plugin for NOMAD
-version [0.1.0]:
-Select license:
-1 - MIT
-2 - BSD-3
-3 - GNU GPL v3.0+
-Choose from 1, 2, 3 [1]: 2
-include_schema_package [y/n] (y): y
-include_normalizer [y/n] (y): n
-include_parser [y/n] (y): y
-include_app [y/n] (y): n
-
-INFO:post_gen_project:Initializing python for package - src
-..
-INFO:post_gen_project:Remove temporary folder: licenses
-INFO:post_gen_project:Remove temporary folder: macros
-INFO:post_gen_project:Remove temporary folder: py_sources
+**Note!**
+Until we have an official pypi NOMAD release with the plugins functionality. Make
+sure to include NOMAD's internal package registry (e.g. via `--index-url`).
+
+### Testing
+
+You can run automated tests with `pytest`:
+
+```sh
+pytest -svx tests
```
+### Run linting
+
+```sh
+ruff check .
+```
+### Run auto-formatting
+This is entirely optional. To add this as a check in github actions pipeline, uncomment the `ruff-formatting` step in `./github/workflows/actions.yaml`.
-There you go - you just created a minimal NOMAD plugin:
-
-> [!NOTE]
-> In the above prompt, we pressed `y` for schema_package and parser, this creates a python package with two plugin entry points: one for parser and one for schema_package.
-
-```no-highlight
-nomad-awesome-tools/
-├── LICENSE
-├── README.rst
-├── pyproject.toml
-├── move_template_files.sh
-├── src
-│ └── nomad_awesome_tools
-│ ├── __init__.py
-| ├── schema_packages
-│ | ├── __init__.py
-│ | └── plugin.py
-| └── parsers
-│ ├── __init__.py
-│ └── plugin.py
-|
-├── tests
-│ ├── conftest.py
-│ └── test_awesome.py
-└── MANIFEST.in
+```sh
+ruff format .
```
+### Developing a NOMAD plugin
+
+Follow the [guide](https://nomad-lab.eu/prod/v1/staging/docs/howto/plugins/plugins.html) on how to develop NOMAD plugins.
+
+### Build the python package
-> [!NOTE]
-> The project `nomad-awesome-tools` is created in a new directory, we have included a helper script to move all the files to the parent level of the repository.
+The `pyproject.toml` file contains everything that is necessary to turn the project
+into a pip installable python package. Run the python build tool to create a package distribution:
+
+```
+pip install build
+python -m build --sdist
+```
+You can install the package with pip:
+
+```
+pip install dist/nomad-nomad-parser-wannier90-0.0.1
+```
+
+Read more about python packages, `pyproject.toml`, and how to upload packages to PyPI
+on the [PyPI documentation](https://packaging.python.org/en/latest/tutorials/packaging-projects/).
+
+### Documentation on Github pages
+
+To deploy documentation on Github pages, make sure to [enable GitHub pages via the repo settings](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-from-a-branch).
+
+To view the documentation locally, install the documentation related packages using:
```sh
-sh CHANGE_TO_PLUGIN_NAME/move_template_files.sh
+pip install -r requirements_docs.txt
```
-> [!IMPORTANT]
-> The `CHANGE_TO_PLUGIN_NAME` should be substituted by the name of the plugin you've created. In the above case it'll be `sh nomad-awesome-tools/move_template_files.sh`.
+Run the documentation server:
+```sh
+mkdocs serve
+```
+
+### Template update
+
+We use cruft to update the project based on template changes. A `cruft-update.yml` is included in Github workflows to automatically check for updates and create pull requests to apply updates. Follow the [instructions](https://github.blog/changelog/2022-05-03-github-actions-prevent-github-actions-from-creating-and-approving-pull-requests/) on how to enable Github Actions to create pull requests.
+
+To run the check for updates locally, follow the instructions on [`cruft` website](https://cruft.github.io/cruft/#updating-a-project).
+
+### License
+Distributed under the terms of the `Apache Software License 2.0`_ license, "nomad-nomad-parser-wannier90" is free and open source software
diff --git a/docs/assets/.gitignore b/docs/assets/.gitignore
new file mode 100644
index 0000000..3881e38
--- /dev/null
+++ b/docs/assets/.gitignore
@@ -0,0 +1 @@
+nomad-oasis*.zip
\ No newline at end of file
diff --git a/docs/assets/favicon.png b/docs/assets/favicon.png
new file mode 100644
index 0000000..f84c78f
Binary files /dev/null and b/docs/assets/favicon.png differ
diff --git a/docs/assets/nomad-plugin-logo.png b/docs/assets/nomad-plugin-logo.png
new file mode 100644
index 0000000..149856c
Binary files /dev/null and b/docs/assets/nomad-plugin-logo.png differ
diff --git a/docs/explanation/explanation.md b/docs/explanation/explanation.md
new file mode 100644
index 0000000..a2035f6
--- /dev/null
+++ b/docs/explanation/explanation.md
@@ -0,0 +1,4 @@
+# Explanation
+
+!!! note "Attention"
+ TODO
diff --git a/docs/how_to/contribute_to_the_documentation.md b/docs/how_to/contribute_to_the_documentation.md
new file mode 100644
index 0000000..173dce1
--- /dev/null
+++ b/docs/how_to/contribute_to_the_documentation.md
@@ -0,0 +1,4 @@
+# Contribute to the documentation
+
+!!! note "Attention"
+ TODO
diff --git a/docs/how_to/contribute_to_this_plugin.md b/docs/how_to/contribute_to_this_plugin.md
new file mode 100644
index 0000000..48d405a
--- /dev/null
+++ b/docs/how_to/contribute_to_this_plugin.md
@@ -0,0 +1,5 @@
+# Contribute to This Plugin
+
+!!! note "Attention"
+ TODO
+
diff --git a/docs/how_to/install_this_plugin.md b/docs/how_to/install_this_plugin.md
new file mode 100644
index 0000000..2b45e0f
--- /dev/null
+++ b/docs/how_to/install_this_plugin.md
@@ -0,0 +1,4 @@
+# Install This Plugin
+
+!!! note "Attention"
+ TODO
diff --git a/docs/how_to/use_this_plugin.md b/docs/how_to/use_this_plugin.md
new file mode 100644
index 0000000..ad93966
--- /dev/null
+++ b/docs/how_to/use_this_plugin.md
@@ -0,0 +1,10 @@
+# How to Use This Plugin
+
+This plugin can be used in a NOMAD Oasis installation.
+
+## Add This Plugin to Your NOMAD installation
+
+Read the [NOMAD plugin documentation](https://nomad-lab.eu/prod/v1/staging/docs/plugins/plugins.html#add-a-plugin-to-your-nomad) for all details on how to deploy the plugin on your NOMAD instance.
+
+!!! note "Attention"
+ TODO
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 0000000..2a2461b
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,48 @@
+# Welcome to the `nomad-parser-wannier90` documentation
+
+NOMAD parser plugin for Wannier90 input/output files.
+
+## Introduction
+
+!!! note "Attention"
+ TODO
+
+
+
+
+### Tutorial
+
+TODO
+
+- [Tutorial](tutorial/tutorial.md)
+
+
+
+
+### How-to guides
+
+How-to guides provide step-by-step instructions for a wide range of tasks, with the overarching topics:
+
+- [Install this plugin](how_to/install_this_plugin.md)
+- [Use this plugin](how_to/use_this_plugin.md)
+- [Contribute to this plugin](how_to/contribute_to_this_plugin.md)
+- [Contribute to the documentation](how_to/contribute_to_the_documentation.md)
+
+
+
+
+
+### Explanation
+
+The explanation [section](explanation/explanation.md) provides background knowledge on this plugin.
+
+
+
+
+### Reference
+
+The reference [section](reference/references.md) includes all CLI commands and arguments, all configuration options,
+the possible schema annotations and their arguments, and a glossary of used terms.
+
+
+
diff --git a/docs/reference/references.md b/docs/reference/references.md
new file mode 100644
index 0000000..c199e70
--- /dev/null
+++ b/docs/reference/references.md
@@ -0,0 +1,4 @@
+# References
+
+!!! note "Attention"
+ TODO
diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css
new file mode 100644
index 0000000..321e087
--- /dev/null
+++ b/docs/stylesheets/extra.css
@@ -0,0 +1,69 @@
+
+.md-header__button.md-logo :where(img,svg) {
+ width: 100%;
+ height: 30px;
+}
+
+.md-header, .md-header__inner {
+ background-color: #fff;
+ color: #2A4CDF;
+}
+
+.md-header[data-md-state=shadow] {
+ box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
+ transition: box-shadow 200ms linear;
+}
+
+.md-header__inner {
+ height: 80px;
+}
+
+.md-header__topic {
+ font-size: 24px;
+}
+
+.md-footer {
+ background-color: #2A4CDF;
+}
+
+.md-search__form:hover {
+ background-color: rgba(0,0,0,.13);
+}
+
+.md-typeset h1 {
+ color: black;
+ font-weight: 700;
+}
+
+.youtube {
+ position: relative;
+ width: 100%;
+ height: 0;
+ padding-bottom: 56.25%;
+}
+
+.youtube iframe {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+}
+
+.home-grid {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-column-gap: 24px;
+ row-gap: 24px;
+}
+
+.home-grid div {
+ border-radius: 4px;
+ padding: 24px;
+ background-color: #f3e9d9;
+}
+
+.home-grid h3 {
+ margin-top: 0;
+ font-weight: 700;
+}
\ No newline at end of file
diff --git a/docs/theme/partials/header.html b/docs/theme/partials/header.html
new file mode 100644
index 0000000..5b091f3
--- /dev/null
+++ b/docs/theme/partials/header.html
@@ -0,0 +1,86 @@
+{#-
+ This file was automatically generated - do not edit
+-#}
+{% set class = "md-header" %}
+{% if "navigation.tabs.sticky" in features %}
+ {% set class = class ~ " md-header--lifted" %}
+{% endif %}
+
+
+ {% if "navigation.tabs.sticky" in features %}
+ {% if "navigation.tabs" in features %}
+ {% include "partials/tabs.html" %}
+ {% endif %}
+ {% endif %}
+
\ No newline at end of file
diff --git a/docs/tutorial/tutorial.md b/docs/tutorial/tutorial.md
new file mode 100644
index 0000000..a24d72a
--- /dev/null
+++ b/docs/tutorial/tutorial.md
@@ -0,0 +1,4 @@
+# Tutorial
+
+!!! note "Attention"
+ TODO
diff --git a/mkdocs.yml b/mkdocs.yml
new file mode 100644
index 0000000..7ce93b2
--- /dev/null
+++ b/mkdocs.yml
@@ -0,0 +1,60 @@
+site_name: nomad-parser-wannier90
+site_description: NOMAD parser plugin for Wannier90 input/output files.
+site_author: Jose M. Pizarro
+
+repo_url: https://github.com/FAIRmat-NFDI/nomad-parser-wannier90
+edit_uri: ""
+
+nav:
+ - Home: index.md
+ - Tutorial: tutorial/tutorial.md
+ - How-to guides:
+ - Install this Plugin: how_to/install_this_plugin.md
+ - Use this Plugin: how_to/use_this_plugin.md
+ - Contribute to this plugin: how_to/contribute_to_this_plugin.md
+ - Contribute to the documentation: how_to/contribute_to_the_documentation.md
+ - Explanation: explanation/explanation.md
+ - Reference: reference/references.md
+plugins:
+ - search
+theme:
+ name: material
+ palette:
+ primary: "#2A4CDF"
+ accent: "#008A67"
+ font:
+ text: "Titillium Web"
+ logo: assets/nomad-plugin-logo.png
+ favicon: assets/favicon.png
+ features:
+ - navigation.instant
+ custom_dir: docs/theme
+ icon:
+ repo: fontawesome/brands/github
+markdown_extensions:
+ - attr_list
+ - md_in_html
+ - admonition
+ - pymdownx.details
+ - pymdownx.highlight:
+ anchor_linenums: true
+ - pymdownx.inlinehilite
+ - pymdownx.snippets
+ - pymdownx.superfences
+ - toc:
+ permalink: True
+ - pymdownx.arithmatex:
+ generic: true
+ - attr_list
+ - mkdocs-click
+ - pymdownx.extra
+extra:
+ generator: false
+ homepage: https://nomad-lab.eu
+use_directory_urls: false
+extra_css:
+ - stylesheets/extra.css
+extra_javascript:
+ - javascript.js
+ - https://polyfill.io/v3/polyfill.min.js?features=es6
+ - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
diff --git a/move_template_files.sh b/move_template_files.sh
new file mode 100644
index 0000000..f193801
--- /dev/null
+++ b/move_template_files.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+rsync -avh nomad-nomad-parser-wannier90/ .
+rm -rfv nomad-nomad-parser-wannier90
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..305413e
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,137 @@
+[build-system]
+requires = ["setuptools>=61.0.0", "setuptools-scm>=8.0"]
+build-backend = "setuptools.build_meta"
+
+[project]
+classifiers = [
+ "Intended Audience :: Developers",
+ "Operating System :: OS Independent",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 3.9",
+ "License :: OSI Approved :: Apache Software License",
+]
+name = "nomad-parser-wannier90"
+description = "A NOMAD parser plugin for Wannier90 input/output files."
+dynamic = ["version"]
+readme = "README.md"
+requires-python = ">=3.9"
+authors = [
+ { name = "Jose M. Pizarro", email = "jose.pizarro@physik.hu-berlin.de" },
+]
+maintainers = [
+ { name = "Jose M. Pizarro", email = "jose.pizarro@physik.hu-berlin.de" },
+]
+license = { file = "LICENSE" }
+dependencies = [
+ "nomad-lab>=1.3.0",
+ "nomad-schema-plugin-simulation-workflow@git+https://github.com/nomad-coe/nomad-schema-plugin-simulation-workflow.git@develop",
+ "nomad-schema-plugin-run@git+https://github.com/nomad-coe/nomad-schema-plugin-run.git@develop",
+ "nomad-simulations@git+https://github.com/nomad-coe/nomad-simulations.git@develop",
+]
+
+[project.urls]
+"Homepage" = "https://github.com/FAIRmat-NFDI/nomad-parser-wannier90"
+"Bug Tracker" = "https://github.com/FAIRmat-NFDI/nomad-parser-wannier90/issues"
+"Documentation" = "https://FAIRmat-NFDI.github.io/nomad-parser-wannier90/"
+
+[project.optional-dependencies]
+[project.optional-dependencies]
+dev = [
+ "mypy==1.0.1",
+ "ruff",
+ "pytest",
+ "pytest-timeout",
+ "pytest-cov",
+ "structlog"
+]
+
+[tool.ruff]
+# Exclude a variety of commonly ignored directories.
+exclude = [
+ ".bzr",
+ ".direnv",
+ ".eggs",
+ ".git",
+ ".git-rewrite",
+ ".hg",
+ ".mypy_cache",
+ ".nox",
+ ".pants.d",
+ ".pytype",
+ ".ruff_cache",
+ ".svn",
+ ".tox",
+ ".venv",
+ "__pypackages__",
+ "_build",
+ "buck-out",
+ "build",
+ "dist",
+ "node_modules",
+ "venv",
+]
+
+# Same as Black.
+line-length = 88
+indent-width = 4
+
+
+[tool.ruff.lint]
+select = [
+ "E", # pycodestyle
+ "W", # pycodestyle
+ "PL", # pylint
+]
+
+ignore = [
+ "E501", # Line too long ({width} > {limit} characters)
+ "E701", # Multiple statements on one line (colon)
+ "E731", # Do not assign a lambda expression, use a def
+ "E402", # Module level import not at top of file
+ "PLR0911", # Too many return statements
+ "PLR0912", # Too many branches
+ "PLR0913", # Too many arguments in function definition
+ "PLR0915", # Too many statements
+ "PLR2004", # Magic value used instead of constant
+ "PLW0603", # Using the global statement
+ "PLW2901", # redefined-loop-name
+ "PLR1714", # consider-using-in
+ "PLR5501", # else-if-used
+]
+
+fixable = ["ALL"]
+
+# Allow unused variables when underscore-prefixed.
+dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
+
+# this is entirely optional, you can remove this if you wish to
+[tool.ruff.format]
+# use single quotes for strings.
+quote-style = "single"
+
+# indent with spaces, rather than tabs.
+indent-style = "space"
+
+# Like Black, respect magic trailing commas.
+skip-magic-trailing-comma = false
+
+# Like Black, automatically detect the appropriate line ending.
+line-ending = "auto"
+
+[tool.setuptools]
+package-dir = { "" = "src" }
+
+[tool.setuptools.packages.find]
+where = ["src"]
+
+[tool.setuptools_scm]
+write_to = "src/nomad_parser_wannier90/_version.py"
+
+[project.entry-points.'nomad.plugin']
+nomad_parser_wannier90_plugin = "nomad_parser_wannier90.parsers:nomad_parser_wannier90_plugin"
+nomad_parser_wannier90_schema = "nomad_parser_wannier90.schema_packages:nomad_parser_wannier90_schema"
+
+
+[tool.cruft]
+# Avoid updating workflow files, this leads to permissions issues
+skip = [".github/*"]
diff --git a/requirements_docs.txt b/requirements_docs.txt
new file mode 100644
index 0000000..bacf1ed
--- /dev/null
+++ b/requirements_docs.txt
@@ -0,0 +1,4 @@
+mkdocs
+mkdocs-material==8.1.1
+pymdown-extensions
+mkdocs-click
diff --git a/src/nomad_parser_wannier90/__init__.py b/src/nomad_parser_wannier90/__init__.py
new file mode 100644
index 0000000..ce2e284
--- /dev/null
+++ b/src/nomad_parser_wannier90/__init__.py
@@ -0,0 +1,4 @@
+try:
+ from ._version import version as __version__
+except ImportError:
+ __version__ = ''
diff --git a/src/nomad_parser_wannier90/parsers/__init__.py b/src/nomad_parser_wannier90/parsers/__init__.py
new file mode 100644
index 0000000..2487247
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/__init__.py
@@ -0,0 +1,19 @@
+from nomad.config.models.plugins import ParserEntryPoint
+from pydantic import Field
+
+
+class Wannier90ParserEntryPoint(ParserEntryPoint):
+ parameter: int = Field(0, description='Custom configuration parameter')
+
+ def load(self):
+ from nomad_parser_wannier90.parsers.parser import Wannier90Parser
+
+ return Wannier90Parser(**self.dict())
+
+
+nomad_parser_wannier90_plugin = Wannier90ParserEntryPoint(
+ name='Wannier90ParserEntryPoint',
+ description='Entry point for the Wannier90 parser.',
+ level=1,
+ mainfile_contents_re=r'\|\s*WANNIER90\s*\|',
+)
diff --git a/src/nomad_parser_wannier90/parsers/band_parser.py b/src/nomad_parser_wannier90/parsers/band_parser.py
new file mode 100644
index 0000000..0ca6128
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/band_parser.py
@@ -0,0 +1,106 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD.
+# See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import numpy as np
+from typing import Optional, List
+from structlog.stdlib import BoundLogger
+
+from nomad.parsing.file_parser import DataTextParser
+
+from nomad_simulations.schema.model_method import Wannier
+from nomad_simulations.schema.model_system import ModelSystem
+from nomad_simulations.schema.numerical_settings import (
+ KSpace,
+ KLinePath as KLinePathSettings,
+)
+from nomad_simulations.schema.properties import ElectronicBandStructure
+from nomad_simulations.schema.variables import KLinePath
+
+
+class Wannier90BandParser:
+ def __init__(self, band_file: str = ''):
+ if not band_file:
+ raise ValueError('Band structure `*band.dat` file not found.')
+ self.band_parser = DataTextParser(mainfile=band_file)
+
+ def parse_k_line_path_settings(
+ self,
+ reciprocal_lattice_vectors: Optional[np.ndarray],
+ k_line_path: KLinePathSettings,
+ logger: BoundLogger,
+ ) -> None:
+ """
+ Parse the `KLinePath` settings from the `*band.dat` file using the `KLinePath.resolve_points` method. The
+ information is then stored under `KLinePath.points`, and will be used to extract the `ElectronicBandStructure` variables
+ points.
+
+ Args:
+ reciprocal_lattice_vectors (Optional[np.ndarray]): The reciprocal lattice vectors.
+ k_line_path (KLinePathSettings): The `KLinePath` settings section
+ logger (BoundLogger): The logger to log messages.
+ """
+ try:
+ kpath_norms = self.band_parser.data.transpose()[0]
+ k_line_path.resolve_points(
+ points_norm=kpath_norms,
+ reciprocal_lattice_vectors=reciprocal_lattice_vectors,
+ logger=logger,
+ )
+ except Exception:
+ logger.info('Error parsing `KLinePath` settings.')
+
+ def parse_band_structure(
+ self,
+ wannier_method: Optional[Wannier],
+ k_space: Optional[KSpace],
+ model_systems: List[ModelSystem],
+ logger: BoundLogger,
+ ) -> Optional[ElectronicBandStructure]:
+ if wannier_method is None:
+ logger.warning('Could not parse the `Wannier` method.')
+ return None, None
+ n_orbitals = wannier_method.n_orbitals
+ if k_space is None:
+ logger.info('`KSpace` settings not found.')
+ return None
+
+ # Resolving `reciprocal_lattice_vectors` from `KSpace` method
+ rlv = k_space.resolve_reciprocal_lattice_vectors(model_systems, logger)
+ # And parsing the points from the `*band.dat` file
+ k_line_path = k_space.k_line_path
+ self.parse_k_line_path_settings(
+ reciprocal_lattice_vectors=rlv,
+ k_line_path=k_line_path,
+ logger=logger,
+ )
+ if k_line_path.points is None:
+ logger.warning('Could not resolve the `KLinePath` points.')
+ return None
+
+ # Parse the band structure data
+ band_structure = ElectronicBandStructure(n_bands=n_orbitals)
+ if self.band_parser.data is None:
+ logger.warning('Could not parse the band structure data.')
+ return None
+ k_line_path_variables = KLinePath()
+ k_line_path_variables.points = k_line_path # ! Wait for @amirgolpv to check
+ band_structure.variables = [k_line_path_variables]
+ data = self.band_parser.data.transpose()[1:].transpose()
+ band_structure.value = data
+ return band_structure
diff --git a/src/nomad_parser_wannier90/parsers/dos_parser.py b/src/nomad_parser_wannier90/parsers/dos_parser.py
new file mode 100644
index 0000000..95bd795
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/dos_parser.py
@@ -0,0 +1,49 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD.
+# See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import numpy as np
+from typing import Optional
+
+from nomad.units import ureg
+from nomad.parsing.file_parser import DataTextParser
+
+from nomad_simulations.schema_packages.properties import ElectronicDensityOfStates
+from nomad_simulations.schema_packages.variables import Energy2
+
+
+class Wannier90DosParser:
+ def __init__(self, dos_file: str = ''):
+ if not dos_file:
+ raise ValueError('DOS `*dos.dat` file not found.')
+ self.dos_parser = DataTextParser(mainfile=dos_file)
+
+ def parse_dos(self) -> Optional[ElectronicDensityOfStates]:
+ """
+ Parse the `ElectronicDensityOfStates` section from the `*dos.dat` file.
+
+ Returns:
+ (Optional[ElectronicDensityOfStates]): The parsed `ElectronicDensityOfStates` property.
+ """
+ # TODO add spin polarized case
+ data = np.transpose(self.dos_parser.data)
+ sec_dos = ElectronicDensityOfStates()
+ energies = Energy2(points=data[0] * ureg.eV)
+ sec_dos.variables.append(energies)
+ sec_dos.value = data[1] / ureg.eV
+ return sec_dos
diff --git a/src/nomad_parser_wannier90/parsers/hr_parser.py b/src/nomad_parser_wannier90/parsers/hr_parser.py
new file mode 100644
index 0000000..a9a222c
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/hr_parser.py
@@ -0,0 +1,112 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD.
+# See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import numpy as np
+from typing import Optional, Tuple
+from structlog.stdlib import BoundLogger
+
+from nomad.units import ureg
+from nomad.parsing.file_parser import TextParser, Quantity
+
+from nomad_simulations.schema_packages.model_method import Wannier
+from nomad_simulations.schema_packages.properties import HoppingMatrix, CrystalFieldSplitting
+from nomad_simulations.schema_packages.variables import WignerSeitz
+
+
+class HrParser(TextParser):
+ def init_quantities(self):
+ self._quantities = [
+ Quantity('degeneracy_factors', r'\s*written on[\s\w]*:\d*:\d*\s*([\d\s]+)'),
+ Quantity('hoppings', rf'\s*([-\d\s.]+)', repeats=False),
+ ]
+
+
+class Wannier90HrParser:
+ def __init__(self, hr_file: str = ''):
+ if not hr_file:
+ raise ValueError('Hopping `*hr.dat` file not found.')
+ self.hr_parser = HrParser(mainfile=hr_file)
+
+ def parse_hoppings(
+ self, wannier_method: Optional[Wannier], logger: BoundLogger
+ ) -> Tuple[Optional[HoppingMatrix], Optional[CrystalFieldSplitting]]:
+ """
+ Parse the `HoppingMatrix` and `CrystalFieldSplitting` sections from the `*hr.dat` file.
+
+ Args:
+ wannier_method (Wannier): The `Wannier` method section which contains the number of orbitals information.
+ logger (BoundLogger): The logger to log messages.
+
+ Returns:
+ (Tuple[Optional[HoppingMatrix], Optional[CrystalFieldSplitting]]): The parsed `HoppingMatrix` and
+ `CrystalFieldSplitting` properties].
+ """
+ if wannier_method is None:
+ logger.warning('Could not parse the `Wannier` method.')
+ return None, None
+ n_orbitals = wannier_method.n_orbitals
+
+ # Parsing the `HoppingMatrix` and `CrystalFieldSplitting` sections
+ crystal_field_splitting = CrystalFieldSplitting(
+ n_orbitals=n_orbitals, variables=[]
+ )
+ hopping_matrix = HoppingMatrix(n_orbitals=n_orbitals)
+
+ # Parse the `degeneracy_factors` and `value` of the `HoppingMatrix`
+ deg_factors = self.hr_parser.get('degeneracy_factors', [])
+ if deg_factors is None or len(deg_factors) == 0:
+ logger.warning('Could not parse the degeneracy factors.')
+ return None, None
+
+ # Define the variables `WignerSeitz`
+ n_wigner_seitz_points = deg_factors[1]
+ wigner_seitz = WignerSeitz(
+ n_points=n_wigner_seitz_points
+ ) # delete crystal field Wigner-Seitz point from `HoppingMatrix` variable
+ hopping_matrix.variables.append(wigner_seitz)
+
+ # deg_factors and full_hoppings contain both the `CrystalFieldSplitting` and `HoppingMatrix` values
+ degeneracy_factors = deg_factors[2:]
+ full_hoppings = self.hr_parser.get('hoppings', [])
+ try:
+ hops = np.reshape(
+ full_hoppings,
+ (n_wigner_seitz_points, n_orbitals, n_orbitals, 7),
+ )
+
+ # storing the crystal field splitting values
+ ws0 = int((n_wigner_seitz_points - 1) / 2)
+ crystal_fields = [
+ hops[ws0, i, i, 5] for i in range(n_orbitals)
+ ] # only real elements
+ crystal_field_splitting.value = crystal_fields * ureg('eV')
+
+ # delete repeated points for different orbitals
+ ws_points = hops[:, :, :, :3]
+ ws_points = np.unique(ws_points.reshape(-1, 3), axis=0)
+ wigner_seitz.points = ws_points
+
+ # passing hoppings
+ hoppings = hops[:, :, :, -2] + 1j * hops[:, :, :, -1]
+ hopping_matrix.value = hoppings * ureg('eV')
+ hopping_matrix.degeneracy_factors = degeneracy_factors
+ except Exception:
+ logger.warning('Could not parse the hopping matrix values.')
+ return None, None
+ return hopping_matrix, crystal_field_splitting
diff --git a/src/nomad_parser_wannier90/parsers/parser.py b/src/nomad_parser_wannier90/parsers/parser.py
new file mode 100644
index 0000000..5a87325
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/parser.py
@@ -0,0 +1,1060 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD.
+# See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import os
+import logging
+import numpy as np
+from typing import List, Optional
+from structlog.stdlib import BoundLogger
+
+from nomad.config import config
+from nomad.units import ureg
+from nomad.datamodel import EntryArchive
+from nomad.parsing.file_parser import TextParser, Quantity, DataTextParser
+from nomad.parsing.parser import MatchingParser
+from simulationworkflowschema import SinglePoint
+from runschema.run import Run, Program
+from runschema.calculation import (
+ Calculation,
+ Dos,
+ DosValues,
+ BandStructure,
+ BandEnergies,
+ Energy,
+ HoppingMatrix,
+)
+from runschema.method import Method, AtomParameters, KMesh, Wannier, TB
+from runschema.system import System, Atoms, AtomsGroup
+
+# New schema
+from nomad_simulations.schema_packages.general import Simulation, Program as BaseProgram
+from nomad_simulations.schema_packages.model_system import ModelSystem, AtomicCell
+from nomad_simulations.schema_packages.atoms_state import (
+ AtomsState,
+ CoreHole,
+)
+from nomad_simulations.schema_packages.model_method import (
+ ModelMethod,
+ Wannier as ModelWannier,
+)
+from nomad_simulations.schema_packages.numerical_settings import (
+ KMesh as ModelKMesh,
+ KSpace,
+ KLinePath,
+)
+
+from nomad_simulations.schema_packages.outputs import Outputs
+from nomad_simulations.schema_packages.variables import Temperature
+from nomad_simulations.schema_packages.properties import ElectronicBandGap
+
+from nomad_parser_wannier90.parsers.utils import get_files
+from nomad_parser_wannier90.parsers.win_parser import WInParser, Wannier90WInParser
+from nomad_parser_wannier90.parsers.hr_parser import HrParser, Wannier90HrParser
+from nomad_parser_wannier90.parsers.dos_parser import Wannier90DosParser
+from nomad_parser_wannier90.parsers.band_parser import Wannier90BandParser
+
+re_n = r'[\n\r]'
+
+configuration = config.get_plugin_entry_point(
+ 'nomad_parser_wannier90.parsers:nomad_parser_wannier90_plugin'
+)
+
+
+def test(template, atom_indices: list[int], **kwargs):
+ simulation = Simulation()
+ template.m_add_sub_section(EntryArchive.data, simulation)
+ simulation.program = Program(name='VASP', version='4.6.35')
+ model_system = ModelSystem()
+ simulation.model_system.append(model_system)
+ atomic_cell = AtomicCell(
+ lattice_vectors=[
+ [5.76372622e-10, 0.0, 0.0],
+ [0.0, 5.76372622e-10, 0.0],
+ [0.0, 0.0, 4.0755698899999997e-10],
+ ],
+ positions=[
+ [2.88186311e-10, 0.0, 2.0377849449999999e-10],
+ [0.0, 2.88186311e-10, 2.0377849449999999e-10],
+ [0.0, 0.0, 0.0],
+ [2.88186311e-10, 2.88186311e-10, 0.0],
+ ],
+ periodic_boundary_conditions=[True, True, True],
+ )
+ model_system.cell.append(atomic_cell)
+ atoms_state = [
+ AtomsState(chemical_symbol='Br'),
+ AtomsState(chemical_symbol='K'),
+ AtomsState(chemical_symbol='Si'),
+ AtomsState(chemical_symbol='Si'),
+ ]
+ atomic_cell.atoms_state = atoms_state
+ elements = [atom.chemical_symbol for atom in model_system.cell[0].atoms_state]
+
+ # set atom_parameters and core_holes
+ list_terms = {'j_quantum_number', 'mj_quantum_number'}
+ for active_index, atom_index in enumerate(atom_indices):
+ atom_state = atomic_cell.atoms_state[atom_index]
+ core_hole = CoreHole()
+ for k, v in kwargs.items():
+ try:
+ if k not in list_terms and isinstance(
+ v, list
+ ): # this supports lists of several quantities for multiple core-holes
+ if len(v):
+ setattr(core_hole, k, v[active_index])
+ else:
+ setattr(core_hole, k, [])
+ else:
+ setattr(core_hole, k, v)
+ except AttributeError:
+ pass
+ atom_state.core_hole = core_hole
+ model_system2 = ModelSystem(
+ type='active_atom',
+ branch_label=elements[atom_index],
+ atom_indices=[atom_index],
+ )
+ model_system.model_system.append(model_system2)
+ return template
+
+
+class WOutParser(TextParser):
+ def __init__(self):
+ super().__init__(None)
+
+ def init_quantities(self):
+ kmesh_quantities = [
+ Quantity('n_points', r'Total points[\s=]*(\d+)', dtype=int, repeats=False),
+ Quantity(
+ 'grid', r'Grid size *\= *(\d+) *x *(\d+) *x *(\d+)', repeats=False
+ ),
+ Quantity('k_points', r'\|[\s\d]*(-*\d.[^\|]+)', repeats=True, dtype=float),
+ ]
+
+ klinepath_quantities = [
+ Quantity(
+ 'high_symm_name',
+ r'\| *From\: *([a-zA-Z]+) [\d\.\-\s]*To\: *([a-zA-Z]+)',
+ repeats=True,
+ ),
+ Quantity(
+ 'high_symm_value',
+ r'\| *From\: *[a-zA-Z]* *([\d\.\-\s]+)To\: *[a-zA-Z]* *([\d\.\-\s]+)\|',
+ repeats=True,
+ ),
+ ]
+
+ disentangle_quantities = [
+ Quantity(
+ 'outer',
+ r'\|\s*Outer:\s*([-\d.]+)\s*\w*\s*([-\d.]+)\s*\((?P<__unit>\w+)\)',
+ dtype=float,
+ repeats=False,
+ ),
+ Quantity(
+ 'inner',
+ r'\|\s*Inner:\s*([-\d.]+)\s*\w*\s*([-\d.]+)\s*\((?P<__unit>\w+)\)',
+ dtype=float,
+ repeats=False,
+ ),
+ ]
+
+ structure_quantities = [
+ Quantity('labels', r'\|\s*([A-Z][a-z]*)', repeats=True),
+ Quantity(
+ 'positions',
+ rf'\|\s*([\-\d\.]+)\s*([\-\d\.]+)\s*([\-\d\.]+)',
+ repeats=True,
+ dtype=float,
+ ),
+ ]
+
+ self._quantities = [
+ # Program quantities
+ Quantity(
+ Program.version, r'\s*\|\s*Release\:\s*([\d\.]+)\s*', repeats=False
+ ),
+ # System quantities
+ Quantity('lattice_vectors', r'\s*a_\d\s*([\d\-\s\.]+)', repeats=True),
+ Quantity(
+ 'reciprocal_lattice_vectors', r'\s*b_\d\s*([\d\-\s\.]+)', repeats=True
+ ),
+ Quantity(
+ 'structure',
+ rf'(\s*Fractional Coordinate[\s\S]+?)(?:{re_n}\s*(PROJECTIONS|K-POINT GRID))',
+ repeats=False,
+ sub_parser=TextParser(quantities=structure_quantities),
+ ),
+ # Method quantities
+ Quantity(
+ 'k_mesh',
+ rf'\s*(K-POINT GRID[\s\S]+?)(?:-\s*MAIN)',
+ repeats=False,
+ sub_parser=TextParser(quantities=kmesh_quantities),
+ ),
+ Quantity(
+ 'k_line_path',
+ rf'\s*(K-space path sections\:[\s\S]+?)(?:\*-------)',
+ repeats=False,
+ sub_parser=TextParser(quantities=klinepath_quantities),
+ ),
+ Quantity(
+ 'Nwannier',
+ r'\|\s*Number of Wannier Functions\s*\:\s*(\d+)',
+ repeats=False,
+ ),
+ Quantity(
+ 'Nband',
+ r'\|\s*Number of input Bloch states\s*\:\s*(\d+)',
+ repeats=False,
+ ),
+ Quantity(
+ 'Niter', r'\|\s*Total number of iterations\s*\:\s*(\d+)', repeats=False
+ ),
+ Quantity(
+ 'conv_tol',
+ r'\|\s*Convergence tolerence\s*\:\s*([\d.eE-]+)',
+ repeats=False,
+ ),
+ Quantity(
+ 'energy_windows',
+ rf'(\|\s*Energy\s*Windows\s*\|[\s\S]+?)(?:Number of target bands to extract:)',
+ repeats=False,
+ sub_parser=TextParser(quantities=disentangle_quantities),
+ ),
+ # Band related quantities
+ Quantity(
+ 'n_k_segments',
+ r'\|\s*Number of K-path sections\s*\:\s*(\d+)',
+ repeats=False,
+ ),
+ Quantity(
+ 'div_first_k_segment',
+ r'\|\s*Divisions along first K-path section\s*\:\s*(\d+)',
+ repeats=False,
+ ),
+ Quantity(
+ 'band_segments_points',
+ r'\|\s*From\:\s*\w+([\d\s\-\.]+)To\:\s*\w+([\d\s\-\.]+)',
+ repeats=True,
+ ),
+ ]
+
+
+class Wannier90ParserData(MatchingParser):
+ level = 1
+
+ def __init__(self, *args, **kwargs):
+ self.wout_parser = WOutParser()
+
+ self._dft_codes = [
+ 'quantumespresso',
+ 'abinit',
+ 'vasp',
+ 'siesta',
+ 'wien2k',
+ 'fleur',
+ 'openmx',
+ 'gpaw',
+ ]
+
+ self._input_projection_mapping = {
+ 'Nwannier': 'n_orbitals',
+ 'Nband': 'n_bloch_bands',
+ # "conv_tol": "convergence_tolerance_max_localization",
+ }
+
+ def parse_atoms_state(self, labels: List[str]) -> List[AtomsState]:
+ """
+ Parse the `AtomsState` from the labels by storing them as the `chemical_symbols`.
+
+ Args:
+ labels (List[str]): List of chemical element labels.
+
+ Returns:
+ (List[AtomsState]): List of `AtomsState` sections.
+ """
+ atoms_state = []
+ for label in labels:
+ atoms_state.append(AtomsState(chemical_symbol=label))
+ return atoms_state
+
+ def parse_atomic_cell(self) -> AtomicCell:
+ """
+ Parse the `AtomicCell` from the `lattice_vectors` and `structure` regex quantities in `WOutParser`.
+
+ Returns:
+ (AtomicCell): The parsed `AtomicCell` section.
+ """
+ atomic_cell = AtomicCell()
+
+ # Parsing `lattice_vectors`
+ if self.wout_parser.get('lattice_vectors', []):
+ lattice_vectors = np.vstack(
+ self.wout_parser.get('lattice_vectors', [])[-3:]
+ )
+ atomic_cell.lattice_vectors = lattice_vectors * ureg.angstrom
+ # and `periodic_boundary_conditions`
+ pbc = (
+ [True, True, True] if lattice_vectors is not None else [False, False, False]
+ )
+ atomic_cell.periodic_boundary_conditions = pbc
+
+ # Parsing `atoms_state` from `structure`
+ labels = self.wout_parser.get('structure', {}).get('labels')
+ if labels is not None:
+ atoms_state = self.parse_atoms_state(labels)
+ atomic_cell.atoms_state = atoms_state
+ # and parsing `positions`
+ if self.wout_parser.get('structure', {}).get('positions') is not None:
+ atomic_cell.positions = (
+ self.wout_parser.get('structure', {}).get('positions') * ureg.angstrom
+ )
+ return atomic_cell
+
+ def parse_model_system(self, logger: BoundLogger) -> Optional[ModelSystem]:
+ """
+ Parse the `ModelSystem` with the `AtomicCell` information. If the `structure` is not recognized in `WOutParser`, then return `None`.
+
+ Returns:
+ (Optional[ModelSystem]): The parsed `ModelSystem` section.
+ """
+ model_system = ModelSystem()
+ model_system.is_representative = True
+
+ # If the `structure` is not parsed, return None
+ if self.wout_parser.get('structure') is None:
+ logger.error('Error parsing the structure from .wout')
+ return None
+
+ atomic_cell = self.parse_atomic_cell()
+ model_system.cell.append(atomic_cell)
+ return model_system
+
+ def parse_wannier(self) -> ModelWannier:
+ """
+ Parse the `ModelWannier` section from the `WOutParser` quantities.
+
+ Returns:
+ (ModelWannier): The parsed `ModelWannier` section.
+ """
+ model_wannier = ModelWannier()
+ for key in self._input_projection_mapping.keys():
+ setattr(
+ model_wannier,
+ self._input_projection_mapping[key],
+ self.wout_parser.get(key),
+ )
+ if self.wout_parser.get('Niter'):
+ model_wannier.is_maximally_localized = self.wout_parser.get('Niter', 0) > 1
+ model_wannier.energy_window_outer = self.wout_parser.get(
+ 'energy_windows', {}
+ ).get('outer')
+ model_wannier.energy_window_inner = self.wout_parser.get(
+ 'energy_windows', {}
+ ).get('inner')
+ return model_wannier
+
+ def parse_k_mesh(self) -> Optional[ModelKMesh]:
+ """
+ Parse the `ModelKMesh` section from the `WOutParser` quantities.
+
+ Returns:
+ (Optional[ModelKMesh]): The parsed `ModelKMesh` section.
+ """
+ sec_k_mesh = None
+ k_mesh = self.wout_parser.get('k_mesh')
+ if k_mesh is None:
+ return sec_k_mesh
+ sec_k_mesh = ModelKMesh()
+ sec_k_mesh.n_points = k_mesh.get('n_points')
+ sec_k_mesh.grid = k_mesh.get('grid', [])
+ if k_mesh.get('k_points') is not None:
+ sec_k_mesh.points = np.complex128(k_mesh.k_points[::2])
+ return sec_k_mesh
+
+ def parse_k_line_path(self) -> Optional[KLinePath]:
+ """
+ Parse the `KLinePath` section from the `WOutParser` quantities.
+
+ Returns:
+ (Optional[KLinePath]): The parsed `KLinePath` section.
+ """
+ sec_k_line_path = None
+ k_line_path = self.wout_parser.get('k_line_path')
+ if k_line_path is None:
+ return sec_k_line_path
+
+ # Store the list of high symmetry names and values for the section `KLinePath`
+ high_symm_names = k_line_path.get('high_symm_name')
+ high_symm_values = [
+ np.reshape(val, (2, 3)) for val in k_line_path.get('high_symm_value')
+ ]
+ # Start with the first element of the first pair
+ names = [high_symm_names[0][0]]
+ values = [high_symm_values[0][0]]
+ for i, pair in enumerate(high_symm_names):
+ # Add the second element if it's not the last one in the list
+ if pair[1] != names[-1]:
+ names.append(pair[1])
+ values.append(high_symm_values[i][1])
+ sec_k_line_path = KLinePath(
+ high_symmetry_path_names=names, high_symmetry_path_values=values
+ ) # `points` are extracted in the `Wannier90BandParser` using the `KLinePath.resolve_points` method
+ return sec_k_line_path
+
+ def parse_model_method(self, simulation: Simulation) -> ModelMethod:
+ """
+ Parse the `ModelWannier(ModelMethod)` section from the `WOutParser` quantities.
+
+ Returns:
+ (ModelMethod): The parsed `ModelWannier(ModelMethod)` section.
+ """
+ # `ModelMethod` section
+ model_wannier = self.parse_wannier()
+
+ # `NumericalSettings` sections
+ k_mesh = self.parse_k_mesh()
+ if k_mesh is not None:
+ k_space = KSpace(k_mesh=[k_mesh])
+ model_wannier.numerical_settings.append(k_space)
+
+ k_line_path = self.parse_k_line_path()
+ if k_line_path is not None:
+ if k_space is None:
+ k_space = KSpace()
+ model_wannier.numerical_settings.append(k_space)
+ k_space.k_line_path = k_line_path
+
+ return model_wannier
+
+ def parse_outputs(self, simulation: Simulation, logger: BoundLogger) -> Outputs:
+ outputs = Outputs()
+ if simulation.model_system is not None:
+ outputs.model_system_ref = simulation.model_system[-1]
+
+ # TESTING ##############################################
+ # Scalar band gap
+ bg = ElectronicBandGap(type='direct')
+ bg.variables = []
+ bg.value = 1.0 * ureg.eV
+ outputs.electronic_band_gaps.append(bg)
+ # T-dependent band gap
+ bg = ElectronicBandGap(type='direct')
+ bg.variables = [Temperature(points=[1, 2, 3] * ureg.kelvin)]
+ value = [1.0, 1.1, 1.2] * ureg.eV
+ bg.value = value
+ outputs.electronic_band_gaps.append(bg)
+ # TESTING ##############################################
+
+ # Parse hoppings
+ hr_files = get_files('*hr.dat', self.filepath, self.mainfile)
+ if len(hr_files) > 1:
+ logger.info('Multiple `*hr.dat` files found.')
+ # contains information about `n_orbitals`
+ wannier_method = simulation.m_xpath('model_method[-1]', dict=False)
+ for hr_file in hr_files:
+ hopping_matrix, crystal_field_splitting = Wannier90HrParser(
+ hr_file
+ ).parse_hoppings(wannier_method=wannier_method, logger=logger)
+ if hopping_matrix is not None:
+ outputs.hopping_matrices.append(hopping_matrix)
+ if crystal_field_splitting is not None:
+ outputs.crystal_field_splittings.append(crystal_field_splitting)
+
+ # Parse DOS
+ dos_files = get_files('*dos.dat', self.filepath, self.mainfile)
+ if len(dos_files) > 1:
+ logger.info('Multiple `*dos.dat` files found.')
+ for dos_file in dos_files:
+ electronic_dos = Wannier90DosParser(dos_file).parse_dos()
+ if electronic_dos is not None:
+ outputs.electronic_dos.append(electronic_dos)
+
+ # Parse BandStructure
+ band_files = get_files('*band.dat', self.filepath, self.mainfile)
+ # contains information about `k_line_path`
+ k_space = simulation.m_xpath(
+ 'model_method[-1].numerical_settings[-1]', dict=False
+ )
+ # getting the list of `ModelSystem` to extract the reciprocal_lattice_vectors
+ model_systems = simulation.m_xpath('model_system', dict=False)
+ if len(band_files) > 1:
+ logger.info('Multiple `*band.dat` files found.')
+ for band_file in band_files:
+ band_structure = Wannier90BandParser(band_file).parse_band_structure(
+ k_space=k_space,
+ wannier_method=wannier_method,
+ model_systems=model_systems,
+ logger=logger,
+ )
+ if band_structure is not None:
+ outputs.electronic_band_structures.append(band_structure)
+
+ return outputs
+
+ def init_parser(self, logger: BoundLogger):
+ self.wout_parser.mainfile = self.filepath
+ self.wout_parser.logger = logger
+
+ def parse(self, filepath: str, archive: EntryArchive, logger: BoundLogger):
+ self.filepath = filepath
+ self.archive = archive
+ self.maindir = os.path.dirname(self.filepath)
+ self.mainfile = os.path.basename(self.filepath)
+
+ self.init_parser(logger)
+
+ # Adding Simulation to data
+ simulation = Simulation()
+ simulation.program = BaseProgram(
+ name='Wannier90',
+ version=self.wout_parser.get('version', ''),
+ link='https://wannier.org/',
+ )
+ archive.m_add_sub_section(EntryArchive.data, simulation)
+
+ # `ModelSystem` parsing
+ model_system = self.parse_model_system(logger)
+ if model_system is not None:
+ simulation.model_system.append(model_system)
+
+ # Child `ModelSystem` and `OrbitalsState` parsing
+ win_files = get_files('*.win', self.filepath, self.mainfile)
+ if len(win_files) > 1:
+ logger.warning(
+ 'Multiple `*.win` files found. We will parse the first one.'
+ )
+ if win_files is not None:
+ child_model_systems = Wannier90WInParser(
+ win_files[0]
+ ).parse_child_model_systems(model_system, logger)
+ model_system.model_system = child_model_systems
+
+ # `ModelWannier(ModelMethod)` parsing
+ model_method = self.parse_model_method(simulation)
+ simulation.model_method.append(model_method)
+
+ # `Outputs` parsing
+ outputs = self.parse_outputs(simulation, logger)
+ simulation.outputs.append(outputs)
+
+
+class Wannier90Parser:
+ level = 1
+
+ def __init__(self, *args, **kwargs):
+ self.wout_parser = WOutParser()
+ self.win_parser = WInParser()
+ self.band_dat_parser = DataTextParser()
+ self.dos_dat_parser = DataTextParser()
+ self.hr_parser = HrParser()
+
+ self._input_projection_mapping = {
+ 'Nwannier': 'n_projected_orbitals',
+ 'Nband': 'n_bands',
+ 'conv_tol': 'convergence_tolerance_max_localization',
+ }
+
+ self._input_projection_mapping2 = {
+ 'Nwannier': 'n_orbitals',
+ 'Nband': 'n_bloch_bands',
+ 'conv_tol': 'convergence_tolerance_max_localization',
+ }
+
+ self._input_projection_units = {'Ang': 'angstrom', 'Bohr': 'bohr'}
+
+ # Angular momentum [l, mr] following Wannier90 tables 3.1 and 3.2
+ # TODO move to normalization or utils in nomad?
+ self._angular_momentum_orbital_map = {
+ (0, 1): 's',
+ (1, 1): 'px',
+ (1, 2): 'py',
+ (1, 3): 'pz',
+ (2, 1): 'dz2',
+ (2, 2): 'dxz',
+ (2, 3): 'dyz',
+ (2, 4): 'dx2-y2',
+ (2, 5): 'dxy',
+ (3, 1): 'fz3',
+ (3, 2): 'fxz2',
+ (3, 3): 'fyz2',
+ (3, 4): 'fz(x2-y2)',
+ (3, 5): 'fxyz',
+ (3, 6): 'fx(x2-3y2)',
+ (3, 7): 'fy(3x2-y2)',
+ (-1, 1): 'sp-1',
+ (-1, 2): 'sp-2',
+ (-2, 1): 'sp2-1',
+ (-2, 2): 'sp2-2',
+ (-2, 3): 'sp2-3',
+ (-3, 1): 'sp3-1',
+ (-3, 2): 'sp3-2',
+ (-3, 3): 'sp3-3',
+ (-3, 4): 'sp3-4',
+ (-4, 1): 'sp3d-1',
+ (-4, 2): 'sp3d-2',
+ (-4, 3): 'sp3d-3',
+ (-4, 4): 'sp3d-4',
+ (-4, 5): 'sp3d-5',
+ (-5, 1): 'sp3d2-1',
+ (-5, 2): 'sp3d2-2',
+ (-5, 3): 'sp3d2-3',
+ (-5, 4): 'sp3d2-4',
+ (-5, 5): 'sp3d2-5',
+ (-5, 6): 'sp3d2-6',
+ }
+
+ self._dft_codes = [
+ 'quantumespresso',
+ 'abinit',
+ 'vasp',
+ 'siesta',
+ 'wien2k',
+ 'fleur',
+ 'openmx',
+ 'gpaw',
+ ]
+
+ def parse_system(self):
+ sec_run = self.archive.run[-1]
+ sec_system = System()
+ sec_run.system.append(sec_system)
+
+ structure = self.wout_parser.get('structure')
+ if structure is None:
+ self.logger.error('Error parsing the structure from .wout')
+ return
+
+ sec_atoms = Atoms()
+ sec_system.atoms = sec_atoms
+ if self.wout_parser.get('lattice_vectors', []):
+ lattice_vectors = np.vstack(
+ self.wout_parser.get('lattice_vectors', [])[-3:]
+ )
+ sec_atoms.lattice_vectors = lattice_vectors * ureg.angstrom
+ if self.wout_parser.get('reciprocal_lattice_vectors') is not None:
+ sec_atoms.lattice_vectors_reciprocal = (
+ np.vstack(self.wout_parser.get('reciprocal_lattice_vectors')[-3:])
+ / ureg.angstrom
+ )
+
+ pbc = (
+ [True, True, True] if lattice_vectors is not None else [False, False, False]
+ )
+ sec_atoms.periodic = pbc
+ sec_atoms.labels = structure.get('labels')
+ if structure.get('positions') is not None:
+ sec_atoms.positions = structure.get('positions') * ureg.angstrom
+
+ def parse_method(self):
+ sec_run = self.archive.run[-1]
+ sec_method = Method()
+ sec_run.method.append(sec_method)
+ sec_proj = TB()
+ sec_method.tb = sec_proj
+ sec_wann = Wannier()
+ sec_proj.wannier = sec_wann
+
+ # k_mesh section
+ kmesh = self.wout_parser.get('k_mesh')
+ if kmesh:
+ sec_k_mesh = KMesh()
+ sec_method.k_mesh = sec_k_mesh
+ sec_k_mesh.n_points = kmesh.get('n_points')
+ sec_k_mesh.grid = kmesh.get('grid', [])
+ if kmesh.get('k_points') is not None:
+ sec_k_mesh.points = np.complex128(kmesh.k_points[::2])
+
+ # Wannier90 section
+ for key in self._input_projection_mapping.keys():
+ setattr(
+ sec_wann, self._input_projection_mapping[key], self.wout_parser.get(key)
+ )
+ if self.wout_parser.get('Niter'):
+ sec_wann.is_maximally_localized = self.wout_parser.get('Niter', 0) > 1
+ if self.wout_parser.get('energy_windows'):
+ sec_wann.energy_window_outer = self.wout_parser.get('energy_windows').outer
+ sec_wann.energy_window_inner = self.wout_parser.get('energy_windows').inner
+
+ def parse_winput(self):
+ sec_run = self.archive.run[-1]
+ try:
+ sec_system = sec_run.system[-1]
+ sec_atoms = sec_system.atoms
+ sec_method = sec_run.method[-1]
+ except Exception:
+ self.logger.warning(
+ 'Could not extract system.atoms and method sections for parsing win.'
+ )
+ return
+
+ # Parsing from input
+ win_files = get_files('*.win', self.filepath, self.mainfile)
+ if not win_files:
+ self.logger.warning('Input .win file not found.')
+ return
+ if len(win_files) > 1:
+ self.logger.warning(
+ 'Multiple win files found. We will parse the first one.'
+ )
+ self.win_parser.mainfile = win_files[0]
+
+ def fract_cart_sites(sec_atoms, units, val):
+ for pos in sec_atoms.positions.to(units):
+ if np.array_equal(val, pos.magnitude):
+ index = sec_atoms.positions.magnitude.tolist().index(
+ pos.magnitude.tolist()
+ )
+ return sec_atoms.labels[index]
+
+ # Set units in case these are defined in .win
+ projections = self.win_parser.get('projections', [])
+ if projections:
+ if not isinstance(projections, list):
+ projections = [projections]
+ if projections[0][0] in ['Bohr', 'Angstrom']:
+ sec_run.x_wannier90_units = self._input_projection_units[
+ projections[0][0]
+ ]
+ projections.pop(0)
+ else:
+ sec_run.x_wannier90_units = 'angstrom'
+ if projections[0][0] == 'random':
+ return
+
+ # Populating AtomsGroup for projected atoms
+ sec_run.x_wannier90_n_atoms_proj = len(projections)
+ for nat in range(sec_run.x_wannier90_n_atoms_proj):
+ sec_atoms_group = AtomsGroup()
+ sec_system.atoms_group.append(sec_atoms_group)
+ sec_atoms_group.type = 'active_orbitals'
+ sec_atoms_group.index = (
+ 0 # Always first index (projection on a projection does not exist)
+ )
+ sec_atoms_group.is_molecule = False
+
+ # atom label always index=0
+ try:
+ atom = projections[nat][0]
+ if atom.startswith('f='): # fractional coordinates
+ val = [float(x) for x in atom.replace('f=', '').split(',')]
+ val = np.dot(val, sec_atoms.lattice_vectors.magnitude)
+ sites = fract_cart_sites(sec_atoms, sec_run.x_wannier90_units, val)
+ elif atom.startswith('c='): # cartesian coordinates
+ val = [float(x) for x in atom.replace('c=', '').split(',')]
+ sites = fract_cart_sites(sec_atoms, sec_run.x_wannier90_units, val)
+ else: # atom label directly specified
+ sites = atom
+ sec_atoms_group.n_atoms = len(
+ sites
+ ) # always 1 (only one atom per proj) # TODO: either add a check or default to 1
+ sec_atoms_group.label = 'projection'
+ sec_atoms_group.atom_indices = np.where(
+ [x == sites for x in sec_atoms.labels]
+ )[0]
+ except Exception:
+ self.logger.warning(
+ 'Error finding the atom labels for the projection from win.'
+ )
+
+ # orbital angular momentum always index=1
+ # suggestion: shift to wout for projection?
+ try:
+ orbitals = projections[nat][1].split(';')
+ sec_atom_parameters = AtomParameters()
+ sec_method.atom_parameters.append(sec_atom_parameters)
+ sec_atom_parameters.n_orbitals = len(orbitals)
+ angular_momentum = []
+ for orb in orbitals:
+ if orb.startswith('l='): # using angular momentum numbers
+ lmom = int(orb.split(',mr')[0].replace('l=', '').split(',')[0])
+ mrmom = int(orb.split(',mr')[-1].replace('=', '').split(',')[0])
+ if (
+ orb_ang_mom := self._angular_momentum_orbital_map.get(
+ (lmom, mrmom)
+ )
+ ): # shouldn't a missing numerical code rather generate a warning?
+ angular_momentum.append(orb_ang_mom)
+ else: # ang mom label directly specified
+ angular_momentum.append(orb)
+ sec_atom_parameters.orbitals = np.array(angular_momentum)
+ except Exception:
+ self.logger.warning('Projected orbital labels not found from win.')
+
+ def parse_hoppings(self):
+ hr_files = get_files('*hr.dat', self.filepath, self.mainfile)
+ if not hr_files:
+ return
+ self.hr_parser.mainfile = hr_files[0]
+
+ # Assuming method.tb is parsed before
+ sec_scc = self.archive.run[-1].calculation[-1]
+ sec_hopping_matrix = HoppingMatrix()
+ sec_scc.hopping_matrix.append(sec_hopping_matrix)
+ sec_hopping_matrix.n_orbitals = (
+ self.archive.run[-1].method[-1].tb.wannier.n_projected_orbitals
+ )
+ deg_factors = self.hr_parser.get('degeneracy_factors', [])
+ if deg_factors is not None:
+ sec_hopping_matrix.n_wigner_seitz_points = deg_factors[1]
+ sec_hopping_matrix.degeneracy_factors = deg_factors[2:]
+ full_hoppings = self.hr_parser.get('hoppings', [])
+ try:
+ sec_hopping_matrix.value = np.reshape(
+ full_hoppings,
+ (
+ sec_hopping_matrix.n_wigner_seitz_points,
+ sec_hopping_matrix.n_orbitals * sec_hopping_matrix.n_orbitals,
+ 7,
+ ),
+ )
+ except Exception:
+ self.logger.warning(
+ 'Could not parse the hopping matrix values. Please, revise your output files.'
+ )
+ try:
+ sec_scc_energy = Energy()
+ sec_scc.energy = sec_scc_energy
+ # Setting Fermi level to the first orbital onsite energy
+ n_wigner_seitz_points_half = int(
+ 0.5 * sec_hopping_matrix.n_wigner_seitz_points
+ )
+ energy_fermi = (
+ sec_hopping_matrix.value[n_wigner_seitz_points_half][0][5] * ureg.eV
+ )
+ sec_scc_energy.fermi = energy_fermi
+ sec_scc_energy.highest_occupied = energy_fermi
+ except Exception:
+ return
+
+ def get_k_points(self):
+ if self.wout_parser.get('reciprocal_lattice_vectors') is None:
+ return
+ reciprocal_lattice_vectors = np.vstack(
+ self.wout_parser.get('reciprocal_lattice_vectors')
+ )
+
+ n_k_segments = self.wout_parser.get('n_k_segments', [])
+ k_symm_points = []
+ k_symm_points_cart = []
+ for ns in range(n_k_segments):
+ k_segments = np.split(self.wout_parser.get('band_segments_points')[ns], 2)
+ [
+ k_symm_points_cart.append(
+ np.dot(k_segments[i], reciprocal_lattice_vectors)
+ )
+ for i in range(2)
+ ]
+ [k_symm_points.append(k_segments[i]) for i in range(2)]
+
+ n_k_segments_points_1 = self.wout_parser.get('div_first_k_segment')
+ delta_k = (
+ np.linalg.norm(k_symm_points_cart[1] - k_symm_points_cart[0])
+ / n_k_segments_points_1
+ )
+ band_segments_points = []
+ for ns in range(n_k_segments):
+ n_k_segments_points = round(
+ np.linalg.norm(
+ k_symm_points_cart[2 * ns + 1] - k_symm_points_cart[2 * ns]
+ )
+ / delta_k
+ )
+ band_segments_points.append(n_k_segments_points)
+
+ kpoints = []
+ for n in range(len(band_segments_points)):
+ kpoints_segment = [
+ k_symm_points[2 * n]
+ + i
+ * (k_symm_points[2 * n + 1] - k_symm_points[2 * n])
+ / band_segments_points[n]
+ for i in range(band_segments_points[n])
+ ]
+ kpoints.append(kpoints_segment)
+
+ # TODO check having to add manually last point (?)
+ band_segments_points[-1] = band_segments_points[-1] + 1
+ kpoints[-1].append(k_symm_points[-1])
+ n_kpoints = sum(band_segments_points)
+
+ return (n_kpoints, band_segments_points, kpoints)
+
+ def parse_bandstructure(self):
+ sec_scc = self.archive.run[-1].calculation[-1]
+
+ try:
+ energy_fermi = sec_scc.energy.fermi
+ except Exception:
+ self.logger.warning(
+ 'Error setting the Fermi level: not found from hoppings. Setting it to 0 eV'
+ )
+ energy_fermi = 0.0 * ureg.eV
+ energy_fermi_eV = energy_fermi.to('electron_volt').magnitude
+
+ band_files = get_files('*band.dat', self.filepath, self.mainfile)
+ if not band_files:
+ return
+ if len(band_files) > 1:
+ self.logger.warning('Multiple bandstructure data files found.')
+ # Parsing only first *_band.dat file
+ self.band_dat_parser.mainfile = band_files[0]
+
+ sec_k_band = BandStructure()
+ sec_scc.band_structure_electronic.append(sec_k_band)
+ sec_k_band.energy_fermi = energy_fermi
+ try:
+ sec_k_band.reciprocal_cell = (
+ self.archive.run[-1].system[0].atoms.lattice_vectors_reciprocal
+ )
+ except Exception:
+ self.logger.warning(
+ 'Reciprocal cell in band_structure_electronic not set up.'
+ )
+
+ if self.band_dat_parser.data is None:
+ return
+ data = np.transpose(self.band_dat_parser.data)
+
+ (n_kpoints, band_segments_points, kpoints) = self.get_k_points()
+ n_segments = len(band_segments_points)
+ n_bands = round((len(data[0])) / n_kpoints)
+ n_spin = 1
+
+ # reshaping bands into the NOMAD band_structure style
+ try:
+ bands = np.transpose(np.reshape(data[1], (n_bands, n_kpoints)))
+ except Exception:
+ self.logger.warning(
+ 'Could not reshape the bands into the NOMAD dimensions.'
+ )
+ return
+ bkp_init = 0
+ for n in range(n_segments):
+ sec_k_band_segment = BandEnergies()
+ sec_k_band.segment.append(sec_k_band_segment)
+ sec_k_band_segment.n_kpoints = band_segments_points[n]
+ sec_k_band_segment.kpoints = kpoints[n]
+
+ bkp_last = bkp_init + band_segments_points[n]
+ energies = np.reshape(
+ bands[bkp_init:bkp_last, :], (n_spin, band_segments_points[n], n_bands)
+ )
+ occs = np.reshape(
+ np.array(
+ [
+ 2.0 if energies[i, j, k] < energy_fermi_eV else 0.0
+ for i in range(n_spin)
+ for j in range(band_segments_points[n])
+ for k in range(n_bands)
+ ]
+ ),
+ (n_spin, band_segments_points[n], n_bands),
+ )
+ bkp_init = bkp_last
+ sec_k_band_segment.energies = energies * ureg.eV
+ sec_k_band_segment.occupations = occs
+
+ def parse_dos(self):
+ sec_scc = self.archive.run[-1].calculation[-1]
+
+ try:
+ energy_fermi = sec_scc.energy.fermi
+ except Exception:
+ self.logger.warning(
+ 'Error setting the Fermi level: not found from hoppings. Setting it to 0 eV'
+ )
+ energy_fermi = 0.0 * ureg.eV
+
+ dos_files = get_files('*dos.dat', self.filepath, self.mainfile)
+ if not dos_files:
+ return
+ if len(dos_files) > 1:
+ self.logger.warning('Multiple dos data files found.')
+ # Parsing only first *dos.dat file
+ self.dos_dat_parser.mainfile = dos_files[0]
+
+ # TODO add spin polarized case
+ sec_dos = Dos()
+ sec_scc.dos_electronic.append(sec_dos)
+ sec_dos.energy_fermi = energy_fermi
+ data = np.transpose(self.dos_dat_parser.data)
+ sec_dos.n_energies = len(data[0])
+ sec_dos.energies = data[0] * ureg.eV
+ sec_dos_values = DosValues()
+ sec_dos.total.append(sec_dos_values)
+ sec_dos_values.value = data[1] / ureg.eV
+
+ def parse_scc(self):
+ sec_run = self.archive.run[-1]
+ sec_scc = Calculation()
+ sec_run.calculation.append(sec_scc)
+
+ # Refs for calculation
+ sec_scc.method_ref = sec_run.method[-1]
+ sec_scc.system_ref = sec_run.system[-1]
+
+ # Wannier90 hoppings section
+ self.parse_hoppings()
+
+ # Wannier band structure
+ self.parse_bandstructure()
+
+ # Wannier DOS
+ self.parse_dos()
+
+ def init_parser(self):
+ self.wout_parser.mainfile = self.filepath
+ self.wout_parser.logger = self.logger
+ self.hr_parser.logger = self.logger
+
+ def parse(self, filepath, archive, logger):
+ self.filepath = filepath
+ self.archive = archive
+ self.maindir = os.path.dirname(self.filepath)
+ self.mainfile = os.path.basename(self.filepath)
+ self.logger = logging.getLogger(__name__) if logger is None else logger
+
+ self.init_parser()
+
+ sec_run = Run()
+ self.archive.run.append(sec_run)
+
+ # Program section
+ sec_run.program = Program(
+ name='Wannier90', version=self.wout_parser.get('version', '')
+ )
+ # TODO TimeRun section
+
+ self.parse_system()
+
+ self.parse_method()
+
+ # Parsing AtomsGroup and AtomParameters for System and Method from the input file .win
+ self.parse_winput()
+
+ self.parse_scc()
+
+ workflow = SinglePoint()
+ self.archive.workflow2 = workflow
+
+ # Adding `data` section
+ p = Wannier90ParserData()
+ p.parse(filepath, archive, logger)
diff --git a/src/nomad_parser_wannier90/parsers/utils/__init__.py b/src/nomad_parser_wannier90/parsers/utils/__init__.py
new file mode 100644
index 0000000..d5ed6a4
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/utils/__init__.py
@@ -0,0 +1,19 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD.
+# See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from .utils import get_files
diff --git a/src/nomad_parser_wannier90/parsers/utils/utils.py b/src/nomad_parser_wannier90/parsers/utils/utils.py
new file mode 100644
index 0000000..b7edb29
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/utils/utils.py
@@ -0,0 +1,51 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD.
+# See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import os
+from glob import glob
+
+
+def get_files(pattern: str, filepath: str, stripname: str = '', deep: bool = True):
+ """Get files following the `pattern` with respect to the file `stripname` (usually this
+ being the mainfile of the given parser) up to / down from the `filepath` (`deep=True` going
+ down, `deep=False` up)
+
+ Args:
+ pattern (str): targeted pattern to be found
+ filepath (str): filepath to start the search
+ stripname (str, optional): name with respect to which do the search. Defaults to ''.
+ deep (bool, optional): boolean setting the path in the folders to scan (down or up). Defaults to down=True.
+
+ Returns:
+ list: List of found files.
+ """
+ for _ in range(10):
+ filenames = glob(f'{os.path.dirname(filepath)}/{pattern}')
+ pattern = os.path.join('**' if deep else '..', pattern)
+ if filenames:
+ break
+
+ if len(filenames) > 1:
+ # filter files that match
+ suffix = os.path.basename(filepath).strip(stripname)
+ matches = [f for f in filenames if suffix in f]
+ filenames = matches if matches else filenames
+
+ filenames = [f for f in filenames if os.access(f, os.F_OK)]
+ return filenames
diff --git a/src/nomad_parser_wannier90/parsers/win_parser.py b/src/nomad_parser_wannier90/parsers/win_parser.py
new file mode 100644
index 0000000..f74b578
--- /dev/null
+++ b/src/nomad_parser_wannier90/parsers/win_parser.py
@@ -0,0 +1,272 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD.
+# See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import numpy as np
+from typing import List, Optional, Tuple, Union
+from structlog.stdlib import BoundLogger
+
+from nomad.parsing.file_parser import TextParser, Quantity
+
+from nomad_simulations.schema_packages.model_system import ModelSystem, AtomicCell
+from nomad_simulations.schema_packages.atoms_state import OrbitalsState
+
+
+class WInParser(TextParser):
+ def init_quantities(self):
+ def str_proj_to_list(val_in):
+ # To avoid inconsistent regex that can contain or not spaces
+ val_n = [x for x in val_in.split('\n') if x]
+ return [v.strip('[]').replace(' ', '').split(':') for v in val_n]
+
+ self._quantities = [
+ Quantity(
+ 'energy_fermi', rf'\n\rfermi_energy\s*=\s*([\d\.\-]+)', repeats=False
+ ),
+ Quantity(
+ 'projections',
+ rf'[bB]egin [pP]rojections([\s\S]+?)(?:[eE]nd [pP]rojections)',
+ repeats=False,
+ str_operation=str_proj_to_list,
+ ),
+ ]
+
+
+class Wannier90WInParser:
+ def __init__(self, win_file: str = ''):
+ if not win_file:
+ raise ValueError('Input `*.win` file not found.')
+ self.win_parser = WInParser(mainfile=win_file)
+
+ self._input_projection_units = {'Ang': 'angstrom', 'Bohr': 'bohr'}
+
+ # Angular momentum [l, mr] following Wannier90 tables 3.1 and 3.2
+ self._wannier_orbital_symbols_map = {
+ 's': ('s', ''),
+ 'px': ('p', 'x'),
+ 'py': ('p', 'y'),
+ 'pz': ('p', 'z'),
+ 'dz2': ('d', 'z^2'),
+ 'dxz': ('d', 'xz'),
+ 'dyz': ('d', 'yz'),
+ 'dx2-y2': ('d', 'x^2-y^2'),
+ 'dxy': ('d', 'xy'),
+ 'fz3': ('f', 'z^3'),
+ 'fxz2': ('f', 'xz^2'),
+ 'fyz2': ('f', 'yz^2'),
+ 'fz(x2-y2)': ('f', 'z(x^2-y^2)'),
+ 'fxyz': ('f', 'xyz'),
+ 'fx(x2-3y2)': ('f', 'x(x^2-3y^2)'),
+ 'fy(3x2-y2)': ('f', 'y(3x^2-y^2)'),
+ }
+ self._wannier_orbital_numbers_map = {
+ (0, 1): ('s', ''),
+ (1, 1): ('p', 'x'),
+ (1, 2): ('p', 'y'),
+ (1, 3): ('p', 'z'),
+ (2, 1): ('d', 'z^2'),
+ (2, 2): ('d', 'xz'),
+ (2, 3): ('d', 'yz'),
+ (2, 4): ('d', 'x^2-y^2'),
+ (2, 5): ('d', 'xy'),
+ (3, 1): ('f', 'z^3'),
+ (3, 2): ('f', 'xz^2'),
+ (3, 3): ('f', 'yz^2'),
+ (3, 4): ('f', 'z(x^2-y^2)'),
+ (3, 5): ('f', 'xyz'),
+ (3, 6): ('f', 'x(x^2-3y^2)'),
+ (3, 7): ('f', 'y(3x^2-y^2)'),
+ }
+
+ def _convert_positions_to_symbols(
+ self, atomic_cell: AtomicCell, units: str, positions: List[float]
+ ) -> Optional[str]:
+ """
+ Convert the atom `positions` in fractional or cartesian coordinates to the atom `chemical_symbols`.
+
+ Args:
+ atomic_cell (AtomicCell): The `AtomicCell` section to which `positions` are extracted
+ units (str): The units in which the positions are defined.
+ positions (List[float]): The positions in fractional or cartesian coordinates to be converted to `chemical_symbols`.
+
+ Returns:
+ (Optional[str]): The `chemical_symbols` of the atom at the position `val`.
+ """
+ for cell_position in atomic_cell.positions.to(units):
+ if np.array_equal(positions, cell_position.magnitude):
+ index = atomic_cell.positions.magnitude.tolist().index(
+ cell_position.magnitude.tolist()
+ )
+ return atomic_cell.atoms_state[index].chemical_symbol
+ return None
+
+ def parse_child_atom_indices(
+ self,
+ atom: Union[str, int],
+ atomic_cell: AtomicCell,
+ units: str,
+ ) -> Tuple[Optional[str], List[int]]:
+ """
+ Parse the atom indices for the child model system.
+
+ Args:
+ atom (Union[str, int]): The atom string containing the positions information. In some older version,
+ this can be an integer index pointing to the atom.
+ atomic_cell (AtomicCell): The `AtomicCell` section where `positions` are stored
+ units (str): The units in which the positions are defined.
+
+ Returns:
+ (Tuple[str, List[int]]): The `branch_label` and `atom_indices` for the child model system.
+ """
+ if isinstance(atom, int):
+ return '', [atom]
+ if atom.startswith('f='): # fractional coordinates
+ positions = [float(x) for x in atom.replace('f=', '').split(',')]
+ positions = np.dot(positions, atomic_cell.lattice_vectors.magnitude)
+ sites = self._convert_positions_to_symbols(atomic_cell, units, positions)
+ elif atom.startswith('c='): # cartesian coordinates
+ positions = [float(x) for x in atom.replace('c=', '').split(',')]
+ sites = self._convert_positions_to_symbols(atomic_cell, units, positions)
+ else: # atom label directly specified
+ sites = atom
+
+ # Find the `atom_indices` which coincide with the `sites`
+ branch_label = sites
+ atom_indices = np.where(
+ [atom.chemical_symbol == branch_label for atom in atomic_cell.atoms_state]
+ )[0].tolist()
+ return branch_label, atom_indices
+
+ def populate_orbitals_state(
+ self,
+ projection: List[str],
+ model_system_child: ModelSystem,
+ atomic_cell: AtomicCell,
+ logger: BoundLogger,
+ ) -> None:
+ """
+ Populate the `OrbitalsState` sections for the AtomsState relevant for the Wannier projection.
+
+ Args:
+ projection (List[Union[int, str]]): The projection information for the atom.
+ model_system_child (ModelSystem): The child model system to get the `atom_indices`.
+ atomic_cell (AtomicCell): The `AtomicCell` section where `positions` are stored.
+ logger (BoundLogger): The logger to log messages.
+ """
+ atom = projection[0]
+ for atom_index in model_system_child.atom_indices:
+ if atomic_cell.atoms_state is None or len(atomic_cell.atoms_state) == 0:
+ logger.warning(
+ 'Could not extract the `AtomicCell.atoms_state` sections.'
+ )
+ continue
+ atom_state = atomic_cell.atoms_state[atom_index]
+
+ # To avoid issues when `atom` is an integer
+ if isinstance(atom, str) and atom != atom_state.chemical_symbol:
+ continue
+
+ # Try to get the orbitals information
+ try:
+ orbitals = projection[1].split(';')
+ angular_momentum = None
+ for orb in orbitals:
+ orbital_state = OrbitalsState()
+ if orb.startswith('l='): # using angular momentum numbers
+ lmom = int(orb.split(',mr')[0].replace('l=', '').split(',')[0])
+ mrmom = int(orb.split(',mr')[-1].replace('=', '').split(',')[0])
+ angular_momentum = self._wannier_orbital_numbers_map.get(
+ (lmom, mrmom)
+ )
+ else: # ang mom label directly specified
+ angular_momentum = self._wannier_orbital_symbols_map.get(orb)
+ (
+ orbital_state.l_quantum_symbol,
+ orbital_state.ml_quantum_symbol,
+ ) = angular_momentum
+ atom_state.orbitals_state.append(orbital_state)
+ except Exception:
+ logger.warning('Projected orbital labels not found from win.')
+ return None
+ return None
+
+ def parse_child_model_systems(
+ self,
+ model_system: ModelSystem,
+ logger: BoundLogger,
+ ) -> Optional[List[ModelSystem]]:
+ """
+ Parse the child model systems from the `*.win` file to be added as sub-sections of the parent `ModelSystem` section. We
+ also store the `OrbitalsState` information of the projected atoms.
+
+ Args:
+ model_system (ModelSystem): The parent `ModelSystem` to which the child model systems will be added.
+ logger (BoundLogger): The logger to log messages.
+
+ Returns:
+ (Optional[List[ModelSystem]]): The list of child model systems with the projected atoms information.
+ """
+ # Check if `atomic_cell` is present in `model_system``
+ if model_system.cell is None or len(model_system.cell) == 0:
+ logger.warning(
+ 'Could not extract `model_system.cell` section from mainfile `*.wout`.'
+ )
+ return None
+ atomic_cell = model_system.cell[0]
+
+ # Set units in case these are defined in .win
+ projections = self.win_parser.get('projections', [])
+ if projections:
+ if not isinstance(projections, list):
+ projections = [projections]
+ if projections[0][0] in ['Bohr', 'Angstrom']:
+ wannier90_units = self._input_projection_units[projections[0][0]]
+ projections.pop(0)
+ else:
+ wannier90_units = 'angstrom'
+ if projections[0][0] == 'random':
+ return None
+
+ # Populating AtomsGroup for projected atoms
+ model_system_childs = []
+ for nat in range(len(projections)):
+ model_system_child = ModelSystem()
+ model_system_child.type = 'active_atom'
+
+ # atom positions information always index=0 for `projections[nat]`
+ projection = projections[nat]
+ atom = projection[0]
+ try:
+ branch_label, atom_indices = self.parse_child_atom_indices(
+ atom, atomic_cell, wannier90_units
+ )
+ model_system_child.branch_label = branch_label
+ model_system_child.atom_indices = atom_indices
+ except Exception:
+ logger.warning(
+ 'Error finding the atom labels for the projection from win.'
+ )
+ return None
+
+ # orbital angular momentum information always index=1 for `projections[nat]`
+ self.populate_orbitals_state(
+ projection, model_system_child, atomic_cell, logger
+ )
+ model_system_childs.append(model_system_child)
+
+ return model_system_childs
diff --git a/src/nomad_parser_wannier90/schema_packages/__init__.py b/src/nomad_parser_wannier90/schema_packages/__init__.py
new file mode 100644
index 0000000..88c04b5
--- /dev/null
+++ b/src/nomad_parser_wannier90/schema_packages/__init__.py
@@ -0,0 +1,17 @@
+from nomad.config.models.plugins import SchemaPackageEntryPoint
+from pydantic import Field
+
+
+class Wannier90SchemaPackageEntryPoint(SchemaPackageEntryPoint):
+ parameter: int = Field(0, description='Custom configuration parameter')
+
+ def load(self):
+ from nomad_parser_wannier90.schema_packages.package import m_package
+
+ return m_package
+
+
+nomad_parser_wannier90_schema = Wannier90SchemaPackageEntryPoint(
+ name='Wannier90SchemaPackage',
+ description='Entry point for the Wannier90 code-specific schema.',
+)
diff --git a/src/nomad_parser_wannier90/schema_packages/package.py b/src/nomad_parser_wannier90/schema_packages/package.py
new file mode 100644
index 0000000..2bb22d9
--- /dev/null
+++ b/src/nomad_parser_wannier90/schema_packages/package.py
@@ -0,0 +1,38 @@
+from typing import (
+ TYPE_CHECKING,
+)
+
+if TYPE_CHECKING:
+ from nomad.datamodel.datamodel import (
+ EntryArchive,
+ )
+ from structlog.stdlib import (
+ BoundLogger,
+ )
+
+from nomad.config import config
+from nomad.datamodel.data import Schema
+from nomad.datamodel.metainfo.annotations import ELNAnnotation, ELNComponentEnum
+from nomad.metainfo import Quantity, SchemaPackage
+
+configuration = config.get_plugin_entry_point(
+ 'nomad_parser_wannier90.schema_packages:nomad_parser_wannier90_schema'
+)
+
+m_package = SchemaPackage()
+
+
+class MySchema(Schema):
+ name = Quantity(
+ type=str, a_eln=ELNAnnotation(component=ELNComponentEnum.StringEditQuantity)
+ )
+ message = Quantity(type=str)
+
+ def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None:
+ super().normalize(archive, logger)
+
+ logger.info('MySchema.normalize', parameter=configuration.parameter)
+ self.message = f'Hello {self.name}!'
+
+
+m_package.__init_metainfo__()
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000..8176ffc
--- /dev/null
+++ b/tests/__init__.py
@@ -0,0 +1,22 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD. See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+from nomad import utils
+
+
+logger = utils.get_logger(__name__)
diff --git a/tests/data/lco_mlwf/lco-dos.dat b/tests/data/lco_mlwf/lco-dos.dat
new file mode 100644
index 0000000..6612ae2
--- /dev/null
+++ b/tests/data/lco_mlwf/lco-dos.dat
@@ -0,0 +1,692 @@
+ 0.97541072E+01 0.35878051E-14
+ 0.97641109E+01 0.53229803E-14
+ 0.97741147E+01 0.78828609E-14
+ 0.97841184E+01 0.11652380E-13
+ 0.97941222E+01 0.17192775E-13
+ 0.98041259E+01 0.25320761E-13
+ 0.98141297E+01 0.37222522E-13
+ 0.98241334E+01 0.54617530E-13
+ 0.98341372E+01 0.79993460E-13
+ 0.98441409E+01 0.11694243E-12
+ 0.98541447E+01 0.17064128E-12
+ 0.98641484E+01 0.24853617E-12
+ 0.98741522E+01 0.36131657E-12
+ 0.98841560E+01 0.52429810E-12
+ 0.98941597E+01 0.75938194E-12
+ 0.99041635E+01 0.10978255E-11
+ 0.99141672E+01 0.15841527E-11
+ 0.99241710E+01 0.22816608E-11
+ 0.99341747E+01 0.32801610E-11
+ 0.99441785E+01 0.47068360E-11
+ 0.99541822E+01 0.67414392E-11
+ 0.99641860E+01 0.96375286E-11
+ 0.99741897E+01 0.13752071E-10
+ 0.99841935E+01 0.19586633E-10
+ 0.99941972E+01 0.27844574E-10
+ 0.10004201E+02 0.39510298E-10
+ 0.10014205E+02 0.55958851E-10
+ 0.10024208E+02 0.79107150E-10
+ 0.10034212E+02 0.11162226E-09
+ 0.10044216E+02 0.15720761E-09
+ 0.10054220E+02 0.22099552E-09
+ 0.10064223E+02 0.31008435E-09
+ 0.10074227E+02 0.43427207E-09
+ 0.10084231E+02 0.60705589E-09
+ 0.10094235E+02 0.84699163E-09
+ 0.10104239E+02 0.11795381E-08
+ 0.10114242E+02 0.16395547E-08
+ 0.10124246E+02 0.22746750E-08
+ 0.10134250E+02 0.31498557E-08
+ 0.10144254E+02 0.43534952E-08
+ 0.10154257E+02 0.60056452E-08
+ 0.10164261E+02 0.82690095E-08
+ 0.10174265E+02 0.11363640E-07
+ 0.10184269E+02 0.15586532E-07
+ 0.10194272E+02 0.21337693E-07
+ 0.10204276E+02 0.29154743E-07
+ 0.10214280E+02 0.39758749E-07
+ 0.10224284E+02 0.54114776E-07
+ 0.10234287E+02 0.73511742E-07
+ 0.10244291E+02 0.99667457E-07
+ 0.10254295E+02 0.13486649E-06
+ 0.10264299E+02 0.18214072E-06
+ 0.10274302E+02 0.24550520E-06
+ 0.10284306E+02 0.33026570E-06
+ 0.10294310E+02 0.44341848E-06
+ 0.10304314E+02 0.59416912E-06
+ 0.10314317E+02 0.79460384E-06
+ 0.10324321E+02 0.10605562E-05
+ 0.10334325E+02 0.14127233E-05
+ 0.10344329E+02 0.18780991E-05
+ 0.10354332E+02 0.24918107E-05
+ 0.10364336E+02 0.32994643E-05
+ 0.10374340E+02 0.43601339E-05
+ 0.10384344E+02 0.57501582E-05
+ 0.10394347E+02 0.75679509E-05
+ 0.10404351E+02 0.99400781E-05
+ 0.10414355E+02 0.13028914E-04
+ 0.10424359E+02 0.17042262E-04
+ 0.10434362E+02 0.22245404E-04
+ 0.10444366E+02 0.28976168E-04
+ 0.10454370E+02 0.37663715E-04
+ 0.10464374E+02 0.48851901E-04
+ 0.10474377E+02 0.63228283E-04
+ 0.10484381E+02 0.81660049E-04
+ 0.10494385E+02 0.10523840E-03
+ 0.10504389E+02 0.13533332E-03
+ 0.10514392E+02 0.17366083E-03
+ 0.10524396E+02 0.22236555E-03
+ 0.10534400E+02 0.28412144E-03
+ 0.10544404E+02 0.36225428E-03
+ 0.10554407E+02 0.46088984E-03
+ 0.10564411E+02 0.58513196E-03
+ 0.10574415E+02 0.74127521E-03
+ 0.10584419E+02 0.93705712E-03
+ 0.10594422E+02 0.11819553E-02
+ 0.10604426E+02 0.14875356E-02
+ 0.10614430E+02 0.18678580E-02
+ 0.10624434E+02 0.23399484E-02
+ 0.10634437E+02 0.29243484E-02
+ 0.10644441E+02 0.36457572E-02
+ 0.10654445E+02 0.45337925E-02
+ 0.10664449E+02 0.56239128E-02
+ 0.10674452E+02 0.69585788E-02
+ 0.10684456E+02 0.85887862E-02
+ 0.10694460E+02 0.10576161E-01
+ 0.10704464E+02 0.12995834E-01
+ 0.10714467E+02 0.15940197E-01
+ 0.10724471E+02 0.19523187E-01
+ 0.10734475E+02 0.23883867E-01
+ 0.10744479E+02 0.29186636E-01
+ 0.10754482E+02 0.35613898E-01
+ 0.10764486E+02 0.43346299E-01
+ 0.10774490E+02 0.52527028E-01
+ 0.10784494E+02 0.63211250E-01
+ 0.10794497E+02 0.75309188E-01
+ 0.10804501E+02 0.88539548E-01
+ 0.10814505E+02 0.10241437E+00
+ 0.10824509E+02 0.11627292E+00
+ 0.10834512E+02 0.20933899E+00
+ 0.10844516E+02 0.14099680E+00
+ 0.10854520E+02 0.15062268E+00
+ 0.10864524E+02 0.15798332E+00
+ 0.10874527E+02 0.16311971E+00
+ 0.10884531E+02 0.16633791E+00
+ 0.10894535E+02 0.16811307E+00
+ 0.10904539E+02 0.16897037E+00
+ 0.10914542E+02 0.16937982E+00
+ 0.10924546E+02 0.16969023E+00
+ 0.10934550E+02 0.17010970E+00
+ 0.10944554E+02 0.17072367E+00
+ 0.10954557E+02 0.17153284E+00
+ 0.10964561E+02 0.17249375E+00
+ 0.10974565E+02 0.17355060E+00
+ 0.10984569E+02 0.17465435E+00
+ 0.10994572E+02 0.17577043E+00
+ 0.11004576E+02 0.17687918E+00
+ 0.11014580E+02 0.17797265E+00
+ 0.11024584E+02 0.17905075E+00
+ 0.11034587E+02 0.18011786E+00
+ 0.11044591E+02 0.18118039E+00
+ 0.11054595E+02 0.18224517E+00
+ 0.11064599E+02 0.18331847E+00
+ 0.11074602E+02 0.18440537E+00
+ 0.11084606E+02 0.18550955E+00
+ 0.11094610E+02 0.18663328E+00
+ 0.11104614E+02 0.18777755E+00
+ 0.11114617E+02 0.18894238E+00
+ 0.11124621E+02 0.19012711E+00
+ 0.11134625E+02 0.19133075E+00
+ 0.11144629E+02 0.19255221E+00
+ 0.11154632E+02 0.19379056E+00
+ 0.11164636E+02 0.19504510E+00
+ 0.11174640E+02 0.19631547E+00
+ 0.11184644E+02 0.19760161E+00
+ 0.11194647E+02 0.19890373E+00
+ 0.11204651E+02 0.20022227E+00
+ 0.11214655E+02 0.20155778E+00
+ 0.11224659E+02 0.20291092E+00
+ 0.11234663E+02 0.20428236E+00
+ 0.11244666E+02 0.20567273E+00
+ 0.11254670E+02 0.20708265E+00
+ 0.11264674E+02 0.20851266E+00
+ 0.11274678E+02 0.20996326E+00
+ 0.11284681E+02 0.21143489E+00
+ 0.11294685E+02 0.21292795E+00
+ 0.11304689E+02 0.21444283E+00
+ 0.11314693E+02 0.21597991E+00
+ 0.11324696E+02 0.21753955E+00
+ 0.11334700E+02 0.21912216E+00
+ 0.11344704E+02 0.22072813E+00
+ 0.11354708E+02 0.22235791E+00
+ 0.11364711E+02 0.22401194E+00
+ 0.11374715E+02 0.22569072E+00
+ 0.11384719E+02 0.22739475E+00
+ 0.11394723E+02 0.22912457E+00
+ 0.11404726E+02 0.23088073E+00
+ 0.11414730E+02 0.23266379E+00
+ 0.11424734E+02 0.23447435E+00
+ 0.11434738E+02 0.23631301E+00
+ 0.11444741E+02 0.23818039E+00
+ 0.11454745E+02 0.24007712E+00
+ 0.11464749E+02 0.24200384E+00
+ 0.11474753E+02 0.24396121E+00
+ 0.11484756E+02 0.24594991E+00
+ 0.11494760E+02 0.24797062E+00
+ 0.11504764E+02 0.25002405E+00
+ 0.11514768E+02 0.25211092E+00
+ 0.11524771E+02 0.25423197E+00
+ 0.11534775E+02 0.25638796E+00
+ 0.11544779E+02 0.25857968E+00
+ 0.11554783E+02 0.26080791E+00
+ 0.11564786E+02 0.26307349E+00
+ 0.11574790E+02 0.26537725E+00
+ 0.11584794E+02 0.26772007E+00
+ 0.11594798E+02 0.27010282E+00
+ 0.11604801E+02 0.27252642E+00
+ 0.11614805E+02 0.27499181E+00
+ 0.11624809E+02 0.27749994E+00
+ 0.11634813E+02 0.28005179E+00
+ 0.11644816E+02 0.28264838E+00
+ 0.11654820E+02 0.28529073E+00
+ 0.11664824E+02 0.28797990E+00
+ 0.11674828E+02 0.29071698E+00
+ 0.11684831E+02 0.29350306E+00
+ 0.11694835E+02 0.29633930E+00
+ 0.11704839E+02 0.29922684E+00
+ 0.11714843E+02 0.30216687E+00
+ 0.11724846E+02 0.30516060E+00
+ 0.11734850E+02 0.30820928E+00
+ 0.11744854E+02 0.31131417E+00
+ 0.11754858E+02 0.31447656E+00
+ 0.11764861E+02 0.31769777E+00
+ 0.11774865E+02 0.32097915E+00
+ 0.11784869E+02 0.32432207E+00
+ 0.11794873E+02 0.32772792E+00
+ 0.11804876E+02 0.33119813E+00
+ 0.11814880E+02 0.33473415E+00
+ 0.11824884E+02 0.33833745E+00
+ 0.11834888E+02 0.34200954E+00
+ 0.11844891E+02 0.34575193E+00
+ 0.11854895E+02 0.34956617E+00
+ 0.11864899E+02 0.35345384E+00
+ 0.11874903E+02 0.35741654E+00
+ 0.11884906E+02 0.36145588E+00
+ 0.11894910E+02 0.36557351E+00
+ 0.11904914E+02 0.36977110E+00
+ 0.11914918E+02 0.37405035E+00
+ 0.11924921E+02 0.37841297E+00
+ 0.11934925E+02 0.38286073E+00
+ 0.11944929E+02 0.38739538E+00
+ 0.11954933E+02 0.39201875E+00
+ 0.11964936E+02 0.39673267E+00
+ 0.11974940E+02 0.40153902E+00
+ 0.11984944E+02 0.40643971E+00
+ 0.11994948E+02 0.41143672E+00
+ 0.12004951E+02 0.41653204E+00
+ 0.12014955E+02 0.42172776E+00
+ 0.12024959E+02 0.42702601E+00
+ 0.12034963E+02 0.43242900E+00
+ 0.12044966E+02 0.43793904E+00
+ 0.12054970E+02 0.44355854E+00
+ 0.12064974E+02 0.44929000E+00
+ 0.12074978E+02 0.45513609E+00
+ 0.12084981E+02 0.46109961E+00
+ 0.12094985E+02 0.46718355E+00
+ 0.12104989E+02 0.47339107E+00
+ 0.12114993E+02 0.47972557E+00
+ 0.12124996E+02 0.48619069E+00
+ 0.12135000E+02 0.49279036E+00
+ 0.12145004E+02 0.49952878E+00
+ 0.12155008E+02 0.50641052E+00
+ 0.12165011E+02 0.51344053E+00
+ 0.12175015E+02 0.52062417E+00
+ 0.12185019E+02 0.52796728E+00
+ 0.12195023E+02 0.53547622E+00
+ 0.12205026E+02 0.54315795E+00
+ 0.12215030E+02 0.55102007E+00
+ 0.12225034E+02 0.55907097E+00
+ 0.12235038E+02 0.56731981E+00
+ 0.12245041E+02 0.57577672E+00
+ 0.12255045E+02 0.58445285E+00
+ 0.12265049E+02 0.59336049E+00
+ 0.12275053E+02 0.60251321E+00
+ 0.12285056E+02 0.61192601E+00
+ 0.12295060E+02 0.62161543E+00
+ 0.12305064E+02 0.63159979E+00
+ 0.12315068E+02 0.64189938E+00
+ 0.12325072E+02 0.65253679E+00
+ 0.12335075E+02 0.66353721E+00
+ 0.12345079E+02 0.67492888E+00
+ 0.12355083E+02 0.68674367E+00
+ 0.12365087E+02 0.69901769E+00
+ 0.12375090E+02 0.71179211E+00
+ 0.12385094E+02 0.72511401E+00
+ 0.12395098E+02 0.73903749E+00
+ 0.12405102E+02 0.75362491E+00
+ 0.12415105E+02 0.76894838E+00
+ 0.12425109E+02 0.78509177E+00
+ 0.12435113E+02 0.80215330E+00
+ 0.12445117E+02 0.82024906E+00
+ 0.12455120E+02 0.83951790E+00
+ 0.12465124E+02 0.86012783E+00
+ 0.12475128E+02 0.88228457E+00
+ 0.12485132E+02 0.90624260E+00
+ 0.12495135E+02 0.93231933E+00
+ 0.12505139E+02 0.96091354E+00
+ 0.12515143E+02 0.99252947E+00
+ 0.12525147E+02 0.10278096E+01
+ 0.12535150E+02 0.10675815E+01
+ 0.12545154E+02 0.11129297E+01
+ 0.12555158E+02 0.11653163E+01
+ 0.12565162E+02 0.12267745E+01
+ 0.12575165E+02 0.13001012E+01
+ 0.12585169E+02 0.13885384E+01
+ 0.12595173E+02 0.14938915E+01
+ 0.12605177E+02 0.16130462E+01
+ 0.12615180E+02 0.18127384E+01
+ 0.12625184E+02 0.19825547E+01
+ 0.12635188E+02 0.19991187E+01
+ 0.12645192E+02 0.20091128E+01
+ 0.12655195E+02 0.20340887E+01
+ 0.12665199E+02 0.21031304E+01
+ 0.12675203E+02 0.18783609E+01
+ 0.12685207E+02 0.17107130E+01
+ 0.12695210E+02 0.15872550E+01
+ 0.12705214E+02 0.14826858E+01
+ 0.12715218E+02 0.14005034E+01
+ 0.12725222E+02 0.13343043E+01
+ 0.12735225E+02 0.12779813E+01
+ 0.12745229E+02 0.12286538E+01
+ 0.12755233E+02 0.11851203E+01
+ 0.12765237E+02 0.11465010E+01
+ 0.12775240E+02 0.11119199E+01
+ 0.12785244E+02 0.10805996E+01
+ 0.12795248E+02 0.10519473E+01
+ 0.12805252E+02 0.10255483E+01
+ 0.12815255E+02 0.10011100E+01
+ 0.12825259E+02 0.97840652E+00
+ 0.12835263E+02 0.95724489E+00
+ 0.12845267E+02 0.93745224E+00
+ 0.12855270E+02 0.91887423E+00
+ 0.12865274E+02 0.90137677E+00
+ 0.12875278E+02 0.88484629E+00
+ 0.12885282E+02 0.86918797E+00
+ 0.12895285E+02 0.85432238E+00
+ 0.12905289E+02 0.84018193E+00
+ 0.12915293E+02 0.82670785E+00
+ 0.12925297E+02 0.81384795E+00
+ 0.12935300E+02 0.80155536E+00
+ 0.12945304E+02 0.78978767E+00
+ 0.12955308E+02 0.77850661E+00
+ 0.12965312E+02 0.76767768E+00
+ 0.12975315E+02 0.75726993E+00
+ 0.12985319E+02 0.74725556E+00
+ 0.12995323E+02 0.73760959E+00
+ 0.13005327E+02 0.72830949E+00
+ 0.13015330E+02 0.71933482E+00
+ 0.13025334E+02 0.71066692E+00
+ 0.13035338E+02 0.70228867E+00
+ 0.13045342E+02 0.69418432E+00
+ 0.13055345E+02 0.68633929E+00
+ 0.13065349E+02 0.67874011E+00
+ 0.13075353E+02 0.67137429E+00
+ 0.13085357E+02 0.66423025E+00
+ 0.13095360E+02 0.65729727E+00
+ 0.13105364E+02 0.65056538E+00
+ 0.13115368E+02 0.64402531E+00
+ 0.13125372E+02 0.63766844E+00
+ 0.13135375E+02 0.63148674E+00
+ 0.13145379E+02 0.62547268E+00
+ 0.13155383E+02 0.61961921E+00
+ 0.13165387E+02 0.61391973E+00
+ 0.13175390E+02 0.60836801E+00
+ 0.13185394E+02 0.60295821E+00
+ 0.13195398E+02 0.59768481E+00
+ 0.13205402E+02 0.59254260E+00
+ 0.13215405E+02 0.58752667E+00
+ 0.13225409E+02 0.58263238E+00
+ 0.13235413E+02 0.57785533E+00
+ 0.13245417E+02 0.57319136E+00
+ 0.13255420E+02 0.56863653E+00
+ 0.13265424E+02 0.56418711E+00
+ 0.13275428E+02 0.55983955E+00
+ 0.13285432E+02 0.55559047E+00
+ 0.13295435E+02 0.55143667E+00
+ 0.13305439E+02 0.54737509E+00
+ 0.13315443E+02 0.54340282E+00
+ 0.13325447E+02 0.53951707E+00
+ 0.13335450E+02 0.53571521E+00
+ 0.13345454E+02 0.53199469E+00
+ 0.13355458E+02 0.52835309E+00
+ 0.13365462E+02 0.52478809E+00
+ 0.13375465E+02 0.52129747E+00
+ 0.13385469E+02 0.51787911E+00
+ 0.13395473E+02 0.51453096E+00
+ 0.13405477E+02 0.51125107E+00
+ 0.13415481E+02 0.50803756E+00
+ 0.13425484E+02 0.50488862E+00
+ 0.13435488E+02 0.50180253E+00
+ 0.13445492E+02 0.49877762E+00
+ 0.13455496E+02 0.49581228E+00
+ 0.13465499E+02 0.49290497E+00
+ 0.13475503E+02 0.49005420E+00
+ 0.13485507E+02 0.48725853E+00
+ 0.13495511E+02 0.48451657E+00
+ 0.13505514E+02 0.48182700E+00
+ 0.13515518E+02 0.47918851E+00
+ 0.13525522E+02 0.47659987E+00
+ 0.13535526E+02 0.47405986E+00
+ 0.13545529E+02 0.47156731E+00
+ 0.13555533E+02 0.46912110E+00
+ 0.13565537E+02 0.46672013E+00
+ 0.13575541E+02 0.46436334E+00
+ 0.13585544E+02 0.46204971E+00
+ 0.13595548E+02 0.45977823E+00
+ 0.13605552E+02 0.45754793E+00
+ 0.13615556E+02 0.45535787E+00
+ 0.13625559E+02 0.45320715E+00
+ 0.13635563E+02 0.45109487E+00
+ 0.13645567E+02 0.44902016E+00
+ 0.13655571E+02 0.44698218E+00
+ 0.13665574E+02 0.44498012E+00
+ 0.13675578E+02 0.44301317E+00
+ 0.13685582E+02 0.44108055E+00
+ 0.13695586E+02 0.43918150E+00
+ 0.13705589E+02 0.43731528E+00
+ 0.13715593E+02 0.43548116E+00
+ 0.13725597E+02 0.43367844E+00
+ 0.13735601E+02 0.43190641E+00
+ 0.13745604E+02 0.43016439E+00
+ 0.13755608E+02 0.42845173E+00
+ 0.13765612E+02 0.42676777E+00
+ 0.13775616E+02 0.42511187E+00
+ 0.13785619E+02 0.42348339E+00
+ 0.13795623E+02 0.42188173E+00
+ 0.13805627E+02 0.42030627E+00
+ 0.13815631E+02 0.41875642E+00
+ 0.13825634E+02 0.41723159E+00
+ 0.13835638E+02 0.41573121E+00
+ 0.13845642E+02 0.41425469E+00
+ 0.13855646E+02 0.41280148E+00
+ 0.13865649E+02 0.41137103E+00
+ 0.13875653E+02 0.40996279E+00
+ 0.13885657E+02 0.40857620E+00
+ 0.13895661E+02 0.40721074E+00
+ 0.13905664E+02 0.40586588E+00
+ 0.13915668E+02 0.40454109E+00
+ 0.13925672E+02 0.40323585E+00
+ 0.13935676E+02 0.40194965E+00
+ 0.13945679E+02 0.40068196E+00
+ 0.13955683E+02 0.39943228E+00
+ 0.13965687E+02 0.39820011E+00
+ 0.13975691E+02 0.39698494E+00
+ 0.13985694E+02 0.39578627E+00
+ 0.13995698E+02 0.39460360E+00
+ 0.14005702E+02 0.39343644E+00
+ 0.14015706E+02 0.39228429E+00
+ 0.14025709E+02 0.39114665E+00
+ 0.14035713E+02 0.39002304E+00
+ 0.14045717E+02 0.38891295E+00
+ 0.14055721E+02 0.38781591E+00
+ 0.14065724E+02 0.38673141E+00
+ 0.14075728E+02 0.38565898E+00
+ 0.14085732E+02 0.38459811E+00
+ 0.14095736E+02 0.38354833E+00
+ 0.14105739E+02 0.38250914E+00
+ 0.14115743E+02 0.38148006E+00
+ 0.14125747E+02 0.38046060E+00
+ 0.14135751E+02 0.37945027E+00
+ 0.14145754E+02 0.37844859E+00
+ 0.14155758E+02 0.37745506E+00
+ 0.14165762E+02 0.37646921E+00
+ 0.14175766E+02 0.37549054E+00
+ 0.14185769E+02 0.37451855E+00
+ 0.14195773E+02 0.37355277E+00
+ 0.14205777E+02 0.37259270E+00
+ 0.14215781E+02 0.37163784E+00
+ 0.14225784E+02 0.37068772E+00
+ 0.14235788E+02 0.36974186E+00
+ 0.14245792E+02 0.36879976E+00
+ 0.14255796E+02 0.36786097E+00
+ 0.14265799E+02 0.36692502E+00
+ 0.14275803E+02 0.36599145E+00
+ 0.14285807E+02 0.36505980E+00
+ 0.14295811E+02 0.36412962E+00
+ 0.14305814E+02 0.36320045E+00
+ 0.14315818E+02 0.36227184E+00
+ 0.14325822E+02 0.36134333E+00
+ 0.14335826E+02 0.36041443E+00
+ 0.14345829E+02 0.35948469E+00
+ 0.14355833E+02 0.35855363E+00
+ 0.14365837E+02 0.35762081E+00
+ 0.14375841E+02 0.35668581E+00
+ 0.14385844E+02 0.35574824E+00
+ 0.14395848E+02 0.35480778E+00
+ 0.14405852E+02 0.35386414E+00
+ 0.14415856E+02 0.35291707E+00
+ 0.14425859E+02 0.35196634E+00
+ 0.14435863E+02 0.35101169E+00
+ 0.14445867E+02 0.35005280E+00
+ 0.14455871E+02 0.34908923E+00
+ 0.14465874E+02 0.34812045E+00
+ 0.14475878E+02 0.34714581E+00
+ 0.14485882E+02 0.34616467E+00
+ 0.14495886E+02 0.34517647E+00
+ 0.14505890E+02 0.34418096E+00
+ 0.14515893E+02 0.34317833E+00
+ 0.14525897E+02 0.34216930E+00
+ 0.14535901E+02 0.34115505E+00
+ 0.14545905E+02 0.34013687E+00
+ 0.14555908E+02 0.33911557E+00
+ 0.14565912E+02 0.33809074E+00
+ 0.14575916E+02 0.33706002E+00
+ 0.14585920E+02 0.33601904E+00
+ 0.14595923E+02 0.33496230E+00
+ 0.14605927E+02 0.33388546E+00
+ 0.14615931E+02 0.33278880E+00
+ 0.14625935E+02 0.33168045E+00
+ 0.14635938E+02 0.33057732E+00
+ 0.14645942E+02 0.32950073E+00
+ 0.14655946E+02 0.32846528E+00
+ 0.14665950E+02 0.32746304E+00
+ 0.14675953E+02 0.32645022E+00
+ 0.14685957E+02 0.32534713E+00
+ 0.14695961E+02 0.32406363E+00
+ 0.14705965E+02 0.32256574E+00
+ 0.14715968E+02 0.32100144E+00
+ 0.14725972E+02 0.31984001E+00
+ 0.14735976E+02 0.31975286E+00
+ 0.14745980E+02 0.32075284E+00
+ 0.14755983E+02 0.32061288E+00
+ 0.14765987E+02 0.31405630E+00
+ 0.14775991E+02 0.29483229E+00
+ 0.14785995E+02 0.34024335E+00
+ 0.14795998E+02 0.21429946E+00
+ 0.14806002E+02 0.16547958E+00
+ 0.14816006E+02 0.12189176E+00
+ 0.14826010E+02 0.87518009E-01
+ 0.14836013E+02 0.62333605E-01
+ 0.14846017E+02 0.44411350E-01
+ 0.14856021E+02 0.31680189E-01
+ 0.14866025E+02 0.22581441E-01
+ 0.14876028E+02 0.16057439E-01
+ 0.14886032E+02 0.11384376E-01
+ 0.14896036E+02 0.80482168E-02
+ 0.14906040E+02 0.56755964E-02
+ 0.14916043E+02 0.39940340E-02
+ 0.14926047E+02 0.28055629E-02
+ 0.14936051E+02 0.19674229E-02
+ 0.14946055E+02 0.13774066E-02
+ 0.14956058E+02 0.96274173E-03
+ 0.14966062E+02 0.67179484E-03
+ 0.14976066E+02 0.46800405E-03
+ 0.14986070E+02 0.32551288E-03
+ 0.14996073E+02 0.22605839E-03
+ 0.15006077E+02 0.15676091E-03
+ 0.15016081E+02 0.10855447E-03
+ 0.15026085E+02 0.75071091E-04
+ 0.15036088E+02 0.51847544E-04
+ 0.15046092E+02 0.35762131E-04
+ 0.15056096E+02 0.24635594E-04
+ 0.15066100E+02 0.16949187E-04
+ 0.15076103E+02 0.11646112E-04
+ 0.15086107E+02 0.79920582E-05
+ 0.15096111E+02 0.54774766E-05
+ 0.15106115E+02 0.37492526E-05
+ 0.15116118E+02 0.25629981E-05
+ 0.15126122E+02 0.17497950E-05
+ 0.15136126E+02 0.11930423E-05
+ 0.15146130E+02 0.81235747E-06
+ 0.15156133E+02 0.55239879E-06
+ 0.15166137E+02 0.37511345E-06
+ 0.15176141E+02 0.25437015E-06
+ 0.15186145E+02 0.17224704E-06
+ 0.15196148E+02 0.11646824E-06
+ 0.15206152E+02 0.78635986E-07
+ 0.15216156E+02 0.53012840E-07
+ 0.15226160E+02 0.35684098E-07
+ 0.15236163E+02 0.23982280E-07
+ 0.15246167E+02 0.16092246E-07
+ 0.15256171E+02 0.10780574E-07
+ 0.15266175E+02 0.72103256E-08
+ 0.15276178E+02 0.48144272E-08
+ 0.15286182E+02 0.32092254E-08
+ 0.15296186E+02 0.21355562E-08
+ 0.15306190E+02 0.14186213E-08
+ 0.15316193E+02 0.94071149E-09
+ 0.15326197E+02 0.62268864E-09
+ 0.15336201E+02 0.41143414E-09
+ 0.15346205E+02 0.27135343E-09
+ 0.15356208E+02 0.17863519E-09
+ 0.15366212E+02 0.11737804E-09
+ 0.15376216E+02 0.76981568E-10
+ 0.15386220E+02 0.50391691E-10
+ 0.15396223E+02 0.32922744E-10
+ 0.15406227E+02 0.21467970E-10
+ 0.15416231E+02 0.13971310E-10
+ 0.15426235E+02 0.90746123E-11
+ 0.15436238E+02 0.58824423E-11
+ 0.15446242E+02 0.38055730E-11
+ 0.15456246E+02 0.24570250E-11
+ 0.15466250E+02 0.15831455E-11
+ 0.15476253E+02 0.10180019E-11
+ 0.15486257E+02 0.65326260E-12
+ 0.15496261E+02 0.41834412E-12
+ 0.15506265E+02 0.26735085E-12
+ 0.15516268E+02 0.17050104E-12
+ 0.15526272E+02 0.10850902E-12
+ 0.15536276E+02 0.68911848E-13
+ 0.15546280E+02 0.43672432E-13
+ 0.15556283E+02 0.27618660E-13
+ 0.15566287E+02 0.17429144E-13
+ 0.15576291E+02 0.10975504E-13
+ 0.15586295E+02 0.68967524E-14
+ 0.15596299E+02 0.43244771E-14
+ 0.15606302E+02 0.27057551E-14
+ 0.15616306E+02 0.16892992E-14
+ 0.15626310E+02 0.10524107E-14
+ 0.15636314E+02 0.65421729E-15
+ 0.15646317E+02 0.40580224E-15
+ 0.15656321E+02 0.25116560E-15
+ 0.15666325E+02 0.15511611E-15
+ 0.15676329E+02 0.95587805E-16
+ 0.15686332E+02 0.58775281E-16
+ 0.15696336E+02 0.36060479E-16
+ 0.15706340E+02 0.22075510E-16
+ 0.15716344E+02 0.13484365E-16
+ 0.15726347E+02 0.82184283E-17
+ 0.15736351E+02 0.49978555E-17
+ 0.15746355E+02 0.30325882E-17
+ 0.15756359E+02 0.18360151E-17
+ 0.15766362E+02 0.11090993E-17
+ 0.15776366E+02 0.66848916E-18
+ 0.15786370E+02 0.40201899E-18
+ 0.15796374E+02 0.24122681E-18
+ 0.15806377E+02 0.14442090E-18
+ 0.15816381E+02 0.86269785E-19
+ 0.15826385E+02 0.51417435E-19
+ 0.15836389E+02 0.30576237E-19
+ 0.15846392E+02 0.18141726E-19
+ 0.15856396E+02 0.10739725E-19
+ 0.15866400E+02 0.63434691E-20
+ 0.15876404E+02 0.37383403E-20
+ 0.15886407E+02 0.21981048E-20
+ 0.15896411E+02 0.12895400E-20
+ 0.15906415E+02 0.75480962E-21
+ 0.15916419E+02 0.44081416E-21
+ 0.15926422E+02 0.25685527E-21
+ 0.15936426E+02 0.14932607E-21
+ 0.15946430E+02 0.86615639E-22
+ 0.15956434E+02 0.50126782E-22
+ 0.15966437E+02 0.28943794E-22
+ 0.15976441E+02 0.16674486E-22
+ 0.15986445E+02 0.95842918E-23
+ 0.15996449E+02 0.54963875E-23
+ 0.16006452E+02 0.31448759E-23
+ 0.16016456E+02 0.17953024E-23
+ 0.16026460E+02 0.10225361E-23
+ 0.16036464E+02 0.58106619E-24
+ 0.16046467E+02 0.32944083E-24
+ 0.16056471E+02 0.18635155E-24
+ 0.16066475E+02 0.10516984E-24
+ 0.16076479E+02 0.59217614E-25
+ 0.16086482E+02 0.33266791E-25
+ 0.16096486E+02 0.18645330E-25
+ 0.16106490E+02 0.10426228E-25
+ 0.16116494E+02 0.58167607E-26
+ 0.16126497E+02 0.32376576E-26
+ 0.16136501E+02 0.17979403E-26
+ 0.16146505E+02 0.99612367E-27
+ 0.16156509E+02 0.55060975E-27
+ 0.16166512E+02 0.30364511E-27
+ 0.16176516E+02 0.16706275E-27
+ 0.16186520E+02 0.91702916E-28
+ 0.16196524E+02 0.50219947E-28
+ 0.16206527E+02 0.27438375E-28
+ 0.16216531E+02 0.14956472E-28
+ 0.16226535E+02 0.81337014E-29
+ 0.16236539E+02 0.44130152E-29
+ 0.16246542E+02 0.23887499E-29
+ 0.16256546E+02 0.12900129E-29
+ 0.16266550E+02 0.69503343E-30
+ 0.16276554E+02 0.37359920E-30
+ 0.16286557E+02 0.20035269E-30
+ 0.16296561E+02 0.10719485E-30
+ 0.16306565E+02 0.57219344E-31
+ 0.16316569E+02 0.30472124E-31
+ 0.16326572E+02 0.16190280E-31
+ 0.16336576E+02 0.85822005E-32
+ 0.16346580E+02 0.45387543E-32
+ 0.16356584E+02 0.23948013E-32
+ 0.16366587E+02 0.12606608E-32
+ 0.16376591E+02 0.66210082E-33
+ 0.16386595E+02 0.34693522E-33
+ 0.16396599E+02 0.18137286E-33
+ 0.16406602E+02 0.94601304E-34
+ 0.16416606E+02 0.49229357E-34
+ 0.16426610E+02 0.25559637E-34
+ 0.16436614E+02 0.13240060E-34
+ 0.16446617E+02 0.68427578E-35
+ 0.16456621E+02 0.35284140E-35
+ 0.16466625E+02 0.18152488E-35
+ 0.16476629E+02 0.93175584E-36
+ 0.16486632E+02 0.47717577E-36
+ 0.16496636E+02 0.24381804E-36
+ 0.16506640E+02 0.12429832E-36
+ 0.16516644E+02 0.63223331E-37
+ 0.16526647E+02 0.32085051E-37
+ 0.16536651E+02 0.16245826E-37
+ 0.16546655E+02 0.82071978E-38
+ 0.16556659E+02 0.41367781E-38
+ 0.16566662E+02 0.20803855E-38
+ 0.16576666E+02 0.10438535E-38
+ 0.16586670E+02 0.52257553E-39
+ 0.16596674E+02 0.26101892E-39
+ 0.16606677E+02 0.13007889E-39
+ 0.16616681E+02 0.64677260E-40
+ 0.16626685E+02 0.32085127E-40
+ 0.16636689E+02 0.15880527E-40
+ 0.16646692E+02 0.78419365E-41
+ 0.16656696E+02 0.38632619E-41
+ 0.16666700E+02 0.18988369E-41
diff --git a/tests/data/lco_mlwf/lco.win b/tests/data/lco_mlwf/lco.win
new file mode 100644
index 0000000..3c3a2a0
--- /dev/null
+++ b/tests/data/lco_mlwf/lco.win
@@ -0,0 +1,433 @@
+begin unit_cell_cart
+ang
+-1.909144696 1.909144696 6.603098061
+ 1.909144696 -1.909144696 6.603098061
+ 1.909144696 1.909144696 -6.603098061
+end unit_cell_cart
+
+begin atoms_cart
+ang
+La -0.0000000000 -0.0000000000 4.7702839137
+La 1.9091446961 1.9091446961 1.8328141469
+Cu -0.0000000000 -0.0000000000 -0.0000000000
+O -0.0000000000 1.9091446961 0.0000000000
+O 1.9091446961 -0.0000000000 0.0000000000
+O -0.0000000000 -0.0000000000 2.4522239552
+O 1.9091446961 1.9091446961 4.1508741055
+end atoms_cart
+
+! system
+num_wann = 1
+num_bands = 5
+mp_grid 7 7 7
+
+! job control
+exclude_bands : 1-28,34-40
+iprint = 2
+
+! plotting
+wannier_plot = false
+wannier_plot_supercell = 3
+bands_plot = true
+bands_num_points = 100
+bands_plot_format = gnuplot
+write_hr = true
+write_u_matrices = true
+
+! disentanglement
+dis_win_min = 10.0
+dis_win_max = 16.0
+dis_froz_min = 12.3
+dis_froz_max = 16.0
+dis_num_iter = 1000
+dis_conv_tol = 1.0E-12
+!dis_mix_ratio = 0.9
+
+! wannierisation
+num_iter = 1000
+conv_window = 5
+conv_tol = 1e-12
+
+! pp tools
+kpath = false
+kpath_task = bands
+kpath_bands_colour = spin
+kpath_num_points=500
+begin kpoint_path
+ G 0.00 0.00 0.00 N 0.25 -0.25 0.25
+ N 0.25 -0.25 0.25 X 0.00 0.00 0.50
+ X 0.00 0.00 0.50 G 0.00 0.00 0.00
+ G 0.00 0.00 0.00 M 0.25 0.25 -0.25
+end kpoint_path
+
+kslice = false
+kslice_task = fermi_lines
+fermi_energy = 11.375
+kslice_2dkmesh = 200 200
+kslice_corner = 0.00 0.00 0.00
+!kslice_b1 = -0.27259 0.27259 0.27259
+!kslice_b2 = 0.27259 -0.27259 0.27259
+kslice_b1 = -0.25 0.25 0.25
+kslice_b2 = 0.25 -0.25 0.25
+!kslice_b1 = 0.00 0.50 0.00
+!kslice_b2 = 0.50 0.00 0.00
+!kslice_fermi_lines_colour = spin
+
+dos = true
+dos_project = 1
+!dos_energy_min = 8.
+!dos_energy_max = 13.
+dos_kmesh = 50
+!dos_adpt_smr = false
+!dos_smr_type = gauss
+!dos_smr_fixed_en_width = 0.05
+
+begin projections
+Cu:dx2-y2:x=1,0,0
+end projections
+
+begin kpoints
+ 0.00000000 0.00000000 0.00000000
+ 0.00000000 0.00000000 0.14285714
+ 0.00000000 0.00000000 0.28571429
+ 0.00000000 0.00000000 0.42857143
+ 0.00000000 0.00000000 0.57142857
+ 0.00000000 0.00000000 0.71428571
+ 0.00000000 0.00000000 0.85714286
+ 0.00000000 0.14285714 0.00000000
+ 0.00000000 0.14285714 0.14285714
+ 0.00000000 0.14285714 0.28571429
+ 0.00000000 0.14285714 0.42857143
+ 0.00000000 0.14285714 0.57142857
+ 0.00000000 0.14285714 0.71428571
+ 0.00000000 0.14285714 0.85714286
+ 0.00000000 0.28571429 0.00000000
+ 0.00000000 0.28571429 0.14285714
+ 0.00000000 0.28571429 0.28571429
+ 0.00000000 0.28571429 0.42857143
+ 0.00000000 0.28571429 0.57142857
+ 0.00000000 0.28571429 0.71428571
+ 0.00000000 0.28571429 0.85714286
+ 0.00000000 0.42857143 0.00000000
+ 0.00000000 0.42857143 0.14285714
+ 0.00000000 0.42857143 0.28571429
+ 0.00000000 0.42857143 0.42857143
+ 0.00000000 0.42857143 0.57142857
+ 0.00000000 0.42857143 0.71428571
+ 0.00000000 0.42857143 0.85714286
+ 0.00000000 0.57142857 0.00000000
+ 0.00000000 0.57142857 0.14285714
+ 0.00000000 0.57142857 0.28571429
+ 0.00000000 0.57142857 0.42857143
+ 0.00000000 0.57142857 0.57142857
+ 0.00000000 0.57142857 0.71428571
+ 0.00000000 0.57142857 0.85714286
+ 0.00000000 0.71428571 0.00000000
+ 0.00000000 0.71428571 0.14285714
+ 0.00000000 0.71428571 0.28571429
+ 0.00000000 0.71428571 0.42857143
+ 0.00000000 0.71428571 0.57142857
+ 0.00000000 0.71428571 0.71428571
+ 0.00000000 0.71428571 0.85714286
+ 0.00000000 0.85714286 0.00000000
+ 0.00000000 0.85714286 0.14285714
+ 0.00000000 0.85714286 0.28571429
+ 0.00000000 0.85714286 0.42857143
+ 0.00000000 0.85714286 0.57142857
+ 0.00000000 0.85714286 0.71428571
+ 0.00000000 0.85714286 0.85714286
+ 0.14285714 0.00000000 0.00000000
+ 0.14285714 0.00000000 0.14285714
+ 0.14285714 0.00000000 0.28571429
+ 0.14285714 0.00000000 0.42857143
+ 0.14285714 0.00000000 0.57142857
+ 0.14285714 0.00000000 0.71428571
+ 0.14285714 0.00000000 0.85714286
+ 0.14285714 0.14285714 0.00000000
+ 0.14285714 0.14285714 0.14285714
+ 0.14285714 0.14285714 0.28571429
+ 0.14285714 0.14285714 0.42857143
+ 0.14285714 0.14285714 0.57142857
+ 0.14285714 0.14285714 0.71428571
+ 0.14285714 0.14285714 0.85714286
+ 0.14285714 0.28571429 0.00000000
+ 0.14285714 0.28571429 0.14285714
+ 0.14285714 0.28571429 0.28571429
+ 0.14285714 0.28571429 0.42857143
+ 0.14285714 0.28571429 0.57142857
+ 0.14285714 0.28571429 0.71428571
+ 0.14285714 0.28571429 0.85714286
+ 0.14285714 0.42857143 0.00000000
+ 0.14285714 0.42857143 0.14285714
+ 0.14285714 0.42857143 0.28571429
+ 0.14285714 0.42857143 0.42857143
+ 0.14285714 0.42857143 0.57142857
+ 0.14285714 0.42857143 0.71428571
+ 0.14285714 0.42857143 0.85714286
+ 0.14285714 0.57142857 0.00000000
+ 0.14285714 0.57142857 0.14285714
+ 0.14285714 0.57142857 0.28571429
+ 0.14285714 0.57142857 0.42857143
+ 0.14285714 0.57142857 0.57142857
+ 0.14285714 0.57142857 0.71428571
+ 0.14285714 0.57142857 0.85714286
+ 0.14285714 0.71428571 0.00000000
+ 0.14285714 0.71428571 0.14285714
+ 0.14285714 0.71428571 0.28571429
+ 0.14285714 0.71428571 0.42857143
+ 0.14285714 0.71428571 0.57142857
+ 0.14285714 0.71428571 0.71428571
+ 0.14285714 0.71428571 0.85714286
+ 0.14285714 0.85714286 0.00000000
+ 0.14285714 0.85714286 0.14285714
+ 0.14285714 0.85714286 0.28571429
+ 0.14285714 0.85714286 0.42857143
+ 0.14285714 0.85714286 0.57142857
+ 0.14285714 0.85714286 0.71428571
+ 0.14285714 0.85714286 0.85714286
+ 0.28571429 0.00000000 0.00000000
+ 0.28571429 0.00000000 0.14285714
+ 0.28571429 0.00000000 0.28571429
+ 0.28571429 0.00000000 0.42857143
+ 0.28571429 0.00000000 0.57142857
+ 0.28571429 0.00000000 0.71428571
+ 0.28571429 0.00000000 0.85714286
+ 0.28571429 0.14285714 0.00000000
+ 0.28571429 0.14285714 0.14285714
+ 0.28571429 0.14285714 0.28571429
+ 0.28571429 0.14285714 0.42857143
+ 0.28571429 0.14285714 0.57142857
+ 0.28571429 0.14285714 0.71428571
+ 0.28571429 0.14285714 0.85714286
+ 0.28571429 0.28571429 0.00000000
+ 0.28571429 0.28571429 0.14285714
+ 0.28571429 0.28571429 0.28571429
+ 0.28571429 0.28571429 0.42857143
+ 0.28571429 0.28571429 0.57142857
+ 0.28571429 0.28571429 0.71428571
+ 0.28571429 0.28571429 0.85714286
+ 0.28571429 0.42857143 0.00000000
+ 0.28571429 0.42857143 0.14285714
+ 0.28571429 0.42857143 0.28571429
+ 0.28571429 0.42857143 0.42857143
+ 0.28571429 0.42857143 0.57142857
+ 0.28571429 0.42857143 0.71428571
+ 0.28571429 0.42857143 0.85714286
+ 0.28571429 0.57142857 0.00000000
+ 0.28571429 0.57142857 0.14285714
+ 0.28571429 0.57142857 0.28571429
+ 0.28571429 0.57142857 0.42857143
+ 0.28571429 0.57142857 0.57142857
+ 0.28571429 0.57142857 0.71428571
+ 0.28571429 0.57142857 0.85714286
+ 0.28571429 0.71428571 0.00000000
+ 0.28571429 0.71428571 0.14285714
+ 0.28571429 0.71428571 0.28571429
+ 0.28571429 0.71428571 0.42857143
+ 0.28571429 0.71428571 0.57142857
+ 0.28571429 0.71428571 0.71428571
+ 0.28571429 0.71428571 0.85714286
+ 0.28571429 0.85714286 0.00000000
+ 0.28571429 0.85714286 0.14285714
+ 0.28571429 0.85714286 0.28571429
+ 0.28571429 0.85714286 0.42857143
+ 0.28571429 0.85714286 0.57142857
+ 0.28571429 0.85714286 0.71428571
+ 0.28571429 0.85714286 0.85714286
+ 0.42857143 0.00000000 0.00000000
+ 0.42857143 0.00000000 0.14285714
+ 0.42857143 0.00000000 0.28571429
+ 0.42857143 0.00000000 0.42857143
+ 0.42857143 0.00000000 0.57142857
+ 0.42857143 0.00000000 0.71428571
+ 0.42857143 0.00000000 0.85714286
+ 0.42857143 0.14285714 0.00000000
+ 0.42857143 0.14285714 0.14285714
+ 0.42857143 0.14285714 0.28571429
+ 0.42857143 0.14285714 0.42857143
+ 0.42857143 0.14285714 0.57142857
+ 0.42857143 0.14285714 0.71428571
+ 0.42857143 0.14285714 0.85714286
+ 0.42857143 0.28571429 0.00000000
+ 0.42857143 0.28571429 0.14285714
+ 0.42857143 0.28571429 0.28571429
+ 0.42857143 0.28571429 0.42857143
+ 0.42857143 0.28571429 0.57142857
+ 0.42857143 0.28571429 0.71428571
+ 0.42857143 0.28571429 0.85714286
+ 0.42857143 0.42857143 0.00000000
+ 0.42857143 0.42857143 0.14285714
+ 0.42857143 0.42857143 0.28571429
+ 0.42857143 0.42857143 0.42857143
+ 0.42857143 0.42857143 0.57142857
+ 0.42857143 0.42857143 0.71428571
+ 0.42857143 0.42857143 0.85714286
+ 0.42857143 0.57142857 0.00000000
+ 0.42857143 0.57142857 0.14285714
+ 0.42857143 0.57142857 0.28571429
+ 0.42857143 0.57142857 0.42857143
+ 0.42857143 0.57142857 0.57142857
+ 0.42857143 0.57142857 0.71428571
+ 0.42857143 0.57142857 0.85714286
+ 0.42857143 0.71428571 0.00000000
+ 0.42857143 0.71428571 0.14285714
+ 0.42857143 0.71428571 0.28571429
+ 0.42857143 0.71428571 0.42857143
+ 0.42857143 0.71428571 0.57142857
+ 0.42857143 0.71428571 0.71428571
+ 0.42857143 0.71428571 0.85714286
+ 0.42857143 0.85714286 0.00000000
+ 0.42857143 0.85714286 0.14285714
+ 0.42857143 0.85714286 0.28571429
+ 0.42857143 0.85714286 0.42857143
+ 0.42857143 0.85714286 0.57142857
+ 0.42857143 0.85714286 0.71428571
+ 0.42857143 0.85714286 0.85714286
+ 0.57142857 0.00000000 0.00000000
+ 0.57142857 0.00000000 0.14285714
+ 0.57142857 0.00000000 0.28571429
+ 0.57142857 0.00000000 0.42857143
+ 0.57142857 0.00000000 0.57142857
+ 0.57142857 0.00000000 0.71428571
+ 0.57142857 0.00000000 0.85714286
+ 0.57142857 0.14285714 0.00000000
+ 0.57142857 0.14285714 0.14285714
+ 0.57142857 0.14285714 0.28571429
+ 0.57142857 0.14285714 0.42857143
+ 0.57142857 0.14285714 0.57142857
+ 0.57142857 0.14285714 0.71428571
+ 0.57142857 0.14285714 0.85714286
+ 0.57142857 0.28571429 0.00000000
+ 0.57142857 0.28571429 0.14285714
+ 0.57142857 0.28571429 0.28571429
+ 0.57142857 0.28571429 0.42857143
+ 0.57142857 0.28571429 0.57142857
+ 0.57142857 0.28571429 0.71428571
+ 0.57142857 0.28571429 0.85714286
+ 0.57142857 0.42857143 0.00000000
+ 0.57142857 0.42857143 0.14285714
+ 0.57142857 0.42857143 0.28571429
+ 0.57142857 0.42857143 0.42857143
+ 0.57142857 0.42857143 0.57142857
+ 0.57142857 0.42857143 0.71428571
+ 0.57142857 0.42857143 0.85714286
+ 0.57142857 0.57142857 0.00000000
+ 0.57142857 0.57142857 0.14285714
+ 0.57142857 0.57142857 0.28571429
+ 0.57142857 0.57142857 0.42857143
+ 0.57142857 0.57142857 0.57142857
+ 0.57142857 0.57142857 0.71428571
+ 0.57142857 0.57142857 0.85714286
+ 0.57142857 0.71428571 0.00000000
+ 0.57142857 0.71428571 0.14285714
+ 0.57142857 0.71428571 0.28571429
+ 0.57142857 0.71428571 0.42857143
+ 0.57142857 0.71428571 0.57142857
+ 0.57142857 0.71428571 0.71428571
+ 0.57142857 0.71428571 0.85714286
+ 0.57142857 0.85714286 0.00000000
+ 0.57142857 0.85714286 0.14285714
+ 0.57142857 0.85714286 0.28571429
+ 0.57142857 0.85714286 0.42857143
+ 0.57142857 0.85714286 0.57142857
+ 0.57142857 0.85714286 0.71428571
+ 0.57142857 0.85714286 0.85714286
+ 0.71428571 0.00000000 0.00000000
+ 0.71428571 0.00000000 0.14285714
+ 0.71428571 0.00000000 0.28571429
+ 0.71428571 0.00000000 0.42857143
+ 0.71428571 0.00000000 0.57142857
+ 0.71428571 0.00000000 0.71428571
+ 0.71428571 0.00000000 0.85714286
+ 0.71428571 0.14285714 0.00000000
+ 0.71428571 0.14285714 0.14285714
+ 0.71428571 0.14285714 0.28571429
+ 0.71428571 0.14285714 0.42857143
+ 0.71428571 0.14285714 0.57142857
+ 0.71428571 0.14285714 0.71428571
+ 0.71428571 0.14285714 0.85714286
+ 0.71428571 0.28571429 0.00000000
+ 0.71428571 0.28571429 0.14285714
+ 0.71428571 0.28571429 0.28571429
+ 0.71428571 0.28571429 0.42857143
+ 0.71428571 0.28571429 0.57142857
+ 0.71428571 0.28571429 0.71428571
+ 0.71428571 0.28571429 0.85714286
+ 0.71428571 0.42857143 0.00000000
+ 0.71428571 0.42857143 0.14285714
+ 0.71428571 0.42857143 0.28571429
+ 0.71428571 0.42857143 0.42857143
+ 0.71428571 0.42857143 0.57142857
+ 0.71428571 0.42857143 0.71428571
+ 0.71428571 0.42857143 0.85714286
+ 0.71428571 0.57142857 0.00000000
+ 0.71428571 0.57142857 0.14285714
+ 0.71428571 0.57142857 0.28571429
+ 0.71428571 0.57142857 0.42857143
+ 0.71428571 0.57142857 0.57142857
+ 0.71428571 0.57142857 0.71428571
+ 0.71428571 0.57142857 0.85714286
+ 0.71428571 0.71428571 0.00000000
+ 0.71428571 0.71428571 0.14285714
+ 0.71428571 0.71428571 0.28571429
+ 0.71428571 0.71428571 0.42857143
+ 0.71428571 0.71428571 0.57142857
+ 0.71428571 0.71428571 0.71428571
+ 0.71428571 0.71428571 0.85714286
+ 0.71428571 0.85714286 0.00000000
+ 0.71428571 0.85714286 0.14285714
+ 0.71428571 0.85714286 0.28571429
+ 0.71428571 0.85714286 0.42857143
+ 0.71428571 0.85714286 0.57142857
+ 0.71428571 0.85714286 0.71428571
+ 0.71428571 0.85714286 0.85714286
+ 0.85714286 0.00000000 0.00000000
+ 0.85714286 0.00000000 0.14285714
+ 0.85714286 0.00000000 0.28571429
+ 0.85714286 0.00000000 0.42857143
+ 0.85714286 0.00000000 0.57142857
+ 0.85714286 0.00000000 0.71428571
+ 0.85714286 0.00000000 0.85714286
+ 0.85714286 0.14285714 0.00000000
+ 0.85714286 0.14285714 0.14285714
+ 0.85714286 0.14285714 0.28571429
+ 0.85714286 0.14285714 0.42857143
+ 0.85714286 0.14285714 0.57142857
+ 0.85714286 0.14285714 0.71428571
+ 0.85714286 0.14285714 0.85714286
+ 0.85714286 0.28571429 0.00000000
+ 0.85714286 0.28571429 0.14285714
+ 0.85714286 0.28571429 0.28571429
+ 0.85714286 0.28571429 0.42857143
+ 0.85714286 0.28571429 0.57142857
+ 0.85714286 0.28571429 0.71428571
+ 0.85714286 0.28571429 0.85714286
+ 0.85714286 0.42857143 0.00000000
+ 0.85714286 0.42857143 0.14285714
+ 0.85714286 0.42857143 0.28571429
+ 0.85714286 0.42857143 0.42857143
+ 0.85714286 0.42857143 0.57142857
+ 0.85714286 0.42857143 0.71428571
+ 0.85714286 0.42857143 0.85714286
+ 0.85714286 0.57142857 0.00000000
+ 0.85714286 0.57142857 0.14285714
+ 0.85714286 0.57142857 0.28571429
+ 0.85714286 0.57142857 0.42857143
+ 0.85714286 0.57142857 0.57142857
+ 0.85714286 0.57142857 0.71428571
+ 0.85714286 0.57142857 0.85714286
+ 0.85714286 0.71428571 0.00000000
+ 0.85714286 0.71428571 0.14285714
+ 0.85714286 0.71428571 0.28571429
+ 0.85714286 0.71428571 0.42857143
+ 0.85714286 0.71428571 0.57142857
+ 0.85714286 0.71428571 0.71428571
+ 0.85714286 0.71428571 0.85714286
+ 0.85714286 0.85714286 0.00000000
+ 0.85714286 0.85714286 0.14285714
+ 0.85714286 0.85714286 0.28571429
+ 0.85714286 0.85714286 0.42857143
+ 0.85714286 0.85714286 0.57142857
+ 0.85714286 0.85714286 0.71428571
+ 0.85714286 0.85714286 0.85714286
+end kpoints
diff --git a/tests/data/lco_mlwf/lco.wout b/tests/data/lco_mlwf/lco.wout
new file mode 100644
index 0000000..ca771f7
--- /dev/null
+++ b/tests/data/lco_mlwf/lco.wout
@@ -0,0 +1,1253 @@
+
+ +---------------------------------------------------+
+ | |
+ | WANNIER90 |
+ | |
+ +---------------------------------------------------+
+ | |
+ | Welcome to the Maximally-Localized |
+ | Generalized Wannier Functions code |
+ | http://www.wannier.org |
+ | |
+ | |
+ | Wannier90 Developer Group: |
+ | Giovanni Pizzi (EPFL) |
+ | Valerio Vitale (Cambridge) |
+ | David Vanderbilt (Rutgers University) |
+ | Nicola Marzari (EPFL) |
+ | Ivo Souza (Universidad del Pais Vasco) |
+ | Arash A. Mostofi (Imperial College London) |
+ | Jonathan R. Yates (University of Oxford) |
+ | |
+ | For the full list of Wannier90 3.x authors, |
+ | please check the code documentation and the |
+ | README on the GitHub page of the code |
+ | |
+ | |
+ | Please cite |
+ | |
+ | [ref] "Wannier90 as a community code: |
+ | new features and applications", |
+ | G. Pizzi et al., J. Phys. Cond. Matt. 32, |
+ | 165902 (2020). |
+ | http://doi.org/10.1088/1361-648X/ab51ff |
+ | |
+ | in any publications arising from the use of |
+ | this code. For the method please cite |
+ | |
+ | [ref] "Maximally Localized Generalised Wannier |
+ | Functions for Composite Energy Bands" |
+ | N. Marzari and D. Vanderbilt |
+ | Phys. Rev. B 56 12847 (1997) |
+ | |
+ | [ref] "Maximally Localized Wannier Functions |
+ | for Entangled Energy Bands" |
+ | I. Souza, N. Marzari and D. Vanderbilt |
+ | Phys. Rev. B 65 035109 (2001) |
+ | |
+ | |
+ | Copyright (c) 1996-2020 |
+ | The Wannier90 Developer Group and |
+ | individual contributors |
+ | |
+ | Release: 3.1.0 5th March 2020 |
+ | |
+ | This program is free software; you can |
+ | redistribute it and/or modify it under the terms |
+ | of the GNU General Public License as published by |
+ | the Free Software Foundation; either version 2 of |
+ | the License, or (at your option) any later version|
+ | |
+ | This program is distributed in the hope that it |
+ | will be useful, but WITHOUT ANY WARRANTY; without |
+ | even the implied warranty of MERCHANTABILITY or |
+ | FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
+ | General Public License for more details. |
+ | |
+ | You should have received a copy of the GNU General|
+ | Public License along with this program; if not, |
+ | write to the Free Software Foundation, Inc., |
+ | 675 Mass Ave, Cambridge, MA 02139, USA. |
+ | |
+ +---------------------------------------------------+
+ | Execution started on 3May2022 at 14:04:17 |
+ +---------------------------------------------------+
+
+ ******************************************************************************
+ * -> Using CODATA 2006 constant values *
+ * (http://physics.nist.gov/cuu/Constants/index.html) *
+ * -> Using Bohr value from CODATA *
+ ******************************************************************************
+
+
+ Running in serial (with parallel executable)
+
+ ------
+ SYSTEM
+ ------
+
+ Lattice Vectors (Ang)
+ a_1 -1.909145 1.909145 6.603098
+ a_2 1.909145 -1.909145 6.603098
+ a_3 1.909145 1.909145 -6.603098
+
+ Unit Cell Volume: 96.26877 (Ang^3)
+
+ Reciprocal-Space Vectors (Ang^-1)
+ b_1 -0.000000 1.645550 0.475776
+ b_2 1.645550 -0.000000 0.475776
+ b_3 1.645550 1.645550 -0.000000
+
+ *----------------------------------------------------------------------------*
+ | Site Fractional Coordinate Cartesian Coordinate (Ang) |
+ +----------------------------------------------------------------------------+
+ | La 1 0.36122 0.36122 -0.00000 | -0.00000 -0.00000 4.77028 |
+ | La 2 0.63878 0.63878 1.00000 | 1.90914 1.90914 1.83281 |
+ | Cu 1 0.00000 0.00000 0.00000 | -0.00000 -0.00000 -0.00000 |
+ | O 1 0.50000 -0.00000 0.50000 | -0.00000 1.90914 0.00000 |
+ | O 2 -0.00000 0.50000 0.50000 | 1.90914 -0.00000 0.00000 |
+ | O 3 0.18569 0.18569 -0.00000 | -0.00000 -0.00000 2.45222 |
+ | O 4 0.81431 0.81431 1.00000 | 1.90914 1.90914 4.15087 |
+ *----------------------------------------------------------------------------*
+ -----------
+ PROJECTIONS
+ -----------
+
+ +----------------------------------------------------------------------------+
+ | Frac. Coord. l mr r z-axis x-axis Z/a |
+ +----------------------------------------------------------------------------+
+ | 0.00 0.00 0.00 2 4 1 0.000 0.000 1.000 1.000 0.000 0.000 1.0 |
+ +----------------------------------------------------------------------------+
+
+ ------------
+ K-POINT GRID
+ ------------
+
+ Grid size = 7 x 7 x 7 Total points = 343
+
+ *----------------------------------------------------------------------------*
+ | k-point Fractional Coordinate Cartesian Coordinate (Ang^-1) |
+ +----------------------------------------------------------------------------+
+ | 1 0.00000 0.00000 0.00000 | 0.00000 0.00000 0.00000 |
+ | 2 0.00000 0.00000 0.14286 | 0.23508 0.23508 -0.00000 |
+ | 3 0.00000 0.00000 0.28571 | 0.47016 0.47016 -0.00000 |
+ | 4 0.00000 0.00000 0.42857 | 0.70524 0.70524 -0.00000 |
+ | 5 0.00000 0.00000 0.57143 | 0.94031 0.94031 -0.00000 |
+ | 6 0.00000 0.00000 0.71429 | 1.17539 1.17539 -0.00000 |
+ | 7 0.00000 0.00000 0.85714 | 1.41047 1.41047 -0.00000 |
+ | 8 0.00000 0.14286 0.00000 | 0.23508 -0.00000 0.06797 |
+ | 9 0.00000 0.14286 0.14286 | 0.47016 0.23508 0.06797 |
+ | 10 0.00000 0.14286 0.28571 | 0.70524 0.47016 0.06797 |
+ | 11 0.00000 0.14286 0.42857 | 0.94031 0.70524 0.06797 |
+ | 12 0.00000 0.14286 0.57143 | 1.17539 0.94031 0.06797 |
+ | 13 0.00000 0.14286 0.71429 | 1.41047 1.17539 0.06797 |
+ | 14 0.00000 0.14286 0.85714 | 1.64555 1.41047 0.06797 |
+ | 15 0.00000 0.28571 0.00000 | 0.47016 -0.00000 0.13594 |
+ | 16 0.00000 0.28571 0.14286 | 0.70524 0.23508 0.13594 |
+ | 17 0.00000 0.28571 0.28571 | 0.94031 0.47016 0.13594 |
+ | 18 0.00000 0.28571 0.42857 | 1.17539 0.70524 0.13594 |
+ | 19 0.00000 0.28571 0.57143 | 1.41047 0.94031 0.13594 |
+ | 20 0.00000 0.28571 0.71429 | 1.64555 1.17539 0.13594 |
+ | 21 0.00000 0.28571 0.85714 | 1.88063 1.41047 0.13594 |
+ | 22 0.00000 0.42857 0.00000 | 0.70524 -0.00000 0.20390 |
+ | 23 0.00000 0.42857 0.14286 | 0.94031 0.23508 0.20390 |
+ | 24 0.00000 0.42857 0.28571 | 1.17539 0.47016 0.20390 |
+ | 25 0.00000 0.42857 0.42857 | 1.41047 0.70524 0.20390 |
+ | 26 0.00000 0.42857 0.57143 | 1.64555 0.94031 0.20390 |
+ | 27 0.00000 0.42857 0.71429 | 1.88063 1.17539 0.20390 |
+ | 28 0.00000 0.42857 0.85714 | 2.11571 1.41047 0.20390 |
+ | 29 0.00000 0.57143 0.00000 | 0.94031 -0.00000 0.27187 |
+ | 30 0.00000 0.57143 0.14286 | 1.17539 0.23508 0.27187 |
+ | 31 0.00000 0.57143 0.28571 | 1.41047 0.47016 0.27187 |
+ | 32 0.00000 0.57143 0.42857 | 1.64555 0.70524 0.27187 |
+ | 33 0.00000 0.57143 0.57143 | 1.88063 0.94031 0.27187 |
+ | 34 0.00000 0.57143 0.71429 | 2.11571 1.17539 0.27187 |
+ | 35 0.00000 0.57143 0.85714 | 2.35079 1.41047 0.27187 |
+ | 36 0.00000 0.71429 0.00000 | 1.17539 -0.00000 0.33984 |
+ | 37 0.00000 0.71429 0.14286 | 1.41047 0.23508 0.33984 |
+ | 38 0.00000 0.71429 0.28571 | 1.64555 0.47016 0.33984 |
+ | 39 0.00000 0.71429 0.42857 | 1.88063 0.70524 0.33984 |
+ | 40 0.00000 0.71429 0.57143 | 2.11571 0.94031 0.33984 |
+ | 41 0.00000 0.71429 0.71429 | 2.35079 1.17539 0.33984 |
+ | 42 0.00000 0.71429 0.85714 | 2.58586 1.41047 0.33984 |
+ | 43 0.00000 0.85714 0.00000 | 1.41047 -0.00000 0.40781 |
+ | 44 0.00000 0.85714 0.14286 | 1.64555 0.23508 0.40781 |
+ | 45 0.00000 0.85714 0.28571 | 1.88063 0.47016 0.40781 |
+ | 46 0.00000 0.85714 0.42857 | 2.11571 0.70524 0.40781 |
+ | 47 0.00000 0.85714 0.57143 | 2.35079 0.94031 0.40781 |
+ | 48 0.00000 0.85714 0.71429 | 2.58586 1.17539 0.40781 |
+ | 49 0.00000 0.85714 0.85714 | 2.82094 1.41047 0.40781 |
+ | 50 0.14286 0.00000 0.00000 | -0.00000 0.23508 0.06797 |
+ | 51 0.14286 0.00000 0.14286 | 0.23508 0.47016 0.06797 |
+ | 52 0.14286 0.00000 0.28571 | 0.47016 0.70524 0.06797 |
+ | 53 0.14286 0.00000 0.42857 | 0.70524 0.94031 0.06797 |
+ | 54 0.14286 0.00000 0.57143 | 0.94031 1.17539 0.06797 |
+ | 55 0.14286 0.00000 0.71429 | 1.17539 1.41047 0.06797 |
+ | 56 0.14286 0.00000 0.85714 | 1.41047 1.64555 0.06797 |
+ | 57 0.14286 0.14286 0.00000 | 0.23508 0.23508 0.13594 |
+ | 58 0.14286 0.14286 0.14286 | 0.47016 0.47016 0.13594 |
+ | 59 0.14286 0.14286 0.28571 | 0.70524 0.70524 0.13594 |
+ | 60 0.14286 0.14286 0.42857 | 0.94031 0.94031 0.13594 |
+ | 61 0.14286 0.14286 0.57143 | 1.17539 1.17539 0.13594 |
+ | 62 0.14286 0.14286 0.71429 | 1.41047 1.41047 0.13594 |
+ | 63 0.14286 0.14286 0.85714 | 1.64555 1.64555 0.13594 |
+ | 64 0.14286 0.28571 0.00000 | 0.47016 0.23508 0.20390 |
+ | 65 0.14286 0.28571 0.14286 | 0.70524 0.47016 0.20390 |
+ | 66 0.14286 0.28571 0.28571 | 0.94031 0.70524 0.20390 |
+ | 67 0.14286 0.28571 0.42857 | 1.17539 0.94031 0.20390 |
+ | 68 0.14286 0.28571 0.57143 | 1.41047 1.17539 0.20390 |
+ | 69 0.14286 0.28571 0.71429 | 1.64555 1.41047 0.20390 |
+ | 70 0.14286 0.28571 0.85714 | 1.88063 1.64555 0.20390 |
+ | 71 0.14286 0.42857 0.00000 | 0.70524 0.23508 0.27187 |
+ | 72 0.14286 0.42857 0.14286 | 0.94031 0.47016 0.27187 |
+ | 73 0.14286 0.42857 0.28571 | 1.17539 0.70524 0.27187 |
+ | 74 0.14286 0.42857 0.42857 | 1.41047 0.94031 0.27187 |
+ | 75 0.14286 0.42857 0.57143 | 1.64555 1.17539 0.27187 |
+ | 76 0.14286 0.42857 0.71429 | 1.88063 1.41047 0.27187 |
+ | 77 0.14286 0.42857 0.85714 | 2.11571 1.64555 0.27187 |
+ | 78 0.14286 0.57143 0.00000 | 0.94031 0.23508 0.33984 |
+ | 79 0.14286 0.57143 0.14286 | 1.17539 0.47016 0.33984 |
+ | 80 0.14286 0.57143 0.28571 | 1.41047 0.70524 0.33984 |
+ | 81 0.14286 0.57143 0.42857 | 1.64555 0.94031 0.33984 |
+ | 82 0.14286 0.57143 0.57143 | 1.88063 1.17539 0.33984 |
+ | 83 0.14286 0.57143 0.71429 | 2.11571 1.41047 0.33984 |
+ | 84 0.14286 0.57143 0.85714 | 2.35079 1.64555 0.33984 |
+ | 85 0.14286 0.71429 0.00000 | 1.17539 0.23508 0.40781 |
+ | 86 0.14286 0.71429 0.14286 | 1.41047 0.47016 0.40781 |
+ | 87 0.14286 0.71429 0.28571 | 1.64555 0.70524 0.40781 |
+ | 88 0.14286 0.71429 0.42857 | 1.88063 0.94031 0.40781 |
+ | 89 0.14286 0.71429 0.57143 | 2.11571 1.17539 0.40781 |
+ | 90 0.14286 0.71429 0.71429 | 2.35079 1.41047 0.40781 |
+ | 91 0.14286 0.71429 0.85714 | 2.58586 1.64555 0.40781 |
+ | 92 0.14286 0.85714 0.00000 | 1.41047 0.23508 0.47578 |
+ | 93 0.14286 0.85714 0.14286 | 1.64555 0.47016 0.47578 |
+ | 94 0.14286 0.85714 0.28571 | 1.88063 0.70524 0.47578 |
+ | 95 0.14286 0.85714 0.42857 | 2.11571 0.94031 0.47578 |
+ | 96 0.14286 0.85714 0.57143 | 2.35079 1.17539 0.47578 |
+ | 97 0.14286 0.85714 0.71429 | 2.58586 1.41047 0.47578 |
+ | 98 0.14286 0.85714 0.85714 | 2.82094 1.64555 0.47578 |
+ | 99 0.28571 0.00000 0.00000 | -0.00000 0.47016 0.13594 |
+ | 100 0.28571 0.00000 0.14286 | 0.23508 0.70524 0.13594 |
+ | 101 0.28571 0.00000 0.28571 | 0.47016 0.94031 0.13594 |
+ | 102 0.28571 0.00000 0.42857 | 0.70524 1.17539 0.13594 |
+ | 103 0.28571 0.00000 0.57143 | 0.94031 1.41047 0.13594 |
+ | 104 0.28571 0.00000 0.71429 | 1.17539 1.64555 0.13594 |
+ | 105 0.28571 0.00000 0.85714 | 1.41047 1.88063 0.13594 |
+ | 106 0.28571 0.14286 0.00000 | 0.23508 0.47016 0.20390 |
+ | 107 0.28571 0.14286 0.14286 | 0.47016 0.70524 0.20390 |
+ | 108 0.28571 0.14286 0.28571 | 0.70524 0.94031 0.20390 |
+ | 109 0.28571 0.14286 0.42857 | 0.94031 1.17539 0.20390 |
+ | 110 0.28571 0.14286 0.57143 | 1.17539 1.41047 0.20390 |
+ | 111 0.28571 0.14286 0.71429 | 1.41047 1.64555 0.20390 |
+ | 112 0.28571 0.14286 0.85714 | 1.64555 1.88063 0.20390 |
+ | 113 0.28571 0.28571 0.00000 | 0.47016 0.47016 0.27187 |
+ | 114 0.28571 0.28571 0.14286 | 0.70524 0.70524 0.27187 |
+ | 115 0.28571 0.28571 0.28571 | 0.94031 0.94031 0.27187 |
+ | 116 0.28571 0.28571 0.42857 | 1.17539 1.17539 0.27187 |
+ | 117 0.28571 0.28571 0.57143 | 1.41047 1.41047 0.27187 |
+ | 118 0.28571 0.28571 0.71429 | 1.64555 1.64555 0.27187 |
+ | 119 0.28571 0.28571 0.85714 | 1.88063 1.88063 0.27187 |
+ | 120 0.28571 0.42857 0.00000 | 0.70524 0.47016 0.33984 |
+ | 121 0.28571 0.42857 0.14286 | 0.94031 0.70524 0.33984 |
+ | 122 0.28571 0.42857 0.28571 | 1.17539 0.94031 0.33984 |
+ | 123 0.28571 0.42857 0.42857 | 1.41047 1.17539 0.33984 |
+ | 124 0.28571 0.42857 0.57143 | 1.64555 1.41047 0.33984 |
+ | 125 0.28571 0.42857 0.71429 | 1.88063 1.64555 0.33984 |
+ | 126 0.28571 0.42857 0.85714 | 2.11571 1.88063 0.33984 |
+ | 127 0.28571 0.57143 0.00000 | 0.94031 0.47016 0.40781 |
+ | 128 0.28571 0.57143 0.14286 | 1.17539 0.70524 0.40781 |
+ | 129 0.28571 0.57143 0.28571 | 1.41047 0.94031 0.40781 |
+ | 130 0.28571 0.57143 0.42857 | 1.64555 1.17539 0.40781 |
+ | 131 0.28571 0.57143 0.57143 | 1.88063 1.41047 0.40781 |
+ | 132 0.28571 0.57143 0.71429 | 2.11571 1.64555 0.40781 |
+ | 133 0.28571 0.57143 0.85714 | 2.35079 1.88063 0.40781 |
+ | 134 0.28571 0.71429 0.00000 | 1.17539 0.47016 0.47578 |
+ | 135 0.28571 0.71429 0.14286 | 1.41047 0.70524 0.47578 |
+ | 136 0.28571 0.71429 0.28571 | 1.64555 0.94031 0.47578 |
+ | 137 0.28571 0.71429 0.42857 | 1.88063 1.17539 0.47578 |
+ | 138 0.28571 0.71429 0.57143 | 2.11571 1.41047 0.47578 |
+ | 139 0.28571 0.71429 0.71429 | 2.35079 1.64555 0.47578 |
+ | 140 0.28571 0.71429 0.85714 | 2.58586 1.88063 0.47578 |
+ | 141 0.28571 0.85714 0.00000 | 1.41047 0.47016 0.54374 |
+ | 142 0.28571 0.85714 0.14286 | 1.64555 0.70524 0.54374 |
+ | 143 0.28571 0.85714 0.28571 | 1.88063 0.94031 0.54374 |
+ | 144 0.28571 0.85714 0.42857 | 2.11571 1.17539 0.54374 |
+ | 145 0.28571 0.85714 0.57143 | 2.35079 1.41047 0.54374 |
+ | 146 0.28571 0.85714 0.71429 | 2.58586 1.64555 0.54374 |
+ | 147 0.28571 0.85714 0.85714 | 2.82094 1.88063 0.54374 |
+ | 148 0.42857 0.00000 0.00000 | -0.00000 0.70524 0.20390 |
+ | 149 0.42857 0.00000 0.14286 | 0.23508 0.94031 0.20390 |
+ | 150 0.42857 0.00000 0.28571 | 0.47016 1.17539 0.20390 |
+ | 151 0.42857 0.00000 0.42857 | 0.70524 1.41047 0.20390 |
+ | 152 0.42857 0.00000 0.57143 | 0.94031 1.64555 0.20390 |
+ | 153 0.42857 0.00000 0.71429 | 1.17539 1.88063 0.20390 |
+ | 154 0.42857 0.00000 0.85714 | 1.41047 2.11571 0.20390 |
+ | 155 0.42857 0.14286 0.00000 | 0.23508 0.70524 0.27187 |
+ | 156 0.42857 0.14286 0.14286 | 0.47016 0.94031 0.27187 |
+ | 157 0.42857 0.14286 0.28571 | 0.70524 1.17539 0.27187 |
+ | 158 0.42857 0.14286 0.42857 | 0.94031 1.41047 0.27187 |
+ | 159 0.42857 0.14286 0.57143 | 1.17539 1.64555 0.27187 |
+ | 160 0.42857 0.14286 0.71429 | 1.41047 1.88063 0.27187 |
+ | 161 0.42857 0.14286 0.85714 | 1.64555 2.11571 0.27187 |
+ | 162 0.42857 0.28571 0.00000 | 0.47016 0.70524 0.33984 |
+ | 163 0.42857 0.28571 0.14286 | 0.70524 0.94031 0.33984 |
+ | 164 0.42857 0.28571 0.28571 | 0.94031 1.17539 0.33984 |
+ | 165 0.42857 0.28571 0.42857 | 1.17539 1.41047 0.33984 |
+ | 166 0.42857 0.28571 0.57143 | 1.41047 1.64555 0.33984 |
+ | 167 0.42857 0.28571 0.71429 | 1.64555 1.88063 0.33984 |
+ | 168 0.42857 0.28571 0.85714 | 1.88063 2.11571 0.33984 |
+ | 169 0.42857 0.42857 0.00000 | 0.70524 0.70524 0.40781 |
+ | 170 0.42857 0.42857 0.14286 | 0.94031 0.94031 0.40781 |
+ | 171 0.42857 0.42857 0.28571 | 1.17539 1.17539 0.40781 |
+ | 172 0.42857 0.42857 0.42857 | 1.41047 1.41047 0.40781 |
+ | 173 0.42857 0.42857 0.57143 | 1.64555 1.64555 0.40781 |
+ | 174 0.42857 0.42857 0.71429 | 1.88063 1.88063 0.40781 |
+ | 175 0.42857 0.42857 0.85714 | 2.11571 2.11571 0.40781 |
+ | 176 0.42857 0.57143 0.00000 | 0.94031 0.70524 0.47578 |
+ | 177 0.42857 0.57143 0.14286 | 1.17539 0.94031 0.47578 |
+ | 178 0.42857 0.57143 0.28571 | 1.41047 1.17539 0.47578 |
+ | 179 0.42857 0.57143 0.42857 | 1.64555 1.41047 0.47578 |
+ | 180 0.42857 0.57143 0.57143 | 1.88063 1.64555 0.47578 |
+ | 181 0.42857 0.57143 0.71429 | 2.11571 1.88063 0.47578 |
+ | 182 0.42857 0.57143 0.85714 | 2.35079 2.11571 0.47578 |
+ | 183 0.42857 0.71429 0.00000 | 1.17539 0.70524 0.54374 |
+ | 184 0.42857 0.71429 0.14286 | 1.41047 0.94031 0.54374 |
+ | 185 0.42857 0.71429 0.28571 | 1.64555 1.17539 0.54374 |
+ | 186 0.42857 0.71429 0.42857 | 1.88063 1.41047 0.54374 |
+ | 187 0.42857 0.71429 0.57143 | 2.11571 1.64555 0.54374 |
+ | 188 0.42857 0.71429 0.71429 | 2.35079 1.88063 0.54374 |
+ | 189 0.42857 0.71429 0.85714 | 2.58586 2.11571 0.54374 |
+ | 190 0.42857 0.85714 0.00000 | 1.41047 0.70524 0.61171 |
+ | 191 0.42857 0.85714 0.14286 | 1.64555 0.94031 0.61171 |
+ | 192 0.42857 0.85714 0.28571 | 1.88063 1.17539 0.61171 |
+ | 193 0.42857 0.85714 0.42857 | 2.11571 1.41047 0.61171 |
+ | 194 0.42857 0.85714 0.57143 | 2.35079 1.64555 0.61171 |
+ | 195 0.42857 0.85714 0.71429 | 2.58586 1.88063 0.61171 |
+ | 196 0.42857 0.85714 0.85714 | 2.82094 2.11571 0.61171 |
+ | 197 0.57143 0.00000 0.00000 | -0.00000 0.94031 0.27187 |
+ | 198 0.57143 0.00000 0.14286 | 0.23508 1.17539 0.27187 |
+ | 199 0.57143 0.00000 0.28571 | 0.47016 1.41047 0.27187 |
+ | 200 0.57143 0.00000 0.42857 | 0.70524 1.64555 0.27187 |
+ | 201 0.57143 0.00000 0.57143 | 0.94031 1.88063 0.27187 |
+ | 202 0.57143 0.00000 0.71429 | 1.17539 2.11571 0.27187 |
+ | 203 0.57143 0.00000 0.85714 | 1.41047 2.35079 0.27187 |
+ | 204 0.57143 0.14286 0.00000 | 0.23508 0.94031 0.33984 |
+ | 205 0.57143 0.14286 0.14286 | 0.47016 1.17539 0.33984 |
+ | 206 0.57143 0.14286 0.28571 | 0.70524 1.41047 0.33984 |
+ | 207 0.57143 0.14286 0.42857 | 0.94031 1.64555 0.33984 |
+ | 208 0.57143 0.14286 0.57143 | 1.17539 1.88063 0.33984 |
+ | 209 0.57143 0.14286 0.71429 | 1.41047 2.11571 0.33984 |
+ | 210 0.57143 0.14286 0.85714 | 1.64555 2.35079 0.33984 |
+ | 211 0.57143 0.28571 0.00000 | 0.47016 0.94031 0.40781 |
+ | 212 0.57143 0.28571 0.14286 | 0.70524 1.17539 0.40781 |
+ | 213 0.57143 0.28571 0.28571 | 0.94031 1.41047 0.40781 |
+ | 214 0.57143 0.28571 0.42857 | 1.17539 1.64555 0.40781 |
+ | 215 0.57143 0.28571 0.57143 | 1.41047 1.88063 0.40781 |
+ | 216 0.57143 0.28571 0.71429 | 1.64555 2.11571 0.40781 |
+ | 217 0.57143 0.28571 0.85714 | 1.88063 2.35079 0.40781 |
+ | 218 0.57143 0.42857 0.00000 | 0.70524 0.94031 0.47578 |
+ | 219 0.57143 0.42857 0.14286 | 0.94031 1.17539 0.47578 |
+ | 220 0.57143 0.42857 0.28571 | 1.17539 1.41047 0.47578 |
+ | 221 0.57143 0.42857 0.42857 | 1.41047 1.64555 0.47578 |
+ | 222 0.57143 0.42857 0.57143 | 1.64555 1.88063 0.47578 |
+ | 223 0.57143 0.42857 0.71429 | 1.88063 2.11571 0.47578 |
+ | 224 0.57143 0.42857 0.85714 | 2.11571 2.35079 0.47578 |
+ | 225 0.57143 0.57143 0.00000 | 0.94031 0.94031 0.54374 |
+ | 226 0.57143 0.57143 0.14286 | 1.17539 1.17539 0.54374 |
+ | 227 0.57143 0.57143 0.28571 | 1.41047 1.41047 0.54374 |
+ | 228 0.57143 0.57143 0.42857 | 1.64555 1.64555 0.54374 |
+ | 229 0.57143 0.57143 0.57143 | 1.88063 1.88063 0.54374 |
+ | 230 0.57143 0.57143 0.71429 | 2.11571 2.11571 0.54374 |
+ | 231 0.57143 0.57143 0.85714 | 2.35079 2.35079 0.54374 |
+ | 232 0.57143 0.71429 0.00000 | 1.17539 0.94031 0.61171 |
+ | 233 0.57143 0.71429 0.14286 | 1.41047 1.17539 0.61171 |
+ | 234 0.57143 0.71429 0.28571 | 1.64555 1.41047 0.61171 |
+ | 235 0.57143 0.71429 0.42857 | 1.88063 1.64555 0.61171 |
+ | 236 0.57143 0.71429 0.57143 | 2.11571 1.88063 0.61171 |
+ | 237 0.57143 0.71429 0.71429 | 2.35079 2.11571 0.61171 |
+ | 238 0.57143 0.71429 0.85714 | 2.58586 2.35079 0.61171 |
+ | 239 0.57143 0.85714 0.00000 | 1.41047 0.94031 0.67968 |
+ | 240 0.57143 0.85714 0.14286 | 1.64555 1.17539 0.67968 |
+ | 241 0.57143 0.85714 0.28571 | 1.88063 1.41047 0.67968 |
+ | 242 0.57143 0.85714 0.42857 | 2.11571 1.64555 0.67968 |
+ | 243 0.57143 0.85714 0.57143 | 2.35079 1.88063 0.67968 |
+ | 244 0.57143 0.85714 0.71429 | 2.58586 2.11571 0.67968 |
+ | 245 0.57143 0.85714 0.85714 | 2.82094 2.35079 0.67968 |
+ | 246 0.71429 0.00000 0.00000 | -0.00000 1.17539 0.33984 |
+ | 247 0.71429 0.00000 0.14286 | 0.23508 1.41047 0.33984 |
+ | 248 0.71429 0.00000 0.28571 | 0.47016 1.64555 0.33984 |
+ | 249 0.71429 0.00000 0.42857 | 0.70524 1.88063 0.33984 |
+ | 250 0.71429 0.00000 0.57143 | 0.94031 2.11571 0.33984 |
+ | 251 0.71429 0.00000 0.71429 | 1.17539 2.35079 0.33984 |
+ | 252 0.71429 0.00000 0.85714 | 1.41047 2.58586 0.33984 |
+ | 253 0.71429 0.14286 0.00000 | 0.23508 1.17539 0.40781 |
+ | 254 0.71429 0.14286 0.14286 | 0.47016 1.41047 0.40781 |
+ | 255 0.71429 0.14286 0.28571 | 0.70524 1.64555 0.40781 |
+ | 256 0.71429 0.14286 0.42857 | 0.94031 1.88063 0.40781 |
+ | 257 0.71429 0.14286 0.57143 | 1.17539 2.11571 0.40781 |
+ | 258 0.71429 0.14286 0.71429 | 1.41047 2.35079 0.40781 |
+ | 259 0.71429 0.14286 0.85714 | 1.64555 2.58586 0.40781 |
+ | 260 0.71429 0.28571 0.00000 | 0.47016 1.17539 0.47578 |
+ | 261 0.71429 0.28571 0.14286 | 0.70524 1.41047 0.47578 |
+ | 262 0.71429 0.28571 0.28571 | 0.94031 1.64555 0.47578 |
+ | 263 0.71429 0.28571 0.42857 | 1.17539 1.88063 0.47578 |
+ | 264 0.71429 0.28571 0.57143 | 1.41047 2.11571 0.47578 |
+ | 265 0.71429 0.28571 0.71429 | 1.64555 2.35079 0.47578 |
+ | 266 0.71429 0.28571 0.85714 | 1.88063 2.58586 0.47578 |
+ | 267 0.71429 0.42857 0.00000 | 0.70524 1.17539 0.54374 |
+ | 268 0.71429 0.42857 0.14286 | 0.94031 1.41047 0.54374 |
+ | 269 0.71429 0.42857 0.28571 | 1.17539 1.64555 0.54374 |
+ | 270 0.71429 0.42857 0.42857 | 1.41047 1.88063 0.54374 |
+ | 271 0.71429 0.42857 0.57143 | 1.64555 2.11571 0.54374 |
+ | 272 0.71429 0.42857 0.71429 | 1.88063 2.35079 0.54374 |
+ | 273 0.71429 0.42857 0.85714 | 2.11571 2.58586 0.54374 |
+ | 274 0.71429 0.57143 0.00000 | 0.94031 1.17539 0.61171 |
+ | 275 0.71429 0.57143 0.14286 | 1.17539 1.41047 0.61171 |
+ | 276 0.71429 0.57143 0.28571 | 1.41047 1.64555 0.61171 |
+ | 277 0.71429 0.57143 0.42857 | 1.64555 1.88063 0.61171 |
+ | 278 0.71429 0.57143 0.57143 | 1.88063 2.11571 0.61171 |
+ | 279 0.71429 0.57143 0.71429 | 2.11571 2.35079 0.61171 |
+ | 280 0.71429 0.57143 0.85714 | 2.35079 2.58586 0.61171 |
+ | 281 0.71429 0.71429 0.00000 | 1.17539 1.17539 0.67968 |
+ | 282 0.71429 0.71429 0.14286 | 1.41047 1.41047 0.67968 |
+ | 283 0.71429 0.71429 0.28571 | 1.64555 1.64555 0.67968 |
+ | 284 0.71429 0.71429 0.42857 | 1.88063 1.88063 0.67968 |
+ | 285 0.71429 0.71429 0.57143 | 2.11571 2.11571 0.67968 |
+ | 286 0.71429 0.71429 0.71429 | 2.35079 2.35079 0.67968 |
+ | 287 0.71429 0.71429 0.85714 | 2.58586 2.58586 0.67968 |
+ | 288 0.71429 0.85714 0.00000 | 1.41047 1.17539 0.74765 |
+ | 289 0.71429 0.85714 0.14286 | 1.64555 1.41047 0.74765 |
+ | 290 0.71429 0.85714 0.28571 | 1.88063 1.64555 0.74765 |
+ | 291 0.71429 0.85714 0.42857 | 2.11571 1.88063 0.74765 |
+ | 292 0.71429 0.85714 0.57143 | 2.35079 2.11571 0.74765 |
+ | 293 0.71429 0.85714 0.71429 | 2.58586 2.35079 0.74765 |
+ | 294 0.71429 0.85714 0.85714 | 2.82094 2.58586 0.74765 |
+ | 295 0.85714 0.00000 0.00000 | -0.00000 1.41047 0.40781 |
+ | 296 0.85714 0.00000 0.14286 | 0.23508 1.64555 0.40781 |
+ | 297 0.85714 0.00000 0.28571 | 0.47016 1.88063 0.40781 |
+ | 298 0.85714 0.00000 0.42857 | 0.70524 2.11571 0.40781 |
+ | 299 0.85714 0.00000 0.57143 | 0.94031 2.35079 0.40781 |
+ | 300 0.85714 0.00000 0.71429 | 1.17539 2.58586 0.40781 |
+ | 301 0.85714 0.00000 0.85714 | 1.41047 2.82094 0.40781 |
+ | 302 0.85714 0.14286 0.00000 | 0.23508 1.41047 0.47578 |
+ | 303 0.85714 0.14286 0.14286 | 0.47016 1.64555 0.47578 |
+ | 304 0.85714 0.14286 0.28571 | 0.70524 1.88063 0.47578 |
+ | 305 0.85714 0.14286 0.42857 | 0.94031 2.11571 0.47578 |
+ | 306 0.85714 0.14286 0.57143 | 1.17539 2.35079 0.47578 |
+ | 307 0.85714 0.14286 0.71429 | 1.41047 2.58586 0.47578 |
+ | 308 0.85714 0.14286 0.85714 | 1.64555 2.82094 0.47578 |
+ | 309 0.85714 0.28571 0.00000 | 0.47016 1.41047 0.54374 |
+ | 310 0.85714 0.28571 0.14286 | 0.70524 1.64555 0.54374 |
+ | 311 0.85714 0.28571 0.28571 | 0.94031 1.88063 0.54374 |
+ | 312 0.85714 0.28571 0.42857 | 1.17539 2.11571 0.54374 |
+ | 313 0.85714 0.28571 0.57143 | 1.41047 2.35079 0.54374 |
+ | 314 0.85714 0.28571 0.71429 | 1.64555 2.58586 0.54374 |
+ | 315 0.85714 0.28571 0.85714 | 1.88063 2.82094 0.54374 |
+ | 316 0.85714 0.42857 0.00000 | 0.70524 1.41047 0.61171 |
+ | 317 0.85714 0.42857 0.14286 | 0.94031 1.64555 0.61171 |
+ | 318 0.85714 0.42857 0.28571 | 1.17539 1.88063 0.61171 |
+ | 319 0.85714 0.42857 0.42857 | 1.41047 2.11571 0.61171 |
+ | 320 0.85714 0.42857 0.57143 | 1.64555 2.35079 0.61171 |
+ | 321 0.85714 0.42857 0.71429 | 1.88063 2.58586 0.61171 |
+ | 322 0.85714 0.42857 0.85714 | 2.11571 2.82094 0.61171 |
+ | 323 0.85714 0.57143 0.00000 | 0.94031 1.41047 0.67968 |
+ | 324 0.85714 0.57143 0.14286 | 1.17539 1.64555 0.67968 |
+ | 325 0.85714 0.57143 0.28571 | 1.41047 1.88063 0.67968 |
+ | 326 0.85714 0.57143 0.42857 | 1.64555 2.11571 0.67968 |
+ | 327 0.85714 0.57143 0.57143 | 1.88063 2.35079 0.67968 |
+ | 328 0.85714 0.57143 0.71429 | 2.11571 2.58586 0.67968 |
+ | 329 0.85714 0.57143 0.85714 | 2.35079 2.82094 0.67968 |
+ | 330 0.85714 0.71429 0.00000 | 1.17539 1.41047 0.74765 |
+ | 331 0.85714 0.71429 0.14286 | 1.41047 1.64555 0.74765 |
+ | 332 0.85714 0.71429 0.28571 | 1.64555 1.88063 0.74765 |
+ | 333 0.85714 0.71429 0.42857 | 1.88063 2.11571 0.74765 |
+ | 334 0.85714 0.71429 0.57143 | 2.11571 2.35079 0.74765 |
+ | 335 0.85714 0.71429 0.71429 | 2.35079 2.58586 0.74765 |
+ | 336 0.85714 0.71429 0.85714 | 2.58586 2.82094 0.74765 |
+ | 337 0.85714 0.85714 0.00000 | 1.41047 1.41047 0.81562 |
+ | 338 0.85714 0.85714 0.14286 | 1.64555 1.64555 0.81562 |
+ | 339 0.85714 0.85714 0.28571 | 1.88063 1.88063 0.81562 |
+ | 340 0.85714 0.85714 0.42857 | 2.11571 2.11571 0.81562 |
+ | 341 0.85714 0.85714 0.57143 | 2.35079 2.35079 0.81562 |
+ | 342 0.85714 0.85714 0.71429 | 2.58586 2.58586 0.81562 |
+ | 343 0.85714 0.85714 0.85714 | 2.82094 2.82094 0.81562 |
+ *----------------------------------------------------------------------------*
+
+
+ *---------------------------------- MAIN ------------------------------------*
+ | Number of Wannier Functions : 1 |
+ | Number of Objective Wannier Functions : 1 |
+ | Number of input Bloch states : 5 |
+ | Output verbosity (1=low, 5=high) : 2 |
+ | Timing Level (1=low, 5=high) : 1 |
+ | Optimisation (0=memory, 3=speed) : 3 |
+ | Length Unit : Ang |
+ | Post-processing setup (write *.nnkp) : F |
+ | Using Gamma-only branch of algorithms : F |
+ *----------------------------------------------------------------------------*
+ *------------------------------- WANNIERISE ---------------------------------*
+ | Total number of iterations : 1000 |
+ | Number of CG steps before reset : 5 |
+ | Trial step length for line search : 2.000 |
+ | Convergence tolerence : 0.100E-11 |
+ | Convergence window : 5 |
+ | Iterations between writing output : 1 |
+ | Iterations between backing up to disk : 100 |
+ | Write r^2_nm to file : F |
+ | Write xyz WF centres to file : F |
+ | Write on-site energies <0n|H|0n> to file : F |
+ | Use guiding centre to control phases : F |
+ | Use phases for initial projections : F |
+ *----------------------------------------------------------------------------*
+ *------------------------------- DISENTANGLE --------------------------------*
+ | Using band disentanglement : T |
+ | Total number of iterations : 1000 |
+ | Mixing ratio : 0.500 |
+ | Convergence tolerence : 1.000E-12 |
+ | Convergence window : 3 |
+ *----------------------------------------------------------------------------*
+ *-------------------------------- PLOTTING ----------------------------------*
+ | Plotting interpolated bandstructure : T |
+ | Number of K-path sections : 4 |
+ | Divisions along first K-path section : 100 |
+ | Output format : gnuplot |
+ | Output mode : s-k |
+ *----------------------------------------------------------------------------*
+ | K-space path sections: |
+ | From: G 0.000 0.000 0.000 To: N 0.250 -0.250 0.250 |
+ | From: N 0.250 -0.250 0.250 To: X 0.000 0.000 0.500 |
+ | From: X 0.000 0.000 0.500 To: G 0.000 0.000 0.000 |
+ | From: G 0.000 0.000 0.000 To: M 0.250 0.250 -0.250 |
+ *----------------------------------------------------------------------------*
+ | Plotting Hamiltonian in WF basis : T |
+ *----------------------------------------------------------------------------*
+ Time to read parameters 0.061 (sec)
+
+ *---------------------------------- K-MESH ----------------------------------*
+ +----------------------------------------------------------------------------+
+ | Distance to Nearest-Neighbour Shells |
+ | ------------------------------------ |
+ | Shell Distance (Ang^-1) Multiplicity |
+ | ----- ----------------- ------------ |
+ | 1 0.135936 2 |
+ | 2 0.244707 8 |
+ | 3 0.271872 2 |
+ | 4 0.311189 8 |
+ | 5 0.332451 4 |
+ | 6 0.359169 8 |
+ | 7 0.407808 2 |
+ | 8 0.413223 8 |
+ | 9 0.429463 8 |
+ | 10 0.470157 4 |
+ | 11 0.489414 8 |
+ | 12 0.526147 8 |
+ | 13 0.530028 16 |
+ | 14 0.530683 8 |
+ | 15 0.543104 8 |
+ | 16 0.543743 2 |
+ | 17 0.563814 16 |
+ | 18 0.622378 8 |
+ | 19 0.625940 16 |
+ | 20 0.637323 8 |
+ | 21 0.655326 8 |
+ | 22 0.664903 4 |
+ | 23 0.678656 8 |
+ | 24 0.679679 2 |
+ | 25 0.708503 8 |
+ | 26 0.708994 16 |
+ | 27 0.718338 8 |
+ | 28 0.718822 8 |
+ | 29 0.734121 8 |
+ | 30 0.743384 8 |
+ | 31 0.755710 16 |
+ | 32 0.756629 8 |
+ | 33 0.780002 8 |
+ | 34 0.782846 8 |
+ | 35 0.783734 8 |
+ | 36 0.791539 16 |
+ +----------------------------------------------------------------------------+
+ | The b-vectors are chosen automatically |
+ | Shell: 1 w_b 27.0583842 (Ang^2) |
+ | Shell: 1 w_b 22.5344732 (Ang^2) |
+ | Shell: 2 w_b 4.5239110 (Ang^2) |
+ | The following shells are used: 1, 2 |
+ +----------------------------------------------------------------------------+
+ | Shell # Nearest-Neighbours |
+ | ----- -------------------- |
+ | 1 2 |
+ | 2 8 |
+ +----------------------------------------------------------------------------+
+ | Completeness relation is fully satisfied [Eq. (B1), PRB 56, 12847 (1997)] |
+ +----------------------------------------------------------------------------+
+ | b_k Vectors (Ang^-1) and Weights (Ang^2) |
+ | ---------------------------------------- |
+ | No. b_k(x) b_k(y) b_k(z) w_b |
+ | --- -------------------------------- -------- |
+ | 1 0.000000 0.000000 0.135936 22.534473 |
+ | 2 -0.000000 0.000000 -0.135936 22.534473 |
+ | 3 0.235079 -0.000000 0.067968 4.523911 |
+ | 4 -0.000000 0.235079 0.067968 4.523911 |
+ | 5 -0.235079 0.000000 -0.067968 4.523911 |
+ | 6 0.000000 0.235079 -0.067968 4.523911 |
+ | 7 0.000000 -0.235079 -0.067968 4.523911 |
+ | 8 0.235079 0.000000 -0.067968 4.523911 |
+ | 9 0.000000 -0.235079 0.067968 4.523911 |
+ | 10 -0.235079 0.000000 0.067968 4.523911 |
+ +----------------------------------------------------------------------------+
+ | b_k Directions (Ang^-1) |
+ | ----------------------- |
+ | No. x y z |
+ | --- -------------------------------- |
+ | 1 0.000000 0.000000 0.135936 |
+ | 2 0.235079 -0.000000 0.067968 |
+ | 3 -0.000000 0.235079 0.067968 |
+ | 4 0.000000 0.235079 -0.067968 |
+ | 5 0.235079 0.000000 -0.067968 |
+ +----------------------------------------------------------------------------+
+
+ Time to get kmesh 0.125 (sec)
+ *============================================================================*
+ | MEMORY ESTIMATE |
+ | Maximum RAM allocated during each phase of the calculation |
+ *============================================================================*
+ | Disentanglement 1.83 Mb |
+ | Wannierise: 0.45 Mb |
+ | |
+ | N.B. by setting optimisation=0 memory usage will be reduced to: |
+ | Disentanglement 1.83 Mb |
+ | Wannierise: 0.40 Mb |
+ | However, this will result in more i/o and slow down the calculation |
+ | plot_wannier: 0.45 Mb |
+ *----------------------------------------------------------------------------*
+
+ Starting a new Wannier90 calculation ...
+
+
+ Reading overlaps from lco.mmn : Created on 1May2022 at 12:42:29
+
+ Reading projections from lco.amn : Created on 1May2022 at 12:42:24
+
+ Time to read overlaps 0.102 (sec)
+
+ *------------------------------- DISENTANGLE --------------------------------*
+ +----------------------------------------------------------------------------+
+ | Energy Windows |
+ | --------------- |
+ | Outer: 10.00000 to 16.00000 (eV) |
+ | Inner: 12.30000 to 16.00000 (eV) |
+ +----------------------------------------------------------------------------+
+ | K-points with Frozen States |
+ | --------------------------- |
+ | 3 4 5 6 9 10 11 12 13 16 17 18 |
+ | 19 22 23 24 25 26 27 28 29 30 31 32 |
+ | 33 34 35 39 40 41 42 45 46 47 48 49 |
+ | 51 52 53 54 55 58 59 60 61 64 65 66 |
+ | 67 68 71 72 73 74 75 77 78 79 80 81 |
+ | 82 83 84 85 86 87 88 89 90 91 94 95 |
+ | 96 97 100 101 102 103 106 107 108 109 110 113 |
+ | 114 115 116 120 121 122 123 126 127 128 129 130 |
+ | 132 133 134 135 136 137 138 139 140 141 142 143 |
+ | 144 145 146 147 148 149 150 151 152 153 154 155 |
+ | 156 157 158 159 161 162 163 164 165 168 169 170 |
+ | 171 175 176 177 178 181 182 183 184 185 187 188 |
+ | 189 190 191 192 193 194 195 196 197 198 199 200 |
+ | 201 202 203 204 205 206 207 208 209 210 211 212 |
+ | 213 214 216 217 218 219 220 223 224 225 226 230 |
+ | 231 232 233 236 237 238 239 240 242 243 244 245 |
+ | 249 250 251 252 253 254 255 256 257 258 259 260 |
+ | 261 262 263 264 265 266 267 268 269 271 272 273 |
+ | 274 275 278 279 280 281 285 286 287 288 291 292 |
+ | 293 294 297 298 299 300 301 304 305 306 307 309 |
+ | 310 311 312 313 314 315 316 317 318 319 320 321 |
+ | 322 323 324 326 327 328 329 330 333 334 335 336 |
+ | 340 341 342 343 |
+ +----------------------------------------------------------------------------+
+ Number of target bands to extract: 1
+ +----------------------------------------------------------------------------+
+ | Windows |
+ | ------- |
+ | K-point Ndimwin Ndimfroz Nfirstwin |
+ | ---------------------------------------------- |
+ | 1 5 0 1 |
+ | 2 5 0 1 |
+ | 3 5 1 1 |
+ | 4 5 1 1 |
+ | 5 5 1 1 |
+ | 6 5 1 1 |
+ | 7 5 0 1 |
+ | 8 5 0 1 |
+ | 9 5 1 1 |
+ | 10 5 1 1 |
+ | 11 5 1 1 |
+ | 12 5 1 1 |
+ | 13 5 1 1 |
+ | 14 5 0 1 |
+ | 15 5 0 1 |
+ | 16 5 1 1 |
+ | 17 5 1 1 |
+ | 18 5 1 1 |
+ | 19 5 1 1 |
+ | 20 5 0 1 |
+ | 21 5 0 1 |
+ | 22 5 1 1 |
+ | 23 5 1 1 |
+ | 24 5 1 1 |
+ | 25 5 1 1 |
+ | 26 5 1 1 |
+ | 27 5 1 1 |
+ | 28 5 1 1 |
+ | 29 5 1 1 |
+ | 30 5 1 1 |
+ | 31 5 1 1 |
+ | 32 5 1 1 |
+ | 33 5 1 1 |
+ | 34 5 1 1 |
+ | 35 5 1 1 |
+ | 36 5 0 1 |
+ | 37 5 0 1 |
+ | 38 5 0 1 |
+ | 39 5 1 1 |
+ | 40 5 1 1 |
+ | 41 5 1 1 |
+ | 42 5 1 1 |
+ | 43 5 0 1 |
+ | 44 5 0 1 |
+ | 45 5 1 1 |
+ | 46 5 1 1 |
+ | 47 5 1 1 |
+ | 48 5 1 1 |
+ | 49 5 1 1 |
+ | 50 5 0 1 |
+ | 51 5 1 1 |
+ | 52 5 1 1 |
+ | 53 5 1 1 |
+ | 54 5 1 1 |
+ | 55 5 1 1 |
+ | 56 5 0 1 |
+ | 57 5 0 1 |
+ | 58 5 1 1 |
+ | 59 5 1 1 |
+ | 60 5 1 1 |
+ | 61 5 1 1 |
+ | 62 5 0 1 |
+ | 63 5 0 1 |
+ | 64 5 1 1 |
+ | 65 5 1 1 |
+ | 66 5 1 1 |
+ | 67 5 1 1 |
+ | 68 5 1 1 |
+ | 69 5 0 1 |
+ | 70 5 0 1 |
+ | 71 5 1 1 |
+ | 72 5 1 1 |
+ | 73 5 1 1 |
+ | 74 5 1 1 |
+ | 75 5 1 1 |
+ | 76 5 0 1 |
+ | 77 5 1 1 |
+ | 78 5 1 1 |
+ | 79 5 1 1 |
+ | 80 5 1 1 |
+ | 81 5 1 1 |
+ | 82 5 1 1 |
+ | 83 5 1 1 |
+ | 84 5 1 1 |
+ | 85 5 1 1 |
+ | 86 5 1 1 |
+ | 87 5 1 1 |
+ | 88 5 1 1 |
+ | 89 5 1 1 |
+ | 90 5 1 1 |
+ | 91 5 1 1 |
+ | 92 5 0 1 |
+ | 93 5 0 1 |
+ | 94 5 1 1 |
+ | 95 5 1 1 |
+ | 96 5 1 1 |
+ | 97 5 1 1 |
+ | 98 5 0 1 |
+ | 99 5 0 1 |
+ | 100 5 1 1 |
+ | 101 5 1 1 |
+ | 102 5 1 1 |
+ | 103 5 1 1 |
+ | 104 5 0 1 |
+ | 105 5 0 1 |
+ | 106 5 1 1 |
+ | 107 5 1 1 |
+ | 108 5 1 1 |
+ | 109 5 1 1 |
+ | 110 5 1 1 |
+ | 111 5 0 1 |
+ | 112 5 0 1 |
+ | 113 5 1 1 |
+ | 114 5 1 1 |
+ | 115 5 1 1 |
+ | 116 5 1 1 |
+ | 117 5 0 1 |
+ | 118 5 0 1 |
+ | 119 5 0 1 |
+ | 120 5 1 1 |
+ | 121 5 1 1 |
+ | 122 5 1 1 |
+ | 123 5 1 1 |
+ | 124 5 0 1 |
+ | 125 5 0 1 |
+ | 126 5 1 1 |
+ | 127 5 1 1 |
+ | 128 5 1 1 |
+ | 129 5 1 1 |
+ | 130 5 1 1 |
+ | 131 5 0 1 |
+ | 132 5 1 1 |
+ | 133 5 1 1 |
+ | 134 5 1 1 |
+ | 135 5 1 1 |
+ | 136 5 1 1 |
+ | 137 5 1 1 |
+ | 138 5 1 1 |
+ | 139 5 1 1 |
+ | 140 5 1 1 |
+ | 141 5 1 1 |
+ | 142 5 1 1 |
+ | 143 5 1 1 |
+ | 144 5 1 1 |
+ | 145 5 1 1 |
+ | 146 5 1 1 |
+ | 147 5 1 1 |
+ | 148 5 1 1 |
+ | 149 5 1 1 |
+ | 150 5 1 1 |
+ | 151 5 1 1 |
+ | 152 5 1 1 |
+ | 153 5 1 1 |
+ | 154 5 1 1 |
+ | 155 5 1 1 |
+ | 156 5 1 1 |
+ | 157 5 1 1 |
+ | 158 5 1 1 |
+ | 159 5 1 1 |
+ | 160 5 0 1 |
+ | 161 5 1 1 |
+ | 162 5 1 1 |
+ | 163 5 1 1 |
+ | 164 5 1 1 |
+ | 165 5 1 1 |
+ | 166 5 0 1 |
+ | 167 5 0 1 |
+ | 168 5 1 1 |
+ | 169 5 1 1 |
+ | 170 5 1 1 |
+ | 171 5 1 1 |
+ | 172 5 0 1 |
+ | 173 5 0 1 |
+ | 174 5 0 1 |
+ | 175 5 1 1 |
+ | 176 5 1 1 |
+ | 177 5 1 1 |
+ | 178 5 1 1 |
+ | 179 5 0 1 |
+ | 180 5 0 1 |
+ | 181 5 1 1 |
+ | 182 5 1 1 |
+ | 183 5 1 1 |
+ | 184 5 1 1 |
+ | 185 5 1 1 |
+ | 186 5 0 1 |
+ | 187 5 1 1 |
+ | 188 5 1 1 |
+ | 189 5 1 1 |
+ | 190 5 1 1 |
+ | 191 5 1 1 |
+ | 192 5 1 1 |
+ | 193 5 1 1 |
+ | 194 5 1 1 |
+ | 195 5 1 1 |
+ | 196 5 1 1 |
+ | 197 5 1 1 |
+ | 198 5 1 1 |
+ | 199 5 1 1 |
+ | 200 5 1 1 |
+ | 201 5 1 1 |
+ | 202 5 1 1 |
+ | 203 5 1 1 |
+ | 204 5 1 1 |
+ | 205 5 1 1 |
+ | 206 5 1 1 |
+ | 207 5 1 1 |
+ | 208 5 1 1 |
+ | 209 5 1 1 |
+ | 210 5 1 1 |
+ | 211 5 1 1 |
+ | 212 5 1 1 |
+ | 213 5 1 1 |
+ | 214 5 1 1 |
+ | 215 5 0 1 |
+ | 216 5 1 1 |
+ | 217 5 1 1 |
+ | 218 5 1 1 |
+ | 219 5 1 1 |
+ | 220 5 1 1 |
+ | 221 5 0 1 |
+ | 222 5 0 1 |
+ | 223 5 1 1 |
+ | 224 5 1 1 |
+ | 225 5 1 1 |
+ | 226 5 1 1 |
+ | 227 5 0 1 |
+ | 228 5 0 1 |
+ | 229 5 0 1 |
+ | 230 5 1 1 |
+ | 231 5 1 1 |
+ | 232 5 1 1 |
+ | 233 5 1 1 |
+ | 234 5 0 1 |
+ | 235 5 0 1 |
+ | 236 5 1 1 |
+ | 237 5 1 1 |
+ | 238 5 1 1 |
+ | 239 5 1 1 |
+ | 240 5 1 1 |
+ | 241 5 0 1 |
+ | 242 5 1 1 |
+ | 243 5 1 1 |
+ | 244 5 1 1 |
+ | 245 5 1 1 |
+ | 246 5 0 1 |
+ | 247 5 0 1 |
+ | 248 5 0 1 |
+ | 249 5 1 1 |
+ | 250 5 1 1 |
+ | 251 5 1 1 |
+ | 252 5 1 1 |
+ | 253 5 1 1 |
+ | 254 5 1 1 |
+ | 255 5 1 1 |
+ | 256 5 1 1 |
+ | 257 5 1 1 |
+ | 258 5 1 1 |
+ | 259 5 1 1 |
+ | 260 5 1 1 |
+ | 261 5 1 1 |
+ | 262 5 1 1 |
+ | 263 5 1 1 |
+ | 264 5 1 1 |
+ | 265 5 1 1 |
+ | 266 5 1 1 |
+ | 267 5 1 1 |
+ | 268 5 1 1 |
+ | 269 5 1 1 |
+ | 270 5 0 1 |
+ | 271 5 1 1 |
+ | 272 5 1 1 |
+ | 273 5 1 1 |
+ | 274 5 1 1 |
+ | 275 5 1 1 |
+ | 276 5 0 1 |
+ | 277 5 0 1 |
+ | 278 5 1 1 |
+ | 279 5 1 1 |
+ | 280 5 1 1 |
+ | 281 5 1 1 |
+ | 282 5 0 1 |
+ | 283 5 0 1 |
+ | 284 5 0 1 |
+ | 285 5 1 1 |
+ | 286 5 1 1 |
+ | 287 5 1 1 |
+ | 288 5 1 1 |
+ | 289 5 0 1 |
+ | 290 5 0 1 |
+ | 291 5 1 1 |
+ | 292 5 1 1 |
+ | 293 5 1 1 |
+ | 294 5 1 1 |
+ | 295 5 0 1 |
+ | 296 5 0 1 |
+ | 297 5 1 1 |
+ | 298 5 1 1 |
+ | 299 5 1 1 |
+ | 300 5 1 1 |
+ | 301 5 1 1 |
+ | 302 5 0 1 |
+ | 303 5 0 1 |
+ | 304 5 1 1 |
+ | 305 5 1 1 |
+ | 306 5 1 1 |
+ | 307 5 1 1 |
+ | 308 5 0 1 |
+ | 309 5 1 1 |
+ | 310 5 1 1 |
+ | 311 5 1 1 |
+ | 312 5 1 1 |
+ | 313 5 1 1 |
+ | 314 5 1 1 |
+ | 315 5 1 1 |
+ | 316 5 1 1 |
+ | 317 5 1 1 |
+ | 318 5 1 1 |
+ | 319 5 1 1 |
+ | 320 5 1 1 |
+ | 321 5 1 1 |
+ | 322 5 1 1 |
+ | 323 5 1 1 |
+ | 324 5 1 1 |
+ | 325 5 0 1 |
+ | 326 5 1 1 |
+ | 327 5 1 1 |
+ | 328 5 1 1 |
+ | 329 5 1 1 |
+ | 330 5 1 1 |
+ | 331 5 0 1 |
+ | 332 5 0 1 |
+ | 333 5 1 1 |
+ | 334 5 1 1 |
+ | 335 5 1 1 |
+ | 336 5 1 1 |
+ | 337 5 0 1 |
+ | 338 5 0 1 |
+ | 339 5 0 1 |
+ | 340 5 1 1 |
+ | 341 5 1 1 |
+ | 342 5 1 1 |
+ | 343 5 1 1 |
+ +----------------------------------------------------------------------------+
+
+ Unitarised projection of Wannier functions
+ ------------------------------------------
+ A_mn = --> S = A.A^+ --> U = S^-1/2.A
+ In dis_project... done
+ Using an inner window (linner = T)
+ In dis_proj_froz... done
+
+ Extraction of optimally-connected subspace
+ ------------------------------------------
+ +---------------------------------------------------------------------+<-- DIS
+ | Iter Omega_I(i-1) Omega_I(i) Delta (frac.) Time |<-- DIS
+ +---------------------------------------------------------------------+<-- DIS
+ 1 5.89559078 5.44227136 8.330E-02 0.00 <-- DIS
+ 2 5.45984098 5.33858007 2.271E-02 0.01 <-- DIS
+ 3 5.37242352 5.28492535 1.656E-02 0.01 <-- DIS
+ 4 5.31028874 5.25296985 1.091E-02 0.01 <-- DIS
+ 5 5.26905304 5.23313613 6.863E-03 0.02 <-- DIS
+ 6 5.24235247 5.22055535 4.175E-03 0.02 <-- DIS
+ 7 5.22522493 5.21245466 2.450E-03 0.02 <-- DIS
+ 8 5.21429150 5.20718138 1.365E-03 0.02 <-- DIS
+ 9 5.20734333 5.20372089 6.961E-04 0.03 <-- DIS
+ 10 5.20295484 5.20143641 2.919E-04 0.03 <-- DIS
+ 11 5.20020881 5.19992154 5.525E-05 0.03 <-- DIS
+ 12 5.19851492 5.19891364 -7.669E-05 0.03 <-- DIS
+ 13 5.19749270 5.19824136 -1.440E-04 0.03 <-- DIS
+ 14 5.19689673 5.19779208 -1.723E-04 0.03 <-- DIS
+ 15 5.19656869 5.19749138 -1.775E-04 0.04 <-- DIS
+ 16 5.19640664 5.19728989 -1.699E-04 0.04 <-- DIS
+ 17 5.19634516 5.19715477 -1.558E-04 0.04 <-- DIS
+ 18 5.19634254 5.19706408 -1.388E-04 0.04 <-- DIS
+ 19 5.19637247 5.19700319 -1.214E-04 0.04 <-- DIS
+ 20 5.19641859 5.19696228 -1.046E-04 0.04 <-- DIS
+ 21 5.19647092 5.19693479 -8.926E-05 0.04 <-- DIS
+ 22 5.19652364 5.19691631 -7.556E-05 0.05 <-- DIS
+ 23 5.19657349 5.19690388 -6.358E-05 0.05 <-- DIS
+ 24 5.19661885 5.19689553 -5.324E-05 0.05 <-- DIS
+ 25 5.19665907 5.19688991 -4.442E-05 0.05 <-- DIS
+ 26 5.19669412 5.19688613 -3.695E-05 0.05 <-- DIS
+ 27 5.19672425 5.19688358 -3.066E-05 0.06 <-- DIS
+ 28 5.19674992 5.19688187 -2.539E-05 0.06 <-- DIS
+ 29 5.19677161 5.19688072 -2.100E-05 0.06 <-- DIS
+ 30 5.19678984 5.19687995 -1.734E-05 0.06 <-- DIS
+ 31 5.19680509 5.19687942 -1.430E-05 0.06 <-- DIS
+ 32 5.19681781 5.19687907 -1.179E-05 0.06 <-- DIS
+ 33 5.19682838 5.19687884 -9.709E-06 0.07 <-- DIS
+ 34 5.19683715 5.19687868 -7.992E-06 0.07 <-- DIS
+ 35 5.19684440 5.19687857 -6.575E-06 0.07 <-- DIS
+ 36 5.19685040 5.19687850 -5.407E-06 0.07 <-- DIS
+ 37 5.19685535 5.19687845 -4.445E-06 0.07 <-- DIS
+ 38 5.19685943 5.19687842 -3.653E-06 0.07 <-- DIS
+ 39 5.19686280 5.19687840 -3.002E-06 0.07 <-- DIS
+ 40 5.19686557 5.19687838 -2.466E-06 0.08 <-- DIS
+ 41 5.19686785 5.19687837 -2.025E-06 0.08 <-- DIS
+ 42 5.19686972 5.19687837 -1.663E-06 0.08 <-- DIS
+ 43 5.19687126 5.19687836 -1.366E-06 0.08 <-- DIS
+ 44 5.19687253 5.19687836 -1.121E-06 0.08 <-- DIS
+ 45 5.19687357 5.19687836 -9.207E-07 0.08 <-- DIS
+ 46 5.19687443 5.19687835 -7.558E-07 0.09 <-- DIS
+ 47 5.19687513 5.19687835 -6.204E-07 0.09 <-- DIS
+ 48 5.19687571 5.19687835 -5.092E-07 0.09 <-- DIS
+ 49 5.19687618 5.19687835 -4.179E-07 0.09 <-- DIS
+ 50 5.19687657 5.19687835 -3.430E-07 0.09 <-- DIS
+ 51 5.19687689 5.19687835 -2.815E-07 0.09 <-- DIS
+ 52 5.19687715 5.19687835 -2.310E-07 0.10 <-- DIS
+ 53 5.19687737 5.19687835 -1.896E-07 0.10 <-- DIS
+ 54 5.19687754 5.19687835 -1.556E-07 0.10 <-- DIS
+ 55 5.19687769 5.19687835 -1.277E-07 0.10 <-- DIS
+ 56 5.19687781 5.19687835 -1.048E-07 0.10 <-- DIS
+ 57 5.19687791 5.19687835 -8.597E-08 0.10 <-- DIS
+ 58 5.19687799 5.19687835 -7.054E-08 0.10 <-- DIS
+ 59 5.19687805 5.19687835 -5.788E-08 0.11 <-- DIS
+ 60 5.19687810 5.19687835 -4.750E-08 0.11 <-- DIS
+ 61 5.19687815 5.19687835 -3.897E-08 0.11 <-- DIS
+ 62 5.19687819 5.19687835 -3.198E-08 0.11 <-- DIS
+ 63 5.19687822 5.19687835 -2.624E-08 0.11 <-- DIS
+ 64 5.19687824 5.19687835 -2.153E-08 0.11 <-- DIS
+ 65 5.19687826 5.19687835 -1.766E-08 0.12 <-- DIS
+ 66 5.19687828 5.19687835 -1.449E-08 0.12 <-- DIS
+ 67 5.19687829 5.19687835 -1.189E-08 0.12 <-- DIS
+ 68 5.19687830 5.19687835 -9.757E-09 0.12 <-- DIS
+ 69 5.19687831 5.19687835 -8.006E-09 0.12 <-- DIS
+ 70 5.19687832 5.19687835 -6.569E-09 0.12 <-- DIS
+ 71 5.19687832 5.19687835 -5.389E-09 0.13 <-- DIS
+ 72 5.19687833 5.19687835 -4.422E-09 0.13 <-- DIS
+ 73 5.19687833 5.19687835 -3.628E-09 0.13 <-- DIS
+ 74 5.19687834 5.19687835 -2.977E-09 0.13 <-- DIS
+ 75 5.19687834 5.19687835 -2.442E-09 0.13 <-- DIS
+ 76 5.19687834 5.19687835 -2.004E-09 0.13 <-- DIS
+ 77 5.19687834 5.19687835 -1.644E-09 0.14 <-- DIS
+ 78 5.19687834 5.19687835 -1.349E-09 0.14 <-- DIS
+ 79 5.19687835 5.19687835 -1.107E-09 0.14 <-- DIS
+ 80 5.19687835 5.19687835 -9.080E-10 0.14 <-- DIS
+ 81 5.19687835 5.19687835 -7.450E-10 0.14 <-- DIS
+ 82 5.19687835 5.19687835 -6.112E-10 0.14 <-- DIS
+ 83 5.19687835 5.19687835 -5.015E-10 0.14 <-- DIS
+ 84 5.19687835 5.19687835 -4.114E-10 0.15 <-- DIS
+ 85 5.19687835 5.19687835 -3.376E-10 0.15 <-- DIS
+ 86 5.19687835 5.19687835 -2.769E-10 0.15 <-- DIS
+ 87 5.19687835 5.19687835 -2.272E-10 0.15 <-- DIS
+ 88 5.19687835 5.19687835 -1.864E-10 0.15 <-- DIS
+ 89 5.19687835 5.19687835 -1.530E-10 0.15 <-- DIS
+ 90 5.19687835 5.19687835 -1.255E-10 0.16 <-- DIS
+ 91 5.19687835 5.19687835 -1.030E-10 0.16 <-- DIS
+ 92 5.19687835 5.19687835 -8.447E-11 0.16 <-- DIS
+ 93 5.19687835 5.19687835 -6.930E-11 0.16 <-- DIS
+ 94 5.19687835 5.19687835 -5.686E-11 0.16 <-- DIS
+ 95 5.19687835 5.19687835 -4.665E-11 0.16 <-- DIS
+ 96 5.19687835 5.19687835 -3.827E-11 0.17 <-- DIS
+ 97 5.19687835 5.19687835 -3.140E-11 0.17 <-- DIS
+ 98 5.19687835 5.19687835 -2.576E-11 0.17 <-- DIS
+ 99 5.19687835 5.19687835 -2.114E-11 0.17 <-- DIS
+ 100 5.19687835 5.19687835 -1.734E-11 0.17 <-- DIS
+ 101 5.19687835 5.19687835 -1.423E-11 0.17 <-- DIS
+ 102 5.19687835 5.19687835 -1.167E-11 0.18 <-- DIS
+ 103 5.19687835 5.19687835 -9.577E-12 0.18 <-- DIS
+ 104 5.19687835 5.19687835 -7.858E-12 0.18 <-- DIS
+ 105 5.19687835 5.19687835 -6.447E-12 0.18 <-- DIS
+ 106 5.19687835 5.19687835 -5.289E-12 0.18 <-- DIS
+ 107 5.19687835 5.19687835 -4.340E-12 0.18 <-- DIS
+ 108 5.19687835 5.19687835 -3.561E-12 0.19 <-- DIS
+ 109 5.19687835 5.19687835 -2.921E-12 0.19 <-- DIS
+ 110 5.19687835 5.19687835 -2.396E-12 0.19 <-- DIS
+ 111 5.19687835 5.19687835 -1.967E-12 0.19 <-- DIS
+ 112 5.19687835 5.19687835 -1.614E-12 0.19 <-- DIS
+ 113 5.19687835 5.19687835 -1.323E-12 0.19 <-- DIS
+ 114 5.19687835 5.19687835 -1.086E-12 0.20 <-- DIS
+ 115 5.19687835 5.19687835 -8.906E-13 0.20 <-- DIS
+ 116 5.19687835 5.19687835 -7.319E-13 0.20 <-- DIS
+ 117 5.19687835 5.19687835 -6.002E-13 0.20 <-- DIS
+
+ <<< Delta < 1.000E-12 over 3 iterations >>>
+ <<< Disentanglement convergence criteria satisfied >>>
+
+ Final Omega_I 5.19687835 (Ang^2)
+
+ +----------------------------------------------------------------------------+
+
+ Time to disentangle bands 0.211 (sec)
+
+ Writing checkpoint file lco.chk... done
+
+
+ *------------------------------- WANNIERISE ---------------------------------*
+ +--------------------------------------------------------------------+<-- CONV
+ | Iter Delta Spread RMS Gradient Spread (Ang^2) Time |<-- CONV
+ +--------------------------------------------------------------------+<-- CONV
+
+ ------------------------------------------------------------------------------
+ Initial State
+ WF centre and spread 1 ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+ Sum of centres and spreads ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+
+ 0 0.520E+01 0.0000000000 5.1968783518 0.21 <-- CONV
+ O_D= 0.0000000 O_OD= 0.0000000 O_TOT= 5.1968784 <-- SPRD
+ ------------------------------------------------------------------------------
+ Cycle: 1
+ WF centre and spread 1 ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+ Sum of centres and spreads ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+
+ 1 0.000E+00 0.0000000019 5.1968783518 0.21 <-- CONV
+ O_D= 0.0000000 O_OD= 0.0000000 O_TOT= 5.1968784 <-- SPRD
+ Delta: O_D= -0.2191079E-19 O_OD= 0.0000000E+00 O_TOT= 0.0000000E+00 <-- DLTA
+ ------------------------------------------------------------------------------
+ Cycle: 2
+ WF centre and spread 1 ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+ Sum of centres and spreads ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+
+ 2 0.000E+00 0.0000000019 5.1968783518 0.21 <-- CONV
+ O_D= 0.0000000 O_OD= 0.0000000 O_TOT= 5.1968784 <-- SPRD
+ Delta: O_D= -0.2159428E-19 O_OD= 0.0000000E+00 O_TOT= 0.0000000E+00 <-- DLTA
+ ------------------------------------------------------------------------------
+ Cycle: 3
+ WF centre and spread 1 ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+ Sum of centres and spreads ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+
+ 3 0.000E+00 0.0000000019 5.1968783518 0.21 <-- CONV
+ O_D= 0.0000000 O_OD= 0.0000000 O_TOT= 5.1968784 <-- SPRD
+ Delta: O_D= -0.2128269E-19 O_OD= 0.0000000E+00 O_TOT= 0.0000000E+00 <-- DLTA
+ ------------------------------------------------------------------------------
+ Cycle: 4
+ WF centre and spread 1 ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+ Sum of centres and spreads ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+
+ 4 0.000E+00 0.0000000018 5.1968783518 0.22 <-- CONV
+ O_D= 0.0000000 O_OD= 0.0000000 O_TOT= 5.1968784 <-- SPRD
+ Delta: O_D= -0.2097595E-19 O_OD= 0.0000000E+00 O_TOT= 0.0000000E+00 <-- DLTA
+ ------------------------------------------------------------------------------
+ Cycle: 5
+ WF centre and spread 1 ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+ Sum of centres and spreads ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+
+ 5 0.000E+00 0.0000000018 5.1968783518 0.22 <-- CONV
+ O_D= 0.0000000 O_OD= 0.0000000 O_TOT= 5.1968784 <-- SPRD
+ Delta: O_D= -0.2067398E-19 O_OD= 0.0000000E+00 O_TOT= 0.0000000E+00 <-- DLTA
+ ------------------------------------------------------------------------------
+
+ <<< Delta < 1.000E-12 over 5 iterations >>>
+ <<< Wannierisation convergence criteria satisfied >>>
+
+ Final State
+ WF centre and spread 1 ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+ Sum of centres and spreads ( -0.000000, -0.000000, 0.000000 ) 5.19687835
+
+ Spreads (Ang^2) Omega I = 5.196878352
+ ================ Omega D = 0.000000000
+ Omega OD = 0.000000000
+ Final Spread (Ang^2) Omega Total = 5.196878352
+ ------------------------------------------------------------------------------
+ Time for wannierise 0.009 (sec)
+
+ Writing checkpoint file lco.chk... done
+
+ *---------------------------------------------------------------------------*
+ | PLOTTING |
+ *---------------------------------------------------------------------------*
+
+
+ Calculating interpolated band-structure
+
+ Time to calculate interpolated band structure 0.018 (sec)
+
+ Time for plotting 0.090 (sec)
+ Total Execution Time 0.599 (sec)
+
+ *===========================================================================*
+ | TIMING INFORMATION |
+ *===========================================================================*
+ | Tag Ncalls Time (s)|
+ |---------------------------------------------------------------------------|
+ |kmesh: get : 1 0.125|
+ |overlap: allocate : 1 0.000|
+ |overlap: read : 1 0.102|
+ |dis: main : 1 0.211|
+ |wann: main : 1 0.009|
+ |plot: main : 1 0.090|
+ *---------------------------------------------------------------------------*
+
+ All done: wannier90 exiting
diff --git a/tests/data/lco_mlwf/lco_band.dat b/tests/data/lco_mlwf/lco_band.dat
new file mode 100644
index 0000000..ddaf43c
--- /dev/null
+++ b/tests/data/lco_mlwf/lco_band.dat
@@ -0,0 +1,372 @@
+ 0.00000000E+00 0.10837560E+02
+ 0.82277490E-02 0.10838521E+02
+ 0.16455498E-01 0.10841402E+02
+ 0.24683247E-01 0.10846188E+02
+ 0.32910996E-01 0.10852860E+02
+ 0.41138745E-01 0.10861388E+02
+ 0.49366494E-01 0.10871735E+02
+ 0.57594243E-01 0.10883855E+02
+ 0.65821992E-01 0.10897698E+02
+ 0.74049741E-01 0.10913202E+02
+ 0.82277490E-01 0.10930303E+02
+ 0.90505238E-01 0.10948930E+02
+ 0.98732987E-01 0.10969005E+02
+ 0.10696074E+00 0.10990446E+02
+ 0.11518849E+00 0.11013167E+02
+ 0.12341623E+00 0.11037078E+02
+ 0.13164398E+00 0.11062086E+02
+ 0.13987173E+00 0.11088097E+02
+ 0.14809948E+00 0.11115013E+02
+ 0.15632723E+00 0.11142737E+02
+ 0.16455498E+00 0.11171171E+02
+ 0.17278273E+00 0.11200217E+02
+ 0.18101048E+00 0.11229779E+02
+ 0.18923823E+00 0.11259761E+02
+ 0.19746597E+00 0.11290071E+02
+ 0.20569372E+00 0.11320619E+02
+ 0.21392147E+00 0.11351318E+02
+ 0.22214922E+00 0.11382086E+02
+ 0.23037697E+00 0.11412843E+02
+ 0.23860472E+00 0.11443515E+02
+ 0.24683247E+00 0.11474034E+02
+ 0.25506022E+00 0.11504335E+02
+ 0.26328797E+00 0.11534360E+02
+ 0.27151572E+00 0.11564057E+02
+ 0.27974346E+00 0.11593377E+02
+ 0.28797121E+00 0.11622279E+02
+ 0.29619896E+00 0.11650728E+02
+ 0.30442671E+00 0.11678694E+02
+ 0.31265446E+00 0.11706152E+02
+ 0.32088221E+00 0.11733084E+02
+ 0.32910996E+00 0.11759476E+02
+ 0.33733771E+00 0.11785319E+02
+ 0.34556546E+00 0.11810610E+02
+ 0.35379320E+00 0.11835348E+02
+ 0.36202095E+00 0.11859539E+02
+ 0.37024870E+00 0.11883190E+02
+ 0.37847645E+00 0.11906314E+02
+ 0.38670420E+00 0.11928924E+02
+ 0.39493195E+00 0.11951037E+02
+ 0.40315970E+00 0.11972671E+02
+ 0.41138745E+00 0.11993847E+02
+ 0.41961520E+00 0.12014587E+02
+ 0.42784295E+00 0.12034912E+02
+ 0.43607069E+00 0.12054844E+02
+ 0.44429844E+00 0.12074405E+02
+ 0.45252619E+00 0.12093618E+02
+ 0.46075394E+00 0.12112503E+02
+ 0.46898169E+00 0.12131078E+02
+ 0.47720944E+00 0.12149364E+02
+ 0.48543719E+00 0.12167375E+02
+ 0.49366494E+00 0.12185127E+02
+ 0.50189269E+00 0.12202632E+02
+ 0.51012043E+00 0.12219900E+02
+ 0.51834818E+00 0.12236939E+02
+ 0.52657593E+00 0.12253754E+02
+ 0.53480368E+00 0.12270348E+02
+ 0.54303143E+00 0.12286722E+02
+ 0.55125918E+00 0.12302875E+02
+ 0.55948693E+00 0.12318801E+02
+ 0.56771468E+00 0.12334495E+02
+ 0.57594243E+00 0.12349950E+02
+ 0.58417018E+00 0.12365155E+02
+ 0.59239792E+00 0.12380098E+02
+ 0.60062567E+00 0.12394768E+02
+ 0.60885342E+00 0.12409149E+02
+ 0.61708117E+00 0.12423228E+02
+ 0.62530892E+00 0.12436990E+02
+ 0.63353667E+00 0.12450418E+02
+ 0.64176442E+00 0.12463497E+02
+ 0.64999217E+00 0.12476212E+02
+ 0.65821992E+00 0.12488548E+02
+ 0.66644766E+00 0.12500492E+02
+ 0.67467541E+00 0.12512029E+02
+ 0.68290316E+00 0.12523149E+02
+ 0.69113091E+00 0.12533842E+02
+ 0.69935866E+00 0.12544097E+02
+ 0.70758641E+00 0.12553910E+02
+ 0.71581416E+00 0.12563274E+02
+ 0.72404191E+00 0.12572186E+02
+ 0.73226966E+00 0.12580647E+02
+ 0.74049741E+00 0.12588655E+02
+ 0.74872515E+00 0.12596216E+02
+ 0.75695290E+00 0.12603333E+02
+ 0.76518065E+00 0.12610015E+02
+ 0.77340840E+00 0.12616269E+02
+ 0.78163615E+00 0.12622106E+02
+ 0.78986390E+00 0.12627539E+02
+ 0.79809165E+00 0.12632580E+02
+ 0.80631940E+00 0.12637244E+02
+ 0.81454715E+00 0.12641547E+02
+ 0.82277490E+00 0.12645504E+02
+ 0.83100264E+00 0.12645918E+02
+ 0.83923039E+00 0.12647158E+02
+ 0.84745814E+00 0.12649226E+02
+ 0.85568589E+00 0.12652124E+02
+ 0.86391364E+00 0.12655855E+02
+ 0.87214139E+00 0.12660422E+02
+ 0.88036914E+00 0.12665829E+02
+ 0.88859689E+00 0.12672080E+02
+ 0.89682464E+00 0.12679181E+02
+ 0.90505238E+00 0.12687137E+02
+ 0.91328013E+00 0.12695953E+02
+ 0.92150788E+00 0.12705635E+02
+ 0.92973563E+00 0.12716188E+02
+ 0.93796338E+00 0.12727619E+02
+ 0.94619113E+00 0.12739933E+02
+ 0.95441888E+00 0.12753135E+02
+ 0.96264663E+00 0.12767229E+02
+ 0.97087438E+00 0.12782219E+02
+ 0.97910213E+00 0.12798107E+02
+ 0.98732987E+00 0.12814897E+02
+ 0.99555762E+00 0.12832588E+02
+ 0.10037854E+01 0.12851181E+02
+ 0.10120131E+01 0.12870674E+02
+ 0.10202409E+01 0.12891063E+02
+ 0.10284686E+01 0.12912343E+02
+ 0.10366964E+01 0.12934508E+02
+ 0.10449241E+01 0.12957549E+02
+ 0.10531519E+01 0.12981456E+02
+ 0.10613796E+01 0.13006216E+02
+ 0.10696074E+01 0.13031815E+02
+ 0.10778351E+01 0.13058236E+02
+ 0.10860629E+01 0.13085460E+02
+ 0.10942906E+01 0.13113465E+02
+ 0.11025184E+01 0.13142229E+02
+ 0.11107461E+01 0.13171725E+02
+ 0.11189739E+01 0.13201927E+02
+ 0.11272016E+01 0.13232803E+02
+ 0.11354294E+01 0.13264321E+02
+ 0.11436571E+01 0.13296448E+02
+ 0.11518849E+01 0.13329146E+02
+ 0.11601126E+01 0.13362378E+02
+ 0.11683404E+01 0.13396104E+02
+ 0.11765681E+01 0.13430281E+02
+ 0.11847958E+01 0.13464866E+02
+ 0.11930236E+01 0.13499816E+02
+ 0.12012513E+01 0.13535082E+02
+ 0.12094791E+01 0.13570619E+02
+ 0.12177068E+01 0.13606378E+02
+ 0.12259346E+01 0.13642309E+02
+ 0.12341623E+01 0.13678363E+02
+ 0.12423901E+01 0.13714491E+02
+ 0.12506178E+01 0.13750641E+02
+ 0.12588456E+01 0.13786762E+02
+ 0.12670733E+01 0.13822806E+02
+ 0.12753011E+01 0.13858720E+02
+ 0.12835288E+01 0.13894455E+02
+ 0.12917566E+01 0.13929963E+02
+ 0.12999843E+01 0.13965194E+02
+ 0.13082121E+01 0.14000101E+02
+ 0.13164398E+01 0.14034637E+02
+ 0.13246676E+01 0.14068758E+02
+ 0.13328953E+01 0.14102420E+02
+ 0.13411231E+01 0.14135580E+02
+ 0.13493508E+01 0.14168197E+02
+ 0.13575786E+01 0.14200232E+02
+ 0.13658063E+01 0.14231648E+02
+ 0.13740341E+01 0.14262410E+02
+ 0.13822618E+01 0.14292483E+02
+ 0.13904896E+01 0.14321837E+02
+ 0.13987173E+01 0.14350442E+02
+ 0.14069451E+01 0.14378270E+02
+ 0.14151728E+01 0.14405295E+02
+ 0.14234006E+01 0.14431495E+02
+ 0.14316283E+01 0.14456847E+02
+ 0.14398561E+01 0.14481332E+02
+ 0.14480838E+01 0.14504932E+02
+ 0.14563116E+01 0.14527632E+02
+ 0.14645393E+01 0.14549417E+02
+ 0.14727671E+01 0.14570275E+02
+ 0.14809948E+01 0.14590195E+02
+ 0.14892226E+01 0.14609169E+02
+ 0.14974503E+01 0.14627188E+02
+ 0.15056781E+01 0.14644246E+02
+ 0.15139058E+01 0.14660337E+02
+ 0.15221336E+01 0.14675459E+02
+ 0.15303613E+01 0.14689607E+02
+ 0.15385891E+01 0.14702779E+02
+ 0.15468168E+01 0.14714974E+02
+ 0.15550446E+01 0.14726191E+02
+ 0.15632723E+01 0.14736429E+02
+ 0.15715000E+01 0.14745689E+02
+ 0.15797278E+01 0.14753972E+02
+ 0.15879555E+01 0.14761277E+02
+ 0.15961833E+01 0.14767606E+02
+ 0.16044110E+01 0.14772959E+02
+ 0.16126388E+01 0.14777337E+02
+ 0.16208665E+01 0.14780742E+02
+ 0.16290943E+01 0.14783173E+02
+ 0.16373220E+01 0.14784632E+02
+ 0.16455498E+01 0.14785118E+02
+ 0.16538021E+01 0.14784639E+02
+ 0.16620545E+01 0.14783204E+02
+ 0.16703068E+01 0.14780813E+02
+ 0.16785591E+01 0.14777473E+02
+ 0.16868115E+01 0.14773187E+02
+ 0.16950638E+01 0.14767964E+02
+ 0.17033161E+01 0.14761811E+02
+ 0.17115685E+01 0.14754738E+02
+ 0.17198208E+01 0.14746755E+02
+ 0.17280732E+01 0.14737875E+02
+ 0.17363255E+01 0.14728109E+02
+ 0.17445778E+01 0.14717471E+02
+ 0.17528302E+01 0.14705974E+02
+ 0.17610825E+01 0.14693631E+02
+ 0.17693348E+01 0.14680456E+02
+ 0.17775872E+01 0.14666464E+02
+ 0.17858395E+01 0.14651667E+02
+ 0.17940918E+01 0.14636080E+02
+ 0.18023442E+01 0.14619714E+02
+ 0.18105965E+01 0.14602583E+02
+ 0.18188489E+01 0.14584699E+02
+ 0.18271012E+01 0.14566073E+02
+ 0.18353535E+01 0.14546717E+02
+ 0.18436059E+01 0.14526640E+02
+ 0.18518582E+01 0.14505852E+02
+ 0.18601105E+01 0.14484364E+02
+ 0.18683629E+01 0.14462184E+02
+ 0.18766152E+01 0.14439321E+02
+ 0.18848675E+01 0.14415784E+02
+ 0.18931199E+01 0.14391582E+02
+ 0.19013722E+01 0.14366723E+02
+ 0.19096246E+01 0.14341217E+02
+ 0.19178769E+01 0.14315074E+02
+ 0.19261292E+01 0.14288304E+02
+ 0.19343816E+01 0.14260917E+02
+ 0.19426339E+01 0.14232926E+02
+ 0.19508862E+01 0.14204343E+02
+ 0.19591386E+01 0.14175182E+02
+ 0.19673909E+01 0.14145459E+02
+ 0.19756432E+01 0.14115190E+02
+ 0.19838956E+01 0.14084392E+02
+ 0.19921479E+01 0.14053085E+02
+ 0.20004002E+01 0.14021288E+02
+ 0.20086526E+01 0.13989024E+02
+ 0.20169049E+01 0.13956314E+02
+ 0.20251573E+01 0.13923184E+02
+ 0.20334096E+01 0.13889657E+02
+ 0.20416619E+01 0.13855761E+02
+ 0.20499143E+01 0.13821521E+02
+ 0.20581666E+01 0.13786964E+02
+ 0.20664189E+01 0.13752118E+02
+ 0.20746713E+01 0.13717011E+02
+ 0.20829236E+01 0.13681669E+02
+ 0.20911759E+01 0.13646121E+02
+ 0.20994283E+01 0.13610393E+02
+ 0.21076806E+01 0.13574511E+02
+ 0.21159330E+01 0.13538500E+02
+ 0.21241853E+01 0.13502384E+02
+ 0.21324376E+01 0.13466186E+02
+ 0.21406900E+01 0.13429925E+02
+ 0.21489423E+01 0.13393622E+02
+ 0.21571946E+01 0.13357294E+02
+ 0.21654470E+01 0.13320957E+02
+ 0.21736993E+01 0.13284623E+02
+ 0.21819516E+01 0.13248304E+02
+ 0.21902040E+01 0.13212009E+02
+ 0.21984563E+01 0.13175744E+02
+ 0.22067087E+01 0.13139515E+02
+ 0.22149610E+01 0.13103324E+02
+ 0.22232133E+01 0.13067172E+02
+ 0.22314657E+01 0.13031057E+02
+ 0.22397180E+01 0.12994975E+02
+ 0.22479703E+01 0.12958922E+02
+ 0.22562227E+01 0.12922892E+02
+ 0.22644750E+01 0.12886875E+02
+ 0.22727273E+01 0.12850862E+02
+ 0.22809797E+01 0.12814844E+02
+ 0.22892320E+01 0.12778809E+02
+ 0.22974844E+01 0.12742745E+02
+ 0.23057367E+01 0.12706639E+02
+ 0.23139890E+01 0.12670480E+02
+ 0.23222414E+01 0.12634254E+02
+ 0.23304937E+01 0.12597949E+02
+ 0.23387460E+01 0.12561554E+02
+ 0.23469984E+01 0.12525055E+02
+ 0.23552507E+01 0.12488443E+02
+ 0.23635030E+01 0.12451708E+02
+ 0.23717554E+01 0.12414841E+02
+ 0.23800077E+01 0.12377833E+02
+ 0.23882601E+01 0.12340680E+02
+ 0.23965124E+01 0.12303377E+02
+ 0.24047647E+01 0.12265920E+02
+ 0.24130171E+01 0.12228308E+02
+ 0.24212694E+01 0.12190543E+02
+ 0.24295217E+01 0.12152627E+02
+ 0.24377741E+01 0.12114566E+02
+ 0.24460264E+01 0.12076366E+02
+ 0.24542787E+01 0.12038039E+02
+ 0.24625311E+01 0.11999597E+02
+ 0.24707834E+01 0.11961054E+02
+ 0.24790358E+01 0.11922428E+02
+ 0.24872881E+01 0.11883741E+02
+ 0.24955404E+01 0.11845016E+02
+ 0.25037928E+01 0.11806279E+02
+ 0.25120451E+01 0.11767559E+02
+ 0.25202974E+01 0.11728891E+02
+ 0.25285498E+01 0.11690309E+02
+ 0.25368021E+01 0.11651852E+02
+ 0.25450544E+01 0.11613562E+02
+ 0.25533068E+01 0.11575486E+02
+ 0.25615591E+01 0.11537670E+02
+ 0.25698115E+01 0.11500166E+02
+ 0.25780638E+01 0.11463030E+02
+ 0.25863161E+01 0.11426317E+02
+ 0.25945685E+01 0.11390088E+02
+ 0.26028208E+01 0.11354405E+02
+ 0.26110731E+01 0.11319333E+02
+ 0.26193255E+01 0.11284939E+02
+ 0.26275778E+01 0.11251291E+02
+ 0.26358301E+01 0.11218460E+02
+ 0.26440825E+01 0.11186518E+02
+ 0.26523348E+01 0.11155536E+02
+ 0.26605872E+01 0.11125587E+02
+ 0.26688395E+01 0.11096745E+02
+ 0.26770918E+01 0.11069081E+02
+ 0.26853442E+01 0.11042667E+02
+ 0.26935965E+01 0.11017574E+02
+ 0.27018488E+01 0.10993871E+02
+ 0.27101012E+01 0.10971624E+02
+ 0.27183535E+01 0.10950897E+02
+ 0.27266058E+01 0.10931751E+02
+ 0.27348582E+01 0.10914243E+02
+ 0.27431105E+01 0.10898426E+02
+ 0.27513629E+01 0.10884349E+02
+ 0.27596152E+01 0.10872057E+02
+ 0.27678675E+01 0.10861588E+02
+ 0.27761199E+01 0.10852975E+02
+ 0.27843722E+01 0.10846247E+02
+ 0.27926245E+01 0.10841426E+02
+ 0.28008769E+01 0.10838527E+02
+ 0.28091292E+01 0.10837560E+02
+ 0.28173322E+01 0.10837553E+02
+ 0.28255353E+01 0.10837535E+02
+ 0.28337383E+01 0.10837505E+02
+ 0.28419413E+01 0.10837467E+02
+ 0.28501443E+01 0.10837422E+02
+ 0.28583474E+01 0.10837373E+02
+ 0.28665504E+01 0.10837324E+02
+ 0.28747534E+01 0.10837279E+02
+ 0.28829564E+01 0.10837239E+02
+ 0.28911595E+01 0.10837209E+02
+ 0.28993625E+01 0.10837191E+02
+ 0.29075655E+01 0.10837188E+02
+ 0.29157686E+01 0.10837199E+02
+ 0.29239716E+01 0.10837226E+02
+ 0.29321746E+01 0.10837268E+02
+ 0.29403776E+01 0.10837323E+02
+ 0.29485807E+01 0.10837389E+02
+ 0.29567837E+01 0.10837463E+02
+ 0.29649867E+01 0.10837541E+02
+ 0.29731897E+01 0.10837619E+02
+ 0.29813928E+01 0.10837691E+02
+ 0.29895958E+01 0.10837755E+02
+ 0.29977988E+01 0.10837804E+02
+ 0.30060018E+01 0.10837834E+02
+ 0.30142049E+01 0.10837843E+02
+ 0.30224079E+01 0.10837827E+02
+ 0.30306109E+01 0.10837784E+02
+ 0.30388140E+01 0.10837714E+02
+ 0.30470170E+01 0.10837618E+02
+
diff --git a/tests/data/lco_mlwf/lco_hr.dat b/tests/data/lco_mlwf/lco_hr.dat
new file mode 100644
index 0000000..52eab2a
--- /dev/null
+++ b/tests/data/lco_mlwf/lco_hr.dat
@@ -0,0 +1,427 @@
+ written on 3May2022 at 14:04:18
+ 1
+ 397
+ 2 2 2 2 2 2 2 4 1 1 2 1 1 2 1
+ 1 2 1 1 2 1 1 2 1 1 2 1 2 4 2
+ 2 1 1 4 1 1 1 1 2 1 1 1 1 2 1
+ 1 1 1 2 1 1 1 1 2 1 1 1 1 2 1
+ 1 1 2 2 1 2 4 2 2 1 1 2 1 1 1
+ 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1
+ 2 1 1 1 1 1 1 2 1 1 1 1 1 1 2
+ 1 1 1 1 1 2 2 1 1 1 2 2 1 2 2
+ 2 1 1 2 1 1 1 1 2 1 1 1 1 1 1
+ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
+ 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1
+ 1 1 2 1 1 2 2 2 2 1 1 2 1 1 1
+ 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1
+ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
+ 1 1 1 1 1 2 1 1 1 1 2 1 1 2 2
+ 2 2 1 1 2 1 1 1 1 2 1 1 1 1 1
+ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
+ 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1
+ 1 1 1 2 1 1 2 2 2 1 2 2 1 1 1
+ 2 2 1 1 1 1 1 2 1 1 1 1 1 1 2
+ 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1
+ 1 1 1 1 1 1 1 1 1 1 2 1 1 2 2
+ 4 2 1 2 2 1 1 1 2 1 1 1 1 2 1
+ 1 1 1 2 1 1 1 1 2 1 1 1 1 2 1
+ 1 1 1 4 1 1 2 2 4 2 1 2 1 1 2
+ 1 1 2 1 1 2 1 1 2 1 1 2 1 1 4
+ 2 2 2 2 2 2 2
+ -5 -4 -6 1 1 0.000090 0.000000
+ -5 -3 -5 1 1 0.000005 0.000000
+ -5 -2 -4 1 1 0.000268 0.000000
+ -5 -1 -3 1 1 0.000268 -0.000000
+ -5 0 -2 1 1 0.000005 -0.000000
+ -5 1 -1 1 1 0.000090 0.000000
+ -4 -5 -6 1 1 0.000090 -0.000000
+ -4 -4 -7 1 1 -0.001331 0.000000
+ -4 -4 -6 1 1 -0.000443 0.000000
+ -4 -4 -5 1 1 -0.000083 -0.000000
+ -4 -3 -6 1 1 -0.000460 0.000000
+ -4 -3 -5 1 1 0.000131 0.000000
+ -4 -3 -4 1 1 -0.000176 0.000000
+ -4 -2 -5 1 1 -0.000256 0.000000
+ -4 -2 -4 1 1 -0.000115 -0.000000
+ -4 -2 -3 1 1 0.000079 -0.000000
+ -4 -1 -4 1 1 -0.003848 -0.000000
+ -4 -1 -3 1 1 -0.000643 -0.000000
+ -4 -1 -2 1 1 0.000079 -0.000000
+ -4 0 -3 1 1 -0.003848 -0.000000
+ -4 0 -2 1 1 -0.000115 -0.000000
+ -4 0 -1 1 1 -0.000176 -0.000000
+ -4 1 -2 1 1 -0.000256 -0.000000
+ -4 1 -1 1 1 0.000131 0.000000
+ -4 1 0 1 1 -0.000083 0.000000
+ -4 2 -1 1 1 -0.000460 0.000000
+ -4 2 0 1 1 -0.000443 0.000000
+ -4 2 1 1 1 0.000090 -0.000000
+ -4 3 0 1 1 -0.001331 0.000000
+ -3 -5 -5 1 1 0.000005 0.000000
+ -3 -4 -6 1 1 -0.000460 0.000000
+ -3 -4 -5 1 1 0.000131 -0.000000
+ -3 -4 -4 1 1 -0.000176 0.000000
+ -3 -3 -7 1 1 -0.001331 -0.000000
+ -3 -3 -6 1 1 0.001925 -0.000000
+ -3 -3 -5 1 1 0.001091 0.000000
+ -3 -3 -4 1 1 0.000709 -0.000000
+ -3 -3 -3 1 1 -0.000278 0.000000
+ -3 -2 -6 1 1 -0.000460 -0.000000
+ -3 -2 -5 1 1 -0.002519 -0.000000
+ -3 -2 -4 1 1 0.002341 0.000000
+ -3 -2 -3 1 1 0.000401 -0.000000
+ -3 -2 -2 1 1 -0.000033 0.000000
+ -3 -1 -5 1 1 -0.000256 0.000000
+ -3 -1 -4 1 1 -0.006908 0.000000
+ -3 -1 -3 1 1 -0.002701 -0.000000
+ -3 -1 -2 1 1 0.000057 -0.000000
+ -3 -1 -1 1 1 -0.000033 -0.000000
+ -3 0 -4 1 1 -0.003848 0.000000
+ -3 0 -3 1 1 0.003510 0.000000
+ -3 0 -2 1 1 -0.002701 -0.000000
+ -3 0 -1 1 1 0.000401 -0.000000
+ -3 0 0 1 1 -0.000278 -0.000000
+ -3 1 -3 1 1 -0.003848 0.000000
+ -3 1 -2 1 1 -0.006908 0.000000
+ -3 1 -1 1 1 0.002341 -0.000000
+ -3 1 0 1 1 0.000709 -0.000000
+ -3 1 1 1 1 -0.000176 0.000000
+ -3 2 -2 1 1 -0.000256 -0.000000
+ -3 2 -1 1 1 -0.002519 0.000000
+ -3 2 0 1 1 0.001091 0.000000
+ -3 2 1 1 1 0.000131 0.000000
+ -3 2 2 1 1 0.000005 0.000000
+ -3 3 -1 1 1 -0.000460 -0.000000
+ -3 3 0 1 1 0.001925 0.000000
+ -3 3 1 1 1 -0.000460 0.000000
+ -3 4 0 1 1 -0.001331 -0.000000
+ -2 -5 -4 1 1 0.000268 0.000000
+ -2 -4 -5 1 1 -0.000256 0.000000
+ -2 -4 -4 1 1 -0.000115 -0.000000
+ -2 -4 -3 1 1 0.000079 0.000000
+ -2 -3 -6 1 1 -0.000460 -0.000000
+ -2 -3 -5 1 1 -0.002519 0.000000
+ -2 -3 -4 1 1 0.002341 0.000000
+ -2 -3 -3 1 1 0.000401 0.000000
+ -2 -3 -2 1 1 -0.000033 0.000000
+ -2 -2 -6 1 1 -0.000443 -0.000000
+ -2 -2 -5 1 1 0.001091 -0.000000
+ -2 -2 -4 1 1 -0.005152 0.000000
+ -2 -2 -3 1 1 0.009103 0.000000
+ -2 -2 -2 1 1 -0.000134 -0.000000
+ -2 -2 -1 1 1 0.000195 0.000000
+ -2 -2 0 1 1 0.000264 -0.000000
+ -2 -1 -6 1 1 0.000090 -0.000000
+ -2 -1 -5 1 1 0.000131 -0.000000
+ -2 -1 -4 1 1 0.002341 0.000000
+ -2 -1 -3 1 1 -0.025916 0.000000
+ -2 -1 -2 1 1 0.001941 -0.000000
+ -2 -1 -1 1 1 -0.000305 -0.000000
+ -2 -1 0 1 1 0.000195 -0.000000
+ -2 0 -5 1 1 0.000005 0.000000
+ -2 0 -4 1 1 -0.000115 0.000000
+ -2 0 -3 1 1 -0.002701 0.000000
+ -2 0 -2 1 1 -0.038151 0.000000
+ -2 0 -1 1 1 0.001941 -0.000000
+ -2 0 0 1 1 -0.000134 -0.000000
+ -2 0 1 1 1 -0.000033 -0.000000
+ -2 1 -4 1 1 0.000268 0.000000
+ -2 1 -3 1 1 -0.000643 0.000000
+ -2 1 -2 1 1 -0.002701 0.000000
+ -2 1 -1 1 1 -0.025916 0.000000
+ -2 1 0 1 1 0.009103 -0.000000
+ -2 1 1 1 1 0.000401 0.000000
+ -2 1 2 1 1 0.000079 0.000000
+ -2 2 -3 1 1 0.000268 -0.000000
+ -2 2 -2 1 1 -0.000115 -0.000000
+ -2 2 -1 1 1 0.002341 0.000000
+ -2 2 0 1 1 -0.005152 0.000000
+ -2 2 1 1 1 0.002341 0.000000
+ -2 2 2 1 1 -0.000115 0.000000
+ -2 2 3 1 1 0.000268 0.000000
+ -2 3 -2 1 1 0.000005 -0.000000
+ -2 3 -1 1 1 0.000131 -0.000000
+ -2 3 0 1 1 0.001091 -0.000000
+ -2 3 1 1 1 -0.002519 0.000000
+ -2 3 2 1 1 -0.000256 0.000000
+ -2 4 -1 1 1 0.000090 -0.000000
+ -2 4 0 1 1 -0.000443 -0.000000
+ -2 4 1 1 1 -0.000460 -0.000000
+ -1 -5 -3 1 1 0.000268 0.000000
+ -1 -4 -4 1 1 -0.003848 0.000000
+ -1 -4 -3 1 1 -0.000643 0.000000
+ -1 -4 -2 1 1 0.000079 0.000000
+ -1 -3 -5 1 1 -0.000256 -0.000000
+ -1 -3 -4 1 1 -0.006908 0.000000
+ -1 -3 -3 1 1 -0.002701 0.000000
+ -1 -3 -2 1 1 0.000057 0.000000
+ -1 -3 -1 1 1 -0.000033 0.000000
+ -1 -2 -6 1 1 0.000090 0.000000
+ -1 -2 -5 1 1 0.000131 0.000000
+ -1 -2 -4 1 1 0.002341 -0.000000
+ -1 -2 -3 1 1 -0.025916 0.000000
+ -1 -2 -2 1 1 0.001941 0.000000
+ -1 -2 -1 1 1 -0.000305 0.000000
+ -1 -2 0 1 1 0.000195 0.000000
+ -1 -1 -5 1 1 -0.000083 -0.000000
+ -1 -1 -4 1 1 0.000709 -0.000000
+ -1 -1 -3 1 1 0.009103 0.000000
+ -1 -1 -2 1 1 0.034234 0.000000
+ -1 -1 -1 1 1 -0.008396 0.000000
+ -1 -1 0 1 1 -0.000326 0.000000
+ -1 -1 1 1 1 0.000195 -0.000000
+ -1 0 -4 1 1 -0.000176 0.000000
+ -1 0 -3 1 1 0.000401 0.000000
+ -1 0 -2 1 1 0.001941 0.000000
+ -1 0 -1 1 1 -0.440321 0.000000
+ -1 0 0 1 1 -0.008396 -0.000000
+ -1 0 1 1 1 -0.000305 0.000000
+ -1 0 2 1 1 -0.000033 -0.000000
+ -1 1 -3 1 1 0.000079 0.000000
+ -1 1 -2 1 1 0.000057 0.000000
+ -1 1 -1 1 1 0.001941 0.000000
+ -1 1 0 1 1 0.034234 0.000000
+ -1 1 1 1 1 0.001941 -0.000000
+ -1 1 2 1 1 0.000057 0.000000
+ -1 1 3 1 1 0.000079 0.000000
+ -1 2 -2 1 1 0.000079 -0.000000
+ -1 2 -1 1 1 0.000401 -0.000000
+ -1 2 0 1 1 0.009103 0.000000
+ -1 2 1 1 1 -0.025916 0.000000
+ -1 2 2 1 1 -0.002701 0.000000
+ -1 2 3 1 1 -0.000643 0.000000
+ -1 2 4 1 1 0.000268 0.000000
+ -1 3 -1 1 1 -0.000176 -0.000000
+ -1 3 0 1 1 0.000709 0.000000
+ -1 3 1 1 1 0.002341 0.000000
+ -1 3 2 1 1 -0.006908 0.000000
+ -1 3 3 1 1 -0.003848 0.000000
+ -1 4 0 1 1 -0.000083 0.000000
+ -1 4 1 1 1 0.000131 0.000000
+ -1 4 2 1 1 -0.000256 -0.000000
+ -1 5 1 1 1 0.000090 0.000000
+ 0 -5 -2 1 1 0.000005 -0.000000
+ 0 -4 -3 1 1 -0.003848 0.000000
+ 0 -4 -2 1 1 -0.000115 -0.000000
+ 0 -4 -1 1 1 -0.000176 -0.000000
+ 0 -3 -4 1 1 -0.003848 -0.000000
+ 0 -3 -3 1 1 0.003510 -0.000000
+ 0 -3 -2 1 1 -0.002701 0.000000
+ 0 -3 -1 1 1 0.000401 0.000000
+ 0 -3 0 1 1 -0.000278 0.000000
+ 0 -2 -5 1 1 0.000005 0.000000
+ 0 -2 -4 1 1 -0.000115 0.000000
+ 0 -2 -3 1 1 -0.002701 -0.000000
+ 0 -2 -2 1 1 -0.038151 0.000000
+ 0 -2 -1 1 1 0.001941 0.000000
+ 0 -2 0 1 1 -0.000134 0.000000
+ 0 -2 1 1 1 -0.000033 0.000000
+ 0 -1 -4 1 1 -0.000176 0.000000
+ 0 -1 -3 1 1 0.000401 -0.000000
+ 0 -1 -2 1 1 0.001941 0.000000
+ 0 -1 -1 1 1 -0.440321 0.000000
+ 0 -1 0 1 1 -0.008396 0.000000
+ 0 -1 1 1 1 -0.000305 0.000000
+ 0 -1 2 1 1 -0.000033 -0.000000
+ 0 0 -3 1 1 -0.000278 0.000000
+ 0 0 -2 1 1 -0.000134 0.000000
+ 0 0 -1 1 1 -0.008396 0.000000
+ 0 0 0 1 1 12.895622 0.000000
+ 0 0 1 1 1 -0.008396 -0.000000
+ 0 0 2 1 1 -0.000134 -0.000000
+ 0 0 3 1 1 -0.000278 -0.000000
+ 0 1 -2 1 1 -0.000033 0.000000
+ 0 1 -1 1 1 -0.000305 -0.000000
+ 0 1 0 1 1 -0.008396 -0.000000
+ 0 1 1 1 1 -0.440321 -0.000000
+ 0 1 2 1 1 0.001941 -0.000000
+ 0 1 3 1 1 0.000401 0.000000
+ 0 1 4 1 1 -0.000176 -0.000000
+ 0 2 -1 1 1 -0.000033 -0.000000
+ 0 2 0 1 1 -0.000134 -0.000000
+ 0 2 1 1 1 0.001941 -0.000000
+ 0 2 2 1 1 -0.038151 -0.000000
+ 0 2 3 1 1 -0.002701 0.000000
+ 0 2 4 1 1 -0.000115 -0.000000
+ 0 2 5 1 1 0.000005 -0.000000
+ 0 3 0 1 1 -0.000278 -0.000000
+ 0 3 1 1 1 0.000401 -0.000000
+ 0 3 2 1 1 -0.002701 -0.000000
+ 0 3 3 1 1 0.003510 0.000000
+ 0 3 4 1 1 -0.003848 0.000000
+ 0 4 1 1 1 -0.000176 0.000000
+ 0 4 2 1 1 -0.000115 0.000000
+ 0 4 3 1 1 -0.003848 -0.000000
+ 0 5 2 1 1 0.000005 0.000000
+ 1 -5 -1 1 1 0.000090 -0.000000
+ 1 -4 -2 1 1 -0.000256 0.000000
+ 1 -4 -1 1 1 0.000131 -0.000000
+ 1 -4 0 1 1 -0.000083 -0.000000
+ 1 -3 -3 1 1 -0.003848 -0.000000
+ 1 -3 -2 1 1 -0.006908 -0.000000
+ 1 -3 -1 1 1 0.002341 -0.000000
+ 1 -3 0 1 1 0.000709 -0.000000
+ 1 -3 1 1 1 -0.000176 0.000000
+ 1 -2 -4 1 1 0.000268 -0.000000
+ 1 -2 -3 1 1 -0.000643 -0.000000
+ 1 -2 -2 1 1 -0.002701 -0.000000
+ 1 -2 -1 1 1 -0.025916 -0.000000
+ 1 -2 0 1 1 0.009103 -0.000000
+ 1 -2 1 1 1 0.000401 0.000000
+ 1 -2 2 1 1 0.000079 0.000000
+ 1 -1 -3 1 1 0.000079 -0.000000
+ 1 -1 -2 1 1 0.000057 -0.000000
+ 1 -1 -1 1 1 0.001941 0.000000
+ 1 -1 0 1 1 0.034234 -0.000000
+ 1 -1 1 1 1 0.001941 -0.000000
+ 1 -1 2 1 1 0.000057 -0.000000
+ 1 -1 3 1 1 0.000079 -0.000000
+ 1 0 -2 1 1 -0.000033 0.000000
+ 1 0 -1 1 1 -0.000305 -0.000000
+ 1 0 0 1 1 -0.008396 0.000000
+ 1 0 1 1 1 -0.440321 -0.000000
+ 1 0 2 1 1 0.001941 -0.000000
+ 1 0 3 1 1 0.000401 -0.000000
+ 1 0 4 1 1 -0.000176 -0.000000
+ 1 1 -1 1 1 0.000195 0.000000
+ 1 1 0 1 1 -0.000326 -0.000000
+ 1 1 1 1 1 -0.008396 -0.000000
+ 1 1 2 1 1 0.034234 -0.000000
+ 1 1 3 1 1 0.009103 -0.000000
+ 1 1 4 1 1 0.000709 0.000000
+ 1 1 5 1 1 -0.000083 0.000000
+ 1 2 0 1 1 0.000195 -0.000000
+ 1 2 1 1 1 -0.000305 -0.000000
+ 1 2 2 1 1 0.001941 -0.000000
+ 1 2 3 1 1 -0.025916 -0.000000
+ 1 2 4 1 1 0.002341 0.000000
+ 1 2 5 1 1 0.000131 -0.000000
+ 1 2 6 1 1 0.000090 -0.000000
+ 1 3 1 1 1 -0.000033 -0.000000
+ 1 3 2 1 1 0.000057 -0.000000
+ 1 3 3 1 1 -0.002701 -0.000000
+ 1 3 4 1 1 -0.006908 -0.000000
+ 1 3 5 1 1 -0.000256 0.000000
+ 1 4 2 1 1 0.000079 -0.000000
+ 1 4 3 1 1 -0.000643 -0.000000
+ 1 4 4 1 1 -0.003848 -0.000000
+ 1 5 3 1 1 0.000268 -0.000000
+ 2 -4 -1 1 1 -0.000460 0.000000
+ 2 -4 0 1 1 -0.000443 0.000000
+ 2 -4 1 1 1 0.000090 0.000000
+ 2 -3 -2 1 1 -0.000256 -0.000000
+ 2 -3 -1 1 1 -0.002519 -0.000000
+ 2 -3 0 1 1 0.001091 0.000000
+ 2 -3 1 1 1 0.000131 0.000000
+ 2 -3 2 1 1 0.000005 0.000000
+ 2 -2 -3 1 1 0.000268 -0.000000
+ 2 -2 -2 1 1 -0.000115 -0.000000
+ 2 -2 -1 1 1 0.002341 -0.000000
+ 2 -2 0 1 1 -0.005152 -0.000000
+ 2 -2 1 1 1 0.002341 -0.000000
+ 2 -2 2 1 1 -0.000115 0.000000
+ 2 -2 3 1 1 0.000268 0.000000
+ 2 -1 -2 1 1 0.000079 -0.000000
+ 2 -1 -1 1 1 0.000401 -0.000000
+ 2 -1 0 1 1 0.009103 0.000000
+ 2 -1 1 1 1 -0.025916 -0.000000
+ 2 -1 2 1 1 -0.002701 -0.000000
+ 2 -1 3 1 1 -0.000643 -0.000000
+ 2 -1 4 1 1 0.000268 -0.000000
+ 2 0 -1 1 1 -0.000033 0.000000
+ 2 0 0 1 1 -0.000134 0.000000
+ 2 0 1 1 1 0.001941 0.000000
+ 2 0 2 1 1 -0.038151 -0.000000
+ 2 0 3 1 1 -0.002701 -0.000000
+ 2 0 4 1 1 -0.000115 -0.000000
+ 2 0 5 1 1 0.000005 -0.000000
+ 2 1 0 1 1 0.000195 0.000000
+ 2 1 1 1 1 -0.000305 0.000000
+ 2 1 2 1 1 0.001941 0.000000
+ 2 1 3 1 1 -0.025916 -0.000000
+ 2 1 4 1 1 0.002341 -0.000000
+ 2 1 5 1 1 0.000131 0.000000
+ 2 1 6 1 1 0.000090 0.000000
+ 2 2 0 1 1 0.000264 0.000000
+ 2 2 1 1 1 0.000195 -0.000000
+ 2 2 2 1 1 -0.000134 0.000000
+ 2 2 3 1 1 0.009103 -0.000000
+ 2 2 4 1 1 -0.005152 -0.000000
+ 2 2 5 1 1 0.001091 0.000000
+ 2 2 6 1 1 -0.000443 0.000000
+ 2 3 2 1 1 -0.000033 -0.000000
+ 2 3 3 1 1 0.000401 -0.000000
+ 2 3 4 1 1 0.002341 -0.000000
+ 2 3 5 1 1 -0.002519 -0.000000
+ 2 3 6 1 1 -0.000460 0.000000
+ 2 4 3 1 1 0.000079 -0.000000
+ 2 4 4 1 1 -0.000115 0.000000
+ 2 4 5 1 1 -0.000256 -0.000000
+ 2 5 4 1 1 0.000268 -0.000000
+ 3 -4 0 1 1 -0.001331 0.000000
+ 3 -3 -1 1 1 -0.000460 -0.000000
+ 3 -3 0 1 1 0.001925 -0.000000
+ 3 -3 1 1 1 -0.000460 0.000000
+ 3 -2 -2 1 1 0.000005 -0.000000
+ 3 -2 -1 1 1 0.000131 -0.000000
+ 3 -2 0 1 1 0.001091 -0.000000
+ 3 -2 1 1 1 -0.002519 -0.000000
+ 3 -2 2 1 1 -0.000256 0.000000
+ 3 -1 -1 1 1 -0.000176 -0.000000
+ 3 -1 0 1 1 0.000709 0.000000
+ 3 -1 1 1 1 0.002341 0.000000
+ 3 -1 2 1 1 -0.006908 -0.000000
+ 3 -1 3 1 1 -0.003848 -0.000000
+ 3 0 0 1 1 -0.000278 0.000000
+ 3 0 1 1 1 0.000401 0.000000
+ 3 0 2 1 1 -0.002701 0.000000
+ 3 0 3 1 1 0.003510 -0.000000
+ 3 0 4 1 1 -0.003848 -0.000000
+ 3 1 1 1 1 -0.000033 0.000000
+ 3 1 2 1 1 0.000057 0.000000
+ 3 1 3 1 1 -0.002701 0.000000
+ 3 1 4 1 1 -0.006908 -0.000000
+ 3 1 5 1 1 -0.000256 -0.000000
+ 3 2 2 1 1 -0.000033 -0.000000
+ 3 2 3 1 1 0.000401 0.000000
+ 3 2 4 1 1 0.002341 -0.000000
+ 3 2 5 1 1 -0.002519 0.000000
+ 3 2 6 1 1 -0.000460 0.000000
+ 3 3 3 1 1 -0.000278 -0.000000
+ 3 3 4 1 1 0.000709 0.000000
+ 3 3 5 1 1 0.001091 -0.000000
+ 3 3 6 1 1 0.001925 0.000000
+ 3 3 7 1 1 -0.001331 0.000000
+ 3 4 4 1 1 -0.000176 -0.000000
+ 3 4 5 1 1 0.000131 0.000000
+ 3 4 6 1 1 -0.000460 -0.000000
+ 3 5 5 1 1 0.000005 -0.000000
+ 4 -3 0 1 1 -0.001331 -0.000000
+ 4 -2 -1 1 1 0.000090 0.000000
+ 4 -2 0 1 1 -0.000443 -0.000000
+ 4 -2 1 1 1 -0.000460 -0.000000
+ 4 -1 0 1 1 -0.000083 -0.000000
+ 4 -1 1 1 1 0.000131 -0.000000
+ 4 -1 2 1 1 -0.000256 0.000000
+ 4 0 1 1 1 -0.000176 0.000000
+ 4 0 2 1 1 -0.000115 0.000000
+ 4 0 3 1 1 -0.003848 0.000000
+ 4 1 2 1 1 0.000079 0.000000
+ 4 1 3 1 1 -0.000643 0.000000
+ 4 1 4 1 1 -0.003848 0.000000
+ 4 2 3 1 1 0.000079 0.000000
+ 4 2 4 1 1 -0.000115 0.000000
+ 4 2 5 1 1 -0.000256 -0.000000
+ 4 3 4 1 1 -0.000176 -0.000000
+ 4 3 5 1 1 0.000131 -0.000000
+ 4 3 6 1 1 -0.000460 -0.000000
+ 4 4 5 1 1 -0.000083 0.000000
+ 4 4 6 1 1 -0.000443 -0.000000
+ 4 4 7 1 1 -0.001331 -0.000000
+ 4 5 6 1 1 0.000090 0.000000
+ 5 -1 1 1 1 0.000090 -0.000000
+ 5 0 2 1 1 0.000005 0.000000
+ 5 1 3 1 1 0.000268 0.000000
+ 5 2 4 1 1 0.000268 -0.000000
+ 5 3 5 1 1 0.000005 -0.000000
+ 5 4 6 1 1 0.000090 -0.000000
diff --git a/tests/data/lk99_liangsi_1/k000.win b/tests/data/lk99_liangsi_1/k000.win
new file mode 100644
index 0000000..dfd5287
--- /dev/null
+++ b/tests/data/lk99_liangsi_1/k000.win
@@ -0,0 +1,507 @@
+ num_bands = 2
+ num_wann = 2
+
+!!! Disentanglement parameters !!!
+ dis_froz_min = -0.1
+ dis_froz_max = 0.1
+ dis_mix_ratio = 0.5
+
+!!! Iterations &c. !!!
+ iprint = 1
+ num_iter = 10000
+ num_print_cycles = 100
+ conv_window = 3
+!conv_tol = 1e-10
+ dis_num_iter = 10000
+!dis_conv_window = 3
+!dis_conv_tol = 1e-10
+!restart = default ! wannierise ! plot ! transport
+
+!!! Post-processing options !!!
+ write_proj = .true.
+ write_xyz = .true.
+ translate_home_cell = .true.
+ hr_plot = .true.
+ fermi_surface_plot = .true.
+!dos = .false.
+!dos_project =
+!dos_kmesh = 50 50 1
+!dos_energy_min = -1.8
+!dos_energy_max = +1.5
+
+!!! Band structure !!!
+!!! needs `kpoint_path' block
+!bands_plot = .true.
+ bands_num_points = 300
+!bands_plot_format = gnuplot xmgrace
+ bands_plot_project = 1
+!bands_plot_mode = s-k | cut [Slater-Koster | truncate Hamiltonian]
+
+
+begin unit_cell_cart
+Bohr
+ 15.809981 -9.127897 0.000000
+ 0.000000 18.255794 0.000000
+ 0.000000 0.000000 13.655482
+end unit_cell_cart
+
+begin atoms_cart
+Bohr
+ 1 0.00000000 0.00000000 0.00000000
+ 2 14.16532166 2.17390004 3.34034938
+ 3 6.84466788 2.05268139 3.34034938
+ 4 10.60997320 -4.22658143 3.34034938
+ 5 0.00000000 0.00000000 6.70581120
+ 6 5.26999374 9.12789709 6.63786152
+ 7 14.46626465 -2.18121130 10.18626583
+ 8 10.46583344 4.49086134 10.18626583
+ 9 6.68786464 -2.30965003 10.18626583
+ 10 5.26999374 9.12789709 13.45649432
+ 11 1.20126341 6.00411167 3.06588785
+ 12 10.00963643 7.16616580 3.06588785
+ 13 4.59908153 14.21341353 3.06588785
+ 14 0.75795153 12.80413935 10.29799499
+ 15 4.34229565 3.38223261 10.29799499
+ 16 10.70973419 11.19731904 10.29799499
+ 17 15.20122325 -1.85833020 1.12119701
+ 18 9.81873091 4.96591361 1.12119701
+ 19 6.60000858 -3.10758341 1.12119701
+ 20 3.98933782 6.28814444 2.21702212
+ 21 8.36961963 9.43869267 2.21702212
+ 22 3.45102392 11.65685389 2.21702212
+ 23 12.81870649 7.99226804 3.35177902
+ 24 2.47912097 16.23308845 3.35177902
+ 25 0.51215391 3.15833451 3.35177902
+ 26 0.78089182 7.37275767 5.64348298
+ 27 9.03454002 6.11779032 5.64348298
+ 28 5.99454953 13.89314301 5.64348298
+ 29 15.02416727 3.89997624 7.81613844
+ 30 4.92041924 1.93342541 7.81613844
+ 31 11.67537623 -5.83340165 7.81613844
+ 32 5.70503699 5.97934768 10.43734918
+ 33 7.77919588 11.07893013 10.43734918
+ 34 2.32574849 10.32541319 10.43734918
+ 35 2.51956290 15.17969280 10.46136917
+ 36 1.40420033 3.72005608 10.46136917
+ 37 11.88621814 8.48394212 10.46136917
+ 38 14.60705254 3.86126482 12.47101915
+ 39 5.16250167 1.59154916 12.47101915
+ 40 11.85040853 -5.45281398 12.47101915
+ 41 10.53998747 0.00000018 4.08283891
+end atoms_cart
+
+!!! BZ-Path for band structure !!!
+bands_plot = T
+begin kpoint_path
+ G 0.00000 0.00000 0.00000 M 0.50000 -0.50000 0.00000
+ M 0.50000 -0.50000 0.00000 K 0.66667 -0.33333 0.00000
+ K 0.66667 -0.33333 0.00000 G 0.00000 0.00000 0.00000
+ G 0.00000 0.00000 0.00000 A 0.00000 0.00000 0.50000
+ A 0.00000 0.00000 0.50000 L 0.50000 -0.50000 0.50000
+ L 0.50000 -0.50000 0.50000 H 0.66667 -0.33333 0.50000
+ H 0.66667 -0.33333 0.50000 A 0.00000 0.00000 0.50000
+end kpoint_path
+
+!!!! Dummy `projections' block for guiding centres !!!
+guiding_centres = T
+begin projections
+ 10:s
+ 10:s
+end projections
+
+!!! K-Points !!!
+mp_grid : 7 7 8
+begin kpoints
+ 0.000000000000000 0.000000000000000 0.000000000000000
+ 0.000000000000000 0.000000000000000 0.125000000000000
+ 0.000000000000000 0.000000000000000 0.250000000000000
+ 0.000000000000000 0.000000000000000 0.375000000000000
+ 0.000000000000000 0.000000000000000 0.500000000000000
+ 0.000000000000000 0.000000000000000 0.625000000000000
+ 0.000000000000000 0.000000000000000 0.750000000000000
+ 0.000000000000000 0.000000000000000 0.875000000000000
+ 0.000000000000000 0.142857142857143 0.000000000000000
+ 0.000000000000000 0.142857142857143 0.125000000000000
+ 0.000000000000000 0.142857142857143 0.250000000000000
+ 0.000000000000000 0.142857142857143 0.375000000000000
+ 0.000000000000000 0.142857142857143 0.500000000000000
+ 0.000000000000000 0.142857142857143 0.625000000000000
+ 0.000000000000000 0.142857142857143 0.750000000000000
+ 0.000000000000000 0.142857142857143 0.875000000000000
+ 0.000000000000000 0.285714285714286 0.000000000000000
+ 0.000000000000000 0.285714285714286 0.125000000000000
+ 0.000000000000000 0.285714285714286 0.250000000000000
+ 0.000000000000000 0.285714285714286 0.375000000000000
+ 0.000000000000000 0.285714285714286 0.500000000000000
+ 0.000000000000000 0.285714285714286 0.625000000000000
+ 0.000000000000000 0.285714285714286 0.750000000000000
+ 0.000000000000000 0.285714285714286 0.875000000000000
+ 0.000000000000000 0.428571428571429 0.000000000000000
+ 0.000000000000000 0.428571428571429 0.125000000000000
+ 0.000000000000000 0.428571428571429 0.250000000000000
+ 0.000000000000000 0.428571428571429 0.375000000000000
+ 0.000000000000000 0.428571428571429 0.500000000000000
+ 0.000000000000000 0.428571428571429 0.625000000000000
+ 0.000000000000000 0.428571428571429 0.750000000000000
+ 0.000000000000000 0.428571428571429 0.875000000000000
+ 0.000000000000000 0.571428571428571 0.000000000000000
+ 0.000000000000000 0.571428571428571 0.125000000000000
+ 0.000000000000000 0.571428571428571 0.250000000000000
+ 0.000000000000000 0.571428571428571 0.375000000000000
+ 0.000000000000000 0.571428571428571 0.500000000000000
+ 0.000000000000000 0.571428571428571 0.625000000000000
+ 0.000000000000000 0.571428571428571 0.750000000000000
+ 0.000000000000000 0.571428571428571 0.875000000000000
+ 0.000000000000000 0.714285714285714 0.000000000000000
+ 0.000000000000000 0.714285714285714 0.125000000000000
+ 0.000000000000000 0.714285714285714 0.250000000000000
+ 0.000000000000000 0.714285714285714 0.375000000000000
+ 0.000000000000000 0.714285714285714 0.500000000000000
+ 0.000000000000000 0.714285714285714 0.625000000000000
+ 0.000000000000000 0.714285714285714 0.750000000000000
+ 0.000000000000000 0.714285714285714 0.875000000000000
+ 0.000000000000000 0.857142857142857 0.000000000000000
+ 0.000000000000000 0.857142857142857 0.125000000000000
+ 0.000000000000000 0.857142857142857 0.250000000000000
+ 0.000000000000000 0.857142857142857 0.375000000000000
+ 0.000000000000000 0.857142857142857 0.500000000000000
+ 0.000000000000000 0.857142857142857 0.625000000000000
+ 0.000000000000000 0.857142857142857 0.750000000000000
+ 0.000000000000000 0.857142857142857 0.875000000000000
+ 0.142857142857143 0.000000000000000 0.000000000000000
+ 0.142857142857143 0.000000000000000 0.125000000000000
+ 0.142857142857143 0.000000000000000 0.250000000000000
+ 0.142857142857143 0.000000000000000 0.375000000000000
+ 0.142857142857143 0.000000000000000 0.500000000000000
+ 0.142857142857143 0.000000000000000 0.625000000000000
+ 0.142857142857143 0.000000000000000 0.750000000000000
+ 0.142857142857143 0.000000000000000 0.875000000000000
+ 0.142857142857143 0.142857142857143 0.000000000000000
+ 0.142857142857143 0.142857142857143 0.125000000000000
+ 0.142857142857143 0.142857142857143 0.250000000000000
+ 0.142857142857143 0.142857142857143 0.375000000000000
+ 0.142857142857143 0.142857142857143 0.500000000000000
+ 0.142857142857143 0.142857142857143 0.625000000000000
+ 0.142857142857143 0.142857142857143 0.750000000000000
+ 0.142857142857143 0.142857142857143 0.875000000000000
+ 0.142857142857143 0.285714285714286 0.000000000000000
+ 0.142857142857143 0.285714285714286 0.125000000000000
+ 0.142857142857143 0.285714285714286 0.250000000000000
+ 0.142857142857143 0.285714285714286 0.375000000000000
+ 0.142857142857143 0.285714285714286 0.500000000000000
+ 0.142857142857143 0.285714285714286 0.625000000000000
+ 0.142857142857143 0.285714285714286 0.750000000000000
+ 0.142857142857143 0.285714285714286 0.875000000000000
+ 0.142857142857143 0.428571428571429 0.000000000000000
+ 0.142857142857143 0.428571428571429 0.125000000000000
+ 0.142857142857143 0.428571428571429 0.250000000000000
+ 0.142857142857143 0.428571428571429 0.375000000000000
+ 0.142857142857143 0.428571428571429 0.500000000000000
+ 0.142857142857143 0.428571428571429 0.625000000000000
+ 0.142857142857143 0.428571428571429 0.750000000000000
+ 0.142857142857143 0.428571428571429 0.875000000000000
+ 0.142857142857143 0.571428571428571 0.000000000000000
+ 0.142857142857143 0.571428571428571 0.125000000000000
+ 0.142857142857143 0.571428571428571 0.250000000000000
+ 0.142857142857143 0.571428571428571 0.375000000000000
+ 0.142857142857143 0.571428571428571 0.500000000000000
+ 0.142857142857143 0.571428571428571 0.625000000000000
+ 0.142857142857143 0.571428571428571 0.750000000000000
+ 0.142857142857143 0.571428571428571 0.875000000000000
+ 0.142857142857143 0.714285714285714 0.000000000000000
+ 0.142857142857143 0.714285714285714 0.125000000000000
+ 0.142857142857143 0.714285714285714 0.250000000000000
+ 0.142857142857143 0.714285714285714 0.375000000000000
+ 0.142857142857143 0.714285714285714 0.500000000000000
+ 0.142857142857143 0.714285714285714 0.625000000000000
+ 0.142857142857143 0.714285714285714 0.750000000000000
+ 0.142857142857143 0.714285714285714 0.875000000000000
+ 0.142857142857143 0.857142857142857 0.000000000000000
+ 0.142857142857143 0.857142857142857 0.125000000000000
+ 0.142857142857143 0.857142857142857 0.250000000000000
+ 0.142857142857143 0.857142857142857 0.375000000000000
+ 0.142857142857143 0.857142857142857 0.500000000000000
+ 0.142857142857143 0.857142857142857 0.625000000000000
+ 0.142857142857143 0.857142857142857 0.750000000000000
+ 0.142857142857143 0.857142857142857 0.875000000000000
+ 0.285714285714286 0.000000000000000 0.000000000000000
+ 0.285714285714286 0.000000000000000 0.125000000000000
+ 0.285714285714286 0.000000000000000 0.250000000000000
+ 0.285714285714286 0.000000000000000 0.375000000000000
+ 0.285714285714286 0.000000000000000 0.500000000000000
+ 0.285714285714286 0.000000000000000 0.625000000000000
+ 0.285714285714286 0.000000000000000 0.750000000000000
+ 0.285714285714286 0.000000000000000 0.875000000000000
+ 0.285714285714286 0.142857142857143 0.000000000000000
+ 0.285714285714286 0.142857142857143 0.125000000000000
+ 0.285714285714286 0.142857142857143 0.250000000000000
+ 0.285714285714286 0.142857142857143 0.375000000000000
+ 0.285714285714286 0.142857142857143 0.500000000000000
+ 0.285714285714286 0.142857142857143 0.625000000000000
+ 0.285714285714286 0.142857142857143 0.750000000000000
+ 0.285714285714286 0.142857142857143 0.875000000000000
+ 0.285714285714286 0.285714285714286 0.000000000000000
+ 0.285714285714286 0.285714285714286 0.125000000000000
+ 0.285714285714286 0.285714285714286 0.250000000000000
+ 0.285714285714286 0.285714285714286 0.375000000000000
+ 0.285714285714286 0.285714285714286 0.500000000000000
+ 0.285714285714286 0.285714285714286 0.625000000000000
+ 0.285714285714286 0.285714285714286 0.750000000000000
+ 0.285714285714286 0.285714285714286 0.875000000000000
+ 0.285714285714286 0.428571428571429 0.000000000000000
+ 0.285714285714286 0.428571428571429 0.125000000000000
+ 0.285714285714286 0.428571428571429 0.250000000000000
+ 0.285714285714286 0.428571428571429 0.375000000000000
+ 0.285714285714286 0.428571428571429 0.500000000000000
+ 0.285714285714286 0.428571428571429 0.625000000000000
+ 0.285714285714286 0.428571428571429 0.750000000000000
+ 0.285714285714286 0.428571428571429 0.875000000000000
+ 0.285714285714286 0.571428571428571 0.000000000000000
+ 0.285714285714286 0.571428571428571 0.125000000000000
+ 0.285714285714286 0.571428571428571 0.250000000000000
+ 0.285714285714286 0.571428571428571 0.375000000000000
+ 0.285714285714286 0.571428571428571 0.500000000000000
+ 0.285714285714286 0.571428571428571 0.625000000000000
+ 0.285714285714286 0.571428571428571 0.750000000000000
+ 0.285714285714286 0.571428571428571 0.875000000000000
+ 0.285714285714286 0.714285714285714 0.000000000000000
+ 0.285714285714286 0.714285714285714 0.125000000000000
+ 0.285714285714286 0.714285714285714 0.250000000000000
+ 0.285714285714286 0.714285714285714 0.375000000000000
+ 0.285714285714286 0.714285714285714 0.500000000000000
+ 0.285714285714286 0.714285714285714 0.625000000000000
+ 0.285714285714286 0.714285714285714 0.750000000000000
+ 0.285714285714286 0.714285714285714 0.875000000000000
+ 0.285714285714286 0.857142857142857 0.000000000000000
+ 0.285714285714286 0.857142857142857 0.125000000000000
+ 0.285714285714286 0.857142857142857 0.250000000000000
+ 0.285714285714286 0.857142857142857 0.375000000000000
+ 0.285714285714286 0.857142857142857 0.500000000000000
+ 0.285714285714286 0.857142857142857 0.625000000000000
+ 0.285714285714286 0.857142857142857 0.750000000000000
+ 0.285714285714286 0.857142857142857 0.875000000000000
+ 0.428571428571429 0.000000000000000 0.000000000000000
+ 0.428571428571429 0.000000000000000 0.125000000000000
+ 0.428571428571429 0.000000000000000 0.250000000000000
+ 0.428571428571429 0.000000000000000 0.375000000000000
+ 0.428571428571429 0.000000000000000 0.500000000000000
+ 0.428571428571429 0.000000000000000 0.625000000000000
+ 0.428571428571429 0.000000000000000 0.750000000000000
+ 0.428571428571429 0.000000000000000 0.875000000000000
+ 0.428571428571429 0.142857142857143 0.000000000000000
+ 0.428571428571429 0.142857142857143 0.125000000000000
+ 0.428571428571429 0.142857142857143 0.250000000000000
+ 0.428571428571429 0.142857142857143 0.375000000000000
+ 0.428571428571429 0.142857142857143 0.500000000000000
+ 0.428571428571429 0.142857142857143 0.625000000000000
+ 0.428571428571429 0.142857142857143 0.750000000000000
+ 0.428571428571429 0.142857142857143 0.875000000000000
+ 0.428571428571429 0.285714285714286 0.000000000000000
+ 0.428571428571429 0.285714285714286 0.125000000000000
+ 0.428571428571429 0.285714285714286 0.250000000000000
+ 0.428571428571429 0.285714285714286 0.375000000000000
+ 0.428571428571429 0.285714285714286 0.500000000000000
+ 0.428571428571429 0.285714285714286 0.625000000000000
+ 0.428571428571429 0.285714285714286 0.750000000000000
+ 0.428571428571429 0.285714285714286 0.875000000000000
+ 0.428571428571429 0.428571428571429 0.000000000000000
+ 0.428571428571429 0.428571428571429 0.125000000000000
+ 0.428571428571429 0.428571428571429 0.250000000000000
+ 0.428571428571429 0.428571428571429 0.375000000000000
+ 0.428571428571429 0.428571428571429 0.500000000000000
+ 0.428571428571429 0.428571428571429 0.625000000000000
+ 0.428571428571429 0.428571428571429 0.750000000000000
+ 0.428571428571429 0.428571428571429 0.875000000000000
+ 0.428571428571429 0.571428571428571 0.000000000000000
+ 0.428571428571429 0.571428571428571 0.125000000000000
+ 0.428571428571429 0.571428571428571 0.250000000000000
+ 0.428571428571429 0.571428571428571 0.375000000000000
+ 0.428571428571429 0.571428571428571 0.500000000000000
+ 0.428571428571429 0.571428571428571 0.625000000000000
+ 0.428571428571429 0.571428571428571 0.750000000000000
+ 0.428571428571429 0.571428571428571 0.875000000000000
+ 0.428571428571429 0.714285714285714 0.000000000000000
+ 0.428571428571429 0.714285714285714 0.125000000000000
+ 0.428571428571429 0.714285714285714 0.250000000000000
+ 0.428571428571429 0.714285714285714 0.375000000000000
+ 0.428571428571429 0.714285714285714 0.500000000000000
+ 0.428571428571429 0.714285714285714 0.625000000000000
+ 0.428571428571429 0.714285714285714 0.750000000000000
+ 0.428571428571429 0.714285714285714 0.875000000000000
+ 0.428571428571429 0.857142857142857 0.000000000000000
+ 0.428571428571429 0.857142857142857 0.125000000000000
+ 0.428571428571429 0.857142857142857 0.250000000000000
+ 0.428571428571429 0.857142857142857 0.375000000000000
+ 0.428571428571429 0.857142857142857 0.500000000000000
+ 0.428571428571429 0.857142857142857 0.625000000000000
+ 0.428571428571429 0.857142857142857 0.750000000000000
+ 0.428571428571429 0.857142857142857 0.875000000000000
+ 0.571428571428571 0.000000000000000 0.000000000000000
+ 0.571428571428571 0.000000000000000 0.125000000000000
+ 0.571428571428571 0.000000000000000 0.250000000000000
+ 0.571428571428571 0.000000000000000 0.375000000000000
+ 0.571428571428571 0.000000000000000 0.500000000000000
+ 0.571428571428571 0.000000000000000 0.625000000000000
+ 0.571428571428571 0.000000000000000 0.750000000000000
+ 0.571428571428571 0.000000000000000 0.875000000000000
+ 0.571428571428571 0.142857142857143 0.000000000000000
+ 0.571428571428571 0.142857142857143 0.125000000000000
+ 0.571428571428571 0.142857142857143 0.250000000000000
+ 0.571428571428571 0.142857142857143 0.375000000000000
+ 0.571428571428571 0.142857142857143 0.500000000000000
+ 0.571428571428571 0.142857142857143 0.625000000000000
+ 0.571428571428571 0.142857142857143 0.750000000000000
+ 0.571428571428571 0.142857142857143 0.875000000000000
+ 0.571428571428571 0.285714285714286 0.000000000000000
+ 0.571428571428571 0.285714285714286 0.125000000000000
+ 0.571428571428571 0.285714285714286 0.250000000000000
+ 0.571428571428571 0.285714285714286 0.375000000000000
+ 0.571428571428571 0.285714285714286 0.500000000000000
+ 0.571428571428571 0.285714285714286 0.625000000000000
+ 0.571428571428571 0.285714285714286 0.750000000000000
+ 0.571428571428571 0.285714285714286 0.875000000000000
+ 0.571428571428571 0.428571428571429 0.000000000000000
+ 0.571428571428571 0.428571428571429 0.125000000000000
+ 0.571428571428571 0.428571428571429 0.250000000000000
+ 0.571428571428571 0.428571428571429 0.375000000000000
+ 0.571428571428571 0.428571428571429 0.500000000000000
+ 0.571428571428571 0.428571428571429 0.625000000000000
+ 0.571428571428571 0.428571428571429 0.750000000000000
+ 0.571428571428571 0.428571428571429 0.875000000000000
+ 0.571428571428571 0.571428571428571 0.000000000000000
+ 0.571428571428571 0.571428571428571 0.125000000000000
+ 0.571428571428571 0.571428571428571 0.250000000000000
+ 0.571428571428571 0.571428571428571 0.375000000000000
+ 0.571428571428571 0.571428571428571 0.500000000000000
+ 0.571428571428571 0.571428571428571 0.625000000000000
+ 0.571428571428571 0.571428571428571 0.750000000000000
+ 0.571428571428571 0.571428571428571 0.875000000000000
+ 0.571428571428571 0.714285714285714 0.000000000000000
+ 0.571428571428571 0.714285714285714 0.125000000000000
+ 0.571428571428571 0.714285714285714 0.250000000000000
+ 0.571428571428571 0.714285714285714 0.375000000000000
+ 0.571428571428571 0.714285714285714 0.500000000000000
+ 0.571428571428571 0.714285714285714 0.625000000000000
+ 0.571428571428571 0.714285714285714 0.750000000000000
+ 0.571428571428571 0.714285714285714 0.875000000000000
+ 0.571428571428571 0.857142857142857 0.000000000000000
+ 0.571428571428571 0.857142857142857 0.125000000000000
+ 0.571428571428571 0.857142857142857 0.250000000000000
+ 0.571428571428571 0.857142857142857 0.375000000000000
+ 0.571428571428571 0.857142857142857 0.500000000000000
+ 0.571428571428571 0.857142857142857 0.625000000000000
+ 0.571428571428571 0.857142857142857 0.750000000000000
+ 0.571428571428571 0.857142857142857 0.875000000000000
+ 0.714285714285714 0.000000000000000 0.000000000000000
+ 0.714285714285714 0.000000000000000 0.125000000000000
+ 0.714285714285714 0.000000000000000 0.250000000000000
+ 0.714285714285714 0.000000000000000 0.375000000000000
+ 0.714285714285714 0.000000000000000 0.500000000000000
+ 0.714285714285714 0.000000000000000 0.625000000000000
+ 0.714285714285714 0.000000000000000 0.750000000000000
+ 0.714285714285714 0.000000000000000 0.875000000000000
+ 0.714285714285714 0.142857142857143 0.000000000000000
+ 0.714285714285714 0.142857142857143 0.125000000000000
+ 0.714285714285714 0.142857142857143 0.250000000000000
+ 0.714285714285714 0.142857142857143 0.375000000000000
+ 0.714285714285714 0.142857142857143 0.500000000000000
+ 0.714285714285714 0.142857142857143 0.625000000000000
+ 0.714285714285714 0.142857142857143 0.750000000000000
+ 0.714285714285714 0.142857142857143 0.875000000000000
+ 0.714285714285714 0.285714285714286 0.000000000000000
+ 0.714285714285714 0.285714285714286 0.125000000000000
+ 0.714285714285714 0.285714285714286 0.250000000000000
+ 0.714285714285714 0.285714285714286 0.375000000000000
+ 0.714285714285714 0.285714285714286 0.500000000000000
+ 0.714285714285714 0.285714285714286 0.625000000000000
+ 0.714285714285714 0.285714285714286 0.750000000000000
+ 0.714285714285714 0.285714285714286 0.875000000000000
+ 0.714285714285714 0.428571428571429 0.000000000000000
+ 0.714285714285714 0.428571428571429 0.125000000000000
+ 0.714285714285714 0.428571428571429 0.250000000000000
+ 0.714285714285714 0.428571428571429 0.375000000000000
+ 0.714285714285714 0.428571428571429 0.500000000000000
+ 0.714285714285714 0.428571428571429 0.625000000000000
+ 0.714285714285714 0.428571428571429 0.750000000000000
+ 0.714285714285714 0.428571428571429 0.875000000000000
+ 0.714285714285714 0.571428571428571 0.000000000000000
+ 0.714285714285714 0.571428571428571 0.125000000000000
+ 0.714285714285714 0.571428571428571 0.250000000000000
+ 0.714285714285714 0.571428571428571 0.375000000000000
+ 0.714285714285714 0.571428571428571 0.500000000000000
+ 0.714285714285714 0.571428571428571 0.625000000000000
+ 0.714285714285714 0.571428571428571 0.750000000000000
+ 0.714285714285714 0.571428571428571 0.875000000000000
+ 0.714285714285714 0.714285714285714 0.000000000000000
+ 0.714285714285714 0.714285714285714 0.125000000000000
+ 0.714285714285714 0.714285714285714 0.250000000000000
+ 0.714285714285714 0.714285714285714 0.375000000000000
+ 0.714285714285714 0.714285714285714 0.500000000000000
+ 0.714285714285714 0.714285714285714 0.625000000000000
+ 0.714285714285714 0.714285714285714 0.750000000000000
+ 0.714285714285714 0.714285714285714 0.875000000000000
+ 0.714285714285714 0.857142857142857 0.000000000000000
+ 0.714285714285714 0.857142857142857 0.125000000000000
+ 0.714285714285714 0.857142857142857 0.250000000000000
+ 0.714285714285714 0.857142857142857 0.375000000000000
+ 0.714285714285714 0.857142857142857 0.500000000000000
+ 0.714285714285714 0.857142857142857 0.625000000000000
+ 0.714285714285714 0.857142857142857 0.750000000000000
+ 0.714285714285714 0.857142857142857 0.875000000000000
+ 0.857142857142857 0.000000000000000 0.000000000000000
+ 0.857142857142857 0.000000000000000 0.125000000000000
+ 0.857142857142857 0.000000000000000 0.250000000000000
+ 0.857142857142857 0.000000000000000 0.375000000000000
+ 0.857142857142857 0.000000000000000 0.500000000000000
+ 0.857142857142857 0.000000000000000 0.625000000000000
+ 0.857142857142857 0.000000000000000 0.750000000000000
+ 0.857142857142857 0.000000000000000 0.875000000000000
+ 0.857142857142857 0.142857142857143 0.000000000000000
+ 0.857142857142857 0.142857142857143 0.125000000000000
+ 0.857142857142857 0.142857142857143 0.250000000000000
+ 0.857142857142857 0.142857142857143 0.375000000000000
+ 0.857142857142857 0.142857142857143 0.500000000000000
+ 0.857142857142857 0.142857142857143 0.625000000000000
+ 0.857142857142857 0.142857142857143 0.750000000000000
+ 0.857142857142857 0.142857142857143 0.875000000000000
+ 0.857142857142857 0.285714285714286 0.000000000000000
+ 0.857142857142857 0.285714285714286 0.125000000000000
+ 0.857142857142857 0.285714285714286 0.250000000000000
+ 0.857142857142857 0.285714285714286 0.375000000000000
+ 0.857142857142857 0.285714285714286 0.500000000000000
+ 0.857142857142857 0.285714285714286 0.625000000000000
+ 0.857142857142857 0.285714285714286 0.750000000000000
+ 0.857142857142857 0.285714285714286 0.875000000000000
+ 0.857142857142857 0.428571428571429 0.000000000000000
+ 0.857142857142857 0.428571428571429 0.125000000000000
+ 0.857142857142857 0.428571428571429 0.250000000000000
+ 0.857142857142857 0.428571428571429 0.375000000000000
+ 0.857142857142857 0.428571428571429 0.500000000000000
+ 0.857142857142857 0.428571428571429 0.625000000000000
+ 0.857142857142857 0.428571428571429 0.750000000000000
+ 0.857142857142857 0.428571428571429 0.875000000000000
+ 0.857142857142857 0.571428571428571 0.000000000000000
+ 0.857142857142857 0.571428571428571 0.125000000000000
+ 0.857142857142857 0.571428571428571 0.250000000000000
+ 0.857142857142857 0.571428571428571 0.375000000000000
+ 0.857142857142857 0.571428571428571 0.500000000000000
+ 0.857142857142857 0.571428571428571 0.625000000000000
+ 0.857142857142857 0.571428571428571 0.750000000000000
+ 0.857142857142857 0.571428571428571 0.875000000000000
+ 0.857142857142857 0.714285714285714 0.000000000000000
+ 0.857142857142857 0.714285714285714 0.125000000000000
+ 0.857142857142857 0.714285714285714 0.250000000000000
+ 0.857142857142857 0.714285714285714 0.375000000000000
+ 0.857142857142857 0.714285714285714 0.500000000000000
+ 0.857142857142857 0.714285714285714 0.625000000000000
+ 0.857142857142857 0.714285714285714 0.750000000000000
+ 0.857142857142857 0.714285714285714 0.875000000000000
+ 0.857142857142857 0.857142857142857 0.000000000000000
+ 0.857142857142857 0.857142857142857 0.125000000000000
+ 0.857142857142857 0.857142857142857 0.250000000000000
+ 0.857142857142857 0.857142857142857 0.375000000000000
+ 0.857142857142857 0.857142857142857 0.500000000000000
+ 0.857142857142857 0.857142857142857 0.625000000000000
+ 0.857142857142857 0.857142857142857 0.750000000000000
+ 0.857142857142857 0.857142857142857 0.875000000000000
+end kpoints
diff --git a/tests/data/lk99_liangsi_1/k000.wout b/tests/data/lk99_liangsi_1/k000.wout
new file mode 100644
index 0000000..e189653
--- /dev/null
+++ b/tests/data/lk99_liangsi_1/k000.wout
@@ -0,0 +1,349 @@
+
+ +---------------------------------------------------+
+ | |
+ | WANNIER90 |
+ | |
+ +---------------------------------------------------+
+ | |
+ | Welcome to the Maximally-Localized |
+ | Generalized Wannier Functions code |
+ | http://www.wannier.org |
+ | |
+ | Wannier90 v2.0 Authors: |
+ | Arash A. Mostofi (Imperial College London) |
+ | Giovanni Pizzi (EPFL) |
+ | Ivo Souza (Universidad del Pais Vasco) |
+ | Jonathan R. Yates (University of Oxford) |
+ | |
+ | Wannier90 Contributors: |
+ | Young-Su Lee (KIST, S. Korea) |
+ | Matthew Shelley (Imperial College London) |
+ | Nicolas Poilvert (Penn State University) |
+ | Raffaello Bianco (Paris 6 and CNRS) |
+ | Gabriele Sclauzero (ETH Zurich) |
+ | |
+ | Wannier77 Authors: |
+ | Nicola Marzari (EPFL) |
+ | Ivo Souza (Universidad del Pais Vasco) |
+ | David Vanderbilt (Rutgers University) |
+ | |
+ | Please cite |
+ | |
+ | [ref] "Wannier90: A Tool for Obtaining Maximally |
+ | Localised Wannier Functions" |
+ | A. A. Mostofi, J. R. Yates, Y.-S. Lee, |
+ | I. Souza, D. Vanderbilt and N. Marzari |
+ | Comput. Phys. Commun. 178, 685 (2008) |
+ | |
+ | in any publications arising from the use of |
+ | this code. For the method please cite |
+ | |
+ | [ref] "Maximally Localized Generalised Wannier |
+ | Functions for Composite Energy Bands" |
+ | N. Marzari and D. Vanderbilt |
+ | Phys. Rev. B 56 12847 (1997) |
+ | |
+ | [ref] "Maximally Localized Wannier Functions |
+ | for Entangled Energy Bands" |
+ | I. Souza, N. Marzari and D. Vanderbilt |
+ | Phys. Rev. B 65 035109 (2001) |
+ | |
+ | |
+ | Copyright (c) 1996-2015 |
+ | Arash A. Mostofi, Jonathan R. Yates, |
+ | Young-Su Lee, Giovanni Pizzi, Ivo Souza, |
+ | David Vanderbilt and Nicola Marzari |
+ | |
+ | Release: 2.0.1 2nd April 2015 |
+ | |
+ | This program is free software; you can |
+ | redistribute it and/or modify it under the terms |
+ | of the GNU General Public License as published by |
+ | the Free Software Foundation; either version 2 of |
+ | the License, or (at your option) any later version|
+ | |
+ | This program is distributed in the hope that it |
+ | will be useful, but WITHOUT ANY WARRANTY; without |
+ | even the implied warranty of MERCHANTABILITY or |
+ | FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
+ | General Public License for more details. |
+ | |
+ | You should have received a copy of the GNU General|
+ | Public License along with this program; if not, |
+ | write to the Free Software Foundation, Inc., |
+ | 675 Mass Ave, Cambridge, MA 02139, USA. |
+ | |
+ +---------------------------------------------------+
+ | Execution started on 7Aug2023 at 06:31:05 |
+ +---------------------------------------------------+
+
+ ******************************************************************************
+ * -> Using CODATA 2006 constant values *
+ * (http://physics.nist.gov/cuu/Constants/index.html) *
+ * -> Using Bohr value from CODATA *
+ ******************************************************************************
+
+
+ ------
+ SYSTEM
+ ------
+
+ Lattice Vectors (Ang)
+ a_1 8.366282 -4.830275 0.000000
+ a_2 0.000000 9.660550 0.000000
+ a_3 0.000000 0.000000 7.226170
+
+ Unit Cell Volume: 584.03988 (Ang^3)
+
+ Reciprocal-Space Vectors (Ang^-1)
+ b_1 0.751013 0.000000 0.000000
+ b_2 0.375506 0.650396 -0.000000
+ b_3 -0.000000 0.000000 0.869504
+
+ *----------------------------------------------------------------------------*
+ | Site Fractional Coordinate Cartesian Coordinate (Ang) |
+ +----------------------------------------------------------------------------+
+ | 1 1 0.00000 0.00000 0.00000 | 0.00000 0.00000 0.00000 |
+ | 2 1 0.89597 0.56707 0.24462 | 7.49597 1.15038 1.76764 |
+ | 3 1 0.43293 0.32891 0.24462 | 3.62204 1.08623 1.76764 |
+ | 4 1 0.67109 0.10403 0.24462 | 5.61456 -2.23661 1.76764 |
+ | 5 1 0.00000 0.00000 0.49107 | 0.00000 0.00000 3.54856 |
+ | 6 1 0.33333 0.66667 0.48609 | 2.78876 4.83028 3.51261 |
+ | 7 1 0.91501 0.33802 0.74595 | 7.65522 -1.15425 5.39034 |
+ | 8 1 0.66198 0.57698 0.74595 | 5.53828 2.37646 5.39034 |
+ | 9 1 0.42302 0.08499 0.74595 | 3.53907 -1.22221 5.39034 |
+ | 1 1 0.33333 0.66667 0.98543 | 2.78876 4.83028 7.12087 |
+ | 1 1 0.07598 0.36688 0.22452 | 0.63568 3.17724 1.62240 |
+ | 1 1 0.63312 0.70910 0.22452 | 5.29687 3.79217 1.62240 |
+ | 1 1 0.29090 0.92402 0.22452 | 2.43373 7.52141 1.62240 |
+ | 1 1 0.04794 0.72534 0.75413 | 0.40109 6.77566 5.44946 |
+ | 1 1 0.27466 0.32260 0.75413 | 2.29784 1.78980 5.44946 |
+ | 1 1 0.67740 0.95206 0.75413 | 5.66735 5.92537 5.44946 |
+ | 1 1 0.96150 0.37895 0.08211 | 8.04414 -0.98339 0.59331 |
+ | 1 1 0.62105 0.58254 0.08211 | 5.19585 2.62785 0.59331 |
+ | 1 1 0.41746 0.03850 0.08211 | 3.49257 -1.64446 0.59331 |
+ | 2 1 0.25233 0.47061 0.16235 | 2.11107 3.32754 1.17320 |
+ | 2 1 0.52939 0.78172 0.16235 | 4.42901 4.99474 1.17320 |
+ | 2 1 0.21828 0.74767 0.16235 | 1.82620 6.16854 1.17320 |
+ | 2 1 0.81080 0.84319 0.24545 | 6.78337 4.22933 1.77369 |
+ | 2 1 0.15681 0.96761 0.24545 | 1.31189 8.59018 1.77369 |
+ | 2 1 0.03239 0.18920 0.24545 | 0.27102 1.67132 1.77369 |
+ | 2 1 0.04939 0.42855 0.41328 | 0.41323 3.90150 2.98640 |
+ | 2 1 0.57145 0.62084 0.41328 | 4.78087 3.23740 2.98640 |
+ | 2 1 0.37916 0.95061 0.41328 | 3.17218 7.35193 2.98640 |
+ | 2 1 0.95030 0.68878 0.57238 | 7.95045 2.06378 4.13612 |
+ | 3 1 0.31122 0.26152 0.57238 | 2.60377 1.02312 4.13612 |
+ | 3 1 0.73848 0.04970 0.57238 | 6.17834 -3.08690 4.13612 |
+ | 3 1 0.36085 0.50796 0.76433 | 3.01898 3.16413 5.52321 |
+ | 3 1 0.49204 0.85289 0.76433 | 4.11657 5.86272 5.52321 |
+ | 3 1 0.14711 0.63915 0.76433 | 1.23073 5.46397 5.52321 |
+ | 3 1 0.15937 0.91118 0.76609 | 1.33330 8.03275 5.53592 |
+ | 3 1 0.08882 0.24818 0.76609 | 0.74307 1.96857 5.53592 |
+ | 3 1 0.75182 0.84063 0.76609 | 6.28992 4.48951 5.53592 |
+ | 3 1 0.92391 0.67347 0.91326 | 7.72972 2.04329 6.59938 |
+ | 3 1 0.32653 0.25045 0.91326 | 2.73188 0.84221 6.59938 |
+ | 4 1 0.74955 0.07609 0.91326 | 6.27097 -2.88550 6.59938 |
+ | 4 1 0.66667 0.33333 0.29899 | 5.57752 0.00000 2.16055 |
+ *----------------------------------------------------------------------------*
+
+ ------------
+ K-POINT GRID
+ ------------
+
+ Grid size = 7 x 7 x 8 Total points = 392
+
+
+ *---------------------------------- MAIN ------------------------------------*
+ | Number of Wannier Functions : 2 |
+ | Number of input Bloch states : 2 |
+ | Output verbosity (1=low, 5=high) : 1 |
+ | Timing Level (1=low, 5=high) : 1 |
+ | Optimisation (0=memory, 3=speed) : 3 |
+ | Length Unit : Ang |
+ | Post-processing setup (write *.nnkp) : F |
+ | Using Gamma-only branch of algorithms : F |
+ *----------------------------------------------------------------------------*
+ *------------------------------- WANNIERISE ---------------------------------*
+ | Total number of iterations : 10000 |
+ | Number of CG steps before reset : 5 |
+ | Trial step length for line search : 2.000 |
+ | Convergence tolerence : 0.100E-09 |
+ | Convergence window : 3 |
+ | Iterations between writing output : 100 |
+ | Iterations between backing up to disk : 100 |
+ | Write r^2_nm to file : F |
+ | Write xyz WF centres to file : T |
+ | Write on-site energies <0n|H|0n> to file : F |
+ | Use guiding centre to control phases : T |
+ | Use phases for initial projections : F |
+ | Iterations before starting guiding centres: 0 |
+ | Iterations between using guiding centres : 1 |
+ *----------------------------------------------------------------------------*
+ *-------------------------------- PLOTTING ----------------------------------*
+ | Plotting Fermi surface : T |
+ | Number of plotting points (along b_1) : 50 |
+ | Plotting format : xcrysden |
+ *----------------------------------------------------------------------------*
+ | Plotting interpolated bandstructure : T |
+ | Number of K-path sections : 7 |
+ | Divisions along first K-path section : 300 |
+ | Output format : gnuplot |
+ | Output mode : s-k |
+ *----------------------------------------------------------------------------*
+ | K-space path sections: |
+ | From: G 0.000 0.000 0.000 To: M 0.500 -0.500 0.000 |
+ | From: M 0.500 -0.500 0.000 To: K 0.667 -0.333 0.000 |
+ | From: K 0.667 -0.333 0.000 To: G 0.000 0.000 0.000 |
+ | From: G 0.000 0.000 0.000 To: A 0.000 0.000 0.500 |
+ | From: A 0.000 0.000 0.500 To: L 0.500 -0.500 0.500 |
+ | From: L 0.500 -0.500 0.500 To: H 0.667 -0.333 0.500 |
+ | From: H 0.667 -0.333 0.500 To: A 0.000 0.000 0.500 |
+ *----------------------------------------------------------------------------*
+ | Plotting Hamiltonian in WF basis : T |
+ *----------------------------------------------------------------------------*
+ Time to read parameters 0.028 (sec)
+
+ *---------------------------------- K-MESH ----------------------------------*
+ +----------------------------------------------------------------------------+
+ | Distance to Nearest-Neighbour Shells |
+ | ------------------------------------ |
+ | Shell Distance (Ang^-1) Multiplicity |
+ | ----- ----------------- ------------ |
+ | 1 0.107288 6 |
+ | 2 0.108688 2 |
+ | 3 0.152721 12 |
+ | 4 0.185827 6 |
+ | 5 0.214575 6 |
+ | 6 0.215279 12 |
+ | 7 0.217376 2 |
+ | 8 0.240532 12 |
+ | 9 0.242411 12 |
+ | 10 0.283856 12 |
+ | 11 0.285979 12 |
+ | 12 0.303953 24 |
+ +----------------------------------------------------------------------------+
+ | The b-vectors are chosen automatically |
+ | The following shells are used: 1, 2 |
+ +----------------------------------------------------------------------------+
+ | Shell # Nearest-Neighbours |
+ | ----- -------------------- |
+ | 1 6 |
+ | 2 2 |
+ +----------------------------------------------------------------------------+
+ | Completeness relation is fully satisfied [Eq. (B1), PRB 56, 12847 (1997)] |
+ +----------------------------------------------------------------------------+
+ | b_k Vectors (Ang^-1) and Weights (Ang^2) |
+ | ---------------------------------------- |
+ | No. b_k(x) b_k(y) b_k(z) w_b |
+ | --- -------------------------------- -------- |
+ | 1 0.053644 0.092914 0.000000 28.958766 |
+ | 2 0.107288 0.000000 0.000000 28.958766 |
+ | 3 -0.053644 -0.092914 0.000000 28.958766 |
+ | 4 0.053644 -0.092914 0.000000 28.958766 |
+ | 5 -0.107288 0.000000 0.000000 28.958766 |
+ | 6 -0.053644 0.092914 0.000000 28.958766 |
+ | 7 0.000000 0.000000 0.108688 42.325936 |
+ | 8 0.000000 0.000000 -0.108688 42.325936 |
+ +----------------------------------------------------------------------------+
+ | b_k Directions (Ang^-1) |
+ | ----------------------- |
+ | No. x y z |
+ | --- -------------------------------- |
+ | 1 0.053644 0.092914 0.000000 |
+ | 2 0.107288 0.000000 0.000000 |
+ | 3 0.053644 -0.092914 0.000000 |
+ | 4 0.000000 0.000000 0.108688 |
+ +----------------------------------------------------------------------------+
+
+ *============================================================================*
+ | MEMORY ESTIMATE |
+ | Maximum RAM allocated during each phase of the calculation |
+ *============================================================================*
+ | Wannierise: 0.87 Mb |
+ *----------------------------------------------------------------------------*
+
+ Starting a new Wannier90 calculation ...
+
+ Time to get kmesh 0.652 (sec)
+
+ Reading overlaps from k000.mmn : blebleble
+
+ Reading projections from k000.amn : blebleble
+
+ Time to read overlaps 0.040 (sec)
+
+ Writing checkpoint file k000.chk... done
+
+
+ *------------------------------- WANNIERISE ---------------------------------*
+ +--------------------------------------------------------------------+<-- CONV
+ | Iter Delta Spread RMS Gradient Spread (Ang^2) Time |<-- CONV
+ +--------------------------------------------------------------------+<-- CONV
+
+ ------------------------------------------------------------------------------
+ Initial State
+ WF centre and spread 1 ( 3.176859, 5.086575, 7.516859 ) 8.48502060
+ WF centre and spread 2 ( 2.401703, 4.574920, 7.516859 ) 8.48428253
+ Sum of centres and spreads ( 5.578562, 9.661495, 15.033719 ) 16.96930313
+
+ 0 0.170E+02 0.0000000000 16.9693024092 0.72 <-- CONV
+ O_D= 0.3390287 O_OD= 0.6971141 O_TOT= 16.9693024 <-- SPRD
+ ------------------------------------------------------------------------------
+ Cycle: 1
+ WF centre and spread 1 ( 3.176724, 5.086712, 7.516907 ) 8.47078532
+ WF centre and spread 2 ( 2.401848, 4.574778, 7.516894 ) 8.47204985
+ Sum of centres and spreads ( 5.578572, 9.661490, 15.033801 ) 16.94283517
+
+ 1 -0.265E-01 0.2151304013 16.9428344482 0.73 <-- CONV
+ O_D= 0.3180817 O_OD= 0.6915932 O_TOT= 16.9428344 <-- SPRD
+ Delta: O_D= -0.2094698E-01 O_OD= -0.5520977E-02 O_TOT= -0.2646796E-01 <-- DLTA
+ ------------------------------------------------------------------------------
+
+ <<< Delta < 1.000E-10 over 3 iterations >>>
+ <<< Wannierisation convergence criteria satisfied >>>
+
+ Final State
+ WF centre and spread 1 ( 3.176560, 5.087064, 7.516938 ) 8.46045406
+ WF centre and spread 2 ( 2.401945, 4.574512, 7.516899 ) 8.46368813
+ Sum of centres and spreads ( 5.578506, 9.661576, 15.033837 ) 16.92414219
+
+ Spreads (Ang^2) Omega I = 15.933159609
+ ================ Omega D = 0.302788812
+ Omega OD = 0.688193044
+ Final Spread (Ang^2) Omega Total = 16.924141465
+ ------------------------------------------------------------------------------
+
+ Wannier centres written to file k000_centres.xyz
+ Time for wannierise 0.217 (sec)
+
+ Writing checkpoint file k000.chk... done
+
+ *---------------------------------------------------------------------------*
+ | PLOTTING |
+ *---------------------------------------------------------------------------*
+
+
+ Calculating interpolated band-structure
+
+ Time to calculate interpolated band structure 0.180 (sec)
+
+
+ Calculating Fermi surface
+
+ Time to calculate interpolated Fermi surface 11.320 (sec)
+
+ Time for plotting 11.541 (sec)
+ Total Execution Time 12.480 (sec)
+
+ *===========================================================================*
+ | TIMING INFORMATION |
+ *===========================================================================*
+ | Tag Ncalls Time (s)|
+ |---------------------------------------------------------------------------|
+ |kmesh: get : 1 0.652|
+ |overlap: read : 1 0.040|
+ |wann: main : 1 0.217|
+ |plot: main : 1 11.541|
+ *---------------------------------------------------------------------------*
+
+ All done: wannier90 exiting
diff --git a/tests/data/lk99_liangsi_1/k000_band.dat b/tests/data/lk99_liangsi_1/k000_band.dat
new file mode 100644
index 0000000..b5201c1
--- /dev/null
+++ b/tests/data/lk99_liangsi_1/k000_band.dat
@@ -0,0 +1,3974 @@
+ 0.00000000E+00 -0.49779389E-01 0.84862560E+00
+ 0.12516881E-02 -0.49779363E-01 0.49034466E+00
+ 0.25033762E-02 -0.49779189E-01 0.49002417E+00
+ 0.37550644E-02 -0.49778900E-01 0.48997710E+00
+ 0.50067525E-02 -0.49778499E-01 0.48997936E+00
+ 0.62584406E-02 -0.49777989E-01 0.49000124E+00
+ 0.75101287E-02 -0.49777376E-01 0.49003521E+00
+ 0.87618169E-02 -0.49776665E-01 0.49007866E+00
+ 0.10013505E-01 -0.49775864E-01 0.49013046E+00
+ 0.11265193E-01 -0.49774979E-01 0.49019004E+00
+ 0.12516881E-01 -0.49774020E-01 0.49025706E+00
+ 0.13768569E-01 -0.49772996E-01 0.49033129E+00
+ 0.15020257E-01 -0.49771920E-01 0.49041258E+00
+ 0.16271946E-01 -0.49770801E-01 0.49050077E+00
+ 0.17523634E-01 -0.49769653E-01 0.49059574E+00
+ 0.18775322E-01 -0.49768491E-01 0.49069737E+00
+ 0.20027010E-01 -0.49767327E-01 0.49080554E+00
+ 0.21278698E-01 -0.49766179E-01 0.49092013E+00
+ 0.22530386E-01 -0.49765062E-01 0.49104102E+00
+ 0.23782074E-01 -0.49763994E-01 0.49116808E+00
+ 0.25033762E-01 -0.49762993E-01 0.49130118E+00
+ 0.26285451E-01 -0.49762077E-01 0.49144019E+00
+ 0.27537139E-01 -0.49761267E-01 0.49158497E+00
+ 0.28788827E-01 -0.49760582E-01 0.49173537E+00
+ 0.30040515E-01 -0.49760045E-01 0.49189125E+00
+ 0.31292203E-01 -0.49759676E-01 0.49205246E+00
+ 0.32543891E-01 -0.49759499E-01 0.49221883E+00
+ 0.33795579E-01 -0.49759536E-01 0.49239021E+00
+ 0.35047267E-01 -0.49759812E-01 0.49256643E+00
+ 0.36298956E-01 -0.49760351E-01 0.49274732E+00
+ 0.37550644E-01 -0.49761177E-01 0.49293271E+00
+ 0.38802332E-01 -0.49762316E-01 0.49312242E+00
+ 0.40054020E-01 -0.49763794E-01 0.49331628E+00
+ 0.41305708E-01 -0.49765638E-01 0.49351411E+00
+ 0.42557396E-01 -0.49767873E-01 0.49371570E+00
+ 0.43809084E-01 -0.49770528E-01 0.49392089E+00
+ 0.45060772E-01 -0.49773629E-01 0.49412947E+00
+ 0.46312461E-01 -0.49777204E-01 0.49434126E+00
+ 0.47564149E-01 -0.49781281E-01 0.49455605E+00
+ 0.48815837E-01 -0.49785889E-01 0.49477366E+00
+ 0.50067525E-01 -0.49791055E-01 0.49499387E+00
+ 0.51319213E-01 -0.49796808E-01 0.49521651E+00
+ 0.52570901E-01 -0.49803177E-01 0.49544135E+00
+ 0.53822589E-01 -0.49810190E-01 0.49566820E+00
+ 0.55074277E-01 -0.49817876E-01 0.49589686E+00
+ 0.56325966E-01 -0.49826264E-01 0.49612711E+00
+ 0.57577654E-01 -0.49835382E-01 0.49635877E+00
+ 0.58829342E-01 -0.49845258E-01 0.49659162E+00
+ 0.60081030E-01 -0.49855922E-01 0.49682546E+00
+ 0.61332718E-01 -0.49867401E-01 0.49706008E+00
+ 0.62584406E-01 -0.49879723E-01 0.49729528E+00
+ 0.63836094E-01 -0.49892916E-01 0.49753086E+00
+ 0.65087782E-01 -0.49907007E-01 0.49776662E+00
+ 0.66339471E-01 -0.49922024E-01 0.49800235E+00
+ 0.67591159E-01 -0.49937993E-01 0.49823785E+00
+ 0.68842847E-01 -0.49954941E-01 0.49847293E+00
+ 0.70094535E-01 -0.49972893E-01 0.49870738E+00
+ 0.71346223E-01 -0.49991875E-01 0.49894102E+00
+ 0.72597911E-01 -0.50011913E-01 0.49917364E+00
+ 0.73849599E-01 -0.50033030E-01 0.49940505E+00
+ 0.75101287E-01 -0.50055251E-01 0.49963507E+00
+ 0.76352975E-01 -0.50078598E-01 0.49986351E+00
+ 0.77604664E-01 -0.50103095E-01 0.50009018E+00
+ 0.78856352E-01 -0.50128763E-01 0.50031490E+00
+ 0.80108040E-01 -0.50155624E-01 0.50053748E+00
+ 0.81359728E-01 -0.50183698E-01 0.50075776E+00
+ 0.82611416E-01 -0.50213006E-01 0.50097556E+00
+ 0.83863104E-01 -0.50243566E-01 0.50119070E+00
+ 0.85114792E-01 -0.50275397E-01 0.50140301E+00
+ 0.86366480E-01 -0.50308515E-01 0.50161234E+00
+ 0.87618169E-01 -0.50342939E-01 0.50181852E+00
+ 0.88869857E-01 -0.50378683E-01 0.50202139E+00
+ 0.90121545E-01 -0.50415762E-01 0.50222080E+00
+ 0.91373233E-01 -0.50454191E-01 0.50241660E+00
+ 0.92624921E-01 -0.50493982E-01 0.50260864E+00
+ 0.93876609E-01 -0.50535148E-01 0.50279677E+00
+ 0.95128297E-01 -0.50577699E-01 0.50298085E+00
+ 0.96379985E-01 -0.50621647E-01 0.50316076E+00
+ 0.97631674E-01 -0.50666999E-01 0.50333636E+00
+ 0.98883362E-01 -0.50713765E-01 0.50350751E+00
+ 0.10013505E+00 -0.50761950E-01 0.50367411E+00
+ 0.10138674E+00 -0.50811563E-01 0.50383602E+00
+ 0.10263843E+00 -0.50862606E-01 0.50399313E+00
+ 0.10389011E+00 -0.50915086E-01 0.50414534E+00
+ 0.10514180E+00 -0.50969004E-01 0.50429253E+00
+ 0.10639349E+00 -0.51024362E-01 0.50443460E+00
+ 0.10764518E+00 -0.51081162E-01 0.50457146E+00
+ 0.10889687E+00 -0.51139403E-01 0.50470301E+00
+ 0.11014855E+00 -0.51199084E-01 0.50482915E+00
+ 0.11140024E+00 -0.51260203E-01 0.50494982E+00
+ 0.11265193E+00 -0.51322756E-01 0.50506492E+00
+ 0.11390362E+00 -0.51386739E-01 0.50517439E+00
+ 0.11515531E+00 -0.51452146E-01 0.50527814E+00
+ 0.11640700E+00 -0.51518971E-01 0.50537611E+00
+ 0.11765868E+00 -0.51587206E-01 0.50546825E+00
+ 0.11891037E+00 -0.51656843E-01 0.50555449E+00
+ 0.12016206E+00 -0.51727872E-01 0.50563477E+00
+ 0.12141375E+00 -0.51800282E-01 0.50570906E+00
+ 0.12266544E+00 -0.51874062E-01 0.50577730E+00
+ 0.12391712E+00 -0.51949198E-01 0.50583946E+00
+ 0.12516881E+00 -0.52025678E-01 0.50589550E+00
+ 0.12642050E+00 -0.52103487E-01 0.50594538E+00
+ 0.12767219E+00 -0.52182608E-01 0.50598909E+00
+ 0.12892388E+00 -0.52263026E-01 0.50602660E+00
+ 0.13017556E+00 -0.52344723E-01 0.50605789E+00
+ 0.13142725E+00 -0.52427680E-01 0.50608296E+00
+ 0.13267894E+00 -0.52511879E-01 0.50610178E+00
+ 0.13393063E+00 -0.52597299E-01 0.50611436E+00
+ 0.13518232E+00 -0.52683920E-01 0.50612069E+00
+ 0.13643401E+00 -0.52771719E-01 0.50612079E+00
+ 0.13768569E+00 -0.52860674E-01 0.50611465E+00
+ 0.13893738E+00 -0.52950762E-01 0.50610229E+00
+ 0.14018907E+00 -0.53041958E-01 0.50608373E+00
+ 0.14144076E+00 -0.53134239E-01 0.50605898E+00
+ 0.14269245E+00 -0.53227577E-01 0.50602808E+00
+ 0.14394413E+00 -0.53321947E-01 0.50599105E+00
+ 0.14519582E+00 -0.53417323E-01 0.50594793E+00
+ 0.14644751E+00 -0.53513677E-01 0.50589874E+00
+ 0.14769920E+00 -0.53610980E-01 0.50584354E+00
+ 0.14895089E+00 -0.53709204E-01 0.50578236E+00
+ 0.15020257E+00 -0.53808320E-01 0.50571526E+00
+ 0.15145426E+00 -0.53908298E-01 0.50564229E+00
+ 0.15270595E+00 -0.54009109E-01 0.50556350E+00
+ 0.15395764E+00 -0.54110721E-01 0.50547895E+00
+ 0.15520933E+00 -0.54213104E-01 0.50538871E+00
+ 0.15646102E+00 -0.54316226E-01 0.50529284E+00
+ 0.15771270E+00 -0.54420055E-01 0.50519141E+00
+ 0.15896439E+00 -0.54524560E-01 0.50508450E+00
+ 0.16021608E+00 -0.54629707E-01 0.50497219E+00
+ 0.16146777E+00 -0.54735465E-01 0.50485455E+00
+ 0.16271946E+00 -0.54841801E-01 0.50473166E+00
+ 0.16397114E+00 -0.54948681E-01 0.50460362E+00
+ 0.16522283E+00 -0.55056073E-01 0.50447052E+00
+ 0.16647452E+00 -0.55163942E-01 0.50433244E+00
+ 0.16772621E+00 -0.55272256E-01 0.50418949E+00
+ 0.16897790E+00 -0.55380981E-01 0.50404175E+00
+ 0.17022958E+00 -0.55490083E-01 0.50388934E+00
+ 0.17148127E+00 -0.55599529E-01 0.50373236E+00
+ 0.17273296E+00 -0.55709285E-01 0.50357091E+00
+ 0.17398465E+00 -0.55819317E-01 0.50340511E+00
+ 0.17523634E+00 -0.55929592E-01 0.50323506E+00
+ 0.17648803E+00 -0.56040077E-01 0.50306087E+00
+ 0.17773971E+00 -0.56150739E-01 0.50288268E+00
+ 0.17899140E+00 -0.56261543E-01 0.50270059E+00
+ 0.18024309E+00 -0.56372458E-01 0.50251472E+00
+ 0.18149478E+00 -0.56483450E-01 0.50232520E+00
+ 0.18274647E+00 -0.56594487E-01 0.50213216E+00
+ 0.18399815E+00 -0.56705536E-01 0.50193571E+00
+ 0.18524984E+00 -0.56816567E-01 0.50173600E+00
+ 0.18650153E+00 -0.56927546E-01 0.50153314E+00
+ 0.18775322E+00 -0.57038443E-01 0.50132727E+00
+ 0.18900491E+00 -0.57149227E-01 0.50111852E+00
+ 0.19025659E+00 -0.57259867E-01 0.50090703E+00
+ 0.19150828E+00 -0.57370333E-01 0.50069293E+00
+ 0.19275997E+00 -0.57480595E-01 0.50047636E+00
+ 0.19401166E+00 -0.57590623E-01 0.50025746E+00
+ 0.19526335E+00 -0.57700390E-01 0.50003636E+00
+ 0.19651504E+00 -0.57809865E-01 0.49981321E+00
+ 0.19776672E+00 -0.57919023E-01 0.49958815E+00
+ 0.19901841E+00 -0.58027834E-01 0.49936131E+00
+ 0.20027010E+00 -0.58136272E-01 0.49913284E+00
+ 0.20152179E+00 -0.58244311E-01 0.49890288E+00
+ 0.20277348E+00 -0.58351924E-01 0.49867157E+00
+ 0.20402516E+00 -0.58459088E-01 0.49843905E+00
+ 0.20527685E+00 -0.58565776E-01 0.49820547E+00
+ 0.20652854E+00 -0.58671965E-01 0.49797097E+00
+ 0.20778023E+00 -0.58777631E-01 0.49773569E+00
+ 0.20903192E+00 -0.58882752E-01 0.49749977E+00
+ 0.21028360E+00 -0.58987304E-01 0.49726335E+00
+ 0.21153529E+00 -0.59091268E-01 0.49702658E+00
+ 0.21278698E+00 -0.59194621E-01 0.49678959E+00
+ 0.21403867E+00 -0.59297343E-01 0.49655253E+00
+ 0.21529036E+00 -0.59399414E-01 0.49631552E+00
+ 0.21654205E+00 -0.59500816E-01 0.49607872E+00
+ 0.21779373E+00 -0.59601530E-01 0.49584225E+00
+ 0.21904542E+00 -0.59701538E-01 0.49560625E+00
+ 0.22029711E+00 -0.59800823E-01 0.49537086E+00
+ 0.22154880E+00 -0.59899369E-01 0.49513620E+00
+ 0.22280049E+00 -0.59997159E-01 0.49490241E+00
+ 0.22405217E+00 -0.60094179E-01 0.49466962E+00
+ 0.22530386E+00 -0.60190415E-01 0.49443795E+00
+ 0.22655555E+00 -0.60285852E-01 0.49420754E+00
+ 0.22780724E+00 -0.60380477E-01 0.49397849E+00
+ 0.22905893E+00 -0.60474278E-01 0.49375094E+00
+ 0.23031061E+00 -0.60567244E-01 0.49352501E+00
+ 0.23156230E+00 -0.60659361E-01 0.49330080E+00
+ 0.23281399E+00 -0.60750621E-01 0.49307845E+00
+ 0.23406568E+00 -0.60841013E-01 0.49285805E+00
+ 0.23531737E+00 -0.60930528E-01 0.49263971E+00
+ 0.23656906E+00 -0.61019157E-01 0.49242355E+00
+ 0.23782074E+00 -0.61106891E-01 0.49220967E+00
+ 0.23907243E+00 -0.61193725E-01 0.49199817E+00
+ 0.24032412E+00 -0.61279649E-01 0.49178915E+00
+ 0.24157581E+00 -0.61364659E-01 0.49158269E+00
+ 0.24282750E+00 -0.61448748E-01 0.49137891E+00
+ 0.24407918E+00 -0.61531911E-01 0.49117787E+00
+ 0.24533087E+00 -0.61614143E-01 0.49097968E+00
+ 0.24658256E+00 -0.61695441E-01 0.49078441E+00
+ 0.24783425E+00 -0.61775800E-01 0.49059214E+00
+ 0.24908594E+00 -0.61855217E-01 0.49040294E+00
+ 0.25033762E+00 -0.61933690E-01 0.49021690E+00
+ 0.25158931E+00 -0.62011217E-01 0.49003407E+00
+ 0.25284100E+00 -0.62087795E-01 0.48985452E+00
+ 0.25409269E+00 -0.62163424E-01 0.48967832E+00
+ 0.25534438E+00 -0.62238103E-01 0.48950551E+00
+ 0.25659607E+00 -0.62311831E-01 0.48933617E+00
+ 0.25784775E+00 -0.62384608E-01 0.48917032E+00
+ 0.25909944E+00 -0.62456435E-01 0.48900803E+00
+ 0.26035113E+00 -0.62527312E-01 0.48884933E+00
+ 0.26160282E+00 -0.62597242E-01 0.48869426E+00
+ 0.26285451E+00 -0.62666224E-01 0.48854286E+00
+ 0.26410619E+00 -0.62734261E-01 0.48839515E+00
+ 0.26535788E+00 -0.62801356E-01 0.48825117E+00
+ 0.26660957E+00 -0.62867510E-01 0.48811094E+00
+ 0.26786126E+00 -0.62932727E-01 0.48797448E+00
+ 0.26911295E+00 -0.62997009E-01 0.48784180E+00
+ 0.27036463E+00 -0.63060360E-01 0.48771291E+00
+ 0.27161632E+00 -0.63122783E-01 0.48758782E+00
+ 0.27286801E+00 -0.63184282E-01 0.48746654E+00
+ 0.27411970E+00 -0.63244861E-01 0.48734907E+00
+ 0.27537139E+00 -0.63304524E-01 0.48723540E+00
+ 0.27662308E+00 -0.63363276E-01 0.48712552E+00
+ 0.27787476E+00 -0.63421120E-01 0.48701943E+00
+ 0.27912645E+00 -0.63478063E-01 0.48691711E+00
+ 0.28037814E+00 -0.63534108E-01 0.48681854E+00
+ 0.28162983E+00 -0.63589260E-01 0.48672370E+00
+ 0.28288152E+00 -0.63643525E-01 0.48663256E+00
+ 0.28413320E+00 -0.63696907E-01 0.48654510E+00
+ 0.28538489E+00 -0.63749413E-01 0.48646129E+00
+ 0.28663658E+00 -0.63801047E-01 0.48638108E+00
+ 0.28788827E+00 -0.63851815E-01 0.48630445E+00
+ 0.28913996E+00 -0.63901722E-01 0.48623134E+00
+ 0.29039164E+00 -0.63950773E-01 0.48616172E+00
+ 0.29164333E+00 -0.63998975E-01 0.48609553E+00
+ 0.29289502E+00 -0.64046333E-01 0.48603273E+00
+ 0.29414671E+00 -0.64092852E-01 0.48597326E+00
+ 0.29539840E+00 -0.64138539E-01 0.48591708E+00
+ 0.29665009E+00 -0.64183397E-01 0.48586410E+00
+ 0.29790177E+00 -0.64227434E-01 0.48581429E+00
+ 0.29915346E+00 -0.64270655E-01 0.48576757E+00
+ 0.30040515E+00 -0.64313065E-01 0.48572388E+00
+ 0.30165684E+00 -0.64354669E-01 0.48568315E+00
+ 0.30290853E+00 -0.64395473E-01 0.48564531E+00
+ 0.30416021E+00 -0.64435483E-01 0.48561029E+00
+ 0.30541190E+00 -0.64474703E-01 0.48557801E+00
+ 0.30666359E+00 -0.64513139E-01 0.48554841E+00
+ 0.30791528E+00 -0.64550797E-01 0.48552139E+00
+ 0.30916697E+00 -0.64587680E-01 0.48549689E+00
+ 0.31041865E+00 -0.64623794E-01 0.48547482E+00
+ 0.31167034E+00 -0.64659144E-01 0.48545511E+00
+ 0.31292203E+00 -0.64693734E-01 0.48543766E+00
+ 0.31417372E+00 -0.64727570E-01 0.48542241E+00
+ 0.31542541E+00 -0.64760656E-01 0.48540925E+00
+ 0.31667710E+00 -0.64792997E-01 0.48539811E+00
+ 0.31792878E+00 -0.64824596E-01 0.48538890E+00
+ 0.31918047E+00 -0.64855458E-01 0.48538154E+00
+ 0.32043216E+00 -0.64885587E-01 0.48537594E+00
+ 0.32168385E+00 -0.64914988E-01 0.48537201E+00
+ 0.32293554E+00 -0.64943663E-01 0.48536966E+00
+ 0.32418722E+00 -0.64971618E-01 0.48536882E+00
+ 0.32543891E+00 -0.64998855E-01 0.48536938E+00
+ 0.32669060E+00 -0.65025378E-01 0.48537127E+00
+ 0.32794229E+00 -0.65051191E-01 0.48537440E+00
+ 0.32919398E+00 -0.65076297E-01 0.48537868E+00
+ 0.33044566E+00 -0.65100699E-01 0.48538402E+00
+ 0.33169735E+00 -0.65124400E-01 0.48539035E+00
+ 0.33294904E+00 -0.65147403E-01 0.48539758E+00
+ 0.33420073E+00 -0.65169712E-01 0.48540563E+00
+ 0.33545242E+00 -0.65191328E-01 0.48541441E+00
+ 0.33670411E+00 -0.65212255E-01 0.48542384E+00
+ 0.33795579E+00 -0.65232494E-01 0.48543385E+00
+ 0.33920748E+00 -0.65252049E-01 0.48544435E+00
+ 0.34045917E+00 -0.65270922E-01 0.48545528E+00
+ 0.34171086E+00 -0.65289114E-01 0.48546655E+00
+ 0.34296255E+00 -0.65306628E-01 0.48547809E+00
+ 0.34421423E+00 -0.65323467E-01 0.48548984E+00
+ 0.34546592E+00 -0.65339631E-01 0.48550171E+00
+ 0.34671761E+00 -0.65355122E-01 0.48551365E+00
+ 0.34796930E+00 -0.65369943E-01 0.48552559E+00
+ 0.34922099E+00 -0.65384095E-01 0.48553747E+00
+ 0.35047267E+00 -0.65397579E-01 0.48554922E+00
+ 0.35172436E+00 -0.65410397E-01 0.48556078E+00
+ 0.35297605E+00 -0.65422550E-01 0.48557210E+00
+ 0.35422774E+00 -0.65434040E-01 0.48558313E+00
+ 0.35547943E+00 -0.65444867E-01 0.48559381E+00
+ 0.35673112E+00 -0.65455033E-01 0.48560409E+00
+ 0.35798280E+00 -0.65464538E-01 0.48561393E+00
+ 0.35923449E+00 -0.65473384E-01 0.48562329E+00
+ 0.36048618E+00 -0.65481571E-01 0.48563212E+00
+ 0.36173787E+00 -0.65489100E-01 0.48564038E+00
+ 0.36298956E+00 -0.65495973E-01 0.48564805E+00
+ 0.36424124E+00 -0.65502189E-01 0.48565508E+00
+ 0.36549293E+00 -0.65507749E-01 0.48566145E+00
+ 0.36674462E+00 -0.65512654E-01 0.48566714E+00
+ 0.36799631E+00 -0.65516904E-01 0.48567211E+00
+ 0.36924800E+00 -0.65520499E-01 0.48567636E+00
+ 0.37049968E+00 -0.65523440E-01 0.48567985E+00
+ 0.37175137E+00 -0.65525728E-01 0.48568259E+00
+ 0.37300306E+00 -0.65527361E-01 0.48568455E+00
+ 0.37425475E+00 -0.65528342E-01 0.48568573E+00
+ 0.37550795E+00 -0.65528668E-01 0.48568612E+00
+ 0.37676114E+00 -0.65530281E-01 0.48568744E+00
+ 0.37801434E+00 -0.65535119E-01 0.48569139E+00
+ 0.37926754E+00 -0.65543177E-01 0.48569796E+00
+ 0.38052073E+00 -0.65554450E-01 0.48570715E+00
+ 0.38177393E+00 -0.65568929E-01 0.48571893E+00
+ 0.38302713E+00 -0.65586602E-01 0.48573328E+00
+ 0.38428032E+00 -0.65607456E-01 0.48575016E+00
+ 0.38553352E+00 -0.65631475E-01 0.48576956E+00
+ 0.38678672E+00 -0.65658640E-01 0.48579142E+00
+ 0.38803992E+00 -0.65688931E-01 0.48581570E+00
+ 0.38929311E+00 -0.65722324E-01 0.48584236E+00
+ 0.39054631E+00 -0.65758793E-01 0.48587134E+00
+ 0.39179951E+00 -0.65798311E-01 0.48590258E+00
+ 0.39305270E+00 -0.65840848E-01 0.48593602E+00
+ 0.39430590E+00 -0.65886372E-01 0.48597160E+00
+ 0.39555910E+00 -0.65934849E-01 0.48600925E+00
+ 0.39681229E+00 -0.65986242E-01 0.48604890E+00
+ 0.39806549E+00 -0.66040513E-01 0.48609046E+00
+ 0.39931869E+00 -0.66097622E-01 0.48613387E+00
+ 0.40057189E+00 -0.66157527E-01 0.48617904E+00
+ 0.40182508E+00 -0.66220185E-01 0.48622588E+00
+ 0.40307828E+00 -0.66285549E-01 0.48627431E+00
+ 0.40433148E+00 -0.66353573E-01 0.48632424E+00
+ 0.40558467E+00 -0.66424208E-01 0.48637559E+00
+ 0.40683787E+00 -0.66497405E-01 0.48642825E+00
+ 0.40809107E+00 -0.66573110E-01 0.48648214E+00
+ 0.40934426E+00 -0.66651272E-01 0.48653717E+00
+ 0.41059746E+00 -0.66731837E-01 0.48659324E+00
+ 0.41185066E+00 -0.66814749E-01 0.48665026E+00
+ 0.41310386E+00 -0.66899951E-01 0.48670812E+00
+ 0.41435705E+00 -0.66987386E-01 0.48676675E+00
+ 0.41561025E+00 -0.67076997E-01 0.48682604E+00
+ 0.41686345E+00 -0.67168723E-01 0.48688590E+00
+ 0.41811664E+00 -0.67262504E-01 0.48694624E+00
+ 0.41936984E+00 -0.67358280E-01 0.48700697E+00
+ 0.42062304E+00 -0.67455990E-01 0.48706799E+00
+ 0.42187623E+00 -0.67555571E-01 0.48712922E+00
+ 0.42312943E+00 -0.67656961E-01 0.48719058E+00
+ 0.42438263E+00 -0.67760098E-01 0.48725197E+00
+ 0.42563583E+00 -0.67864917E-01 0.48731332E+00
+ 0.42688902E+00 -0.67971357E-01 0.48737455E+00
+ 0.42814222E+00 -0.68079353E-01 0.48743557E+00
+ 0.42939542E+00 -0.68188841E-01 0.48749631E+00
+ 0.43064861E+00 -0.68299759E-01 0.48755671E+00
+ 0.43190181E+00 -0.68412041E-01 0.48761669E+00
+ 0.43315501E+00 -0.68525626E-01 0.48767618E+00
+ 0.43440820E+00 -0.68640448E-01 0.48773512E+00
+ 0.43566140E+00 -0.68756446E-01 0.48779346E+00
+ 0.43691460E+00 -0.68873555E-01 0.48785113E+00
+ 0.43816780E+00 -0.68991714E-01 0.48790809E+00
+ 0.43942099E+00 -0.69110860E-01 0.48796428E+00
+ 0.44067419E+00 -0.69230931E-01 0.48801967E+00
+ 0.44192739E+00 -0.69351866E-01 0.48807420E+00
+ 0.44318058E+00 -0.69473604E-01 0.48812784E+00
+ 0.44443378E+00 -0.69596084E-01 0.48818056E+00
+ 0.44568698E+00 -0.69719248E-01 0.48823232E+00
+ 0.44694017E+00 -0.69843037E-01 0.48828311E+00
+ 0.44819337E+00 -0.69967391E-01 0.48833289E+00
+ 0.44944657E+00 -0.70092253E-01 0.48838166E+00
+ 0.45069977E+00 -0.70217568E-01 0.48842939E+00
+ 0.45195296E+00 -0.70343278E-01 0.48847608E+00
+ 0.45320616E+00 -0.70469329E-01 0.48852172E+00
+ 0.45445936E+00 -0.70595666E-01 0.48856631E+00
+ 0.45571255E+00 -0.70722237E-01 0.48860985E+00
+ 0.45696575E+00 -0.70848988E-01 0.48865234E+00
+ 0.45821895E+00 -0.70975868E-01 0.48869381E+00
+ 0.45947214E+00 -0.71102828E-01 0.48873425E+00
+ 0.46072534E+00 -0.71229817E-01 0.48877369E+00
+ 0.46197854E+00 -0.71356786E-01 0.48881215E+00
+ 0.46323174E+00 -0.71483689E-01 0.48884966E+00
+ 0.46448493E+00 -0.71610479E-01 0.48888624E+00
+ 0.46573813E+00 -0.71737110E-01 0.48892192E+00
+ 0.46699133E+00 -0.71863538E-01 0.48895674E+00
+ 0.46824452E+00 -0.71989720E-01 0.48899075E+00
+ 0.46949772E+00 -0.72115613E-01 0.48902398E+00
+ 0.47075092E+00 -0.72241176E-01 0.48905647E+00
+ 0.47200411E+00 -0.72366368E-01 0.48908829E+00
+ 0.47325731E+00 -0.72491152E-01 0.48911948E+00
+ 0.47451051E+00 -0.72615488E-01 0.48915009E+00
+ 0.47576371E+00 -0.72739339E-01 0.48918019E+00
+ 0.47701690E+00 -0.72862670E-01 0.48920983E+00
+ 0.47827010E+00 -0.72985446E-01 0.48923909E+00
+ 0.47952330E+00 -0.73107632E-01 0.48926802E+00
+ 0.48077649E+00 -0.73229196E-01 0.48929669E+00
+ 0.48202969E+00 -0.73350105E-01 0.48932518E+00
+ 0.48328289E+00 -0.73470330E-01 0.48935357E+00
+ 0.48453608E+00 -0.73589839E-01 0.48938191E+00
+ 0.48578928E+00 -0.73708604E-01 0.48941031E+00
+ 0.48704248E+00 -0.73826596E-01 0.48943882E+00
+ 0.48829568E+00 -0.73943790E-01 0.48946755E+00
+ 0.48954887E+00 -0.74060157E-01 0.48949656E+00
+ 0.49080207E+00 -0.74175674E-01 0.48952595E+00
+ 0.49205527E+00 -0.74290316E-01 0.48955580E+00
+ 0.49330846E+00 -0.74404058E-01 0.48958619E+00
+ 0.49456166E+00 -0.74516879E-01 0.48961723E+00
+ 0.49581486E+00 -0.74628756E-01 0.48964899E+00
+ 0.49706805E+00 -0.74739668E-01 0.48968156E+00
+ 0.49832125E+00 -0.74849594E-01 0.48971505E+00
+ 0.49957445E+00 -0.74958516E-01 0.48974954E+00
+ 0.50082765E+00 -0.75066413E-01 0.48978512E+00
+ 0.50208084E+00 -0.75173268E-01 0.48982190E+00
+ 0.50333404E+00 -0.75279062E-01 0.48985995E+00
+ 0.50458724E+00 -0.75383779E-01 0.48989937E+00
+ 0.50584043E+00 -0.75487402E-01 0.48994027E+00
+ 0.50709363E+00 -0.75589915E-01 0.48998272E+00
+ 0.50834683E+00 -0.75691304E-01 0.49002683E+00
+ 0.50960002E+00 -0.75791552E-01 0.49007269E+00
+ 0.51085322E+00 -0.75890646E-01 0.49012038E+00
+ 0.51210642E+00 -0.75988572E-01 0.49017000E+00
+ 0.51335962E+00 -0.76085316E-01 0.49022165E+00
+ 0.51461281E+00 -0.76180866E-01 0.49027540E+00
+ 0.51586601E+00 -0.76275208E-01 0.49033135E+00
+ 0.51711921E+00 -0.76368330E-01 0.49038959E+00
+ 0.51837240E+00 -0.76460221E-01 0.49045020E+00
+ 0.51962560E+00 -0.76550867E-01 0.49051327E+00
+ 0.52087880E+00 -0.76640259E-01 0.49057888E+00
+ 0.52213199E+00 -0.76728385E-01 0.49064710E+00
+ 0.52338519E+00 -0.76815234E-01 0.49071803E+00
+ 0.52463839E+00 -0.76900795E-01 0.49079174E+00
+ 0.52589159E+00 -0.76985057E-01 0.49086830E+00
+ 0.52714478E+00 -0.77068010E-01 0.49094779E+00
+ 0.52839798E+00 -0.77149644E-01 0.49103027E+00
+ 0.52965118E+00 -0.77229948E-01 0.49111583E+00
+ 0.53090437E+00 -0.77308913E-01 0.49120452E+00
+ 0.53215757E+00 -0.77386528E-01 0.49129641E+00
+ 0.53341077E+00 -0.77462783E-01 0.49139157E+00
+ 0.53466396E+00 -0.77537669E-01 0.49149004E+00
+ 0.53591716E+00 -0.77611174E-01 0.49159189E+00
+ 0.53717036E+00 -0.77683290E-01 0.49169717E+00
+ 0.53842356E+00 -0.77754006E-01 0.49180593E+00
+ 0.53967675E+00 -0.77823312E-01 0.49191822E+00
+ 0.54092995E+00 -0.77891199E-01 0.49203408E+00
+ 0.54218315E+00 -0.77957655E-01 0.49215356E+00
+ 0.54343634E+00 -0.78022670E-01 0.49227668E+00
+ 0.54468954E+00 -0.78086235E-01 0.49240350E+00
+ 0.54594274E+00 -0.78148338E-01 0.49253403E+00
+ 0.54719593E+00 -0.78208969E-01 0.49266831E+00
+ 0.54844913E+00 -0.78268118E-01 0.49280636E+00
+ 0.54970233E+00 -0.78325774E-01 0.49294821E+00
+ 0.55095553E+00 -0.78381925E-01 0.49309387E+00
+ 0.55220872E+00 -0.78436560E-01 0.49324335E+00
+ 0.55346192E+00 -0.78489670E-01 0.49339667E+00
+ 0.55471512E+00 -0.78541241E-01 0.49355383E+00
+ 0.55596831E+00 -0.78591263E-01 0.49371484E+00
+ 0.55722151E+00 -0.78639723E-01 0.49387970E+00
+ 0.55847471E+00 -0.78686611E-01 0.49404840E+00
+ 0.55972790E+00 -0.78731915E-01 0.49422094E+00
+ 0.56098110E+00 -0.78775621E-01 0.49439731E+00
+ 0.56223430E+00 -0.78817719E-01 0.49457749E+00
+ 0.56348750E+00 -0.78858196E-01 0.49476146E+00
+ 0.56474069E+00 -0.78897040E-01 0.49494921E+00
+ 0.56599389E+00 -0.78934237E-01 0.49514070E+00
+ 0.56724709E+00 -0.78969776E-01 0.49533591E+00
+ 0.56850028E+00 -0.79003644E-01 0.49553481E+00
+ 0.56975348E+00 -0.79035829E-01 0.49573736E+00
+ 0.57100668E+00 -0.79066316E-01 0.49594351E+00
+ 0.57225987E+00 -0.79095094E-01 0.49615324E+00
+ 0.57351307E+00 -0.79122150E-01 0.49636649E+00
+ 0.57476627E+00 -0.79147471E-01 0.49658320E+00
+ 0.57601947E+00 -0.79171044E-01 0.49680334E+00
+ 0.57727266E+00 -0.79192856E-01 0.49702684E+00
+ 0.57852586E+00 -0.79212894E-01 0.49725364E+00
+ 0.57977906E+00 -0.79231146E-01 0.49748367E+00
+ 0.58103225E+00 -0.79247598E-01 0.49771688E+00
+ 0.58228545E+00 -0.79262239E-01 0.49795319E+00
+ 0.58353865E+00 -0.79275055E-01 0.49819253E+00
+ 0.58479184E+00 -0.79286035E-01 0.49843482E+00
+ 0.58604504E+00 -0.79295165E-01 0.49867999E+00
+ 0.58729824E+00 -0.79302435E-01 0.49892795E+00
+ 0.58855144E+00 -0.79307832E-01 0.49917862E+00
+ 0.58980463E+00 -0.79311344E-01 0.49943191E+00
+ 0.59105783E+00 -0.79312960E-01 0.49968773E+00
+ 0.59231101E+00 -0.79312669E-01 0.49994600E+00
+ 0.59356419E+00 -0.79310094E-01 0.49719986E+00
+ 0.59481736E+00 -0.79305612E-01 0.49446049E+00
+ 0.59607054E+00 -0.79299213E-01 0.49172796E+00
+ 0.59732372E+00 -0.79290887E-01 0.48900233E+00
+ 0.59857690E+00 -0.79280626E-01 0.48628366E+00
+ 0.59983008E+00 -0.79268419E-01 0.48357201E+00
+ 0.60108326E+00 -0.79254258E-01 0.48086743E+00
+ 0.60233643E+00 -0.79238136E-01 0.47817000E+00
+ 0.60358961E+00 -0.79220043E-01 0.47547975E+00
+ 0.60484279E+00 -0.79199974E-01 0.47279674E+00
+ 0.60609597E+00 -0.79177920E-01 0.47012103E+00
+ 0.60734915E+00 -0.79153876E-01 0.46745267E+00
+ 0.60860232E+00 -0.79127836E-01 0.46479169E+00
+ 0.60985550E+00 -0.79099793E-01 0.46213816E+00
+ 0.61110868E+00 -0.79069745E-01 0.45949212E+00
+ 0.61236186E+00 -0.79037685E-01 0.45685361E+00
+ 0.61361504E+00 -0.79003611E-01 0.45422266E+00
+ 0.61486822E+00 -0.78967521E-01 0.45159933E+00
+ 0.61612139E+00 -0.78929410E-01 0.44898364E+00
+ 0.61737457E+00 -0.78889279E-01 0.44637564E+00
+ 0.61862775E+00 -0.78847126E-01 0.44377536E+00
+ 0.61988093E+00 -0.78802951E-01 0.44118283E+00
+ 0.62113411E+00 -0.78756754E-01 0.43859809E+00
+ 0.62238728E+00 -0.78708537E-01 0.43602116E+00
+ 0.62364046E+00 -0.78658302E-01 0.43345207E+00
+ 0.62489364E+00 -0.78606051E-01 0.43089085E+00
+ 0.62614682E+00 -0.78551789E-01 0.42833753E+00
+ 0.62740000E+00 -0.78495520E-01 0.42579211E+00
+ 0.62865318E+00 -0.78437249E-01 0.42325464E+00
+ 0.62990635E+00 -0.78376982E-01 0.42072513E+00
+ 0.63115953E+00 -0.78314727E-01 0.41820359E+00
+ 0.63241271E+00 -0.78250491E-01 0.41569004E+00
+ 0.63366589E+00 -0.78184282E-01 0.41318451E+00
+ 0.63491907E+00 -0.78116112E-01 0.41068700E+00
+ 0.63617224E+00 -0.78045989E-01 0.40819753E+00
+ 0.63742542E+00 -0.77973925E-01 0.40571611E+00
+ 0.63867860E+00 -0.77899933E-01 0.40324276E+00
+ 0.63993178E+00 -0.77824026E-01 0.40077747E+00
+ 0.64118496E+00 -0.77746218E-01 0.39832027E+00
+ 0.64243814E+00 -0.77666523E-01 0.39587115E+00
+ 0.64369131E+00 -0.77584958E-01 0.39343014E+00
+ 0.64494449E+00 -0.77501540E-01 0.39099722E+00
+ 0.64619767E+00 -0.77416285E-01 0.38857241E+00
+ 0.64745085E+00 -0.77329213E-01 0.38615572E+00
+ 0.64870403E+00 -0.77240343E-01 0.38374714E+00
+ 0.64995721E+00 -0.77149695E-01 0.38134668E+00
+ 0.65121038E+00 -0.77057290E-01 0.37895435E+00
+ 0.65246356E+00 -0.76963151E-01 0.37657015E+00
+ 0.65371674E+00 -0.76867300E-01 0.37419407E+00
+ 0.65496992E+00 -0.76769760E-01 0.37182613E+00
+ 0.65622310E+00 -0.76670556E-01 0.36946632E+00
+ 0.65747627E+00 -0.76569714E-01 0.36711465E+00
+ 0.65872945E+00 -0.76467260E-01 0.36477112E+00
+ 0.65998263E+00 -0.76363220E-01 0.36243573E+00
+ 0.66123581E+00 -0.76257621E-01 0.36010848E+00
+ 0.66248899E+00 -0.76150493E-01 0.35778937E+00
+ 0.66374217E+00 -0.76041863E-01 0.35547842E+00
+ 0.66499534E+00 -0.75931762E-01 0.35317562E+00
+ 0.66624852E+00 -0.75820220E-01 0.35088097E+00
+ 0.66750170E+00 -0.75707268E-01 0.34859448E+00
+ 0.66875488E+00 -0.75592937E-01 0.34631616E+00
+ 0.67000806E+00 -0.75477260E-01 0.34404600E+00
+ 0.67126123E+00 -0.75360268E-01 0.34178403E+00
+ 0.67251441E+00 -0.75241996E-01 0.33953024E+00
+ 0.67376759E+00 -0.75122476E-01 0.33728464E+00
+ 0.67502077E+00 -0.75001744E-01 0.33504725E+00
+ 0.67627395E+00 -0.74879832E-01 0.33281806E+00
+ 0.67752713E+00 -0.74756777E-01 0.33059710E+00
+ 0.67878030E+00 -0.74632613E-01 0.32838438E+00
+ 0.68003348E+00 -0.74507376E-01 0.32617991E+00
+ 0.68128666E+00 -0.74381102E-01 0.32398370E+00
+ 0.68253984E+00 -0.74253826E-01 0.32179578E+00
+ 0.68379302E+00 -0.74125586E-01 0.31961616E+00
+ 0.68504619E+00 -0.73996417E-01 0.31744486E+00
+ 0.68629937E+00 -0.73866357E-01 0.31528190E+00
+ 0.68755255E+00 -0.73735441E-01 0.31312730E+00
+ 0.68880573E+00 -0.73603707E-01 0.31098110E+00
+ 0.69005891E+00 -0.73471191E-01 0.30884331E+00
+ 0.69131209E+00 -0.73337930E-01 0.30671396E+00
+ 0.69256526E+00 -0.73203961E-01 0.30459308E+00
+ 0.69381844E+00 -0.73069321E-01 0.30248071E+00
+ 0.69507162E+00 -0.72934045E-01 0.30037688E+00
+ 0.69632480E+00 -0.72798171E-01 0.29828162E+00
+ 0.69757798E+00 -0.72661733E-01 0.29619497E+00
+ 0.69883116E+00 -0.72524769E-01 0.29411696E+00
+ 0.70008433E+00 -0.72387314E-01 0.29204765E+00
+ 0.70133751E+00 -0.72249402E-01 0.28998706E+00
+ 0.70259069E+00 -0.72111069E-01 0.28793525E+00
+ 0.70384387E+00 -0.71972349E-01 0.28589226E+00
+ 0.70509705E+00 -0.71833277E-01 0.28385813E+00
+ 0.70635022E+00 -0.71693885E-01 0.28183292E+00
+ 0.70760340E+00 -0.71554207E-01 0.27981668E+00
+ 0.70885658E+00 -0.71414275E-01 0.27780947E+00
+ 0.71010976E+00 -0.71274122E-01 0.27581133E+00
+ 0.71136294E+00 -0.71133779E-01 0.27382232E+00
+ 0.71261612E+00 -0.70993275E-01 0.27184250E+00
+ 0.71386929E+00 -0.70852643E-01 0.26987193E+00
+ 0.71512247E+00 -0.70711910E-01 0.26791067E+00
+ 0.71637565E+00 -0.70571105E-01 0.26595879E+00
+ 0.71762883E+00 -0.70430256E-01 0.26401634E+00
+ 0.71888201E+00 -0.70289391E-01 0.26208340E+00
+ 0.72013518E+00 -0.70148536E-01 0.26016002E+00
+ 0.72138836E+00 -0.70007715E-01 0.25824629E+00
+ 0.72264154E+00 -0.69866954E-01 0.25634225E+00
+ 0.72389472E+00 -0.69726277E-01 0.25444800E+00
+ 0.72514790E+00 -0.69585705E-01 0.25256359E+00
+ 0.72640108E+00 -0.69445262E-01 0.25068910E+00
+ 0.72765425E+00 -0.69304967E-01 0.24882460E+00
+ 0.72890743E+00 -0.69164842E-01 0.24697016E+00
+ 0.73016061E+00 -0.69024905E-01 0.24512586E+00
+ 0.73141379E+00 -0.68885174E-01 0.24329177E+00
+ 0.73266697E+00 -0.68745667E-01 0.24146797E+00
+ 0.73392014E+00 -0.68606400E-01 0.23965453E+00
+ 0.73517332E+00 -0.68467387E-01 0.23785152E+00
+ 0.73642650E+00 -0.68328643E-01 0.23605902E+00
+ 0.73767968E+00 -0.68190181E-01 0.23427711E+00
+ 0.73893286E+00 -0.68052013E-01 0.23250585E+00
+ 0.74018604E+00 -0.67914151E-01 0.23074533E+00
+ 0.74143921E+00 -0.67776605E-01 0.22899561E+00
+ 0.74269239E+00 -0.67639383E-01 0.22725678E+00
+ 0.74394557E+00 -0.67502493E-01 0.22552889E+00
+ 0.74519875E+00 -0.67365944E-01 0.22381203E+00
+ 0.74645193E+00 -0.67229741E-01 0.22210626E+00
+ 0.74770510E+00 -0.67093889E-01 0.22041166E+00
+ 0.74895828E+00 -0.66958393E-01 0.21872828E+00
+ 0.75021146E+00 -0.66823256E-01 0.21705620E+00
+ 0.75146464E+00 -0.66688480E-01 0.21539549E+00
+ 0.75271782E+00 -0.66554066E-01 0.21374620E+00
+ 0.75397100E+00 -0.66420016E-01 0.21210841E+00
+ 0.75522417E+00 -0.66286328E-01 0.21048216E+00
+ 0.75647735E+00 -0.66153003E-01 0.20886752E+00
+ 0.75773053E+00 -0.66020037E-01 0.20726454E+00
+ 0.75898371E+00 -0.65887428E-01 0.20567329E+00
+ 0.76023689E+00 -0.65755172E-01 0.20409381E+00
+ 0.76149007E+00 -0.65623266E-01 0.20252614E+00
+ 0.76274324E+00 -0.65491703E-01 0.20097035E+00
+ 0.76399642E+00 -0.65360478E-01 0.19942647E+00
+ 0.76524960E+00 -0.65229585E-01 0.19789454E+00
+ 0.76650278E+00 -0.65099017E-01 0.19637461E+00
+ 0.76775596E+00 -0.64968766E-01 0.19486672E+00
+ 0.76900913E+00 -0.64838823E-01 0.19337089E+00
+ 0.77026231E+00 -0.64709181E-01 0.19188715E+00
+ 0.77151549E+00 -0.64579829E-01 0.19041555E+00
+ 0.77276867E+00 -0.64450758E-01 0.18895609E+00
+ 0.77402185E+00 -0.64321958E-01 0.18750881E+00
+ 0.77527503E+00 -0.64193419E-01 0.18607372E+00
+ 0.77652820E+00 -0.64065129E-01 0.18465084E+00
+ 0.77778138E+00 -0.63937078E-01 0.18324017E+00
+ 0.77903456E+00 -0.63809254E-01 0.18184174E+00
+ 0.78028774E+00 -0.63681645E-01 0.18045554E+00
+ 0.78154092E+00 -0.63554241E-01 0.17908158E+00
+ 0.78279409E+00 -0.63427028E-01 0.17771986E+00
+ 0.78404727E+00 -0.63299994E-01 0.17637037E+00
+ 0.78530045E+00 -0.63173129E-01 0.17503310E+00
+ 0.78655363E+00 -0.63046419E-01 0.17370805E+00
+ 0.78780681E+00 -0.62919854E-01 0.17239520E+00
+ 0.78905999E+00 -0.62793419E-01 0.17109453E+00
+ 0.79031316E+00 -0.62667105E-01 0.16980602E+00
+ 0.79156634E+00 -0.62540899E-01 0.16852965E+00
+ 0.79281952E+00 -0.62414790E-01 0.16726539E+00
+ 0.79407270E+00 -0.62288766E-01 0.16601321E+00
+ 0.79532588E+00 -0.62162817E-01 0.16477307E+00
+ 0.79657905E+00 -0.62036932E-01 0.16354494E+00
+ 0.79783223E+00 -0.61911101E-01 0.16232877E+00
+ 0.79908541E+00 -0.61785313E-01 0.16112452E+00
+ 0.80033859E+00 -0.61659560E-01 0.15993215E+00
+ 0.80159177E+00 -0.61533833E-01 0.15875160E+00
+ 0.80284495E+00 -0.61408122E-01 0.15758282E+00
+ 0.80409812E+00 -0.61282421E-01 0.15642576E+00
+ 0.80535130E+00 -0.61156721E-01 0.15528035E+00
+ 0.80660448E+00 -0.61031016E-01 0.15414653E+00
+ 0.80785766E+00 -0.60905301E-01 0.15302424E+00
+ 0.80911084E+00 -0.60779569E-01 0.15191341E+00
+ 0.81036401E+00 -0.60653815E-01 0.15081397E+00
+ 0.81161719E+00 -0.60528037E-01 0.14972585E+00
+ 0.81287037E+00 -0.60402231E-01 0.14864897E+00
+ 0.81412355E+00 -0.60276393E-01 0.14758325E+00
+ 0.81537673E+00 -0.60150523E-01 0.14652862E+00
+ 0.81662991E+00 -0.60024621E-01 0.14548498E+00
+ 0.81788308E+00 -0.59898684E-01 0.14445226E+00
+ 0.81913626E+00 -0.59772716E-01 0.14343038E+00
+ 0.82038944E+00 -0.59646717E-01 0.14241923E+00
+ 0.82164262E+00 -0.59520691E-01 0.14141872E+00
+ 0.82289580E+00 -0.59394640E-01 0.14042878E+00
+ 0.82414898E+00 -0.59268569E-01 0.13944930E+00
+ 0.82540215E+00 -0.59142484E-01 0.13848018E+00
+ 0.82665533E+00 -0.59016392E-01 0.13752133E+00
+ 0.82790851E+00 -0.58890298E-01 0.13657264E+00
+ 0.82916169E+00 -0.58764213E-01 0.13563402E+00
+ 0.83041487E+00 -0.58638145E-01 0.13470537E+00
+ 0.83166804E+00 -0.58512103E-01 0.13378658E+00
+ 0.83292122E+00 -0.58386100E-01 0.13287754E+00
+ 0.83417440E+00 -0.58260148E-01 0.13197815E+00
+ 0.83542758E+00 -0.58134259E-01 0.13108830E+00
+ 0.83668076E+00 -0.58008448E-01 0.13020789E+00
+ 0.83793394E+00 -0.57882729E-01 0.12933680E+00
+ 0.83918711E+00 -0.57757119E-01 0.12847493E+00
+ 0.84044029E+00 -0.57631633E-01 0.12762216E+00
+ 0.84169347E+00 -0.57506291E-01 0.12677838E+00
+ 0.84294665E+00 -0.57381110E-01 0.12594349E+00
+ 0.84419983E+00 -0.57256110E-01 0.12511737E+00
+ 0.84545300E+00 -0.57131311E-01 0.12429990E+00
+ 0.84670618E+00 -0.57006735E-01 0.12349098E+00
+ 0.84795936E+00 -0.56882402E-01 0.12269050E+00
+ 0.84921254E+00 -0.56758337E-01 0.12189832E+00
+ 0.85046572E+00 -0.56634563E-01 0.12111436E+00
+ 0.85171890E+00 -0.56511103E-01 0.12033848E+00
+ 0.85297207E+00 -0.56387983E-01 0.11957059E+00
+ 0.85422525E+00 -0.56265228E-01 0.11881055E+00
+ 0.85547843E+00 -0.56142864E-01 0.11805827E+00
+ 0.85673161E+00 -0.56020920E-01 0.11731363E+00
+ 0.85798479E+00 -0.55899421E-01 0.11657651E+00
+ 0.85923796E+00 -0.55778396E-01 0.11584681E+00
+ 0.86049114E+00 -0.55657874E-01 0.11512441E+00
+ 0.86174432E+00 -0.55537884E-01 0.11440920E+00
+ 0.86299750E+00 -0.55418454E-01 0.11370107E+00
+ 0.86425068E+00 -0.55299615E-01 0.11299991E+00
+ 0.86550386E+00 -0.55181398E-01 0.11230561E+00
+ 0.86675703E+00 -0.55063831E-01 0.11161806E+00
+ 0.86801021E+00 -0.54946948E-01 0.11093715E+00
+ 0.86926339E+00 -0.54830778E-01 0.11026279E+00
+ 0.87051657E+00 -0.54715352E-01 0.10959485E+00
+ 0.87176975E+00 -0.54600702E-01 0.10893324E+00
+ 0.87302293E+00 -0.54486861E-01 0.10827785E+00
+ 0.87427610E+00 -0.54373858E-01 0.10762858E+00
+ 0.87552928E+00 -0.54261725E-01 0.10698532E+00
+ 0.87678246E+00 -0.54150495E-01 0.10634799E+00
+ 0.87803564E+00 -0.54040198E-01 0.10571647E+00
+ 0.87928882E+00 -0.53930867E-01 0.10509066E+00
+ 0.88054199E+00 -0.53822531E-01 0.10447048E+00
+ 0.88179517E+00 -0.53715222E-01 0.10385583E+00
+ 0.88304835E+00 -0.53608971E-01 0.10324661E+00
+ 0.88430153E+00 -0.53503808E-01 0.10264273E+00
+ 0.88555471E+00 -0.53399763E-01 0.10204410E+00
+ 0.88680789E+00 -0.53296865E-01 0.10145063E+00
+ 0.88806106E+00 -0.53195144E-01 0.10086223E+00
+ 0.88931424E+00 -0.53094629E-01 0.10027882E+00
+ 0.89056742E+00 -0.52995347E-01 0.99700314E-01
+ 0.89182060E+00 -0.52897326E-01 0.99126630E-01
+ 0.89307378E+00 -0.52800593E-01 0.98557686E-01
+ 0.89432695E+00 -0.52705175E-01 0.97993404E-01
+ 0.89558013E+00 -0.52611096E-01 0.97433710E-01
+ 0.89683331E+00 -0.52518382E-01 0.96878527E-01
+ 0.89808649E+00 -0.52427057E-01 0.96327784E-01
+ 0.89933967E+00 -0.52337144E-01 0.95781411E-01
+ 0.90059285E+00 -0.52248665E-01 0.95239340E-01
+ 0.90184602E+00 -0.52161642E-01 0.94701505E-01
+ 0.90309920E+00 -0.52076096E-01 0.94167843E-01
+ 0.90435238E+00 -0.51992045E-01 0.93638293E-01
+ 0.90560556E+00 -0.51909509E-01 0.93112796E-01
+ 0.90685874E+00 -0.51828504E-01 0.92591297E-01
+ 0.90811191E+00 -0.51749049E-01 0.92073742E-01
+ 0.90936509E+00 -0.51671157E-01 0.91560079E-01
+ 0.91061827E+00 -0.51594843E-01 0.91050260E-01
+ 0.91187145E+00 -0.51520121E-01 0.90544239E-01
+ 0.91312463E+00 -0.51447001E-01 0.90041974E-01
+ 0.91437781E+00 -0.51375496E-01 0.89543423E-01
+ 0.91563098E+00 -0.51305614E-01 0.89048550E-01
+ 0.91688416E+00 -0.51237365E-01 0.88557319E-01
+ 0.91813734E+00 -0.51170754E-01 0.88069699E-01
+ 0.91939052E+00 -0.51105788E-01 0.87585660E-01
+ 0.92064370E+00 -0.51042472E-01 0.87105178E-01
+ 0.92189687E+00 -0.50980808E-01 0.86628228E-01
+ 0.92315005E+00 -0.50920800E-01 0.86154791E-01
+ 0.92440323E+00 -0.50862446E-01 0.85684852E-01
+ 0.92565641E+00 -0.50805748E-01 0.85218395E-01
+ 0.92690959E+00 -0.50750702E-01 0.84755410E-01
+ 0.92816277E+00 -0.50697306E-01 0.84295891E-01
+ 0.92941594E+00 -0.50645555E-01 0.83839834E-01
+ 0.93066912E+00 -0.50595443E-01 0.83387238E-01
+ 0.93192230E+00 -0.50546964E-01 0.82938105E-01
+ 0.93317548E+00 -0.50500108E-01 0.82492442E-01
+ 0.93442866E+00 -0.50454866E-01 0.82050259E-01
+ 0.93568184E+00 -0.50411227E-01 0.81611568E-01
+ 0.93693501E+00 -0.50369179E-01 0.81176385E-01
+ 0.93818819E+00 -0.50328707E-01 0.80744731E-01
+ 0.93944137E+00 -0.50289798E-01 0.80316628E-01
+ 0.94069455E+00 -0.50252435E-01 0.79892102E-01
+ 0.94194773E+00 -0.50216601E-01 0.79471185E-01
+ 0.94320090E+00 -0.50182278E-01 0.79053910E-01
+ 0.94445408E+00 -0.50149446E-01 0.78640313E-01
+ 0.94570726E+00 -0.50118084E-01 0.78230435E-01
+ 0.94696044E+00 -0.50088171E-01 0.77824320E-01
+ 0.94821362E+00 -0.50059683E-01 0.77422016E-01
+ 0.94946680E+00 -0.50032598E-01 0.77023572E-01
+ 0.95071997E+00 -0.50006890E-01 0.76629044E-01
+ 0.95197315E+00 -0.49982533E-01 0.76238489E-01
+ 0.95322633E+00 -0.49959500E-01 0.75851967E-01
+ 0.95447951E+00 -0.49937763E-01 0.75469543E-01
+ 0.95573269E+00 -0.49917295E-01 0.75091285E-01
+ 0.95698586E+00 -0.49898065E-01 0.74717263E-01
+ 0.95823904E+00 -0.49880044E-01 0.74347550E-01
+ 0.95949222E+00 -0.49863200E-01 0.73982225E-01
+ 0.96074540E+00 -0.49847502E-01 0.73621367E-01
+ 0.96199858E+00 -0.49832918E-01 0.73265060E-01
+ 0.96325176E+00 -0.49819414E-01 0.72913389E-01
+ 0.96450493E+00 -0.49806957E-01 0.72566444E-01
+ 0.96575811E+00 -0.49795514E-01 0.72224317E-01
+ 0.96701129E+00 -0.49785049E-01 0.71887102E-01
+ 0.96826447E+00 -0.49775529E-01 0.71554897E-01
+ 0.96951765E+00 -0.49766917E-01 0.71227803E-01
+ 0.97077082E+00 -0.49759179E-01 0.70905922E-01
+ 0.97202400E+00 -0.49752278E-01 0.70589360E-01
+ 0.97327718E+00 -0.49746179E-01 0.70278225E-01
+ 0.97453036E+00 -0.49740846E-01 0.69972628E-01
+ 0.97578354E+00 -0.49736241E-01 0.69672683E-01
+ 0.97703672E+00 -0.49732330E-01 0.69378506E-01
+ 0.97828989E+00 -0.49729076E-01 0.69090215E-01
+ 0.97954307E+00 -0.49726443E-01 0.68807933E-01
+ 0.98079625E+00 -0.49724394E-01 0.68531783E-01
+ 0.98204943E+00 -0.49722895E-01 0.68261895E-01
+ 0.98330261E+00 -0.49721908E-01 0.67998399E-01
+ 0.98455579E+00 -0.49721400E-01 0.67741431E-01
+ 0.98580896E+00 -0.49721334E-01 0.67491131E-01
+ 0.98706214E+00 -0.49721677E-01 0.67247644E-01
+ 0.98831532E+00 -0.49722393E-01 0.67011121E-01
+ 0.98956850E+00 -0.49723450E-01 0.66781721E-01
+ 0.99082168E+00 -0.49724814E-01 0.66559609E-01
+ 0.99207485E+00 -0.49726453E-01 0.66344966E-01
+ 0.99332803E+00 -0.49728335E-01 0.66137981E-01
+ 0.99458121E+00 -0.49730428E-01 0.65938862E-01
+ 0.99583439E+00 -0.49732703E-01 0.65747839E-01
+ 0.99708757E+00 -0.49735128E-01 0.65565168E-01
+ 0.99834075E+00 -0.49737677E-01 0.65391140E-01
+ 0.99959392E+00 -0.49740320E-01 0.65226090E-01
+ 0.10008471E+01 -0.49743030E-01 0.65070416E-01
+ 0.10021003E+01 -0.49745782E-01 0.64924593E-01
+ 0.10033535E+01 -0.49748551E-01 0.64789205E-01
+ 0.10046066E+01 -0.49751311E-01 0.64664986E-01
+ 0.10058598E+01 -0.49754042E-01 0.64552873E-01
+ 0.10071130E+01 -0.49756719E-01 0.64454096E-01
+ 0.10083662E+01 -0.49759324E-01 0.64370309E-01
+ 0.10096193E+01 -0.49761835E-01 0.64303790E-01
+ 0.10108725E+01 -0.49764236E-01 0.64257772E-01
+ 0.10121257E+01 -0.49766509E-01 0.64236981E-01
+ 0.10133789E+01 -0.49768638E-01 0.64248576E-01
+ 0.10146321E+01 -0.49770608E-01 0.64303850E-01
+ 0.10158852E+01 -0.49772407E-01 0.64421497E-01
+ 0.10171384E+01 -0.49774022E-01 0.64634328E-01
+ 0.10183916E+01 -0.49775444E-01 0.65004329E-01
+ 0.10196448E+01 -0.49776662E-01 0.65660331E-01
+ 0.10208980E+01 -0.49777669E-01 0.66907245E-01
+ 0.10221511E+01 -0.49778459E-01 0.69616003E-01
+ 0.10234043E+01 -0.49779026E-01 0.77142308E-01
+ 0.10246575E+01 -0.49779364E-01 0.11198456E+00
+ 0.10259104E+01 -0.49779389E-01 0.84862560E+00
+ 0.10271633E+01 -0.49787669E-01 0.50000013E+00
+ 0.10284162E+01 -0.49793703E-01 0.50000017E+00
+ 0.10296690E+01 -0.49797486E-01 0.50000022E+00
+ 0.10309219E+01 -0.49799011E-01 0.50000026E+00
+ 0.10321748E+01 -0.49798274E-01 0.50000030E+00
+ 0.10334277E+01 -0.49795272E-01 0.50000035E+00
+ 0.10346806E+01 -0.49790001E-01 0.50000039E+00
+ 0.10359335E+01 -0.49782458E-01 0.50000044E+00
+ 0.10371864E+01 -0.49772642E-01 0.50000048E+00
+ 0.10384393E+01 -0.49760551E-01 0.50000052E+00
+ 0.10396921E+01 -0.49746186E-01 0.50000057E+00
+ 0.10409450E+01 -0.49729546E-01 0.50000061E+00
+ 0.10421979E+01 -0.49710633E-01 0.50000066E+00
+ 0.10434508E+01 -0.49689449E-01 0.50000070E+00
+ 0.10447037E+01 -0.49665995E-01 0.50000074E+00
+ 0.10459566E+01 -0.49640276E-01 0.50000079E+00
+ 0.10472095E+01 -0.49612295E-01 0.50000083E+00
+ 0.10484624E+01 -0.49582056E-01 0.50000088E+00
+ 0.10497152E+01 -0.49549565E-01 0.50000092E+00
+ 0.10509681E+01 -0.49514829E-01 0.50000096E+00
+ 0.10522210E+01 -0.49477853E-01 0.50000101E+00
+ 0.10534739E+01 -0.49438645E-01 0.50000105E+00
+ 0.10547268E+01 -0.49397214E-01 0.50000109E+00
+ 0.10559797E+01 -0.49353567E-01 0.50000114E+00
+ 0.10572326E+01 -0.49307715E-01 0.50000118E+00
+ 0.10584855E+01 -0.49259666E-01 0.50000122E+00
+ 0.10597384E+01 -0.49209433E-01 0.50000126E+00
+ 0.10609912E+01 -0.49157026E-01 0.50000131E+00
+ 0.10622441E+01 -0.49102458E-01 0.50000135E+00
+ 0.10634970E+01 -0.49045740E-01 0.50000139E+00
+ 0.10647499E+01 -0.48986885E-01 0.50000143E+00
+ 0.10660028E+01 -0.48925909E-01 0.50000148E+00
+ 0.10672557E+01 -0.48862824E-01 0.50000152E+00
+ 0.10685086E+01 -0.48797646E-01 0.50000156E+00
+ 0.10697615E+01 -0.48730391E-01 0.50000160E+00
+ 0.10710143E+01 -0.48661073E-01 0.50000164E+00
+ 0.10722672E+01 -0.48589710E-01 0.50000168E+00
+ 0.10735201E+01 -0.48516318E-01 0.50000173E+00
+ 0.10747730E+01 -0.48440915E-01 0.50000177E+00
+ 0.10760259E+01 -0.48363519E-01 0.50000181E+00
+ 0.10772788E+01 -0.48284149E-01 0.50000185E+00
+ 0.10785317E+01 -0.48202822E-01 0.50000189E+00
+ 0.10797846E+01 -0.48119559E-01 0.50000193E+00
+ 0.10810374E+01 -0.48034379E-01 0.50000197E+00
+ 0.10822903E+01 -0.47947301E-01 0.50000201E+00
+ 0.10835432E+01 -0.47858347E-01 0.50000205E+00
+ 0.10847961E+01 -0.47767537E-01 0.50000209E+00
+ 0.10860490E+01 -0.47674893E-01 0.50000213E+00
+ 0.10873019E+01 -0.47580435E-01 0.50000217E+00
+ 0.10885548E+01 -0.47484186E-01 0.50000220E+00
+ 0.10898077E+01 -0.47386167E-01 0.50000224E+00
+ 0.10910605E+01 -0.47286400E-01 0.50000228E+00
+ 0.10923134E+01 -0.47184909E-01 0.50000232E+00
+ 0.10935663E+01 -0.47081716E-01 0.50000236E+00
+ 0.10948192E+01 -0.46976843E-01 0.50000240E+00
+ 0.10960721E+01 -0.46870315E-01 0.50000243E+00
+ 0.10973250E+01 -0.46762153E-01 0.50000247E+00
+ 0.10985779E+01 -0.46652383E-01 0.50000251E+00
+ 0.10998308E+01 -0.46541026E-01 0.50000254E+00
+ 0.11010837E+01 -0.46428108E-01 0.50000258E+00
+ 0.11023365E+01 -0.46313651E-01 0.50000261E+00
+ 0.11035894E+01 -0.46197680E-01 0.50000265E+00
+ 0.11048423E+01 -0.46080218E-01 0.50000269E+00
+ 0.11060952E+01 -0.45961289E-01 0.50000272E+00
+ 0.11073481E+01 -0.45840917E-01 0.50000276E+00
+ 0.11086010E+01 -0.45719127E-01 0.50000279E+00
+ 0.11098539E+01 -0.45595941E-01 0.50000282E+00
+ 0.11111068E+01 -0.45471384E-01 0.50000286E+00
+ 0.11123596E+01 -0.45345480E-01 0.50000289E+00
+ 0.11136125E+01 -0.45218252E-01 0.50000292E+00
+ 0.11148654E+01 -0.45089724E-01 0.50000296E+00
+ 0.11161183E+01 -0.44959919E-01 0.50000299E+00
+ 0.11173712E+01 -0.44828861E-01 0.50000302E+00
+ 0.11186241E+01 -0.44696572E-01 0.50000305E+00
+ 0.11198770E+01 -0.44563076E-01 0.50000308E+00
+ 0.11211299E+01 -0.44428396E-01 0.50000311E+00
+ 0.11223827E+01 -0.44292555E-01 0.50000314E+00
+ 0.11236356E+01 -0.44155574E-01 0.50000317E+00
+ 0.11248885E+01 -0.44017475E-01 0.50000320E+00
+ 0.11261414E+01 -0.43878282E-01 0.50000323E+00
+ 0.11273943E+01 -0.43738015E-01 0.50000326E+00
+ 0.11286472E+01 -0.43596696E-01 0.50000329E+00
+ 0.11299001E+01 -0.43454345E-01 0.50000332E+00
+ 0.11311530E+01 -0.43310984E-01 0.50000334E+00
+ 0.11324059E+01 -0.43166634E-01 0.50000337E+00
+ 0.11336587E+01 -0.43021313E-01 0.50000340E+00
+ 0.11349116E+01 -0.42875043E-01 0.50000342E+00
+ 0.11361645E+01 -0.42727841E-01 0.50000345E+00
+ 0.11374174E+01 -0.42579729E-01 0.50000347E+00
+ 0.11386703E+01 -0.42430723E-01 0.50000349E+00
+ 0.11399232E+01 -0.42280842E-01 0.50000352E+00
+ 0.11411761E+01 -0.42130105E-01 0.50000354E+00
+ 0.11424290E+01 -0.41978529E-01 0.50000356E+00
+ 0.11436818E+01 -0.41826130E-01 0.50000358E+00
+ 0.11449347E+01 -0.41672925E-01 0.50000361E+00
+ 0.11461876E+01 -0.41518931E-01 0.50000363E+00
+ 0.11474405E+01 -0.41364162E-01 0.50000365E+00
+ 0.11486934E+01 -0.41208636E-01 0.50000366E+00
+ 0.11499463E+01 -0.41052365E-01 0.50000368E+00
+ 0.11511992E+01 -0.40895365E-01 0.50000370E+00
+ 0.11524521E+01 -0.40737649E-01 0.50000372E+00
+ 0.11537049E+01 -0.40579232E-01 0.50000373E+00
+ 0.11549578E+01 -0.40420125E-01 0.50000375E+00
+ 0.11562107E+01 -0.40260341E-01 0.50000376E+00
+ 0.11574636E+01 -0.40099892E-01 0.50000378E+00
+ 0.11587165E+01 -0.39938790E-01 0.50000379E+00
+ 0.11599694E+01 -0.39777046E-01 0.50000380E+00
+ 0.11612223E+01 -0.39614669E-01 0.50000382E+00
+ 0.11624752E+01 -0.39451671E-01 0.50000383E+00
+ 0.11637281E+01 -0.39288061E-01 0.50000384E+00
+ 0.11649809E+01 -0.39123847E-01 0.50000385E+00
+ 0.11662338E+01 -0.38959038E-01 0.50000386E+00
+ 0.11674867E+01 -0.38793642E-01 0.50000386E+00
+ 0.11687396E+01 -0.38627667E-01 0.50000387E+00
+ 0.11699925E+01 -0.38461120E-01 0.50000388E+00
+ 0.11712454E+01 -0.38294008E-01 0.50000389E+00
+ 0.11724983E+01 -0.38126336E-01 0.50000389E+00
+ 0.11737512E+01 -0.37958110E-01 0.50000390E+00
+ 0.11750040E+01 -0.37789336E-01 0.50000391E+00
+ 0.11762569E+01 -0.37620017E-01 0.50000391E+00
+ 0.11775098E+01 -0.37450159E-01 0.50000392E+00
+ 0.11787627E+01 -0.37279765E-01 0.50000393E+00
+ 0.11800156E+01 -0.37108839E-01 0.50000393E+00
+ 0.11812685E+01 -0.36937383E-01 0.50000394E+00
+ 0.11825214E+01 -0.36765400E-01 0.50000395E+00
+ 0.11837743E+01 -0.36592892E-01 0.50000396E+00
+ 0.11850271E+01 -0.36419860E-01 0.50000397E+00
+ 0.11862800E+01 -0.36246307E-01 0.50000398E+00
+ 0.11875329E+01 -0.36072232E-01 0.50000399E+00
+ 0.11887858E+01 -0.35897636E-01 0.50000401E+00
+ 0.11900387E+01 -0.35722520E-01 0.50000402E+00
+ 0.11912916E+01 -0.35546883E-01 0.50000404E+00
+ 0.11925445E+01 -0.35370724E-01 0.50000406E+00
+ 0.11937974E+01 -0.35194042E-01 0.50000408E+00
+ 0.11950502E+01 -0.35016837E-01 0.50000411E+00
+ 0.11963031E+01 -0.34839106E-01 0.50000414E+00
+ 0.11975560E+01 -0.34660848E-01 0.50000416E+00
+ 0.11988089E+01 -0.34482060E-01 0.50000419E+00
+ 0.12000618E+01 -0.34302740E-01 0.50000422E+00
+ 0.12013147E+01 -0.34122885E-01 0.50000426E+00
+ 0.12025676E+01 -0.33942492E-01 0.50000429E+00
+ 0.12038205E+01 -0.33761558E-01 0.50000433E+00
+ 0.12050734E+01 -0.33580080E-01 0.50000436E+00
+ 0.12063262E+01 -0.33398052E-01 0.50000440E+00
+ 0.12075791E+01 -0.33215473E-01 0.50000443E+00
+ 0.12088320E+01 -0.33032337E-01 0.50000447E+00
+ 0.12100849E+01 -0.32848640E-01 0.50000450E+00
+ 0.12113378E+01 -0.32664378E-01 0.50000454E+00
+ 0.12125907E+01 -0.32479546E-01 0.50000457E+00
+ 0.12138436E+01 -0.32294140E-01 0.50000461E+00
+ 0.12150965E+01 -0.32108155E-01 0.50000464E+00
+ 0.12163493E+01 -0.31921585E-01 0.50000467E+00
+ 0.12176022E+01 -0.31734427E-01 0.50000470E+00
+ 0.12188551E+01 -0.31546674E-01 0.50000473E+00
+ 0.12201080E+01 -0.31358322E-01 0.50000476E+00
+ 0.12213609E+01 -0.31169365E-01 0.50000479E+00
+ 0.12226138E+01 -0.30979799E-01 0.50000482E+00
+ 0.12238667E+01 -0.30789618E-01 0.50000484E+00
+ 0.12251196E+01 -0.30598818E-01 0.50000486E+00
+ 0.12263724E+01 -0.30407392E-01 0.50000489E+00
+ 0.12276253E+01 -0.30215336E-01 0.50000491E+00
+ 0.12288782E+01 -0.30022645E-01 0.50000493E+00
+ 0.12301311E+01 -0.29829314E-01 0.50000495E+00
+ 0.12313840E+01 -0.29635338E-01 0.50000496E+00
+ 0.12326369E+01 -0.29440713E-01 0.50000498E+00
+ 0.12338898E+01 -0.29245433E-01 0.50000499E+00
+ 0.12351427E+01 -0.29049494E-01 0.50000501E+00
+ 0.12363956E+01 -0.28852892E-01 0.50000502E+00
+ 0.12376484E+01 -0.28655623E-01 0.50000503E+00
+ 0.12389013E+01 -0.28457682E-01 0.50000504E+00
+ 0.12401542E+01 -0.28259066E-01 0.50000505E+00
+ 0.12414071E+01 -0.28059771E-01 0.50000506E+00
+ 0.12426600E+01 -0.27859794E-01 0.50000507E+00
+ 0.12439129E+01 -0.27659131E-01 0.50000508E+00
+ 0.12451658E+01 -0.27457780E-01 0.50000509E+00
+ 0.12464187E+01 -0.27255738E-01 0.50000509E+00
+ 0.12476715E+01 -0.27053003E-01 0.50000510E+00
+ 0.12489244E+01 -0.26849572E-01 0.50000510E+00
+ 0.12501773E+01 -0.26645443E-01 0.50000510E+00
+ 0.12514302E+01 -0.26440616E-01 0.50000511E+00
+ 0.12526831E+01 -0.26235089E-01 0.50000511E+00
+ 0.12539360E+01 -0.26028860E-01 0.50000511E+00
+ 0.12551889E+01 -0.25821931E-01 0.50000511E+00
+ 0.12564418E+01 -0.25614299E-01 0.50000511E+00
+ 0.12576946E+01 -0.25405967E-01 0.50000511E+00
+ 0.12589475E+01 -0.25196933E-01 0.50000511E+00
+ 0.12602004E+01 -0.24987200E-01 0.50000510E+00
+ 0.12614533E+01 -0.24776768E-01 0.50000510E+00
+ 0.12627062E+01 -0.24565640E-01 0.50000510E+00
+ 0.12639591E+01 -0.24353817E-01 0.50000509E+00
+ 0.12652120E+01 -0.24141302E-01 0.50000509E+00
+ 0.12664649E+01 -0.23928098E-01 0.50000508E+00
+ 0.12677178E+01 -0.23714210E-01 0.50000508E+00
+ 0.12689706E+01 -0.23499639E-01 0.50000507E+00
+ 0.12702235E+01 -0.23284392E-01 0.50000507E+00
+ 0.12714764E+01 -0.23068472E-01 0.50000506E+00
+ 0.12727293E+01 -0.22851886E-01 0.50000505E+00
+ 0.12739822E+01 -0.22634639E-01 0.50000504E+00
+ 0.12752351E+01 -0.22416737E-01 0.50000503E+00
+ 0.12764880E+01 -0.22198186E-01 0.50000503E+00
+ 0.12777409E+01 -0.21978995E-01 0.50000502E+00
+ 0.12789937E+01 -0.21759171E-01 0.50000501E+00
+ 0.12802466E+01 -0.21538723E-01 0.50000499E+00
+ 0.12814995E+01 -0.21317658E-01 0.50000498E+00
+ 0.12827524E+01 -0.21095986E-01 0.50000497E+00
+ 0.12840053E+01 -0.20873717E-01 0.50000496E+00
+ 0.12852582E+01 -0.20650862E-01 0.50000495E+00
+ 0.12865111E+01 -0.20427431E-01 0.50000493E+00
+ 0.12877640E+01 -0.20203435E-01 0.50000492E+00
+ 0.12890168E+01 -0.19978886E-01 0.50000491E+00
+ 0.12902697E+01 -0.19753797E-01 0.50000489E+00
+ 0.12915226E+01 -0.19528181E-01 0.50000488E+00
+ 0.12927755E+01 -0.19302050E-01 0.50000486E+00
+ 0.12940284E+01 -0.19075419E-01 0.50000485E+00
+ 0.12952813E+01 -0.18848303E-01 0.50000483E+00
+ 0.12965342E+01 -0.18620716E-01 0.50000481E+00
+ 0.12977871E+01 -0.18392673E-01 0.50000480E+00
+ 0.12990399E+01 -0.18164191E-01 0.50000478E+00
+ 0.13002928E+01 -0.17935287E-01 0.50000476E+00
+ 0.13015457E+01 -0.17705977E-01 0.50000474E+00
+ 0.13027986E+01 -0.17476279E-01 0.50000472E+00
+ 0.13040515E+01 -0.17246212E-01 0.50000470E+00
+ 0.13053044E+01 -0.17015793E-01 0.50000469E+00
+ 0.13065573E+01 -0.16785041E-01 0.50000467E+00
+ 0.13078102E+01 -0.16553978E-01 0.50000465E+00
+ 0.13090631E+01 -0.16322622E-01 0.50000462E+00
+ 0.13103159E+01 -0.16090994E-01 0.50000460E+00
+ 0.13115688E+01 -0.15859116E-01 0.50000458E+00
+ 0.13128217E+01 -0.15627008E-01 0.50000456E+00
+ 0.13140746E+01 -0.15394694E-01 0.50000454E+00
+ 0.13153275E+01 -0.15162196E-01 0.50000452E+00
+ 0.13165804E+01 -0.14929536E-01 0.50000449E+00
+ 0.13178333E+01 -0.14696739E-01 0.50000447E+00
+ 0.13190862E+01 -0.14463828E-01 0.50000445E+00
+ 0.13203390E+01 -0.14230828E-01 0.50000442E+00
+ 0.13215919E+01 -0.13997764E-01 0.50000440E+00
+ 0.13228448E+01 -0.13764661E-01 0.50000437E+00
+ 0.13240977E+01 -0.13531544E-01 0.50000435E+00
+ 0.13253506E+01 -0.13298441E-01 0.50000432E+00
+ 0.13266035E+01 -0.13065378E-01 0.50000430E+00
+ 0.13278564E+01 -0.12832382E-01 0.50000427E+00
+ 0.13291093E+01 -0.12599480E-01 0.50000424E+00
+ 0.13303621E+01 -0.12366700E-01 0.50000422E+00
+ 0.13316150E+01 -0.12134071E-01 0.50000419E+00
+ 0.13328679E+01 -0.11901622E-01 0.50000416E+00
+ 0.13341208E+01 -0.11669381E-01 0.50000413E+00
+ 0.13353737E+01 -0.11437378E-01 0.50000410E+00
+ 0.13366266E+01 -0.11205642E-01 0.50000408E+00
+ 0.13378795E+01 -0.10974205E-01 0.50000405E+00
+ 0.13391324E+01 -0.10743096E-01 0.50000402E+00
+ 0.13403853E+01 -0.10512346E-01 0.50000399E+00
+ 0.13416381E+01 -0.10281987E-01 0.50000396E+00
+ 0.13428910E+01 -0.10052049E-01 0.50000393E+00
+ 0.13441439E+01 -0.98225662E-02 0.50000390E+00
+ 0.13453968E+01 -0.95935690E-02 0.50000387E+00
+ 0.13466497E+01 -0.93650902E-02 0.50000383E+00
+ 0.13479026E+01 -0.91371626E-02 0.50000380E+00
+ 0.13491555E+01 -0.89098193E-02 0.50000377E+00
+ 0.13504084E+01 -0.86830934E-02 0.50000374E+00
+ 0.13516612E+01 -0.84570185E-02 0.50000371E+00
+ 0.13529141E+01 -0.82316283E-02 0.50000367E+00
+ 0.13541670E+01 -0.80069570E-02 0.50000364E+00
+ 0.13554199E+01 -0.77830387E-02 0.50000361E+00
+ 0.13566728E+01 -0.75599079E-02 0.50000357E+00
+ 0.13579257E+01 -0.73375992E-02 0.50000354E+00
+ 0.13591786E+01 -0.71161476E-02 0.50000350E+00
+ 0.13604315E+01 -0.68955880E-02 0.50000347E+00
+ 0.13616843E+01 -0.66759558E-02 0.50000344E+00
+ 0.13629372E+01 -0.64572863E-02 0.50000340E+00
+ 0.13641901E+01 -0.62396152E-02 0.50000336E+00
+ 0.13654430E+01 -0.60229780E-02 0.50000333E+00
+ 0.13666959E+01 -0.58074107E-02 0.50000329E+00
+ 0.13679488E+01 -0.55929492E-02 0.50000326E+00
+ 0.13692017E+01 -0.53796297E-02 0.50000322E+00
+ 0.13704546E+01 -0.51674883E-02 0.50000318E+00
+ 0.13717075E+01 -0.49565614E-02 0.50000315E+00
+ 0.13729603E+01 -0.47468853E-02 0.50000311E+00
+ 0.13742132E+01 -0.45384966E-02 0.50000307E+00
+ 0.13754661E+01 -0.43314317E-02 0.50000303E+00
+ 0.13767190E+01 -0.41257272E-02 0.50000300E+00
+ 0.13779719E+01 -0.39214198E-02 0.50000296E+00
+ 0.13792248E+01 -0.37185462E-02 0.50000292E+00
+ 0.13804777E+01 -0.35171430E-02 0.50000288E+00
+ 0.13817306E+01 -0.33172470E-02 0.50000284E+00
+ 0.13829834E+01 -0.31188949E-02 0.50000280E+00
+ 0.13842363E+01 -0.29221234E-02 0.50000276E+00
+ 0.13854892E+01 -0.27269691E-02 0.50000272E+00
+ 0.13867421E+01 -0.25334689E-02 0.50000268E+00
+ 0.13879950E+01 -0.23416593E-02 0.50000264E+00
+ 0.13892479E+01 -0.21515769E-02 0.50000260E+00
+ 0.13905008E+01 -0.19632582E-02 0.50000256E+00
+ 0.13917537E+01 -0.17767397E-02 0.50000252E+00
+ 0.13930065E+01 -0.15920579E-02 0.50000248E+00
+ 0.13942594E+01 -0.14092489E-02 0.50000244E+00
+ 0.13955123E+01 -0.12283490E-02 0.50000240E+00
+ 0.13967652E+01 -0.10493943E-02 0.50000236E+00
+ 0.13980181E+01 -0.87242069E-03 0.50000232E+00
+ 0.13992710E+01 -0.69746412E-03 0.50000228E+00
+ 0.14005239E+01 -0.52456026E-03 0.50000223E+00
+ 0.14017768E+01 -0.35374465E-03 0.50000219E+00
+ 0.14030296E+01 -0.18505269E-03 0.50000215E+00
+ 0.14042825E+01 -0.18519594E-04 0.50000211E+00
+ 0.14055354E+01 0.14581959E-03 0.50000206E+00
+ 0.14067883E+01 0.30793003E-03 0.50000202E+00
+ 0.14080412E+01 0.46777706E-03 0.50000198E+00
+ 0.14092941E+01 0.62532626E-03 0.50000194E+00
+ 0.14105470E+01 0.78054341E-03 0.50000189E+00
+ 0.14117999E+01 0.93339455E-03 0.50000185E+00
+ 0.14130528E+01 0.10838459E-02 0.50000181E+00
+ 0.14143056E+01 0.12318641E-02 0.50000176E+00
+ 0.14155585E+01 0.13774158E-02 0.50000172E+00
+ 0.14168114E+01 0.15204681E-02 0.50000167E+00
+ 0.14180643E+01 0.16609884E-02 0.50000163E+00
+ 0.14193172E+01 0.17989443E-02 0.50000159E+00
+ 0.14205701E+01 0.19343037E-02 0.50000154E+00
+ 0.14218230E+01 0.20670350E-02 0.50000150E+00
+ 0.14230759E+01 0.21971067E-02 0.50000145E+00
+ 0.14243287E+01 0.23244877E-02 0.50000141E+00
+ 0.14255816E+01 0.24491473E-02 0.50000136E+00
+ 0.14268345E+01 0.25710552E-02 0.50000132E+00
+ 0.14280874E+01 0.26901813E-02 0.50000127E+00
+ 0.14293403E+01 0.28064961E-02 0.50000123E+00
+ 0.14305932E+01 0.29199704E-02 0.50000118E+00
+ 0.14318461E+01 0.30305752E-02 0.50000114E+00
+ 0.14330990E+01 0.31382822E-02 0.50000109E+00
+ 0.14343518E+01 0.32430634E-02 0.50000105E+00
+ 0.14356047E+01 0.33448912E-02 0.50000100E+00
+ 0.14368576E+01 0.34437386E-02 0.50000096E+00
+ 0.14381105E+01 0.35395788E-02 0.50000091E+00
+ 0.14393634E+01 0.36323857E-02 0.50000086E+00
+ 0.14406163E+01 0.37221334E-02 0.50000082E+00
+ 0.14418692E+01 0.38087969E-02 0.50000077E+00
+ 0.14431221E+01 0.38923512E-02 0.50000073E+00
+ 0.14443750E+01 0.39727723E-02 0.50000068E+00
+ 0.14456278E+01 0.40500363E-02 0.50000064E+00
+ 0.14468807E+01 0.41241200E-02 0.50000059E+00
+ 0.14481336E+01 0.41950008E-02 0.50000054E+00
+ 0.14493865E+01 0.42626566E-02 0.50000050E+00
+ 0.14506394E+01 0.43270657E-02 0.50000045E+00
+ 0.14518923E+01 0.43882072E-02 0.50000040E+00
+ 0.14531452E+01 0.44460606E-02 0.50000036E+00
+ 0.14543981E+01 0.45006061E-02 0.50000031E+00
+ 0.14556509E+01 0.45518245E-02 0.50000027E+00
+ 0.14569038E+01 0.45996971E-02 0.50000022E+00
+ 0.14581567E+01 0.46442058E-02 0.50000017E+00
+ 0.14594096E+01 0.46853334E-02 0.50000013E+00
+ 0.14606613E+01 0.47230630E-02 0.31558260E+00
+ 0.14619130E+01 0.47214672E-02 0.49182083E+00
+ 0.14631647E+01 0.47183076E-02 0.48846290E+00
+ 0.14644164E+01 0.47132224E-02 0.48720302E+00
+ 0.14656680E+01 0.47061465E-02 0.48661275E+00
+ 0.14669197E+01 0.46970680E-02 0.48626282E+00
+ 0.14681714E+01 0.46859872E-02 0.48600897E+00
+ 0.14694231E+01 0.46729080E-02 0.48579420E+00
+ 0.14706748E+01 0.46578367E-02 0.48559280E+00
+ 0.14719265E+01 0.46407808E-02 0.48539192E+00
+ 0.14731782E+01 0.46217489E-02 0.48518460E+00
+ 0.14744299E+01 0.46007510E-02 0.48496683E+00
+ 0.14756816E+01 0.45777979E-02 0.48473620E+00
+ 0.14769332E+01 0.45529015E-02 0.48449118E+00
+ 0.14781849E+01 0.45260746E-02 0.48423080E+00
+ 0.14794366E+01 0.44973310E-02 0.48395442E+00
+ 0.14806883E+01 0.44666855E-02 0.48366163E+00
+ 0.14819400E+01 0.44341535E-02 0.48335214E+00
+ 0.14831917E+01 0.43997517E-02 0.48302580E+00
+ 0.14844434E+01 0.43634973E-02 0.48268250E+00
+ 0.14856951E+01 0.43254084E-02 0.48232220E+00
+ 0.14869467E+01 0.42855039E-02 0.48194490E+00
+ 0.14881984E+01 0.42438035E-02 0.48155063E+00
+ 0.14894501E+01 0.42003276E-02 0.48113943E+00
+ 0.14907018E+01 0.41550974E-02 0.48071139E+00
+ 0.14919535E+01 0.41081344E-02 0.48026659E+00
+ 0.14932052E+01 0.40594612E-02 0.47980514E+00
+ 0.14944569E+01 0.40091008E-02 0.47932716E+00
+ 0.14957086E+01 0.39570766E-02 0.47883277E+00
+ 0.14969603E+01 0.39034127E-02 0.47832212E+00
+ 0.14982119E+01 0.38481337E-02 0.47779536E+00
+ 0.14994636E+01 0.37912647E-02 0.47725263E+00
+ 0.15007153E+01 0.37328309E-02 0.47669411E+00
+ 0.15019670E+01 0.36728583E-02 0.47611998E+00
+ 0.15032187E+01 0.36113731E-02 0.47553041E+00
+ 0.15044704E+01 0.35484015E-02 0.47492559E+00
+ 0.15057221E+01 0.34839704E-02 0.47430571E+00
+ 0.15069738E+01 0.34181068E-02 0.47367099E+00
+ 0.15082254E+01 0.33508376E-02 0.47302163E+00
+ 0.15094771E+01 0.32821903E-02 0.47235785E+00
+ 0.15107288E+01 0.32121921E-02 0.47167987E+00
+ 0.15119805E+01 0.31408706E-02 0.47098792E+00
+ 0.15132322E+01 0.30682532E-02 0.47028223E+00
+ 0.15144839E+01 0.29943673E-02 0.46956305E+00
+ 0.15157356E+01 0.29192405E-02 0.46883063E+00
+ 0.15169873E+01 0.28429001E-02 0.46808522E+00
+ 0.15182389E+01 0.27653732E-02 0.46732707E+00
+ 0.15194906E+01 0.26866870E-02 0.46655647E+00
+ 0.15207423E+01 0.26068684E-02 0.46577367E+00
+ 0.15219940E+01 0.25259439E-02 0.46497896E+00
+ 0.15232457E+01 0.24439401E-02 0.46417262E+00
+ 0.15244974E+01 0.23608829E-02 0.46335494E+00
+ 0.15257491E+01 0.22767981E-02 0.46252621E+00
+ 0.15270008E+01 0.21917113E-02 0.46168673E+00
+ 0.15282525E+01 0.21056472E-02 0.46083681E+00
+ 0.15295041E+01 0.20186307E-02 0.45997676E+00
+ 0.15307558E+01 0.19306858E-02 0.45910688E+00
+ 0.15320075E+01 0.18418362E-02 0.45822750E+00
+ 0.15332592E+01 0.17521050E-02 0.45733895E+00
+ 0.15345109E+01 0.16615149E-02 0.45644155E+00
+ 0.15357626E+01 0.15700879E-02 0.45553562E+00
+ 0.15370143E+01 0.14778456E-02 0.45462152E+00
+ 0.15382660E+01 0.13848089E-02 0.45369957E+00
+ 0.15395176E+01 0.12909981E-02 0.45277013E+00
+ 0.15407693E+01 0.11964328E-02 0.45183353E+00
+ 0.15420210E+01 0.11011320E-02 0.45089013E+00
+ 0.15432727E+01 0.10051141E-02 0.44994028E+00
+ 0.15445244E+01 0.90839663E-03 0.44898435E+00
+ 0.15457761E+01 0.81099663E-03 0.44802267E+00
+ 0.15470278E+01 0.71293032E-03 0.44705563E+00
+ 0.15482795E+01 0.61421322E-03 0.44608358E+00
+ 0.15495312E+01 0.51486014E-03 0.44510688E+00
+ 0.15507828E+01 0.41488513E-03 0.44412590E+00
+ 0.15520345E+01 0.31430152E-03 0.44314101E+00
+ 0.15532862E+01 0.21312191E-03 0.44215258E+00
+ 0.15545379E+01 0.11135813E-03 0.44116097E+00
+ 0.15557896E+01 0.90212851E-05 0.44016656E+00
+ 0.15570413E+01 -0.93878268E-04 0.43916972E+00
+ 0.15582930E+01 -0.19733091E-03 0.43817082E+00
+ 0.15595447E+01 -0.30132777E-03 0.43717022E+00
+ 0.15607963E+01 -0.40586069E-03 0.43616830E+00
+ 0.15620480E+01 -0.51092224E-03 0.43516542E+00
+ 0.15632997E+01 -0.61650572E-03 0.43416194E+00
+ 0.15645514E+01 -0.72260511E-03 0.43315825E+00
+ 0.15658031E+01 -0.82921511E-03 0.43215469E+00
+ 0.15670548E+01 -0.93633108E-03 0.43115162E+00
+ 0.15683065E+01 -0.10439491E-02 0.43014942E+00
+ 0.15695582E+01 -0.11520657E-02 0.42914842E+00
+ 0.15708098E+01 -0.12606784E-02 0.42814899E+00
+ 0.15720615E+01 -0.13697851E-02 0.42715147E+00
+ 0.15733132E+01 -0.14793842E-02 0.42615621E+00
+ 0.15745649E+01 -0.15894749E-02 0.42516355E+00
+ 0.15758166E+01 -0.17000569E-02 0.42417382E+00
+ 0.15770683E+01 -0.18111304E-02 0.42318736E+00
+ 0.15783200E+01 -0.19226961E-02 0.42220449E+00
+ 0.15795717E+01 -0.20347551E-02 0.42122554E+00
+ 0.15808234E+01 -0.21473092E-02 0.42025082E+00
+ 0.15820750E+01 -0.22603605E-02 0.41928065E+00
+ 0.15833267E+01 -0.23739114E-02 0.41831532E+00
+ 0.15845784E+01 -0.24879649E-02 0.41735513E+00
+ 0.15858301E+01 -0.26025241E-02 0.41640038E+00
+ 0.15870818E+01 -0.27175927E-02 0.41545136E+00
+ 0.15883335E+01 -0.28331744E-02 0.41450833E+00
+ 0.15895852E+01 -0.29492735E-02 0.41357157E+00
+ 0.15908369E+01 -0.30658942E-02 0.41264135E+00
+ 0.15920885E+01 -0.31830411E-02 0.41171791E+00
+ 0.15933402E+01 -0.33007189E-02 0.41080151E+00
+ 0.15945919E+01 -0.34189324E-02 0.40989238E+00
+ 0.15958436E+01 -0.35376867E-02 0.40899076E+00
+ 0.15970953E+01 -0.36569868E-02 0.40809687E+00
+ 0.15983470E+01 -0.37768378E-02 0.40721092E+00
+ 0.15995987E+01 -0.38972447E-02 0.40633312E+00
+ 0.16008504E+01 -0.40182126E-02 0.40546366E+00
+ 0.16021021E+01 -0.41397465E-02 0.40460273E+00
+ 0.16033537E+01 -0.42618514E-02 0.40375051E+00
+ 0.16046054E+01 -0.43845321E-02 0.40290717E+00
+ 0.16058571E+01 -0.45077932E-02 0.40207286E+00
+ 0.16071088E+01 -0.46316393E-02 0.40124774E+00
+ 0.16083605E+01 -0.47560745E-02 0.40043196E+00
+ 0.16096122E+01 -0.48811029E-02 0.39962563E+00
+ 0.16108639E+01 -0.50067283E-02 0.39882888E+00
+ 0.16121156E+01 -0.51329541E-02 0.39804183E+00
+ 0.16133672E+01 -0.52597835E-02 0.39726457E+00
+ 0.16146189E+01 -0.53872191E-02 0.39649720E+00
+ 0.16158706E+01 -0.55152635E-02 0.39573981E+00
+ 0.16171223E+01 -0.56439184E-02 0.39499246E+00
+ 0.16183740E+01 -0.57731855E-02 0.39425523E+00
+ 0.16196257E+01 -0.59030658E-02 0.39352816E+00
+ 0.16208774E+01 -0.60335598E-02 0.39281130E+00
+ 0.16221291E+01 -0.61646676E-02 0.39210469E+00
+ 0.16233808E+01 -0.62963887E-02 0.39140836E+00
+ 0.16246324E+01 -0.64287220E-02 0.39072232E+00
+ 0.16258841E+01 -0.65616659E-02 0.39004658E+00
+ 0.16271358E+01 -0.66952181E-02 0.38938114E+00
+ 0.16283875E+01 -0.68293758E-02 0.38872600E+00
+ 0.16296392E+01 -0.69641354E-02 0.38808113E+00
+ 0.16308909E+01 -0.70994928E-02 0.38744651E+00
+ 0.16321426E+01 -0.72354431E-02 0.38682210E+00
+ 0.16333943E+01 -0.73719808E-02 0.38620787E+00
+ 0.16346459E+01 -0.75090996E-02 0.38560376E+00
+ 0.16358976E+01 -0.76467927E-02 0.38500971E+00
+ 0.16371493E+01 -0.77850523E-02 0.38442565E+00
+ 0.16384010E+01 -0.79238700E-02 0.38385152E+00
+ 0.16396527E+01 -0.80632367E-02 0.38328723E+00
+ 0.16409044E+01 -0.82031425E-02 0.38273270E+00
+ 0.16421561E+01 -0.83435766E-02 0.38218782E+00
+ 0.16434078E+01 -0.84845277E-02 0.38165249E+00
+ 0.16446594E+01 -0.86259835E-02 0.38112661E+00
+ 0.16459111E+01 -0.87679311E-02 0.38061007E+00
+ 0.16471628E+01 -0.89103567E-02 0.38010274E+00
+ 0.16484145E+01 -0.90532459E-02 0.37960450E+00
+ 0.16496662E+01 -0.91965833E-02 0.37911521E+00
+ 0.16509179E+01 -0.93403528E-02 0.37863474E+00
+ 0.16521696E+01 -0.94845378E-02 0.37816295E+00
+ 0.16534213E+01 -0.96291205E-02 0.37769968E+00
+ 0.16546730E+01 -0.97740827E-02 0.37724480E+00
+ 0.16559246E+01 -0.99194052E-02 0.37679814E+00
+ 0.16571763E+01 -0.10065068E-01 0.37635955E+00
+ 0.16584280E+01 -0.10211052E-01 0.37592886E+00
+ 0.16596797E+01 -0.10357334E-01 0.37550590E+00
+ 0.16609314E+01 -0.10503892E-01 0.37509051E+00
+ 0.16621831E+01 -0.10650706E-01 0.37468252E+00
+ 0.16634348E+01 -0.10797750E-01 0.37428174E+00
+ 0.16646865E+01 -0.10945001E-01 0.37388801E+00
+ 0.16659381E+01 -0.11092434E-01 0.37350114E+00
+ 0.16671898E+01 -0.11240024E-01 0.37312095E+00
+ 0.16684415E+01 -0.11387746E-01 0.37274726E+00
+ 0.16696932E+01 -0.11535573E-01 0.37237988E+00
+ 0.16709449E+01 -0.11683477E-01 0.37201864E+00
+ 0.16721966E+01 -0.11831432E-01 0.37166334E+00
+ 0.16734483E+01 -0.11979410E-01 0.37131380E+00
+ 0.16747000E+01 -0.12127381E-01 0.37096983E+00
+ 0.16759517E+01 -0.12275317E-01 0.37063124E+00
+ 0.16772033E+01 -0.12423189E-01 0.37029785E+00
+ 0.16784550E+01 -0.12570966E-01 0.36996947E+00
+ 0.16797067E+01 -0.12718619E-01 0.36964592E+00
+ 0.16809584E+01 -0.12866117E-01 0.36932701E+00
+ 0.16822101E+01 -0.13013429E-01 0.36901256E+00
+ 0.16834618E+01 -0.13160524E-01 0.36870239E+00
+ 0.16847135E+01 -0.13307370E-01 0.36839631E+00
+ 0.16859652E+01 -0.13453936E-01 0.36809415E+00
+ 0.16872168E+01 -0.13600189E-01 0.36779573E+00
+ 0.16884685E+01 -0.13746098E-01 0.36750088E+00
+ 0.16897202E+01 -0.13891631E-01 0.36720942E+00
+ 0.16909719E+01 -0.14036754E-01 0.36692119E+00
+ 0.16922236E+01 -0.14181437E-01 0.36663602E+00
+ 0.16934753E+01 -0.14325645E-01 0.36635375E+00
+ 0.16947270E+01 -0.14469347E-01 0.36607421E+00
+ 0.16959787E+01 -0.14612510E-01 0.36579725E+00
+ 0.16972303E+01 -0.14755102E-01 0.36552272E+00
+ 0.16984820E+01 -0.14897090E-01 0.36525046E+00
+ 0.16997337E+01 -0.15038442E-01 0.36498034E+00
+ 0.17009854E+01 -0.15179127E-01 0.36471220E+00
+ 0.17022371E+01 -0.15319111E-01 0.36444592E+00
+ 0.17034888E+01 -0.15458363E-01 0.36418135E+00
+ 0.17047405E+01 -0.15596853E-01 0.36391838E+00
+ 0.17059922E+01 -0.15734548E-01 0.36365687E+00
+ 0.17072439E+01 -0.15871418E-01 0.36339670E+00
+ 0.17084955E+01 -0.16007432E-01 0.36313776E+00
+ 0.17097472E+01 -0.16142560E-01 0.36287994E+00
+ 0.17109989E+01 -0.16276773E-01 0.36262313E+00
+ 0.17122506E+01 -0.16410040E-01 0.36236724E+00
+ 0.17135023E+01 -0.16542332E-01 0.36211216E+00
+ 0.17147540E+01 -0.16673623E-01 0.36185781E+00
+ 0.17160057E+01 -0.16803882E-01 0.36160410E+00
+ 0.17172574E+01 -0.16933084E-01 0.36135095E+00
+ 0.17185090E+01 -0.17061201E-01 0.36109829E+00
+ 0.17197607E+01 -0.17188206E-01 0.36084605E+00
+ 0.17210124E+01 -0.17314075E-01 0.36059416E+00
+ 0.17222641E+01 -0.17438782E-01 0.36034256E+00
+ 0.17235158E+01 -0.17562302E-01 0.36009121E+00
+ 0.17247675E+01 -0.17684612E-01 0.35984005E+00
+ 0.17260192E+01 -0.17805690E-01 0.35958904E+00
+ 0.17272709E+01 -0.17925511E-01 0.35933814E+00
+ 0.17285226E+01 -0.18044056E-01 0.35908733E+00
+ 0.17297742E+01 -0.18161303E-01 0.35883657E+00
+ 0.17310259E+01 -0.18277232E-01 0.35858585E+00
+ 0.17322776E+01 -0.18391823E-01 0.35833514E+00
+ 0.17335293E+01 -0.18505058E-01 0.35808445E+00
+ 0.17347810E+01 -0.18616920E-01 0.35783375E+00
+ 0.17360327E+01 -0.18727390E-01 0.35758307E+00
+ 0.17372844E+01 -0.18836455E-01 0.35733239E+00
+ 0.17385361E+01 -0.18944096E-01 0.35708173E+00
+ 0.17397877E+01 -0.19050302E-01 0.35683111E+00
+ 0.17410394E+01 -0.19155057E-01 0.35658054E+00
+ 0.17422911E+01 -0.19258348E-01 0.35633005E+00
+ 0.17435428E+01 -0.19360165E-01 0.35607968E+00
+ 0.17447945E+01 -0.19460496E-01 0.35582945E+00
+ 0.17460462E+01 -0.19559330E-01 0.35557940E+00
+ 0.17472979E+01 -0.19656658E-01 0.35532958E+00
+ 0.17485496E+01 -0.19752472E-01 0.35508004E+00
+ 0.17498013E+01 -0.19846764E-01 0.35483083E+00
+ 0.17510529E+01 -0.19939526E-01 0.35458200E+00
+ 0.17523046E+01 -0.20030753E-01 0.35433362E+00
+ 0.17535563E+01 -0.20120440E-01 0.35408575E+00
+ 0.17548080E+01 -0.20208582E-01 0.35383846E+00
+ 0.17560597E+01 -0.20295175E-01 0.35359183E+00
+ 0.17573114E+01 -0.20380216E-01 0.35334592E+00
+ 0.17585631E+01 -0.20463704E-01 0.35310082E+00
+ 0.17598148E+01 -0.20545637E-01 0.35285660E+00
+ 0.17610664E+01 -0.20626014E-01 0.35261336E+00
+ 0.17623181E+01 -0.20704836E-01 0.35237119E+00
+ 0.17635698E+01 -0.20782104E-01 0.35213017E+00
+ 0.17648215E+01 -0.20857818E-01 0.35189039E+00
+ 0.17660732E+01 -0.20931982E-01 0.35165197E+00
+ 0.17673249E+01 -0.21004598E-01 0.35141498E+00
+ 0.17685766E+01 -0.21075670E-01 0.35117955E+00
+ 0.17698283E+01 -0.21145202E-01 0.35094576E+00
+ 0.17710799E+01 -0.21213199E-01 0.35071372E+00
+ 0.17723316E+01 -0.21279666E-01 0.35048354E+00
+ 0.17735833E+01 -0.21344609E-01 0.35025534E+00
+ 0.17748350E+01 -0.21408034E-01 0.35002921E+00
+ 0.17760867E+01 -0.21469949E-01 0.34980527E+00
+ 0.17773384E+01 -0.21530361E-01 0.34958363E+00
+ 0.17785901E+01 -0.21589277E-01 0.34936441E+00
+ 0.17798418E+01 -0.21646706E-01 0.34914772E+00
+ 0.17810935E+01 -0.21702657E-01 0.34893366E+00
+ 0.17823451E+01 -0.21757139E-01 0.34872237E+00
+ 0.17835968E+01 -0.21810161E-01 0.34851395E+00
+ 0.17848485E+01 -0.21861732E-01 0.34830851E+00
+ 0.17861002E+01 -0.21911864E-01 0.34810618E+00
+ 0.17873519E+01 -0.21960565E-01 0.34790707E+00
+ 0.17886036E+01 -0.22007847E-01 0.34771129E+00
+ 0.17898553E+01 -0.22053720E-01 0.34751895E+00
+ 0.17911070E+01 -0.22098196E-01 0.34733017E+00
+ 0.17923586E+01 -0.22141284E-01 0.34714506E+00
+ 0.17936103E+01 -0.22182996E-01 0.34696373E+00
+ 0.17948620E+01 -0.22223344E-01 0.34678629E+00
+ 0.17961137E+01 -0.22262338E-01 0.34661285E+00
+ 0.17973654E+01 -0.22299990E-01 0.34644352E+00
+ 0.17986171E+01 -0.22336311E-01 0.34627840E+00
+ 0.17998688E+01 -0.22371312E-01 0.34611760E+00
+ 0.18011205E+01 -0.22405004E-01 0.34596121E+00
+ 0.18023722E+01 -0.22437398E-01 0.34580934E+00
+ 0.18036238E+01 -0.22468506E-01 0.34566208E+00
+ 0.18048755E+01 -0.22498338E-01 0.34551953E+00
+ 0.18061272E+01 -0.22526904E-01 0.34538178E+00
+ 0.18073789E+01 -0.22554216E-01 0.34524892E+00
+ 0.18086306E+01 -0.22580283E-01 0.34512104E+00
+ 0.18098823E+01 -0.22605115E-01 0.34499822E+00
+ 0.18111340E+01 -0.22628722E-01 0.34488055E+00
+ 0.18123857E+01 -0.22651113E-01 0.34476810E+00
+ 0.18136373E+01 -0.22672298E-01 0.34466094E+00
+ 0.18148890E+01 -0.22692285E-01 0.34455916E+00
+ 0.18161407E+01 -0.22711082E-01 0.34446281E+00
+ 0.18173924E+01 -0.22728698E-01 0.34437197E+00
+ 0.18186441E+01 -0.22745141E-01 0.34428669E+00
+ 0.18198958E+01 -0.22760417E-01 0.34420704E+00
+ 0.18211475E+01 -0.22774533E-01 0.34413306E+00
+ 0.18223992E+01 -0.22787495E-01 0.34406482E+00
+ 0.18236509E+01 -0.22799311E-01 0.34400234E+00
+ 0.18249025E+01 -0.22809984E-01 0.34394569E+00
+ 0.18261542E+01 -0.22819520E-01 0.34389490E+00
+ 0.18274059E+01 -0.22827924E-01 0.34384999E+00
+ 0.18286576E+01 -0.22835199E-01 0.34381101E+00
+ 0.18299093E+01 -0.22841349E-01 0.34377799E+00
+ 0.18311610E+01 -0.22846377E-01 0.34375093E+00
+ 0.18324127E+01 -0.22850285E-01 0.34372987E+00
+ 0.18336644E+01 -0.22853075E-01 0.34371481E+00
+ 0.18349160E+01 -0.22854748E-01 0.34370578E+00
+ 0.18361692E+01 -0.22855306E-01 0.34370276E+00
+ 0.18374224E+01 -0.22859846E-01 0.34372790E+00
+ 0.18386756E+01 -0.22873463E-01 0.34380324E+00
+ 0.18399288E+01 -0.22896149E-01 0.34392862E+00
+ 0.18411820E+01 -0.22927891E-01 0.34410377E+00
+ 0.18424352E+01 -0.22968668E-01 0.34432827E+00
+ 0.18436884E+01 -0.23018458E-01 0.34460164E+00
+ 0.18449416E+01 -0.23077229E-01 0.34492327E+00
+ 0.18461948E+01 -0.23144948E-01 0.34529244E+00
+ 0.18474480E+01 -0.23221573E-01 0.34570836E+00
+ 0.18487012E+01 -0.23307062E-01 0.34617014E+00
+ 0.18499544E+01 -0.23401364E-01 0.34667680E+00
+ 0.18512076E+01 -0.23504424E-01 0.34722729E+00
+ 0.18524608E+01 -0.23616186E-01 0.34782047E+00
+ 0.18537140E+01 -0.23736585E-01 0.34845515E+00
+ 0.18549672E+01 -0.23865556E-01 0.34913009E+00
+ 0.18562204E+01 -0.24003028E-01 0.34984398E+00
+ 0.18574736E+01 -0.24148927E-01 0.35059548E+00
+ 0.18587268E+01 -0.24303175E-01 0.35138319E+00
+ 0.18599800E+01 -0.24465692E-01 0.35220571E+00
+ 0.18612332E+01 -0.24636395E-01 0.35306161E+00
+ 0.18624864E+01 -0.24815196E-01 0.35394941E+00
+ 0.18637396E+01 -0.25002006E-01 0.35486768E+00
+ 0.18649928E+01 -0.25196735E-01 0.35581493E+00
+ 0.18662460E+01 -0.25399288E-01 0.35678969E+00
+ 0.18674992E+01 -0.25609570E-01 0.35779052E+00
+ 0.18687524E+01 -0.25827483E-01 0.35881596E+00
+ 0.18700056E+01 -0.26052929E-01 0.35986458E+00
+ 0.18712588E+01 -0.26285806E-01 0.36093497E+00
+ 0.18725120E+01 -0.26526011E-01 0.36202576E+00
+ 0.18737652E+01 -0.26773443E-01 0.36313558E+00
+ 0.18750183E+01 -0.27027996E-01 0.36426311E+00
+ 0.18762715E+01 -0.27289565E-01 0.36540705E+00
+ 0.18775247E+01 -0.27558044E-01 0.36656617E+00
+ 0.18787779E+01 -0.27833325E-01 0.36773923E+00
+ 0.18800311E+01 -0.28115300E-01 0.36892508E+00
+ 0.18812843E+01 -0.28403861E-01 0.37012256E+00
+ 0.18825375E+01 -0.28698899E-01 0.37133059E+00
+ 0.18837907E+01 -0.29000305E-01 0.37254812E+00
+ 0.18850439E+01 -0.29307968E-01 0.37377415E+00
+ 0.18862971E+01 -0.29621777E-01 0.37500770E+00
+ 0.18875503E+01 -0.29941623E-01 0.37624786E+00
+ 0.18888035E+01 -0.30267394E-01 0.37749376E+00
+ 0.18900567E+01 -0.30598977E-01 0.37874455E+00
+ 0.18913099E+01 -0.30936262E-01 0.37999944E+00
+ 0.18925631E+01 -0.31279136E-01 0.38125769E+00
+ 0.18938163E+01 -0.31627487E-01 0.38251857E+00
+ 0.18950695E+01 -0.31981201E-01 0.38378141E+00
+ 0.18963227E+01 -0.32340165E-01 0.38504557E+00
+ 0.18975759E+01 -0.32704266E-01 0.38631046E+00
+ 0.18988291E+01 -0.33073389E-01 0.38757551E+00
+ 0.19000823E+01 -0.33447420E-01 0.38884019E+00
+ 0.19013355E+01 -0.33826243E-01 0.39010401E+00
+ 0.19025887E+01 -0.34209744E-01 0.39136648E+00
+ 0.19038419E+01 -0.34597806E-01 0.39262719E+00
+ 0.19050951E+01 -0.34990312E-01 0.39388571E+00
+ 0.19063483E+01 -0.35387147E-01 0.39514168E+00
+ 0.19076015E+01 -0.35788190E-01 0.39639473E+00
+ 0.19088547E+01 -0.36193325E-01 0.39764454E+00
+ 0.19101079E+01 -0.36602432E-01 0.39889081E+00
+ 0.19113611E+01 -0.37015391E-01 0.40013323E+00
+ 0.19126143E+01 -0.37432082E-01 0.40137157E+00
+ 0.19138675E+01 -0.37852382E-01 0.40260556E+00
+ 0.19151207E+01 -0.38276171E-01 0.40383500E+00
+ 0.19163738E+01 -0.38703323E-01 0.40505966E+00
+ 0.19176270E+01 -0.39133717E-01 0.40627937E+00
+ 0.19188802E+01 -0.39567226E-01 0.40749394E+00
+ 0.19201334E+01 -0.40003724E-01 0.40870322E+00
+ 0.19213866E+01 -0.40443086E-01 0.40990706E+00
+ 0.19226398E+01 -0.40885182E-01 0.41110533E+00
+ 0.19238930E+01 -0.41329885E-01 0.41229790E+00
+ 0.19251462E+01 -0.41777063E-01 0.41348467E+00
+ 0.19263994E+01 -0.42226587E-01 0.41466552E+00
+ 0.19276526E+01 -0.42678325E-01 0.41584038E+00
+ 0.19289058E+01 -0.43132142E-01 0.41700915E+00
+ 0.19301590E+01 -0.43587906E-01 0.41817177E+00
+ 0.19314122E+01 -0.44045481E-01 0.41932816E+00
+ 0.19326654E+01 -0.44504731E-01 0.42047826E+00
+ 0.19339186E+01 -0.44965519E-01 0.42162203E+00
+ 0.19351718E+01 -0.45427706E-01 0.42275940E+00
+ 0.19364250E+01 -0.45891153E-01 0.42389035E+00
+ 0.19376782E+01 -0.46355721E-01 0.42501483E+00
+ 0.19389314E+01 -0.46821266E-01 0.42613280E+00
+ 0.19401846E+01 -0.47287648E-01 0.42724424E+00
+ 0.19414378E+01 -0.47754723E-01 0.42834912E+00
+ 0.19426910E+01 -0.48222347E-01 0.42944741E+00
+ 0.19439442E+01 -0.48690375E-01 0.43053911E+00
+ 0.19451974E+01 -0.49158660E-01 0.43162418E+00
+ 0.19464506E+01 -0.49627057E-01 0.43270262E+00
+ 0.19477038E+01 -0.50095417E-01 0.43377441E+00
+ 0.19489570E+01 -0.50563592E-01 0.43483954E+00
+ 0.19502102E+01 -0.51031433E-01 0.43589800E+00
+ 0.19514634E+01 -0.51498791E-01 0.43694978E+00
+ 0.19527166E+01 -0.51965516E-01 0.43799488E+00
+ 0.19539698E+01 -0.52431455E-01 0.43903330E+00
+ 0.19552230E+01 -0.52896459E-01 0.44006502E+00
+ 0.19564762E+01 -0.53360375E-01 0.44109004E+00
+ 0.19577293E+01 -0.53823051E-01 0.44210837E+00
+ 0.19589825E+01 -0.54284335E-01 0.44311999E+00
+ 0.19602357E+01 -0.54744074E-01 0.44412491E+00
+ 0.19614889E+01 -0.55202114E-01 0.44512313E+00
+ 0.19627421E+01 -0.55658304E-01 0.44611464E+00
+ 0.19639953E+01 -0.56112490E-01 0.44709944E+00
+ 0.19652485E+01 -0.56564518E-01 0.44807754E+00
+ 0.19665017E+01 -0.57014236E-01 0.44904892E+00
+ 0.19677549E+01 -0.57461491E-01 0.45001360E+00
+ 0.19690081E+01 -0.57906130E-01 0.45097157E+00
+ 0.19702613E+01 -0.58348002E-01 0.45192283E+00
+ 0.19715145E+01 -0.58786953E-01 0.45286738E+00
+ 0.19727677E+01 -0.59222834E-01 0.45380522E+00
+ 0.19740209E+01 -0.59655492E-01 0.45473635E+00
+ 0.19752741E+01 -0.60084779E-01 0.45566077E+00
+ 0.19765273E+01 -0.60510543E-01 0.45657848E+00
+ 0.19777805E+01 -0.60932638E-01 0.45748947E+00
+ 0.19790337E+01 -0.61350914E-01 0.45839375E+00
+ 0.19802869E+01 -0.61765226E-01 0.45929132E+00
+ 0.19815401E+01 -0.62175427E-01 0.46018216E+00
+ 0.19827933E+01 -0.62581372E-01 0.46106630E+00
+ 0.19840465E+01 -0.62982920E-01 0.46194371E+00
+ 0.19852997E+01 -0.63379926E-01 0.46281440E+00
+ 0.19865529E+01 -0.63772252E-01 0.46367837E+00
+ 0.19878061E+01 -0.64159757E-01 0.46453562E+00
+ 0.19890593E+01 -0.64542305E-01 0.46538615E+00
+ 0.19903125E+01 -0.64919758E-01 0.46622995E+00
+ 0.19915657E+01 -0.65291984E-01 0.46706702E+00
+ 0.19928189E+01 -0.65658849E-01 0.46789736E+00
+ 0.19940721E+01 -0.66020223E-01 0.46872098E+00
+ 0.19953253E+01 -0.66375978E-01 0.46953787E+00
+ 0.19965785E+01 -0.66725987E-01 0.47034802E+00
+ 0.19978317E+01 -0.67070126E-01 0.47115144E+00
+ 0.19990849E+01 -0.67408272E-01 0.47194813E+00
+ 0.20003380E+01 -0.67740307E-01 0.47273809E+00
+ 0.20015912E+01 -0.68066111E-01 0.47352132E+00
+ 0.20028444E+01 -0.68385572E-01 0.47429781E+00
+ 0.20040976E+01 -0.68698575E-01 0.47506757E+00
+ 0.20053508E+01 -0.69005010E-01 0.47583059E+00
+ 0.20066040E+01 -0.69304772E-01 0.47658689E+00
+ 0.20078572E+01 -0.69597754E-01 0.47733646E+00
+ 0.20091104E+01 -0.69883855E-01 0.47807930E+00
+ 0.20103636E+01 -0.70162977E-01 0.47881541E+00
+ 0.20116168E+01 -0.70435022E-01 0.47954481E+00
+ 0.20128700E+01 -0.70699898E-01 0.48026748E+00
+ 0.20141232E+01 -0.70957515E-01 0.48098344E+00
+ 0.20153764E+01 -0.71207785E-01 0.48169269E+00
+ 0.20166296E+01 -0.71450624E-01 0.48239523E+00
+ 0.20178828E+01 -0.71685951E-01 0.48309107E+00
+ 0.20191360E+01 -0.71913690E-01 0.48378022E+00
+ 0.20203892E+01 -0.72133764E-01 0.48446268E+00
+ 0.20216424E+01 -0.72346104E-01 0.48513846E+00
+ 0.20228956E+01 -0.72550641E-01 0.48580757E+00
+ 0.20241488E+01 -0.72747310E-01 0.48647002E+00
+ 0.20254020E+01 -0.72936051E-01 0.48712581E+00
+ 0.20266552E+01 -0.73116805E-01 0.48777497E+00
+ 0.20279084E+01 -0.73289519E-01 0.48841749E+00
+ 0.20291616E+01 -0.73454141E-01 0.48905339E+00
+ 0.20304148E+01 -0.73610625E-01 0.48968268E+00
+ 0.20316680E+01 -0.73758925E-01 0.49030538E+00
+ 0.20329212E+01 -0.73899003E-01 0.49092151E+00
+ 0.20341744E+01 -0.74030820E-01 0.49153107E+00
+ 0.20354276E+01 -0.74154344E-01 0.49213408E+00
+ 0.20366808E+01 -0.74269544E-01 0.49273057E+00
+ 0.20379340E+01 -0.74376395E-01 0.49332055E+00
+ 0.20391872E+01 -0.74474874E-01 0.49390403E+00
+ 0.20404404E+01 -0.74564961E-01 0.49448104E+00
+ 0.20416935E+01 -0.74646641E-01 0.49505161E+00
+ 0.20429467E+01 -0.74719901E-01 0.49561574E+00
+ 0.20441999E+01 -0.74784734E-01 0.49617348E+00
+ 0.20454531E+01 -0.74841133E-01 0.49672483E+00
+ 0.20467063E+01 -0.74889097E-01 0.49726983E+00
+ 0.20479595E+01 -0.74928629E-01 0.49780850E+00
+ 0.20492127E+01 -0.74959732E-01 0.49834087E+00
+ 0.20504659E+01 -0.74982416E-01 0.49886697E+00
+ 0.20517191E+01 -0.74996694E-01 0.49938683E+00
+ 0.20529723E+01 -0.75002579E-01 0.49990047E+00
+ 0.20542255E+01 -0.75000392E-01 0.49776566E+00
+ 0.20554787E+01 -0.74989832E-01 0.49563440E+00
+ 0.20567318E+01 -0.74970924E-01 0.49350658E+00
+ 0.20579850E+01 -0.74943696E-01 0.49138214E+00
+ 0.20592382E+01 -0.74908181E-01 0.48926098E+00
+ 0.20604914E+01 -0.74864413E-01 0.48714304E+00
+ 0.20617445E+01 -0.74812431E-01 0.48502824E+00
+ 0.20629977E+01 -0.74752275E-01 0.48291651E+00
+ 0.20642509E+01 -0.74683991E-01 0.48080779E+00
+ 0.20655041E+01 -0.74607625E-01 0.47870200E+00
+ 0.20667573E+01 -0.74523228E-01 0.47659909E+00
+ 0.20680104E+01 -0.74430853E-01 0.47449900E+00
+ 0.20692636E+01 -0.74330555E-01 0.47240167E+00
+ 0.20705168E+01 -0.74222394E-01 0.47030707E+00
+ 0.20717700E+01 -0.74106430E-01 0.46821513E+00
+ 0.20730232E+01 -0.73982728E-01 0.46612581E+00
+ 0.20742763E+01 -0.73851354E-01 0.46403908E+00
+ 0.20755295E+01 -0.73712378E-01 0.46195489E+00
+ 0.20767827E+01 -0.73565870E-01 0.45987321E+00
+ 0.20780359E+01 -0.73411905E-01 0.45779400E+00
+ 0.20792890E+01 -0.73250558E-01 0.45571724E+00
+ 0.20805422E+01 -0.73081908E-01 0.45364290E+00
+ 0.20817954E+01 -0.72906036E-01 0.45157096E+00
+ 0.20830486E+01 -0.72723023E-01 0.44950139E+00
+ 0.20843018E+01 -0.72532954E-01 0.44743418E+00
+ 0.20855549E+01 -0.72335916E-01 0.44536931E+00
+ 0.20868081E+01 -0.72131997E-01 0.44330678E+00
+ 0.20880613E+01 -0.71921287E-01 0.44124656E+00
+ 0.20893145E+01 -0.71703876E-01 0.43918866E+00
+ 0.20905676E+01 -0.71479860E-01 0.43713307E+00
+ 0.20918208E+01 -0.71249332E-01 0.43507978E+00
+ 0.20930740E+01 -0.71012388E-01 0.43302881E+00
+ 0.20943272E+01 -0.70769126E-01 0.43098015E+00
+ 0.20955804E+01 -0.70519645E-01 0.42893381E+00
+ 0.20968335E+01 -0.70264046E-01 0.42688979E+00
+ 0.20980867E+01 -0.70002428E-01 0.42484812E+00
+ 0.20993399E+01 -0.69734895E-01 0.42280880E+00
+ 0.21005931E+01 -0.69461550E-01 0.42077184E+00
+ 0.21018463E+01 -0.69182496E-01 0.41873728E+00
+ 0.21030994E+01 -0.68897839E-01 0.41670512E+00
+ 0.21043526E+01 -0.68607685E-01 0.41467538E+00
+ 0.21056058E+01 -0.68312140E-01 0.41264810E+00
+ 0.21068590E+01 -0.68011311E-01 0.41062330E+00
+ 0.21081121E+01 -0.67705305E-01 0.40860100E+00
+ 0.21093653E+01 -0.67394230E-01 0.40658124E+00
+ 0.21106185E+01 -0.67078196E-01 0.40456405E+00
+ 0.21118717E+01 -0.66757311E-01 0.40254946E+00
+ 0.21131249E+01 -0.66431683E-01 0.40053751E+00
+ 0.21143780E+01 -0.66101422E-01 0.39852823E+00
+ 0.21156312E+01 -0.65766637E-01 0.39652167E+00
+ 0.21168844E+01 -0.65427438E-01 0.39451785E+00
+ 0.21181376E+01 -0.65083934E-01 0.39251683E+00
+ 0.21193907E+01 -0.64736234E-01 0.39051865E+00
+ 0.21206439E+01 -0.64384448E-01 0.38852335E+00
+ 0.21218971E+01 -0.64028684E-01 0.38653098E+00
+ 0.21231503E+01 -0.63669052E-01 0.38454157E+00
+ 0.21244035E+01 -0.63305660E-01 0.38255519E+00
+ 0.21256566E+01 -0.62938616E-01 0.38057187E+00
+ 0.21269098E+01 -0.62568029E-01 0.37859167E+00
+ 0.21281630E+01 -0.62194004E-01 0.37661464E+00
+ 0.21294162E+01 -0.61816650E-01 0.37464082E+00
+ 0.21306694E+01 -0.61436073E-01 0.37267027E+00
+ 0.21319225E+01 -0.61052377E-01 0.37070304E+00
+ 0.21331757E+01 -0.60665670E-01 0.36873918E+00
+ 0.21344289E+01 -0.60276055E-01 0.36677875E+00
+ 0.21356821E+01 -0.59883635E-01 0.36482179E+00
+ 0.21369352E+01 -0.59488515E-01 0.36286837E+00
+ 0.21381884E+01 -0.59090796E-01 0.36091853E+00
+ 0.21394416E+01 -0.58690580E-01 0.35897232E+00
+ 0.21406948E+01 -0.58287967E-01 0.35702981E+00
+ 0.21419480E+01 -0.57883058E-01 0.35509104E+00
+ 0.21432011E+01 -0.57475952E-01 0.35315607E+00
+ 0.21444543E+01 -0.57066746E-01 0.35122494E+00
+ 0.21457075E+01 -0.56655537E-01 0.34929772E+00
+ 0.21469607E+01 -0.56242423E-01 0.34737446E+00
+ 0.21482138E+01 -0.55827497E-01 0.34545520E+00
+ 0.21494670E+01 -0.55410855E-01 0.34353999E+00
+ 0.21507202E+01 -0.54992589E-01 0.34162890E+00
+ 0.21519734E+01 -0.54572791E-01 0.33972196E+00
+ 0.21532266E+01 -0.54151554E-01 0.33781922E+00
+ 0.21544797E+01 -0.53728966E-01 0.33592074E+00
+ 0.21557329E+01 -0.53305117E-01 0.33402656E+00
+ 0.21569861E+01 -0.52880095E-01 0.33213673E+00
+ 0.21582393E+01 -0.52453986E-01 0.33025128E+00
+ 0.21594924E+01 -0.52026877E-01 0.32837028E+00
+ 0.21607456E+01 -0.51598852E-01 0.32649375E+00
+ 0.21619988E+01 -0.51169995E-01 0.32462174E+00
+ 0.21632520E+01 -0.50740388E-01 0.32275429E+00
+ 0.21645052E+01 -0.50310113E-01 0.32089144E+00
+ 0.21657583E+01 -0.49879250E-01 0.31903322E+00
+ 0.21670115E+01 -0.49447878E-01 0.31717968E+00
+ 0.21682647E+01 -0.49016075E-01 0.31533084E+00
+ 0.21695179E+01 -0.48583919E-01 0.31348674E+00
+ 0.21707711E+01 -0.48151486E-01 0.31164740E+00
+ 0.21720242E+01 -0.47718850E-01 0.30981287E+00
+ 0.21732774E+01 -0.47286085E-01 0.30798317E+00
+ 0.21745306E+01 -0.46853264E-01 0.30615832E+00
+ 0.21757838E+01 -0.46420458E-01 0.30433834E+00
+ 0.21770369E+01 -0.45987739E-01 0.30252327E+00
+ 0.21782901E+01 -0.45555176E-01 0.30071312E+00
+ 0.21795433E+01 -0.45122837E-01 0.29890790E+00
+ 0.21807965E+01 -0.44690790E-01 0.29710765E+00
+ 0.21820497E+01 -0.44259102E-01 0.29531237E+00
+ 0.21833028E+01 -0.43827838E-01 0.29352207E+00
+ 0.21845560E+01 -0.43397062E-01 0.29173678E+00
+ 0.21858092E+01 -0.42966838E-01 0.28995649E+00
+ 0.21870624E+01 -0.42537230E-01 0.28818122E+00
+ 0.21883155E+01 -0.42108297E-01 0.28641097E+00
+ 0.21895687E+01 -0.41680102E-01 0.28464575E+00
+ 0.21908219E+01 -0.41252703E-01 0.28288555E+00
+ 0.21920751E+01 -0.40826160E-01 0.28113039E+00
+ 0.21933283E+01 -0.40400530E-01 0.27938026E+00
+ 0.21945814E+01 -0.39975871E-01 0.27763516E+00
+ 0.21958346E+01 -0.39552238E-01 0.27589508E+00
+ 0.21970878E+01 -0.39129687E-01 0.27416001E+00
+ 0.21983410E+01 -0.38708272E-01 0.27242996E+00
+ 0.21995942E+01 -0.38288046E-01 0.27070490E+00
+ 0.22008473E+01 -0.37869062E-01 0.26898483E+00
+ 0.22021005E+01 -0.37451372E-01 0.26726974E+00
+ 0.22033537E+01 -0.37035027E-01 0.26555962E+00
+ 0.22046069E+01 -0.36620077E-01 0.26385444E+00
+ 0.22058600E+01 -0.36206571E-01 0.26215419E+00
+ 0.22071132E+01 -0.35794557E-01 0.26045885E+00
+ 0.22083664E+01 -0.35384083E-01 0.25876841E+00
+ 0.22096196E+01 -0.34975197E-01 0.25708284E+00
+ 0.22108728E+01 -0.34567943E-01 0.25540213E+00
+ 0.22121259E+01 -0.34162368E-01 0.25372624E+00
+ 0.22133791E+01 -0.33758515E-01 0.25205516E+00
+ 0.22146323E+01 -0.33356429E-01 0.25038887E+00
+ 0.22158855E+01 -0.32956151E-01 0.24872733E+00
+ 0.22171386E+01 -0.32557726E-01 0.24707053E+00
+ 0.22183918E+01 -0.32161193E-01 0.24541843E+00
+ 0.22196450E+01 -0.31766593E-01 0.24377101E+00
+ 0.22208982E+01 -0.31373967E-01 0.24212825E+00
+ 0.22221514E+01 -0.30983353E-01 0.24049011E+00
+ 0.22234045E+01 -0.30594789E-01 0.23885657E+00
+ 0.22246577E+01 -0.30208312E-01 0.23722760E+00
+ 0.22259109E+01 -0.29823961E-01 0.23560318E+00
+ 0.22271641E+01 -0.29441769E-01 0.23398327E+00
+ 0.22284173E+01 -0.29061774E-01 0.23236786E+00
+ 0.22296704E+01 -0.28684008E-01 0.23075691E+00
+ 0.22309236E+01 -0.28308505E-01 0.22915039E+00
+ 0.22321768E+01 -0.27935299E-01 0.22754829E+00
+ 0.22334300E+01 -0.27564421E-01 0.22595057E+00
+ 0.22346831E+01 -0.27195902E-01 0.22435722E+00
+ 0.22359363E+01 -0.26829772E-01 0.22276820E+00
+ 0.22371895E+01 -0.26466061E-01 0.22118351E+00
+ 0.22384427E+01 -0.26104798E-01 0.21960311E+00
+ 0.22396959E+01 -0.25746011E-01 0.21802698E+00
+ 0.22409490E+01 -0.25389726E-01 0.21645512E+00
+ 0.22422022E+01 -0.25035969E-01 0.21488750E+00
+ 0.22434554E+01 -0.24684767E-01 0.21332411E+00
+ 0.22447086E+01 -0.24336142E-01 0.21176494E+00
+ 0.22459617E+01 -0.23990119E-01 0.21020996E+00
+ 0.22472149E+01 -0.23646721E-01 0.20865919E+00
+ 0.22484681E+01 -0.23305968E-01 0.20711260E+00
+ 0.22497213E+01 -0.22967882E-01 0.20557019E+00
+ 0.22509745E+01 -0.22632483E-01 0.20403197E+00
+ 0.22522276E+01 -0.22299789E-01 0.20249792E+00
+ 0.22534808E+01 -0.21969819E-01 0.20096806E+00
+ 0.22547340E+01 -0.21642589E-01 0.19944239E+00
+ 0.22559872E+01 -0.21318116E-01 0.19792092E+00
+ 0.22572403E+01 -0.20996414E-01 0.19640366E+00
+ 0.22584935E+01 -0.20677498E-01 0.19489062E+00
+ 0.22597467E+01 -0.20361381E-01 0.19338182E+00
+ 0.22609999E+01 -0.20048075E-01 0.19187728E+00
+ 0.22622531E+01 -0.19737591E-01 0.19037703E+00
+ 0.22635062E+01 -0.19429939E-01 0.18888109E+00
+ 0.22647594E+01 -0.19125128E-01 0.18738950E+00
+ 0.22660126E+01 -0.18823166E-01 0.18590228E+00
+ 0.22672658E+01 -0.18524060E-01 0.18441948E+00
+ 0.22685190E+01 -0.18227816E-01 0.18294114E+00
+ 0.22697721E+01 -0.17934439E-01 0.18146731E+00
+ 0.22710253E+01 -0.17643933E-01 0.17999803E+00
+ 0.22722785E+01 -0.17356299E-01 0.17853335E+00
+ 0.22735317E+01 -0.17071541E-01 0.17707335E+00
+ 0.22747848E+01 -0.16789657E-01 0.17561807E+00
+ 0.22760380E+01 -0.16510649E-01 0.17416758E+00
+ 0.22772912E+01 -0.16234514E-01 0.17272195E+00
+ 0.22785444E+01 -0.15961249E-01 0.17128126E+00
+ 0.22797976E+01 -0.15690851E-01 0.16984559E+00
+ 0.22810507E+01 -0.15423314E-01 0.16841501E+00
+ 0.22823039E+01 -0.15158634E-01 0.16698961E+00
+ 0.22835571E+01 -0.14896802E-01 0.16556948E+00
+ 0.22848103E+01 -0.14637810E-01 0.16415473E+00
+ 0.22860634E+01 -0.14381650E-01 0.16274543E+00
+ 0.22873166E+01 -0.14128311E-01 0.16134171E+00
+ 0.22885698E+01 -0.13877781E-01 0.15994366E+00
+ 0.22898230E+01 -0.13630048E-01 0.15855140E+00
+ 0.22910762E+01 -0.13385099E-01 0.15716503E+00
+ 0.22923293E+01 -0.13142919E-01 0.15578469E+00
+ 0.22935825E+01 -0.12903493E-01 0.15441049E+00
+ 0.22948357E+01 -0.12666804E-01 0.15304255E+00
+ 0.22960889E+01 -0.12432833E-01 0.15168102E+00
+ 0.22973421E+01 -0.12201564E-01 0.15032601E+00
+ 0.22985952E+01 -0.11972976E-01 0.14897767E+00
+ 0.22998484E+01 -0.11747048E-01 0.14763613E+00
+ 0.23011016E+01 -0.11523759E-01 0.14630155E+00
+ 0.23023548E+01 -0.11303088E-01 0.14497406E+00
+ 0.23036079E+01 -0.11085009E-01 0.14365382E+00
+ 0.23048611E+01 -0.10869500E-01 0.14234098E+00
+ 0.23061143E+01 -0.10656535E-01 0.14103569E+00
+ 0.23073675E+01 -0.10446088E-01 0.13973811E+00
+ 0.23086207E+01 -0.10238132E-01 0.13844840E+00
+ 0.23098738E+01 -0.10032640E-01 0.13716672E+00
+ 0.23111270E+01 -0.98295843E-02 0.13589323E+00
+ 0.23123802E+01 -0.96289350E-02 0.13462810E+00
+ 0.23136334E+01 -0.94306625E-02 0.13337149E+00
+ 0.23148865E+01 -0.92347366E-02 0.13212358E+00
+ 0.23161397E+01 -0.90411261E-02 0.13088453E+00
+ 0.23173929E+01 -0.88497994E-02 0.12965452E+00
+ 0.23186461E+01 -0.86607243E-02 0.12843370E+00
+ 0.23198993E+01 -0.84738680E-02 0.12722225E+00
+ 0.23211524E+01 -0.82891971E-02 0.12602035E+00
+ 0.23224056E+01 -0.81066780E-02 0.12482817E+00
+ 0.23236588E+01 -0.79262765E-02 0.12364586E+00
+ 0.23249120E+01 -0.77479578E-02 0.12247362E+00
+ 0.23261652E+01 -0.75716872E-02 0.12131159E+00
+ 0.23274183E+01 -0.73974292E-02 0.12015995E+00
+ 0.23286715E+01 -0.72251484E-02 0.11901888E+00
+ 0.23299247E+01 -0.70548089E-02 0.11788852E+00
+ 0.23311779E+01 -0.68863747E-02 0.11676905E+00
+ 0.23324310E+01 -0.67198097E-02 0.11566062E+00
+ 0.23336842E+01 -0.65550777E-02 0.11456339E+00
+ 0.23349374E+01 -0.63921422E-02 0.11347753E+00
+ 0.23361906E+01 -0.62309669E-02 0.11240317E+00
+ 0.23374438E+01 -0.60715155E-02 0.11134048E+00
+ 0.23386969E+01 -0.59137516E-02 0.11028959E+00
+ 0.23399501E+01 -0.57576391E-02 0.10925065E+00
+ 0.23412033E+01 -0.56031420E-02 0.10822380E+00
+ 0.23424565E+01 -0.54502242E-02 0.10720917E+00
+ 0.23437096E+01 -0.52988503E-02 0.10620689E+00
+ 0.23449628E+01 -0.51489849E-02 0.10521708E+00
+ 0.23462160E+01 -0.50005930E-02 0.10423988E+00
+ 0.23474692E+01 -0.48536398E-02 0.10327538E+00
+ 0.23487224E+01 -0.47080912E-02 0.10232370E+00
+ 0.23499755E+01 -0.45639134E-02 0.10138495E+00
+ 0.23512287E+01 -0.44210730E-02 0.10045923E+00
+ 0.23524819E+01 -0.42795372E-02 0.99546623E-01
+ 0.23537351E+01 -0.41392740E-02 0.98647221E-01
+ 0.23549882E+01 -0.40002517E-02 0.97761106E-01
+ 0.23562414E+01 -0.38624393E-02 0.96888351E-01
+ 0.23574946E+01 -0.37258068E-02 0.96029026E-01
+ 0.23587478E+01 -0.35903245E-02 0.95183193E-01
+ 0.23600010E+01 -0.34559638E-02 0.94350906E-01
+ 0.23612541E+01 -0.33226968E-02 0.93532215E-01
+ 0.23625073E+01 -0.31904964E-02 0.92727161E-01
+ 0.23637605E+01 -0.30593365E-02 0.91935780E-01
+ 0.23650137E+01 -0.29291917E-02 0.91158099E-01
+ 0.23662669E+01 -0.28000379E-02 0.90394140E-01
+ 0.23675200E+01 -0.26718516E-02 0.89643918E-01
+ 0.23687732E+01 -0.25446105E-02 0.88907440E-01
+ 0.23700264E+01 -0.24182934E-02 0.88184706E-01
+ 0.23712796E+01 -0.22928800E-02 0.87475709E-01
+ 0.23725327E+01 -0.21683511E-02 0.86780437E-01
+ 0.23737859E+01 -0.20446888E-02 0.86098870E-01
+ 0.23750391E+01 -0.19218762E-02 0.85430979E-01
+ 0.23762923E+01 -0.17998974E-02 0.84776732E-01
+ 0.23775455E+01 -0.16787380E-02 0.84136088E-01
+ 0.23787986E+01 -0.15583845E-02 0.83509001E-01
+ 0.23800518E+01 -0.14388249E-02 0.82895416E-01
+ 0.23813050E+01 -0.13200481E-02 0.82295275E-01
+ 0.23825582E+01 -0.12020445E-02 0.81708511E-01
+ 0.23838113E+01 -0.10848055E-02 0.81135052E-01
+ 0.23850645E+01 -0.96832397E-03 0.80574822E-01
+ 0.23863177E+01 -0.85259395E-03 0.80027737E-01
+ 0.23875709E+01 -0.73761073E-03 0.79493707E-01
+ 0.23888241E+01 -0.62337089E-03 0.78972640E-01
+ 0.23900772E+01 -0.50987226E-03 0.78464435E-01
+ 0.23913304E+01 -0.39711394E-03 0.77968990E-01
+ 0.23925836E+01 -0.28509632E-03 0.77486195E-01
+ 0.23938368E+01 -0.17382100E-03 0.77015938E-01
+ 0.23950900E+01 -0.63290881E-04 0.76558103E-01
+ 0.23963431E+01 0.46489925E-04 0.76112567E-01
+ 0.23975963E+01 0.15551606E-03 0.75679208E-01
+ 0.23988495E+01 0.26378094E-03 0.75257897E-01
+ 0.24001027E+01 0.37127679E-03 0.74848506E-01
+ 0.24013558E+01 0.47799463E-03 0.74450900E-01
+ 0.24026090E+01 0.58392432E-03 0.74064946E-01
+ 0.24038622E+01 0.68905455E-03 0.73690506E-01
+ 0.24051154E+01 0.79337289E-03 0.73327442E-01
+ 0.24063686E+01 0.89686580E-03 0.72975615E-01
+ 0.24076217E+01 0.99951866E-03 0.72634885E-01
+ 0.24088749E+01 0.11013158E-02 0.72305113E-01
+ 0.24101281E+01 0.12022404E-02 0.71986158E-01
+ 0.24113813E+01 0.13022749E-02 0.71677881E-01
+ 0.24126344E+01 0.14014006E-02 0.71380145E-01
+ 0.24138876E+01 0.14995978E-02 0.71092814E-01
+ 0.24151408E+01 0.15968461E-02 0.70815756E-01
+ 0.24163940E+01 0.16931239E-02 0.70548838E-01
+ 0.24176472E+01 0.17884093E-02 0.70291936E-01
+ 0.24189003E+01 0.18826790E-02 0.70044927E-01
+ 0.24201535E+01 0.19759094E-02 0.69807695E-01
+ 0.24214067E+01 0.20680761E-02 0.69580130E-01
+ 0.24226599E+01 0.21591538E-02 0.69362129E-01
+ 0.24239131E+01 0.22491168E-02 0.69153598E-01
+ 0.24251662E+01 0.23379389E-02 0.68954450E-01
+ 0.24264194E+01 0.24255930E-02 0.68764614E-01
+ 0.24276726E+01 0.25120518E-02 0.68584027E-01
+ 0.24289258E+01 0.25972876E-02 0.68412642E-01
+ 0.24301789E+01 0.26812720E-02 0.68250427E-01
+ 0.24314321E+01 0.27639765E-02 0.68097372E-01
+ 0.24326853E+01 0.28453723E-02 0.67953484E-01
+ 0.24339385E+01 0.29254301E-02 0.67818796E-01
+ 0.24351917E+01 0.30041207E-02 0.67693368E-01
+ 0.24364448E+01 0.30814145E-02 0.67577291E-01
+ 0.24376980E+01 0.31572819E-02 0.67470694E-01
+ 0.24389512E+01 0.32316932E-02 0.67373747E-01
+ 0.24402044E+01 0.33046187E-02 0.67286668E-01
+ 0.24414575E+01 0.33760288E-02 0.67209732E-01
+ 0.24427107E+01 0.34458940E-02 0.67143278E-01
+ 0.24439639E+01 0.35141846E-02 0.67087725E-01
+ 0.24452171E+01 0.35808716E-02 0.67043579E-01
+ 0.24464703E+01 0.36459259E-02 0.67011457E-01
+ 0.24477234E+01 0.37093187E-02 0.66992101E-01
+ 0.24489766E+01 0.37710217E-02 0.66986407E-01
+ 0.24502298E+01 0.38310068E-02 0.66995454E-01
+ 0.24514830E+01 0.38892463E-02 0.67020546E-01
+ 0.24527361E+01 0.39457131E-02 0.67063255E-01
+ 0.24539893E+01 0.40003806E-02 0.67125491E-01
+ 0.24552425E+01 0.40532227E-02 0.67209575E-01
+ 0.24564957E+01 0.41042139E-02 0.67318346E-01
+ 0.24577489E+01 0.41533293E-02 0.67455293E-01
+ 0.24590020E+01 0.42005448E-02 0.67624729E-01
+ 0.24602552E+01 0.42458369E-02 0.67832033E-01
+ 0.24615084E+01 0.42891829E-02 0.68083961E-01
+ 0.24627616E+01 0.43305610E-02 0.68389080E-01
+ 0.24640148E+01 0.43699500E-02 0.68758369E-01
+ 0.24652679E+01 0.44073299E-02 0.69206065E-01
+ 0.24665211E+01 0.44426813E-02 0.69750867E-01
+ 0.24677743E+01 0.44759859E-02 0.70417703E-01
+ 0.24690275E+01 0.45072264E-02 0.71240352E-01
+ 0.24702806E+01 0.45363866E-02 0.72265443E-01
+ 0.24715338E+01 0.45634510E-02 0.73558707E-01
+ 0.24727870E+01 0.45884058E-02 0.75215019E-01
+ 0.24740402E+01 0.46112379E-02 0.77375084E-01
+ 0.24752934E+01 0.46319358E-02 0.80254136E-01
+ 0.24765465E+01 0.46504895E-02 0.84193331E-01
+ 0.24777997E+01 0.46668909E-02 0.89755953E-01
+ 0.24790529E+01 0.46811342E-02 0.97916266E-01
+ 0.24803061E+01 0.46932183E-02 0.11044830E+00
+ 0.24815592E+01 0.47031495E-02 0.13075571E+00
+ 0.24828124E+01 0.47109521E-02 0.16562457E+00
+ 0.24840656E+01 0.47166961E-02 0.22826594E+00
+ 0.24853188E+01 0.47205745E-02 0.33857898E+00
+ 0.24865705E+01 0.47230630E-02 0.31558260E+00
+
+ 0.00000000E+00 -0.49779389E-01 0.15137440E+00
+ 0.12516881E-02 -0.49777907E-01 0.50965534E+00
+ 0.25033762E-02 -0.49773556E-01 0.50997583E+00
+ 0.37550644E-02 -0.49766308E-01 0.51002290E+00
+ 0.50067525E-02 -0.49756165E-01 0.51002064E+00
+ 0.62584406E-02 -0.49743128E-01 0.50999876E+00
+ 0.75101287E-02 -0.49727203E-01 0.50996479E+00
+ 0.87618169E-02 -0.49708393E-01 0.50992134E+00
+ 0.10013505E-01 -0.49686706E-01 0.50986954E+00
+ 0.11265193E-01 -0.49662148E-01 0.50980996E+00
+ 0.12516881E-01 -0.49634727E-01 0.50974294E+00
+ 0.13768569E-01 -0.49604451E-01 0.50966871E+00
+ 0.15020257E-01 -0.49571329E-01 0.50958742E+00
+ 0.16271946E-01 -0.49535372E-01 0.50949923E+00
+ 0.17523634E-01 -0.49496591E-01 0.50940426E+00
+ 0.18775322E-01 -0.49454998E-01 0.50930263E+00
+ 0.20027010E-01 -0.49410606E-01 0.50919446E+00
+ 0.21278698E-01 -0.49363428E-01 0.50907987E+00
+ 0.22530386E-01 -0.49313480E-01 0.50895898E+00
+ 0.23782074E-01 -0.49260776E-01 0.50883192E+00
+ 0.25033762E-01 -0.49205333E-01 0.50869882E+00
+ 0.26285451E-01 -0.49147167E-01 0.50855981E+00
+ 0.27537139E-01 -0.49086297E-01 0.50841503E+00
+ 0.28788827E-01 -0.49022741E-01 0.50826463E+00
+ 0.30040515E-01 -0.48956518E-01 0.50810875E+00
+ 0.31292203E-01 -0.48887648E-01 0.50794754E+00
+ 0.32543891E-01 -0.48816153E-01 0.50778117E+00
+ 0.33795579E-01 -0.48742053E-01 0.50760979E+00
+ 0.35047267E-01 -0.48665371E-01 0.50743357E+00
+ 0.36298956E-01 -0.48586131E-01 0.50725268E+00
+ 0.37550644E-01 -0.48504354E-01 0.50706729E+00
+ 0.38802332E-01 -0.48420067E-01 0.50687758E+00
+ 0.40054020E-01 -0.48333293E-01 0.50668372E+00
+ 0.41305708E-01 -0.48244058E-01 0.50648589E+00
+ 0.42557396E-01 -0.48152390E-01 0.50628430E+00
+ 0.43809084E-01 -0.48058313E-01 0.50607911E+00
+ 0.45060772E-01 -0.47961856E-01 0.50587053E+00
+ 0.46312461E-01 -0.47863047E-01 0.50565874E+00
+ 0.47564149E-01 -0.47761914E-01 0.50544395E+00
+ 0.48815837E-01 -0.47658486E-01 0.50522634E+00
+ 0.50067525E-01 -0.47552793E-01 0.50500613E+00
+ 0.51319213E-01 -0.47444865E-01 0.50478349E+00
+ 0.52570901E-01 -0.47334732E-01 0.50455865E+00
+ 0.53822589E-01 -0.47222426E-01 0.50433180E+00
+ 0.55074277E-01 -0.47107977E-01 0.50410314E+00
+ 0.56325966E-01 -0.46991417E-01 0.50387289E+00
+ 0.57577654E-01 -0.46872779E-01 0.50364123E+00
+ 0.58829342E-01 -0.46752096E-01 0.50340838E+00
+ 0.60081030E-01 -0.46629399E-01 0.50317454E+00
+ 0.61332718E-01 -0.46504723E-01 0.50293992E+00
+ 0.62584406E-01 -0.46378101E-01 0.50270472E+00
+ 0.63836094E-01 -0.46249567E-01 0.50246914E+00
+ 0.65087782E-01 -0.46119155E-01 0.50223338E+00
+ 0.66339471E-01 -0.45986899E-01 0.50199765E+00
+ 0.67591159E-01 -0.45852834E-01 0.50176215E+00
+ 0.68842847E-01 -0.45716996E-01 0.50152707E+00
+ 0.70094535E-01 -0.45579417E-01 0.50129262E+00
+ 0.71346223E-01 -0.45440135E-01 0.50105898E+00
+ 0.72597911E-01 -0.45299185E-01 0.50082636E+00
+ 0.73849599E-01 -0.45156601E-01 0.50059495E+00
+ 0.75101287E-01 -0.45012419E-01 0.50036493E+00
+ 0.76352975E-01 -0.44866675E-01 0.50013649E+00
+ 0.77604664E-01 -0.44719405E-01 0.49990982E+00
+ 0.78856352E-01 -0.44570644E-01 0.49968510E+00
+ 0.80108040E-01 -0.44420428E-01 0.49946252E+00
+ 0.81359728E-01 -0.44268793E-01 0.49924224E+00
+ 0.82611416E-01 -0.44115775E-01 0.49902444E+00
+ 0.83863104E-01 -0.43961409E-01 0.49880930E+00
+ 0.85114792E-01 -0.43805730E-01 0.49859699E+00
+ 0.86366480E-01 -0.43648775E-01 0.49838766E+00
+ 0.87618169E-01 -0.43490578E-01 0.49818148E+00
+ 0.88869857E-01 -0.43331176E-01 0.49797861E+00
+ 0.90121545E-01 -0.43170603E-01 0.49777920E+00
+ 0.91373233E-01 -0.43008894E-01 0.49758340E+00
+ 0.92624921E-01 -0.42846084E-01 0.49739136E+00
+ 0.93876609E-01 -0.42682208E-01 0.49720323E+00
+ 0.95128297E-01 -0.42517300E-01 0.49701915E+00
+ 0.96379985E-01 -0.42351395E-01 0.49683924E+00
+ 0.97631674E-01 -0.42184525E-01 0.49666364E+00
+ 0.98883362E-01 -0.42016726E-01 0.49649249E+00
+ 0.10013505E+00 -0.41848031E-01 0.49632589E+00
+ 0.10138674E+00 -0.41678472E-01 0.49616398E+00
+ 0.10263843E+00 -0.41508083E-01 0.49600687E+00
+ 0.10389011E+00 -0.41336895E-01 0.49585466E+00
+ 0.10514180E+00 -0.41164942E-01 0.49570747E+00
+ 0.10639349E+00 -0.40992255E-01 0.49556540E+00
+ 0.10764518E+00 -0.40818865E-01 0.49542854E+00
+ 0.10889687E+00 -0.40644804E-01 0.49529699E+00
+ 0.11014855E+00 -0.40470102E-01 0.49517085E+00
+ 0.11140024E+00 -0.40294790E-01 0.49505018E+00
+ 0.11265193E+00 -0.40118897E-01 0.49493508E+00
+ 0.11390362E+00 -0.39942453E-01 0.49482561E+00
+ 0.11515531E+00 -0.39765486E-01 0.49472186E+00
+ 0.11640700E+00 -0.39588026E-01 0.49462389E+00
+ 0.11765868E+00 -0.39410101E-01 0.49453175E+00
+ 0.11891037E+00 -0.39231738E-01 0.49444551E+00
+ 0.12016206E+00 -0.39052964E-01 0.49436523E+00
+ 0.12141375E+00 -0.38873807E-01 0.49429094E+00
+ 0.12266544E+00 -0.38694291E-01 0.49422270E+00
+ 0.12391712E+00 -0.38514444E-01 0.49416054E+00
+ 0.12516881E+00 -0.38334291E-01 0.49410450E+00
+ 0.12642050E+00 -0.38153855E-01 0.49405462E+00
+ 0.12767219E+00 -0.37973162E-01 0.49401091E+00
+ 0.12892388E+00 -0.37792234E-01 0.49397340E+00
+ 0.13017556E+00 -0.37611096E-01 0.49394211E+00
+ 0.13142725E+00 -0.37429770E-01 0.49391704E+00
+ 0.13267894E+00 -0.37248278E-01 0.49389822E+00
+ 0.13393063E+00 -0.37066641E-01 0.49388564E+00
+ 0.13518232E+00 -0.36884881E-01 0.49387931E+00
+ 0.13643401E+00 -0.36703019E-01 0.49387921E+00
+ 0.13768569E+00 -0.36521074E-01 0.49388535E+00
+ 0.13893738E+00 -0.36339066E-01 0.49389771E+00
+ 0.14018907E+00 -0.36157014E-01 0.49391627E+00
+ 0.14144076E+00 -0.35974936E-01 0.49394102E+00
+ 0.14269245E+00 -0.35792851E-01 0.49397192E+00
+ 0.14394413E+00 -0.35610776E-01 0.49400895E+00
+ 0.14519582E+00 -0.35428727E-01 0.49405207E+00
+ 0.14644751E+00 -0.35246722E-01 0.49410126E+00
+ 0.14769920E+00 -0.35064776E-01 0.49415646E+00
+ 0.14895089E+00 -0.34882904E-01 0.49421764E+00
+ 0.15020257E+00 -0.34701122E-01 0.49428474E+00
+ 0.15145426E+00 -0.34519443E-01 0.49435771E+00
+ 0.15270595E+00 -0.34337882E-01 0.49443650E+00
+ 0.15395764E+00 -0.34156452E-01 0.49452105E+00
+ 0.15520933E+00 -0.33975166E-01 0.49461129E+00
+ 0.15646102E+00 -0.33794037E-01 0.49470716E+00
+ 0.15771270E+00 -0.33613076E-01 0.49480859E+00
+ 0.15896439E+00 -0.33432295E-01 0.49491550E+00
+ 0.16021608E+00 -0.33251706E-01 0.49502781E+00
+ 0.16146777E+00 -0.33071318E-01 0.49514545E+00
+ 0.16271946E+00 -0.32891143E-01 0.49526834E+00
+ 0.16397114E+00 -0.32711190E-01 0.49539638E+00
+ 0.16522283E+00 -0.32531469E-01 0.49552948E+00
+ 0.16647452E+00 -0.32351988E-01 0.49566756E+00
+ 0.16772621E+00 -0.32172756E-01 0.49581051E+00
+ 0.16897790E+00 -0.31993782E-01 0.49595825E+00
+ 0.17022958E+00 -0.31815074E-01 0.49611066E+00
+ 0.17148127E+00 -0.31636639E-01 0.49626764E+00
+ 0.17273296E+00 -0.31458484E-01 0.49642909E+00
+ 0.17398465E+00 -0.31280617E-01 0.49659489E+00
+ 0.17523634E+00 -0.31103043E-01 0.49676494E+00
+ 0.17648803E+00 -0.30925770E-01 0.49693913E+00
+ 0.17773971E+00 -0.30748803E-01 0.49711732E+00
+ 0.17899140E+00 -0.30572149E-01 0.49729941E+00
+ 0.18024309E+00 -0.30395812E-01 0.49748528E+00
+ 0.18149478E+00 -0.30219798E-01 0.49767480E+00
+ 0.18274647E+00 -0.30044112E-01 0.49786784E+00
+ 0.18399815E+00 -0.29868759E-01 0.49806429E+00
+ 0.18524984E+00 -0.29693743E-01 0.49826400E+00
+ 0.18650153E+00 -0.29519069E-01 0.49846686E+00
+ 0.18775322E+00 -0.29344742E-01 0.49867273E+00
+ 0.18900491E+00 -0.29170765E-01 0.49888148E+00
+ 0.19025659E+00 -0.28997141E-01 0.49909297E+00
+ 0.19150828E+00 -0.28823876E-01 0.49930707E+00
+ 0.19275997E+00 -0.28650973E-01 0.49952364E+00
+ 0.19401166E+00 -0.28478435E-01 0.49974254E+00
+ 0.19526335E+00 -0.28306266E-01 0.49996364E+00
+ 0.19651504E+00 -0.28134470E-01 0.50018679E+00
+ 0.19776672E+00 -0.27963049E-01 0.50041185E+00
+ 0.19901841E+00 -0.27792007E-01 0.50063869E+00
+ 0.20027010E+00 -0.27621348E-01 0.50086716E+00
+ 0.20152179E+00 -0.27451075E-01 0.50109712E+00
+ 0.20277348E+00 -0.27281191E-01 0.50132843E+00
+ 0.20402516E+00 -0.27111699E-01 0.50156095E+00
+ 0.20527685E+00 -0.26942602E-01 0.50179453E+00
+ 0.20652854E+00 -0.26773905E-01 0.50202903E+00
+ 0.20778023E+00 -0.26605611E-01 0.50226431E+00
+ 0.20903192E+00 -0.26437723E-01 0.50250023E+00
+ 0.21028360E+00 -0.26270244E-01 0.50273665E+00
+ 0.21153529E+00 -0.26103179E-01 0.50297342E+00
+ 0.21278698E+00 -0.25936531E-01 0.50321041E+00
+ 0.21403867E+00 -0.25770304E-01 0.50344747E+00
+ 0.21529036E+00 -0.25604503E-01 0.50368448E+00
+ 0.21654205E+00 -0.25439130E-01 0.50392128E+00
+ 0.21779373E+00 -0.25274192E-01 0.50415775E+00
+ 0.21904542E+00 -0.25109691E-01 0.50439375E+00
+ 0.22029711E+00 -0.24945634E-01 0.50462914E+00
+ 0.22154880E+00 -0.24782024E-01 0.50486380E+00
+ 0.22280049E+00 -0.24618868E-01 0.50509759E+00
+ 0.22405217E+00 -0.24456169E-01 0.50533038E+00
+ 0.22530386E+00 -0.24293935E-01 0.50556205E+00
+ 0.22655555E+00 -0.24132169E-01 0.50579246E+00
+ 0.22780724E+00 -0.23970879E-01 0.50602151E+00
+ 0.22905893E+00 -0.23810071E-01 0.50624906E+00
+ 0.23031061E+00 -0.23649751E-01 0.50647499E+00
+ 0.23156230E+00 -0.23489926E-01 0.50669920E+00
+ 0.23281399E+00 -0.23330602E-01 0.50692155E+00
+ 0.23406568E+00 -0.23171788E-01 0.50714195E+00
+ 0.23531737E+00 -0.23013491E-01 0.50736029E+00
+ 0.23656906E+00 -0.22855718E-01 0.50757645E+00
+ 0.23782074E+00 -0.22698479E-01 0.50779033E+00
+ 0.23907243E+00 -0.22541780E-01 0.50800183E+00
+ 0.24032412E+00 -0.22385632E-01 0.50821085E+00
+ 0.24157581E+00 -0.22230043E-01 0.50841731E+00
+ 0.24282750E+00 -0.22075023E-01 0.50862109E+00
+ 0.24407918E+00 -0.21920581E-01 0.50882213E+00
+ 0.24533087E+00 -0.21766727E-01 0.50902032E+00
+ 0.24658256E+00 -0.21613472E-01 0.50921559E+00
+ 0.24783425E+00 -0.21460827E-01 0.50940786E+00
+ 0.24908594E+00 -0.21308803E-01 0.50959706E+00
+ 0.25033762E+00 -0.21157411E-01 0.50978310E+00
+ 0.25158931E+00 -0.21006662E-01 0.50996593E+00
+ 0.25284100E+00 -0.20856570E-01 0.51014548E+00
+ 0.25409269E+00 -0.20707145E-01 0.51032168E+00
+ 0.25534438E+00 -0.20558402E-01 0.51049449E+00
+ 0.25659607E+00 -0.20410353E-01 0.51066383E+00
+ 0.25784775E+00 -0.20263011E-01 0.51082968E+00
+ 0.25909944E+00 -0.20116391E-01 0.51099197E+00
+ 0.26035113E+00 -0.19970506E-01 0.51115067E+00
+ 0.26160282E+00 -0.19825371E-01 0.51130574E+00
+ 0.26285451E+00 -0.19681000E-01 0.51145714E+00
+ 0.26410619E+00 -0.19537409E-01 0.51160485E+00
+ 0.26535788E+00 -0.19394612E-01 0.51174883E+00
+ 0.26660957E+00 -0.19252627E-01 0.51188906E+00
+ 0.26786126E+00 -0.19111468E-01 0.51202552E+00
+ 0.26911295E+00 -0.18971152E-01 0.51215820E+00
+ 0.27036463E+00 -0.18831696E-01 0.51228709E+00
+ 0.27161632E+00 -0.18693116E-01 0.51241218E+00
+ 0.27286801E+00 -0.18555429E-01 0.51253346E+00
+ 0.27411970E+00 -0.18418654E-01 0.51265093E+00
+ 0.27537139E+00 -0.18282808E-01 0.51276460E+00
+ 0.27662308E+00 -0.18147908E-01 0.51287448E+00
+ 0.27787476E+00 -0.18013974E-01 0.51298057E+00
+ 0.27912645E+00 -0.17881023E-01 0.51308289E+00
+ 0.28037814E+00 -0.17749075E-01 0.51318146E+00
+ 0.28162983E+00 -0.17618148E-01 0.51327630E+00
+ 0.28288152E+00 -0.17488261E-01 0.51336744E+00
+ 0.28413320E+00 -0.17359435E-01 0.51345490E+00
+ 0.28538489E+00 -0.17231688E-01 0.51353871E+00
+ 0.28663658E+00 -0.17105041E-01 0.51361892E+00
+ 0.28788827E+00 -0.16979513E-01 0.51369555E+00
+ 0.28913996E+00 -0.16855124E-01 0.51376866E+00
+ 0.29039164E+00 -0.16731896E-01 0.51383828E+00
+ 0.29164333E+00 -0.16609847E-01 0.51390447E+00
+ 0.29289502E+00 -0.16489000E-01 0.51396727E+00
+ 0.29414671E+00 -0.16369374E-01 0.51402674E+00
+ 0.29539840E+00 -0.16250991E-01 0.51408292E+00
+ 0.29665009E+00 -0.16133871E-01 0.51413590E+00
+ 0.29790177E+00 -0.16018036E-01 0.51418571E+00
+ 0.29915346E+00 -0.15903506E-01 0.51423243E+00
+ 0.30040515E+00 -0.15790302E-01 0.51427612E+00
+ 0.30165684E+00 -0.15678446E-01 0.51431685E+00
+ 0.30290853E+00 -0.15567960E-01 0.51435469E+00
+ 0.30416021E+00 -0.15458863E-01 0.51438971E+00
+ 0.30541190E+00 -0.15351178E-01 0.51442199E+00
+ 0.30666359E+00 -0.15244926E-01 0.51445159E+00
+ 0.30791528E+00 -0.15140127E-01 0.51447861E+00
+ 0.30916697E+00 -0.15036804E-01 0.51450311E+00
+ 0.31041865E+00 -0.14934976E-01 0.51452518E+00
+ 0.31167034E+00 -0.14834666E-01 0.51454489E+00
+ 0.31292203E+00 -0.14735894E-01 0.51456234E+00
+ 0.31417372E+00 -0.14638680E-01 0.51457759E+00
+ 0.31542541E+00 -0.14543046E-01 0.51459075E+00
+ 0.31667710E+00 -0.14449012E-01 0.51460189E+00
+ 0.31792878E+00 -0.14356599E-01 0.51461110E+00
+ 0.31918047E+00 -0.14265827E-01 0.51461846E+00
+ 0.32043216E+00 -0.14176716E-01 0.51462406E+00
+ 0.32168385E+00 -0.14089286E-01 0.51462799E+00
+ 0.32293554E+00 -0.14003557E-01 0.51463034E+00
+ 0.32418722E+00 -0.13919548E-01 0.51463118E+00
+ 0.32543891E+00 -0.13837278E-01 0.51463062E+00
+ 0.32669060E+00 -0.13756767E-01 0.51462873E+00
+ 0.32794229E+00 -0.13678034E-01 0.51462560E+00
+ 0.32919398E+00 -0.13601096E-01 0.51462132E+00
+ 0.33044566E+00 -0.13525972E-01 0.51461598E+00
+ 0.33169735E+00 -0.13452681E-01 0.51460965E+00
+ 0.33294904E+00 -0.13381239E-01 0.51460242E+00
+ 0.33420073E+00 -0.13311664E-01 0.51459437E+00
+ 0.33545242E+00 -0.13243973E-01 0.51458559E+00
+ 0.33670411E+00 -0.13178182E-01 0.51457616E+00
+ 0.33795579E+00 -0.13114308E-01 0.51456615E+00
+ 0.33920748E+00 -0.13052366E-01 0.51455565E+00
+ 0.34045917E+00 -0.12992373E-01 0.51454472E+00
+ 0.34171086E+00 -0.12934342E-01 0.51453345E+00
+ 0.34296255E+00 -0.12878289E-01 0.51452191E+00
+ 0.34421423E+00 -0.12824228E-01 0.51451016E+00
+ 0.34546592E+00 -0.12772172E-01 0.51449829E+00
+ 0.34671761E+00 -0.12722135E-01 0.51448635E+00
+ 0.34796930E+00 -0.12674130E-01 0.51447441E+00
+ 0.34922099E+00 -0.12628170E-01 0.51446253E+00
+ 0.35047267E+00 -0.12584265E-01 0.51445078E+00
+ 0.35172436E+00 -0.12542428E-01 0.51443922E+00
+ 0.35297605E+00 -0.12502669E-01 0.51442790E+00
+ 0.35422774E+00 -0.12464999E-01 0.51441687E+00
+ 0.35547943E+00 -0.12429427E-01 0.51440619E+00
+ 0.35673112E+00 -0.12395964E-01 0.51439591E+00
+ 0.35798280E+00 -0.12364618E-01 0.51438607E+00
+ 0.35923449E+00 -0.12335396E-01 0.51437671E+00
+ 0.36048618E+00 -0.12308308E-01 0.51436788E+00
+ 0.36173787E+00 -0.12283360E-01 0.51435962E+00
+ 0.36298956E+00 -0.12260559E-01 0.51435195E+00
+ 0.36424124E+00 -0.12239912E-01 0.51434492E+00
+ 0.36549293E+00 -0.12221422E-01 0.51433855E+00
+ 0.36674462E+00 -0.12205096E-01 0.51433286E+00
+ 0.36799631E+00 -0.12190938E-01 0.51432789E+00
+ 0.36924800E+00 -0.12178952E-01 0.51432364E+00
+ 0.37049968E+00 -0.12169140E-01 0.51432015E+00
+ 0.37175137E+00 -0.12161506E-01 0.51431741E+00
+ 0.37300306E+00 -0.12156052E-01 0.51431545E+00
+ 0.37425475E+00 -0.12152779E-01 0.51431427E+00
+ 0.37550795E+00 -0.12151688E-01 0.51431388E+00
+ 0.37676114E+00 -0.12150857E-01 0.51431256E+00
+ 0.37801434E+00 -0.12148365E-01 0.51430861E+00
+ 0.37926754E+00 -0.12144214E-01 0.51430204E+00
+ 0.38052073E+00 -0.12138406E-01 0.51429285E+00
+ 0.38177393E+00 -0.12130946E-01 0.51428107E+00
+ 0.38302713E+00 -0.12121839E-01 0.51426672E+00
+ 0.38428032E+00 -0.12111090E-01 0.51424984E+00
+ 0.38553352E+00 -0.12098707E-01 0.51423044E+00
+ 0.38678672E+00 -0.12084699E-01 0.51420858E+00
+ 0.38803992E+00 -0.12069074E-01 0.51418430E+00
+ 0.38929311E+00 -0.12051844E-01 0.51415764E+00
+ 0.39054631E+00 -0.12033020E-01 0.51412866E+00
+ 0.39179951E+00 -0.12012613E-01 0.51409742E+00
+ 0.39305270E+00 -0.11990639E-01 0.51406398E+00
+ 0.39430590E+00 -0.11967110E-01 0.51402840E+00
+ 0.39555910E+00 -0.11942043E-01 0.51399075E+00
+ 0.39681229E+00 -0.11915453E-01 0.51395110E+00
+ 0.39806549E+00 -0.11887357E-01 0.51390954E+00
+ 0.39931869E+00 -0.11857774E-01 0.51386613E+00
+ 0.40057189E+00 -0.11826721E-01 0.51382096E+00
+ 0.40182508E+00 -0.11794218E-01 0.51377412E+00
+ 0.40307828E+00 -0.11760285E-01 0.51372569E+00
+ 0.40433148E+00 -0.11724943E-01 0.51367576E+00
+ 0.40558467E+00 -0.11688212E-01 0.51362441E+00
+ 0.40683787E+00 -0.11650115E-01 0.51357175E+00
+ 0.40809107E+00 -0.11610674E-01 0.51351786E+00
+ 0.40934426E+00 -0.11569912E-01 0.51346283E+00
+ 0.41059746E+00 -0.11527852E-01 0.51340676E+00
+ 0.41185066E+00 -0.11484519E-01 0.51334974E+00
+ 0.41310386E+00 -0.11439935E-01 0.51329188E+00
+ 0.41435705E+00 -0.11394126E-01 0.51323325E+00
+ 0.41561025E+00 -0.11347117E-01 0.51317396E+00
+ 0.41686345E+00 -0.11298933E-01 0.51311410E+00
+ 0.41811664E+00 -0.11249599E-01 0.51305376E+00
+ 0.41936984E+00 -0.11199141E-01 0.51299303E+00
+ 0.42062304E+00 -0.11147584E-01 0.51293201E+00
+ 0.42187623E+00 -0.11094956E-01 0.51287078E+00
+ 0.42312943E+00 -0.11041281E-01 0.51280942E+00
+ 0.42438263E+00 -0.10986586E-01 0.51274803E+00
+ 0.42563583E+00 -0.10930897E-01 0.51268668E+00
+ 0.42688902E+00 -0.10874241E-01 0.51262545E+00
+ 0.42814222E+00 -0.10816644E-01 0.51256443E+00
+ 0.42939542E+00 -0.10758132E-01 0.51250369E+00
+ 0.43064861E+00 -0.10698732E-01 0.51244329E+00
+ 0.43190181E+00 -0.10638470E-01 0.51238331E+00
+ 0.43315501E+00 -0.10577371E-01 0.51232382E+00
+ 0.43440820E+00 -0.10515463E-01 0.51226488E+00
+ 0.43566140E+00 -0.10452772E-01 0.51220654E+00
+ 0.43691460E+00 -0.10389322E-01 0.51214887E+00
+ 0.43816780E+00 -0.10325141E-01 0.51209191E+00
+ 0.43942099E+00 -0.10260253E-01 0.51203572E+00
+ 0.44067419E+00 -0.10194685E-01 0.51198033E+00
+ 0.44192739E+00 -0.10128461E-01 0.51192580E+00
+ 0.44318058E+00 -0.10061606E-01 0.51187216E+00
+ 0.44443378E+00 -0.99941465E-02 0.51181944E+00
+ 0.44568698E+00 -0.99261062E-02 0.51176768E+00
+ 0.44694017E+00 -0.98575101E-02 0.51171689E+00
+ 0.44819337E+00 -0.97883826E-02 0.51166711E+00
+ 0.44944657E+00 -0.97187479E-02 0.51161834E+00
+ 0.45069977E+00 -0.96486301E-02 0.51157061E+00
+ 0.45195296E+00 -0.95780531E-02 0.51152392E+00
+ 0.45320616E+00 -0.95070404E-02 0.51147828E+00
+ 0.45445936E+00 -0.94356156E-02 0.51143369E+00
+ 0.45571255E+00 -0.93638020E-02 0.51139015E+00
+ 0.45696575E+00 -0.92916227E-02 0.51134766E+00
+ 0.45821895E+00 -0.92191004E-02 0.51130619E+00
+ 0.45947214E+00 -0.91462580E-02 0.51126575E+00
+ 0.46072534E+00 -0.90731180E-02 0.51122631E+00
+ 0.46197854E+00 -0.89997027E-02 0.51118785E+00
+ 0.46323174E+00 -0.89260343E-02 0.51115034E+00
+ 0.46448493E+00 -0.88521348E-02 0.51111376E+00
+ 0.46573813E+00 -0.87780260E-02 0.51107808E+00
+ 0.46699133E+00 -0.87037297E-02 0.51104326E+00
+ 0.46824452E+00 -0.86292673E-02 0.51100925E+00
+ 0.46949772E+00 -0.85546603E-02 0.51097602E+00
+ 0.47075092E+00 -0.84799298E-02 0.51094353E+00
+ 0.47200411E+00 -0.84050971E-02 0.51091171E+00
+ 0.47325731E+00 -0.83301832E-02 0.51088052E+00
+ 0.47451051E+00 -0.82552087E-02 0.51084991E+00
+ 0.47576371E+00 -0.81801946E-02 0.51081981E+00
+ 0.47701690E+00 -0.81051615E-02 0.51079017E+00
+ 0.47827010E+00 -0.80301299E-02 0.51076091E+00
+ 0.47952330E+00 -0.79551203E-02 0.51073198E+00
+ 0.48077649E+00 -0.78801529E-02 0.51070331E+00
+ 0.48202969E+00 -0.78052481E-02 0.51067482E+00
+ 0.48328289E+00 -0.77304260E-02 0.51064643E+00
+ 0.48453608E+00 -0.76557068E-02 0.51061809E+00
+ 0.48578928E+00 -0.75811104E-02 0.51058969E+00
+ 0.48704248E+00 -0.75066569E-02 0.51056118E+00
+ 0.48829568E+00 -0.74323661E-02 0.51053245E+00
+ 0.48954887E+00 -0.73582579E-02 0.51050344E+00
+ 0.49080207E+00 -0.72843519E-02 0.51047405E+00
+ 0.49205527E+00 -0.72106680E-02 0.51044420E+00
+ 0.49330846E+00 -0.71372258E-02 0.51041381E+00
+ 0.49456166E+00 -0.70640449E-02 0.51038277E+00
+ 0.49581486E+00 -0.69911449E-02 0.51035101E+00
+ 0.49706805E+00 -0.69185452E-02 0.51031844E+00
+ 0.49832125E+00 -0.68462654E-02 0.51028495E+00
+ 0.49957445E+00 -0.67743248E-02 0.51025046E+00
+ 0.50082765E+00 -0.67027428E-02 0.51021488E+00
+ 0.50208084E+00 -0.66315387E-02 0.51017810E+00
+ 0.50333404E+00 -0.65607317E-02 0.51014005E+00
+ 0.50458724E+00 -0.64903411E-02 0.51010063E+00
+ 0.50584043E+00 -0.64203860E-02 0.51005973E+00
+ 0.50709363E+00 -0.63508855E-02 0.51001728E+00
+ 0.50834683E+00 -0.62818586E-02 0.50997317E+00
+ 0.50960002E+00 -0.62133243E-02 0.50992731E+00
+ 0.51085322E+00 -0.61453014E-02 0.50987962E+00
+ 0.51210642E+00 -0.60778088E-02 0.50983000E+00
+ 0.51335962E+00 -0.60108653E-02 0.50977835E+00
+ 0.51461281E+00 -0.59444894E-02 0.50972460E+00
+ 0.51586601E+00 -0.58786999E-02 0.50966865E+00
+ 0.51711921E+00 -0.58135151E-02 0.50961041E+00
+ 0.51837240E+00 -0.57489535E-02 0.50954980E+00
+ 0.51962560E+00 -0.56850334E-02 0.50948673E+00
+ 0.52087880E+00 -0.56217730E-02 0.50942112E+00
+ 0.52213199E+00 -0.55591902E-02 0.50935290E+00
+ 0.52338519E+00 -0.54973031E-02 0.50928197E+00
+ 0.52463839E+00 -0.54361295E-02 0.50920826E+00
+ 0.52589159E+00 -0.53756871E-02 0.50913170E+00
+ 0.52714478E+00 -0.53159935E-02 0.50905221E+00
+ 0.52839798E+00 -0.52570659E-02 0.50896973E+00
+ 0.52965118E+00 -0.51989217E-02 0.50888417E+00
+ 0.53090437E+00 -0.51415780E-02 0.50879548E+00
+ 0.53215757E+00 -0.50850516E-02 0.50870359E+00
+ 0.53341077E+00 -0.50293593E-02 0.50860843E+00
+ 0.53466396E+00 -0.49745176E-02 0.50850996E+00
+ 0.53591716E+00 -0.49205429E-02 0.50840811E+00
+ 0.53717036E+00 -0.48674513E-02 0.50830283E+00
+ 0.53842356E+00 -0.48152588E-02 0.50819407E+00
+ 0.53967675E+00 -0.47639811E-02 0.50808178E+00
+ 0.54092995E+00 -0.47136336E-02 0.50796592E+00
+ 0.54218315E+00 -0.46642318E-02 0.50784644E+00
+ 0.54343634E+00 -0.46157905E-02 0.50772332E+00
+ 0.54468954E+00 -0.45683247E-02 0.50759650E+00
+ 0.54594274E+00 -0.45218489E-02 0.50746597E+00
+ 0.54719593E+00 -0.44763772E-02 0.50733169E+00
+ 0.54844913E+00 -0.44319239E-02 0.50719364E+00
+ 0.54970233E+00 -0.43885026E-02 0.50705179E+00
+ 0.55095553E+00 -0.43461269E-02 0.50690613E+00
+ 0.55220872E+00 -0.43048099E-02 0.50675665E+00
+ 0.55346192E+00 -0.42645645E-02 0.50660333E+00
+ 0.55471512E+00 -0.42254034E-02 0.50644617E+00
+ 0.55596831E+00 -0.41873390E-02 0.50628516E+00
+ 0.55722151E+00 -0.41503833E-02 0.50612030E+00
+ 0.55847471E+00 -0.41145480E-02 0.50595160E+00
+ 0.55972790E+00 -0.40798446E-02 0.50577906E+00
+ 0.56098110E+00 -0.40462842E-02 0.50560269E+00
+ 0.56223430E+00 -0.40138776E-02 0.50542251E+00
+ 0.56348750E+00 -0.39826353E-02 0.50523854E+00
+ 0.56474069E+00 -0.39525675E-02 0.50505079E+00
+ 0.56599389E+00 -0.39236842E-02 0.50485930E+00
+ 0.56724709E+00 -0.38959948E-02 0.50466409E+00
+ 0.56850028E+00 -0.38695086E-02 0.50446519E+00
+ 0.56975348E+00 -0.38442346E-02 0.50426264E+00
+ 0.57100668E+00 -0.38201813E-02 0.50405649E+00
+ 0.57225987E+00 -0.37973570E-02 0.50384676E+00
+ 0.57351307E+00 -0.37757697E-02 0.50363351E+00
+ 0.57476627E+00 -0.37554271E-02 0.50341680E+00
+ 0.57601947E+00 -0.37363365E-02 0.50319666E+00
+ 0.57727266E+00 -0.37185049E-02 0.50297316E+00
+ 0.57852586E+00 -0.37019391E-02 0.50274636E+00
+ 0.57977906E+00 -0.36866455E-02 0.50251633E+00
+ 0.58103225E+00 -0.36726303E-02 0.50228312E+00
+ 0.58228545E+00 -0.36598991E-02 0.50204681E+00
+ 0.58353865E+00 -0.36484577E-02 0.50180747E+00
+ 0.58479184E+00 -0.36383112E-02 0.50156518E+00
+ 0.58604504E+00 -0.36294646E-02 0.50132001E+00
+ 0.58729824E+00 -0.36219226E-02 0.50107205E+00
+ 0.58855144E+00 -0.36156896E-02 0.50082138E+00
+ 0.58980463E+00 -0.36107697E-02 0.50056809E+00
+ 0.59105783E+00 -0.36071668E-02 0.50031227E+00
+ 0.59231101E+00 -0.36048846E-02 0.50005400E+00
+ 0.59356419E+00 -0.36042957E-02 0.50280014E+00
+ 0.59481736E+00 -0.36050124E-02 0.50553951E+00
+ 0.59607054E+00 -0.36070375E-02 0.50827204E+00
+ 0.59732372E+00 -0.36103736E-02 0.51099767E+00
+ 0.59857690E+00 -0.36150231E-02 0.51371634E+00
+ 0.59983008E+00 -0.36209883E-02 0.51642799E+00
+ 0.60108326E+00 -0.36282712E-02 0.51913257E+00
+ 0.60233643E+00 -0.36368739E-02 0.52183000E+00
+ 0.60358961E+00 -0.36467982E-02 0.52452025E+00
+ 0.60484279E+00 -0.36580458E-02 0.52720326E+00
+ 0.60609597E+00 -0.36706184E-02 0.52987897E+00
+ 0.60734915E+00 -0.36845174E-02 0.53254733E+00
+ 0.60860232E+00 -0.36997443E-02 0.53520831E+00
+ 0.60985550E+00 -0.37163005E-02 0.53786184E+00
+ 0.61110868E+00 -0.37341871E-02 0.54050788E+00
+ 0.61236186E+00 -0.37534053E-02 0.54314639E+00
+ 0.61361504E+00 -0.37739564E-02 0.54577734E+00
+ 0.61486822E+00 -0.37958412E-02 0.54840067E+00
+ 0.61612139E+00 -0.38190610E-02 0.55101636E+00
+ 0.61737457E+00 -0.38436167E-02 0.55362436E+00
+ 0.61862775E+00 -0.38695091E-02 0.55622464E+00
+ 0.61988093E+00 -0.38967393E-02 0.55881717E+00
+ 0.62113411E+00 -0.39253081E-02 0.56140191E+00
+ 0.62238728E+00 -0.39552165E-02 0.56397884E+00
+ 0.62364046E+00 -0.39864654E-02 0.56654793E+00
+ 0.62489364E+00 -0.40190555E-02 0.56910915E+00
+ 0.62614682E+00 -0.40529879E-02 0.57166247E+00
+ 0.62740000E+00 -0.40882635E-02 0.57420789E+00
+ 0.62865318E+00 -0.41248831E-02 0.57674536E+00
+ 0.62990635E+00 -0.41628478E-02 0.57927487E+00
+ 0.63115953E+00 -0.42021585E-02 0.58179641E+00
+ 0.63241271E+00 -0.42428163E-02 0.58430996E+00
+ 0.63366589E+00 -0.42848221E-02 0.58681549E+00
+ 0.63491907E+00 -0.43281771E-02 0.58931300E+00
+ 0.63617224E+00 -0.43728823E-02 0.59180247E+00
+ 0.63742542E+00 -0.44189391E-02 0.59428389E+00
+ 0.63867860E+00 -0.44663485E-02 0.59675724E+00
+ 0.63993178E+00 -0.45151119E-02 0.59922253E+00
+ 0.64118496E+00 -0.45652306E-02 0.60167973E+00
+ 0.64243814E+00 -0.46167059E-02 0.60412885E+00
+ 0.64369131E+00 -0.46695392E-02 0.60656986E+00
+ 0.64494449E+00 -0.47237321E-02 0.60900278E+00
+ 0.64619767E+00 -0.47792860E-02 0.61142759E+00
+ 0.64745085E+00 -0.48362026E-02 0.61384428E+00
+ 0.64870403E+00 -0.48944833E-02 0.61625286E+00
+ 0.64995721E+00 -0.49541300E-02 0.61865332E+00
+ 0.65121038E+00 -0.50151444E-02 0.62104565E+00
+ 0.65246356E+00 -0.50775281E-02 0.62342985E+00
+ 0.65371674E+00 -0.51412830E-02 0.62580593E+00
+ 0.65496992E+00 -0.52064110E-02 0.62817387E+00
+ 0.65622310E+00 -0.52729138E-02 0.63053368E+00
+ 0.65747627E+00 -0.53407935E-02 0.63288535E+00
+ 0.65872945E+00 -0.54100520E-02 0.63522888E+00
+ 0.65998263E+00 -0.54806911E-02 0.63756427E+00
+ 0.66123581E+00 -0.55527130E-02 0.63989152E+00
+ 0.66248899E+00 -0.56261195E-02 0.64221063E+00
+ 0.66374217E+00 -0.57009127E-02 0.64452158E+00
+ 0.66499534E+00 -0.57770946E-02 0.64682438E+00
+ 0.66624852E+00 -0.58546671E-02 0.64911903E+00
+ 0.66750170E+00 -0.59336322E-02 0.65140552E+00
+ 0.66875488E+00 -0.60139920E-02 0.65368384E+00
+ 0.67000806E+00 -0.60957482E-02 0.65595400E+00
+ 0.67126123E+00 -0.61789029E-02 0.65821597E+00
+ 0.67251441E+00 -0.62634578E-02 0.66046976E+00
+ 0.67376759E+00 -0.63494149E-02 0.66271536E+00
+ 0.67502077E+00 -0.64367757E-02 0.66495275E+00
+ 0.67627395E+00 -0.65255421E-02 0.66718194E+00
+ 0.67752713E+00 -0.66157156E-02 0.66940290E+00
+ 0.67878030E+00 -0.67072978E-02 0.67161562E+00
+ 0.68003348E+00 -0.68002900E-02 0.67382009E+00
+ 0.68128666E+00 -0.68946937E-02 0.67601630E+00
+ 0.68253984E+00 -0.69905101E-02 0.67820422E+00
+ 0.68379302E+00 -0.70877403E-02 0.68038384E+00
+ 0.68504619E+00 -0.71863852E-02 0.68255514E+00
+ 0.68629937E+00 -0.72864458E-02 0.68471810E+00
+ 0.68755255E+00 -0.73879227E-02 0.68687270E+00
+ 0.68880573E+00 -0.74908165E-02 0.68901890E+00
+ 0.69005891E+00 -0.75951276E-02 0.69115669E+00
+ 0.69131209E+00 -0.77008563E-02 0.69328604E+00
+ 0.69256526E+00 -0.78080025E-02 0.69540692E+00
+ 0.69381844E+00 -0.79165661E-02 0.69751929E+00
+ 0.69507162E+00 -0.80265468E-02 0.69962312E+00
+ 0.69632480E+00 -0.81379440E-02 0.70171838E+00
+ 0.69757798E+00 -0.82507570E-02 0.70380503E+00
+ 0.69883116E+00 -0.83649848E-02 0.70588304E+00
+ 0.70008433E+00 -0.84806262E-02 0.70795235E+00
+ 0.70133751E+00 -0.85976797E-02 0.71001294E+00
+ 0.70259069E+00 -0.87161436E-02 0.71206475E+00
+ 0.70384387E+00 -0.88360159E-02 0.71410774E+00
+ 0.70509705E+00 -0.89572945E-02 0.71614187E+00
+ 0.70635022E+00 -0.90799769E-02 0.71816708E+00
+ 0.70760340E+00 -0.92040602E-02 0.72018332E+00
+ 0.70885658E+00 -0.93295415E-02 0.72219053E+00
+ 0.71010976E+00 -0.94564175E-02 0.72418867E+00
+ 0.71136294E+00 -0.95846844E-02 0.72617768E+00
+ 0.71261612E+00 -0.97143384E-02 0.72815750E+00
+ 0.71386929E+00 -0.98453752E-02 0.73012807E+00
+ 0.71512247E+00 -0.99777903E-02 0.73208933E+00
+ 0.71637565E+00 -0.10111579E-01 0.73404121E+00
+ 0.71762883E+00 -0.10246736E-01 0.73598366E+00
+ 0.71888201E+00 -0.10383255E-01 0.73791660E+00
+ 0.72013518E+00 -0.10521132E-01 0.73983998E+00
+ 0.72138836E+00 -0.10660359E-01 0.74175371E+00
+ 0.72264154E+00 -0.10800931E-01 0.74365775E+00
+ 0.72389472E+00 -0.10942840E-01 0.74555200E+00
+ 0.72514790E+00 -0.11086079E-01 0.74743641E+00
+ 0.72640108E+00 -0.11230642E-01 0.74931090E+00
+ 0.72765425E+00 -0.11376519E-01 0.75117540E+00
+ 0.72890743E+00 -0.11523703E-01 0.75302984E+00
+ 0.73016061E+00 -0.11672185E-01 0.75487414E+00
+ 0.73141379E+00 -0.11821957E-01 0.75670823E+00
+ 0.73266697E+00 -0.11973008E-01 0.75853203E+00
+ 0.73392014E+00 -0.12125331E-01 0.76034547E+00
+ 0.73517332E+00 -0.12278914E-01 0.76214848E+00
+ 0.73642650E+00 -0.12433748E-01 0.76394098E+00
+ 0.73767968E+00 -0.12589822E-01 0.76572289E+00
+ 0.73893286E+00 -0.12747125E-01 0.76749415E+00
+ 0.74018604E+00 -0.12905646E-01 0.76925467E+00
+ 0.74143921E+00 -0.13065373E-01 0.77100439E+00
+ 0.74269239E+00 -0.13226294E-01 0.77274322E+00
+ 0.74394557E+00 -0.13388398E-01 0.77447111E+00
+ 0.74519875E+00 -0.13551672E-01 0.77618797E+00
+ 0.74645193E+00 -0.13716103E-01 0.77789374E+00
+ 0.74770510E+00 -0.13881677E-01 0.77958834E+00
+ 0.74895828E+00 -0.14048382E-01 0.78127172E+00
+ 0.75021146E+00 -0.14216203E-01 0.78294380E+00
+ 0.75146464E+00 -0.14385127E-01 0.78460451E+00
+ 0.75271782E+00 -0.14555140E-01 0.78625380E+00
+ 0.75397100E+00 -0.14726227E-01 0.78789159E+00
+ 0.75522417E+00 -0.14898372E-01 0.78951784E+00
+ 0.75647735E+00 -0.15071562E-01 0.79113248E+00
+ 0.75773053E+00 -0.15245780E-01 0.79273546E+00
+ 0.75898371E+00 -0.15421011E-01 0.79432671E+00
+ 0.76023689E+00 -0.15597240E-01 0.79590619E+00
+ 0.76149007E+00 -0.15774449E-01 0.79747386E+00
+ 0.76274324E+00 -0.15952624E-01 0.79902965E+00
+ 0.76399642E+00 -0.16131748E-01 0.80057353E+00
+ 0.76524960E+00 -0.16311803E-01 0.80210546E+00
+ 0.76650278E+00 -0.16492773E-01 0.80362539E+00
+ 0.76775596E+00 -0.16674641E-01 0.80513328E+00
+ 0.76900913E+00 -0.16857391E-01 0.80662911E+00
+ 0.77026231E+00 -0.17041004E-01 0.80811285E+00
+ 0.77151549E+00 -0.17225462E-01 0.80958445E+00
+ 0.77276867E+00 -0.17410750E-01 0.81104391E+00
+ 0.77402185E+00 -0.17596848E-01 0.81249119E+00
+ 0.77527503E+00 -0.17783739E-01 0.81392628E+00
+ 0.77652820E+00 -0.17971405E-01 0.81534916E+00
+ 0.77778138E+00 -0.18159828E-01 0.81675983E+00
+ 0.77903456E+00 -0.18348990E-01 0.81815826E+00
+ 0.78028774E+00 -0.18538873E-01 0.81954446E+00
+ 0.78154092E+00 -0.18729458E-01 0.82091842E+00
+ 0.78279409E+00 -0.18920727E-01 0.82228014E+00
+ 0.78404727E+00 -0.19112663E-01 0.82362963E+00
+ 0.78530045E+00 -0.19305246E-01 0.82496690E+00
+ 0.78655363E+00 -0.19498458E-01 0.82629195E+00
+ 0.78780681E+00 -0.19692281E-01 0.82760480E+00
+ 0.78905999E+00 -0.19886697E-01 0.82890547E+00
+ 0.79031316E+00 -0.20081687E-01 0.83019398E+00
+ 0.79156634E+00 -0.20277233E-01 0.83147035E+00
+ 0.79281952E+00 -0.20473318E-01 0.83273461E+00
+ 0.79407270E+00 -0.20669922E-01 0.83398679E+00
+ 0.79532588E+00 -0.20867029E-01 0.83522693E+00
+ 0.79657905E+00 -0.21064619E-01 0.83645506E+00
+ 0.79783223E+00 -0.21262676E-01 0.83767123E+00
+ 0.79908541E+00 -0.21461180E-01 0.83887548E+00
+ 0.80033859E+00 -0.21660116E-01 0.84006785E+00
+ 0.80159177E+00 -0.21859465E-01 0.84124840E+00
+ 0.80284495E+00 -0.22059209E-01 0.84241718E+00
+ 0.80409812E+00 -0.22259333E-01 0.84357424E+00
+ 0.80535130E+00 -0.22459818E-01 0.84471965E+00
+ 0.80660448E+00 -0.22660647E-01 0.84585347E+00
+ 0.80785766E+00 -0.22861805E-01 0.84697576E+00
+ 0.80911084E+00 -0.23063274E-01 0.84808659E+00
+ 0.81036401E+00 -0.23265038E-01 0.84918603E+00
+ 0.81161719E+00 -0.23467082E-01 0.85027415E+00
+ 0.81287037E+00 -0.23669388E-01 0.85135103E+00
+ 0.81412355E+00 -0.23871942E-01 0.85241675E+00
+ 0.81537673E+00 -0.24074727E-01 0.85347138E+00
+ 0.81662991E+00 -0.24277729E-01 0.85451502E+00
+ 0.81788308E+00 -0.24480933E-01 0.85554774E+00
+ 0.81913626E+00 -0.24684323E-01 0.85656962E+00
+ 0.82038944E+00 -0.24887885E-01 0.85758077E+00
+ 0.82164262E+00 -0.25091605E-01 0.85858128E+00
+ 0.82289580E+00 -0.25295468E-01 0.85957122E+00
+ 0.82414898E+00 -0.25499461E-01 0.86055070E+00
+ 0.82540215E+00 -0.25703570E-01 0.86151982E+00
+ 0.82665533E+00 -0.25907782E-01 0.86247867E+00
+ 0.82790851E+00 -0.26112083E-01 0.86342736E+00
+ 0.82916169E+00 -0.26316461E-01 0.86436598E+00
+ 0.83041487E+00 -0.26520903E-01 0.86529463E+00
+ 0.83166804E+00 -0.26725397E-01 0.86621342E+00
+ 0.83292122E+00 -0.26929930E-01 0.86712246E+00
+ 0.83417440E+00 -0.27134491E-01 0.86802185E+00
+ 0.83542758E+00 -0.27339068E-01 0.86891170E+00
+ 0.83668076E+00 -0.27543650E-01 0.86979211E+00
+ 0.83793394E+00 -0.27748225E-01 0.87066320E+00
+ 0.83918711E+00 -0.27952782E-01 0.87152507E+00
+ 0.84044029E+00 -0.28157312E-01 0.87237784E+00
+ 0.84169347E+00 -0.28361802E-01 0.87322162E+00
+ 0.84294665E+00 -0.28566243E-01 0.87405651E+00
+ 0.84419983E+00 -0.28770626E-01 0.87488263E+00
+ 0.84545300E+00 -0.28974939E-01 0.87570010E+00
+ 0.84670618E+00 -0.29179173E-01 0.87650902E+00
+ 0.84795936E+00 -0.29383318E-01 0.87730950E+00
+ 0.84921254E+00 -0.29587366E-01 0.87810168E+00
+ 0.85046572E+00 -0.29791307E-01 0.87888564E+00
+ 0.85171890E+00 -0.29995131E-01 0.87966152E+00
+ 0.85297207E+00 -0.30198830E-01 0.88042941E+00
+ 0.85422525E+00 -0.30402396E-01 0.88118945E+00
+ 0.85547843E+00 -0.30605818E-01 0.88194173E+00
+ 0.85673161E+00 -0.30809089E-01 0.88268637E+00
+ 0.85798479E+00 -0.31012200E-01 0.88342349E+00
+ 0.85923796E+00 -0.31215142E-01 0.88415319E+00
+ 0.86049114E+00 -0.31417907E-01 0.88487559E+00
+ 0.86174432E+00 -0.31620487E-01 0.88559080E+00
+ 0.86299750E+00 -0.31822872E-01 0.88629893E+00
+ 0.86425068E+00 -0.32025056E-01 0.88700009E+00
+ 0.86550386E+00 -0.32227028E-01 0.88769439E+00
+ 0.86675703E+00 -0.32428782E-01 0.88838194E+00
+ 0.86801021E+00 -0.32630307E-01 0.88906285E+00
+ 0.86926339E+00 -0.32831596E-01 0.88973721E+00
+ 0.87051657E+00 -0.33032640E-01 0.89040515E+00
+ 0.87176975E+00 -0.33233431E-01 0.89106676E+00
+ 0.87302293E+00 -0.33433958E-01 0.89172215E+00
+ 0.87427610E+00 -0.33634214E-01 0.89237142E+00
+ 0.87552928E+00 -0.33834190E-01 0.89301468E+00
+ 0.87678246E+00 -0.34033875E-01 0.89365201E+00
+ 0.87803564E+00 -0.34233261E-01 0.89428353E+00
+ 0.87928882E+00 -0.34432337E-01 0.89490934E+00
+ 0.88054199E+00 -0.34631094E-01 0.89552952E+00
+ 0.88179517E+00 -0.34829521E-01 0.89614417E+00
+ 0.88304835E+00 -0.35027609E-01 0.89675339E+00
+ 0.88430153E+00 -0.35225346E-01 0.89735727E+00
+ 0.88555471E+00 -0.35422722E-01 0.89795590E+00
+ 0.88680789E+00 -0.35619724E-01 0.89854937E+00
+ 0.88806106E+00 -0.35816342E-01 0.89913777E+00
+ 0.88931424E+00 -0.36012564E-01 0.89972118E+00
+ 0.89056742E+00 -0.36208377E-01 0.90029969E+00
+ 0.89182060E+00 -0.36403768E-01 0.90087337E+00
+ 0.89307378E+00 -0.36598725E-01 0.90144231E+00
+ 0.89432695E+00 -0.36793234E-01 0.90200660E+00
+ 0.89558013E+00 -0.36987280E-01 0.90256629E+00
+ 0.89683331E+00 -0.37180850E-01 0.90312147E+00
+ 0.89808649E+00 -0.37373930E-01 0.90367222E+00
+ 0.89933967E+00 -0.37566502E-01 0.90421859E+00
+ 0.90059285E+00 -0.37758553E-01 0.90476066E+00
+ 0.90184602E+00 -0.37950066E-01 0.90529850E+00
+ 0.90309920E+00 -0.38141023E-01 0.90583216E+00
+ 0.90435238E+00 -0.38331409E-01 0.90636171E+00
+ 0.90560556E+00 -0.38521205E-01 0.90688720E+00
+ 0.90685874E+00 -0.38710392E-01 0.90740870E+00
+ 0.90811191E+00 -0.38898953E-01 0.90792626E+00
+ 0.90936509E+00 -0.39086868E-01 0.90843992E+00
+ 0.91061827E+00 -0.39274117E-01 0.90894974E+00
+ 0.91187145E+00 -0.39460680E-01 0.90945576E+00
+ 0.91312463E+00 -0.39646536E-01 0.90995803E+00
+ 0.91437781E+00 -0.39831664E-01 0.91045658E+00
+ 0.91563098E+00 -0.40016041E-01 0.91095145E+00
+ 0.91688416E+00 -0.40199645E-01 0.91144268E+00
+ 0.91813734E+00 -0.40382453E-01 0.91193030E+00
+ 0.91939052E+00 -0.40564441E-01 0.91241434E+00
+ 0.92064370E+00 -0.40745585E-01 0.91289482E+00
+ 0.92189687E+00 -0.40925860E-01 0.91337177E+00
+ 0.92315005E+00 -0.41105241E-01 0.91384521E+00
+ 0.92440323E+00 -0.41283702E-01 0.91431515E+00
+ 0.92565641E+00 -0.41461217E-01 0.91478161E+00
+ 0.92690959E+00 -0.41637758E-01 0.91524459E+00
+ 0.92816277E+00 -0.41813299E-01 0.91570411E+00
+ 0.92941594E+00 -0.41987810E-01 0.91616017E+00
+ 0.93066912E+00 -0.42161265E-01 0.91661276E+00
+ 0.93192230E+00 -0.42333632E-01 0.91706189E+00
+ 0.93317548E+00 -0.42504884E-01 0.91750756E+00
+ 0.93442866E+00 -0.42674991E-01 0.91794974E+00
+ 0.93568184E+00 -0.42843920E-01 0.91838843E+00
+ 0.93693501E+00 -0.43011643E-01 0.91882361E+00
+ 0.93818819E+00 -0.43178127E-01 0.91925527E+00
+ 0.93944137E+00 -0.43343341E-01 0.91968337E+00
+ 0.94069455E+00 -0.43507253E-01 0.92010790E+00
+ 0.94194773E+00 -0.43669829E-01 0.92052881E+00
+ 0.94320090E+00 -0.43831038E-01 0.92094609E+00
+ 0.94445408E+00 -0.43990846E-01 0.92135969E+00
+ 0.94570726E+00 -0.44149219E-01 0.92176956E+00
+ 0.94696044E+00 -0.44306123E-01 0.92217568E+00
+ 0.94821362E+00 -0.44461525E-01 0.92257798E+00
+ 0.94946680E+00 -0.44615389E-01 0.92297643E+00
+ 0.95071997E+00 -0.44767682E-01 0.92337096E+00
+ 0.95197315E+00 -0.44918367E-01 0.92376151E+00
+ 0.95322633E+00 -0.45067411E-01 0.92414803E+00
+ 0.95447951E+00 -0.45214778E-01 0.92453046E+00
+ 0.95573269E+00 -0.45360432E-01 0.92490872E+00
+ 0.95698586E+00 -0.45504337E-01 0.92528274E+00
+ 0.95823904E+00 -0.45646459E-01 0.92565245E+00
+ 0.95949222E+00 -0.45786762E-01 0.92601777E+00
+ 0.96074540E+00 -0.45925210E-01 0.92637863E+00
+ 0.96199858E+00 -0.46061766E-01 0.92673494E+00
+ 0.96325176E+00 -0.46196396E-01 0.92708661E+00
+ 0.96450493E+00 -0.46329064E-01 0.92743356E+00
+ 0.96575811E+00 -0.46459734E-01 0.92777568E+00
+ 0.96701129E+00 -0.46588370E-01 0.92811290E+00
+ 0.96826447E+00 -0.46714938E-01 0.92844510E+00
+ 0.96951765E+00 -0.46839402E-01 0.92877220E+00
+ 0.97077082E+00 -0.46961728E-01 0.92909408E+00
+ 0.97202400E+00 -0.47081879E-01 0.92941064E+00
+ 0.97327718E+00 -0.47199823E-01 0.92972178E+00
+ 0.97453036E+00 -0.47315524E-01 0.93002737E+00
+ 0.97578354E+00 -0.47428949E-01 0.93032732E+00
+ 0.97703672E+00 -0.47540065E-01 0.93062149E+00
+ 0.97828989E+00 -0.47648837E-01 0.93090979E+00
+ 0.97954307E+00 -0.47755234E-01 0.93119207E+00
+ 0.98079625E+00 -0.47859223E-01 0.93146822E+00
+ 0.98204943E+00 -0.47960771E-01 0.93173811E+00
+ 0.98330261E+00 -0.48059849E-01 0.93200160E+00
+ 0.98455579E+00 -0.48156424E-01 0.93225857E+00
+ 0.98580896E+00 -0.48250467E-01 0.93250887E+00
+ 0.98706214E+00 -0.48341947E-01 0.93275236E+00
+ 0.98831532E+00 -0.48430837E-01 0.93298888E+00
+ 0.98956850E+00 -0.48517106E-01 0.93321828E+00
+ 0.99082168E+00 -0.48600727E-01 0.93344039E+00
+ 0.99207485E+00 -0.48681674E-01 0.93365503E+00
+ 0.99332803E+00 -0.48759919E-01 0.93386202E+00
+ 0.99458121E+00 -0.48835437E-01 0.93406114E+00
+ 0.99583439E+00 -0.48908202E-01 0.93425216E+00
+ 0.99708757E+00 -0.48978192E-01 0.93443483E+00
+ 0.99834075E+00 -0.49045382E-01 0.93460886E+00
+ 0.99959392E+00 -0.49109749E-01 0.93477391E+00
+ 0.10008471E+01 -0.49171272E-01 0.93492958E+00
+ 0.10021003E+01 -0.49229931E-01 0.93507541E+00
+ 0.10033535E+01 -0.49285704E-01 0.93521079E+00
+ 0.10046066E+01 -0.49338574E-01 0.93533501E+00
+ 0.10058598E+01 -0.49388522E-01 0.93544713E+00
+ 0.10071130E+01 -0.49435530E-01 0.93554590E+00
+ 0.10083662E+01 -0.49479583E-01 0.93562969E+00
+ 0.10096193E+01 -0.49520665E-01 0.93569621E+00
+ 0.10108725E+01 -0.49558762E-01 0.93574223E+00
+ 0.10121257E+01 -0.49593860E-01 0.93576302E+00
+ 0.10133789E+01 -0.49625948E-01 0.93575142E+00
+ 0.10146321E+01 -0.49655015E-01 0.93569615E+00
+ 0.10158852E+01 -0.49681049E-01 0.93557850E+00
+ 0.10171384E+01 -0.49704042E-01 0.93536567E+00
+ 0.10183916E+01 -0.49723986E-01 0.93499567E+00
+ 0.10196448E+01 -0.49740873E-01 0.93433967E+00
+ 0.10208980E+01 -0.49754698E-01 0.93309275E+00
+ 0.10221511E+01 -0.49765457E-01 0.93038400E+00
+ 0.10234043E+01 -0.49773144E-01 0.92285769E+00
+ 0.10246575E+01 -0.49777762E-01 0.88801544E+00
+ 0.10259104E+01 -0.49779389E-01 0.15137440E+00
+ 0.10271633E+01 -0.49768870E-01 0.49999987E+00
+ 0.10284162E+01 -0.49756119E-01 0.49999983E+00
+ 0.10296690E+01 -0.49741144E-01 0.49999978E+00
+ 0.10309219E+01 -0.49723955E-01 0.49999974E+00
+ 0.10321748E+01 -0.49704560E-01 0.49999970E+00
+ 0.10334277E+01 -0.49682970E-01 0.49999965E+00
+ 0.10346806E+01 -0.49659195E-01 0.49999961E+00
+ 0.10359335E+01 -0.49633247E-01 0.49999956E+00
+ 0.10371864E+01 -0.49605137E-01 0.49999952E+00
+ 0.10384393E+01 -0.49574879E-01 0.49999948E+00
+ 0.10396921E+01 -0.49542485E-01 0.49999943E+00
+ 0.10409450E+01 -0.49507969E-01 0.49999939E+00
+ 0.10421979E+01 -0.49471346E-01 0.49999934E+00
+ 0.10434508E+01 -0.49432630E-01 0.49999930E+00
+ 0.10447037E+01 -0.49391837E-01 0.49999926E+00
+ 0.10459566E+01 -0.49348982E-01 0.49999921E+00
+ 0.10472095E+01 -0.49304083E-01 0.49999917E+00
+ 0.10484624E+01 -0.49257157E-01 0.49999912E+00
+ 0.10497152E+01 -0.49208220E-01 0.49999908E+00
+ 0.10509681E+01 -0.49157291E-01 0.49999904E+00
+ 0.10522210E+01 -0.49104387E-01 0.49999899E+00
+ 0.10534739E+01 -0.49049529E-01 0.49999895E+00
+ 0.10547268E+01 -0.48992735E-01 0.49999891E+00
+ 0.10559797E+01 -0.48934025E-01 0.49999886E+00
+ 0.10572326E+01 -0.48873419E-01 0.49999882E+00
+ 0.10584855E+01 -0.48810937E-01 0.49999878E+00
+ 0.10597384E+01 -0.48746600E-01 0.49999874E+00
+ 0.10609912E+01 -0.48680429E-01 0.49999869E+00
+ 0.10622441E+01 -0.48612445E-01 0.49999865E+00
+ 0.10634970E+01 -0.48542670E-01 0.49999861E+00
+ 0.10647499E+01 -0.48471126E-01 0.49999857E+00
+ 0.10660028E+01 -0.48397836E-01 0.49999852E+00
+ 0.10672557E+01 -0.48322820E-01 0.49999848E+00
+ 0.10685086E+01 -0.48246102E-01 0.49999844E+00
+ 0.10697615E+01 -0.48167705E-01 0.49999840E+00
+ 0.10710143E+01 -0.48087651E-01 0.49999836E+00
+ 0.10722672E+01 -0.48005964E-01 0.49999832E+00
+ 0.10735201E+01 -0.47922667E-01 0.49999827E+00
+ 0.10747730E+01 -0.47837782E-01 0.49999823E+00
+ 0.10760259E+01 -0.47751333E-01 0.49999819E+00
+ 0.10772788E+01 -0.47663343E-01 0.49999815E+00
+ 0.10785317E+01 -0.47573837E-01 0.49999811E+00
+ 0.10797846E+01 -0.47482836E-01 0.49999807E+00
+ 0.10810374E+01 -0.47390365E-01 0.49999803E+00
+ 0.10822903E+01 -0.47296446E-01 0.49999799E+00
+ 0.10835432E+01 -0.47201103E-01 0.49999795E+00
+ 0.10847961E+01 -0.47104359E-01 0.49999791E+00
+ 0.10860490E+01 -0.47006238E-01 0.49999787E+00
+ 0.10873019E+01 -0.46906761E-01 0.49999783E+00
+ 0.10885548E+01 -0.46805952E-01 0.49999780E+00
+ 0.10898077E+01 -0.46703833E-01 0.49999776E+00
+ 0.10910605E+01 -0.46600426E-01 0.49999772E+00
+ 0.10923134E+01 -0.46495755E-01 0.49999768E+00
+ 0.10935663E+01 -0.46389840E-01 0.49999764E+00
+ 0.10948192E+01 -0.46282704E-01 0.49999760E+00
+ 0.10960721E+01 -0.46174368E-01 0.49999757E+00
+ 0.10973250E+01 -0.46064852E-01 0.49999753E+00
+ 0.10985779E+01 -0.45954179E-01 0.49999749E+00
+ 0.10998308E+01 -0.45842368E-01 0.49999746E+00
+ 0.11010837E+01 -0.45729439E-01 0.49999742E+00
+ 0.11023365E+01 -0.45615413E-01 0.49999739E+00
+ 0.11035894E+01 -0.45500308E-01 0.49999735E+00
+ 0.11048423E+01 -0.45384144E-01 0.49999731E+00
+ 0.11060952E+01 -0.45266940E-01 0.49999728E+00
+ 0.11073481E+01 -0.45148713E-01 0.49999724E+00
+ 0.11086010E+01 -0.45029481E-01 0.49999721E+00
+ 0.11098539E+01 -0.44909261E-01 0.49999718E+00
+ 0.11111068E+01 -0.44788071E-01 0.49999714E+00
+ 0.11123596E+01 -0.44665926E-01 0.49999711E+00
+ 0.11136125E+01 -0.44542842E-01 0.49999708E+00
+ 0.11148654E+01 -0.44418835E-01 0.49999704E+00
+ 0.11161183E+01 -0.44293920E-01 0.49999701E+00
+ 0.11173712E+01 -0.44168110E-01 0.49999698E+00
+ 0.11186241E+01 -0.44041419E-01 0.49999695E+00
+ 0.11198770E+01 -0.43913860E-01 0.49999692E+00
+ 0.11211299E+01 -0.43785446E-01 0.49999689E+00
+ 0.11223827E+01 -0.43656189E-01 0.49999686E+00
+ 0.11236356E+01 -0.43526100E-01 0.49999683E+00
+ 0.11248885E+01 -0.43395190E-01 0.49999680E+00
+ 0.11261414E+01 -0.43263469E-01 0.49999677E+00
+ 0.11273943E+01 -0.43130947E-01 0.49999674E+00
+ 0.11286472E+01 -0.42997632E-01 0.49999671E+00
+ 0.11299001E+01 -0.42863534E-01 0.49999668E+00
+ 0.11311530E+01 -0.42728658E-01 0.49999666E+00
+ 0.11324059E+01 -0.42593014E-01 0.49999663E+00
+ 0.11336587E+01 -0.42456606E-01 0.49999660E+00
+ 0.11349116E+01 -0.42319442E-01 0.49999658E+00
+ 0.11361645E+01 -0.42181526E-01 0.49999655E+00
+ 0.11374174E+01 -0.42042862E-01 0.49999653E+00
+ 0.11386703E+01 -0.41903455E-01 0.49999651E+00
+ 0.11399232E+01 -0.41763308E-01 0.49999648E+00
+ 0.11411761E+01 -0.41622424E-01 0.49999646E+00
+ 0.11424290E+01 -0.41480804E-01 0.49999644E+00
+ 0.11436818E+01 -0.41338450E-01 0.49999642E+00
+ 0.11449347E+01 -0.41195364E-01 0.49999639E+00
+ 0.11461876E+01 -0.41051544E-01 0.49999637E+00
+ 0.11474405E+01 -0.40906991E-01 0.49999635E+00
+ 0.11486934E+01 -0.40761703E-01 0.49999634E+00
+ 0.11499463E+01 -0.40615680E-01 0.49999632E+00
+ 0.11511992E+01 -0.40468918E-01 0.49999630E+00
+ 0.11524521E+01 -0.40321416E-01 0.49999628E+00
+ 0.11537049E+01 -0.40173169E-01 0.49999627E+00
+ 0.11549578E+01 -0.40024174E-01 0.49999625E+00
+ 0.11562107E+01 -0.39874426E-01 0.49999624E+00
+ 0.11574636E+01 -0.39723920E-01 0.49999622E+00
+ 0.11587165E+01 -0.39572651E-01 0.49999621E+00
+ 0.11599694E+01 -0.39420613E-01 0.49999620E+00
+ 0.11612223E+01 -0.39267799E-01 0.49999618E+00
+ 0.11624752E+01 -0.39114202E-01 0.49999617E+00
+ 0.11637281E+01 -0.38959814E-01 0.49999616E+00
+ 0.11649809E+01 -0.38804629E-01 0.49999615E+00
+ 0.11662338E+01 -0.38648636E-01 0.49999614E+00
+ 0.11674867E+01 -0.38491827E-01 0.49999614E+00
+ 0.11687396E+01 -0.38334194E-01 0.49999613E+00
+ 0.11699925E+01 -0.38175726E-01 0.49999612E+00
+ 0.11712454E+01 -0.38016413E-01 0.49999611E+00
+ 0.11724983E+01 -0.37856245E-01 0.49999611E+00
+ 0.11737512E+01 -0.37695211E-01 0.49999610E+00
+ 0.11750040E+01 -0.37533300E-01 0.49999609E+00
+ 0.11762569E+01 -0.37370501E-01 0.49999609E+00
+ 0.11775098E+01 -0.37206803E-01 0.49999608E+00
+ 0.11787627E+01 -0.37042192E-01 0.49999607E+00
+ 0.11800156E+01 -0.36876657E-01 0.49999607E+00
+ 0.11812685E+01 -0.36710186E-01 0.49999606E+00
+ 0.11825214E+01 -0.36542766E-01 0.49999605E+00
+ 0.11837743E+01 -0.36374384E-01 0.49999604E+00
+ 0.11850271E+01 -0.36205028E-01 0.49999603E+00
+ 0.11862800E+01 -0.36034684E-01 0.49999602E+00
+ 0.11875329E+01 -0.35863339E-01 0.49999601E+00
+ 0.11887858E+01 -0.35690980E-01 0.49999599E+00
+ 0.11900387E+01 -0.35517593E-01 0.49999598E+00
+ 0.11912916E+01 -0.35343166E-01 0.49999596E+00
+ 0.11925445E+01 -0.35167685E-01 0.49999594E+00
+ 0.11937974E+01 -0.34991136E-01 0.49999592E+00
+ 0.11950502E+01 -0.34813506E-01 0.49999589E+00
+ 0.11963031E+01 -0.34634782E-01 0.49999586E+00
+ 0.11975560E+01 -0.34454951E-01 0.49999584E+00
+ 0.11988089E+01 -0.34273999E-01 0.49999581E+00
+ 0.12000618E+01 -0.34091914E-01 0.49999578E+00
+ 0.12013147E+01 -0.33908682E-01 0.49999574E+00
+ 0.12025676E+01 -0.33724292E-01 0.49999571E+00
+ 0.12038205E+01 -0.33538730E-01 0.49999567E+00
+ 0.12050734E+01 -0.33351984E-01 0.49999564E+00
+ 0.12063262E+01 -0.33164043E-01 0.49999560E+00
+ 0.12075791E+01 -0.32974894E-01 0.49999557E+00
+ 0.12088320E+01 -0.32784526E-01 0.49999553E+00
+ 0.12100849E+01 -0.32592928E-01 0.49999550E+00
+ 0.12113378E+01 -0.32400089E-01 0.49999546E+00
+ 0.12125907E+01 -0.32205999E-01 0.49999543E+00
+ 0.12138436E+01 -0.32010647E-01 0.49999539E+00
+ 0.12150965E+01 -0.31814024E-01 0.49999536E+00
+ 0.12163493E+01 -0.31616121E-01 0.49999533E+00
+ 0.12176022E+01 -0.31416929E-01 0.49999530E+00
+ 0.12188551E+01 -0.31216439E-01 0.49999527E+00
+ 0.12201080E+01 -0.31014644E-01 0.49999524E+00
+ 0.12213609E+01 -0.30811537E-01 0.49999521E+00
+ 0.12226138E+01 -0.30607110E-01 0.49999518E+00
+ 0.12238667E+01 -0.30401357E-01 0.49999516E+00
+ 0.12251196E+01 -0.30194274E-01 0.49999514E+00
+ 0.12263724E+01 -0.29985853E-01 0.49999511E+00
+ 0.12276253E+01 -0.29776093E-01 0.49999509E+00
+ 0.12288782E+01 -0.29564987E-01 0.49999507E+00
+ 0.12301311E+01 -0.29352534E-01 0.49999505E+00
+ 0.12313840E+01 -0.29138730E-01 0.49999504E+00
+ 0.12326369E+01 -0.28923575E-01 0.49999502E+00
+ 0.12338898E+01 -0.28707066E-01 0.49999501E+00
+ 0.12351427E+01 -0.28489204E-01 0.49999499E+00
+ 0.12363956E+01 -0.28269988E-01 0.49999498E+00
+ 0.12376484E+01 -0.28049420E-01 0.49999497E+00
+ 0.12389013E+01 -0.27827501E-01 0.49999496E+00
+ 0.12401542E+01 -0.27604235E-01 0.49999495E+00
+ 0.12414071E+01 -0.27379624E-01 0.49999494E+00
+ 0.12426600E+01 -0.27153673E-01 0.49999493E+00
+ 0.12439129E+01 -0.26926386E-01 0.49999492E+00
+ 0.12451658E+01 -0.26697770E-01 0.49999491E+00
+ 0.12464187E+01 -0.26467831E-01 0.49999491E+00
+ 0.12476715E+01 -0.26236576E-01 0.49999490E+00
+ 0.12489244E+01 -0.26004015E-01 0.49999490E+00
+ 0.12501773E+01 -0.25770155E-01 0.49999490E+00
+ 0.12514302E+01 -0.25535008E-01 0.49999489E+00
+ 0.12526831E+01 -0.25298583E-01 0.49999489E+00
+ 0.12539360E+01 -0.25060894E-01 0.49999489E+00
+ 0.12551889E+01 -0.24821951E-01 0.49999489E+00
+ 0.12564418E+01 -0.24581770E-01 0.49999489E+00
+ 0.12576946E+01 -0.24340365E-01 0.49999489E+00
+ 0.12589475E+01 -0.24097750E-01 0.49999489E+00
+ 0.12602004E+01 -0.23853942E-01 0.49999490E+00
+ 0.12614533E+01 -0.23608959E-01 0.49999490E+00
+ 0.12627062E+01 -0.23362817E-01 0.49999490E+00
+ 0.12639591E+01 -0.23115537E-01 0.49999491E+00
+ 0.12652120E+01 -0.22867138E-01 0.49999491E+00
+ 0.12664649E+01 -0.22617641E-01 0.49999492E+00
+ 0.12677178E+01 -0.22367067E-01 0.49999492E+00
+ 0.12689706E+01 -0.22115440E-01 0.49999493E+00
+ 0.12702235E+01 -0.21862781E-01 0.49999493E+00
+ 0.12714764E+01 -0.21609117E-01 0.49999494E+00
+ 0.12727293E+01 -0.21354472E-01 0.49999495E+00
+ 0.12739822E+01 -0.21098871E-01 0.49999496E+00
+ 0.12752351E+01 -0.20842343E-01 0.49999497E+00
+ 0.12764880E+01 -0.20584914E-01 0.49999497E+00
+ 0.12777409E+01 -0.20326614E-01 0.49999498E+00
+ 0.12789937E+01 -0.20067473E-01 0.49999499E+00
+ 0.12802466E+01 -0.19807519E-01 0.49999501E+00
+ 0.12814995E+01 -0.19546786E-01 0.49999502E+00
+ 0.12827524E+01 -0.19285304E-01 0.49999503E+00
+ 0.12840053E+01 -0.19023106E-01 0.49999504E+00
+ 0.12852582E+01 -0.18760227E-01 0.49999505E+00
+ 0.12865111E+01 -0.18496701E-01 0.49999507E+00
+ 0.12877640E+01 -0.18232563E-01 0.49999508E+00
+ 0.12890168E+01 -0.17967848E-01 0.49999509E+00
+ 0.12902697E+01 -0.17702594E-01 0.49999511E+00
+ 0.12915226E+01 -0.17436838E-01 0.49999512E+00
+ 0.12927755E+01 -0.17170618E-01 0.49999514E+00
+ 0.12940284E+01 -0.16903973E-01 0.49999515E+00
+ 0.12952813E+01 -0.16636944E-01 0.49999517E+00
+ 0.12965342E+01 -0.16369569E-01 0.49999519E+00
+ 0.12977871E+01 -0.16101889E-01 0.49999520E+00
+ 0.12990399E+01 -0.15833948E-01 0.49999522E+00
+ 0.13002928E+01 -0.15565786E-01 0.49999524E+00
+ 0.13015457E+01 -0.15297446E-01 0.49999526E+00
+ 0.13027986E+01 -0.15028972E-01 0.49999528E+00
+ 0.13040515E+01 -0.14760407E-01 0.49999530E+00
+ 0.13053044E+01 -0.14491797E-01 0.49999531E+00
+ 0.13065573E+01 -0.14223185E-01 0.49999533E+00
+ 0.13078102E+01 -0.13954618E-01 0.49999535E+00
+ 0.13090631E+01 -0.13686142E-01 0.49999538E+00
+ 0.13103159E+01 -0.13417802E-01 0.49999540E+00
+ 0.13115688E+01 -0.13149646E-01 0.49999542E+00
+ 0.13128217E+01 -0.12881721E-01 0.49999544E+00
+ 0.13140746E+01 -0.12614075E-01 0.49999546E+00
+ 0.13153275E+01 -0.12346756E-01 0.49999548E+00
+ 0.13165804E+01 -0.12079812E-01 0.49999551E+00
+ 0.13178333E+01 -0.11813292E-01 0.49999553E+00
+ 0.13190862E+01 -0.11547245E-01 0.49999555E+00
+ 0.13203390E+01 -0.11281720E-01 0.49999558E+00
+ 0.13215919E+01 -0.11016768E-01 0.49999560E+00
+ 0.13228448E+01 -0.10752437E-01 0.49999563E+00
+ 0.13240977E+01 -0.10488778E-01 0.49999565E+00
+ 0.13253506E+01 -0.10225841E-01 0.49999568E+00
+ 0.13266035E+01 -0.99636759E-02 0.49999570E+00
+ 0.13278564E+01 -0.97023343E-02 0.49999573E+00
+ 0.13291093E+01 -0.94418664E-02 0.49999576E+00
+ 0.13303621E+01 -0.91823230E-02 0.49999578E+00
+ 0.13316150E+01 -0.89237548E-02 0.49999581E+00
+ 0.13328679E+01 -0.86662128E-02 0.49999584E+00
+ 0.13341208E+01 -0.84097479E-02 0.49999587E+00
+ 0.13353737E+01 -0.81544109E-02 0.49999590E+00
+ 0.13366266E+01 -0.79002528E-02 0.49999592E+00
+ 0.13378795E+01 -0.76473245E-02 0.49999595E+00
+ 0.13391324E+01 -0.73956765E-02 0.49999598E+00
+ 0.13403853E+01 -0.71453598E-02 0.49999601E+00
+ 0.13416381E+01 -0.68964247E-02 0.49999604E+00
+ 0.13428910E+01 -0.66489218E-02 0.49999607E+00
+ 0.13441439E+01 -0.64029012E-02 0.49999610E+00
+ 0.13453968E+01 -0.61584131E-02 0.49999613E+00
+ 0.13466497E+01 -0.59155073E-02 0.49999617E+00
+ 0.13479026E+01 -0.56742335E-02 0.49999620E+00
+ 0.13491555E+01 -0.54346409E-02 0.49999623E+00
+ 0.13504084E+01 -0.51967788E-02 0.49999626E+00
+ 0.13516612E+01 -0.49606959E-02 0.49999629E+00
+ 0.13529141E+01 -0.47264407E-02 0.49999633E+00
+ 0.13541670E+01 -0.44940614E-02 0.49999636E+00
+ 0.13554199E+01 -0.42636057E-02 0.49999639E+00
+ 0.13566728E+01 -0.40351211E-02 0.49999643E+00
+ 0.13579257E+01 -0.38086545E-02 0.49999646E+00
+ 0.13591786E+01 -0.35842527E-02 0.49999650E+00
+ 0.13604315E+01 -0.33619616E-02 0.49999653E+00
+ 0.13616843E+01 -0.31418271E-02 0.49999656E+00
+ 0.13629372E+01 -0.29238942E-02 0.49999660E+00
+ 0.13641901E+01 -0.27082078E-02 0.49999664E+00
+ 0.13654430E+01 -0.24948120E-02 0.49999667E+00
+ 0.13666959E+01 -0.22837506E-02 0.49999671E+00
+ 0.13679488E+01 -0.20750665E-02 0.49999674E+00
+ 0.13692017E+01 -0.18688024E-02 0.49999678E+00
+ 0.13704546E+01 -0.16650003E-02 0.49999682E+00
+ 0.13717075E+01 -0.14637015E-02 0.49999685E+00
+ 0.13729603E+01 -0.12649468E-02 0.49999689E+00
+ 0.13742132E+01 -0.10687763E-02 0.49999693E+00
+ 0.13754661E+01 -0.87522949E-03 0.49999697E+00
+ 0.13767190E+01 -0.68434520E-03 0.49999700E+00
+ 0.13779719E+01 -0.49616159E-03 0.49999704E+00
+ 0.13792248E+01 -0.31071613E-03 0.49999708E+00
+ 0.13804777E+01 -0.12804558E-03 0.49999712E+00
+ 0.13817306E+01 0.51813986E-04 0.49999716E+00
+ 0.13829834E+01 0.22882724E-03 0.49999720E+00
+ 0.13842363E+01 0.40295959E-03 0.49999724E+00
+ 0.13854892E+01 0.57417716E-03 0.49999728E+00
+ 0.13867421E+01 0.74244687E-03 0.49999732E+00
+ 0.13879950E+01 0.90773637E-03 0.49999736E+00
+ 0.13892479E+01 0.10700141E-02 0.49999740E+00
+ 0.13905008E+01 0.12292493E-02 0.49999744E+00
+ 0.13917537E+01 0.13854120E-02 0.49999748E+00
+ 0.13930065E+01 0.15384730E-02 0.49999752E+00
+ 0.13942594E+01 0.16884039E-02 0.49999756E+00
+ 0.13955123E+01 0.18351773E-02 0.49999760E+00
+ 0.13967652E+01 0.19787662E-02 0.49999764E+00
+ 0.13980181E+01 0.21191450E-02 0.49999768E+00
+ 0.13992710E+01 0.22562885E-02 0.49999772E+00
+ 0.14005239E+01 0.23901724E-02 0.49999777E+00
+ 0.14017768E+01 0.25207734E-02 0.49999781E+00
+ 0.14030296E+01 0.26480690E-02 0.49999785E+00
+ 0.14042825E+01 0.27720376E-02 0.49999789E+00
+ 0.14055354E+01 0.28926582E-02 0.49999794E+00
+ 0.14067883E+01 0.30099110E-02 0.49999798E+00
+ 0.14080412E+01 0.31237768E-02 0.49999802E+00
+ 0.14092941E+01 0.32342375E-02 0.49999806E+00
+ 0.14105470E+01 0.33412756E-02 0.49999811E+00
+ 0.14117999E+01 0.34448748E-02 0.49999815E+00
+ 0.14130528E+01 0.35450194E-02 0.49999819E+00
+ 0.14143056E+01 0.36416946E-02 0.49999824E+00
+ 0.14155585E+01 0.37348865E-02 0.49999828E+00
+ 0.14168114E+01 0.38245823E-02 0.49999833E+00
+ 0.14180643E+01 0.39107696E-02 0.49999837E+00
+ 0.14193172E+01 0.39934374E-02 0.49999841E+00
+ 0.14205701E+01 0.40725752E-02 0.49999846E+00
+ 0.14218230E+01 0.41481734E-02 0.49999850E+00
+ 0.14230759E+01 0.42202233E-02 0.49999855E+00
+ 0.14243287E+01 0.42887173E-02 0.49999859E+00
+ 0.14255816E+01 0.43536483E-02 0.49999864E+00
+ 0.14268345E+01 0.44150103E-02 0.49999868E+00
+ 0.14280874E+01 0.44727980E-02 0.49999873E+00
+ 0.14293403E+01 0.45270070E-02 0.49999877E+00
+ 0.14305932E+01 0.45776338E-02 0.49999882E+00
+ 0.14318461E+01 0.46246757E-02 0.49999886E+00
+ 0.14330990E+01 0.46681307E-02 0.49999891E+00
+ 0.14343518E+01 0.47079979E-02 0.49999895E+00
+ 0.14356047E+01 0.47442771E-02 0.49999900E+00
+ 0.14368576E+01 0.47769688E-02 0.49999904E+00
+ 0.14381105E+01 0.48060744E-02 0.49999909E+00
+ 0.14393634E+01 0.48315962E-02 0.49999914E+00
+ 0.14406163E+01 0.48535373E-02 0.49999918E+00
+ 0.14418692E+01 0.48719013E-02 0.49999923E+00
+ 0.14431221E+01 0.48866929E-02 0.49999927E+00
+ 0.14443750E+01 0.48979176E-02 0.49999932E+00
+ 0.14456278E+01 0.49055814E-02 0.49999936E+00
+ 0.14468807E+01 0.49096912E-02 0.49999941E+00
+ 0.14481336E+01 0.49102549E-02 0.49999946E+00
+ 0.14493865E+01 0.49072807E-02 0.49999950E+00
+ 0.14506394E+01 0.49007778E-02 0.49999955E+00
+ 0.14518923E+01 0.48907563E-02 0.49999960E+00
+ 0.14531452E+01 0.48772266E-02 0.49999964E+00
+ 0.14543981E+01 0.48602002E-02 0.49999969E+00
+ 0.14556509E+01 0.48396890E-02 0.49999973E+00
+ 0.14569038E+01 0.48157060E-02 0.49999978E+00
+ 0.14581567E+01 0.47882644E-02 0.49999983E+00
+ 0.14594096E+01 0.47573785E-02 0.49999987E+00
+ 0.14606613E+01 0.47230630E-02 0.68441740E+00
+ 0.14619130E+01 0.47242755E-02 0.50817917E+00
+ 0.14631647E+01 0.47262860E-02 0.51153710E+00
+ 0.14644164E+01 0.47294577E-02 0.51279698E+00
+ 0.14656680E+01 0.47338587E-02 0.51338725E+00
+ 0.14669197E+01 0.47395044E-02 0.51373718E+00
+ 0.14681714E+01 0.47463995E-02 0.51399103E+00
+ 0.14694231E+01 0.47545460E-02 0.51420580E+00
+ 0.14706748E+01 0.47639447E-02 0.51440720E+00
+ 0.14719265E+01 0.47745960E-02 0.51460808E+00
+ 0.14731782E+01 0.47865004E-02 0.51481540E+00
+ 0.14744299E+01 0.47996579E-02 0.51503317E+00
+ 0.14756816E+01 0.48140688E-02 0.51526380E+00
+ 0.14769332E+01 0.48297332E-02 0.51550882E+00
+ 0.14781849E+01 0.48466512E-02 0.51576920E+00
+ 0.14794366E+01 0.48648229E-02 0.51604558E+00
+ 0.14806883E+01 0.48842483E-02 0.51633837E+00
+ 0.14819400E+01 0.49049276E-02 0.51664786E+00
+ 0.14831917E+01 0.49268606E-02 0.51697420E+00
+ 0.14844434E+01 0.49500474E-02 0.51731750E+00
+ 0.14856951E+01 0.49744879E-02 0.51767780E+00
+ 0.14869467E+01 0.50001820E-02 0.51805510E+00
+ 0.14881984E+01 0.50271294E-02 0.51844937E+00
+ 0.14894501E+01 0.50553300E-02 0.51886057E+00
+ 0.14907018E+01 0.50847834E-02 0.51928861E+00
+ 0.14919535E+01 0.51154893E-02 0.51973341E+00
+ 0.14932052E+01 0.51474471E-02 0.52019486E+00
+ 0.14944569E+01 0.51806564E-02 0.52067284E+00
+ 0.14957086E+01 0.52151165E-02 0.52116723E+00
+ 0.14969603E+01 0.52508266E-02 0.52167788E+00
+ 0.14982119E+01 0.52877859E-02 0.52220464E+00
+ 0.14994636E+01 0.53259934E-02 0.52274737E+00
+ 0.15007153E+01 0.53654480E-02 0.52330589E+00
+ 0.15019670E+01 0.54061484E-02 0.52388002E+00
+ 0.15032187E+01 0.54480932E-02 0.52446959E+00
+ 0.15044704E+01 0.54912809E-02 0.52507441E+00
+ 0.15057221E+01 0.55357098E-02 0.52569429E+00
+ 0.15069738E+01 0.55813779E-02 0.52632901E+00
+ 0.15082254E+01 0.56282832E-02 0.52697837E+00
+ 0.15094771E+01 0.56764235E-02 0.52764215E+00
+ 0.15107288E+01 0.57257962E-02 0.52832013E+00
+ 0.15119805E+01 0.57763987E-02 0.52901208E+00
+ 0.15132322E+01 0.58282281E-02 0.52971777E+00
+ 0.15144839E+01 0.58812814E-02 0.53043695E+00
+ 0.15157356E+01 0.59355551E-02 0.53116937E+00
+ 0.15169873E+01 0.59910457E-02 0.53191478E+00
+ 0.15182389E+01 0.60477493E-02 0.53267293E+00
+ 0.15194906E+01 0.61056618E-02 0.53344353E+00
+ 0.15207423E+01 0.61647789E-02 0.53422633E+00
+ 0.15219940E+01 0.62250959E-02 0.53502104E+00
+ 0.15232457E+01 0.62866079E-02 0.53582738E+00
+ 0.15244974E+01 0.63493096E-02 0.53664506E+00
+ 0.15257491E+01 0.64131956E-02 0.53747379E+00
+ 0.15270008E+01 0.64782600E-02 0.53831327E+00
+ 0.15282525E+01 0.65444966E-02 0.53916319E+00
+ 0.15295041E+01 0.66118989E-02 0.54002324E+00
+ 0.15307558E+01 0.66804603E-02 0.54089312E+00
+ 0.15320075E+01 0.67501735E-02 0.54177250E+00
+ 0.15332592E+01 0.68210310E-02 0.54266105E+00
+ 0.15345109E+01 0.68930251E-02 0.54355845E+00
+ 0.15357626E+01 0.69661476E-02 0.54446438E+00
+ 0.15370143E+01 0.70403899E-02 0.54537848E+00
+ 0.15382660E+01 0.71157431E-02 0.54630043E+00
+ 0.15395176E+01 0.71921980E-02 0.54722987E+00
+ 0.15407693E+01 0.72697449E-02 0.54816647E+00
+ 0.15420210E+01 0.73483739E-02 0.54910987E+00
+ 0.15432727E+01 0.74280745E-02 0.55005972E+00
+ 0.15445244E+01 0.75088360E-02 0.55101565E+00
+ 0.15457761E+01 0.75906473E-02 0.55197733E+00
+ 0.15470278E+01 0.76734967E-02 0.55294437E+00
+ 0.15482795E+01 0.77573725E-02 0.55391642E+00
+ 0.15495312E+01 0.78422623E-02 0.55489312E+00
+ 0.15507828E+01 0.79281534E-02 0.55587410E+00
+ 0.15520345E+01 0.80150328E-02 0.55685899E+00
+ 0.15532862E+01 0.81028870E-02 0.55784742E+00
+ 0.15545379E+01 0.81917023E-02 0.55883903E+00
+ 0.15557896E+01 0.82814643E-02 0.55983344E+00
+ 0.15570413E+01 0.83721585E-02 0.56083028E+00
+ 0.15582930E+01 0.84637700E-02 0.56182918E+00
+ 0.15595447E+01 0.85562834E-02 0.56282978E+00
+ 0.15607963E+01 0.86496831E-02 0.56383170E+00
+ 0.15620480E+01 0.87439530E-02 0.56483458E+00
+ 0.15632997E+01 0.88390767E-02 0.56583806E+00
+ 0.15645514E+01 0.89350374E-02 0.56684175E+00
+ 0.15658031E+01 0.90318181E-02 0.56784531E+00
+ 0.15670548E+01 0.91294014E-02 0.56884838E+00
+ 0.15683065E+01 0.92277695E-02 0.56985058E+00
+ 0.15695582E+01 0.93269043E-02 0.57085158E+00
+ 0.15708098E+01 0.94267875E-02 0.57185101E+00
+ 0.15720615E+01 0.95274005E-02 0.57284853E+00
+ 0.15733132E+01 0.96287242E-02 0.57384379E+00
+ 0.15745649E+01 0.97307395E-02 0.57483645E+00
+ 0.15758166E+01 0.98334269E-02 0.57582618E+00
+ 0.15770683E+01 0.99367667E-02 0.57681264E+00
+ 0.15783200E+01 0.10040739E-01 0.57779551E+00
+ 0.15795717E+01 0.10145323E-01 0.57877446E+00
+ 0.15808234E+01 0.10250499E-01 0.57974918E+00
+ 0.15820750E+01 0.10356247E-01 0.58071935E+00
+ 0.15833267E+01 0.10462545E-01 0.58168468E+00
+ 0.15845784E+01 0.10569372E-01 0.58264487E+00
+ 0.15858301E+01 0.10676708E-01 0.58359962E+00
+ 0.15870818E+01 0.10784531E-01 0.58454864E+00
+ 0.15883335E+01 0.10892820E-01 0.58549167E+00
+ 0.15895852E+01 0.11001553E-01 0.58642843E+00
+ 0.15908369E+01 0.11110709E-01 0.58735865E+00
+ 0.15920885E+01 0.11220267E-01 0.58828209E+00
+ 0.15933402E+01 0.11330204E-01 0.58919849E+00
+ 0.15945919E+01 0.11440500E-01 0.59010762E+00
+ 0.15958436E+01 0.11551132E-01 0.59100924E+00
+ 0.15970953E+01 0.11662079E-01 0.59190313E+00
+ 0.15983470E+01 0.11773319E-01 0.59278908E+00
+ 0.15995987E+01 0.11884831E-01 0.59366688E+00
+ 0.16008504E+01 0.11996593E-01 0.59453634E+00
+ 0.16021021E+01 0.12108584E-01 0.59539727E+00
+ 0.16033537E+01 0.12220782E-01 0.59624949E+00
+ 0.16046054E+01 0.12333167E-01 0.59709283E+00
+ 0.16058571E+01 0.12445718E-01 0.59792714E+00
+ 0.16071088E+01 0.12558413E-01 0.59875226E+00
+ 0.16083605E+01 0.12671232E-01 0.59956804E+00
+ 0.16096122E+01 0.12784154E-01 0.60037437E+00
+ 0.16108639E+01 0.12897160E-01 0.60117112E+00
+ 0.16121156E+01 0.13010229E-01 0.60195817E+00
+ 0.16133672E+01 0.13123342E-01 0.60273543E+00
+ 0.16146189E+01 0.13236480E-01 0.60350280E+00
+ 0.16158706E+01 0.13349622E-01 0.60426019E+00
+ 0.16171223E+01 0.13462751E-01 0.60500754E+00
+ 0.16183740E+01 0.13575848E-01 0.60574477E+00
+ 0.16196257E+01 0.13688894E-01 0.60647184E+00
+ 0.16208774E+01 0.13801873E-01 0.60718870E+00
+ 0.16221291E+01 0.13914767E-01 0.60789531E+00
+ 0.16233808E+01 0.14027558E-01 0.60859164E+00
+ 0.16246324E+01 0.14140231E-01 0.60927768E+00
+ 0.16258841E+01 0.14252769E-01 0.60995342E+00
+ 0.16271358E+01 0.14365157E-01 0.61061886E+00
+ 0.16283875E+01 0.14477379E-01 0.61127400E+00
+ 0.16296392E+01 0.14589421E-01 0.61191887E+00
+ 0.16308909E+01 0.14701269E-01 0.61255349E+00
+ 0.16321426E+01 0.14812908E-01 0.61317790E+00
+ 0.16333943E+01 0.14924326E-01 0.61379213E+00
+ 0.16346459E+01 0.15035509E-01 0.61439624E+00
+ 0.16358976E+01 0.15146447E-01 0.61499029E+00
+ 0.16371493E+01 0.15257126E-01 0.61557435E+00
+ 0.16384010E+01 0.15367536E-01 0.61614848E+00
+ 0.16396527E+01 0.15477666E-01 0.61671277E+00
+ 0.16409044E+01 0.15587506E-01 0.61726730E+00
+ 0.16421561E+01 0.15697047E-01 0.61781218E+00
+ 0.16434078E+01 0.15806280E-01 0.61834751E+00
+ 0.16446594E+01 0.15915196E-01 0.61887339E+00
+ 0.16459111E+01 0.16023787E-01 0.61938993E+00
+ 0.16471628E+01 0.16132047E-01 0.61989726E+00
+ 0.16484145E+01 0.16239967E-01 0.62039550E+00
+ 0.16496662E+01 0.16347543E-01 0.62088479E+00
+ 0.16509179E+01 0.16454769E-01 0.62136526E+00
+ 0.16521696E+01 0.16561638E-01 0.62183705E+00
+ 0.16534213E+01 0.16668148E-01 0.62230032E+00
+ 0.16546730E+01 0.16774293E-01 0.62275520E+00
+ 0.16559246E+01 0.16880071E-01 0.62320186E+00
+ 0.16571763E+01 0.16985478E-01 0.62364045E+00
+ 0.16584280E+01 0.17090511E-01 0.62407114E+00
+ 0.16596797E+01 0.17195170E-01 0.62449410E+00
+ 0.16609314E+01 0.17299452E-01 0.62490949E+00
+ 0.16621831E+01 0.17403355E-01 0.62531748E+00
+ 0.16634348E+01 0.17506881E-01 0.62571826E+00
+ 0.16646865E+01 0.17610028E-01 0.62611199E+00
+ 0.16659381E+01 0.17712797E-01 0.62649886E+00
+ 0.16671898E+01 0.17815188E-01 0.62687905E+00
+ 0.16684415E+01 0.17917203E-01 0.62725274E+00
+ 0.16696932E+01 0.18018844E-01 0.62762012E+00
+ 0.16709449E+01 0.18120111E-01 0.62798136E+00
+ 0.16721966E+01 0.18221008E-01 0.62833666E+00
+ 0.16734483E+01 0.18321537E-01 0.62868620E+00
+ 0.16747000E+01 0.18421700E-01 0.62903017E+00
+ 0.16759517E+01 0.18521502E-01 0.62936876E+00
+ 0.16772033E+01 0.18620945E-01 0.62970215E+00
+ 0.16784550E+01 0.18720033E-01 0.63003053E+00
+ 0.16797067E+01 0.18818771E-01 0.63035408E+00
+ 0.16809584E+01 0.18917161E-01 0.63067299E+00
+ 0.16822101E+01 0.19015209E-01 0.63098744E+00
+ 0.16834618E+01 0.19112919E-01 0.63129761E+00
+ 0.16847135E+01 0.19210296E-01 0.63160369E+00
+ 0.16859652E+01 0.19307344E-01 0.63190585E+00
+ 0.16872168E+01 0.19404068E-01 0.63220427E+00
+ 0.16884685E+01 0.19500473E-01 0.63249912E+00
+ 0.16897202E+01 0.19596564E-01 0.63279058E+00
+ 0.16909719E+01 0.19692346E-01 0.63307881E+00
+ 0.16922236E+01 0.19787824E-01 0.63336398E+00
+ 0.16934753E+01 0.19883002E-01 0.63364625E+00
+ 0.16947270E+01 0.19977886E-01 0.63392579E+00
+ 0.16959787E+01 0.20072480E-01 0.63420275E+00
+ 0.16972303E+01 0.20166789E-01 0.63447728E+00
+ 0.16984820E+01 0.20260817E-01 0.63474954E+00
+ 0.16997337E+01 0.20354569E-01 0.63501966E+00
+ 0.17009854E+01 0.20448048E-01 0.63528780E+00
+ 0.17022371E+01 0.20541260E-01 0.63555408E+00
+ 0.17034888E+01 0.20634206E-01 0.63581865E+00
+ 0.17047405E+01 0.20726892E-01 0.63608162E+00
+ 0.17059922E+01 0.20819320E-01 0.63634313E+00
+ 0.17072439E+01 0.20911493E-01 0.63660330E+00
+ 0.17084955E+01 0.21003413E-01 0.63686224E+00
+ 0.17097472E+01 0.21095083E-01 0.63712006E+00
+ 0.17109989E+01 0.21186504E-01 0.63737687E+00
+ 0.17122506E+01 0.21277679E-01 0.63763276E+00
+ 0.17135023E+01 0.21368607E-01 0.63788784E+00
+ 0.17147540E+01 0.21459291E-01 0.63814219E+00
+ 0.17160057E+01 0.21549729E-01 0.63839590E+00
+ 0.17172574E+01 0.21639922E-01 0.63864905E+00
+ 0.17185090E+01 0.21729868E-01 0.63890171E+00
+ 0.17197607E+01 0.21819568E-01 0.63915395E+00
+ 0.17210124E+01 0.21909018E-01 0.63940584E+00
+ 0.17222641E+01 0.21998217E-01 0.63965744E+00
+ 0.17235158E+01 0.22087161E-01 0.63990879E+00
+ 0.17247675E+01 0.22175848E-01 0.64015995E+00
+ 0.17260192E+01 0.22264274E-01 0.64041096E+00
+ 0.17272709E+01 0.22352434E-01 0.64066186E+00
+ 0.17285226E+01 0.22440322E-01 0.64091267E+00
+ 0.17297742E+01 0.22527934E-01 0.64116343E+00
+ 0.17310259E+01 0.22615263E-01 0.64141415E+00
+ 0.17322776E+01 0.22702302E-01 0.64166486E+00
+ 0.17335293E+01 0.22789044E-01 0.64191555E+00
+ 0.17347810E+01 0.22875480E-01 0.64216625E+00
+ 0.17360327E+01 0.22961602E-01 0.64241693E+00
+ 0.17372844E+01 0.23047400E-01 0.64266761E+00
+ 0.17385361E+01 0.23132865E-01 0.64291827E+00
+ 0.17397877E+01 0.23217986E-01 0.64316889E+00
+ 0.17410394E+01 0.23302752E-01 0.64341946E+00
+ 0.17422911E+01 0.23387151E-01 0.64366995E+00
+ 0.17435428E+01 0.23471170E-01 0.64392032E+00
+ 0.17447945E+01 0.23554796E-01 0.64417055E+00
+ 0.17460462E+01 0.23638016E-01 0.64442060E+00
+ 0.17472979E+01 0.23720815E-01 0.64467042E+00
+ 0.17485496E+01 0.23803179E-01 0.64491996E+00
+ 0.17498013E+01 0.23885092E-01 0.64516917E+00
+ 0.17510529E+01 0.23966538E-01 0.64541800E+00
+ 0.17523046E+01 0.24047501E-01 0.64566638E+00
+ 0.17535563E+01 0.24127963E-01 0.64591425E+00
+ 0.17548080E+01 0.24207906E-01 0.64616154E+00
+ 0.17560597E+01 0.24287313E-01 0.64640817E+00
+ 0.17573114E+01 0.24366164E-01 0.64665408E+00
+ 0.17585631E+01 0.24444441E-01 0.64689918E+00
+ 0.17598148E+01 0.24522123E-01 0.64714340E+00
+ 0.17610664E+01 0.24599191E-01 0.64738664E+00
+ 0.17623181E+01 0.24675624E-01 0.64762881E+00
+ 0.17635698E+01 0.24751401E-01 0.64786983E+00
+ 0.17648215E+01 0.24826500E-01 0.64810961E+00
+ 0.17660732E+01 0.24900900E-01 0.64834803E+00
+ 0.17673249E+01 0.24974578E-01 0.64858502E+00
+ 0.17685766E+01 0.25047512E-01 0.64882045E+00
+ 0.17698283E+01 0.25119679E-01 0.64905424E+00
+ 0.17710799E+01 0.25191056E-01 0.64928628E+00
+ 0.17723316E+01 0.25261619E-01 0.64951646E+00
+ 0.17735833E+01 0.25331346E-01 0.64974466E+00
+ 0.17748350E+01 0.25400212E-01 0.64997079E+00
+ 0.17760867E+01 0.25468192E-01 0.65019473E+00
+ 0.17773384E+01 0.25535264E-01 0.65041637E+00
+ 0.17785901E+01 0.25601402E-01 0.65063559E+00
+ 0.17798418E+01 0.25666583E-01 0.65085228E+00
+ 0.17810935E+01 0.25730781E-01 0.65106634E+00
+ 0.17823451E+01 0.25793973E-01 0.65127763E+00
+ 0.17835968E+01 0.25856133E-01 0.65148605E+00
+ 0.17848485E+01 0.25917238E-01 0.65169149E+00
+ 0.17861002E+01 0.25977263E-01 0.65189382E+00
+ 0.17873519E+01 0.26036183E-01 0.65209293E+00
+ 0.17886036E+01 0.26093974E-01 0.65228871E+00
+ 0.17898553E+01 0.26150612E-01 0.65248105E+00
+ 0.17911070E+01 0.26206074E-01 0.65266983E+00
+ 0.17923586E+01 0.26260334E-01 0.65285494E+00
+ 0.17936103E+01 0.26313371E-01 0.65303627E+00
+ 0.17948620E+01 0.26365160E-01 0.65321371E+00
+ 0.17961137E+01 0.26415679E-01 0.65338715E+00
+ 0.17973654E+01 0.26464904E-01 0.65355648E+00
+ 0.17986171E+01 0.26512814E-01 0.65372160E+00
+ 0.17998688E+01 0.26559387E-01 0.65388240E+00
+ 0.18011205E+01 0.26604601E-01 0.65403879E+00
+ 0.18023722E+01 0.26648435E-01 0.65419066E+00
+ 0.18036238E+01 0.26690868E-01 0.65433792E+00
+ 0.18048755E+01 0.26731881E-01 0.65448047E+00
+ 0.18061272E+01 0.26771453E-01 0.65461822E+00
+ 0.18073789E+01 0.26809566E-01 0.65475108E+00
+ 0.18086306E+01 0.26846200E-01 0.65487896E+00
+ 0.18098823E+01 0.26881339E-01 0.65500178E+00
+ 0.18111340E+01 0.26914964E-01 0.65511945E+00
+ 0.18123857E+01 0.26947060E-01 0.65523190E+00
+ 0.18136373E+01 0.26977610E-01 0.65533906E+00
+ 0.18148890E+01 0.27006598E-01 0.65544084E+00
+ 0.18161407E+01 0.27034011E-01 0.65553719E+00
+ 0.18173924E+01 0.27059833E-01 0.65562803E+00
+ 0.18186441E+01 0.27084053E-01 0.65571331E+00
+ 0.18198958E+01 0.27106658E-01 0.65579296E+00
+ 0.18211475E+01 0.27127635E-01 0.65586694E+00
+ 0.18223992E+01 0.27146975E-01 0.65593518E+00
+ 0.18236509E+01 0.27164667E-01 0.65599766E+00
+ 0.18249025E+01 0.27180702E-01 0.65605431E+00
+ 0.18261542E+01 0.27195072E-01 0.65610510E+00
+ 0.18274059E+01 0.27207769E-01 0.65615001E+00
+ 0.18286576E+01 0.27218787E-01 0.65618899E+00
+ 0.18299093E+01 0.27228119E-01 0.65622201E+00
+ 0.18311610E+01 0.27235761E-01 0.65624907E+00
+ 0.18324127E+01 0.27241710E-01 0.65627013E+00
+ 0.18336644E+01 0.27245961E-01 0.65628519E+00
+ 0.18349160E+01 0.27248512E-01 0.65629422E+00
+ 0.18361692E+01 0.27249363E-01 0.65629724E+00
+ 0.18374224E+01 0.27252068E-01 0.65627210E+00
+ 0.18386756E+01 0.27260179E-01 0.65619676E+00
+ 0.18399288E+01 0.27273686E-01 0.65607138E+00
+ 0.18411820E+01 0.27292575E-01 0.65589623E+00
+ 0.18424352E+01 0.27316822E-01 0.65567173E+00
+ 0.18436884E+01 0.27346400E-01 0.65539836E+00
+ 0.18449416E+01 0.27381274E-01 0.65507673E+00
+ 0.18461948E+01 0.27421404E-01 0.65470756E+00
+ 0.18474480E+01 0.27466743E-01 0.65429164E+00
+ 0.18487012E+01 0.27517241E-01 0.65382986E+00
+ 0.18499544E+01 0.27572839E-01 0.65332320E+00
+ 0.18512076E+01 0.27633475E-01 0.65277271E+00
+ 0.18524608E+01 0.27699081E-01 0.65217953E+00
+ 0.18537140E+01 0.27769586E-01 0.65154485E+00
+ 0.18549672E+01 0.27844912E-01 0.65086991E+00
+ 0.18562204E+01 0.27924979E-01 0.65015602E+00
+ 0.18574736E+01 0.28009699E-01 0.64940452E+00
+ 0.18587268E+01 0.28098985E-01 0.64861681E+00
+ 0.18599800E+01 0.28192743E-01 0.64779429E+00
+ 0.18612332E+01 0.28290877E-01 0.64693839E+00
+ 0.18624864E+01 0.28393289E-01 0.64605059E+00
+ 0.18637396E+01 0.28499875E-01 0.64513232E+00
+ 0.18649928E+01 0.28610531E-01 0.64418507E+00
+ 0.18662460E+01 0.28725150E-01 0.64321031E+00
+ 0.18674992E+01 0.28843624E-01 0.64220948E+00
+ 0.18687524E+01 0.28965841E-01 0.64118404E+00
+ 0.18700056E+01 0.29091690E-01 0.64013542E+00
+ 0.18712588E+01 0.29221055E-01 0.63906503E+00
+ 0.18725120E+01 0.29353824E-01 0.63797424E+00
+ 0.18737652E+01 0.29489879E-01 0.63686442E+00
+ 0.18750183E+01 0.29629104E-01 0.63573689E+00
+ 0.18762715E+01 0.29771384E-01 0.63459295E+00
+ 0.18775247E+01 0.29916599E-01 0.63343383E+00
+ 0.18787779E+01 0.30064633E-01 0.63226077E+00
+ 0.18800311E+01 0.30215369E-01 0.63107492E+00
+ 0.18812843E+01 0.30368689E-01 0.62987744E+00
+ 0.18825375E+01 0.30524477E-01 0.62866941E+00
+ 0.18837907E+01 0.30682615E-01 0.62745188E+00
+ 0.18850439E+01 0.30842988E-01 0.62622585E+00
+ 0.18862971E+01 0.31005482E-01 0.62499230E+00
+ 0.18875503E+01 0.31169981E-01 0.62375214E+00
+ 0.18888035E+01 0.31336373E-01 0.62250624E+00
+ 0.18900567E+01 0.31504544E-01 0.62125545E+00
+ 0.18913099E+01 0.31674385E-01 0.62000056E+00
+ 0.18925631E+01 0.31845783E-01 0.61874231E+00
+ 0.18938163E+01 0.32018632E-01 0.61748143E+00
+ 0.18950695E+01 0.32192823E-01 0.61621859E+00
+ 0.18963227E+01 0.32368251E-01 0.61495443E+00
+ 0.18975759E+01 0.32544810E-01 0.61368954E+00
+ 0.18988291E+01 0.32722397E-01 0.61242449E+00
+ 0.19000823E+01 0.32900912E-01 0.61115981E+00
+ 0.19013355E+01 0.33080253E-01 0.60989599E+00
+ 0.19025887E+01 0.33260323E-01 0.60863352E+00
+ 0.19038419E+01 0.33441024E-01 0.60737281E+00
+ 0.19050951E+01 0.33622263E-01 0.60611429E+00
+ 0.19063483E+01 0.33803945E-01 0.60485832E+00
+ 0.19076015E+01 0.33985978E-01 0.60360527E+00
+ 0.19088547E+01 0.34168274E-01 0.60235546E+00
+ 0.19101079E+01 0.34350744E-01 0.60110919E+00
+ 0.19113611E+01 0.34533301E-01 0.59986677E+00
+ 0.19126143E+01 0.34715861E-01 0.59862843E+00
+ 0.19138675E+01 0.34898342E-01 0.59739444E+00
+ 0.19151207E+01 0.35080662E-01 0.59616500E+00
+ 0.19163738E+01 0.35262743E-01 0.59494034E+00
+ 0.19176270E+01 0.35444508E-01 0.59372063E+00
+ 0.19188802E+01 0.35625880E-01 0.59250606E+00
+ 0.19201334E+01 0.35806786E-01 0.59129678E+00
+ 0.19213866E+01 0.35987155E-01 0.59009294E+00
+ 0.19226398E+01 0.36166918E-01 0.58889467E+00
+ 0.19238930E+01 0.36346004E-01 0.58770210E+00
+ 0.19251462E+01 0.36524350E-01 0.58651533E+00
+ 0.19263994E+01 0.36701889E-01 0.58533448E+00
+ 0.19276526E+01 0.36878560E-01 0.58415962E+00
+ 0.19289058E+01 0.37054302E-01 0.58299085E+00
+ 0.19301590E+01 0.37229056E-01 0.58182823E+00
+ 0.19314122E+01 0.37402765E-01 0.58067184E+00
+ 0.19326654E+01 0.37575372E-01 0.57952174E+00
+ 0.19339186E+01 0.37746826E-01 0.57837797E+00
+ 0.19351718E+01 0.37917074E-01 0.57724060E+00
+ 0.19364250E+01 0.38086066E-01 0.57610965E+00
+ 0.19376782E+01 0.38253753E-01 0.57498517E+00
+ 0.19389314E+01 0.38420089E-01 0.57386720E+00
+ 0.19401846E+01 0.38585030E-01 0.57275576E+00
+ 0.19414378E+01 0.38748532E-01 0.57165088E+00
+ 0.19426910E+01 0.38910553E-01 0.57055259E+00
+ 0.19439442E+01 0.39071055E-01 0.56946089E+00
+ 0.19451974E+01 0.39229998E-01 0.56837582E+00
+ 0.19464506E+01 0.39387347E-01 0.56729738E+00
+ 0.19477038E+01 0.39543066E-01 0.56622559E+00
+ 0.19489570E+01 0.39697122E-01 0.56516046E+00
+ 0.19502102E+01 0.39849484E-01 0.56410200E+00
+ 0.19514634E+01 0.40000122E-01 0.56305022E+00
+ 0.19527166E+01 0.40149006E-01 0.56200512E+00
+ 0.19539698E+01 0.40296111E-01 0.56096670E+00
+ 0.19552230E+01 0.40441410E-01 0.55993498E+00
+ 0.19564762E+01 0.40584879E-01 0.55890996E+00
+ 0.19577293E+01 0.40726496E-01 0.55789163E+00
+ 0.19589825E+01 0.40866239E-01 0.55688001E+00
+ 0.19602357E+01 0.41004090E-01 0.55587509E+00
+ 0.19614889E+01 0.41140028E-01 0.55487687E+00
+ 0.19627421E+01 0.41274038E-01 0.55388536E+00
+ 0.19639953E+01 0.41406103E-01 0.55290056E+00
+ 0.19652485E+01 0.41536209E-01 0.55192246E+00
+ 0.19665017E+01 0.41664343E-01 0.55095108E+00
+ 0.19677549E+01 0.41790493E-01 0.54998640E+00
+ 0.19690081E+01 0.41914647E-01 0.54902843E+00
+ 0.19702613E+01 0.42036797E-01 0.54807717E+00
+ 0.19715145E+01 0.42156934E-01 0.54713262E+00
+ 0.19727677E+01 0.42275050E-01 0.54619478E+00
+ 0.19740209E+01 0.42391140E-01 0.54526365E+00
+ 0.19752741E+01 0.42505197E-01 0.54433923E+00
+ 0.19765273E+01 0.42617217E-01 0.54342152E+00
+ 0.19777805E+01 0.42727198E-01 0.54251053E+00
+ 0.19790337E+01 0.42835137E-01 0.54160625E+00
+ 0.19802869E+01 0.42941032E-01 0.54070868E+00
+ 0.19815401E+01 0.43044883E-01 0.53981784E+00
+ 0.19827933E+01 0.43146690E-01 0.53893370E+00
+ 0.19840465E+01 0.43246455E-01 0.53805629E+00
+ 0.19852997E+01 0.43344178E-01 0.53718560E+00
+ 0.19865529E+01 0.43439863E-01 0.53632163E+00
+ 0.19878061E+01 0.43533512E-01 0.53546438E+00
+ 0.19890593E+01 0.43625130E-01 0.53461385E+00
+ 0.19903125E+01 0.43714721E-01 0.53377005E+00
+ 0.19915657E+01 0.43802290E-01 0.53293298E+00
+ 0.19928189E+01 0.43887844E-01 0.53210264E+00
+ 0.19940721E+01 0.43971387E-01 0.53127902E+00
+ 0.19953253E+01 0.44052928E-01 0.53046213E+00
+ 0.19965785E+01 0.44132472E-01 0.52965198E+00
+ 0.19978317E+01 0.44210028E-01 0.52884856E+00
+ 0.19990849E+01 0.44285604E-01 0.52805187E+00
+ 0.20003380E+01 0.44359207E-01 0.52726191E+00
+ 0.20015912E+01 0.44430847E-01 0.52647868E+00
+ 0.20028444E+01 0.44500532E-01 0.52570219E+00
+ 0.20040976E+01 0.44568272E-01 0.52493243E+00
+ 0.20053508E+01 0.44634075E-01 0.52416941E+00
+ 0.20066040E+01 0.44697953E-01 0.52341311E+00
+ 0.20078572E+01 0.44759914E-01 0.52266354E+00
+ 0.20091104E+01 0.44819968E-01 0.52192070E+00
+ 0.20103636E+01 0.44878125E-01 0.52118459E+00
+ 0.20116168E+01 0.44934396E-01 0.52045519E+00
+ 0.20128700E+01 0.44988791E-01 0.51973252E+00
+ 0.20141232E+01 0.45041319E-01 0.51901656E+00
+ 0.20153764E+01 0.45091991E-01 0.51830731E+00
+ 0.20166296E+01 0.45140817E-01 0.51760477E+00
+ 0.20178828E+01 0.45187808E-01 0.51690893E+00
+ 0.20191360E+01 0.45232973E-01 0.51621978E+00
+ 0.20203892E+01 0.45276322E-01 0.51553732E+00
+ 0.20216424E+01 0.45317865E-01 0.51486154E+00
+ 0.20228956E+01 0.45357612E-01 0.51419243E+00
+ 0.20241488E+01 0.45395573E-01 0.51352998E+00
+ 0.20254020E+01 0.45431756E-01 0.51287419E+00
+ 0.20266552E+01 0.45466171E-01 0.51222503E+00
+ 0.20279084E+01 0.45498827E-01 0.51158251E+00
+ 0.20291616E+01 0.45529733E-01 0.51094661E+00
+ 0.20304148E+01 0.45558897E-01 0.51031732E+00
+ 0.20316680E+01 0.45586327E-01 0.50969462E+00
+ 0.20329212E+01 0.45612032E-01 0.50907849E+00
+ 0.20341744E+01 0.45636019E-01 0.50846893E+00
+ 0.20354276E+01 0.45658296E-01 0.50786592E+00
+ 0.20366808E+01 0.45678870E-01 0.50726943E+00
+ 0.20379340E+01 0.45697748E-01 0.50667945E+00
+ 0.20391872E+01 0.45714937E-01 0.50609597E+00
+ 0.20404404E+01 0.45730442E-01 0.50551896E+00
+ 0.20416935E+01 0.45744269E-01 0.50494839E+00
+ 0.20429467E+01 0.45756425E-01 0.50438426E+00
+ 0.20441999E+01 0.45766915E-01 0.50382652E+00
+ 0.20454531E+01 0.45775743E-01 0.50327517E+00
+ 0.20467063E+01 0.45782914E-01 0.50273017E+00
+ 0.20479595E+01 0.45788433E-01 0.50219150E+00
+ 0.20492127E+01 0.45792303E-01 0.50165913E+00
+ 0.20504659E+01 0.45794529E-01 0.50113303E+00
+ 0.20517191E+01 0.45795113E-01 0.50061317E+00
+ 0.20529723E+01 0.45794059E-01 0.50009953E+00
+ 0.20542255E+01 0.45791636E-01 0.50223434E+00
+ 0.20554787E+01 0.45787557E-01 0.50436560E+00
+ 0.20567318E+01 0.45781825E-01 0.50649342E+00
+ 0.20579850E+01 0.45774441E-01 0.50861786E+00
+ 0.20592382E+01 0.45765409E-01 0.51073902E+00
+ 0.20604914E+01 0.45754729E-01 0.51285696E+00
+ 0.20617445E+01 0.45742402E-01 0.51497176E+00
+ 0.20629977E+01 0.45728431E-01 0.51708349E+00
+ 0.20642509E+01 0.45712815E-01 0.51919221E+00
+ 0.20655041E+01 0.45695557E-01 0.52129800E+00
+ 0.20667573E+01 0.45676656E-01 0.52340091E+00
+ 0.20680104E+01 0.45656114E-01 0.52550100E+00
+ 0.20692636E+01 0.45633930E-01 0.52759833E+00
+ 0.20705168E+01 0.45610105E-01 0.52969293E+00
+ 0.20717700E+01 0.45584639E-01 0.53178487E+00
+ 0.20730232E+01 0.45557533E-01 0.53387419E+00
+ 0.20742763E+01 0.45528786E-01 0.53596092E+00
+ 0.20755295E+01 0.45498398E-01 0.53804511E+00
+ 0.20767827E+01 0.45466369E-01 0.54012679E+00
+ 0.20780359E+01 0.45432700E-01 0.54220600E+00
+ 0.20792890E+01 0.45397389E-01 0.54428276E+00
+ 0.20805422E+01 0.45360436E-01 0.54635710E+00
+ 0.20817954E+01 0.45321842E-01 0.54842904E+00
+ 0.20830486E+01 0.45281605E-01 0.55049861E+00
+ 0.20843018E+01 0.45239726E-01 0.55256582E+00
+ 0.20855549E+01 0.45196205E-01 0.55463069E+00
+ 0.20868081E+01 0.45151041E-01 0.55669322E+00
+ 0.20880613E+01 0.45104235E-01 0.55875344E+00
+ 0.20893145E+01 0.45055786E-01 0.56081134E+00
+ 0.20905676E+01 0.45005694E-01 0.56286693E+00
+ 0.20918208E+01 0.44953959E-01 0.56492022E+00
+ 0.20930740E+01 0.44900582E-01 0.56697119E+00
+ 0.20943272E+01 0.44845564E-01 0.56901985E+00
+ 0.20955804E+01 0.44788904E-01 0.57106619E+00
+ 0.20968335E+01 0.44730603E-01 0.57311021E+00
+ 0.20980867E+01 0.44670662E-01 0.57515188E+00
+ 0.20993399E+01 0.44609083E-01 0.57719120E+00
+ 0.21005931E+01 0.44545866E-01 0.57922816E+00
+ 0.21018463E+01 0.44481012E-01 0.58126272E+00
+ 0.21030994E+01 0.44414523E-01 0.58329488E+00
+ 0.21043526E+01 0.44346402E-01 0.58532462E+00
+ 0.21056058E+01 0.44276649E-01 0.58735190E+00
+ 0.21068590E+01 0.44205268E-01 0.58937670E+00
+ 0.21081121E+01 0.44132260E-01 0.59139900E+00
+ 0.21093653E+01 0.44057629E-01 0.59341876E+00
+ 0.21106185E+01 0.43981376E-01 0.59543595E+00
+ 0.21118717E+01 0.43903507E-01 0.59745054E+00
+ 0.21131249E+01 0.43824023E-01 0.59946249E+00
+ 0.21143780E+01 0.43742929E-01 0.60147177E+00
+ 0.21156312E+01 0.43660229E-01 0.60347833E+00
+ 0.21168844E+01 0.43575927E-01 0.60548215E+00
+ 0.21181376E+01 0.43490027E-01 0.60748317E+00
+ 0.21193907E+01 0.43402535E-01 0.60948135E+00
+ 0.21206439E+01 0.43313456E-01 0.61147665E+00
+ 0.21218971E+01 0.43222795E-01 0.61346902E+00
+ 0.21231503E+01 0.43130558E-01 0.61545843E+00
+ 0.21244035E+01 0.43036751E-01 0.61744481E+00
+ 0.21256566E+01 0.42941381E-01 0.61942813E+00
+ 0.21269098E+01 0.42844454E-01 0.62140833E+00
+ 0.21281630E+01 0.42745977E-01 0.62338536E+00
+ 0.21294162E+01 0.42645958E-01 0.62535918E+00
+ 0.21306694E+01 0.42544404E-01 0.62732973E+00
+ 0.21319225E+01 0.42441323E-01 0.62929696E+00
+ 0.21331757E+01 0.42336723E-01 0.63126082E+00
+ 0.21344289E+01 0.42230613E-01 0.63322125E+00
+ 0.21356821E+01 0.42123002E-01 0.63517821E+00
+ 0.21369352E+01 0.42013898E-01 0.63713163E+00
+ 0.21381884E+01 0.41903312E-01 0.63908147E+00
+ 0.21394416E+01 0.41791253E-01 0.64102768E+00
+ 0.21406948E+01 0.41677730E-01 0.64297019E+00
+ 0.21419480E+01 0.41562754E-01 0.64490896E+00
+ 0.21432011E+01 0.41446336E-01 0.64684393E+00
+ 0.21444543E+01 0.41328486E-01 0.64877506E+00
+ 0.21457075E+01 0.41209216E-01 0.65070228E+00
+ 0.21469607E+01 0.41088536E-01 0.65262554E+00
+ 0.21482138E+01 0.40966458E-01 0.65454480E+00
+ 0.21494670E+01 0.40842994E-01 0.65646001E+00
+ 0.21507202E+01 0.40718155E-01 0.65837110E+00
+ 0.21519734E+01 0.40591955E-01 0.66027804E+00
+ 0.21532266E+01 0.40464405E-01 0.66218078E+00
+ 0.21544797E+01 0.40335519E-01 0.66407926E+00
+ 0.21557329E+01 0.40205308E-01 0.66597344E+00
+ 0.21569861E+01 0.40073786E-01 0.66786327E+00
+ 0.21582393E+01 0.39940966E-01 0.66974872E+00
+ 0.21594924E+01 0.39806861E-01 0.67162972E+00
+ 0.21607456E+01 0.39671485E-01 0.67350625E+00
+ 0.21619988E+01 0.39534852E-01 0.67537826E+00
+ 0.21632520E+01 0.39396975E-01 0.67724571E+00
+ 0.21645052E+01 0.39257868E-01 0.67910856E+00
+ 0.21657583E+01 0.39117545E-01 0.68096678E+00
+ 0.21670115E+01 0.38976021E-01 0.68282032E+00
+ 0.21682647E+01 0.38833309E-01 0.68466916E+00
+ 0.21695179E+01 0.38689423E-01 0.68651326E+00
+ 0.21707711E+01 0.38544379E-01 0.68835260E+00
+ 0.21720242E+01 0.38398191E-01 0.69018713E+00
+ 0.21732774E+01 0.38250873E-01 0.69201683E+00
+ 0.21745306E+01 0.38102440E-01 0.69384168E+00
+ 0.21757838E+01 0.37952905E-01 0.69566166E+00
+ 0.21770369E+01 0.37802285E-01 0.69747673E+00
+ 0.21782901E+01 0.37650594E-01 0.69928688E+00
+ 0.21795433E+01 0.37497845E-01 0.70109210E+00
+ 0.21807965E+01 0.37344055E-01 0.70289235E+00
+ 0.21820497E+01 0.37189237E-01 0.70468763E+00
+ 0.21833028E+01 0.37033406E-01 0.70647793E+00
+ 0.21845560E+01 0.36876577E-01 0.70826322E+00
+ 0.21858092E+01 0.36718764E-01 0.71004351E+00
+ 0.21870624E+01 0.36559982E-01 0.71181878E+00
+ 0.21883155E+01 0.36400246E-01 0.71358903E+00
+ 0.21895687E+01 0.36239569E-01 0.71535425E+00
+ 0.21908219E+01 0.36077966E-01 0.71711445E+00
+ 0.21920751E+01 0.35915452E-01 0.71886961E+00
+ 0.21933283E+01 0.35752040E-01 0.72061974E+00
+ 0.21945814E+01 0.35587745E-01 0.72236484E+00
+ 0.21958346E+01 0.35422581E-01 0.72410492E+00
+ 0.21970878E+01 0.35256562E-01 0.72583999E+00
+ 0.21983410E+01 0.35089701E-01 0.72757004E+00
+ 0.21995942E+01 0.34922013E-01 0.72929510E+00
+ 0.22008473E+01 0.34753511E-01 0.73101517E+00
+ 0.22021005E+01 0.34584209E-01 0.73273026E+00
+ 0.22033537E+01 0.34414119E-01 0.73444038E+00
+ 0.22046069E+01 0.34243256E-01 0.73614556E+00
+ 0.22058600E+01 0.34071633E-01 0.73784581E+00
+ 0.22071132E+01 0.33899263E-01 0.73954115E+00
+ 0.22083664E+01 0.33726158E-01 0.74123159E+00
+ 0.22096196E+01 0.33552333E-01 0.74291716E+00
+ 0.22108728E+01 0.33377798E-01 0.74459787E+00
+ 0.22121259E+01 0.33202568E-01 0.74627376E+00
+ 0.22133791E+01 0.33026655E-01 0.74794484E+00
+ 0.22146323E+01 0.32850071E-01 0.74961113E+00
+ 0.22158855E+01 0.32672829E-01 0.75127267E+00
+ 0.22171386E+01 0.32494940E-01 0.75292947E+00
+ 0.22183918E+01 0.32316418E-01 0.75458157E+00
+ 0.22196450E+01 0.32137273E-01 0.75622899E+00
+ 0.22208982E+01 0.31957519E-01 0.75787175E+00
+ 0.22221514E+01 0.31777167E-01 0.75950989E+00
+ 0.22234045E+01 0.31596228E-01 0.76114343E+00
+ 0.22246577E+01 0.31414715E-01 0.76277240E+00
+ 0.22259109E+01 0.31232639E-01 0.76439682E+00
+ 0.22271641E+01 0.31050012E-01 0.76601673E+00
+ 0.22284173E+01 0.30866845E-01 0.76763214E+00
+ 0.22296704E+01 0.30683150E-01 0.76924309E+00
+ 0.22309236E+01 0.30498938E-01 0.77084961E+00
+ 0.22321768E+01 0.30314221E-01 0.77245171E+00
+ 0.22334300E+01 0.30129010E-01 0.77404943E+00
+ 0.22346831E+01 0.29943317E-01 0.77564278E+00
+ 0.22359363E+01 0.29757152E-01 0.77723180E+00
+ 0.22371895E+01 0.29570528E-01 0.77881649E+00
+ 0.22384427E+01 0.29383456E-01 0.78039689E+00
+ 0.22396959E+01 0.29195947E-01 0.78197302E+00
+ 0.22409490E+01 0.29008012E-01 0.78354488E+00
+ 0.22422022E+01 0.28819664E-01 0.78511250E+00
+ 0.22434554E+01 0.28630913E-01 0.78667589E+00
+ 0.22447086E+01 0.28441772E-01 0.78823506E+00
+ 0.22459617E+01 0.28252251E-01 0.78979004E+00
+ 0.22472149E+01 0.28062364E-01 0.79134081E+00
+ 0.22484681E+01 0.27872122E-01 0.79288740E+00
+ 0.22497213E+01 0.27681536E-01 0.79442981E+00
+ 0.22509745E+01 0.27490619E-01 0.79596803E+00
+ 0.22522276E+01 0.27299383E-01 0.79750208E+00
+ 0.22534808E+01 0.27107841E-01 0.79903194E+00
+ 0.22547340E+01 0.26916006E-01 0.80055761E+00
+ 0.22559872E+01 0.26723889E-01 0.80207908E+00
+ 0.22572403E+01 0.26531503E-01 0.80359634E+00
+ 0.22584935E+01 0.26338863E-01 0.80510938E+00
+ 0.22597467E+01 0.26145980E-01 0.80661818E+00
+ 0.22609999E+01 0.25952870E-01 0.80812272E+00
+ 0.22622531E+01 0.25759544E-01 0.80962297E+00
+ 0.22635062E+01 0.25566018E-01 0.81111891E+00
+ 0.22647594E+01 0.25372305E-01 0.81261050E+00
+ 0.22660126E+01 0.25178419E-01 0.81409772E+00
+ 0.22672658E+01 0.24984376E-01 0.81558052E+00
+ 0.22685190E+01 0.24790191E-01 0.81705886E+00
+ 0.22697721E+01 0.24595877E-01 0.81853269E+00
+ 0.22710253E+01 0.24401452E-01 0.82000197E+00
+ 0.22722785E+01 0.24206929E-01 0.82146665E+00
+ 0.22735317E+01 0.24012327E-01 0.82292665E+00
+ 0.22747848E+01 0.23817660E-01 0.82438193E+00
+ 0.22760380E+01 0.23622945E-01 0.82583242E+00
+ 0.22772912E+01 0.23428200E-01 0.82727805E+00
+ 0.22785444E+01 0.23233441E-01 0.82871874E+00
+ 0.22797976E+01 0.23038686E-01 0.83015441E+00
+ 0.22810507E+01 0.22843953E-01 0.83158499E+00
+ 0.22823039E+01 0.22649259E-01 0.83301039E+00
+ 0.22835571E+01 0.22454624E-01 0.83443052E+00
+ 0.22848103E+01 0.22260066E-01 0.83584527E+00
+ 0.22860634E+01 0.22065604E-01 0.83725457E+00
+ 0.22873166E+01 0.21871257E-01 0.83865829E+00
+ 0.22885698E+01 0.21677045E-01 0.84005634E+00
+ 0.22898230E+01 0.21482989E-01 0.84144860E+00
+ 0.22910762E+01 0.21289108E-01 0.84283497E+00
+ 0.22923293E+01 0.21095423E-01 0.84421531E+00
+ 0.22935825E+01 0.20901955E-01 0.84558951E+00
+ 0.22948357E+01 0.20708725E-01 0.84695745E+00
+ 0.22960889E+01 0.20515755E-01 0.84831898E+00
+ 0.22973421E+01 0.20323066E-01 0.84967399E+00
+ 0.22985952E+01 0.20130682E-01 0.85102233E+00
+ 0.22998484E+01 0.19938623E-01 0.85236387E+00
+ 0.23011016E+01 0.19746913E-01 0.85369845E+00
+ 0.23023548E+01 0.19555575E-01 0.85502594E+00
+ 0.23036079E+01 0.19364631E-01 0.85634618E+00
+ 0.23048611E+01 0.19174106E-01 0.85765902E+00
+ 0.23061143E+01 0.18984022E-01 0.85896431E+00
+ 0.23073675E+01 0.18794404E-01 0.86026189E+00
+ 0.23086207E+01 0.18605276E-01 0.86155160E+00
+ 0.23098738E+01 0.18416662E-01 0.86283328E+00
+ 0.23111270E+01 0.18228586E-01 0.86410677E+00
+ 0.23123802E+01 0.18041073E-01 0.86537190E+00
+ 0.23136334E+01 0.17854148E-01 0.86662851E+00
+ 0.23148865E+01 0.17667835E-01 0.86787642E+00
+ 0.23161397E+01 0.17482161E-01 0.86911547E+00
+ 0.23173929E+01 0.17297149E-01 0.87034548E+00
+ 0.23186461E+01 0.17112825E-01 0.87156630E+00
+ 0.23198993E+01 0.16929214E-01 0.87277775E+00
+ 0.23211524E+01 0.16746342E-01 0.87397965E+00
+ 0.23224056E+01 0.16564234E-01 0.87517183E+00
+ 0.23236588E+01 0.16382916E-01 0.87635414E+00
+ 0.23249120E+01 0.16202413E-01 0.87752638E+00
+ 0.23261652E+01 0.16022750E-01 0.87868841E+00
+ 0.23274183E+01 0.15843954E-01 0.87984005E+00
+ 0.23286715E+01 0.15666048E-01 0.88098112E+00
+ 0.23299247E+01 0.15489059E-01 0.88211148E+00
+ 0.23311779E+01 0.15313012E-01 0.88323095E+00
+ 0.23324310E+01 0.15137931E-01 0.88433938E+00
+ 0.23336842E+01 0.14963843E-01 0.88543661E+00
+ 0.23349374E+01 0.14790771E-01 0.88652247E+00
+ 0.23361906E+01 0.14618741E-01 0.88759683E+00
+ 0.23374438E+01 0.14447777E-01 0.88865952E+00
+ 0.23386969E+01 0.14277903E-01 0.88971041E+00
+ 0.23399501E+01 0.14109143E-01 0.89074935E+00
+ 0.23412033E+01 0.13941521E-01 0.89177620E+00
+ 0.23424565E+01 0.13775061E-01 0.89279083E+00
+ 0.23437096E+01 0.13609787E-01 0.89379311E+00
+ 0.23449628E+01 0.13445720E-01 0.89478292E+00
+ 0.23462160E+01 0.13282884E-01 0.89576012E+00
+ 0.23474692E+01 0.13121302E-01 0.89672462E+00
+ 0.23487224E+01 0.12960994E-01 0.89767630E+00
+ 0.23499755E+01 0.12801984E-01 0.89861505E+00
+ 0.23512287E+01 0.12644291E-01 0.89954077E+00
+ 0.23524819E+01 0.12487937E-01 0.90045338E+00
+ 0.23537351E+01 0.12332943E-01 0.90135278E+00
+ 0.23549882E+01 0.12179328E-01 0.90223889E+00
+ 0.23562414E+01 0.12027112E-01 0.90311165E+00
+ 0.23574946E+01 0.11876314E-01 0.90397097E+00
+ 0.23587478E+01 0.11726953E-01 0.90481681E+00
+ 0.23600010E+01 0.11579046E-01 0.90564909E+00
+ 0.23612541E+01 0.11432611E-01 0.90646779E+00
+ 0.23625073E+01 0.11287665E-01 0.90727284E+00
+ 0.23637605E+01 0.11144225E-01 0.90806422E+00
+ 0.23650137E+01 0.11002307E-01 0.90884190E+00
+ 0.23662669E+01 0.10861925E-01 0.90960586E+00
+ 0.23675200E+01 0.10723095E-01 0.91035608E+00
+ 0.23687732E+01 0.10585831E-01 0.91109256E+00
+ 0.23700264E+01 0.10450146E-01 0.91181529E+00
+ 0.23712796E+01 0.10316054E-01 0.91252429E+00
+ 0.23725327E+01 0.10183566E-01 0.91321956E+00
+ 0.23737859E+01 0.10052695E-01 0.91390113E+00
+ 0.23750391E+01 0.99234511E-02 0.91456902E+00
+ 0.23762923E+01 0.97958452E-02 0.91522327E+00
+ 0.23775455E+01 0.96698871E-02 0.91586391E+00
+ 0.23787986E+01 0.95455858E-02 0.91649100E+00
+ 0.23800518E+01 0.94229499E-02 0.91710458E+00
+ 0.23813050E+01 0.93019870E-02 0.91770473E+00
+ 0.23825582E+01 0.91827044E-02 0.91829149E+00
+ 0.23838113E+01 0.90651086E-02 0.91886495E+00
+ 0.23850645E+01 0.89492053E-02 0.91942518E+00
+ 0.23863177E+01 0.88349997E-02 0.91997226E+00
+ 0.23875709E+01 0.87224963E-02 0.92050629E+00
+ 0.23888241E+01 0.86116988E-02 0.92102736E+00
+ 0.23900772E+01 0.85026103E-02 0.92153556E+00
+ 0.23913304E+01 0.83952335E-02 0.92203101E+00
+ 0.23925836E+01 0.82895700E-02 0.92251380E+00
+ 0.23938368E+01 0.81856210E-02 0.92298406E+00
+ 0.23950900E+01 0.80833870E-02 0.92344190E+00
+ 0.23963431E+01 0.79828679E-02 0.92388743E+00
+ 0.23975963E+01 0.78840629E-02 0.92432079E+00
+ 0.23988495E+01 0.77869705E-02 0.92474210E+00
+ 0.24001027E+01 0.76915888E-02 0.92515149E+00
+ 0.24013558E+01 0.75979152E-02 0.92554910E+00
+ 0.24026090E+01 0.75059462E-02 0.92593505E+00
+ 0.24038622E+01 0.74156782E-02 0.92630949E+00
+ 0.24051154E+01 0.73271067E-02 0.92667256E+00
+ 0.24063686E+01 0.72402267E-02 0.92702439E+00
+ 0.24076217E+01 0.71550327E-02 0.92736511E+00
+ 0.24088749E+01 0.70715186E-02 0.92769489E+00
+ 0.24101281E+01 0.69896777E-02 0.92801384E+00
+ 0.24113813E+01 0.69095030E-02 0.92832212E+00
+ 0.24126344E+01 0.68309868E-02 0.92861985E+00
+ 0.24138876E+01 0.67541210E-02 0.92890719E+00
+ 0.24151408E+01 0.66788971E-02 0.92918424E+00
+ 0.24163940E+01 0.66053061E-02 0.92945116E+00
+ 0.24176472E+01 0.65333385E-02 0.92970806E+00
+ 0.24189003E+01 0.64629845E-02 0.92995507E+00
+ 0.24201535E+01 0.63942338E-02 0.93019230E+00
+ 0.24214067E+01 0.63270758E-02 0.93041987E+00
+ 0.24226599E+01 0.62614997E-02 0.93063787E+00
+ 0.24239131E+01 0.61974940E-02 0.93084640E+00
+ 0.24251662E+01 0.61350473E-02 0.93104555E+00
+ 0.24264194E+01 0.60741477E-02 0.93123539E+00
+ 0.24276726E+01 0.60147830E-02 0.93141597E+00
+ 0.24289258E+01 0.59569408E-02 0.93158736E+00
+ 0.24301789E+01 0.59006085E-02 0.93174957E+00
+ 0.24314321E+01 0.58457735E-02 0.93190263E+00
+ 0.24326853E+01 0.57924226E-02 0.93204652E+00
+ 0.24339385E+01 0.57405428E-02 0.93218120E+00
+ 0.24351917E+01 0.56901209E-02 0.93230663E+00
+ 0.24364448E+01 0.56411435E-02 0.93242271E+00
+ 0.24376980E+01 0.55935972E-02 0.93252931E+00
+ 0.24389512E+01 0.55474685E-02 0.93262625E+00
+ 0.24402044E+01 0.55027439E-02 0.93271333E+00
+ 0.24414575E+01 0.54594098E-02 0.93279027E+00
+ 0.24427107E+01 0.54174529E-02 0.93285672E+00
+ 0.24439639E+01 0.53768597E-02 0.93291228E+00
+ 0.24452171E+01 0.53376167E-02 0.93295642E+00
+ 0.24464703E+01 0.52997106E-02 0.93298854E+00
+ 0.24477234E+01 0.52631283E-02 0.93300790E+00
+ 0.24489766E+01 0.52278567E-02 0.93301359E+00
+ 0.24502298E+01 0.51938829E-02 0.93300455E+00
+ 0.24514830E+01 0.51611942E-02 0.93297945E+00
+ 0.24527361E+01 0.51297779E-02 0.93293674E+00
+ 0.24539893E+01 0.50996219E-02 0.93287451E+00
+ 0.24552425E+01 0.50707141E-02 0.93279042E+00
+ 0.24564957E+01 0.50430426E-02 0.93268165E+00
+ 0.24577489E+01 0.50165959E-02 0.93254471E+00
+ 0.24590020E+01 0.49913629E-02 0.93237527E+00
+ 0.24602552E+01 0.49673326E-02 0.93216797E+00
+ 0.24615084E+01 0.49444944E-02 0.93191604E+00
+ 0.24627616E+01 0.49228383E-02 0.93161092E+00
+ 0.24640148E+01 0.49023542E-02 0.93124163E+00
+ 0.24652679E+01 0.48830329E-02 0.93079393E+00
+ 0.24665211E+01 0.48648653E-02 0.93024913E+00
+ 0.24677743E+01 0.48478426E-02 0.92958230E+00
+ 0.24690275E+01 0.48319568E-02 0.92875965E+00
+ 0.24702806E+01 0.48172000E-02 0.92773456E+00
+ 0.24715338E+01 0.48035647E-02 0.92644129E+00
+ 0.24727870E+01 0.47910441E-02 0.92478498E+00
+ 0.24740402E+01 0.47796314E-02 0.92262492E+00
+ 0.24752934E+01 0.47693203E-02 0.91974586E+00
+ 0.24765465E+01 0.47601044E-02 0.91580667E+00
+ 0.24777997E+01 0.47519772E-02 0.91024405E+00
+ 0.24790529E+01 0.47449313E-02 0.90208373E+00
+ 0.24803061E+01 0.47389567E-02 0.88955170E+00
+ 0.24815592E+01 0.47340373E-02 0.86924429E+00
+ 0.24828124E+01 0.47301409E-02 0.83437543E+00
+ 0.24840656E+01 0.47271915E-02 0.77173406E+00
+ 0.24853188E+01 0.47249917E-02 0.66142102E+00
+ 0.24865705E+01 0.47230630E-02 0.68441740E+00
+
diff --git a/tests/data/lk99_liangsi_1/k000_hr.dat b/tests/data/lk99_liangsi_1/k000_hr.dat
new file mode 100644
index 0000000..77c787a
--- /dev/null
+++ b/tests/data/lk99_liangsi_1/k000_hr.dat
@@ -0,0 +1,1870 @@
+ written on 7Aug2023 at 06:31:18
+ 2
+ 459
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 4 2 2 2 2 2 2 2 4
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2 4 2 2 2 2 2
+ 2 2 4 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 4 2 2 2 2 2 2 2 4
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2 4 2 2 2 2 2
+ 2 2 4 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2 2 1 1 1 1 1
+ 1 1 2 2 1 1 1 1 1 1 1 2 2 1 1
+ 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2
+ 2 1 1 1 1 1 1 1 2
+ -4 -3 -4 1 1 -0.000028 -0.000000
+ -4 -3 -4 2 1 0.000011 0.000000
+ -4 -3 -4 1 2 -0.000006 -0.000000
+ -4 -3 -4 2 2 -0.000034 0.000000
+ -4 -3 -3 1 1 -0.000031 0.000000
+ -4 -3 -3 2 1 -0.000018 0.000000
+ -4 -3 -3 1 2 0.000008 0.000000
+ -4 -3 -3 2 2 -0.000003 -0.000000
+ -4 -3 -2 1 1 0.000015 -0.000000
+ -4 -3 -2 2 1 0.000010 0.000000
+ -4 -3 -2 1 2 -0.000011 -0.000000
+ -4 -3 -2 2 2 0.000009 0.000000
+ -4 -3 -1 1 1 -0.000026 0.000000
+ -4 -3 -1 2 1 0.000004 0.000000
+ -4 -3 -1 1 2 0.000007 -0.000000
+ -4 -3 -1 2 2 -0.000062 -0.000000
+ -4 -3 0 1 1 0.000017 0.000000
+ -4 -3 0 2 1 -0.000010 0.000000
+ -4 -3 0 1 2 0.000002 -0.000000
+ -4 -3 0 2 2 0.000016 -0.000000
+ -4 -3 1 1 1 -0.000044 0.000000
+ -4 -3 1 2 1 -0.000001 -0.000000
+ -4 -3 1 1 2 -0.000016 0.000000
+ -4 -3 1 2 2 -0.000018 -0.000000
+ -4 -3 2 1 1 0.000001 0.000000
+ -4 -3 2 2 1 0.000001 -0.000000
+ -4 -3 2 1 2 0.000013 -0.000000
+ -4 -3 2 2 2 0.000026 -0.000000
+ -4 -3 3 1 1 -0.000020 -0.000000
+ -4 -3 3 2 1 -0.000009 0.000000
+ -4 -3 3 1 2 -0.000004 -0.000000
+ -4 -3 3 2 2 -0.000001 0.000000
+ -4 -3 4 1 1 -0.000028 -0.000000
+ -4 -3 4 2 1 0.000011 0.000000
+ -4 -3 4 1 2 -0.000006 -0.000000
+ -4 -3 4 2 2 -0.000034 0.000000
+ -4 -2 -4 1 1 0.000023 0.000000
+ -4 -2 -4 2 1 -0.000004 -0.000000
+ -4 -2 -4 1 2 -0.000009 -0.000000
+ -4 -2 -4 2 2 0.000026 -0.000000
+ -4 -2 -3 1 1 -0.000009 0.000000
+ -4 -2 -3 2 1 0.000010 0.000000
+ -4 -2 -3 1 2 -0.000009 0.000000
+ -4 -2 -3 2 2 -0.000012 -0.000000
+ -4 -2 -2 1 1 -0.000007 0.000000
+ -4 -2 -2 2 1 -0.000000 -0.000000
+ -4 -2 -2 1 2 -0.000003 0.000000
+ -4 -2 -2 2 2 0.000007 -0.000000
+ -4 -2 -1 1 1 0.000043 -0.000000
+ -4 -2 -1 2 1 0.000041 0.000000
+ -4 -2 -1 1 2 0.000047 -0.000000
+ -4 -2 -1 2 2 -0.000049 0.000000
+ -4 -2 0 1 1 0.000006 0.000000
+ -4 -2 0 2 1 -0.000008 -0.000000
+ -4 -2 0 1 2 -0.000000 0.000000
+ -4 -2 0 2 2 0.000025 -0.000000
+ -4 -2 1 1 1 0.000008 -0.000000
+ -4 -2 1 2 1 -0.000022 0.000000
+ -4 -2 1 1 2 0.000008 0.000000
+ -4 -2 1 2 2 0.000010 0.000000
+ -4 -2 2 1 1 -0.000005 0.000000
+ -4 -2 2 2 1 -0.000009 -0.000000
+ -4 -2 2 1 2 0.000011 0.000000
+ -4 -2 2 2 2 -0.000018 -0.000000
+ -4 -2 3 1 1 -0.000014 -0.000000
+ -4 -2 3 2 1 -0.000020 0.000000
+ -4 -2 3 1 2 0.000003 0.000000
+ -4 -2 3 2 2 -0.000015 0.000000
+ -4 -2 4 1 1 0.000023 0.000000
+ -4 -2 4 2 1 -0.000004 -0.000000
+ -4 -2 4 1 2 -0.000009 -0.000000
+ -4 -2 4 2 2 0.000026 -0.000000
+ -4 -1 -4 1 1 -0.000033 -0.000000
+ -4 -1 -4 2 1 0.000010 0.000000
+ -4 -1 -4 1 2 -0.000007 0.000000
+ -4 -1 -4 2 2 -0.000028 0.000000
+ -4 -1 -3 1 1 -0.000007 -0.000000
+ -4 -1 -3 2 1 -0.000023 -0.000000
+ -4 -1 -3 1 2 0.000003 -0.000000
+ -4 -1 -3 2 2 -0.000027 0.000000
+ -4 -1 -2 1 1 0.000014 -0.000000
+ -4 -1 -2 2 1 0.000014 -0.000000
+ -4 -1 -2 1 2 -0.000007 -0.000000
+ -4 -1 -2 2 2 0.000010 0.000000
+ -4 -1 -1 1 1 -0.000063 -0.000000
+ -4 -1 -1 2 1 0.000010 -0.000000
+ -4 -1 -1 1 2 0.000013 0.000000
+ -4 -1 -1 2 2 -0.000025 0.000000
+ -4 -1 0 1 1 0.000026 -0.000000
+ -4 -1 0 2 1 -0.000003 0.000000
+ -4 -1 0 1 2 0.000010 0.000000
+ -4 -1 0 2 2 0.000007 0.000000
+ -4 -1 1 1 1 -0.000022 -0.000000
+ -4 -1 1 2 1 0.000000 -0.000000
+ -4 -1 1 1 2 -0.000016 0.000000
+ -4 -1 1 2 2 -0.000040 0.000000
+ -4 -1 2 1 1 0.000017 -0.000000
+ -4 -1 2 2 1 -0.000020 -0.000000
+ -4 -1 2 1 2 -0.000007 0.000000
+ -4 -1 2 2 2 0.000011 0.000000
+ -4 -1 3 1 1 -0.000002 0.000000
+ -4 -1 3 2 1 -0.000008 -0.000000
+ -4 -1 3 1 2 -0.000003 -0.000000
+ -4 -1 3 2 2 -0.000019 -0.000000
+ -4 -1 4 1 1 -0.000033 -0.000000
+ -4 -1 4 2 1 0.000010 0.000000
+ -4 -1 4 1 2 -0.000007 0.000000
+ -4 -1 4 2 2 -0.000028 0.000000
+ -3 -3 -4 1 1 -0.000010 -0.000000
+ -3 -3 -4 2 1 0.000013 -0.000000
+ -3 -3 -4 1 2 0.000017 -0.000000
+ -3 -3 -4 2 2 -0.000002 0.000000
+ -3 -3 -3 1 1 -0.000004 -0.000000
+ -3 -3 -3 2 1 -0.000001 -0.000000
+ -3 -3 -3 1 2 0.000008 -0.000000
+ -3 -3 -3 2 2 -0.000007 0.000000
+ -3 -3 -2 1 1 -0.000024 -0.000000
+ -3 -3 -2 2 1 -0.000006 -0.000000
+ -3 -3 -2 1 2 -0.000008 0.000000
+ -3 -3 -2 2 2 -0.000005 0.000000
+ -3 -3 -1 1 1 0.000029 0.000000
+ -3 -3 -1 2 1 0.000029 0.000000
+ -3 -3 -1 1 2 -0.000043 -0.000000
+ -3 -3 -1 2 2 0.000010 -0.000000
+ -3 -3 0 1 1 -0.000088 -0.000000
+ -3 -3 0 2 1 -0.000019 -0.000000
+ -3 -3 0 1 2 -0.000009 -0.000000
+ -3 -3 0 2 2 -0.000083 0.000000
+ -3 -3 1 1 1 0.000041 -0.000000
+ -3 -3 1 2 1 -0.000026 0.000000
+ -3 -3 1 1 2 -0.000039 -0.000000
+ -3 -3 1 2 2 0.000013 0.000000
+ -3 -3 2 1 1 -0.000032 -0.000000
+ -3 -3 2 2 1 0.000004 -0.000000
+ -3 -3 2 1 2 -0.000004 0.000000
+ -3 -3 2 2 2 -0.000032 0.000000
+ -3 -3 3 1 1 0.000003 -0.000000
+ -3 -3 3 2 1 0.000010 0.000000
+ -3 -3 3 1 2 -0.000001 -0.000000
+ -3 -3 3 2 2 0.000001 0.000000
+ -3 -3 4 1 1 -0.000010 -0.000000
+ -3 -3 4 2 1 0.000013 -0.000000
+ -3 -3 4 1 2 0.000017 -0.000000
+ -3 -3 4 2 2 -0.000002 0.000000
+ -3 -2 -4 1 1 0.000016 -0.000000
+ -3 -2 -4 2 1 -0.000018 0.000000
+ -3 -2 -4 1 2 -0.000016 0.000000
+ -3 -2 -4 2 2 0.000011 0.000000
+ -3 -2 -3 1 1 -0.000005 -0.000000
+ -3 -2 -3 2 1 0.000006 -0.000000
+ -3 -2 -3 1 2 -0.000002 -0.000000
+ -3 -2 -3 2 2 -0.000007 0.000000
+ -3 -2 -2 1 1 -0.000009 0.000000
+ -3 -2 -2 2 1 0.000023 0.000000
+ -3 -2 -2 1 2 -0.000002 -0.000000
+ -3 -2 -2 2 2 0.000001 -0.000000
+ -3 -2 -1 1 1 -0.000006 -0.000000
+ -3 -2 -1 2 1 -0.000090 -0.000000
+ -3 -2 -1 1 2 0.000029 -0.000000
+ -3 -2 -1 2 2 0.000002 0.000000
+ -3 -2 0 1 1 0.000066 0.000000
+ -3 -2 0 2 1 0.000089 0.000000
+ -3 -2 0 1 2 -0.000047 -0.000000
+ -3 -2 0 2 2 -0.000003 -0.000000
+ -3 -2 1 1 1 -0.000059 -0.000000
+ -3 -2 1 2 1 -0.000043 -0.000000
+ -3 -2 1 1 2 0.000018 0.000000
+ -3 -2 1 2 2 -0.000006 0.000000
+ -3 -2 2 1 1 0.000021 -0.000000
+ -3 -2 2 2 1 0.000030 0.000000
+ -3 -2 2 1 2 -0.000000 -0.000000
+ -3 -2 2 2 2 -0.000017 0.000000
+ -3 -2 3 1 1 -0.000011 -0.000000
+ -3 -2 3 2 1 0.000009 -0.000000
+ -3 -2 3 1 2 0.000015 -0.000000
+ -3 -2 3 2 2 0.000010 0.000000
+ -3 -2 4 1 1 0.000016 -0.000000
+ -3 -2 4 2 1 -0.000018 0.000000
+ -3 -2 4 1 2 -0.000016 0.000000
+ -3 -2 4 2 2 0.000011 0.000000
+ -3 -1 -4 1 1 0.000007 0.000000
+ -3 -1 -4 2 1 0.000024 0.000000
+ -3 -1 -4 1 2 0.000005 0.000000
+ -3 -1 -4 2 2 0.000014 -0.000000
+ -3 -1 -3 1 1 0.000001 0.000000
+ -3 -1 -3 2 1 -0.000004 -0.000000
+ -3 -1 -3 1 2 0.000020 -0.000000
+ -3 -1 -3 2 2 -0.000004 -0.000000
+ -3 -1 -2 1 1 0.000009 -0.000000
+ -3 -1 -2 2 1 0.000003 0.000000
+ -3 -1 -2 1 2 0.000037 0.000000
+ -3 -1 -2 2 2 -0.000017 0.000000
+ -3 -1 -1 1 1 -0.000025 0.000000
+ -3 -1 -1 2 1 0.000051 0.000000
+ -3 -1 -1 1 2 -0.000043 0.000000
+ -3 -1 -1 2 2 -0.000055 -0.000000
+ -3 -1 0 1 1 -0.000035 -0.000000
+ -3 -1 0 2 1 -0.000144 -0.000000
+ -3 -1 0 1 2 0.000057 0.000000
+ -3 -1 0 2 2 0.000083 0.000000
+ -3 -1 1 1 1 0.000047 0.000000
+ -3 -1 1 2 1 0.000038 0.000000
+ -3 -1 1 1 2 -0.000041 -0.000000
+ -3 -1 1 2 2 -0.000001 -0.000000
+ -3 -1 2 1 1 -0.000018 -0.000000
+ -3 -1 2 2 1 -0.000015 -0.000000
+ -3 -1 2 1 2 0.000012 0.000000
+ -3 -1 2 2 2 0.000028 0.000000
+ -3 -1 3 1 1 0.000018 0.000000
+ -3 -1 3 2 1 0.000023 0.000000
+ -3 -1 3 1 2 -0.000029 -0.000000
+ -3 -1 3 2 2 -0.000017 -0.000000
+ -3 -1 4 1 1 0.000007 0.000000
+ -3 -1 4 2 1 0.000024 0.000000
+ -3 -1 4 1 2 0.000005 0.000000
+ -3 -1 4 2 2 0.000014 -0.000000
+ -3 0 -4 1 1 -0.000017 0.000000
+ -3 0 -4 2 1 -0.000009 -0.000000
+ -3 0 -4 1 2 -0.000014 -0.000000
+ -3 0 -4 2 2 0.000006 -0.000000
+ -3 0 -3 1 1 -0.000002 0.000000
+ -3 0 -3 2 1 -0.000007 0.000000
+ -3 0 -3 1 2 0.000005 0.000000
+ -3 0 -3 2 2 0.000006 -0.000000
+ -3 0 -2 1 1 -0.000034 0.000000
+ -3 0 -2 2 1 -0.000004 0.000000
+ -3 0 -2 1 2 0.000003 -0.000000
+ -3 0 -2 2 2 -0.000030 -0.000000
+ -3 0 -1 1 1 0.000051 0.000000
+ -3 0 -1 2 1 0.000023 0.000000
+ -3 0 -1 1 2 0.000036 -0.000000
+ -3 0 -1 2 2 0.000003 -0.000000
+ -3 0 0 1 1 -0.000075 0.000000
+ -3 0 0 2 1 0.000010 -0.000000
+ -3 0 0 1 2 -0.000002 -0.000000
+ -3 0 0 2 2 -0.000096 -0.000000
+ -3 0 1 1 1 0.000022 -0.000000
+ -3 0 1 2 1 -0.000025 0.000000
+ -3 0 1 1 2 0.000050 0.000000
+ -3 0 1 2 2 0.000017 0.000000
+ -3 0 2 1 1 -0.000004 0.000000
+ -3 0 2 2 1 -0.000006 0.000000
+ -3 0 2 1 2 -0.000005 -0.000000
+ -3 0 2 2 2 -0.000025 -0.000000
+ -3 0 3 1 1 -0.000008 0.000000
+ -3 0 3 2 1 0.000004 0.000000
+ -3 0 3 1 2 -0.000004 0.000000
+ -3 0 3 2 2 -0.000002 -0.000000
+ -3 0 4 1 1 -0.000017 0.000000
+ -3 0 4 2 1 -0.000009 -0.000000
+ -3 0 4 1 2 -0.000014 -0.000000
+ -3 0 4 2 2 0.000006 -0.000000
+ -2 -4 -4 1 1 0.000020 -0.000000
+ -2 -4 -4 2 1 0.000002 0.000000
+ -2 -4 -4 1 2 0.000006 -0.000000
+ -2 -4 -4 2 2 0.000029 0.000000
+ -2 -4 -3 1 1 -0.000023 0.000000
+ -2 -4 -3 2 1 0.000016 0.000000
+ -2 -4 -3 1 2 -0.000007 0.000000
+ -2 -4 -3 2 2 -0.000006 -0.000000
+ -2 -4 -2 1 1 -0.000012 -0.000000
+ -2 -4 -2 2 1 0.000004 0.000000
+ -2 -4 -2 1 2 -0.000017 0.000000
+ -2 -4 -2 2 2 -0.000010 0.000000
+ -2 -4 -1 1 1 0.000000 0.000000
+ -2 -4 -1 2 1 0.000020 0.000000
+ -2 -4 -1 1 2 -0.000009 0.000000
+ -2 -4 -1 2 2 0.000017 -0.000000
+ -2 -4 0 1 1 0.000019 -0.000000
+ -2 -4 0 2 1 0.000013 0.000000
+ -2 -4 0 1 2 0.000003 0.000000
+ -2 -4 0 2 2 0.000012 0.000000
+ -2 -4 1 1 1 0.000011 0.000000
+ -2 -4 1 2 1 -0.000058 0.000000
+ -2 -4 1 1 2 -0.000062 -0.000000
+ -2 -4 1 2 2 -0.000016 -0.000000
+ -2 -4 2 1 1 0.000002 -0.000000
+ -2 -4 2 2 1 0.000005 0.000000
+ -2 -4 2 1 2 0.000007 0.000000
+ -2 -4 2 2 2 -0.000003 0.000000
+ -2 -4 3 1 1 -0.000011 0.000000
+ -2 -4 3 2 1 -0.000010 0.000000
+ -2 -4 3 1 2 0.000009 0.000000
+ -2 -4 3 2 2 -0.000010 -0.000000
+ -2 -4 4 1 1 0.000020 -0.000000
+ -2 -4 4 2 1 0.000002 0.000000
+ -2 -4 4 1 2 0.000006 -0.000000
+ -2 -4 4 2 2 0.000029 0.000000
+ -2 -3 -4 1 1 0.000024 0.000000
+ -2 -3 -4 2 1 -0.000015 -0.000000
+ -2 -3 -4 1 2 0.000005 -0.000000
+ -2 -3 -4 2 2 -0.000003 -0.000000
+ -2 -3 -3 1 1 -0.000009 -0.000000
+ -2 -3 -3 2 1 -0.000038 -0.000000
+ -2 -3 -3 1 2 0.000014 0.000000
+ -2 -3 -3 2 2 0.000011 0.000000
+ -2 -3 -2 1 1 0.000013 0.000000
+ -2 -3 -2 2 1 0.000030 -0.000000
+ -2 -3 -2 1 2 0.000005 -0.000000
+ -2 -3 -2 2 2 -0.000002 -0.000000
+ -2 -3 -1 1 1 0.000015 -0.000000
+ -2 -3 -1 2 1 -0.000052 -0.000000
+ -2 -3 -1 1 2 0.000023 0.000000
+ -2 -3 -1 2 2 0.000031 0.000000
+ -2 -3 0 1 1 0.000009 0.000000
+ -2 -3 0 2 1 0.000163 0.000000
+ -2 -3 0 1 2 -0.000031 -0.000000
+ -2 -3 0 2 2 0.000039 -0.000000
+ -2 -3 1 1 1 -0.000039 -0.000000
+ -2 -3 1 2 1 -0.000056 -0.000000
+ -2 -3 1 1 2 0.000034 0.000000
+ -2 -3 1 2 2 -0.000041 0.000000
+ -2 -3 2 1 1 0.000005 0.000000
+ -2 -3 2 2 1 -0.000006 -0.000000
+ -2 -3 2 1 2 -0.000039 -0.000000
+ -2 -3 2 2 2 -0.000013 -0.000000
+ -2 -3 3 1 1 0.000005 -0.000000
+ -2 -3 3 2 1 0.000007 -0.000000
+ -2 -3 3 1 2 -0.000018 0.000000
+ -2 -3 3 2 2 -0.000009 0.000000
+ -2 -3 4 1 1 0.000024 0.000000
+ -2 -3 4 2 1 -0.000015 -0.000000
+ -2 -3 4 1 2 0.000005 -0.000000
+ -2 -3 4 2 2 -0.000003 -0.000000
+ -2 -2 -4 1 1 -0.000037 -0.000000
+ -2 -2 -4 2 1 -0.000011 -0.000000
+ -2 -2 -4 1 2 0.000003 0.000000
+ -2 -2 -4 2 2 -0.000010 0.000000
+ -2 -2 -3 1 1 -0.000054 0.000000
+ -2 -2 -3 2 1 0.000016 0.000000
+ -2 -2 -3 1 2 0.000020 0.000000
+ -2 -2 -3 2 2 -0.000026 -0.000000
+ -2 -2 -2 1 1 0.000081 -0.000000
+ -2 -2 -2 2 1 -0.000012 0.000000
+ -2 -2 -2 1 2 0.000006 -0.000000
+ -2 -2 -2 2 2 0.000038 0.000000
+ -2 -2 -1 1 1 -0.000198 0.000000
+ -2 -2 -1 2 1 0.000133 -0.000000
+ -2 -2 -1 1 2 -0.000028 0.000000
+ -2 -2 -1 2 2 -0.000085 -0.000000
+ -2 -2 0 1 1 0.000123 -0.000000
+ -2 -2 0 2 1 -0.000634 -0.000000
+ -2 -2 0 1 2 0.000058 0.000000
+ -2 -2 0 2 2 0.000251 0.000000
+ -2 -2 1 1 1 -0.000030 0.000000
+ -2 -2 1 2 1 0.000245 0.000000
+ -2 -2 1 1 2 -0.000067 0.000000
+ -2 -2 1 2 2 -0.000027 -0.000000
+ -2 -2 2 1 1 0.000019 -0.000000
+ -2 -2 2 2 1 -0.000030 -0.000000
+ -2 -2 2 1 2 0.000043 0.000000
+ -2 -2 2 2 2 0.000009 0.000000
+ -2 -2 3 1 1 -0.000026 0.000000
+ -2 -2 3 2 1 0.000033 -0.000000
+ -2 -2 3 1 2 -0.000020 0.000000
+ -2 -2 3 2 2 -0.000022 -0.000000
+ -2 -2 4 1 1 -0.000037 -0.000000
+ -2 -2 4 2 1 -0.000011 -0.000000
+ -2 -2 4 1 2 0.000003 0.000000
+ -2 -2 4 2 2 -0.000010 0.000000
+ -2 -1 -4 1 1 -0.000036 0.000000
+ -2 -1 -4 2 1 -0.000005 0.000000
+ -2 -1 -4 1 2 0.000001 -0.000000
+ -2 -1 -4 2 2 -0.000048 -0.000000
+ -2 -1 -3 1 1 0.000043 0.000000
+ -2 -1 -3 2 1 -0.000010 0.000000
+ -2 -1 -3 1 2 -0.000010 -0.000000
+ -2 -1 -3 2 2 0.000009 -0.000000
+ -2 -1 -2 1 1 -0.000112 0.000000
+ -2 -1 -2 2 1 -0.000015 -0.000000
+ -2 -1 -2 1 2 0.000020 0.000000
+ -2 -1 -2 2 2 -0.000057 -0.000000
+ -2 -1 -1 1 1 0.000473 0.000000
+ -2 -1 -1 2 1 0.000194 0.000000
+ -2 -1 -1 1 2 -0.000157 -0.000000
+ -2 -1 -1 2 2 0.000083 -0.000000
+ -2 -1 0 1 1 -0.000906 -0.000000
+ -2 -1 0 2 1 -0.000071 -0.000000
+ -2 -1 0 1 2 0.000092 0.000000
+ -2 -1 0 2 2 -0.000286 0.000000
+ -2 -1 1 1 1 0.000134 -0.000000
+ -2 -1 1 2 1 0.000137 0.000000
+ -2 -1 1 1 2 0.000133 -0.000000
+ -2 -1 1 2 2 0.000129 0.000000
+ -2 -1 2 1 1 -0.000100 0.000000
+ -2 -1 2 2 1 -0.000025 -0.000000
+ -2 -1 2 1 2 0.000027 0.000000
+ -2 -1 2 2 2 0.000013 -0.000000
+ -2 -1 3 1 1 0.000007 0.000000
+ -2 -1 3 2 1 -0.000008 0.000000
+ -2 -1 3 1 2 -0.000025 0.000000
+ -2 -1 3 2 2 0.000008 -0.000000
+ -2 -1 4 1 1 -0.000036 0.000000
+ -2 -1 4 2 1 -0.000005 0.000000
+ -2 -1 4 1 2 0.000001 -0.000000
+ -2 -1 4 2 2 -0.000048 -0.000000
+ -2 0 -4 1 1 -0.000012 0.000000
+ -2 0 -4 2 1 -0.000002 0.000000
+ -2 0 -4 1 2 -0.000017 0.000000
+ -2 0 -4 2 2 -0.000035 -0.000000
+ -2 0 -3 1 1 -0.000032 -0.000000
+ -2 0 -3 2 1 -0.000033 -0.000000
+ -2 0 -3 1 2 0.000022 -0.000000
+ -2 0 -3 2 2 -0.000017 0.000000
+ -2 0 -2 1 1 0.000013 0.000000
+ -2 0 -2 2 1 0.000041 -0.000000
+ -2 0 -2 1 2 -0.000036 0.000000
+ -2 0 -2 2 2 0.000015 -0.000000
+ -2 0 -1 1 1 -0.000123 -0.000000
+ -2 0 -1 2 1 -0.000212 -0.000000
+ -2 0 -1 1 2 0.000115 0.000000
+ -2 0 -1 2 2 0.000065 0.000000
+ -2 0 0 1 1 0.000500 0.000000
+ -2 0 0 2 1 0.000457 0.000000
+ -2 0 0 1 2 -0.000270 -0.000000
+ -2 0 0 2 2 -0.000126 -0.000000
+ -2 0 1 1 1 -0.000174 -0.000000
+ -2 0 1 2 1 -0.000165 -0.000000
+ -2 0 1 1 2 0.000008 -0.000000
+ -2 0 1 2 2 -0.000109 0.000000
+ -2 0 2 1 1 0.000056 0.000000
+ -2 0 2 2 1 0.000032 0.000000
+ -2 0 2 1 2 0.000011 0.000000
+ -2 0 2 2 2 0.000063 -0.000000
+ -2 0 3 1 1 -0.000050 0.000000
+ -2 0 3 2 1 -0.000020 -0.000000
+ -2 0 3 1 2 -0.000023 -0.000000
+ -2 0 3 2 2 -0.000029 -0.000000
+ -2 0 4 1 1 -0.000012 0.000000
+ -2 0 4 2 1 -0.000002 0.000000
+ -2 0 4 1 2 -0.000017 0.000000
+ -2 0 4 2 2 -0.000035 -0.000000
+ -2 1 -4 1 1 0.000026 -0.000000
+ -2 1 -4 2 1 0.000011 -0.000000
+ -2 1 -4 1 2 0.000009 -0.000000
+ -2 1 -4 2 2 0.000001 0.000000
+ -2 1 -3 1 1 -0.000005 0.000000
+ -2 1 -3 2 1 -0.000010 0.000000
+ -2 1 -3 1 2 -0.000018 -0.000000
+ -2 1 -3 2 2 0.000003 -0.000000
+ -2 1 -2 1 1 -0.000023 -0.000000
+ -2 1 -2 2 1 -0.000009 -0.000000
+ -2 1 -2 1 2 0.000024 0.000000
+ -2 1 -2 2 2 0.000026 0.000000
+ -2 1 -1 1 1 -0.000004 0.000000
+ -2 1 -1 2 1 0.000020 0.000000
+ -2 1 -1 1 2 -0.000047 -0.000000
+ -2 1 -1 2 2 -0.000062 -0.000000
+ -2 1 0 1 1 -0.000014 -0.000000
+ -2 1 0 2 1 -0.000060 -0.000000
+ -2 1 0 1 2 0.000089 0.000000
+ -2 1 0 2 2 0.000077 0.000000
+ -2 1 1 1 1 0.000034 0.000000
+ -2 1 1 2 1 0.000079 0.000000
+ -2 1 1 1 2 -0.000049 -0.000000
+ -2 1 1 2 2 -0.000038 -0.000000
+ -2 1 2 1 1 -0.000014 -0.000000
+ -2 1 2 2 1 -0.000025 -0.000000
+ -2 1 2 1 2 0.000003 -0.000000
+ -2 1 2 2 2 0.000006 0.000000
+ -2 1 3 1 1 -0.000007 -0.000000
+ -2 1 3 2 1 -0.000002 -0.000000
+ -2 1 3 1 2 0.000004 -0.000000
+ -2 1 3 2 2 -0.000006 0.000000
+ -2 1 4 1 1 0.000026 -0.000000
+ -2 1 4 2 1 0.000011 -0.000000
+ -2 1 4 1 2 0.000009 -0.000000
+ -2 1 4 2 2 0.000001 0.000000
+ -2 2 -4 1 1 0.000030 -0.000000
+ -2 2 -4 2 1 -0.000000 0.000000
+ -2 2 -4 1 2 0.000005 0.000000
+ -2 2 -4 2 2 0.000019 0.000000
+ -2 2 -3 1 1 -0.000006 0.000000
+ -2 2 -3 2 1 0.000016 -0.000000
+ -2 2 -3 1 2 -0.000007 0.000000
+ -2 2 -3 2 2 -0.000023 -0.000000
+ -2 2 -2 1 1 -0.000017 0.000000
+ -2 2 -2 2 1 0.000016 0.000000
+ -2 2 -2 1 2 -0.000005 0.000000
+ -2 2 -2 2 2 -0.000006 -0.000000
+ -2 2 -1 1 1 0.000018 -0.000000
+ -2 2 -1 2 1 0.000017 0.000000
+ -2 2 -1 1 2 -0.000013 0.000000
+ -2 2 -1 2 2 -0.000000 0.000000
+ -2 2 0 1 1 0.000021 -0.000000
+ -2 2 0 2 1 0.000000 0.000000
+ -2 2 0 1 2 -0.000009 -0.000000
+ -2 2 0 2 2 0.000010 0.000000
+ -2 2 1 1 1 -0.000063 -0.000000
+ -2 2 1 2 1 0.000018 -0.000000
+ -2 2 1 1 2 0.000014 0.000000
+ -2 2 1 2 2 0.000057 0.000000
+ -2 2 2 1 1 0.000004 0.000000
+ -2 2 2 2 1 -0.000005 0.000000
+ -2 2 2 1 2 -0.000003 0.000000
+ -2 2 2 2 2 -0.000005 -0.000000
+ -2 2 3 1 1 -0.000011 -0.000000
+ -2 2 3 2 1 -0.000009 -0.000000
+ -2 2 3 1 2 0.000009 0.000000
+ -2 2 3 2 2 -0.000010 0.000000
+ -2 2 4 1 1 0.000030 -0.000000
+ -2 2 4 2 1 -0.000000 0.000000
+ -2 2 4 1 2 0.000005 0.000000
+ -2 2 4 2 2 0.000019 0.000000
+ -1 -4 -4 1 1 -0.000031 0.000000
+ -1 -4 -4 2 1 -0.000013 -0.000000
+ -1 -4 -4 1 2 0.000005 -0.000000
+ -1 -4 -4 2 2 -0.000031 -0.000000
+ -1 -4 -3 1 1 -0.000010 -0.000000
+ -1 -4 -3 2 1 0.000015 0.000000
+ -1 -4 -3 1 2 0.000009 -0.000000
+ -1 -4 -3 2 2 -0.000011 0.000000
+ -1 -4 -2 1 1 0.000023 0.000000
+ -1 -4 -2 2 1 0.000012 -0.000000
+ -1 -4 -2 1 2 0.000000 -0.000000
+ -1 -4 -2 2 2 0.000004 -0.000000
+ -1 -4 -1 1 1 -0.000027 0.000000
+ -1 -4 -1 2 1 0.000009 -0.000000
+ -1 -4 -1 1 2 0.000023 -0.000000
+ -1 -4 -1 2 2 -0.000035 -0.000000
+ -1 -4 0 1 1 0.000007 0.000000
+ -1 -4 0 2 1 0.000005 -0.000000
+ -1 -4 0 1 2 -0.000004 -0.000000
+ -1 -4 0 2 2 0.000026 -0.000000
+ -1 -4 1 1 1 -0.000043 -0.000000
+ -1 -4 1 2 1 -0.000015 0.000000
+ -1 -4 1 1 2 -0.000020 -0.000000
+ -1 -4 1 2 2 -0.000045 0.000000
+ -1 -4 2 1 1 0.000007 -0.000000
+ -1 -4 2 2 1 -0.000014 -0.000000
+ -1 -4 2 1 2 0.000008 -0.000000
+ -1 -4 2 2 2 0.000017 0.000000
+ -1 -4 3 1 1 -0.000013 0.000000
+ -1 -4 3 2 1 0.000029 0.000000
+ -1 -4 3 1 2 0.000002 -0.000000
+ -1 -4 3 2 2 -0.000021 -0.000000
+ -1 -4 4 1 1 -0.000031 0.000000
+ -1 -4 4 2 1 -0.000013 -0.000000
+ -1 -4 4 1 2 0.000005 -0.000000
+ -1 -4 4 2 2 -0.000031 -0.000000
+ -1 -3 -4 1 1 -0.000002 0.000000
+ -1 -3 -4 2 1 0.000008 0.000000
+ -1 -3 -4 1 2 0.000006 0.000000
+ -1 -3 -4 2 2 0.000029 -0.000000
+ -1 -3 -3 1 1 0.000014 0.000000
+ -1 -3 -3 2 1 0.000005 -0.000000
+ -1 -3 -3 1 2 -0.000001 0.000000
+ -1 -3 -3 2 2 -0.000015 -0.000000
+ -1 -3 -2 1 1 0.000007 -0.000000
+ -1 -3 -2 2 1 -0.000038 -0.000000
+ -1 -3 -2 1 2 -0.000007 0.000000
+ -1 -3 -2 2 2 -0.000003 0.000000
+ -1 -3 -1 1 1 -0.000035 0.000000
+ -1 -3 -1 2 1 0.000056 -0.000000
+ -1 -3 -1 1 2 -0.000005 0.000000
+ -1 -3 -1 2 2 -0.000031 -0.000000
+ -1 -3 0 1 1 0.000040 -0.000000
+ -1 -3 0 2 1 -0.000104 0.000000
+ -1 -3 0 1 2 0.000033 -0.000000
+ -1 -3 0 2 2 0.000023 0.000000
+ -1 -3 1 1 1 -0.000032 0.000000
+ -1 -3 1 2 1 0.000076 0.000000
+ -1 -3 1 1 2 -0.000045 0.000000
+ -1 -3 1 2 2 0.000029 -0.000000
+ -1 -3 2 1 1 0.000011 0.000000
+ -1 -3 2 2 1 -0.000012 0.000000
+ -1 -3 2 1 2 0.000013 0.000000
+ -1 -3 2 2 2 -0.000019 -0.000000
+ -1 -3 3 1 1 -0.000007 -0.000000
+ -1 -3 3 2 1 -0.000007 -0.000000
+ -1 -3 3 1 2 0.000001 -0.000000
+ -1 -3 3 2 2 -0.000006 0.000000
+ -1 -3 4 1 1 -0.000002 0.000000
+ -1 -3 4 2 1 0.000008 0.000000
+ -1 -3 4 1 2 0.000006 0.000000
+ -1 -3 4 2 2 0.000029 -0.000000
+ -1 -2 -4 1 1 -0.000046 -0.000000
+ -1 -2 -4 2 1 -0.000001 -0.000000
+ -1 -2 -4 1 2 -0.000007 0.000000
+ -1 -2 -4 2 2 -0.000038 0.000000
+ -1 -2 -3 1 1 -0.000007 0.000000
+ -1 -2 -3 2 1 -0.000000 0.000000
+ -1 -2 -3 1 2 0.000017 -0.000000
+ -1 -2 -3 2 2 0.000023 -0.000000
+ -1 -2 -2 1 1 -0.000012 -0.000000
+ -1 -2 -2 2 1 0.000074 0.000000
+ -1 -2 -2 1 2 0.000022 0.000000
+ -1 -2 -2 2 2 -0.000075 0.000000
+ -1 -2 -1 1 1 0.000242 0.000000
+ -1 -2 -1 2 1 -0.000071 0.000000
+ -1 -2 -1 1 2 -0.000066 -0.000000
+ -1 -2 -1 2 2 0.000022 -0.000000
+ -1 -2 0 1 1 -0.000429 0.000000
+ -1 -2 0 2 1 0.000338 0.000000
+ -1 -2 0 1 2 0.000171 -0.000000
+ -1 -2 0 2 2 -0.000764 -0.000000
+ -1 -2 1 1 1 0.000195 -0.000000
+ -1 -2 1 2 1 -0.000350 -0.000000
+ -1 -2 1 1 2 0.000004 0.000000
+ -1 -2 1 2 2 0.000360 0.000000
+ -1 -2 2 1 1 -0.000069 -0.000000
+ -1 -2 2 2 1 0.000039 0.000000
+ -1 -2 2 1 2 0.000003 0.000000
+ -1 -2 2 2 2 -0.000100 0.000000
+ -1 -2 3 1 1 0.000009 0.000000
+ -1 -2 3 2 1 -0.000010 0.000000
+ -1 -2 3 1 2 -0.000009 0.000000
+ -1 -2 3 2 2 0.000043 -0.000000
+ -1 -2 4 1 1 -0.000046 -0.000000
+ -1 -2 4 2 1 -0.000001 -0.000000
+ -1 -2 4 1 2 -0.000007 0.000000
+ -1 -2 4 2 2 -0.000038 0.000000
+ -1 -1 -4 1 1 -0.000031 -0.000000
+ -1 -1 -4 2 1 -0.000047 -0.000000
+ -1 -1 -4 1 2 -0.000027 0.000000
+ -1 -1 -4 2 2 0.000005 0.000000
+ -1 -1 -3 1 1 0.000022 0.000000
+ -1 -1 -3 2 1 0.000033 0.000000
+ -1 -1 -3 1 2 0.000001 -0.000000
+ -1 -1 -3 2 2 -0.000008 -0.000000
+ -1 -1 -2 1 1 -0.000103 0.000000
+ -1 -1 -2 2 1 -0.000053 -0.000000
+ -1 -1 -2 1 2 -0.000023 0.000000
+ -1 -1 -2 2 2 0.000155 -0.000000
+ -1 -1 -1 1 1 0.000180 -0.000000
+ -1 -1 -1 2 1 -0.001919 -0.000000
+ -1 -1 -1 1 2 0.000452 -0.000000
+ -1 -1 -1 2 2 0.000137 0.000000
+ -1 -1 0 1 1 0.001394 0.000000
+ -1 -1 0 2 1 0.015686 0.000000
+ -1 -1 0 1 2 -0.001945 -0.000000
+ -1 -1 0 2 2 -0.000812 -0.000000
+ -1 -1 1 1 1 -0.002124 -0.000000
+ -1 -1 1 2 1 0.000319 -0.000000
+ -1 -1 1 1 2 0.001422 0.000000
+ -1 -1 1 2 2 -0.000585 0.000000
+ -1 -1 2 1 1 -0.000009 0.000000
+ -1 -1 2 2 1 -0.000080 -0.000000
+ -1 -1 2 1 2 -0.000118 -0.000000
+ -1 -1 2 2 2 -0.000030 -0.000000
+ -1 -1 3 1 1 0.000043 0.000000
+ -1 -1 3 2 1 0.000088 0.000000
+ -1 -1 3 1 2 0.000044 -0.000000
+ -1 -1 3 2 2 0.000056 -0.000000
+ -1 -1 4 1 1 -0.000031 -0.000000
+ -1 -1 4 2 1 -0.000047 -0.000000
+ -1 -1 4 1 2 -0.000027 0.000000
+ -1 -1 4 2 2 0.000005 0.000000
+ -1 0 -4 1 1 0.000028 -0.000000
+ -1 0 -4 2 1 0.000013 -0.000000
+ -1 0 -4 1 2 -0.000007 -0.000000
+ -1 0 -4 2 2 -0.000053 0.000000
+ -1 0 -3 1 1 -0.000003 -0.000000
+ -1 0 -3 2 1 -0.000060 -0.000000
+ -1 0 -3 1 2 -0.000017 0.000000
+ -1 0 -3 2 2 0.000102 0.000000
+ -1 0 -2 1 1 0.000057 -0.000000
+ -1 0 -2 2 1 0.000037 0.000000
+ -1 0 -2 1 2 0.000079 -0.000000
+ -1 0 -2 2 2 -0.000095 0.000000
+ -1 0 -1 1 1 -0.001707 0.000000
+ -1 0 -1 2 1 -0.000538 -0.000000
+ -1 0 -1 1 2 -0.001660 0.000000
+ -1 0 -1 2 2 -0.001002 -0.000000
+ -1 0 0 1 1 -0.006256 -0.000000
+ -1 0 0 2 1 -0.011329 -0.000000
+ -1 0 0 1 2 0.006354 0.000000
+ -1 0 0 2 2 0.006838 0.000000
+ -1 0 1 1 1 0.000803 0.000000
+ -1 0 1 2 1 0.001579 0.000000
+ -1 0 1 1 2 -0.000808 -0.000000
+ -1 0 1 2 2 -0.000487 -0.000000
+ -1 0 2 1 1 0.000117 -0.000000
+ -1 0 2 2 1 -0.000079 0.000000
+ -1 0 2 1 2 -0.000107 -0.000000
+ -1 0 2 2 2 -0.000066 0.000000
+ -1 0 3 1 1 -0.000013 -0.000000
+ -1 0 3 2 1 -0.000011 -0.000000
+ -1 0 3 1 2 0.000020 -0.000000
+ -1 0 3 2 2 0.000027 0.000000
+ -1 0 4 1 1 0.000028 -0.000000
+ -1 0 4 2 1 0.000013 -0.000000
+ -1 0 4 1 2 -0.000007 -0.000000
+ -1 0 4 2 2 -0.000053 0.000000
+ -1 1 -4 1 1 -0.000043 -0.000000
+ -1 1 -4 2 1 0.000009 0.000000
+ -1 1 -4 1 2 0.000003 -0.000000
+ -1 1 -4 2 2 -0.000040 0.000000
+ -1 1 -3 1 1 0.000023 -0.000000
+ -1 1 -3 2 1 -0.000000 -0.000000
+ -1 1 -3 1 2 0.000016 0.000000
+ -1 1 -3 2 2 -0.000008 0.000000
+ -1 1 -2 1 1 -0.000019 0.000000
+ -1 1 -2 2 1 -0.000025 0.000000
+ -1 1 -2 1 2 -0.000074 0.000000
+ -1 1 -2 2 2 -0.000068 -0.000000
+ -1 1 -1 1 1 0.000022 -0.000000
+ -1 1 -1 2 1 -0.000065 -0.000000
+ -1 1 -1 1 2 -0.000068 0.000000
+ -1 1 -1 2 2 0.000242 0.000000
+ -1 1 0 1 1 -0.000457 0.000000
+ -1 1 0 2 1 -0.000186 0.000000
+ -1 1 0 1 2 -0.000353 -0.000000
+ -1 1 0 2 2 -0.000736 -0.000000
+ -1 1 1 1 1 0.000164 -0.000000
+ -1 1 1 2 1 -0.000025 -0.000000
+ -1 1 1 1 2 0.000336 0.000000
+ -1 1 1 2 2 0.000391 0.000000
+ -1 1 2 1 1 -0.000072 0.000000
+ -1 1 2 2 1 -0.000004 0.000000
+ -1 1 2 1 2 -0.000042 -0.000000
+ -1 1 2 2 2 -0.000097 -0.000000
+ -1 1 3 1 1 0.000026 -0.000000
+ -1 1 3 2 1 0.000018 0.000000
+ -1 1 3 1 2 0.000020 0.000000
+ -1 1 3 2 2 0.000026 0.000000
+ -1 1 4 1 1 -0.000043 -0.000000
+ -1 1 4 2 1 0.000009 0.000000
+ -1 1 4 1 2 0.000003 -0.000000
+ -1 1 4 2 2 -0.000040 0.000000
+ -1 2 -4 1 1 0.000001 0.000000
+ -1 2 -4 2 1 -0.000019 0.000000
+ -1 2 -4 1 2 0.000000 0.000000
+ -1 2 -4 2 2 0.000020 -0.000000
+ -1 2 -3 1 1 -0.000006 -0.000000
+ -1 2 -3 2 1 -0.000011 0.000000
+ -1 2 -3 1 2 0.000041 -0.000000
+ -1 2 -3 2 2 0.000008 0.000000
+ -1 2 -2 1 1 0.000021 0.000000
+ -1 2 -2 2 1 -0.000002 0.000000
+ -1 2 -2 1 2 -0.000030 -0.000000
+ -1 2 -2 2 2 -0.000010 -0.000000
+ -1 2 -1 1 1 0.000007 -0.000000
+ -1 2 -1 2 1 -0.000025 -0.000000
+ -1 2 -1 1 2 0.000057 -0.000000
+ -1 2 -1 2 2 0.000039 0.000000
+ -1 2 0 1 1 0.000100 0.000000
+ -1 2 0 2 1 0.000079 0.000000
+ -1 2 0 1 2 -0.000126 -0.000000
+ -1 2 0 2 2 -0.000052 -0.000000
+ -1 2 1 1 1 -0.000057 -0.000000
+ -1 2 1 2 1 -0.000041 -0.000000
+ -1 2 1 1 2 0.000055 -0.000000
+ -1 2 1 2 2 -0.000024 0.000000
+ -1 2 2 1 1 -0.000025 0.000000
+ -1 2 2 2 1 0.000020 0.000000
+ -1 2 2 1 2 -0.000015 0.000000
+ -1 2 2 2 2 0.000017 -0.000000
+ -1 2 3 1 1 -0.000011 0.000000
+ -1 2 3 2 1 0.000009 0.000000
+ -1 2 3 1 2 -0.000015 0.000000
+ -1 2 3 2 2 0.000008 -0.000000
+ -1 2 4 1 1 0.000001 0.000000
+ -1 2 4 2 1 -0.000019 0.000000
+ -1 2 4 1 2 0.000000 0.000000
+ -1 2 4 2 2 0.000020 -0.000000
+ -1 3 -4 1 1 -0.000031 0.000000
+ -1 3 -4 2 1 -0.000013 -0.000000
+ -1 3 -4 1 2 0.000005 -0.000000
+ -1 3 -4 2 2 -0.000031 -0.000000
+ -1 3 -3 1 1 -0.000010 -0.000000
+ -1 3 -3 2 1 0.000015 0.000000
+ -1 3 -3 1 2 0.000009 -0.000000
+ -1 3 -3 2 2 -0.000011 0.000000
+ -1 3 -2 1 1 0.000023 0.000000
+ -1 3 -2 2 1 0.000012 -0.000000
+ -1 3 -2 1 2 0.000000 -0.000000
+ -1 3 -2 2 2 0.000004 -0.000000
+ -1 3 -1 1 1 -0.000027 0.000000
+ -1 3 -1 2 1 0.000009 -0.000000
+ -1 3 -1 1 2 0.000023 -0.000000
+ -1 3 -1 2 2 -0.000035 -0.000000
+ -1 3 0 1 1 0.000007 0.000000
+ -1 3 0 2 1 0.000005 -0.000000
+ -1 3 0 1 2 -0.000004 -0.000000
+ -1 3 0 2 2 0.000026 -0.000000
+ -1 3 1 1 1 -0.000043 -0.000000
+ -1 3 1 2 1 -0.000015 0.000000
+ -1 3 1 1 2 -0.000020 -0.000000
+ -1 3 1 2 2 -0.000045 0.000000
+ -1 3 2 1 1 0.000007 -0.000000
+ -1 3 2 2 1 -0.000014 -0.000000
+ -1 3 2 1 2 0.000008 -0.000000
+ -1 3 2 2 2 0.000017 0.000000
+ -1 3 3 1 1 -0.000013 0.000000
+ -1 3 3 2 1 0.000029 0.000000
+ -1 3 3 1 2 0.000002 -0.000000
+ -1 3 3 2 2 -0.000021 -0.000000
+ -1 3 4 1 1 -0.000031 0.000000
+ -1 3 4 2 1 -0.000013 -0.000000
+ -1 3 4 1 2 0.000005 -0.000000
+ -1 3 4 2 2 -0.000031 -0.000000
+ 0 -3 -4 1 1 0.000010 -0.000000
+ 0 -3 -4 2 1 -0.000002 0.000000
+ 0 -3 -4 1 2 -0.000006 0.000000
+ 0 -3 -4 2 2 -0.000021 0.000000
+ 0 -3 -3 1 1 0.000004 0.000000
+ 0 -3 -3 2 1 -0.000010 0.000000
+ 0 -3 -3 1 2 0.000002 0.000000
+ 0 -3 -3 2 2 -0.000000 -0.000000
+ 0 -3 -2 1 1 -0.000030 -0.000000
+ 0 -3 -2 2 1 -0.000004 -0.000000
+ 0 -3 -2 1 2 0.000004 0.000000
+ 0 -3 -2 2 2 -0.000034 0.000000
+ 0 -3 -1 1 1 -0.000011 0.000000
+ 0 -3 -1 2 1 -0.000003 -0.000000
+ 0 -3 -1 1 2 0.000010 0.000000
+ 0 -3 -1 2 2 0.000065 -0.000000
+ 0 -3 0 1 1 -0.000094 -0.000000
+ 0 -3 0 2 1 0.000015 -0.000000
+ 0 -3 0 1 2 0.000004 0.000000
+ 0 -3 0 2 2 -0.000077 0.000000
+ 0 -3 1 1 1 0.000008 -0.000000
+ 0 -3 1 2 1 -0.000042 -0.000000
+ 0 -3 1 1 2 0.000032 0.000000
+ 0 -3 1 2 2 0.000031 0.000000
+ 0 -3 2 1 1 -0.000016 -0.000000
+ 0 -3 2 2 1 0.000011 -0.000000
+ 0 -3 2 1 2 0.000013 0.000000
+ 0 -3 2 2 2 -0.000014 0.000000
+ 0 -3 3 1 1 -0.000003 0.000000
+ 0 -3 3 2 1 0.000001 0.000000
+ 0 -3 3 1 2 -0.000007 0.000000
+ 0 -3 3 2 2 -0.000007 -0.000000
+ 0 -3 4 1 1 0.000010 -0.000000
+ 0 -3 4 2 1 -0.000002 0.000000
+ 0 -3 4 1 2 -0.000006 0.000000
+ 0 -3 4 2 2 -0.000021 0.000000
+ 0 -2 -4 1 1 -0.000022 0.000000
+ 0 -2 -4 2 1 0.000021 0.000000
+ 0 -2 -4 1 2 0.000006 -0.000000
+ 0 -2 -4 2 2 -0.000025 -0.000000
+ 0 -2 -3 1 1 -0.000015 -0.000000
+ 0 -2 -3 2 1 -0.000028 0.000000
+ 0 -2 -3 1 2 0.000026 -0.000000
+ 0 -2 -3 2 2 -0.000033 0.000000
+ 0 -2 -2 1 1 0.000010 0.000000
+ 0 -2 -2 2 1 0.000029 0.000000
+ 0 -2 -2 1 2 -0.000046 -0.000000
+ 0 -2 -2 2 2 0.000017 -0.000000
+ 0 -2 -1 1 1 0.000065 -0.000000
+ 0 -2 -1 2 1 -0.000201 0.000000
+ 0 -2 -1 1 2 0.000118 -0.000000
+ 0 -2 -1 2 2 -0.000122 0.000000
+ 0 -2 0 1 1 -0.000057 0.000000
+ 0 -2 0 2 1 0.000559 -0.000000
+ 0 -2 0 1 2 -0.000157 0.000000
+ 0 -2 0 2 2 0.000431 -0.000000
+ 0 -2 1 1 1 -0.000055 -0.000000
+ 0 -2 1 2 1 -0.000061 0.000000
+ 0 -2 1 1 2 0.000108 -0.000000
+ 0 -2 1 2 2 -0.000229 0.000000
+ 0 -2 2 1 1 0.000041 0.000000
+ 0 -2 2 2 1 -0.000008 0.000000
+ 0 -2 2 1 2 -0.000028 0.000000
+ 0 -2 2 2 2 0.000078 -0.000000
+ 0 -2 3 1 1 -0.000015 -0.000000
+ 0 -2 3 2 1 0.000005 0.000000
+ 0 -2 3 1 2 0.000002 -0.000000
+ 0 -2 3 2 2 -0.000064 0.000000
+ 0 -2 4 1 1 -0.000022 0.000000
+ 0 -2 4 2 1 0.000021 0.000000
+ 0 -2 4 1 2 0.000006 -0.000000
+ 0 -2 4 2 2 -0.000025 -0.000000
+ 0 -1 -4 1 1 -0.000035 -0.000000
+ 0 -1 -4 2 1 0.000045 -0.000000
+ 0 -1 -4 1 2 0.000024 -0.000000
+ 0 -1 -4 2 2 0.000009 0.000000
+ 0 -1 -3 1 1 0.000108 -0.000000
+ 0 -1 -3 2 1 -0.000049 0.000000
+ 0 -1 -3 1 2 -0.000006 -0.000000
+ 0 -1 -3 2 2 -0.000010 0.000000
+ 0 -1 -2 1 1 -0.000106 -0.000000
+ 0 -1 -2 2 1 0.000020 -0.000000
+ 0 -1 -2 1 2 0.000061 0.000000
+ 0 -1 -2 2 2 0.000067 0.000000
+ 0 -1 -1 1 1 -0.000230 0.000000
+ 0 -1 -1 2 1 0.000790 0.000000
+ 0 -1 -1 1 2 -0.000327 -0.000000
+ 0 -1 -1 2 2 -0.002479 -0.000000
+ 0 -1 0 1 1 0.005727 -0.000000
+ 0 -1 0 2 1 -0.013226 0.000000
+ 0 -1 0 1 2 0.004442 -0.000000
+ 0 -1 0 2 2 -0.005145 0.000000
+ 0 -1 1 1 1 -0.000506 0.000000
+ 0 -1 1 2 1 0.001537 -0.000000
+ 0 -1 1 1 2 -0.000840 0.000000
+ 0 -1 1 2 2 0.000822 -0.000000
+ 0 -1 2 1 1 0.000062 -0.000000
+ 0 -1 2 2 1 0.000146 0.000000
+ 0 -1 2 1 2 0.000116 -0.000000
+ 0 -1 2 2 2 -0.000011 0.000000
+ 0 -1 3 1 1 0.000012 -0.000000
+ 0 -1 3 2 1 -0.000037 0.000000
+ 0 -1 3 1 2 -0.000005 -0.000000
+ 0 -1 3 2 2 0.000002 0.000000
+ 0 -1 4 1 1 -0.000035 -0.000000
+ 0 -1 4 2 1 0.000045 -0.000000
+ 0 -1 4 1 2 0.000024 -0.000000
+ 0 -1 4 2 2 0.000009 0.000000
+ 0 0 -4 1 1 0.000236 -0.000000
+ 0 0 -4 2 1 -0.000000 -0.000000
+ 0 0 -4 1 2 -0.000000 0.000000
+ 0 0 -4 2 2 0.000236 -0.000000
+ 0 0 -3 1 1 -0.000339 -0.000000
+ 0 0 -3 2 1 -0.000049 -0.000000
+ 0 0 -3 1 2 0.000049 -0.000000
+ 0 0 -3 2 2 -0.000339 0.000000
+ 0 0 -2 1 1 0.001462 0.000000
+ 0 0 -2 2 1 0.000312 0.000000
+ 0 0 -2 1 2 -0.000311 0.000000
+ 0 0 -2 2 2 0.001461 -0.000000
+ 0 0 -1 1 1 -0.010082 0.000000
+ 0 0 -1 2 1 0.001112 0.000000
+ 0 0 -1 1 2 -0.001118 0.000000
+ 0 0 -1 2 2 -0.010076 -0.000000
+ 0 0 0 1 1 -0.024097 0.000000
+ 0 0 0 2 1 0.000014 -0.000000
+ 0 0 0 1 2 0.000014 0.000000
+ 0 0 0 2 2 -0.024120 0.000000
+ 0 0 1 1 1 -0.010082 -0.000000
+ 0 0 1 2 1 -0.001118 -0.000000
+ 0 0 1 1 2 0.001112 -0.000000
+ 0 0 1 2 2 -0.010076 0.000000
+ 0 0 2 1 1 0.001462 -0.000000
+ 0 0 2 2 1 -0.000311 -0.000000
+ 0 0 2 1 2 0.000312 -0.000000
+ 0 0 2 2 2 0.001461 0.000000
+ 0 0 3 1 1 -0.000339 0.000000
+ 0 0 3 2 1 0.000049 0.000000
+ 0 0 3 1 2 -0.000049 0.000000
+ 0 0 3 2 2 -0.000339 -0.000000
+ 0 0 4 1 1 0.000236 0.000000
+ 0 0 4 2 1 -0.000000 -0.000000
+ 0 0 4 1 2 -0.000000 0.000000
+ 0 0 4 2 2 0.000236 0.000000
+ 0 1 -4 1 1 -0.000035 0.000000
+ 0 1 -4 2 1 0.000024 0.000000
+ 0 1 -4 1 2 0.000045 0.000000
+ 0 1 -4 2 2 0.000009 -0.000000
+ 0 1 -3 1 1 0.000012 0.000000
+ 0 1 -3 2 1 -0.000005 0.000000
+ 0 1 -3 1 2 -0.000037 -0.000000
+ 0 1 -3 2 2 0.000002 -0.000000
+ 0 1 -2 1 1 0.000062 0.000000
+ 0 1 -2 2 1 0.000116 0.000000
+ 0 1 -2 1 2 0.000146 -0.000000
+ 0 1 -2 2 2 -0.000011 -0.000000
+ 0 1 -1 1 1 -0.000506 -0.000000
+ 0 1 -1 2 1 -0.000840 -0.000000
+ 0 1 -1 1 2 0.001537 0.000000
+ 0 1 -1 2 2 0.000822 0.000000
+ 0 1 0 1 1 0.005727 0.000000
+ 0 1 0 2 1 0.004442 0.000000
+ 0 1 0 1 2 -0.013226 -0.000000
+ 0 1 0 2 2 -0.005145 -0.000000
+ 0 1 1 1 1 -0.000230 -0.000000
+ 0 1 1 2 1 -0.000327 0.000000
+ 0 1 1 1 2 0.000790 -0.000000
+ 0 1 1 2 2 -0.002479 0.000000
+ 0 1 2 1 1 -0.000106 0.000000
+ 0 1 2 2 1 0.000061 -0.000000
+ 0 1 2 1 2 0.000020 0.000000
+ 0 1 2 2 2 0.000067 -0.000000
+ 0 1 3 1 1 0.000108 0.000000
+ 0 1 3 2 1 -0.000006 0.000000
+ 0 1 3 1 2 -0.000049 -0.000000
+ 0 1 3 2 2 -0.000010 -0.000000
+ 0 1 4 1 1 -0.000035 0.000000
+ 0 1 4 2 1 0.000024 0.000000
+ 0 1 4 1 2 0.000045 0.000000
+ 0 1 4 2 2 0.000009 -0.000000
+ 0 2 -4 1 1 -0.000022 -0.000000
+ 0 2 -4 2 1 0.000006 0.000000
+ 0 2 -4 1 2 0.000021 -0.000000
+ 0 2 -4 2 2 -0.000025 0.000000
+ 0 2 -3 1 1 -0.000015 0.000000
+ 0 2 -3 2 1 0.000002 0.000000
+ 0 2 -3 1 2 0.000005 -0.000000
+ 0 2 -3 2 2 -0.000064 -0.000000
+ 0 2 -2 1 1 0.000041 -0.000000
+ 0 2 -2 2 1 -0.000028 -0.000000
+ 0 2 -2 1 2 -0.000008 -0.000000
+ 0 2 -2 2 2 0.000078 0.000000
+ 0 2 -1 1 1 -0.000055 0.000000
+ 0 2 -1 2 1 0.000108 0.000000
+ 0 2 -1 1 2 -0.000061 -0.000000
+ 0 2 -1 2 2 -0.000229 -0.000000
+ 0 2 0 1 1 -0.000057 -0.000000
+ 0 2 0 2 1 -0.000157 -0.000000
+ 0 2 0 1 2 0.000559 0.000000
+ 0 2 0 2 2 0.000431 0.000000
+ 0 2 1 1 1 0.000065 0.000000
+ 0 2 1 2 1 0.000118 0.000000
+ 0 2 1 1 2 -0.000201 -0.000000
+ 0 2 1 2 2 -0.000122 -0.000000
+ 0 2 2 1 1 0.000010 -0.000000
+ 0 2 2 2 1 -0.000046 0.000000
+ 0 2 2 1 2 0.000029 -0.000000
+ 0 2 2 2 2 0.000017 0.000000
+ 0 2 3 1 1 -0.000015 0.000000
+ 0 2 3 2 1 0.000026 0.000000
+ 0 2 3 1 2 -0.000028 -0.000000
+ 0 2 3 2 2 -0.000033 -0.000000
+ 0 2 4 1 1 -0.000022 -0.000000
+ 0 2 4 2 1 0.000006 0.000000
+ 0 2 4 1 2 0.000021 -0.000000
+ 0 2 4 2 2 -0.000025 0.000000
+ 0 3 -4 1 1 0.000010 0.000000
+ 0 3 -4 2 1 -0.000006 -0.000000
+ 0 3 -4 1 2 -0.000002 -0.000000
+ 0 3 -4 2 2 -0.000021 -0.000000
+ 0 3 -3 1 1 -0.000003 -0.000000
+ 0 3 -3 2 1 -0.000007 -0.000000
+ 0 3 -3 1 2 0.000001 -0.000000
+ 0 3 -3 2 2 -0.000007 0.000000
+ 0 3 -2 1 1 -0.000016 0.000000
+ 0 3 -2 2 1 0.000013 -0.000000
+ 0 3 -2 1 2 0.000011 0.000000
+ 0 3 -2 2 2 -0.000014 -0.000000
+ 0 3 -1 1 1 0.000008 0.000000
+ 0 3 -1 2 1 0.000032 -0.000000
+ 0 3 -1 1 2 -0.000042 0.000000
+ 0 3 -1 2 2 0.000031 -0.000000
+ 0 3 0 1 1 -0.000094 0.000000
+ 0 3 0 2 1 0.000004 -0.000000
+ 0 3 0 1 2 0.000015 0.000000
+ 0 3 0 2 2 -0.000077 -0.000000
+ 0 3 1 1 1 -0.000011 -0.000000
+ 0 3 1 2 1 0.000010 -0.000000
+ 0 3 1 1 2 -0.000003 0.000000
+ 0 3 1 2 2 0.000065 0.000000
+ 0 3 2 1 1 -0.000030 0.000000
+ 0 3 2 2 1 0.000004 -0.000000
+ 0 3 2 1 2 -0.000004 0.000000
+ 0 3 2 2 2 -0.000034 -0.000000
+ 0 3 3 1 1 0.000004 -0.000000
+ 0 3 3 2 1 0.000002 -0.000000
+ 0 3 3 1 2 -0.000010 -0.000000
+ 0 3 3 2 2 -0.000000 0.000000
+ 0 3 4 1 1 0.000010 0.000000
+ 0 3 4 2 1 -0.000006 -0.000000
+ 0 3 4 1 2 -0.000002 -0.000000
+ 0 3 4 2 2 -0.000021 -0.000000
+ 1 -3 -4 1 1 -0.000031 -0.000000
+ 1 -3 -4 2 1 0.000005 0.000000
+ 1 -3 -4 1 2 -0.000013 0.000000
+ 1 -3 -4 2 2 -0.000031 0.000000
+ 1 -3 -3 1 1 -0.000013 -0.000000
+ 1 -3 -3 2 1 0.000002 0.000000
+ 1 -3 -3 1 2 0.000029 -0.000000
+ 1 -3 -3 2 2 -0.000021 0.000000
+ 1 -3 -2 1 1 0.000007 0.000000
+ 1 -3 -2 2 1 0.000008 0.000000
+ 1 -3 -2 1 2 -0.000014 0.000000
+ 1 -3 -2 2 2 0.000017 -0.000000
+ 1 -3 -1 1 1 -0.000043 0.000000
+ 1 -3 -1 2 1 -0.000020 0.000000
+ 1 -3 -1 1 2 -0.000015 -0.000000
+ 1 -3 -1 2 2 -0.000045 -0.000000
+ 1 -3 0 1 1 0.000007 -0.000000
+ 1 -3 0 2 1 -0.000004 0.000000
+ 1 -3 0 1 2 0.000005 0.000000
+ 1 -3 0 2 2 0.000026 0.000000
+ 1 -3 1 1 1 -0.000027 -0.000000
+ 1 -3 1 2 1 0.000023 0.000000
+ 1 -3 1 1 2 0.000009 0.000000
+ 1 -3 1 2 2 -0.000035 0.000000
+ 1 -3 2 1 1 0.000023 -0.000000
+ 1 -3 2 2 1 0.000000 0.000000
+ 1 -3 2 1 2 0.000012 0.000000
+ 1 -3 2 2 2 0.000004 0.000000
+ 1 -3 3 1 1 -0.000010 0.000000
+ 1 -3 3 2 1 0.000009 0.000000
+ 1 -3 3 1 2 0.000015 -0.000000
+ 1 -3 3 2 2 -0.000011 -0.000000
+ 1 -3 4 1 1 -0.000031 -0.000000
+ 1 -3 4 2 1 0.000005 0.000000
+ 1 -3 4 1 2 -0.000013 0.000000
+ 1 -3 4 2 2 -0.000031 0.000000
+ 1 -2 -4 1 1 0.000001 -0.000000
+ 1 -2 -4 2 1 0.000000 -0.000000
+ 1 -2 -4 1 2 -0.000019 -0.000000
+ 1 -2 -4 2 2 0.000020 0.000000
+ 1 -2 -3 1 1 -0.000011 -0.000000
+ 1 -2 -3 2 1 -0.000015 -0.000000
+ 1 -2 -3 1 2 0.000009 -0.000000
+ 1 -2 -3 2 2 0.000008 0.000000
+ 1 -2 -2 1 1 -0.000025 -0.000000
+ 1 -2 -2 2 1 -0.000015 -0.000000
+ 1 -2 -2 1 2 0.000020 -0.000000
+ 1 -2 -2 2 2 0.000017 0.000000
+ 1 -2 -1 1 1 -0.000057 0.000000
+ 1 -2 -1 2 1 0.000055 0.000000
+ 1 -2 -1 1 2 -0.000041 0.000000
+ 1 -2 -1 2 2 -0.000024 -0.000000
+ 1 -2 0 1 1 0.000100 -0.000000
+ 1 -2 0 2 1 -0.000126 0.000000
+ 1 -2 0 1 2 0.000079 -0.000000
+ 1 -2 0 2 2 -0.000052 0.000000
+ 1 -2 1 1 1 0.000007 0.000000
+ 1 -2 1 2 1 0.000057 0.000000
+ 1 -2 1 1 2 -0.000025 0.000000
+ 1 -2 1 2 2 0.000039 -0.000000
+ 1 -2 2 1 1 0.000021 -0.000000
+ 1 -2 2 2 1 -0.000030 0.000000
+ 1 -2 2 1 2 -0.000002 -0.000000
+ 1 -2 2 2 2 -0.000010 0.000000
+ 1 -2 3 1 1 -0.000006 0.000000
+ 1 -2 3 2 1 0.000041 0.000000
+ 1 -2 3 1 2 -0.000011 -0.000000
+ 1 -2 3 2 2 0.000008 -0.000000
+ 1 -2 4 1 1 0.000001 -0.000000
+ 1 -2 4 2 1 0.000000 -0.000000
+ 1 -2 4 1 2 -0.000019 -0.000000
+ 1 -2 4 2 2 0.000020 0.000000
+ 1 -1 -4 1 1 -0.000043 0.000000
+ 1 -1 -4 2 1 0.000003 0.000000
+ 1 -1 -4 1 2 0.000009 -0.000000
+ 1 -1 -4 2 2 -0.000040 -0.000000
+ 1 -1 -3 1 1 0.000026 0.000000
+ 1 -1 -3 2 1 0.000020 -0.000000
+ 1 -1 -3 1 2 0.000018 -0.000000
+ 1 -1 -3 2 2 0.000026 -0.000000
+ 1 -1 -2 1 1 -0.000072 -0.000000
+ 1 -1 -2 2 1 -0.000042 0.000000
+ 1 -1 -2 1 2 -0.000004 -0.000000
+ 1 -1 -2 2 2 -0.000097 0.000000
+ 1 -1 -1 1 1 0.000164 0.000000
+ 1 -1 -1 2 1 0.000336 -0.000000
+ 1 -1 -1 1 2 -0.000025 0.000000
+ 1 -1 -1 2 2 0.000391 -0.000000
+ 1 -1 0 1 1 -0.000457 -0.000000
+ 1 -1 0 2 1 -0.000353 0.000000
+ 1 -1 0 1 2 -0.000186 -0.000000
+ 1 -1 0 2 2 -0.000736 0.000000
+ 1 -1 1 1 1 0.000022 0.000000
+ 1 -1 1 2 1 -0.000068 -0.000000
+ 1 -1 1 1 2 -0.000065 0.000000
+ 1 -1 1 2 2 0.000242 -0.000000
+ 1 -1 2 1 1 -0.000019 -0.000000
+ 1 -1 2 2 1 -0.000074 -0.000000
+ 1 -1 2 1 2 -0.000025 -0.000000
+ 1 -1 2 2 2 -0.000068 0.000000
+ 1 -1 3 1 1 0.000023 0.000000
+ 1 -1 3 2 1 0.000016 -0.000000
+ 1 -1 3 1 2 -0.000000 0.000000
+ 1 -1 3 2 2 -0.000008 -0.000000
+ 1 -1 4 1 1 -0.000043 0.000000
+ 1 -1 4 2 1 0.000003 0.000000
+ 1 -1 4 1 2 0.000009 -0.000000
+ 1 -1 4 2 2 -0.000040 -0.000000
+ 1 0 -4 1 1 0.000028 0.000000
+ 1 0 -4 2 1 -0.000007 0.000000
+ 1 0 -4 1 2 0.000013 0.000000
+ 1 0 -4 2 2 -0.000053 -0.000000
+ 1 0 -3 1 1 -0.000013 0.000000
+ 1 0 -3 2 1 0.000020 0.000000
+ 1 0 -3 1 2 -0.000011 0.000000
+ 1 0 -3 2 2 0.000027 -0.000000
+ 1 0 -2 1 1 0.000117 0.000000
+ 1 0 -2 2 1 -0.000107 0.000000
+ 1 0 -2 1 2 -0.000079 -0.000000
+ 1 0 -2 2 2 -0.000066 -0.000000
+ 1 0 -1 1 1 0.000803 -0.000000
+ 1 0 -1 2 1 -0.000808 0.000000
+ 1 0 -1 1 2 0.001579 -0.000000
+ 1 0 -1 2 2 -0.000487 0.000000
+ 1 0 0 1 1 -0.006256 0.000000
+ 1 0 0 2 1 0.006354 -0.000000
+ 1 0 0 1 2 -0.011329 0.000000
+ 1 0 0 2 2 0.006838 -0.000000
+ 1 0 1 1 1 -0.001707 -0.000000
+ 1 0 1 2 1 -0.001660 -0.000000
+ 1 0 1 1 2 -0.000538 0.000000
+ 1 0 1 2 2 -0.001002 0.000000
+ 1 0 2 1 1 0.000057 0.000000
+ 1 0 2 2 1 0.000079 0.000000
+ 1 0 2 1 2 0.000037 -0.000000
+ 1 0 2 2 2 -0.000095 -0.000000
+ 1 0 3 1 1 -0.000003 0.000000
+ 1 0 3 2 1 -0.000017 -0.000000
+ 1 0 3 1 2 -0.000060 0.000000
+ 1 0 3 2 2 0.000102 -0.000000
+ 1 0 4 1 1 0.000028 0.000000
+ 1 0 4 2 1 -0.000007 0.000000
+ 1 0 4 1 2 0.000013 0.000000
+ 1 0 4 2 2 -0.000053 -0.000000
+ 1 1 -4 1 1 -0.000031 0.000000
+ 1 1 -4 2 1 -0.000027 -0.000000
+ 1 1 -4 1 2 -0.000047 0.000000
+ 1 1 -4 2 2 0.000005 -0.000000
+ 1 1 -3 1 1 0.000043 -0.000000
+ 1 1 -3 2 1 0.000044 0.000000
+ 1 1 -3 1 2 0.000088 -0.000000
+ 1 1 -3 2 2 0.000056 0.000000
+ 1 1 -2 1 1 -0.000009 -0.000000
+ 1 1 -2 2 1 -0.000118 0.000000
+ 1 1 -2 1 2 -0.000080 0.000000
+ 1 1 -2 2 2 -0.000030 0.000000
+ 1 1 -1 1 1 -0.002124 0.000000
+ 1 1 -1 2 1 0.001422 -0.000000
+ 1 1 -1 1 2 0.000319 0.000000
+ 1 1 -1 2 2 -0.000585 -0.000000
+ 1 1 0 1 1 0.001394 -0.000000
+ 1 1 0 2 1 -0.001945 0.000000
+ 1 1 0 1 2 0.015686 -0.000000
+ 1 1 0 2 2 -0.000812 0.000000
+ 1 1 1 1 1 0.000180 0.000000
+ 1 1 1 2 1 0.000452 0.000000
+ 1 1 1 1 2 -0.001919 0.000000
+ 1 1 1 2 2 0.000137 -0.000000
+ 1 1 2 1 1 -0.000103 -0.000000
+ 1 1 2 2 1 -0.000023 -0.000000
+ 1 1 2 1 2 -0.000053 0.000000
+ 1 1 2 2 2 0.000155 0.000000
+ 1 1 3 1 1 0.000022 -0.000000
+ 1 1 3 2 1 0.000001 0.000000
+ 1 1 3 1 2 0.000033 -0.000000
+ 1 1 3 2 2 -0.000008 0.000000
+ 1 1 4 1 1 -0.000031 0.000000
+ 1 1 4 2 1 -0.000027 -0.000000
+ 1 1 4 1 2 -0.000047 0.000000
+ 1 1 4 2 2 0.000005 -0.000000
+ 1 2 -4 1 1 -0.000046 0.000000
+ 1 2 -4 2 1 -0.000007 -0.000000
+ 1 2 -4 1 2 -0.000001 0.000000
+ 1 2 -4 2 2 -0.000038 -0.000000
+ 1 2 -3 1 1 0.000009 -0.000000
+ 1 2 -3 2 1 -0.000009 -0.000000
+ 1 2 -3 1 2 -0.000010 -0.000000
+ 1 2 -3 2 2 0.000043 0.000000
+ 1 2 -2 1 1 -0.000069 0.000000
+ 1 2 -2 2 1 0.000003 -0.000000
+ 1 2 -2 1 2 0.000039 -0.000000
+ 1 2 -2 2 2 -0.000100 -0.000000
+ 1 2 -1 1 1 0.000195 0.000000
+ 1 2 -1 2 1 0.000004 -0.000000
+ 1 2 -1 1 2 -0.000350 0.000000
+ 1 2 -1 2 2 0.000360 -0.000000
+ 1 2 0 1 1 -0.000429 -0.000000
+ 1 2 0 2 1 0.000171 0.000000
+ 1 2 0 1 2 0.000338 -0.000000
+ 1 2 0 2 2 -0.000764 0.000000
+ 1 2 1 1 1 0.000242 -0.000000
+ 1 2 1 2 1 -0.000066 0.000000
+ 1 2 1 1 2 -0.000071 -0.000000
+ 1 2 1 2 2 0.000022 0.000000
+ 1 2 2 1 1 -0.000012 0.000000
+ 1 2 2 2 1 0.000022 -0.000000
+ 1 2 2 1 2 0.000074 -0.000000
+ 1 2 2 2 2 -0.000075 -0.000000
+ 1 2 3 1 1 -0.000007 -0.000000
+ 1 2 3 2 1 0.000017 0.000000
+ 1 2 3 1 2 -0.000000 -0.000000
+ 1 2 3 2 2 0.000023 0.000000
+ 1 2 4 1 1 -0.000046 0.000000
+ 1 2 4 2 1 -0.000007 -0.000000
+ 1 2 4 1 2 -0.000001 0.000000
+ 1 2 4 2 2 -0.000038 -0.000000
+ 1 3 -4 1 1 -0.000002 -0.000000
+ 1 3 -4 2 1 0.000006 -0.000000
+ 1 3 -4 1 2 0.000008 -0.000000
+ 1 3 -4 2 2 0.000029 0.000000
+ 1 3 -3 1 1 -0.000007 0.000000
+ 1 3 -3 2 1 0.000001 0.000000
+ 1 3 -3 1 2 -0.000007 0.000000
+ 1 3 -3 2 2 -0.000006 -0.000000
+ 1 3 -2 1 1 0.000011 -0.000000
+ 1 3 -2 2 1 0.000013 -0.000000
+ 1 3 -2 1 2 -0.000012 -0.000000
+ 1 3 -2 2 2 -0.000019 0.000000
+ 1 3 -1 1 1 -0.000032 -0.000000
+ 1 3 -1 2 1 -0.000045 -0.000000
+ 1 3 -1 1 2 0.000076 -0.000000
+ 1 3 -1 2 2 0.000029 0.000000
+ 1 3 0 1 1 0.000040 0.000000
+ 1 3 0 2 1 0.000033 0.000000
+ 1 3 0 1 2 -0.000104 -0.000000
+ 1 3 0 2 2 0.000023 -0.000000
+ 1 3 1 1 1 -0.000035 -0.000000
+ 1 3 1 2 1 -0.000005 -0.000000
+ 1 3 1 1 2 0.000056 0.000000
+ 1 3 1 2 2 -0.000031 0.000000
+ 1 3 2 1 1 0.000007 0.000000
+ 1 3 2 2 1 -0.000007 -0.000000
+ 1 3 2 1 2 -0.000038 0.000000
+ 1 3 2 2 2 -0.000003 -0.000000
+ 1 3 3 1 1 0.000014 -0.000000
+ 1 3 3 2 1 -0.000001 -0.000000
+ 1 3 3 1 2 0.000005 0.000000
+ 1 3 3 2 2 -0.000015 0.000000
+ 1 3 4 1 1 -0.000002 -0.000000
+ 1 3 4 2 1 0.000006 -0.000000
+ 1 3 4 1 2 0.000008 -0.000000
+ 1 3 4 2 2 0.000029 0.000000
+ 1 4 -4 1 1 -0.000031 -0.000000
+ 1 4 -4 2 1 0.000005 0.000000
+ 1 4 -4 1 2 -0.000013 0.000000
+ 1 4 -4 2 2 -0.000031 0.000000
+ 1 4 -3 1 1 -0.000013 -0.000000
+ 1 4 -3 2 1 0.000002 0.000000
+ 1 4 -3 1 2 0.000029 -0.000000
+ 1 4 -3 2 2 -0.000021 0.000000
+ 1 4 -2 1 1 0.000007 0.000000
+ 1 4 -2 2 1 0.000008 0.000000
+ 1 4 -2 1 2 -0.000014 0.000000
+ 1 4 -2 2 2 0.000017 -0.000000
+ 1 4 -1 1 1 -0.000043 0.000000
+ 1 4 -1 2 1 -0.000020 0.000000
+ 1 4 -1 1 2 -0.000015 -0.000000
+ 1 4 -1 2 2 -0.000045 -0.000000
+ 1 4 0 1 1 0.000007 -0.000000
+ 1 4 0 2 1 -0.000004 0.000000
+ 1 4 0 1 2 0.000005 0.000000
+ 1 4 0 2 2 0.000026 0.000000
+ 1 4 1 1 1 -0.000027 -0.000000
+ 1 4 1 2 1 0.000023 0.000000
+ 1 4 1 1 2 0.000009 0.000000
+ 1 4 1 2 2 -0.000035 0.000000
+ 1 4 2 1 1 0.000023 -0.000000
+ 1 4 2 2 1 0.000000 0.000000
+ 1 4 2 1 2 0.000012 0.000000
+ 1 4 2 2 2 0.000004 0.000000
+ 1 4 3 1 1 -0.000010 0.000000
+ 1 4 3 2 1 0.000009 0.000000
+ 1 4 3 1 2 0.000015 -0.000000
+ 1 4 3 2 2 -0.000011 -0.000000
+ 1 4 4 1 1 -0.000031 -0.000000
+ 1 4 4 2 1 0.000005 0.000000
+ 1 4 4 1 2 -0.000013 0.000000
+ 1 4 4 2 2 -0.000031 0.000000
+ 2 -2 -4 1 1 0.000030 0.000000
+ 2 -2 -4 2 1 0.000005 -0.000000
+ 2 -2 -4 1 2 -0.000000 -0.000000
+ 2 -2 -4 2 2 0.000019 -0.000000
+ 2 -2 -3 1 1 -0.000011 0.000000
+ 2 -2 -3 2 1 0.000009 -0.000000
+ 2 -2 -3 1 2 -0.000009 0.000000
+ 2 -2 -3 2 2 -0.000010 -0.000000
+ 2 -2 -2 1 1 0.000004 -0.000000
+ 2 -2 -2 2 1 -0.000003 -0.000000
+ 2 -2 -2 1 2 -0.000005 -0.000000
+ 2 -2 -2 2 2 -0.000005 0.000000
+ 2 -2 -1 1 1 -0.000063 0.000000
+ 2 -2 -1 2 1 0.000014 -0.000000
+ 2 -2 -1 1 2 0.000018 0.000000
+ 2 -2 -1 2 2 0.000057 -0.000000
+ 2 -2 0 1 1 0.000021 0.000000
+ 2 -2 0 2 1 -0.000009 0.000000
+ 2 -2 0 1 2 0.000000 -0.000000
+ 2 -2 0 2 2 0.000010 -0.000000
+ 2 -2 1 1 1 0.000018 0.000000
+ 2 -2 1 2 1 -0.000013 -0.000000
+ 2 -2 1 1 2 0.000017 -0.000000
+ 2 -2 1 2 2 -0.000000 -0.000000
+ 2 -2 2 1 1 -0.000017 -0.000000
+ 2 -2 2 2 1 -0.000005 -0.000000
+ 2 -2 2 1 2 0.000016 -0.000000
+ 2 -2 2 2 2 -0.000006 0.000000
+ 2 -2 3 1 1 -0.000006 -0.000000
+ 2 -2 3 2 1 -0.000007 -0.000000
+ 2 -2 3 1 2 0.000016 0.000000
+ 2 -2 3 2 2 -0.000023 0.000000
+ 2 -2 4 1 1 0.000030 0.000000
+ 2 -2 4 2 1 0.000005 -0.000000
+ 2 -2 4 1 2 -0.000000 -0.000000
+ 2 -2 4 2 2 0.000019 -0.000000
+ 2 -1 -4 1 1 0.000026 0.000000
+ 2 -1 -4 2 1 0.000009 0.000000
+ 2 -1 -4 1 2 0.000011 0.000000
+ 2 -1 -4 2 2 0.000001 -0.000000
+ 2 -1 -3 1 1 -0.000007 0.000000
+ 2 -1 -3 2 1 0.000004 0.000000
+ 2 -1 -3 1 2 -0.000002 0.000000
+ 2 -1 -3 2 2 -0.000006 -0.000000
+ 2 -1 -2 1 1 -0.000014 0.000000
+ 2 -1 -2 2 1 0.000003 0.000000
+ 2 -1 -2 1 2 -0.000025 0.000000
+ 2 -1 -2 2 2 0.000006 -0.000000
+ 2 -1 -1 1 1 0.000034 -0.000000
+ 2 -1 -1 2 1 -0.000049 0.000000
+ 2 -1 -1 1 2 0.000079 -0.000000
+ 2 -1 -1 2 2 -0.000038 0.000000
+ 2 -1 0 1 1 -0.000014 0.000000
+ 2 -1 0 2 1 0.000089 -0.000000
+ 2 -1 0 1 2 -0.000060 0.000000
+ 2 -1 0 2 2 0.000077 -0.000000
+ 2 -1 1 1 1 -0.000004 -0.000000
+ 2 -1 1 2 1 -0.000047 0.000000
+ 2 -1 1 1 2 0.000020 -0.000000
+ 2 -1 1 2 2 -0.000062 0.000000
+ 2 -1 2 1 1 -0.000023 0.000000
+ 2 -1 2 2 1 0.000024 -0.000000
+ 2 -1 2 1 2 -0.000009 0.000000
+ 2 -1 2 2 2 0.000026 -0.000000
+ 2 -1 3 1 1 -0.000005 -0.000000
+ 2 -1 3 2 1 -0.000018 0.000000
+ 2 -1 3 1 2 -0.000010 -0.000000
+ 2 -1 3 2 2 0.000003 0.000000
+ 2 -1 4 1 1 0.000026 0.000000
+ 2 -1 4 2 1 0.000009 0.000000
+ 2 -1 4 1 2 0.000011 0.000000
+ 2 -1 4 2 2 0.000001 -0.000000
+ 2 0 -4 1 1 -0.000012 -0.000000
+ 2 0 -4 2 1 -0.000017 -0.000000
+ 2 0 -4 1 2 -0.000002 -0.000000
+ 2 0 -4 2 2 -0.000035 0.000000
+ 2 0 -3 1 1 -0.000050 -0.000000
+ 2 0 -3 2 1 -0.000023 0.000000
+ 2 0 -3 1 2 -0.000020 0.000000
+ 2 0 -3 2 2 -0.000029 0.000000
+ 2 0 -2 1 1 0.000056 -0.000000
+ 2 0 -2 2 1 0.000011 -0.000000
+ 2 0 -2 1 2 0.000032 -0.000000
+ 2 0 -2 2 2 0.000063 0.000000
+ 2 0 -1 1 1 -0.000174 0.000000
+ 2 0 -1 2 1 0.000008 0.000000
+ 2 0 -1 1 2 -0.000165 0.000000
+ 2 0 -1 2 2 -0.000109 -0.000000
+ 2 0 0 1 1 0.000500 -0.000000
+ 2 0 0 2 1 -0.000270 0.000000
+ 2 0 0 1 2 0.000457 -0.000000
+ 2 0 0 2 2 -0.000126 0.000000
+ 2 0 1 1 1 -0.000123 0.000000
+ 2 0 1 2 1 0.000115 -0.000000
+ 2 0 1 1 2 -0.000212 0.000000
+ 2 0 1 2 2 0.000065 -0.000000
+ 2 0 2 1 1 0.000013 -0.000000
+ 2 0 2 2 1 -0.000036 -0.000000
+ 2 0 2 1 2 0.000041 0.000000
+ 2 0 2 2 2 0.000015 0.000000
+ 2 0 3 1 1 -0.000032 0.000000
+ 2 0 3 2 1 0.000022 0.000000
+ 2 0 3 1 2 -0.000033 0.000000
+ 2 0 3 2 2 -0.000017 -0.000000
+ 2 0 4 1 1 -0.000012 -0.000000
+ 2 0 4 2 1 -0.000017 -0.000000
+ 2 0 4 1 2 -0.000002 -0.000000
+ 2 0 4 2 2 -0.000035 0.000000
+ 2 1 -4 1 1 -0.000036 -0.000000
+ 2 1 -4 2 1 0.000001 0.000000
+ 2 1 -4 1 2 -0.000005 -0.000000
+ 2 1 -4 2 2 -0.000048 0.000000
+ 2 1 -3 1 1 0.000007 -0.000000
+ 2 1 -3 2 1 -0.000025 -0.000000
+ 2 1 -3 1 2 -0.000008 -0.000000
+ 2 1 -3 2 2 0.000008 0.000000
+ 2 1 -2 1 1 -0.000100 -0.000000
+ 2 1 -2 2 1 0.000027 -0.000000
+ 2 1 -2 1 2 -0.000025 0.000000
+ 2 1 -2 2 2 0.000013 0.000000
+ 2 1 -1 1 1 0.000134 0.000000
+ 2 1 -1 2 1 0.000133 0.000000
+ 2 1 -1 1 2 0.000137 -0.000000
+ 2 1 -1 2 2 0.000129 -0.000000
+ 2 1 0 1 1 -0.000906 0.000000
+ 2 1 0 2 1 0.000092 -0.000000
+ 2 1 0 1 2 -0.000071 0.000000
+ 2 1 0 2 2 -0.000286 -0.000000
+ 2 1 1 1 1 0.000473 -0.000000
+ 2 1 1 2 1 -0.000157 0.000000
+ 2 1 1 1 2 0.000194 -0.000000
+ 2 1 1 2 2 0.000083 0.000000
+ 2 1 2 1 1 -0.000112 -0.000000
+ 2 1 2 2 1 0.000020 -0.000000
+ 2 1 2 1 2 -0.000015 0.000000
+ 2 1 2 2 2 -0.000057 0.000000
+ 2 1 3 1 1 0.000043 -0.000000
+ 2 1 3 2 1 -0.000010 0.000000
+ 2 1 3 1 2 -0.000010 -0.000000
+ 2 1 3 2 2 0.000009 0.000000
+ 2 1 4 1 1 -0.000036 -0.000000
+ 2 1 4 2 1 0.000001 0.000000
+ 2 1 4 1 2 -0.000005 -0.000000
+ 2 1 4 2 2 -0.000048 0.000000
+ 2 2 -4 1 1 -0.000037 0.000000
+ 2 2 -4 2 1 0.000003 -0.000000
+ 2 2 -4 1 2 -0.000011 0.000000
+ 2 2 -4 2 2 -0.000010 -0.000000
+ 2 2 -3 1 1 -0.000026 -0.000000
+ 2 2 -3 2 1 -0.000020 -0.000000
+ 2 2 -3 1 2 0.000033 0.000000
+ 2 2 -3 2 2 -0.000022 0.000000
+ 2 2 -2 1 1 0.000019 0.000000
+ 2 2 -2 2 1 0.000043 -0.000000
+ 2 2 -2 1 2 -0.000030 0.000000
+ 2 2 -2 2 2 0.000009 -0.000000
+ 2 2 -1 1 1 -0.000030 -0.000000
+ 2 2 -1 2 1 -0.000067 -0.000000
+ 2 2 -1 1 2 0.000245 -0.000000
+ 2 2 -1 2 2 -0.000027 0.000000
+ 2 2 0 1 1 0.000123 0.000000
+ 2 2 0 2 1 0.000058 -0.000000
+ 2 2 0 1 2 -0.000634 0.000000
+ 2 2 0 2 2 0.000251 -0.000000
+ 2 2 1 1 1 -0.000198 -0.000000
+ 2 2 1 2 1 -0.000028 -0.000000
+ 2 2 1 1 2 0.000133 0.000000
+ 2 2 1 2 2 -0.000085 0.000000
+ 2 2 2 1 1 0.000081 0.000000
+ 2 2 2 2 1 0.000006 0.000000
+ 2 2 2 1 2 -0.000012 -0.000000
+ 2 2 2 2 2 0.000038 -0.000000
+ 2 2 3 1 1 -0.000054 -0.000000
+ 2 2 3 2 1 0.000020 -0.000000
+ 2 2 3 1 2 0.000016 -0.000000
+ 2 2 3 2 2 -0.000026 0.000000
+ 2 2 4 1 1 -0.000037 0.000000
+ 2 2 4 2 1 0.000003 -0.000000
+ 2 2 4 1 2 -0.000011 0.000000
+ 2 2 4 2 2 -0.000010 -0.000000
+ 2 3 -4 1 1 0.000024 -0.000000
+ 2 3 -4 2 1 0.000005 0.000000
+ 2 3 -4 1 2 -0.000015 0.000000
+ 2 3 -4 2 2 -0.000003 0.000000
+ 2 3 -3 1 1 0.000005 0.000000
+ 2 3 -3 2 1 -0.000018 -0.000000
+ 2 3 -3 1 2 0.000007 0.000000
+ 2 3 -3 2 2 -0.000009 -0.000000
+ 2 3 -2 1 1 0.000005 -0.000000
+ 2 3 -2 2 1 -0.000039 0.000000
+ 2 3 -2 1 2 -0.000006 0.000000
+ 2 3 -2 2 2 -0.000013 0.000000
+ 2 3 -1 1 1 -0.000039 0.000000
+ 2 3 -1 2 1 0.000034 -0.000000
+ 2 3 -1 1 2 -0.000056 0.000000
+ 2 3 -1 2 2 -0.000041 -0.000000
+ 2 3 0 1 1 0.000009 -0.000000
+ 2 3 0 2 1 -0.000031 0.000000
+ 2 3 0 1 2 0.000163 -0.000000
+ 2 3 0 2 2 0.000039 0.000000
+ 2 3 1 1 1 0.000015 0.000000
+ 2 3 1 2 1 0.000023 -0.000000
+ 2 3 1 1 2 -0.000052 0.000000
+ 2 3 1 2 2 0.000031 -0.000000
+ 2 3 2 1 1 0.000013 -0.000000
+ 2 3 2 2 1 0.000005 0.000000
+ 2 3 2 1 2 0.000030 0.000000
+ 2 3 2 2 2 -0.000002 0.000000
+ 2 3 3 1 1 -0.000009 0.000000
+ 2 3 3 2 1 0.000014 -0.000000
+ 2 3 3 1 2 -0.000038 0.000000
+ 2 3 3 2 2 0.000011 -0.000000
+ 2 3 4 1 1 0.000024 -0.000000
+ 2 3 4 2 1 0.000005 0.000000
+ 2 3 4 1 2 -0.000015 0.000000
+ 2 3 4 2 2 -0.000003 0.000000
+ 2 4 -4 1 1 0.000020 0.000000
+ 2 4 -4 2 1 0.000006 0.000000
+ 2 4 -4 1 2 0.000002 -0.000000
+ 2 4 -4 2 2 0.000029 -0.000000
+ 2 4 -3 1 1 -0.000011 -0.000000
+ 2 4 -3 2 1 0.000009 -0.000000
+ 2 4 -3 1 2 -0.000010 -0.000000
+ 2 4 -3 2 2 -0.000010 0.000000
+ 2 4 -2 1 1 0.000002 0.000000
+ 2 4 -2 2 1 0.000007 -0.000000
+ 2 4 -2 1 2 0.000005 -0.000000
+ 2 4 -2 2 2 -0.000003 -0.000000
+ 2 4 -1 1 1 0.000011 -0.000000
+ 2 4 -1 2 1 -0.000062 0.000000
+ 2 4 -1 1 2 -0.000058 -0.000000
+ 2 4 -1 2 2 -0.000016 0.000000
+ 2 4 0 1 1 0.000019 0.000000
+ 2 4 0 2 1 0.000003 -0.000000
+ 2 4 0 1 2 0.000013 -0.000000
+ 2 4 0 2 2 0.000012 -0.000000
+ 2 4 1 1 1 0.000000 -0.000000
+ 2 4 1 2 1 -0.000009 -0.000000
+ 2 4 1 1 2 0.000020 -0.000000
+ 2 4 1 2 2 0.000017 0.000000
+ 2 4 2 1 1 -0.000012 0.000000
+ 2 4 2 2 1 -0.000017 -0.000000
+ 2 4 2 1 2 0.000004 -0.000000
+ 2 4 2 2 2 -0.000010 -0.000000
+ 2 4 3 1 1 -0.000023 -0.000000
+ 2 4 3 2 1 -0.000007 -0.000000
+ 2 4 3 1 2 0.000016 -0.000000
+ 2 4 3 2 2 -0.000006 0.000000
+ 2 4 4 1 1 0.000020 0.000000
+ 2 4 4 2 1 0.000006 0.000000
+ 2 4 4 1 2 0.000002 -0.000000
+ 2 4 4 2 2 0.000029 -0.000000
+ 3 0 -4 1 1 -0.000017 -0.000000
+ 3 0 -4 2 1 -0.000014 0.000000
+ 3 0 -4 1 2 -0.000009 0.000000
+ 3 0 -4 2 2 0.000006 0.000000
+ 3 0 -3 1 1 -0.000008 -0.000000
+ 3 0 -3 2 1 -0.000004 -0.000000
+ 3 0 -3 1 2 0.000004 -0.000000
+ 3 0 -3 2 2 -0.000002 0.000000
+ 3 0 -2 1 1 -0.000004 -0.000000
+ 3 0 -2 2 1 -0.000005 0.000000
+ 3 0 -2 1 2 -0.000006 -0.000000
+ 3 0 -2 2 2 -0.000025 0.000000
+ 3 0 -1 1 1 0.000022 0.000000
+ 3 0 -1 2 1 0.000050 -0.000000
+ 3 0 -1 1 2 -0.000025 -0.000000
+ 3 0 -1 2 2 0.000017 -0.000000
+ 3 0 0 1 1 -0.000075 -0.000000
+ 3 0 0 2 1 -0.000002 0.000000
+ 3 0 0 1 2 0.000010 0.000000
+ 3 0 0 2 2 -0.000096 0.000000
+ 3 0 1 1 1 0.000051 -0.000000
+ 3 0 1 2 1 0.000036 0.000000
+ 3 0 1 1 2 0.000023 -0.000000
+ 3 0 1 2 2 0.000003 0.000000
+ 3 0 2 1 1 -0.000034 -0.000000
+ 3 0 2 2 1 0.000003 0.000000
+ 3 0 2 1 2 -0.000004 -0.000000
+ 3 0 2 2 2 -0.000030 0.000000
+ 3 0 3 1 1 -0.000002 -0.000000
+ 3 0 3 2 1 0.000005 -0.000000
+ 3 0 3 1 2 -0.000007 -0.000000
+ 3 0 3 2 2 0.000006 0.000000
+ 3 0 4 1 1 -0.000017 -0.000000
+ 3 0 4 2 1 -0.000014 0.000000
+ 3 0 4 1 2 -0.000009 0.000000
+ 3 0 4 2 2 0.000006 0.000000
+ 3 1 -4 1 1 0.000007 -0.000000
+ 3 1 -4 2 1 0.000005 -0.000000
+ 3 1 -4 1 2 0.000024 -0.000000
+ 3 1 -4 2 2 0.000014 0.000000
+ 3 1 -3 1 1 0.000018 -0.000000
+ 3 1 -3 2 1 -0.000029 0.000000
+ 3 1 -3 1 2 0.000023 -0.000000
+ 3 1 -3 2 2 -0.000017 0.000000
+ 3 1 -2 1 1 -0.000018 0.000000
+ 3 1 -2 2 1 0.000012 -0.000000
+ 3 1 -2 1 2 -0.000015 0.000000
+ 3 1 -2 2 2 0.000028 -0.000000
+ 3 1 -1 1 1 0.000047 -0.000000
+ 3 1 -1 2 1 -0.000041 0.000000
+ 3 1 -1 1 2 0.000038 -0.000000
+ 3 1 -1 2 2 -0.000001 0.000000
+ 3 1 0 1 1 -0.000035 0.000000
+ 3 1 0 2 1 0.000057 -0.000000
+ 3 1 0 1 2 -0.000144 0.000000
+ 3 1 0 2 2 0.000083 -0.000000
+ 3 1 1 1 1 -0.000025 -0.000000
+ 3 1 1 2 1 -0.000043 -0.000000
+ 3 1 1 1 2 0.000051 -0.000000
+ 3 1 1 2 2 -0.000055 0.000000
+ 3 1 2 1 1 0.000009 0.000000
+ 3 1 2 2 1 0.000037 -0.000000
+ 3 1 2 1 2 0.000003 -0.000000
+ 3 1 2 2 2 -0.000017 -0.000000
+ 3 1 3 1 1 0.000001 -0.000000
+ 3 1 3 2 1 0.000020 0.000000
+ 3 1 3 1 2 -0.000004 0.000000
+ 3 1 3 2 2 -0.000004 0.000000
+ 3 1 4 1 1 0.000007 -0.000000
+ 3 1 4 2 1 0.000005 -0.000000
+ 3 1 4 1 2 0.000024 -0.000000
+ 3 1 4 2 2 0.000014 0.000000
+ 3 2 -4 1 1 0.000016 0.000000
+ 3 2 -4 2 1 -0.000016 -0.000000
+ 3 2 -4 1 2 -0.000018 -0.000000
+ 3 2 -4 2 2 0.000011 -0.000000
+ 3 2 -3 1 1 -0.000011 0.000000
+ 3 2 -3 2 1 0.000015 0.000000
+ 3 2 -3 1 2 0.000009 0.000000
+ 3 2 -3 2 2 0.000010 -0.000000
+ 3 2 -2 1 1 0.000021 0.000000
+ 3 2 -2 2 1 -0.000000 0.000000
+ 3 2 -2 1 2 0.000030 -0.000000
+ 3 2 -2 2 2 -0.000017 -0.000000
+ 3 2 -1 1 1 -0.000059 0.000000
+ 3 2 -1 2 1 0.000018 -0.000000
+ 3 2 -1 1 2 -0.000043 0.000000
+ 3 2 -1 2 2 -0.000006 -0.000000
+ 3 2 0 1 1 0.000066 -0.000000
+ 3 2 0 2 1 -0.000047 0.000000
+ 3 2 0 1 2 0.000089 -0.000000
+ 3 2 0 2 2 -0.000003 0.000000
+ 3 2 1 1 1 -0.000006 0.000000
+ 3 2 1 2 1 0.000029 0.000000
+ 3 2 1 1 2 -0.000090 0.000000
+ 3 2 1 2 2 0.000002 -0.000000
+ 3 2 2 1 1 -0.000009 -0.000000
+ 3 2 2 2 1 -0.000002 0.000000
+ 3 2 2 1 2 0.000023 -0.000000
+ 3 2 2 2 2 0.000001 0.000000
+ 3 2 3 1 1 -0.000005 0.000000
+ 3 2 3 2 1 -0.000002 0.000000
+ 3 2 3 1 2 0.000006 0.000000
+ 3 2 3 2 2 -0.000007 -0.000000
+ 3 2 4 1 1 0.000016 0.000000
+ 3 2 4 2 1 -0.000016 -0.000000
+ 3 2 4 1 2 -0.000018 -0.000000
+ 3 2 4 2 2 0.000011 -0.000000
+ 3 3 -4 1 1 -0.000010 0.000000
+ 3 3 -4 2 1 0.000017 0.000000
+ 3 3 -4 1 2 0.000013 0.000000
+ 3 3 -4 2 2 -0.000002 -0.000000
+ 3 3 -3 1 1 0.000003 0.000000
+ 3 3 -3 2 1 -0.000001 0.000000
+ 3 3 -3 1 2 0.000010 -0.000000
+ 3 3 -3 2 2 0.000001 -0.000000
+ 3 3 -2 1 1 -0.000032 0.000000
+ 3 3 -2 2 1 -0.000004 -0.000000
+ 3 3 -2 1 2 0.000004 0.000000
+ 3 3 -2 2 2 -0.000032 -0.000000
+ 3 3 -1 1 1 0.000041 0.000000
+ 3 3 -1 2 1 -0.000039 0.000000
+ 3 3 -1 1 2 -0.000026 -0.000000
+ 3 3 -1 2 2 0.000013 -0.000000
+ 3 3 0 1 1 -0.000088 0.000000
+ 3 3 0 2 1 -0.000009 0.000000
+ 3 3 0 1 2 -0.000019 0.000000
+ 3 3 0 2 2 -0.000083 -0.000000
+ 3 3 1 1 1 0.000029 -0.000000
+ 3 3 1 2 1 -0.000043 0.000000
+ 3 3 1 1 2 0.000029 -0.000000
+ 3 3 1 2 2 0.000010 0.000000
+ 3 3 2 1 1 -0.000024 0.000000
+ 3 3 2 2 1 -0.000008 -0.000000
+ 3 3 2 1 2 -0.000006 0.000000
+ 3 3 2 2 2 -0.000005 -0.000000
+ 3 3 3 1 1 -0.000004 0.000000
+ 3 3 3 2 1 0.000008 0.000000
+ 3 3 3 1 2 -0.000001 0.000000
+ 3 3 3 2 2 -0.000007 -0.000000
+ 3 3 4 1 1 -0.000010 0.000000
+ 3 3 4 2 1 0.000017 0.000000
+ 3 3 4 1 2 0.000013 0.000000
+ 3 3 4 2 2 -0.000002 -0.000000
+ 4 1 -4 1 1 -0.000033 0.000000
+ 4 1 -4 2 1 -0.000007 -0.000000
+ 4 1 -4 1 2 0.000010 -0.000000
+ 4 1 -4 2 2 -0.000028 -0.000000
+ 4 1 -3 1 1 -0.000002 -0.000000
+ 4 1 -3 2 1 -0.000003 0.000000
+ 4 1 -3 1 2 -0.000008 0.000000
+ 4 1 -3 2 2 -0.000019 0.000000
+ 4 1 -2 1 1 0.000017 0.000000
+ 4 1 -2 2 1 -0.000007 -0.000000
+ 4 1 -2 1 2 -0.000020 0.000000
+ 4 1 -2 2 2 0.000011 -0.000000
+ 4 1 -1 1 1 -0.000022 0.000000
+ 4 1 -1 2 1 -0.000016 -0.000000
+ 4 1 -1 1 2 0.000000 0.000000
+ 4 1 -1 2 2 -0.000040 -0.000000
+ 4 1 0 1 1 0.000026 0.000000
+ 4 1 0 2 1 0.000010 -0.000000
+ 4 1 0 1 2 -0.000003 -0.000000
+ 4 1 0 2 2 0.000007 -0.000000
+ 4 1 1 1 1 -0.000063 0.000000
+ 4 1 1 2 1 0.000013 -0.000000
+ 4 1 1 1 2 0.000010 0.000000
+ 4 1 1 2 2 -0.000025 -0.000000
+ 4 1 2 1 1 0.000014 0.000000
+ 4 1 2 2 1 -0.000007 0.000000
+ 4 1 2 1 2 0.000014 0.000000
+ 4 1 2 2 2 0.000010 -0.000000
+ 4 1 3 1 1 -0.000007 0.000000
+ 4 1 3 2 1 0.000003 0.000000
+ 4 1 3 1 2 -0.000023 0.000000
+ 4 1 3 2 2 -0.000027 -0.000000
+ 4 1 4 1 1 -0.000033 0.000000
+ 4 1 4 2 1 -0.000007 -0.000000
+ 4 1 4 1 2 0.000010 -0.000000
+ 4 1 4 2 2 -0.000028 -0.000000
+ 4 2 -4 1 1 0.000023 -0.000000
+ 4 2 -4 2 1 -0.000009 0.000000
+ 4 2 -4 1 2 -0.000004 0.000000
+ 4 2 -4 2 2 0.000026 0.000000
+ 4 2 -3 1 1 -0.000014 0.000000
+ 4 2 -3 2 1 0.000003 -0.000000
+ 4 2 -3 1 2 -0.000020 -0.000000
+ 4 2 -3 2 2 -0.000015 -0.000000
+ 4 2 -2 1 1 -0.000005 -0.000000
+ 4 2 -2 2 1 0.000011 -0.000000
+ 4 2 -2 1 2 -0.000009 0.000000
+ 4 2 -2 2 2 -0.000018 0.000000
+ 4 2 -1 1 1 0.000008 0.000000
+ 4 2 -1 2 1 0.000008 -0.000000
+ 4 2 -1 1 2 -0.000022 -0.000000
+ 4 2 -1 2 2 0.000010 -0.000000
+ 4 2 0 1 1 0.000006 -0.000000
+ 4 2 0 2 1 -0.000000 -0.000000
+ 4 2 0 1 2 -0.000008 0.000000
+ 4 2 0 2 2 0.000025 0.000000
+ 4 2 1 1 1 0.000043 0.000000
+ 4 2 1 2 1 0.000047 0.000000
+ 4 2 1 1 2 0.000041 -0.000000
+ 4 2 1 2 2 -0.000049 -0.000000
+ 4 2 2 1 1 -0.000007 -0.000000
+ 4 2 2 2 1 -0.000003 -0.000000
+ 4 2 2 1 2 -0.000000 0.000000
+ 4 2 2 2 2 0.000007 0.000000
+ 4 2 3 1 1 -0.000009 -0.000000
+ 4 2 3 2 1 -0.000009 -0.000000
+ 4 2 3 1 2 0.000010 -0.000000
+ 4 2 3 2 2 -0.000012 0.000000
+ 4 2 4 1 1 0.000023 -0.000000
+ 4 2 4 2 1 -0.000009 0.000000
+ 4 2 4 1 2 -0.000004 0.000000
+ 4 2 4 2 2 0.000026 0.000000
+ 4 3 -4 1 1 -0.000028 0.000000
+ 4 3 -4 2 1 -0.000006 0.000000
+ 4 3 -4 1 2 0.000011 -0.000000
+ 4 3 -4 2 2 -0.000034 -0.000000
+ 4 3 -3 1 1 -0.000020 0.000000
+ 4 3 -3 2 1 -0.000004 0.000000
+ 4 3 -3 1 2 -0.000009 -0.000000
+ 4 3 -3 2 2 -0.000001 -0.000000
+ 4 3 -2 1 1 0.000001 -0.000000
+ 4 3 -2 2 1 0.000013 0.000000
+ 4 3 -2 1 2 0.000001 0.000000
+ 4 3 -2 2 2 0.000026 0.000000
+ 4 3 -1 1 1 -0.000044 -0.000000
+ 4 3 -1 2 1 -0.000016 -0.000000
+ 4 3 -1 1 2 -0.000001 0.000000
+ 4 3 -1 2 2 -0.000018 0.000000
+ 4 3 0 1 1 0.000017 -0.000000
+ 4 3 0 2 1 0.000002 0.000000
+ 4 3 0 1 2 -0.000010 -0.000000
+ 4 3 0 2 2 0.000016 0.000000
+ 4 3 1 1 1 -0.000026 -0.000000
+ 4 3 1 2 1 0.000007 0.000000
+ 4 3 1 1 2 0.000004 -0.000000
+ 4 3 1 2 2 -0.000062 0.000000
+ 4 3 2 1 1 0.000015 0.000000
+ 4 3 2 2 1 -0.000011 0.000000
+ 4 3 2 1 2 0.000010 -0.000000
+ 4 3 2 2 2 0.000009 -0.000000
+ 4 3 3 1 1 -0.000031 -0.000000
+ 4 3 3 2 1 0.000008 -0.000000
+ 4 3 3 1 2 -0.000018 -0.000000
+ 4 3 3 2 2 -0.000003 0.000000
+ 4 3 4 1 1 -0.000028 0.000000
+ 4 3 4 2 1 -0.000006 0.000000
+ 4 3 4 1 2 0.000011 -0.000000
+ 4 3 4 2 2 -0.000034 -0.000000
diff --git a/tests/old_testing.py b/tests/old_testing.py
new file mode 100644
index 0000000..4db63f7
--- /dev/null
+++ b/tests/old_testing.py
@@ -0,0 +1,96 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD. See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import pytest
+import numpy as np
+
+from nomad.datamodel import EntryArchive
+from nomad_parser_wannier90.parsers.parser import Wannier90Parser
+
+
+def approx(value, abs=0, rel=1e-6):
+ return pytest.approx(value, abs=abs, rel=rel)
+
+
+@pytest.fixture(scope='module')
+def parser():
+ return Wannier90Parser()
+
+
+def test_lco(parser):
+ archive = EntryArchive()
+ parser.parse('tests/data/wannier90/lco_mlwf/lco.wout', archive, None)
+
+ sec_run = archive.run[-1]
+ sec_program = sec_run.program
+ assert sec_program.name == 'Wannier90'
+ assert sec_program.version == '3.1.0'
+
+ assert len(sec_run.system) == 1
+ sec_system = sec_run.system[-1]
+ assert sec_system.atoms.labels[-1] == 'O'
+ assert (sec_system.atoms.positions[2].magnitude == np.array([0.0, 0.0, 0.0])).all()
+ assert sec_system.atoms.lattice_vectors[0][0].magnitude == approx(-1.909145e-10)
+ assert sec_system.atoms.periodic == [True, True, True]
+ assert sec_system.m_xpath('atoms_group')
+ assert len(sec_system.atoms_group) == 1
+ assert sec_system.atoms_group[-1].label == 'projection'
+ assert sec_system.atoms_group[-1].type == 'active_orbitals'
+ assert sec_system.atoms_group[-1].index == 0
+ assert sec_system.atoms_group[-1].atom_indices[0] == 2
+
+ assert len(sec_run.method) == 1
+ sec_method = sec_run.method[-1]
+ assert sec_method.k_mesh.n_points == 343
+ assert (
+ sec_method.k_mesh.points[303] == np.array([0.85714, 0.14286, 0.28571])
+ ).all()
+ assert (sec_method.k_mesh.grid == np.array([7, 7, 7])).all()
+ sec_wannier = sec_method.tb.wannier
+ assert sec_wannier.n_projected_orbitals == 1
+ assert sec_wannier.n_bands == 5
+ assert sec_wannier.is_maximally_localized is True
+ assert sec_method.atom_parameters[-1].n_orbitals == 1
+ assert sec_method.atom_parameters[-1].orbitals[0] == 'dx2-y2'
+
+ # Band tests
+ assert len(sec_run.calculation) == 1
+ sec_scc = sec_run.calculation[-1]
+ assert len(sec_scc.band_structure_electronic[0].segment) == 4
+ assert sec_scc.band_structure_electronic[0].segment[0].n_kpoints == 100
+ assert sec_scc.band_structure_electronic[0].segment[0].n_kpoints == len(
+ sec_scc.band_structure_electronic[0].segment[0].energies[0]
+ )
+ assert sec_scc.energy.fermi == sec_scc.band_structure_electronic[0].energy_fermi
+ assert sec_scc.band_structure_electronic[0].energy_fermi.to(
+ 'eV'
+ ).magnitude == approx(12.895622)
+ # DOS tests
+ sec_dos = sec_scc.dos_electronic
+ assert len(sec_dos) == 1
+ assert sec_dos[0].n_energies == 692
+ assert sec_dos[0].n_energies == len(sec_dos[0].energies)
+ assert len(sec_dos[0].total[0].value) == sec_dos[0].n_energies
+ # x_wannier90 tests
+ sec_hoppings = sec_scc.hopping_matrix[0]
+ assert sec_hoppings.n_wigner_seitz_points == 397
+ assert sec_hoppings.n_wigner_seitz_points == len(sec_hoppings.degeneracy_factors)
+ assert sec_hoppings.n_orbitals == sec_wannier.n_projected_orbitals
+ assert sec_hoppings.value.shape[0] == sec_hoppings.n_wigner_seitz_points
+ assert sec_hoppings.value.shape[1] == sec_hoppings.n_orbitals
+ assert sec_hoppings.value.shape[2] == 7
diff --git a/tests/test_parser.py b/tests/test_parser.py
new file mode 100644
index 0000000..b89a86b
--- /dev/null
+++ b/tests/test_parser.py
@@ -0,0 +1,60 @@
+#
+# Copyright The NOMAD Authors.
+#
+# This file is part of NOMAD. See https://nomad-lab.eu for further info.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+import pytest
+import numpy as np
+import os
+
+from nomad.datamodel import EntryArchive
+from nomad_parser_wannier90.parsers.parser import Wannier90Parser
+
+from . import logger
+
+
+def approx(value, abs=0, rel=1e-6):
+ return pytest.approx(value, abs=abs, rel=rel)
+
+
+@pytest.fixture(scope='module')
+def parser():
+ return Wannier90Parser()
+
+
+def test_single_point_La2CuO4(parser):
+ archive = EntryArchive()
+ parser.parse(
+ os.path.join(os.path.dirname(__file__), 'data/lco_mlwf/lco.wout'),
+ archive,
+ logger,
+ )
+ simulation = archive.data
+ assert simulation.program.name == 'Wannier90'
+ assert simulation.program.version == '3.1.0'
+
+
+def test_single_point_LK99(parser):
+ archive = EntryArchive()
+ assert True
+ # parser.parse(
+ # os.path.join(os.path.dirname(__file__), 'data/lk99_liangsi_1/k000.wout'),
+ # archive,
+ # logger,
+ # )
+ # simulation = archive.data
+ # assert simulation.program.name == 'Wannier90'
+ # assert simulation.program.version == '2.0.1'