diff --git a/omnibin/__init__.py b/omnibin/__init__.py
index 1403539b4961b0239810c54b0e56cfc16e40c4f3..6b5136c0ab16fe25ccc7ce9af179edaad43438c5 100644
--- a/omnibin/__init__.py
+++ b/omnibin/__init__.py
@@ -1,4 +1,4 @@
from .metrics import generate_binary_classification_report, ColorScheme
-__version__ = "0.1.6"
+__version__ = "0.1.7"
__all__ = ["generate_binary_classification_report"]
\ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index 7e283cc1cfd4c67a38879f4c824f969117000e74..fb311cbaf6cfd5cedbbae3e76defcbbc2591e490 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "omnibin"
-version = "0.1.6"
+version = "0.1.7"
description = "A package for generating comprehensive binary classification reports with visualizations and confidence intervals"
readme = "README.md"
requires-python = ">=3.11"
diff --git a/space/space/omnibin/utils.py b/space/space/omnibin/utils.py
index c48af978eceb5eb72f99d12d6dbb341fe8a99fa2..33276dfb8d0a0e9e8d0873c0e5f28c531bd7f350 100644
--- a/space/space/omnibin/utils.py
+++ b/space/space/omnibin/utils.py
@@ -129,6 +129,7 @@ def calculate_metrics_summary(y_true, y_scores, best_thresh):
"Sensitivity": recall_score(y_true, y_pred_opt),
"Specificity": recall_score(y_true, y_pred_opt, pos_label=0),
"PPV": precision_score(y_true, y_pred_opt, zero_division=0),
+ "NPV": precision_score(y_true, y_pred_opt, pos_label=0, zero_division=0),
"MCC": matthews_corrcoef(y_true, y_pred_opt),
"F1 Score": f1_score(y_true, y_pred_opt),
"AUC-ROC": roc_auc_score(y_true, y_scores),
@@ -142,6 +143,7 @@ def calculate_confidence_intervals(y_true, y_scores, best_thresh, n_bootstrap=10
"Sensitivity": lambda yt, ys: recall_score(yt, ys >= best_thresh),
"Specificity": lambda yt, ys: recall_score(yt, ys >= best_thresh, pos_label=0),
"PPV": lambda yt, ys: precision_score(yt, ys >= best_thresh, zero_division=0),
+ "NPV": lambda yt, ys: precision_score(yt, ys >= best_thresh, pos_label=0, zero_division=0),
"MCC": lambda yt, ys: matthews_corrcoef(yt, ys >= best_thresh),
"F1 Score": lambda yt, ys: f1_score(yt, ys >= best_thresh),
"AUC-ROC": lambda yt, ys: roc_auc_score(yt, ys),
diff --git a/space/space/results/classification_report.pdf b/space/space/results/classification_report.pdf
index 6f42303f67412c4476f85b7884b59c010458ef1d..c4965b6d2a69439b1ca83f2f6bfd12ee9570cc3d 100644
Binary files a/space/space/results/classification_report.pdf and b/space/space/results/classification_report.pdf differ
diff --git a/space/space/results/plots/calibration.png b/space/space/results/plots/calibration.png
index f7c01a3c5c9fef74942c4099f05cd05a045b3987..6a0cc40265ed5d18db5dc8cbd4234520004b6bdb 100644
Binary files a/space/space/results/plots/calibration.png and b/space/space/results/plots/calibration.png differ
diff --git a/space/space/results/plots/confusion_matrix.png b/space/space/results/plots/confusion_matrix.png
index 0b478f8c734ae6f382c1bb83b101cdf4a0355827..62056c6787c2ca8f9ed131a6993c4ed14d095363 100644
Binary files a/space/space/results/plots/confusion_matrix.png and b/space/space/results/plots/confusion_matrix.png differ
diff --git a/space/space/results/plots/metrics_summary.png b/space/space/results/plots/metrics_summary.png
index d12df16853fee7c0770444108ef111b9653f651f..ae26b706484784c2d1d522a3f4b257c124bfee7d 100644
Binary files a/space/space/results/plots/metrics_summary.png and b/space/space/results/plots/metrics_summary.png differ
diff --git a/space/space/results/plots/metrics_threshold.png b/space/space/results/plots/metrics_threshold.png
index 065fcd9b7628d23439b760827af8a0d2bc0e4d0a..d1030e70e7546f48f8a7bc82370632c0a6419aa1 100644
Binary files a/space/space/results/plots/metrics_threshold.png and b/space/space/results/plots/metrics_threshold.png differ
diff --git a/space/space/results/plots/prediction_distribution.png b/space/space/results/plots/prediction_distribution.png
index ca236325a1ef6cdc35fa0bd6a22fe274efcf9b9d..136f2571853cf19ed33caa699a86fb32b99a923b 100644
Binary files a/space/space/results/plots/prediction_distribution.png and b/space/space/results/plots/prediction_distribution.png differ
diff --git a/space/space/results/plots/roc_pr.png b/space/space/results/plots/roc_pr.png
index 8a9be95b7653bc3ebe65c63b285716e29ff33415..54a10b97fdfe453afc9fbc109ef66e4d75d0c95d 100644
Binary files a/space/space/results/plots/roc_pr.png and b/space/space/results/plots/roc_pr.png differ
diff --git a/space/space/space/space/space/.github/workflows/deploy.yml b/space/space/space/space/space/.github/workflows/deploy.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ba3f387f0fc1eeb02143c84491f6532ac8896159
--- /dev/null
+++ b/space/space/space/space/space/.github/workflows/deploy.yml
@@ -0,0 +1,44 @@
+name: Deploy to Hugging Face Space
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ deploy:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout source repo
+ uses: actions/checkout@v3
+
+ - name: Clone HF Space repo
+ run: |
+ git config --global user.email "kitamura.felipe@gmail.com"
+ git config --global user.name "kitamura-felipe"
+ git clone https://huggingface.co/spaces/felipekitamura/omnibin space
+ rsync -av --exclude='.git' ./ space/
+
+ echo '---' > temp_readme.md
+ echo 'title: Omnibin' >> temp_readme.md
+ echo 'emoji: ⚡' >> temp_readme.md
+ echo 'colorFrom: pink' >> temp_readme.md
+ echo 'colorTo: yellow' >> temp_readme.md
+ echo 'sdk: gradio' >> temp_readme.md
+ echo 'sdk_version: 5.29.0' >> temp_readme.md
+ echo 'app_file: app.py' >> temp_readme.md
+ echo 'pinned: false' >> temp_readme.md
+ echo 'license: mit' >> temp_readme.md
+ echo 'short_description: A Python package for generating comprehensive binary classi' >> temp_readme.md
+ echo '---' >> temp_readme.md
+ echo '' >> temp_readme.md
+ cat README.md >> temp_readme.md
+ mv temp_readme.md space/README.md
+
+ cd space
+ git add .
+ git commit -m "Automated update from GitHub" || echo "No changes"
+ git push https://USER:$HF_TOKEN@huggingface.co/spaces/felipekitamura/omnibin HEAD:main
+ env:
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
diff --git a/space/space/space/space/space/.github/workflows/test.yml b/space/space/space/space/space/.github/workflows/test.yml
new file mode 100644
index 0000000000000000000000000000000000000000..4bcb014846c2a8353f41872eb3b703ad3f697a95
--- /dev/null
+++ b/space/space/space/space/space/.github/workflows/test.yml
@@ -0,0 +1,26 @@
+name: Run Tests
+
+on:
+ push:
+ branches: [main]
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v3
+
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.10'
+
+ - name: Install dependencies
+ run: |
+ pip install -r requirements.txt
+ pip install pytest
+
+ - name: Run tests
+ run: pytest tests/
diff --git a/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml b/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
index 5d7f0dd73b3a39507870f9d263b725025c8485b5..aedcc2760dec0e235f0ef0cf6b1b712e199330ff 100644
--- a/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
+++ b/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
@@ -3,11 +3,33 @@ name: Deploy to Hugging Face Space
on:
push:
branches:
- - main # or the branch you want to trigger deployment
+ - main
jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout source repo
+ uses: actions/checkout@v3
+
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: '3.10'
+
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+ pip install pytest
+
+ - name: Run tests
+ run: pytest tests/
+
deploy:
runs-on: ubuntu-latest
+ needs: test # 👈 only runs if 'test' job passes
steps:
- name: Checkout source repo
@@ -35,6 +57,7 @@ jobs:
echo '' >> temp_readme.md
cat README.md >> temp_readme.md
mv temp_readme.md space/README.md
+
cd space
git add .
git commit -m "Automated update from GitHub" || echo "No changes"
diff --git a/space/space/space/space/space/space/space/.gitignore b/space/space/space/space/space/space/space/.gitignore
index 418a11687e6a1488cb8b6cc8cfea2cc15c716664..61ca016b11a2b27d30d35093dc8bcf5be5bca69f 100644
--- a/space/space/space/space/space/space/space/.gitignore
+++ b/space/space/space/space/space/space/space/.gitignore
@@ -48,4 +48,5 @@ htmlcov/
*.xlsx
*.xls
*.db
-*.sqlite3
\ No newline at end of file
+*.sqlite3
+plots/
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/README.md b/space/space/space/space/space/space/space/README.md
index 65ce218f2d2a160e66582da44c7b4a0d0ac0b1f0..6e51d298908af09fc89f34ab7d5b26e9ac1e2ed8 100644
--- a/space/space/space/space/space/space/space/README.md
+++ b/space/space/space/space/space/space/space/README.md
@@ -1,4 +1,6 @@
-[](https://github.com/kitamura-felipe/omnibin/actions/workflows/update-hf-space.yml)
+[](https://github.com/kitamura-felipe/omnibin/actions/workflows/test.yml)
+[](https://github.com/kitamura-felipe/omnibin/actions/workflows/deploy.yml)
+
# Omnibin
diff --git a/space/space/space/space/space/space/space/space/space/README.md b/space/space/space/space/space/space/space/space/space/README.md
index 1f102d5a6fbe98e89efc7f0d0a36741cedbe08dd..65ce218f2d2a160e66582da44c7b4a0d0ac0b1f0 100644
--- a/space/space/space/space/space/space/space/space/space/README.md
+++ b/space/space/space/space/space/space/space/space/space/README.md
@@ -1,4 +1,4 @@
-[](https://github.com/felipekitamura/omnibin/actions/workflows/update-hf-space.yml)
+[](https://github.com/kitamura-felipe/omnibin/actions/workflows/update-hf-space.yml)
# Omnibin
diff --git a/space/space/space/space/space/space/space/space/space/space/README.md b/space/space/space/space/space/space/space/space/space/space/README.md
index 4b306bf66aa050d19edb2645ac64df2e6ab1c35f..1f102d5a6fbe98e89efc7f0d0a36741cedbe08dd 100644
--- a/space/space/space/space/space/space/space/space/space/space/README.md
+++ b/space/space/space/space/space/space/space/space/space/space/README.md
@@ -1,3 +1,5 @@
+[](https://github.com/felipekitamura/omnibin/actions/workflows/update-hf-space.yml)
+
# Omnibin
A Python package for generating comprehensive binary classification reports with visualizations and confidence intervals.
diff --git a/space/space/space/space/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml b/space/space/space/space/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
index 155fe85ecf8c05469f2c260bf22aab27f2610fa3..5d7f0dd73b3a39507870f9d263b725025c8485b5 100644
--- a/space/space/space/space/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
+++ b/space/space/space/space/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
@@ -19,6 +19,22 @@ jobs:
git config --global user.name "kitamura-felipe"
git clone https://huggingface.co/spaces/felipekitamura/omnibin space
rsync -av --exclude='.git' ./ space/
+
+ echo '---' > temp_readme.md
+ echo 'title: Omnibin' >> temp_readme.md
+ echo 'emoji: ⚡' >> temp_readme.md
+ echo 'colorFrom: pink' >> temp_readme.md
+ echo 'colorTo: yellow' >> temp_readme.md
+ echo 'sdk: gradio' >> temp_readme.md
+ echo 'sdk_version: 5.29.0' >> temp_readme.md
+ echo 'app_file: app.py' >> temp_readme.md
+ echo 'pinned: false' >> temp_readme.md
+ echo 'license: mit' >> temp_readme.md
+ echo 'short_description: A Python package for generating comprehensive binary classi' >> temp_readme.md
+ echo '---' >> temp_readme.md
+ echo '' >> temp_readme.md
+ cat README.md >> temp_readme.md
+ mv temp_readme.md space/README.md
cd space
git add .
git commit -m "Automated update from GitHub" || echo "No changes"
diff --git a/space/space/space/space/space/space/space/space/space/space/space/README.md b/space/space/space/space/space/space/space/space/space/space/space/README.md
index bf81bd221342c5d9193b829926f6fa7faddb2219..4b306bf66aa050d19edb2645ac64df2e6ab1c35f 100644
--- a/space/space/space/space/space/space/space/space/space/space/space/README.md
+++ b/space/space/space/space/space/space/space/space/space/space/space/README.md
@@ -97,18 +97,3 @@ Here are examples of the visualizations generated by Omnibin:
### Metrics Summary

-
-
-
----
-title: Omnibin
-emoji: ⚡
-colorFrom: pink
-colorTo: yellow
-sdk: gradio
-sdk_version: 5.29.0
-app_file: app.py
-pinned: false
-license: mit
-short_description: A Python package for generating comprehensive binary classi
----
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/README.md b/space/space/space/space/space/space/space/space/space/space/space/space/README.md
index 3c18c272877ba223eb36cad737e80f04415d9765..bf81bd221342c5d9193b829926f6fa7faddb2219 100644
--- a/space/space/space/space/space/space/space/space/space/space/space/space/README.md
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/README.md
@@ -1,16 +1,3 @@
----
-title: Omnibin
-emoji: ⚡
-colorFrom: pink
-colorTo: yellow
-sdk: gradio
-sdk_version: 5.29.0
-app_file: app.py
-pinned: false
-license: mit
-short_description: A Python package for generating comprehensive binary classi
----
-
# Omnibin
A Python package for generating comprehensive binary classification reports with visualizations and confidence intervals.
@@ -109,4 +96,19 @@ Here are examples of the visualizations generated by Omnibin:
### Metrics Summary
-
\ No newline at end of file
+
+
+
+
+---
+title: Omnibin
+emoji: ⚡
+colorFrom: pink
+colorTo: yellow
+sdk: gradio
+sdk_version: 5.29.0
+app_file: app.py
+pinned: false
+license: mit
+short_description: A Python package for generating comprehensive binary classi
+---
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
new file mode 100644
index 0000000000000000000000000000000000000000..155fe85ecf8c05469f2c260bf22aab27f2610fa3
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.github/workflows/update-hf-space.yml
@@ -0,0 +1,27 @@
+name: Deploy to Hugging Face Space
+
+on:
+ push:
+ branches:
+ - main # or the branch you want to trigger deployment
+
+jobs:
+ deploy:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout source repo
+ uses: actions/checkout@v3
+
+ - name: Clone HF Space repo
+ run: |
+ git config --global user.email "kitamura.felipe@gmail.com"
+ git config --global user.name "kitamura-felipe"
+ git clone https://huggingface.co/spaces/felipekitamura/omnibin space
+ rsync -av --exclude='.git' ./ space/
+ cd space
+ git add .
+ git commit -m "Automated update from GitHub" || echo "No changes"
+ git push https://USER:$HF_TOKEN@huggingface.co/spaces/felipekitamura/omnibin HEAD:main
+ env:
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.gitignore b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..418a11687e6a1488cb8b6cc8cfea2cc15c716664
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.gitignore
@@ -0,0 +1,51 @@
+# Python
+__pycache__/
+*.py[cod]
+*$py.class
+*.so
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# Virtual Environment
+venv/
+env/
+ENV/
+
+# IDE
+.idea/
+.vscode/
+*.swp
+*.swo
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# Distribution
+dist/
+build/
+update.bat
+
+
+# Coverage
+.coverage
+htmlcov/
+
+# Results and data
+*.xlsx
+*.xls
+*.db
+*.sqlite3
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/CHANGELOG.md b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/CHANGELOG.md
new file mode 100644
index 0000000000000000000000000000000000000000..c1c7f06c206f8387bd9b68d2ea4634dbeeff8859
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/CHANGELOG.md
@@ -0,0 +1,15 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+## [0.1.0] - 2024-03-19
+
+### Added
+- Initial release
+- Basic binary classification metrics and visualizations
+- Comprehensive reporting functionality
+- Confidence interval calculations
+- Example usage and documentation
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/LICENSE b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..206421a1c363f8b67f0ffc968e29f148434c6b1c
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2025 Felipe Campos Kitamura
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/data/scores.csv b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/data/scores.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1c612fb5667550ac4c93931d21321ed8d766adf9
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/data/scores.csv
@@ -0,0 +1,10201 @@
+y_pred,y_true
+0.6108777193397277,1
+0.9414566422007212,1
+0.9601427666215183,1
+0.9945732823840646,1
+0.526910845164245,1
+0.817536078656719,1
+0.9531242479103951,1
+0.9022708644316214,1
+0.9137806971384371,1
+0.9589073324045465,1
+0.8126999356017819,1
+0.9202403430450075,1
+0.9666927872049409,1
+0.7398566829429536,1
+0.9994507348128117,1
+0.8699429209074441,1
+0.7169458224355099,1
+0.6206740439285562,1
+0.7782477065486615,1
+0.999510755737531,1
+0.6222805141006532,1
+0.9101386250699285,1
+0.9392654671510053,1
+0.7042143713691886,1
+0.9899063783622869,1
+0.9984884971208096,1
+0.9893956939823622,1
+0.6173053052869797,1
+0.5994133923310844,1
+0.7627981122461411,1
+0.8228259660465228,1
+0.9681260365399877,1
+0.9693876939167403,1
+0.9838581059841184,1
+0.8190383715437765,1
+0.9438175046887697,1
+0.6665368235033549,1
+0.9998617765066796,1
+0.9881697861292998,1
+0.9856484598214257,1
+0.9995161421681925,1
+0.9562743478258021,1
+0.8952807884028098,1
+0.5880642571832053,1
+0.9730564916280946,1
+0.9996419895350552,1
+0.396034996592164,1
+0.6753558482030457,1
+0.9329485127752238,1
+0.9699186123101611,1
+0.9210643643045517,1
+0.834132165124575,1
+0.9512900290506714,1
+0.39106065282894753,1
+0.9996080795810429,1
+0.9560747366574177,1
+0.8119146591717581,1
+0.9985875889734148,1
+0.9879245650677189,1
+0.7466066001586875,1
+0.0,1
+0.6084324321000285,1
+0.7191562565993634,1
+0.9603186646229788,1
+0.9751717272405184,1
+0.9796423356296594,1
+0.9565811254028531,1
+0.9896948861400741,1
+0.9026706103856758,1
+0.15156097404982272,1
+0.9408431002321586,1
+0.9981671310164529,1
+0.8268545943000847,1
+0.9989688250049124,1
+0.999812954512679,1
+0.998398515659221,1
+0.9653222242779501,1
+0.9039901776228897,1
+0.9752602091371803,1
+0.999242077717062,1
+0.8349272617360932,1
+0.9669064820646318,1
+0.743199300641544,1
+0.5278279054841126,1
+0.0,1
+0.9969611852791698,1
+0.43744219917902094,1
+0.9489213345641022,1
+0.9999856219276582,1
+0.27121554253443125,1
+0.8048070725345953,1
+0.9637087028688819,1
+0.7686785209876746,1
+0.7159171473546867,1
+0.7680828992528506,1
+0.918938226883069,1
+0.9035672377916817,1
+0.9854291293427889,1
+0.9406921225123315,1
+0.9546339781850041,1
+0.9999264435607146,1
+0.9825945354770774,1
+0.9999756509837542,1
+0.9477323004052138,1
+0.680880657890768,1
+0.8198941456603951,1
+0.9109695373915015,1
+0.5928333475458158,1
+0.8792616724490449,1
+0.7331324133649977,1
+0.7550147321296424,1
+0.9957405124519143,1
+0.8215610873718654,1
+0.5092306715509154,1
+0.9913992592580253,1
+0.9267796870322693,1
+0.7695810885141547,1
+0.9308892548325006,1
+0.9967539932916728,1
+0.9234304596181135,1
+0.9927460215971999,1
+0.9933167985147748,1
+0.6559194752977433,1
+0.9583592239546211,1
+0.5496777928884857,1
+0.8052035345218987,1
+0.9581903806079984,1
+0.996480494348428,1
+0.9776951626321282,1
+0.9878726960424461,1
+0.875963751596295,1
+0.9340211874411132,1
+0.9556918592817932,1
+0.9167910541799162,1
+0.8092071729010326,1
+0.933287060855167,1
+0.8271687362767297,1
+0.9994442376457917,1
+0.9437577026323763,1
+0.9266911750817917,1
+0.5275065905959517,1
+0.9762104126840665,1
+0.9658002428120813,1
+0.892370002589647,1
+0.6072289368787276,1
+0.9607801275502186,1
+0.6818608770297723,1
+0.9772410908676157,1
+0.3747804290199114,1
+0.9895937185477486,1
+0.8754267757541843,1
+0.945703353083088,1
+0.9610363209250391,1
+0.9919931307297852,1
+0.6780974020031272,1
+0.7042332844724373,1
+0.9894347905104384,1
+0.9784239839543797,1
+0.8503852467047914,1
+0.9880731139277545,1
+0.9823676764843454,1
+0.9970193298638139,1
+0.6680827348108013,1
+0.8435048162611947,1
+0.982164377552456,1
+0.9937758519452399,1
+0.9829327035002513,1
+0.990094280021584,1
+0.999855405194223,1
+0.9949759311201788,1
+0.31769345094604984,1
+0.7507014124880611,1
+0.8608107498731634,1
+0.9994032842678539,1
+0.971455543359994,1
+0.9979806093112891,1
+0.9700356688441002,1
+0.9116740091779396,1
+0.9984841292499343,1
+0.9326983720591616,1
+0.9687652626541456,1
+0.8419101276547487,1
+0.8592859766033598,1
+0.9886124180189473,1
+0.9581012006276096,1
+0.8321812571316678,1
+0.5772116756372654,1
+0.9514742276914736,1
+0.08420179244620907,1
+0.9980486215891763,1
+0.9720923923927431,1
+0.25270204769705784,1
+0.9213948906199656,1
+0.8454783916778241,1
+0.9973647531390194,1
+0.9120603091227267,1
+0.9256575362114674,1
+0.6652919763133188,1
+0.9867798910789847,1
+0.9824974994097531,1
+0.2978354747071451,0
+1.2337316723404226e-05,0
+0.11858691235096752,0
+0.0029408951197745113,0
+0.007188587846347021,0
+0.10048942037371815,0
+0.44234991120757117,0
+0.04407380032000478,0
+0.005459005856742365,0
+0.21900025118461816,0
+0.24073667481988906,0
+0.007093230997814955,0
+0.05090929525906372,0
+0.10241442552225796,0
+0.1009560835251347,0
+0.002916689542103956,0
+0.03671060258368874,0
+0.004192392759318913,0
+0.058483430582740324,0
+0.12805678791129968,0
+0.013196345319365487,0
+0.01782704905951448,0
+0.010140926717927828,0
+0.02491796441836339,0
+0.013446500050737008,0
+0.021604867822597445,0
+0.12729753379241232,0
+0.047201803431369094,0
+0.05890293017292649,0
+0.0026471615686761403,0
+0.05338609598322395,0
+0.05696959103194029,0
+0.051183248966137275,0
+0.08120111834040118,0
+0.37325559026596344,0
+0.007525666342146585,0
+0.08253990395185816,0
+0.0945917396282692,0
+0.008416295805988053,0
+0.05534839816879469,0
+0.49373779103288173,0
+0.02402965857991108,0
+0.0790841589624873,0
+0.10767872332370595,0
+0.005158046307624289,0
+0.0011446731897967384,0
+0.0508601405458182,0
+0.00940682072078335,0
+0.005337645925043162,0
+0.08411819217794934,0
+0.423898630108208,0
+0.2237263382060281,0
+0.06667076709534395,0
+0.00406378505274236,0
+0.5457619341827158,0
+0.05926824627183116,0
+0.09673737882127942,0
+3.1844077297503646e-05,0
+0.008801240024970349,0
+0.046388743596452224,0
+0.046736047257080124,0
+0.1251774419257591,0
+0.11859912944932269,0
+0.11874797769068775,0
+0.025352751126814965,0
+0.010503225489212885,0
+0.11411840849106406,0
+0.03337979039050211,0
+0.02749366848375017,0
+0.11683638099796542,0
+0.12402808505999459,0
+0.03770616784744103,0
+0.016305061180533847,0
+0.27758220668044603,0
+0.0034773919941805996,0
+0.009358013361400658,0
+0.06348909677341989,0
+0.8724232722620894,0
+0.020733752526665473,0
+0.03259046579750546,0
+0.019246116202895763,0
+0.10570835476969383,0
+0.026628067171985247,0
+0.0037293650077116275,0
+0.13458801192703013,0
+0.009733389004870254,0
+0.006207903403602654,0
+0.01887723256059929,0
+0.06085449465548316,0
+0.18521080274287827,0
+0.5618441074072531,0
+0.06608414749229832,0
+0.037392785489218726,0
+0.0008883088832091818,0
+0.0006901097616995767,0
+0.19349999333756257,0
+0.025268089550385904,0
+0.006941713623404425,0
+0.5014192454523595,0
+1.2189515818506561e-08,0
+0.21065853685761732,0
+0.022810866300864367,0
+0.09732303292773234,0
+0.33289331700471025,0
+0.022172057154732003,0
+0.006500831594164476,0
+0.03186153342463896,0
+0.14117509349903773,0
+0.06460397888806146,0
+0.02205529945155447,0
+0.44481528351386207,0
+0.11305536664611326,0
+0.024988056044743905,0
+0.2099047690554184,0
+0.029491578563891285,0
+0.1124714486999105,0
+0.059662222462080375,0
+0.039105430952906646,0
+0.0008456319110194651,0
+0.04127042544982756,0
+0.01081145877138078,0
+0.005935731564763036,0
+0.12631322825123828,0
+0.03975976421723353,0
+0.002621618979227592,0
+0.16656193801409364,0
+0.05351186993539777,0
+0.15462257001274585,0
+0.0002158916904783928,0
+0.028318402842011287,0
+0.03306716932728811,0
+0.08719943980401522,0
+0.03563346835873781,0
+0.041041597012551834,0
+0.0018670363791165837,0
+0.05251489278458456,0
+0.05245686183966884,0
+0.0007418673964122107,0
+0.1762992635745348,0
+0.24154897576068052,0
+0.49657883046091833,0
+0.035039214223010165,0
+0.035032015630666866,0
+0.028795102653230348,0
+0.0240311164847651,0
+0.004741016617432049,0
+0.0038382745201521657,0
+0.0768083171270083,0
+0.14563746609909856,0
+0.04964798941057195,0
+0.00013137220906239428,0
+0.23509996538110686,0
+0.42739408360664866,0
+0.06415321265745746,0
+0.0045649102298345266,0
+0.0663592376198167,0
+0.0002196719061764789,0
+0.004466222985399244,0
+0.006040909013330745,0
+0.06070674382021325,0
+0.054277237755335106,0
+0.05728661856555376,0
+0.046885079269343426,0
+0.06455181918216053,0
+0.7689596548675522,0
+0.0770982223904156,0
+0.05786082335519942,0
+0.10375503086959248,0
+0.12019426551257403,0
+0.2391356694646582,0
+0.06448900421620501,0
+0.10395711128373566,0
+0.32092266633558425,0
+0.11059654732364843,0
+0.10214326623222152,0
+0.2783583694374255,0
+0.005055117166454942,0
+0.13513012734691834,0
+0.19576678589254512,0
+0.19351992966185552,0
+0.10821646009030464,0
+0.14801182664028964,0
+0.019954721368848242,0
+0.00010311742632050275,0
+0.0069683759865482725,0
+0.00708643539406673,0
+0.026444286079689776,0
+0.18466213659300673,0
+0.1232179012302902,0
+0.10141388908933754,0
+0.05341838344017323,0
+0.2376282183784805,0
+0.007132178193966434,0
+0.05543367398393475,0
+0.3528526176431265,0
+0.08613193553805448,0
+0.0023867809078042075,0
+0.013029165443282698,0
+3.998788775516012e-05,0
+0.040048336918864245,0
+0.04582797694627099,0
+0.01783983410285788,0
+0.023510069653895255,0
+0.042096082551469766,0
+0.6350940760947023,0
+0.004849434821395455,0
+0.1361353517309307,0
+0.014595175196838506,0
+0.18007372107808697,0
+0.43842437034823467,0
+0.09204791975142695,0
+0.0001781402962677577,0
+0.041709839890092276,0
+0.26088869696389233,0
+0.08275742036469365,0
+0.1063123396197729,0
+0.011767702571645123,0
+0.0027935187811120544,0
+0.20026757820625823,0
+0.1533009509928378,0
+0.7231502700624424,0
+0.07601361470258147,0
+0.013781470223297895,0
+0.20886303041484183,0
+0.11700313579700457,0
+0.0850584633369967,0
+0.27259185452345874,0
+0.01761595716861003,0
+0.0324142252259098,0
+0.010814811719392756,0
+0.21758189776922127,0
+0.03306819832386492,0
+0.13219462034761303,0
+0.04482061110641073,0
+0.3971417201372024,0
+0.009891654650486071,0
+0.05748804232336837,0
+0.15264459639863787,0
+0.6365100025825348,0
+0.11751169141314247,0
+0.11425746631150172,0
+0.014786782949865554,0
+0.04640267818589516,0
+0.11976009429063997,0
+0.11754365563847617,0
+0.047580299537763535,0
+0.03793094064058049,0
+0.015292194517116988,0
+0.06633791961660615,0
+0.048956606246205445,0
+0.038591427889817134,0
+3.87377617545595e-05,0
+0.003290478302811665,0
+0.12113724620011745,0
+0.011115269835549346,0
+0.004154724775154291,0
+0.687284423838348,0
+0.15457563888619166,0
+0.27800067011889606,0
+0.22502129100202373,0
+0.2217528497452867,0
+0.008550743887215892,0
+0.003159037986119001,0
+0.013359755828854231,0
+0.2981018967584579,0
+0.009915557240231935,0
+0.02200315082360923,0
+0.043587081188432825,0
+0.0796610335993813,0
+0.9792542618273054,0
+0.0010919872152622342,0
+0.006998525032379574,0
+0.014757791043104393,0
+0.03675614274457163,0
+0.1905374341116598,0
+0.2649184538003933,0
+0.0058882082138609505,0
+0.019459343364997685,0
+0.016350918418887618,0
+0.03811246579474889,0
+0.0031789896559017254,0
+0.11990655770232836,0
+0.007404086682083087,0
+0.06497384445010485,0
+0.050520354664687996,0
+0.09534208138506475,0
+0.07891587060604635,0
+0.13047885055572303,0
+0.0025892625423714183,0
+0.24904157687016343,0
+0.00863481119890598,0
+0.01689445249475128,0
+0.012514945630864601,0
+0.04825104145743743,0
+0.2618250781083573,0
+0.020769290952346867,0
+0.24101159405451691,0
+0.2844291410264505,0
+0.1973985799580026,0
+0.04485730767908512,0
+0.002518566181147204,0
+0.11097535462977895,0
+0.3220475370558059,0
+0.1543833524047106,0
+0.0005558632891548872,0
+0.096204778021836,0
+0.0018926436979090932,0
+0.06059152298661952,0
+0.012618236882437623,0
+0.0011324133392221385,0
+0.670101902526479,0
+0.003648552392860018,0
+0.0232749979413647,0
+0.34157899416540666,0
+0.007940116199906925,0
+0.01247953168770569,0
+0.1202570883127275,0
+0.27112207998459636,0
+0.2056199158597706,0
+0.018583080459742954,0
+0.009038983408649878,0
+0.011771192017813856,0
+0.10082414216225846,0
+0.15635027456124803,0
+0.047708935794194225,0
+0.10091583326871548,0
+0.00026686598466507666,0
+0.7626311367195205,0
+0.011886489783495616,0
+0.04262725280481312,0
+0.010552550843619248,0
+0.3543070583625334,0
+0.0008475541761222661,0
+0.08591838502017654,0
+0.017706084695436306,0
+0.021036978922596674,0
+0.0027694127061392653,0
+0.01649480612574596,0
+0.06764065214895666,0
+0.06298831627632327,0
+0.028217444882401865,0
+0.15152010188683512,0
+0.010067885683780952,0
+0.31804137277498123,0
+0.23744945031179793,0
+0.01940462903253808,0
+0.0727543971641902,0
+0.2769408398521237,0
+0.27894663881454745,0
+0.005187246582433548,0
+0.05953923861439966,0
+2.4179527282964314e-05,0
+0.05278468803081958,0
+0.008148616479574006,0
+0.043695311701841766,0
+0.04182448377545432,0
+0.07793057782988413,0
+0.19443629762179818,0
+0.0006842605860272531,0
+0.00956643807290512,0
+0.10843950676777489,0
+8.387364795786361e-05,0
+0.012863895515576507,0
+0.021937749949266172,0
+0.008485648681334867,0
+0.0042010800821706135,0
+0.010535694870528491,0
+5.060429586907988e-05,0
+0.12223117007108453,0
+0.05207650799351986,0
+0.19986740077394374,0
+0.06563595175133553,0
+0.24301689614930416,0
+0.18626466404133207,0
+0.8222338956089079,0
+0.12060923826080942,0
+0.01732591447130897,0
+0.11867269118460362,0
+0.027012282778213114,0
+0.003953429339164863,0
+0.38339266038552083,0
+0.0023123280932738225,0
+0.0003178158149732372,0
+0.12138478220923714,0
+0.0022129051690378716,0
+0.06479186668239623,0
+0.07921688245791099,0
+0.22290615693425303,0
+0.043386050605132384,0
+5.503858510551038e-05,0
+0.06978045457468188,0
+0.24478807719731868,0
+0.0096569750491527,0
+0.08652037955668826,0
+0.1205265551488169,0
+0.0004025348227882401,0
+0.27832159519085825,0
+0.07533124595290094,0
+0.012214829180702989,0
+0.03715939204882069,0
+0.021247968450745093,0
+0.09938352102921214,0
+0.1795775895557679,0
+0.03162389870442617,0
+0.000122498869154679,0
+0.06780467518856947,0
+0.16979043836369706,0
+0.38622461272795416,0
+0.001160244134050641,0
+0.3181052128662705,0
+0.04957491303574087,0
+0.12497858043787806,0
+0.0037770211680673827,0
+4.782672206830245e-08,0
+0.002286264167287939,0
+0.2739218176014212,0
+0.037274329700579846,0
+0.03554174120399047,0
+0.2356135059761689,0
+0.2162348304529338,0
+0.33092717671518723,0
+0.012821518047910308,0
+0.03674650743969899,0
+0.18744974249201635,0
+0.0330986506492338,0
+0.3581747592839076,0
+0.044449982517367245,0
+0.26099587170090166,0
+0.32653615744833225,0
+0.0003812784448687704,0
+0.12773516418568373,0
+0.20320553381201786,0
+0.005959526233867996,0
+0.18725924704137153,0
+0.0866912248933001,0
+0.0020061319147800395,0
+0.4689593604255169,0
+0.04020667943159288,0
+0.22565185616990496,0
+0.00014785732647615288,0
+0.379442021690428,0
+0.04560219228267244,0
+0.07326823827954895,0
+0.015453885025502313,0
+0.002973587479307308,0
+0.002042994565586465,0
+0.001173343868625012,0
+0.0005388106890945717,0
+0.004349830137167929,0
+0.11735298503397802,0
+0.006958908437001135,0
+0.06404127268013766,0
+3.606621209410877e-05,0
+0.5587109760087655,0
+0.0005025395086484806,0
+3.4492221808710906e-05,0
+0.014127630574963856,0
+0.4105956203980072,0
+0.018765509072944355,0
+0.0003420657689087713,0
+0.3310231346631145,0
+0.1594631230790764,0
+8.618818060533395e-06,0
+0.03627494638210039,0
+0.013471630480911911,0
+8.605150162311821e-07,0
+0.09953975415150543,0
+0.016654909564663728,0
+0.009835823949223383,0
+0.011045794001919872,0
+0.05895523242470526,0
+0.08947637957046767,0
+0.017528355043984235,0
+0.1599087295960638,0
+0.04588406613143357,0
+0.013598591382634936,0
+0.004719072060069668,0
+0.144786958141001,0
+0.01864015517927041,0
+0.1058271690949673,0
+0.2372066803019289,0
+2.595971611824302e-06,0
+0.060156043642396816,0
+0.037892940051206025,0
+0.030392757848695932,0
+0.008493636613219283,0
+0.04127355148168095,0
+0.2847705078250405,0
+0.32261394634952845,0
+0.009549916074310681,0
+0.12169164701955926,0
+0.08000572504687438,0
+5.668029741387505e-07,0
+0.11296083995068991,0
+0.27609538684634716,0
+0.17424779200303336,0
+0.03371029986027278,0
+0.03757461709742424,0
+0.14940726928820386,0
+0.031671285217160824,0
+0.0001733962529078806,0
+0.0122696376004373,0
+0.2387652613064156,0
+0.007337554768728533,0
+0.12949986459580487,0
+0.26481782405669396,0
+0.025457462865371754,0
+0.09525104020089749,0
+0.22338014294877984,0
+0.004696598159963176,0
+0.10934220676654045,0
+0.35812080885178255,0
+0.010928458397476231,0
+0.49647719181397354,0
+0.00681371457881118,0
+0.1978645219642056,0
+0.10865198975567988,0
+0.18347445540431984,0
+0.03993377251588762,0
+0.4263060006069977,0
+0.22117507843205453,0
+0.07369842598669905,0
+0.28484920021792703,0
+0.00014590536462761558,0
+0.04621681540676092,0
+0.020706003735389313,0
+0.001628106871079516,0
+0.07753508322393933,0
+0.5021717984688507,0
+0.008102770500859202,0
+0.005055671427936712,0
+2.7587977973804035e-07,0
+0.03584210340880241,0
+0.08047821225971552,0
+0.30459228839384755,0
+0.1824692899439029,0
+0.012635976609102387,0
+0.02118800578835125,0
+0.14981549417505569,0
+0.07213780877214068,0
+0.0072140679395570175,0
+0.31500298515672276,0
+0.00733024486326673,0
+0.005261760636731294,0
+0.022847162978032742,0
+0.44857721471870954,0
+0.04042985318376731,0
+0.07024065082274386,0
+0.01139902048835387,0
+0.21974180403740692,0
+0.02186069016094187,0
+0.007843886197180839,0
+0.08928369169968312,0
+0.0019328043765448042,0
+0.001215289688142915,0
+0.09931405941979385,0
+0.010861489916744512,0
+0.0073717212016888856,0
+0.13770048425338768,0
+0.3980454604022748,0
+0.0007134345252087107,0
+0.01801009359138696,0
+0.00024326852337636781,0
+0.16231599578149827,0
+0.2123717213180941,0
+0.058082040672106004,0
+0.000592053092752041,0
+0.03736299634653262,0
+0.08932701540420548,0
+0.01193207715108062,0
+0.2344868734053386,0
+0.009647878388842299,0
+0.02688658342314205,0
+0.056620937421299436,0
+0.026288240375202842,0
+0.009257190595171987,0
+0.0013103015198612396,0
+0.1225928245109537,0
+0.12465535692145639,0
+0.24706411076737225,0
+0.0003137200433332848,0
+0.006778731913793601,0
+0.007958501612968006,0
+0.13629463446935444,0
+0.005531693699464888,0
+0.031666349986042064,0
+0.010449901162211214,0
+0.25581875670003085,0
+0.023578735285735505,0
+0.19152741199598056,0
+0.04704259310976238,0
+0.22193509067687872,0
+0.012660777092224967,0
+0.1558267699596645,0
+0.12069649271093881,0
+0.027025264153476253,0
+0.023527003143398777,0
+0.019874231147445593,0
+0.025591090238408637,0
+0.025805777028906168,0
+0.0556037463054155,0
+0.23087901968709695,0
+0.003461741514251563,0
+0.016853083181993668,0
+0.0862472652370501,0
+0.030383929412178694,0
+0.008212401083868646,0
+0.11660011013354532,0
+0.0015571997512494491,0
+0.27336338005436084,0
+0.003784601561472193,0
+0.017021587295359346,0
+0.01568760404369843,0
+0.002665412834404865,0
+0.02964290981512065,0
+0.045759029601571424,0
+0.045058870359913114,0
+0.005025740930044265,0
+0.4474207243464904,0
+0.016722113927682934,0
+0.002899763826982835,0
+0.2900731113433331,0
+0.06872712693878287,0
+0.0980190040714162,0
+0.22495198513798714,0
+0.5429642309999025,0
+0.041358368881237596,0
+0.0606373352343762,0
+0.044838362738862395,0
+0.13956096274826343,0
+0.00018111346571889905,0
+0.18247079828078153,0
+5.630411918208904e-05,0
+0.059971211756179164,0
+0.025814706026527696,0
+0.0004795952683077918,0
+0.027995143466013856,0
+0.37241460209647753,0
+0.046383769263420985,0
+0.16445511607621296,0
+0.03840366485666351,0
+0.04190694583968878,0
+0.00019370605662911435,0
+0.10402842924828919,0
+0.008161646304032459,0
+0.07230681472981744,0
+0.07433128501646036,0
+0.11544382404169588,0
+0.09906726533838404,0
+0.11692479146453583,0
+0.05667590567575329,0
+0.21999914422887817,0
+0.3373333730637532,0
+0.013183992515192682,0
+0.010106090780694544,0
+0.05519580624948829,0
+0.0032544104116234984,0
+0.021682564739878125,0
+0.1322296291147691,0
+0.09448109617935689,0
+0.08479683105936049,0
+0.016439741337716515,0
+0.003622764247328267,0
+0.293121279201816,0
+0.004684230478385869,0
+0.16757156113220162,0
+1.2382445272782293e-06,0
+0.09509732014493585,0
+0.13979277883642727,0
+0.0069332613352361796,0
+0.07059315062779369,0
+0.012057472603373944,0
+0.030572866047412113,0
+9.932505770162473e-05,0
+0.00014154263691051468,0
+0.00015405258334731426,0
+0.09890694577161059,0
+0.2441004448595543,0
+0.004238055870625451,0
+0.02628935341467134,0
+0.29704664445358975,0
+0.15322286078953523,0
+0.03836605526019161,0
+0.060486789066601085,0
+0.010881325532113278,0
+0.037027289591485754,0
+0.011590401885126613,0
+0.0024865683684596705,0
+0.000679019388993399,0
+0.2203172093604239,0
+0.026063538693967454,0
+0.002076535139883557,0
+0.00505716194061346,0
+0.10474198711425517,0
+0.14083074920944044,0
+0.09712760344903344,0
+0.0805720941202672,0
+0.3464811976660002,0
+0.4954156233992252,0
+0.031150061359126312,0
+0.008952280698177993,0
+0.18637868080326786,0
+0.19963522633943306,0
+0.06257609673678077,0
+7.213443850007044e-05,0
+0.000370330349422309,0
+0.00011542523646833375,0
+0.0005242258485089181,0
+0.1050790181817832,0
+0.01949558522074865,0
+0.005108522247885081,0
+0.02771826750170287,0
+0.2068020820302748,0
+0.0005827211816315704,0
+0.08510575589279376,0
+0.7655366926098661,0
+0.020465976076956265,0
+0.06612299600851705,0
+0.09814211785823967,0
+7.100210069316879e-08,0
+0.11036507370621777,0
+0.11697730826475064,0
+0.04009936339314283,0
+0.0007488701111712261,0
+0.3142863586108952,0
+0.10112344599899929,0
+0.06618327541498328,0
+0.30080455959157404,0
+5.653728151983962e-05,0
+0.1237019662619615,0
+0.016257689080651443,0
+0.039875024172661894,0
+0.06965873137828762,0
+0.2746385484231818,0
+0.20178406051108552,0
+0.13203100579424998,0
+0.03889709630816662,0
+0.3274314734197622,0
+0.8623971729528636,0
+0.42789878013523086,0
+0.025840991342699394,0
+0.008900331142349626,0
+0.03252346857343897,0
+0.11306274414593638,0
+0.05235400122710036,0
+0.026989197177550682,0
+0.0006991498214463445,0
+0.07065364702521146,0
+
+0.010633839438008648,0
+0.03422920478904333,0
+0.009268267897617644,0
+0.002480518217927617,0
+0.14699551167381983,0
+0.21899961884413255,0
+0.03585805400054271,0
+0.11555808832898844,0
+0.02522328281457729,0
+1.8392287439819304e-05,0
+0.496041778028353,0
+0.023291161798245606,0
+0.2847737994476864,0
+0.011305774514213735,0
+0.04060139318192141,0
+0.015098800641783667,0
+0.06429080196173764,0
+0.3623011200476608,0
+0.0024321018938001206,0
+0.031114629247195595,0
+0.07193892140924098,0
+0.3115127901099236,0
+0.03467040853379552,0
+0.16815088039250278,0
+0.006750062109188974,0
+0.007948394050311364,0
+0.0026550416957479865,0
+0.086201694459084,0
+0.0629989118183685,0
+0.031036360605245773,0
+0.1456684372825817,0
+0.00019498735555590347,0
+0.14768746234569757,0
+0.004069066981717795,0
+0.10289191196017877,0
+0.0016048311230998907,0
+0.23275651400908187,0
+0.051272915918094186,0
+0.04875504767916346,0
+0.08960678656528395,0
+0.09112695428906314,0
+0.005241698433161311,0
+0.012281680817656878,0
+0.24988307050432895,0
+0.1380552565906952,0
+0.003429619361202174,0
+0.037129071638423036,0
+0.0011063620909875745,0
+0.21601619268629832,0
+0.00455654603171991,0
+0.2199640766641954,0
+0.04993984083390412,0
+0.08594450113379654,0
+0.011804793473150197,0
+0.0007989038450191398,0
+0.13554000239975345,0
+0.0019477893497676616,0
+0.08251377939449284,0
+0.059464090391860215,0
+0.025701429883542397,0
+0.009391942258178574,0
+0.11813915084441454,0
+0.005553551113706614,0
+0.00047744282128744096,0
+0.023898625373695123,0
+0.012154360888784823,0
+0.043288116483106875,0
+0.013627716675274768,0
+0.011797743665426873,0
+0.006842642548443691,0
+0.01927477429942133,0
+0.004654464806603061,0
+0.00032675267690465725,0
+0.22915036050985088,0
+0.01954331748426458,0
+0.0019221639600048648,0
+0.12821789540379142,0
+0.0015592145237569822,0
+0.12427034094941869,0
+0.02778131759067805,0
+0.02912819200278676,0
+0.0002543426393662553,0
+0.09052175448503043,0
+0.08692937201721937,0
+0.24536268059911936,0
+7.904816260073249e-07,0
+0.0015359559290992865,0
+0.006935453916892216,0
+0.0054491246962911615,0
+0.006898836280369945,0
+0.0008367892916704113,0
+0.0004161635439954619,0
+0.034749641249571715,0
+0.2087576809424318,0
+0.08221159627482136,0
+1.4584546757101606e-05,0
+0.06384310698847985,0
+0.05014773826479422,0
+0.004670843135242797,0
+0.000596282100801034,0
+0.03178813412727858,0
+0.4592683121105681,0
+0.008520249546166285,0
+0.06348436264487248,0
+0.42827614305028916,0
+0.10443848433548811,0
+0.25352678848598337,0
+0.22642262469394298,0
+0.0009202788902525214,0
+0.13956075277810642,0
+0.1661567041286132,0
+0.3996773687789471,0
+0.006353719851616778,0
+0.058909338702145944,0
+0.01620122493671474,0
+0.03942778334141393,0
+0.2083949501549803,0
+0.06349990292513982,0
+0.0001858544535800702,0
+0.20469849983739724,0
+0.01405117164025942,0
+0.0014291527546013661,0
+0.04396737794093951,0
+0.3713713299477812,0
+0.022830825298375525,0
+0.008086644867300246,0
+0.017701924014093724,0
+0.03225178003770678,0
+0.028003918666703452,0
+0.03993431817569623,0
+0.004051091433625983,0
+1.6938153539339316e-07,0
+0.13661615451564202,0
+0.02042396552533865,0
+0.011011578264100957,0
+0.043520089150561825,0
+0.11857271298808472,0
+0.08749857573469155,0
+0.004588354300510068,0
+0.0027287265494517097,0
+0.1570525719855786,0
+0.3871843054966527,0
+0.0005449519402449523,0
+0.12115234112716315,0
+0.003007497139265827,0
+0.1387919165450507,0
+0.028480352691919952,0
+0.006909851191189464,0
+0.19990873047042368,0
+0.0028676123541389585,0
+0.05451784154072219,0
+0.0366889207613937,0
+0.28729910161026434,0
+0.06449863077438069,0
+0.005581766471622353,0
+0.34379993997341546,0
+0.001020997310980531,0
+0.005180462534140164,0
+0.0010862039663294917,0
+0.1364283256526196,0
+0.19066311770641914,0
+0.00693682408755585,0
+0.017923901369365697,0
+0.1172422473662725,0
+0.037875705397398464,0
+0.0039447618005920984,0
+0.06380780053559262,0
+0.013042846461651597,0
+0.010597001313721047,0
+0.009326743476423292,0
+0.002155762846547455,0
+0.021284742046593225,0
+0.007205488936955125,0
+0.2901933185089715,0
+0.0003901405138986696,0
+0.08618227570508571,0
+0.05601285385872144,0
+0.1496465721199391,0
+0.049696286319132185,0
+0.022410828123620132,0
+0.2905895684013292,0
+0.08012805299098383,0
+0.10910189855197742,0
+0.19391404282621877,0
+0.34939356095073487,0
+0.05189906475625068,0
+0.02009047003963484,0
+0.02346278694240974,0
+0.1956121816439829,0
+0.0638950265651175,0
+0.13582629030759136,0
+0.06603022044490284,0
+0.059345936650317864,0
+0.061107189166700424,0
+0.03999419187628781,0
+0.006708988710716801,0
+0.16073945825154404,0
+0.004081908971511642,0
+0.0025081668699809653,0
+0.04632849764912718,0
+0.03837829760956434,0
+0.010840590689552596,0
+0.0014712457360710647,0
+0.14215136560857364,0
+0.0009312019043126825,0
+0.17322265672313672,0
+0.3799557701648078,0
+0.08311843689371172,0
+0.1415589705218299,0
+0.0112786377594106,0
+0.04877410908498093,0
+0.026447899146784297,0
+0.0031982876769305114,0
+0.000529828807996039,0
+0.010529478894114522,0
+0.09179768483086714,0
+0.49345965042049017,0
+0.3926093325463233,0
+0.055097689426605236,0
+0.031981823759675496,0
+0.00044535325666262855,0
+0.040966896902263246,0
+0.07898043965107755,0
+0.000565193597786461,0
+0.25458328581169554,0
+0.028203029638815873,0
+0.17911954338287756,0
+0.0700326607889721,0
+0.22374789065494066,0
+0.16969712257688124,0
+0.05650927003534667,0
+0.036375203007011025,0
+0.031179788160551548,0
+0.0017413902339385781,0
+0.422191456835262,0
+0.011957437201101682,0
+0.14275595599353455,0
+0.00057653697495974,0
+0.011258924719659783,0
+0.17026332981935904,0
+0.11059181498316513,0
+0.34370791915313326,0
+0.1490129537969507,0
+0.00481905109843377,0
+0.20251933502782188,0
+0.005801918375137869,0
+0.15091486790187145,0
+0.05024737330834132,0
+0.09130021084131722,0
+0.0008075004119900839,0
+0.03164132342158826,0
+0.052573237980527154,0
+0.0060689978805972275,0
+0.1113058518139245,0
+0.10540424777303121,0
+0.03735707820457888,0
+0.04172077767497538,0
+0.013878262500414426,0
+0.0054094085956443,0
+0.03566442446509728,0
+0.09061983730433307,0
+0.024407642459100307,0
+0.0574788848447861,0
+0.030674616723135244,0
+0.04829433990702668,0
+0.03007611810741891,0
+0.00043765276532259237,0
+0.14681132657082557,0
+0.02897852705861571,0
+0.013630333338273432,0
+0.2248608478029995,0
+0.07106169670162671,0
+0.11160234145282004,0
+0.23887762049331643,0
+0.1284587242004611,0
+0.029908304555854297,0
+0.008556267594915143,0
+0.011770652288089144,0
+0.029148253885235953,0
+0.2895448718272733,0
+0.3738623575154973,0
+0.5958649256116045,0
+0.0666327411780649,0
+5.8434496819748607e-05,0
+0.004856057517258594,0
+0.09980433728597553,0
+0.29311732766358845,0
+0.47842958530792024,0
+0.025847838947245145,0
+0.009098875184217255,0
+0.14969524686287278,0
+0.07170310081768136,0
+0.14183596789303668,0
+0.019032405059960088,0
+0.20499175675047324,0
+0.00010827791776261899,0
+0.0038905456000634963,0
+0.0020639986360398775,0
+0.031911284649664154,0
+0.11199652380668094,0
+0.002716158601266128,0
+0.42174867514072345,0
+0.004312882228995348,0
+0.08974715691377559,0
+0.2800238401002932,0
+0.10114702526940607,0
+0.006808118037085681,0
+0.029829582393914783,0
+0.24634036492073919,0
+0.10940777436834906,0
+0.014633366812295526,0
+0.02285048557464092,0
+0.021976944269383545,0
+0.0041281019431303224,0
+0.09120664677365938,0
+0.36902624818429364,0
+0.1291974346704809,0
+0.1439237439624076,0
+0.22490422202693394,0
+0.2857578066961789,0
+0.06475493218726926,0
+0.14102022273884315,0
+8.583718038435208e-05,0
+0.010029282151191459,0
+0.07899288801247259,0
+0.005190165025333322,0
+0.14544958368682495,0
+0.2923164026627171,0
+0.3211816269110616,0
+0.01500008734826426,0
+0.05133233840555753,0
+0.0051155616932587866,0
+0.0736785302348478,0
+0.0371596850509991,0
+0.30934287190853155,0
+0.1425264201788876,0
+0.06163139806176036,0
+0.0043027498190679,0
+0.15388998133151668,0
+0.4869708879255629,0
+0.08817161383997543,0
+0.006853454685041377,0
+0.18282514368509212,0
+0.03984863888335104,0
+0.19285342229800334,0
+0.004619782100083739,0
+0.010015786433132622,0
+0.00011603357898015651,0
+0.13521852398880335,0
+0.0858454083423589,0
+0.0762220408407057,0
+0.013426805619207649,0
+0.01575875491753409,0
+0.046983423013855184,0
+0.011120057872459845,0
+0.009792874865685685,0
+0.05191269163537807,0
+0.06050407572691684,0
+0.08958448471012664,0
+0.006661032019105638,0
+0.11287745640278388,0
+0.27337423160525903,0
+0.07328781967368712,0
+0.012969238550565334,0
+0.032055472379636095,0
+0.00022053677541577246,0
+0.01840081126445959,0
+0.5982817333418643,0
+0.015034963110603847,0
+0.10268148450340595,0
+0.013421098730525185,0
+0.12276690047801694,0
+0.0020721275099627088,0
+0.00023294723258845783,0
+0.25800285357834873,0
+0.002958523998414034,0
+0.01215106116815416,0
+0.3327896189471681,0
+0.00029305794837893777,0
+0.1891478892165956,0
+0.11835986852622335,0
+0.3013717513515714,0
+0.2269808608261603,0
+0.005287550800660881,0
+0.07783546401966634,0
+0.1301466999555272,0
+0.09887038271128264,0
+0.08428824893607097,0
+0.00045793283344965785,0
+0.04933792882203435,0
+0.012525883283470273,0
+0.18424205354805204,0
+8.844106820481447e-05,0
+0.023050222998274313,0
+0.12156818857756743,0
+0.0018090022508612115,0
+0.4805161883698859,0
+0.010876969130942719,0
+0.0003415321896191919,0
+0.0024509207435962177,0
+0.024929654876138702,0
+0.06535831531398284,0
+0.07189123207755065,0
+0.003643797297571933,0
+0.36819887426473874,0
+0.037121598676731454,0
+0.023554576098723436,0
+0.0195977200349269,0
+0.0055090028805292865,0
+0.02574981367044017,0
+0.03992079309512921,0
+0.000637797483213275,0
+0.13128164461341002,0
+0.14587034275479033,0
+0.048576325232325586,0
+0.005345149903528646,0
+0.010437220970774671,0
+7.745129010865468e-06,0
+0.04940500379116011,0
+0.05913721425587211,0
+0.3283485769419592,0
+0.18749095312887704,0
+0.003491299225641336,0
+0.00561925731169159,0
+0.016495442419489362,0
+0.0004097322474974157,0
+0.014193746443689462,0
+0.3612741705379673,0
+0.013911437916840626,0
+0.0051573777999766295,0
+0.18784946141043057,0
+0.06994380935682586,0
+0.17443860313609486,0
+0.03627235063309936,0
+0.10642237833212742,0
+0.013397264097239837,0
+0.004825635136285652,0
+0.017281180843239034,0
+0.0009911000367661483,0
+0.22486492724300092,0
+0.015167131985328073,0
+0.003901442860776461,0
+0.9539661030111406,0
+0.11293258770005969,0
+0.0884473940634737,0
+0.011832615013281374,0
+0.04936925671830647,0
+0.9673115081933925,0
+0.004376946532605662,0
+0.03709369801042044,0
+0.22095975232546144,0
+0.00016016683769584606,0
+0.03000884654096001,0
+0.21824360192621142,0
+0.00013590477561967925,0
+0.13090098914170872,0
+0.020225823180917712,0
+0.03113911218345799,0
+0.0510035036658687,0
+0.059838307635600906,0
+0.21546410637118774,0
+0.3081339045353474,0
+0.023697889046682113,0
+0.07285712403877964,0
+6.328637388159576e-05,0
+0.6292253962751667,0
+0.0208085706878878,0
+0.06172893904456174,0
+0.0463680130261203,0
+0.0708277838268477,0
+0.14378749754779668,0
+0.025814885830031796,0
+0.1351928094184444,0
+0.24665154700437597,0
+0.0012433431669761645,0
+0.0014637317753763265,0
+0.06508641040523318,0
+0.0008740951659495717,0
+0.3727452331117584,0
+0.04318339338311258,0
+0.004236037760089994,0
+0.12577279548498976,0
+0.0002520893663874999,0
+0.0014337025994955554,0
+0.16375720830137477,0
+0.02071681798574635,0
+0.6097030790719037,0
+0.0567019738238274,0
+0.01995794667697471,0
+0.0767593352283806,0
+0.056099115129818286,0
+0.22073549144718135,0
+0.037972034254809814,0
+0.002912650527998774,0
+0.07595288102105427,0
+0.2757236300294961,0
+0.049132486925197436,0
+0.08433150992891322,0
+0.04515218361737058,0
+0.050023434828546744,0
+0.1221549497291075,0
+0.01388424527089079,0
+0.23067911264197863,0
+0.010023740635959743,0
+0.24185225965602836,0
+4.481684329627491e-06,0
+0.10126080514234855,0
+0.07600635912062867,0
+0.05486836152070057,0
+0.07512751361545547,0
+0.00628546723109855,0
+0.2166548657208319,0
+0.05365769191807608,0
+0.0018906069226078573,0
+0.026535084465302377,0
+4.587786500996579e-05,0
+0.03758062088970566,0
+0.02126326757185898,0
+0.09566404171634271,0
+0.12110461772087469,0
+0.01269586610652595,0
+0.0037870419186518114,0
+0.002784203567680531,0
+0.02143242153666517,0
+0.005129095538470933,0
+0.0606388548137729,0
+0.09380160605600431,0
+0.0037200738181403952,0
+0.012416692264061346,0
+0.010255614079714374,0
+0.005360110669981412,0
+0.32271002421282136,0
+0.0031765762653835606,0
+0.0608930245534182,0
+0.0032186039384683334,0
+0.032094394397514395,0
+0.008834239815547913,0
+0.015422334125283451,0
+0.020530775380948236,0
+0.03348553484058725,0
+0.0040766899330514335,0
+0.032273487483769556,0
+0.0020857643968348865,0
+0.008609439784080668,0
+0.004441424931807631,0
+0.08262259472008875,0
+0.02854388387609204,0
+0.125127371970188,0
+0.4229100029350653,0
+0.00015647255445568815,0
+0.0001457214480317931,0
+0.2651318347002509,0
+0.09782539276372018,0
+0.30251321189707575,0
+0.049331219507694604,0
+0.07221357294296088,0
+0.0004593351440038749,0
+0.00747457227491595,0
+0.17651645969657087,0
+0.012339144433999149,0
+0.0024385133014899487,0
+0.008972583274047072,0
+0.006913200938689022,0
+0.002921300037580357,0
+0.11918354035097663,0
+0.0019283752663384137,0
+0.17568690206887497,0
+0.4096669283099327,0
+0.0269500338657008,0
+0.06893273697451602,0
+0.15200860903558067,0
+0.010507312347803225,0
+0.013904272359008171,0
+0.24157955808091608,0
+0.024193068871532233,0
+0.16926627055822083,0
+0.0006925228358712643,0
+0.0013801675579238628,0
+0.002630213041194119,0
+0.06750215211802031,0
+0.8576880660931504,0
+0.007307555539771431,0
+0.008938235465708877,0
+0.8410140573808393,0
+0.002262682203411122,0
+0.4007454889837426,0
+0.04114368420584727,0
+0.06378608625319335,0
+0.01868249562540868,0
+0.001010145509899136,0
+0.08707869066182303,0
+0.14722771027913079,0
+0.0026279940507293762,0
+0.08317170496206269,0
+0.1505745464797054,0
+0.0025964068789817722,0
+0.0037081278534867373,0
+0.24485436096280214,0
+0.022542589951706053,0
+0.09855303906375289,0
+6.164193080718881e-05,0
+0.008969596034111401,0
+0.00861650752861805,0
+0.0047849642485559025,0
+0.0007130059287092032,0
+0.3865343271596069,0
+0.2865925386004899,0
+0.09176463452713726,0
+0.014795489033512499,0
+0.06040956915387152,0
+0.16168019400034317,0
+0.00115112271855073,0
+0.2810548503158029,0
+0.016815779839123128,0
+0.026058104993272307,0
+0.30067008050214417,0
+0.10607519888674188,0
+0.03851629259252916,0
+0.008203315461432607,0
+0.010338857309310865,0
+0.0016640334204831165,0
+0.08588954503002996,0
+0.07609977682590757,0
+0.03467484167057745,0
+0.049097750948397106,0
+0.0049893556882056,0
+0.22242749830810649,0
+0.010169111730987663,0
+0.04609396366573124,0
+0.026958548079518817,0
+0.003890149661825915,0
+0.0036778845401752905,0
+0.00022621065834787878,0
+0.4692266145574634,0
+0.2606078664337904,0
+0.13948529139933422,0
+0.8344707605173424,0
+0.34043726157933585,0
+0.25626486534249826,0
+0.03672960934595349,0
+0.13512436442227746,0
+0.0002749272308186074,0
+0.03997380321438597,0
+0.00027931542384463444,0
+0.0002911153882918852,0
+0.00017946824578212153,0
+0.309514707288815,0
+0.0030430684583436516,0
+0.046005221259357756,0
+0.08586986554828507,0
+0.010390133226393003,0
+0.259847284775201,0
+0.27559812275015316,0
+0.015776618377909515,0
+3.6264882863788977e-05,0
+0.002358487293343393,0
+0.03215873384427093,0
+0.14441426085063952,0
+0.003560974490791839,0
+0.06455798487685903,0
+0.02196024851044689,0
+0.006774515369204944,0
+0.17547825700344516,0
+0.009427069555439186,0
+0.13311916420557918,0
+0.28520901491050876,0
+0.41346251068976486,0
+0.23352317041844267,0
+0.05392151105878971,0
+0.0879593296276914,0
+0.0015563446009699221,0
+0.017376623808661788,0
+0.12232818050269016,0
+0.004626045343220508,0
+0.09608038015760774,0
+0.02491464093676468,0
+0.2015369393688203,0
+0.048757821496949016,0
+0.04893110112846828,0
+0.014477430809322938,0
+0.11490654396309434,0
+0.028260538249438315,0
+0.6029489134951305,0
+0.014210269459325733,0
+0.0008863233023041692,0
+1.224337158486915e-05,0
+0.011850344545590117,0
+0.02888054754128363,0
+0.00833454581380785,0
+0.00018644648691465654,0
+0.14960060491175903,0
+0.3450573036065499,0
+0.16331797018361544,0
+0.3876211005931623,0
+0.08148681326787208,0
+0.2894480567193071,0
+0.0017010213929791178,0
+0.009505803745149682,0
+0.19462664360935403,0
+0.03542679696715937,0
+0.05090882330335237,0
+0.3336597181308875,0
+0.18271071946589948,0
+0.17175862935556813,0
+0.3992388293535646,0
+0.07055526588259052,0
+0.14078982501955598,0
+0.10998605513128083,0
+0.018451193087597684,0
+0.002156330013000292,0
+0.0011581943597227195,0
+0.22876347541784892,0
+0.17652882066875425,0
+0.013410157877629118,0
+0.348405268043615,0
+0.579585791238205,0
+0.4561334527168623,0
+0.1317680080233371,0
+0.02497622243662602,0
+0.09783280116518096,0
+0.03493750441927438,0
+0.05685211571507527,0
+0.0059894536491693915,0
+0.5006346544757646,0
+0.00926583200168324,0
+0.22023756082194668,0
+0.0025318991376005557,0
+0.0337556944255709,0
+0.006481250565890264,0
+0.1028542309316282,0
+0.31841482026349516,0
+0.10508940294451134,0
+0.10813401792640534,0
+0.07774912161979174,0
+0.09910580939807781,0
+0.19368964520671397,0
+0.7693997377394962,0
+0.18357169139978288,0
+0.0286620956471181,0
+0.001947024963520554,0
+0.10798646970409435,0
+0.2676884017740859,0
+0.0019750841231206033,0
+0.0036576152729625847,0
+0.08140098737271757,0
+0.1102242364118119,0
+0.18420106320740792,0
+
+0.1534211502778822,0
+0.2714514372963968,0
+0.3839098635015827,0
+0.013433842192480528,0
+0.001279175692165728,0
+0.08022165519522632,0
+0.009686457380607078,0
+0.23018240192412578,0
+0.0015665709803475553,0
+0.17641519731487945,0
+0.24153455120516348,0
+3.291275031307102e-05,0
+0.029121461710810075,0
+0.003664584447471514,0
+0.016315443797167282,0
+0.0342496826346931,0
+0.0659887930167907,0
+0.0011624833819855278,0
+0.011089101123086618,0
+0.011057365962794921,0
+0.01947514873622727,0
+0.023232632453826334,0
+0.0011991146795726137,0
+0.057478006271776495,0
+1.764641571742235e-06,0
+0.16094707022247,0
+0.013940726286952304,0
+0.19667074659980546,0
+0.08169538125721279,0
+0.07307039822624913,0
+0.04950094460657773,0
+0.1986549975735002,0
+0.070034113489955,0
+0.14525621209654674,0
+0.00040063873249635126,0
+0.0038843083190425115,0
+0.027923513933195754,0
+0.15633834024895862,0
+0.05040608055096981,0
+0.09492744273725498,0
+0.029494156026520883,0
+0.2166924912225075,0
+0.6824483598989616,0
+0.04493819029194621,0
+0.010337188744949665,0
+0.26866097637276143,0
+0.05741407798122099,0
+0.04936468381704468,0
+0.06609220575659729,0
+0.06836687401132929,0
+0.23098490923698742,0
+0.014732375011339092,0
+0.004526328405841033,0
+0.20326267915288257,0
+0.007173712860281037,0
+0.17809886004183523,0
+0.05024367736912355,0
+0.3821760263334542,0
+0.0879226195806316,0
+0.0374874975821356,0
+0.07376844959396103,0
+0.024159429459717812,0
+0.029755893983420302,0
+0.04357375799915293,0
+0.12926456010693585,0
+0.14164815197969885,0
+0.1077877165590518,0
+0.02008086380147314,0
+0.03131372893548748,0
+0.12366915970716233,0
+0.0017682583825936213,0
+0.009699905347526332,0
+0.26157024102661763,0
+0.07127158070095113,0
+0.12959971689874245,0
+0.01012551644570908,0
+0.001101177372103669,0
+0.00025397689459130153,0
+0.13678483189691512,0
+0.23263174273514436,0
+0.008799549246391484,0
+0.2524491500998106,0
+0.1233333860685748,0
+0.05189539301751147,0
+0.020459431153837894,0
+0.06261937016123001,0
+0.050990637256983364,0
+0.29256942010547615,0
+0.6470661584910175,0
+0.023576904028851813,0
+0.014308417608301949,0
+0.01338638011156135,0
+0.0532837085055084,0
+0.08437545477788026,0
+0.036398841055074384,0
+0.004811958098644137,0
+0.023401442086634788,0
+0.19249235333097134,0
+0.24497306918709602,0
+0.15598817006573945,0
+0.14841299797054397,0
+0.10257952215355079,0
+0.0016231108122543869,0
+0.03169801004925922,0
+0.057009615129466215,0
+0.03231114821248403,0
+0.0255232691740641,0
+0.09850046990655309,0
+0.0054121079305556345,0
+0.002181187265030902,0
+0.0469907183345019,0
+0.2678896687558495,0
+0.00217998011881899,0
+0.016479510765907462,0
+0.06233791722463143,0
+0.10827265992976262,0
+0.08758696267418867,0
+3.072322430563385e-06,0
+0.03378816195222456,0
+0.009146665697782304,0
+0.10845320823234614,0
+0.003977260272327558,0
+0.06878026609751274,0
+0.05294581690628268,0
+0.004205176793157879,0
+0.28225125191377365,0
+0.060838494223876924,0
+0.4298906828452651,0
+0.03550537210000195,0
+0.0671247381458207,0
+0.327853828271858,0
+0.08467401865478044,0
+0.028374567760393626,0
+0.040488359435660225,0
+0.0018494794862782475,0
+0.0527562980050857,0
+0.12209149726500387,0
+0.11668475297769634,0
+0.3903874083227242,0
+0.06568180007626613,0
+0.051053217984697585,0
+0.003382990818299953,0
+0.04526254630839039,0
+0.07128038637450525,0
+0.26536125420280937,0
+0.029364557926965018,0
+1.3512926325335207e-06,0
+0.08276654058088095,0
+0.12172302929589833,0
+0.016596839766075837,0
+0.10004409189272483,0
+0.11786023372352653,0
+0.2738293189640971,0
+0.006641316483839951,0
+0.41206578769250796,0
+0.1643171456311517,0
+0.9889681358453934,0
+0.008370748187106935,0
+0.4240002756612876,0
+0.0047048291014099375,0
+2.720298790795247e-05,0
+0.0028793119136514196,0
+0.0006412436080039517,0
+0.00011331859804121216,0
+0.010954210002317895,0
+0.0548551178932429,0
+0.1256857562475163,0
+0.015433911261829057,0
+0.006507943851718189,0
+0.0040237151864368,0
+0.06818999435432521,0
+0.007897525562145164,0
+0.04975818974087352,0
+0.00107727674318602,0
+5.276992598133608e-05,0
+0.00780294240001695,0
+0.0949184922443769,0
+0.004647764960502489,0
+0.06884124218486176,0
+0.10046543612898025,0
+0.03064318399785973,0
+0.04452836584092705,0
+0.09753408302516332,0
+0.011578384284141907,0
+0.023259297348206035,0
+0.05168379813334852,0
+0.033019924576842566,0
+0.03710383926378745,0
+0.035038276433935964,0
+0.07599186684603015,0
+0.013123034735296815,0
+0.0628946284736442,0
+0.048450947585126046,0
+0.02302759848693087,0
+0.0010814152951985657,0
+0.22160250770673132,0
+0.018034337396469577,0
+0.04695930549973991,0
+0.08528465355398479,0
+0.0013136723522365102,0
+0.7922391332133409,0
+0.0016220973098596235,0
+0.00042995192621129346,0
+0.10342737710368169,0
+0.22031837742067556,0
+0.11083172913857145,0
+0.17913198822674295,0
+0.019918566700210524,0
+0.013172649082133414,0
+0.057277131415327656,0
+0.1266413414182638,0
+0.005036034779873853,0
+0.015623038123766367,0
+2.5557239947440138e-05,0
+0.022985695557756248,0
+0.018672176805850867,0
+0.2420949502137988,0
+0.010594326495972153,0
+0.0019083340360116778,0
+0.08502737687038729,0
+0.07121100599831763,0
+0.026794782264164062,0
+0.07445864539733729,0
+0.33972200946077635,0
+0.0974070232866703,0
+0.11366866814070227,0
+0.003298167812847439,0
+0.034405032047212084,0
+0.0012131119310132212,0
+0.027559863390809552,0
+0.009270050739011038,0
+0.617067781205916,0
+0.08341254330713843,0
+4.398760091135716e-06,0
+0.1316811283623071,0
+0.015489928795391733,0
+0.0217034012911533,0
+0.014326600588393797,0
+0.19251961890748825,0
+0.0009611993852678931,0
+0.18511867361180392,0
+0.0009870566157685699,0
+0.03040734991806675,0
+0.28333211764495136,0
+0.06353280684089688,0
+0.16054912361070545,0
+0.0839084194283986,0
+0.3181260318841283,0
+0.3148691289110759,0
+0.4701844829227501,0
+0.0007159844091157635,0
+0.0005096541000667239,0
+0.5628353055152011,0
+0.0004415397548507967,0
+0.06879321104044564,0
+0.022499788884370958,0
+0.2771574916255298,0
+0.20653744176893257,0
+0.0015041440840240416,0
+0.17130933600960074,0
+0.19229142336760563,0
+0.033250029984070506,0
+0.039446776248565685,0
+0.03691442559881063,0
+0.04659567921773015,0
+0.2500832844916303,0
+0.00472621106057408,0
+0.23493904220394102,0
+0.34084855128821134,0
+0.06616139341450808,0
+0.02930194606845863,0
+0.03912426888334784,0
+0.024645314642528456,0
+0.2984706078279854,0
+0.09129147782812605,0
+0.16098232250318395,0
+0.07047977998077912,0
+0.2072218397291022,0
+0.08256751013233633,0
+0.011526031116022531,0
+9.475700451763129e-05,0
+0.051907310192241006,0
+0.009404062420126206,0
+0.14685035159543366,0
+0.01283367207495072,0
+0.6668260619165467,0
+0.021734262456016607,0
+0.1208479916458934,0
+0.002465903803007082,0
+0.15469457224119493,0
+0.021753085729437162,0
+0.41721132505144054,0
+0.016140306282342788,0
+0.0016382737057922738,0
+0.0039019895348688612,0
+0.4571871083310398,0
+0.03883111191161109,0
+0.2784930306346128,0
+0.07844035780468309,0
+0.050233622752176785,0
+0.04241097162777945,0
+0.2722895354270122,0
+0.12553917078249258,0
+1.0576562092991677e-06,0
+0.03253689019357893,0
+0.08716205917929273,0
+0.13378904143293105,0
+0.15765761915494314,0
+0.00014968551900840625,0
+0.014478324068140683,0
+0.13373098549467904,0
+0.8560255968151023,0
+0.04968086962950859,0
+2.2359993871017024e-05,0
+0.005151324412426191,0
+0.16916098030159815,0
+0.028668937988492026,0
+0.015264089167675934,0
+0.10845889269809712,0
+0.09571514673823897,0
+8.904503708957093e-06,0
+0.004663144635774824,0
+0.00680448004546277,0
+0.10917037889834695,0
+0.06979399055645098,0
+0.05181427959844355,0
+0.10579147296391238,0
+0.13859646099525452,0
+0.14560600260706794,0
+0.015527791814218293,0
+0.012304139594786621,0
+0.0007703533319820242,0
+0.08100366167746194,0
+0.18329603613905654,0
+0.015250151913132549,0
+0.1383057929952556,0
+0.0790468004596348,0
+0.3142211607903459,0
+0.01796621954420118,0
+0.09141319408443471,0
+0.17269375159518768,0
+0.016715367742031344,0
+0.7581662139968868,0
+0.8225773697293398,0
+0.2910181053018392,0
+0.22940981396596838,0
+0.00283523905247536,0
+0.0837300786559437,0
+0.06317594306485838,0
+0.005851365899688422,0
+0.006270378717275378,0
+0.00024413447829303893,0
+0.020134552689479158,0
+0.036771911697308535,0
+0.16047112361688046,0
+0.012667188542784102,0
+0.015548228225613261,0
+0.013547413492035986,0
+0.4000691315531496,0
+0.00021084986436005192,0
+0.10797242690350912,0
+0.19930823863632668,0
+0.009360982430158442,0
+0.5280131795573448,0
+0.18789625943062388,0
+0.28699061201013965,0
+0.017979468670250635,0
+0.009245563701670135,0
+0.12163810531063413,0
+0.018897586608167,0
+0.09598529303795657,0
+0.27814495679339435,0
+0.007288080783352785,0
+0.05351908496616877,0
+0.033896375985008595,0
+0.00601971796050108,0
+0.0719575435517707,0
+0.04971309363496856,0
+0.024898844211365623,0
+0.5000464676955806,0
+0.029184411493957323,0
+0.013918389563119516,0
+0.012988826604983517,0
+0.4589418927378531,0
+0.07582751694845181,0
+0.37276157453365155,0
+0.00013580172619841676,0
+2.1203711931632557e-05,0
+0.029010226274595173,0
+0.4010344554428237,0
+0.005240590824967774,0
+0.00039259884262010024,0
+0.09730700006641681,0
+0.047049515577200905,0
+0.09450111797108787,0
+0.10284083947340913,0
+0.047449049688181075,0
+0.019019686756816877,0
+0.24707736435024744,0
+0.10685465766173159,0
+1.5872269964193517e-05,0
+0.13907037494690827,0
+
+0.07051843097497124,0
+0.08840502974106225,0
+0.10042052319463017,0
+0.041407141421463664,0
+0.3466546313034465,0
+0.0005603491504790938,0
+0.035677136403500856,0
+0.17228659031282262,0
+0.02373917009456317,0
+0.011721564755336294,0
+0.0022985029670143883,0
+0.0825305394391786,0
+0.0011003546933364252,0
+0.00037217021803532234,0
+7.107274983035072e-06,0
+0.0005198178503351586,0
+0.0003973284503895843,0
+0.008301022110610795,0
+0.0008370787048247466,0
+0.2966036039437767,0
+0.13134660865482167,0
+0.006312523125776547,0
+0.0639737121907146,0
+0.1710225925070358,0
+0.061275862624967356,0
+0.03341693659940805,0
+0.02050377261223458,0
+0.04813089464682653,0
+0.0024488021874133634,0
+0.051035265719059385,0
+0.000722546375653222,0
+0.02108862794115833,0
+0.0935296554276711,0
+0.1492309571147297,0
+0.008663247174331498,0
+0.1143520730210688,0
+0.05083945894198314,0
+0.018067764029066062,0
+0.0065154495287198175,0
+0.10744910188047056,0
+0.0006158970534218733,0
+0.0018144593962909673,0
+9.724902932937866e-05,0
+0.0015725704389897316,0
+0.0038659849423390465,0
+1.2349313270123455e-05,0
+0.004211503265890685,0
+0.32365606032703137,0
+0.22135164299671523,0
+0.06635879068541858,0
+0.004529452973372055,0
+0.006753969988795032,0
+0.0009999274901663256,0
+0.01834630379694626,0
+4.477088615037047e-05,0
+0.01920364648866829,0
+0.010552814745688189,0
+0.26405962916873454,0
+0.11658815102154729,0
+0.016554243935137443,0
+0.11052030906202304,0
+0.1421228853115583,0
+0.02271178316199971,0
+0.07947336645779332,0
+0.014187799723217476,0
+0.2668935112013328,0
+0.018483890418415902,0
+0.015021495813405297,0
+0.4065780787115716,0
+0.2513540022808408,0
+0.085605617864486,0
+0.03653179408245143,0
+0.03408748871766705,0
+0.006377564188683217,0
+0.016995196807089726,0
+0.13467770180819025,0
+0.0489306896979756,0
+0.004743960838609857,0
+0.012462146782407342,0
+0.015558238710961732,0
+0.015607036106727474,0
+0.002328196849283959,0
+0.02780044303195453,0
+0.0009616882440219952,0
+0.001183488774044656,0
+0.5792905940950304,0
+0.0835571709562152,0
+0.008980152605323682,0
+0.042525598220556154,0
+0.03468584231065414,0
+0.034962449472897936,0
+0.10228082503203442,0
+0.09767635578029868,0
+0.7617077138444868,0
+
+0.029912256756042043,0
+0.1024015207378723,0
+0.5979859999209336,0
+0.19741400219199268,0
+0.006887243600604729,0
+0.0033550850122225457,0
+0.06249508145547202,0
+0.08294950679779445,0
+0.07236301741350157,0
+0.00465996569658355,0
+0.025889075641560084,0
+0.14154845307844993,0
+0.31157933068652943,0
+1.954719335043129e-06,0
+0.27403693706882226,0
+0.030171810802297007,0
+0.10599214800422996,0
+0.43411171256895165,0
+0.020384696473456563,0
+0.006413893231784489,0
+0.28087547264751717,0
+0.28411242139153897,0
+0.3232638527496857,0
+0.03539835541815582,0
+0.46722835922017725,0
+0.053408001371421224,0
+0.0006225226336413595,0
+0.5222566151442142,0
+0.010596485393183341,0
+0.020236164711210168,0
+0.18878248645311724,0
+0.012478258394153273,0
+0.002390208501538866,0
+0.012690237639518213,0
+0.30596656640409525,0
+0.03063730600467876,0
+0.01644666516447998,0
+0.007880584790126755,0
+0.02419805801284849,0
+0.009046012779748626,0
+0.01285545443937752,0
+0.17963449425947875,0
+0.08611612870727746,0
+0.14253629250885283,0
+0.04550859850540636,0
+0.020678732003662333,0
+0.0005840642462750054,0
+0.1049996040136636,0
+0.12789642368599544,0
+0.20970589892287766,0
+0.03381344533837818,0
+0.04941635482586724,0
+0.0011424783361111079,0
+0.08425990416882741,0
+0.35501018915718185,0
+0.004622865744141656,0
+0.04810858213755216,0
+0.020812233224212676,0
+0.0719588317530548,0
+0.4113255231259162,0
+0.029357864005204282,0
+0.0012271998688915817,0
+0.004806641617000446,0
+0.047325128321030765,0
+0.19470409012674256,0
+0.07026008240917152,0
+0.09594033400661216,0
+0.011996023636865468,0
+0.009548889761897193,0
+0.022474239186859653,0
+0.052746333279915694,0
+0.022759275528327936,0
+0.10254019100312137,0
+0.036249511191461734,0
+0.08067929123786824,0
+0.09175479145336395,0
+0.6356576182020226,0
+0.09053006019534396,0
+0.09095794501278412,0
+0.009422848182450313,0
+0.016752558430009307,0
+0.35183156352237777,0
+0.004849747302281879,0
+0.008706360605431538,0
+0.16584984361787505,0
+0.08224502811402268,0
+9.780437354085182e-09,0
+0.009978395712924418,0
+0.14026062312219117,0
+0.010911556918721494,0
+0.009873417763423578,0
+0.09021114417184169,0
+0.1883106483938581,0
+0.00731715898657284,0
+0.08867004161929004,0
+0.006393690573154713,0
+0.2643620069068538,0
+0.008595213017089463,0
+0.0006902602130856542,0
+0.0036674365854098253,0
+0.11505121998047116,0
+0.3182486946835744,0
+0.09731242511659553,0
+0.016617487365400533,0
+0.043952269570521854,0
+0.0037586281458163026,0
+0.3762490652956514,0
+0.43461801269563416,0
+0.09470249913813547,0
+0.18911132434594527,0
+0.06550545190231984,0
+9.490895442299416e-05,0
+0.0712794817007538,0
+0.002181552003444116,0
+0.07001946059956991,0
+0.14111493963482954,0
+0.004833288439782108,0
+0.0007270743005622027,0
+0.050239267928600465,0
+0.1046497860395936,0
+0.0702438148409311,0
+0.03778086470696154,0
+0.015255841256370115,0
+0.019772804577177727,0
+0.11061196201659977,0
+0.005576844285341004,0
+0.20563699693819398,0
+0.13365663134988062,0
+0.114557351040057,0
+0.06515294828287985,0
+0.22270465137914428,0
+0.015805281168821385,0
+0.04522574481085655,0
+0.03529239913782437,0
+0.03366822310973821,0
+0.5718117034513192,0
+0.20075537551995432,0
+0.3388673068221865,0
+0.06551064947475435,0
+0.017100062916979394,0
+0.0006590353162778416,0
+0.000911035169486757,0
+0.1370185097816196,0
+0.17376739569789293,0
+0.2563391460423437,0
+0.0077893076883762315,0
+0.07299655179277609,0
+0.0360417626848265,0
+0.037036749636053745,0
+0.038140982930333994,0
+0.04472451846479618,0
+0.004916767400830502,0
+0.3457248377968742,0
+0.000978849914633546,0
+0.03660812978727002,0
+0.16190617552654507,0
+0.10858578761985178,0
+0.1391136997913486,0
+0.0014359457298752537,0
+0.0060652755518876824,0
+0.22280693073797853,0
+0.12108851242846966,0
+0.024682876307759474,0
+0.01310580123992167,0
+0.541383299523041,0
+0.005728018810618423,0
+0.07819133665309999,0
+0.2173553274610518,0
+0.05880539759868007,0
+0.20399285563164696,0
+0.06361920316099343,0
+0.26191522706066717,0
+1.696090023352764e-05,0
+0.004349317028650395,0
+0.08914050891602493,0
+0.057239936737547084,0
+0.23049657315830502,0
+0.08647246195114419,0
+0.050726601724753836,0
+0.1745208345924336,0
+7.782410468007179e-07,0
+0.1718494628853451,0
+0.025905925370310102,0
+0.08951509006378502,0
+0.12065497924881577,0
+0.018972742714089476,0
+0.024631109616852283,0
+0.006416493704104345,0
+0.00015389902876471537,0
+0.43234417474796044,0
+0.655238542508146,0
+0.041147852556144,0
+0.05579336253149858,0
+0.02948077568310532,0
+0.01740295545259788,0
+0.23922994551701549,0
+0.00400449198466937,0
+0.31623782830468133,0
+0.19047631419926372,0
+0.07972210971647067,0
+0.2858233501534662,0
+0.0011108276918770097,0
+0.05593330555085896,0
+0.038781111832850386,0
+0.03759064985756004,0
+0.09239108766235658,0
+0.016608596897163333,0
+0.13867289688224763,0
+0.02665103209454006,0
+0.0033236242862748643,0
+0.05917195848313056,0
+0.13720389558274457,0
+3.987075734353677e-05,0
+0.0015081317715400786,0
+0.16955029922272088,0
+0.014385209186157724,0
+0.2539892078834844,0
+0.0759545334527998,0
+0.20111633245756702,0
+0.06451021124429343,0
+0.4167423849032703,0
+0.01932011222813692,0
+0.05538108788078031,0
+0.05043234135497101,0
+0.0849383017605993,0
+0.003371241878772776,0
+0.05400330363742195,0
+0.0003610869870698766,0
+0.1120613174895911,0
+0.010166887666839399,0
+0.01730966296551726,0
+0.03719962056070889,0
+0.18525525691738554,0
+0.23301926258831326,0
+0.01737004011550509,0
+0.2046956253039665,0
+0.0077756588611402,0
+0.045950974901806343,0
+0.07586202902035231,0
+0.0034901762806512234,0
+0.0027873458526774452,0
+0.08734938563580824,0
+0.08848132368171154,0
+0.002076173565268646,0
+0.1281195517511025,0
+0.016876286345006215,0
+0.02339904299568677,0
+0.008496670785860808,0
+0.13102737568255501,0
+0.037020873816501806,0
+0.06626438443982527,0
+0.02578818725051128,0
+0.011955794660490463,0
+0.05629598602729511,0
+7.435900059880975e-06,0
+0.11319958373139656,0
+9.572006562379972e-07,0
+0.16721797638204644,0
+0.16059508412534623,0
+0.005789317397174958,0
+0.007348269768923973,0
+0.12324035843267048,0
+0.017387723694760774,0
+0.18439083272362244,0
+0.06482646242669314,0
+0.052372314873065554,0
+0.04945900695472648,0
+0.06375945389451274,0
+0.017346610679414516,0
+0.21410570924733013,0
+0.06678738455189856,0
+0.04758545432290708,0
+0.00031975296307235523,0
+0.2012649310709834,0
+0.017006668597994552,0
+0.01570222336266792,0
+0.163132819033966,0
+0.011741145986727049,0
+0.008346860714108603,0
+0.19229923648594374,0
+0.445331042714857,0
+0.33596673159340334,0
+0.2535193487963125,0
+0.09112058213113022,0
+0.13607439974303864,0
+0.037208397365438184,0
+0.01129883778589469,0
+0.10926308731357474,0
+0.151291548795026,0
+0.18680688443985866,0
+0.03108721875932998,0
+0.0005439732450529756,0
+0.024945392762762916,0
+0.07194633841598708,0
+0.0071392601337815515,0
+0.002995248819978575,0
+0.09130762438165685,0
+0.17444768149137624,0
+0.0858303501101914,0
+0.018666456067274354,0
+0.004042544188808232,0
+0.07010544577303188,0
+0.14570462381928811,0
+0.011484121535784602,0
+0.15076099392844583,0
+0.01057011313640195,0
+0.0001127359032078118,0
+0.10663044628031974,0
+0.03813086593769349,0
+0.0217650508508503,0
+0.009379315676490843,0
+0.00020503249423474727,0
+0.30521941063786634,0
+0.07302793205258654,0
+0.06763250962750617,0
+0.02199384954579231,0
+0.000273505863723698,0
+0.19043564931345816,0
+0.0007884529166592299,0
+0.01043639825735737,0
+0.019015844872718672,0
+0.07438377000745036,0
+0.03621482887745382,0
+0.23255178245601954,0
+0.6733240760609216,0
+0.026884987361268885,0
+4.2443327776758684e-05,0
+0.18041403491859312,0
+0.2652331574869995,0
+0.17303071464024683,0
+0.12602997707670002,0
+0.1238502622695821,0
+0.1438275745544083,0
+0.009055641489871638,0
+0.11624428456374632,0
+0.1435850199029363,0
+0.0033498500540143834,0
+0.015135900571612395,0
+0.5187488972240295,0
+0.1101921538426451,0
+0.03719959048136022,0
+0.032758144137179646,0
+0.102896228415073,0
+0.34392105820971314,0
+0.22925410576784816,0
+0.013258915944186506,0
+0.15755358924244317,0
+0.05619960218916224,0
+0.045176008076478105,0
+0.1919283014104263,0
+0.2799189774771056,0
+0.009399712576966035,0
+0.22091993222550213,0
+0.12787970603295187,0
+0.0002451555144438696,0
+0.03631994781605731,0
+0.00039663865370522547,0
+0.06274931604613807,0
+0.032640261099396085,0
+0.028954912764471864,0
+0.009011252692695041,0
+0.02777837281088859,0
+0.02240852767993152,0
+0.02170827166770353,0
+0.000881649170098265,0
+0.004867958431197668,0
+0.01220913463771146,0
+0.09788691157511767,0
+0.07629900595718977,0
+0.051737871984998164,0
+0.07067046869592172,0
+0.18006979409057416,0
+0.027797453958030748,0
+0.05274016398813369,0
+0.5900180838381892,0
+0.06748194990430997,0
+0.08628385887635956,0
+0.08723577841394733,0
+0.24285774181482395,0
+0.09731907788240134,0
+0.00016402651546899247,0
+0.005710104741616275,0
+0.03543997388161213,0
+0.10786904834636066,0
+0.6280925710808403,0
+0.017215352626710107,0
+5.805242187025332e-05,0
+0.03331538740915767,0
+0.13903416267567706,0
+0.004005508460287153,0
+0.25926460781614175,0
+0.049724730667831514,0
+0.0058095957877736795,0
+6.604899208645753e-05,0
+0.001617476795281969,0
+0.12190492730223135,0
+0.09229411986905547,0
+0.008983152420237915,0
+0.0016512763272147056,0
+0.004017213483812588,0
+0.025604113361507586,0
+0.004960256529083636,0
+0.009263095722644199,0
+0.26286214506679956,0
+0.02602974032435589,0
+0.015891665922187645,0
+0.10330435241392677,0
+0.010102601761940487,0
+0.0058553108807031145,0
+0.15689173135966555,0
+0.009318287980511254,0
+0.00231100316387484,0
+0.09561011803790509,0
+0.10126207761123088,0
+0.0001600410476948651,0
+0.07071591545976294,0
+0.04876080774860335,0
+0.14088358788226624,0
+0.02808018749678427,0
+0.455878131415139,0
+0.3437954380097682,0
+0.03483942666310174,0
+0.052843960407411704,0
+0.044490128848516844,0
+0.011722805991238096,0
+0.2932373751335113,0
+0.08622107017177766,0
+0.005879872182439756,0
+0.011080634892349684,0
+0.0008196025431748367,0
+0.05198476524142559,0
+0.2683653163547099,0
+0.04650967233578533,0
+0.03608931984005713,0
+0.00012726157185459491,0
+0.003232014296825033,0
+0.024503638256546507,0
+0.00011210513032633665,0
+0.03571024611081652,0
+0.6552888868887821,0
+0.07220549024661983,0
+0.10187508552341003,0
+0.04599180419844502,0
+0.1831826454946729,0
+0.12129062843716601,0
+0.19910859541399814,0
+2.3274313658015076e-05,0
+0.12632701383740136,0
+0.03924853491638192,0
+0.2037028527037405,0
+0.2188611708601625,0
+0.0782599139454569,0
+0.005054146184142142,0
+0.018053194578611768,0
+0.0012300151961316633,0
+0.031038253784623215,0
+0.036735967033880795,0
+0.3453102994263851,0
+0.03300124743869891,0
+0.10439699132197804,0
+0.10258720132646977,0
+0.04684996650147892,0
+0.0008476269628802336,0
+0.08526340601047933,0
+0.14529544689754478,0
+0.2079197919833672,0
+0.03454806189317962,0
+0.10643357630323154,0
+0.012981630607976965,0
+0.00014817521783326736,0
+0.04083919105544803,0
+0.03022284543980755,0
+0.015885639654177632,0
+0.20314104839581487,0
+0.0016468878830605584,0
+0.010106920326622755,0
+0.03673067888389643,0
+0.03639417285994514,0
+0.4685145758482476,0
+0.17082509443877564,0
+0.059262004580882786,0
+0.3509458156405929,0
+0.37003100986248766,0
+0.07312768527129451,0
+0.016153529594668342,0
+0.035208125330372805,0
+0.05624652603118994,0
+0.23440080629479895,0
+0.002620487614533949,0
+0.1854606580847465,0
+0.02218808873861273,0
+0.0368962776888065,0
+0.004126471764375542,0
+0.1776155788383171,0
+0.01495928966140216,0
+0.0038481423334139142,0
+3.4428758334009584e-05,0
+0.01731243191202445,0
+0.3421028860960423,0
+0.0543602653517898,0
+0.002254795112147268,0
+0.05062602984234031,0
+0.011801500779768822,0
+0.6135790221101598,0
+0.016421542412153343,0
+0.043653443708459944,0
+0.07740561618932963,0
+0.01458184192238127,0
+0.35098749400536405,0
+0.0036514968189324754,0
+0.04245673480803821,0
+0.034042243963834026,0
+0.046723205696112505,0
+0.09640396102822622,0
+0.0024599986065182078,0
+0.054877110184391086,0
+0.07982565192191998,0
+0.017995075886332063,0
+0.0023144616306309458,0
+0.0064959531472249,0
+0.477175127562721,0
+0.021261195967467828,0
+0.010157106804875625,0
+0.16475446961062926,0
+0.5271334661286048,0
+0.0955645648179673,0
+0.033208317413847645,0
+0.13083825473703567,0
+0.16652170726025664,0
+0.15887522875747556,0
+0.025931705915509595,0
+0.035400397030497945,0
+0.17156125811771833,0
+0.1657809814950699,0
+0.20375007061557185,0
+0.0023238944069840224,0
+0.04149947836222114,0
+0.013707236145208728,0
+0.6068469068679156,0
+0.01385981338092816,0
+0.16389749195527728,0
+0.051171240734480074,0
+0.02897843444953238,0
+0.14894216303612393,0
+0.0595164300427129,0
+0.004835563402624593,0
+0.05763837289245233,0
+0.0109957406929651,0
+0.13453039498796066,0
+0.0493060294412158,0
+0.004798163934156246,0
+0.04038810491702577,0
+0.0007036682589617233,0
+0.007691759591331883,0
+0.3471280924690442,0
+0.02768634184721197,0
+0.18616054282615577,0
+0.068657843008115,0
+0.00021128146135022995,0
+0.01305590278196619,0
+0.002641755915168474,0
+0.058722540949033376,0
+0.031781970176889385,0
+0.47368713307892596,0
+2.0402363784234657e-06,0
+0.018082407991818462,0
+0.020252759540586855,0
+0.006433438263602459,0
+0.021431065299355,0
+0.0025236122960796384,0
+0.10832127471391931,0
+0.010483164786347683,0
+0.008086824520073383,0
+0.0009142155679203732,0
+0.051163686867391235,0
+0.059941302565083635,0
+0.1116360552144943,0
+0.11538393892508787,0
+0.00408468385351455,0
+0.050483108402259204,0
+0.10027671198138541,0
+0.2641118393702232,0
+1.6704977450362025e-05,0
+0.0002624273354779515,0
+0.01576711479851226,0
+0.018854685354927146,0
+0.04271119935214225,0
+0.25442224998945173,0
+0.01970715766407844,0
+0.0325016812695921,0
+0.12342969677818354,0
+0.1887448579267131,0
+0.23980155340445922,0
+0.06229149917854852,0
+0.04641215568894659,0
+0.049035874267235935,0
+0.02010083597028075,0
+0.09837849403633162,0
+0.06987694313528461,0
+0.006560263631969686,0
+0.02984038154780626,0
+0.0013019279511643713,0
+0.005455849425136676,0
+0.00955181537881354,0
+0.009184524678460333,0
+0.09424591877009085,0
+0.01665034643551139,0
+0.16209298598518718,0
+0.04405232516736505,0
+0.12926625843297912,0
+0.0143711857178941,0
+0.0004932058374259094,0
+0.014055096403163821,0
+0.09868957620977575,0
+0.20208371105747097,0
+2.3450288338521056e-05,0
+0.027305478795651462,0
+0.16443560456231712,0
+0.0020852941963734597,0
+0.011374571223794414,0
+0.0013736513778840067,0
+0.0283293897757728,0
+0.0005080560958716634,0
+0.0020507221966642804,0
+0.2214417661060582,0
+0.02399310565723179,0
+0.015000824395439946,0
+0.02757550027428467,0
+0.052988316400629565,0
+0.018434238735834167,0
+0.06933620709394425,0
+0.2988543050300594,0
+0.024682940374270865,0
+7.149887519807761e-05,0
+0.0021346853039499866,0
+0.5313933356701626,0
+0.007281211280192257,0
+0.014794504638281525,0
+0.005292381598097107,0
+0.08488095252789192,0
+0.0029719651659187727,0
+0.00010196898186795838,0
+2.096786382579351e-06,0
+0.07057908285232203,0
+0.038384286529738916,0
+9.827850614940975e-05,0
+0.011830370120811708,0
+0.14103316803187624,0
+0.20170166164465883,0
+0.27254971437719455,0
+7.587375699111817e-06,0
+0.39577792302449577,0
+0.11896218075726159,0
+0.234196714439708,0
+0.07507664093975638,0
+0.5492929879995482,0
+0.0009289759337765222,0
+0.07220598539146282,0
+0.052539551338681864,0
+0.21704508238797432,0
+0.05820564988251934,0
+0.0006178332172176988,0
+0.040722242322406274,0
+0.09708116513663366,0
+0.06401550535016201,0
+0.11724485091523174,0
+0.7796611012276965,0
+0.0018670642375470648,0
+0.42805416789284134,0
+0.2916614128371485,0
+0.11452337478227059,0
+0.000569365188022897,0
+0.0011859720063858996,0
+0.008269951246773927,0
+0.5414113431695132,0
+0.10594537243099356,0
+0.04354459710087927,0
+0.04138506884072745,0
+0.10944831541366999,0
+
+0.12807058418997405,0
+0.06926780686915743,0
+0.05380478439180997,0
+0.0986801933954739,0
+0.024650886929136577,0
+0.014871514034687935,0
+0.07276356296712311,0
+0.06462242901163302,0
+0.023783770181350368,0
+0.1641900060864372,0
+0.0848179136501649,0
+0.003369560454903562,0
+0.0017790372281645214,0
+0.39653240231907166,0
+0.039416481347022705,0
+0.11965317670403026,0
+0.012757492301377762,0
+0.04081042445188205,0
+0.7367627454252208,0
+0.09266186885278102,0
+0.012586768554295335,0
+0.062477406031881996,0
+0.0024902759740516945,0
+0.16179209141703152,0
+0.028422016532928272,0
+0.19917389591376872,0
+0.019394394890467882,0
+0.002482864456369378,0
+0.11306711051499943,0
+0.00013944867765250686,0
+0.008792444910686394,0
+0.45158299892280906,0
+0.48772180959240813,0
+0.495367871279512,0
+0.12911118951353265,0
+0.12741116293579652,0
+0.5806885873713805,0
+0.043319026598427915,0
+0.007052606858120071,0
+0.06953800651382222,0
+0.06067705510687978,0
+0.0056475362903265925,0
+0.03614682536273298,0
+0.0006157830828013021,0
+0.07940344653394353,0
+6.700438950554552e-05,0
+0.003473650757623957,0
+0.43813685011597103,0
+1.78028031729844e-06,0
+0.02671753214655922,0
+0.019685689921752153,0
+0.04629478864652815,0
+0.055328256469582934,0
+0.06559865903068308,0
+0.0121995230148426,0
+0.04128323608126702,0
+0.014628558633034406,0
+0.048374779102909694,0
+0.5462276990816788,0
+0.08556884225374013,0
+0.17175013957013402,0
+0.0040862277582461555,0
+0.004288689847273077,0
+1.8950277273358085e-05,0
+0.631285647364694,0
+0.43283658505561895,0
+0.0880557208191178,0
+0.13221986670669092,0
+0.0837793982689013,0
+0.021174551899191995,0
+0.007567860824287008,0
+0.15136058527403748,0
+0.014883143454544551,0
+0.13980711856579564,0
+0.00045211256917544924,0
+0.16024445485930905,0
+0.00026034993538784595,0
+0.17791693664634256,0
+0.47263244848561864,0
+0.04620870496240659,0
+0.2532668084493398,0
+0.15514577781317546,0
+0.016540276552200372,0
+0.0879234618027269,0
+0.11764840941829983,0
+0.09627138424207712,0
+0.005656680735735284,0
+0.13744348122438516,0
+0.3395188092166794,0
+0.3366283560981501,0
+0.030913873036739842,0
+0.012230613979423356,0
+0.024347799544541172,0
+0.07994762470651667,0
+0.15515347453776612,0
+0.1627506629168745,0
+0.15741557708235218,0
+0.010073526934783342,0
+0.23438509298240123,0
+0.05338614643975126,0
+0.2842240927293666,0
+0.2694495552052218,0
+0.14526463104672954,0
+0.19634291340123994,0
+0.005699381832477135,0
+0.07758635941051964,0
+0.015025856325116424,0
+0.00010304610197643903,0
+0.014521827466242873,0
+0.3303249050798608,0
+0.08380110029265703,0
+0.0028061837098939065,0
+0.11602555343575957,0
+0.006806562967383478,0
+0.23881531692460048,0
+0.5957886388852829,0
+0.03483736504168321,0
+0.037701686202562236,0
+0.08728032122110072,0
+0.09541817231650937,0
+0.10812435185255556,0
+0.034727923086114186,0
+0.010945938748800132,0
+0.04182309131577981,0
+0.00602767112398108,0
+0.017427345110192012,0
+0.13493784414450716,0
+0.005283201533633481,0
+0.032988764042957135,0
+0.05811467285158327,0
+0.17202129813827802,0
+0.03254639306763086,0
+0.007379255410725985,0
+0.0481329696199123,0
+0.02404769268343162,0
+0.07229085863728803,0
+0.007693613687245642,0
+0.5513600694610404,0
+0.06960880830115974,0
+0.03268513121229134,0
+0.2865922617310339,0
+0.04561815757322126,0
+0.16269834818835419,0
+0.05575083215841496,0
+0.0073401868695562545,0
+0.2065338376560503,0
+0.0003988208025785178,0
+0.14711140264768266,0
+0.02505271250733602,0
+0.087823858468686,0
+0.05456135056205417,0
+0.09959301430317083,0
+0.002052745112730877,0
+0.06651010478788943,0
+0.03974741987854596,0
+0.010741632107539673,0
+0.03353932287402049,0
+0.11268752060631344,0
+0.0028413713422394613,0
+0.0002080424791556375,0
+0.06998549904966515,0
+0.06615631543707465,0
+0.0012579252996356989,0
+0.03947223592834231,0
+0.07482341723864804,0
+0.47440968339249334,0
+0.5703163596939385,0
+0.01334327136084235,0
+0.013978051408654883,0
+0.03563157836305702,0
+0.028492616009659372,0
+0.017459931069139435,0
+0.01532583421519305,0
+5.074329876897427e-05,0
+0.004309649757956492,0
+0.0010403335599120966,0
+0.10655754092951646,0
+0.047917130043911696,0
+0.3069135803748322,0
+0.024439946237869405,0
+0.006894092391869109,0
+0.021907808187386864,0
+0.0006060743361647827,0
+0.03694765565264134,0
+0.08264991012802336,0
+0.0858695764706763,0
+0.0017099616657589869,0
+0.018416360766675986,0
+0.27429283798553733,0
+0.005992236463874751,0
+0.21765490481194183,0
+0.02413113103676257,0
+0.08771755296103187,0
+0.013925909500379141,0
+0.02143373811867639,0
+0.14045775483960402,0
+0.17762915946427055,0
+0.0009213900015199474,0
+3.372079906145281e-05,0
+0.020088703797153818,0
+0.08161612174277243,0
+0.36082251510781393,0
+0.12974323835464346,0
+0.15022037520286852,0
+0.09664637339616243,0
+0.12228599885789486,0
+0.007498313818182232,0
+0.04725279187455515,0
+0.018109732387251058,0
+0.0009549502906507995,0
+0.022839985366651057,0
+0.0019120706646909478,0
+0.04780911900957466,0
+0.034020372058882954,0
+0.05895011689608528,0
+0.5147730350254218,0
+0.0027067782776863418,0
+0.06823387591495492,0
+4.866543336836236e-06,0
+0.2560738909761516,0
+0.06910840228544493,0
+0.035954900197684915,0
+0.48629732511301704,0
+0.0013036035566762537,0
+0.21670837748681632,0
+0.05840853799202543,0
+0.03899710949927303,0
+0.031808235352477496,0
+0.038549197589626175,0
+0.009058613807458416,0
+0.2426446120162488,0
+0.004202948330438919,0
+0.23705736274782133,0
+0.03655477693717178,0
+0.6417693030699356,0
+0.018941623009992935,0
+0.11132243529219683,0
+0.12470004589704017,0
+0.08954780692528799,0
+0.32016322720035945,0
+0.028085203648943197,0
+0.04197238450735534,0
+0.08572981446299414,0
+0.06854519887616314,0
+0.15533836463936496,0
+0.013713369407384612,0
+0.04218302603367284,0
+0.11453290890307884,0
+0.09340105049303456,0
+0.08914481724260467,0
+0.1238422115540988,0
+0.4151011831501686,0
+0.27154898352992374,0
+0.03741365897047171,0
+0.03863044464669736,0
+0.0009472492262010024,0
+0.00945800677704341,0
+0.0003960983557338885,0
+0.05531966712107615,0
+0.04788847046878616,0
+0.007565621451295102,0
+0.08883742521509849,0
+0.00318351840768022,0
+0.2104877370497725,0
+0.019998687610902975,0
+0.02715998801604712,0
+0.11185229657918216,0
+0.08892331476872947,0
+0.04109353498483388,0
+5.293649179744615e-05,0
+0.017368607274801856,0
+0.14754356125436513,0
+0.08105998096020126,0
+0.008242641779364783,0
+0.0020843768178112686,0
+0.41070781822164315,0
+0.10368179181115131,0
+0.0003995048515611028,0
+0.003084966153866836,0
+0.025616997415226984,0
+0.04965422540251948,0
+0.05352895421013587,0
+0.18647157722421695,0
+0.1106580890929183,0
+0.0009956772652727386,0
+0.056101772554632924,0
+0.04600763767996846,0
+0.019764044033534434,0
+0.1274046178660492,0
+0.008154111287360816,0
+0.3694117160045403,0
+0.003834990854189707,0
+0.08893302230867049,0
+0.0005974481779803078,0
+0.07700327441100815,0
+0.016199591931310573,0
+0.02341983801326815,0
+0.019557517284560455,0
+0.01727033000240657,0
+0.23959900168987053,0
+0.03530989381797002,0
+0.3864225920483334,0
+0.016563037176870014,0
+0.15269569002508449,0
+0.05979887142271413,0
+0.03566970089528228,0
+0.045559826171637986,0
+0.06983299913586123,0
+0.03136850499183936,0
+0.07728271385361898,0
+0.02013332243560461,0
+0.000605783155932691,0
+0.07756524133253674,0
+0.12507427781935337,0
+0.10690838464706927,0
+0.001224200720259029,0
+0.03203998653050567,0
+0.13974641549177186,0
+0.5990148021364952,0
+0.011187361231073872,0
+0.250406804201412,0
+0.018456549476733457,0
+8.061594881934724e-05,0
+0.2946569750092328,0
+0.0027911716613566073,0
+0.07188120502070271,0
+0.0002399968923059084,0
+0.4726215361196866,0
+0.014511522815561067,0
+0.05230809486395762,0
+0.009642341876321937,0
+0.09823173002639508,0
+0.010649758429017258,0
+0.026176445270952847,0
+0.17997622254869666,0
+0.016215752558245165,0
+0.06323498432845238,0
+0.06951763594304235,0
+0.06338490370083494,0
+3.323626225599011e-07,0
+0.019796069148696492,0
+0.0013110652743914153,0
+0.4060079628458304,0
+0.06635115636259958,0
+0.06922369502586992,0
+0.08297315815154539,0
+0.015394006660693241,0
+0.09229178705871752,0
+0.06402659724352669,0
+0.06833679495043202,0
+0.3341430076704927,0
+0.007917907392318927,0
+0.22899866494508841,0
+0.2214358937741147,0
+0.12910646672313272,0
+0.04510268349652142,0
+0.019046766290572916,0
+0.00816871042731363,0
+0.21249718143152724,0
+0.32326615847900875,0
+0.013125676475802598,0
+0.13938171645753522,0
+0.16362358978515273,0
+0.014987350597614088,0
+0.35360263749363696,0
+0.020571840004506417,0
+0.012795307852503749,0
+0.05232259418318576,0
+0.14391513669787126,0
+0.07752023308497068,0
+0.0027154280819813538,0
+0.08827918397818754,0
+0.05145845809075596,0
+0.003592607133846292,0
+0.31005128730892206,0
+0.03515697156367755,0
+0.03418374658326339,0
+0.053722335435597776,0
+0.03877145137873085,0
+0.0002835249047238236,0
+0.09819148834362364,0
+0.007173098735005799,0
+0.13735603995015588,0
+0.12558506239740022,0
+0.12829183138937544,0
+0.035102822053789756,0
+0.18855707022464815,0
+0.0070437182546705486,0
+0.17192539360581865,0
+0.31053520526669104,0
+0.015588904196500764,0
+0.02631161028700719,0
+0.12621032083011835,0
+0.04602244679222155,0
+0.054637915892621715,0
+0.008755858458680977,0
+0.1593664363454724,0
+0.11024816592371105,0
+0.009367176954339113,0
+0.04387277309398982,0
+0.09501397855363314,0
+0.33523797900688107,0
+0.014648727796753105,0
+0.22240299176381723,0
+0.06107595586637891,0
+0.005000589808633294,0
+0.004034512877710703,0
+0.0030764519516756844,0
+0.06308598018496211,0
+0.0034256453661218834,0
+0.021368281522948014,0
+0.12363774912743482,0
+0.019785091722548814,0
+0.0014855971859998713,0
+0.25833271712286354,0
+0.06193402828829829,0
+0.2753550977645656,0
+0.45753963516909363,0
+0.2695491685570638,0
+0.1478320598579481,0
+0.07668731335245921,0
+0.024754667772817443,0
+0.05780003793159814,0
+0.2062018958453254,0
+0.25620910528464386,0
+0.04475552788585471,0
+0.16182652719834154,0
+0.34664375700629424,0
+0.008294343928150445,0
+0.032251394973278696,0
+0.10005906548034096,0
+0.260078632143827,0
+0.2463237922781966,0
+0.031766585479934245,0
+0.3049907594707395,0
+0.020946624924705858,0
+0.00224367619516809,0
+0.1788460699164019,0
+0.004240643855251183,0
+2.2341457257434487e-05,0
+0.1013256027614901,0
+0.06926905649201784,0
+0.072796433001597,0
+0.04116773625641378,0
+0.08778791288536265,0
+0.16104215982822145,0
+0.05038165435170613,0
+0.014213177933352254,0
+0.09883966590374775,0
+0.013647590090828823,0
+0.038491900229541645,0
+0.020599489686308987,0
+0.3170551142757343,0
+0.0006706331235819153,0
+0.1919365406367018,0
+9.41839688444785e-08,0
+0.10316860562541881,0
+0.23250023806308673,0
+0.03429858531368687,0
+0.029708512666285002,0
+0.048724076902688984,0
+0.032471359273670876,0
+0.024522131993374233,0
+0.013218564808830014,0
+0.28386292860222256,0
+0.23745626607464515,0
+0.12262008534652116,0
+0.002530554653516161,0
+0.05883603812629096,0
+0.02235808976565152,0
+0.0005894375706717363,0
+0.483139196154856,0
+0.013372402111440604,0
+0.027998145797964297,0
+0.0015135247348291709,0
+0.29278954681514346,0
+0.0021005712864292083,0
+0.011235669570832895,0
+0.0054833908796997925,0
+0.03299626603702928,0
+0.2887938103607365,0
+0.13709740087915967,0
+0.3011998070316832,0
+0.24938200046272657,0
+0.011008839595405972,0
+0.04948991700272863,0
+0.006869738510626398,0
+0.029086899818112626,0
+0.27822915895770334,0
+0.01273417690549282,0
+0.032509081672975684,0
+0.043047863986112225,0
+0.0552487309790342,0
+0.26092356774225306,0
+0.00636928883762646,0
+0.0024952080381075905,0
+0.2644109563598568,0
+0.00012259720895590385,0
+0.19188304749583066,0
+0.31431072007113,0
+0.00013307857050914886,0
+0.01913632634442307,0
+0.014937338983153442,0
+9.552404330497554e-06,0
+0.16935238512812778,0
+0.004506936035954592,0
+0.005886636877472256,0
+0.10434624302284665,0
+0.18731286371263806,0
+0.01897117665676482,0
+0.23554595941855433,0
+0.00019704934721384392,0
+0.17152598985141043,0
+0.010982512109781498,0
+0.07896938991519682,0
+0.002154819302982899,0
+0.06858127867811058,0
+0.06187625282107552,0
+0.0002010294392693466,0
+0.12549860006355598,0
+0.0049527316505692765,0
+0.19701666611446714,0
+0.018998348576541407,0
+0.008330202979594897,0
+0.12258739012966288,0
+0.011463462258683393,0
+0.07005837721566366,0
+0.025686723166279873,0
+0.1713137707515155,0
+0.06988700676014975,0
+0.07828468031079124,0
+0.006403066699472941,0
+0.11111409572344946,0
+0.4544815023906829,0
+0.13695374187567516,0
+0.25312889644049297,0
+0.10324571167858346,0
+0.0349074139068377,0
+0.19842757360789884,0
+0.00161714192282738,0
+0.10400412408939078,0
+0.0055054028569283845,0
+0.36262602826617685,0
+0.002213587688386935,0
+0.012097607071111457,0
+0.08666666244899715,0
+0.0061342534496463845,0
+0.015600371913754163,0
+0.26488238324544017,0
+0.038679693384767164,0
+0.017458186522732642,0
+0.16297274650362265,0
+0.005690610145621554,0
+0.11381170204424973,0
+0.09183829965167059,0
+0.005671676809802818,0
+0.001963345046091604,0
+0.04615856506051484,0
+0.11277651838582814,0
+0.1199472505385802,0
+0.1296160563721667,0
+0.08659142621528831,0
+0.023237193579941716,0
+0.008265451639072784,0
+0.13545256380849818,0
+0.006463481247681252,0
+0.004619873995420029,0
+0.0001792354142865146,0
+0.00017943019621457398,0
+0.3054120220707649,0
+0.02211944868974259,0
+0.10321982042711172,0
+0.0365849588180398,0
+0.004661600444367099,0
+0.031004355358161522,0
+0.0010565197362244142,0
+0.004965270136404151,0
+0.3019925140169824,0
+0.3761042064089651,0
+0.5479535824805026,0
+0.014306536069826566,0
+0.1240308195589908,0
+0.04015747622183015,0
+0.000825088964701938,0
+0.09719138189388771,0
+0.3783607569275492,0
+0.14193275261247634,0
+0.04255365851437304,0
+0.010680103456850587,0
+0.03836232160911996,0
+0.3211132993378048,0
+0.009152236101560773,0
+0.07618497483898388,0
+0.004169676293634595,0
+0.3763034865581445,0
+0.5711484446530027,0
+0.07660058126811198,0
+0.2859254936523888,0
+0.10957804206762076,0
+0.0842307536927358,0
+0.013351941568337952,0
+0.058045180852291434,0
+0.01735881988147201,0
+0.055727765628613146,0
+0.004121342086046576,0
+0.07988400413090972,0
+0.06265103358151992,0
+0.009676153215916456,0
+0.2152498617817305,0
+0.03818054196971044,0
+0.029588821322316643,0
+0.03539914433054755,0
+0.03585261209615796,0
+0.1676689452544958,0
+0.0010316368663301596,0
+0.055549002309670484,0
+0.12537237178357238,0
+0.007748830275880561,0
+0.17886142220222565,0
+0.0050619512613126845,0
+0.07755393244318633,0
+0.010413044497171836,0
+0.36061506572286045,0
+0.13292785259365897,0
+0.0063642328193039025,0
+0.19724438242066142,0
+0.00011291454524940023,0
+0.008954371938008172,0
+0.00805426387100709,0
+0.009551903315078472,0
+0.1673919194379072,0
+0.021183050587317686,0
+8.192815822884484e-05,0
+0.15548616185623043,0
+0.050341010859248525,0
+0.005729030798368662,0
+0.09589479327337116,0
+0.22568444592060805,0
+0.42802956974777107,0
+0.3765182051383328,0
+0.19426443931279366,0
+0.029073196012428342,0
+0.004646129304077017,0
+0.10209051503666247,0
+0.09061906120774518,0
+0.03138527170711819,0
+0.016016765267101683,0
+0.00028826792419718047,0
+0.40072660839797597,0
+0.03403902644253075,0
+0.1358261938093412,0
+0.0015356489084210618,0
+0.022049403404738648,0
+1.321704863439468e-06,0
+0.4059036742140748,0
+0.15258607278177944,0
+0.002251047790049824,0
+0.1975788872724425,0
+0.024646459437451317,0
+0.08118832299708487,0
+0.028232388415461183,0
+0.4738011294974725,0
+0.00867560669899113,0
+0.005121482105956495,0
+0.07428364481175519,0
+0.00012306563793700596,0
+0.06851399023422146,0
+0.02398634200456657,0
+0.0444328290922586,0
+0.1684636879496912,0
+0.06730404363294619,0
+0.0032073547609098156,0
+0.0032639424662189295,0
+0.042282856945853015,0
+0.017281405444753643,0
+0.009384870328807077,0
+0.04230294766364941,0
+0.07796269421088634,0
+0.19445012155689106,0
+0.011761701919343798,0
+0.02057674295603633,0
+0.10209874495057539,0
+0.035497254127077084,0
+0.00015263020712369063,0
+0.025068560512519877,0
+0.008421301207923813,0
+0.1375412469571973,0
+0.001812994285161578,0
+0.04395538698845801,0
+0.053666669646303275,0
+0.16982359963374577,0
+0.010329996806413673,0
+0.04486233993391246,0
+0.0005699753604657474,0
+0.01566211874208502,0
+0.09328927051157483,0
+0.19600802900156147,0
+0.028223738295081246,0
+0.08709479169516944,0
+0.02087923299296583,0
+0.013071073377249415,0
+0.0058561476167908865,0
+0.1498367769862886,0
+0.2383850008565492,0
+0.005158954900273503,0
+0.04511086306623156,0
+0.05675568298929771,0
+0.006967099725831592,0
+0.1673470757516538,0
+0.024931542123541383,0
+0.07959270000252966,0
+0.006931442643085395,0
+0.06376982663853643,0
+0.08958484344639564,0
+0.013742778748669448,0
+0.013238242683622406,0
+0.12211542996440872,0
+0.0003867652523859029,0
+0.045102611142122814,0
+0.04062557498956944,0
+0.028862579177397672,0
+0.00021599527920956543,0
+0.0014900515086316922,0
+0.04020713090327092,0
+0.32509434907477475,0
+0.004923241135685561,0
+0.15330577949428106,0
+0.30144012378302265,0
+0.03253787247880371,0
+0.08608241097621985,0
+0.02807285242193993,0
+0.07022135250505765,0
+0.13537996783266326,0
+0.00016956095916211285,0
+0.08633180981874504,0
+0.4403195510431638,0
+0.2849926381223971,0
+0.14580763750773168,0
+0.236957495976504,0
+0.0959940252912049,0
+0.033323112351937655,0
+0.009428339342841593,0
+0.025641540117788623,0
+0.2030781584922201,0
+0.04078444432201042,0
+0.011436439792854362,0
+0.04928140171849001,0
+0.15520615480618155,0
+0.15189277118276992,0
+0.011876371144056305,0
+0.036394823937255544,0
+0.136236517299199,0
+0.30617605790198604,0
+0.11276010833437902,0
+0.16020431351556286,0
+0.02667527354526774,0
+0.005478974322619656,0
+0.029774944391450054,0
+0.03442835039050375,0
+0.11073060024621358,0
+0.001855191105754102,0
+0.042777583540488204,0
+0.030209323774942,0
+0.06019984334679056,0
+0.006048305240059124,0
+0.20665180216979664,0
+0.12253432924069303,0
+0.2751027417359392,0
+0.2872750342438544,0
+0.1494386419186733,0
+0.08348196521260073,0
+0.4534211016515428,0
+0.17013748909216292,0
+0.03953403143991712,0
+0.010493717438963391,0
+0.1727112440480761,0
+0.10062862422856637,0
+0.27206098688916003,0
+0.006524092402916991,0
+0.0001704529051068914,0
+2.3313038692576197e-05,0
+0.028098609960455552,0
+0.02559157232009248,0
+0.006054719461952009,0
+0.2248653107920277,0
+0.030660110857004423,0
+0.054156941415836754,0
+0.021145164033822182,0
+0.002964726729091788,0
+0.24882431225596519,0
+0.010025140432313045,0
+0.4752040227841485,0
+0.02084504322389773,0
+0.0017281407023184317,0
+0.0033415919339519788,0
+0.03911200880037249,0
+0.03910324373960199,0
+0.006571193964741806,0
+0.0955691764296007,0
+0.1587456532950871,0
+0.02765377529283352,0
+0.14915646199315608,0
+0.3750591335759226,0
+0.11472362715531967,0
+0.022757905415424558,0
+0.44344758728311373,0
+0.41134639753797986,0
+0.007050033692362745,0
+0.017203660085556405,0
+0.03217991381349424,0
+0.08974745894212019,0
+0.04540116536545068,0
+0.04968669937600636,0
+0.03066388155561684,0
+0.3116550362240149,0
+0.016434913395306602,0
+5.956749710156868e-05,0
+0.3995044172175941,0
+0.05873632130921238,0
+0.2021608681969997,0
+0.00034810685035340655,0
+0.048757928625312745,0
+0.04070395306646006,0
+0.2836280266237711,0
+0.0013012341416005712,0
+0.003530750561171784,0
+0.08743306364062943,0
+0.15658697548001435,0
+0.004964541194794487,0
+0.015316684695524607,0
+0.13215654975005856,0
+0.5274292600303034,0
+0.018434752128406468,0
+0.00039952196053870214,0
+0.01797498082602945,0
+0.03724127017550445,0
+0.02249278485519504,0
+0.008117722903861627,0
+0.0003416235976615321,0
+0.16991086689261642,0
+0.010626052976487648,0
+0.0481456449568782,0
+0.26883530056535976,0
+0.007116927719566522,0
+0.2262042930036225,0
+0.1550138987553081,0
+0.008614531457984024,0
+0.27670513093933025,0
+0.010183762356345927,0
+0.07457961875535381,0
+0.06280634501511566,0
+0.004627293218960448,0
+0.010857918645695597,0
+0.21619087612287916,0
+0.011989975523663293,0
+0.18133631629359848,0
+0.008385850304430632,0
+0.15843442408549152,0
+0.04220647663472114,0
+0.023868451271027276,0
+0.14012528317493872,0
+0.001898572263476683,0
+0.10168543102348344,0
+0.012208584560940995,0
+0.0012552445528374076,0
+0.0818495413225132,0
+0.0032067857022839256,0
+0.0014349737158681982,0
+0.22422826434402743,0
+0.03601659982808551,0
+0.019094381136901907,0
+0.015886947925305393,0
+0.3516790776601998,0
+0.009419057275563445,0
+0.019684484721127216,0
+0.28487444889352787,0
+0.0009457192024987385,0
+4.476879898696497e-05,0
+0.07238696744649203,0
+0.11955211257253025,0
+0.17331092347905833,0
+0.05475536644843115,0
+0.18818008618042661,0
+0.3262923429162878,0
+0.004399244300614931,0
+0.471874855240807,0
+0.05609927031163734,0
+0.058129099093350046,0
+0.07654410542703159,0
+0.01136030302235437,0
+0.024716607770064698,0
+0.0010795123622937646,0
+0.0004868068381691019,0
+0.07565182975484505,0
+0.16378941602656888,0
+0.3003312693574338,0
+0.009332234089645754,0
+0.0037251056315998287,0
+0.0028646257518265923,0
+0.08921770978116096,0
+0.35787548358872884,0
+0.07669104891260774,0
+0.22210889188172606,0
+0.7979401241356153,0
+0.12599177371589043,0
+0.18713160667302553,0
+0.017698537836104176,0
+0.09691427581165482,0
+0.03398309053078854,0
+0.0021765774459577606,0
+0.06431867103368137,0
+0.09338670895456844,0
+0.089027189189578,0
+0.027848726395495155,0
+0.03953271804587346,0
+0.0028806202026213814,0
+0.38808702031615744,0
+0.03129839649338721,0
+0.12267863642227125,0
+0.005125964289146298,0
+0.12398856191328245,0
+0.09208012245173666,0
+0.10208534939821032,0
+0.01642359189013199,0
+0.018647012735987786,0
+0.02179661559206878,0
+0.008276766233178351,0
+0.4723975978820315,0
+0.01620215846863362,0
+0.2530594472766687,0
+0.1303080381279289,0
+0.22952084555760818,0
+0.044468828966548475,0
+0.027030645468077902,0
+0.030191236260733806,0
+0.016715548666711728,0
+0.01898198262973228,0
+0.10711675582002056,0
+0.026085444605161868,0
+0.00894106158617253,0
+0.0007429172793221347,0
+0.03325770539249562,0
+0.016243560775755925,0
+0.33010138792253396,0
+0.01875844901246928,0
+0.1133411246191482,0
+0.15493013974265318,0
+0.029400193008490456,0
+0.018722418952137342,0
+0.1491226934349317,0
+0.05391995104864008,0
+0.12655022382258424,0
+0.5514556216754904,0
+0.14331820092707798,0
+0.3638574290203619,0
+0.008290296847306575,0
+0.13751099858429797,0
+0.012541632454085783,0
+0.006366046443418237,0
+0.05647364775542968,0
+0.0005277903157864418,0
+0.09055860090997907,0
+0.2358016100705072,0
+0.10956459274069401,0
+
+0.014512294741740438,0
+0.04153839255151651,0
+0.4678591431363669,0
+0.030407246874321264,0
+0.046922546665068385,0
+0.05784015299845289,0
+0.07647965548150992,0
+0.49393213534540026,0
+0.0935009833643076,0
+0.009171043402643419,0
+0.001084496112028824,0
+0.05425486287566258,0
+0.2091549250847485,0
+0.08460193645804717,0
+0.04420848394086339,0
+0.016029614097156048,0
+0.16370833644967825,0
+0.03952253116057666,0
+0.18195603523709714,0
+0.16620973260885552,0
+0.03714219039885144,0
+0.03527695453320629,0
+0.04629778637438754,0
+0.008776447090665423,0
+0.06332943571198908,0
+0.0660363546787335,0
+0.3513740049832965,0
+0.08483115913572306,0
+0.003090591782907376,0
+0.013354606873932912,0
+0.017256904223293203,0
+0.7111024303834705,0
+9.565765923494403e-05,0
+0.0007498135169027125,0
+0.04903121360879093,0
+0.022444614210522476,0
+0.33786028724737316,0
+0.07532614759920284,0
+0.009363404398736787,0
+0.14246869397958487,0
+0.1673054200932945,0
+0.20110348494474278,0
+0.013765626332439888,0
+0.2407528758442707,0
+0.1033161095744382,0
+0.0008423324859698451,0
+0.00017051803060858317,0
+0.1089290516167398,0
+0.02555112412825476,0
+0.020466651915389836,0
+0.02322441517104425,0
+0.03138550556236731,0
+0.20850184511133968,0
+0.012840109534196283,0
+0.018949219524871507,0
+0.05223983920266304,0
+0.006361047831955057,0
+0.012373846704019862,0
+0.002183220110969915,0
+0.05055531115086949,0
+0.07734239990938602,0
+0.04549514618746843,0
+0.08758516494835465,0
+0.012586806114537835,0
+0.08672013458660471,0
+0.0686366331850399,0
+0.01599937156138119,0
+0.141096730563801,0
+0.024179235357086156,0
+0.3142397548562311,0
+0.0026747577143539417,0
+0.0975980934500697,0
+0.05669392128178495,0
+0.24617381461211343,0
+0.17013429742624,0
+0.19552990195398706,0
+0.008669888644894949,0
+0.0020087308082782384,0
+0.07734928869331222,0
+0.012249825721679042,0
+0.004377508742880961,0
+0.0696024181296702,0
+0.17923739669535038,0
+0.10931230168389863,0
+0.5938668275140964,0
+0.023828686005276066,0
+0.340527984918617,0
+0.012441286872883537,0
+7.534391456937496e-06,0
+0.005575777489118421,0
+0.002138489893549721,0
+0.02214547121770687,0
+0.030949851709427788,0
+0.00021391539527405675,0
+0.05611775444968997,0
+0.0030728311642065965,0
+0.03950751052175312,0
+0.04104089804042301,0
+0.29729098903880724,0
+0.03414565390113996,0
+
+0.014064502986502428,0
+0.11040136540054513,0
+0.05229362687116137,0
+0.062390966900505065,0
+0.22086771539030625,0
+2.88192162278178e-05,0
+0.05418002166419885,0
+0.2475238771737925,0
+0.07351780949717909,0
+0.15138219930001026,0
+0.017347911887306965,0
+0.10899322833505276,0
+0.09766958243829553,0
+0.02091092201246437,0
+0.010703388886350725,0
+0.022473696943344283,0
+0.0006620131896428937,0
+0.18856052930451533,0
+0.019979961669553053,0
+0.2754792064021714,0
+0.0008622529493237715,0
+0.03140288166417045,0
+0.01724440369076455,0
+0.002015207588792973,0
+0.044001173965308435,0
+0.003957749333162647,0
+0.31675447534436074,0
+0.06452829596762516,0
+0.017767992110065554,0
+0.20823257105887216,0
+0.2818149253465907,0
+0.08046542174256177,0
+0.1172695065284658,0
+0.030886719550643517,0
+0.0347850868901643,0
+0.023842613335561345,0
+0.18190666568656436,0
+0.051182975421509666,0
+0.20474966480105938,0
+0.07104972364219649,0
+0.3279367929024945,0
+0.09432428659503773,0
+0.04552421830120891,0
+0.10920288091548905,0
+0.28585163365436056,0
+0.0020986543568347815,0
+0.168992170483178,0
+0.002393309977353033,0
+0.013910280773962284,0
+0.01893467477011103,0
+0.08493601613130661,0
+0.10112511169127174,0
+0.1012144592854918,0
+0.6591615626535019,0
+0.1036506413976116,0
+0.014089137406148786,0
+0.06653344536002977,0
+0.07580098346167756,0
+0.007221208151513879,0
+0.03321079068853598,0
+0.10108199741396776,0
+0.0760238530296536,0
+0.011134975113388275,0
+0.006743073232563739,0
+0.004774743822087578,0
+0.6786462219955929,0
+0.08066043437541394,0
+0.01101705316829758,0
+0.15871313227554903,0
+0.040446250867732826,0
+0.002490444936890951,0
+0.010463724723831554,0
+0.08317184328900905,0
+0.14667886536957958,0
+0.01579264730607683,0
+0.03312546234897519,0
+0.08996338032964071,0
+0.010273655106953671,0
+0.01498889523920871,0
+0.0006983431572555936,0
+3.3074109679740527e-06,0
+0.02414962319878745,0
+0.07212286479690681,0
+0.07011783280410429,0
+0.46999931031044345,0
+0.2202233178719933,0
+0.02024092998290153,0
+0.0031802941813893837,0
+0.17663227282535549,0
+0.010097626374079013,0
+0.26938661484490545,0
+0.04825415156220939,0
+0.010208304780467723,0
+0.02571018567103826,0
+0.015951029486390718,0
+0.35855667020030085,0
+0.4249439781203453,0
+0.05982347529574723,0
+0.07506284020334136,0
+0.11230129873787428,0
+0.009050128547204377,0
+0.18960767681268037,0
+0.0027437738308289513,0
+
+0.01564767854411456,0
+0.024433873610485022,0
+0.015787648448917446,0
+0.015142478938027896,0
+0.05104629419687284,0
+0.316774611517599,0
+0.008269515689546314,0
+0.0005988050275353104,0
+0.010844213981838423,0
+0.0010284240260998098,0
+0.006831330509792286,0
+0.098060410482506,0
+0.019791696159396226,0
+0.1825072669513844,0
+0.017099829135785984,0
+0.006571439170308911,0
+0.0032865448522793107,0
+0.05069115989761902,0
+0.015113573387447104,0
+0.14968425980096953,0
+0.015722817155791914,0
+0.02758343692937859,0
+0.03457098496856595,0
+0.0669112076330034,0
+0.016803562764368517,0
+0.006705763427968914,0
+0.004846757772312771,0
+0.15302885469129132,0
+0.5130412165653258,0
+0.007719614569896366,0
+0.02825383545544402,0
+0.0021332499680201357,0
+0.17006583047083496,0
+0.2656396219808784,0
+0.06883153802754527,0
+0.5175481845858199,0
+0.29025900041456365,0
+0.027042493687244186,0
+0.01432680428490537,0
+0.02414348153309757,0
+0.23090332723172596,0
+0.04649827545305151,0
+0.2268119222879667,0
+0.18283874078667564,0
+0.0508107818433244,0
+0.5516039413933663,0
+0.025477353456034364,0
+0.007917452554861256,0
+0.35212631584103804,0
+0.1709478211991009,0
+0.00814644582078106,0
+0.000608659116253495,0
+0.020107122616993788,0
+0.09610674270595738,0
+0.04221102037091434,0
+0.04552680587454995,0
+0.016384419002278737,0
+0.3528524124449596,0
+0.5348648512697259,0
+0.07113328955383888,0
+0.01646356675823565,0
+0.005692852803558492,0
+0.26277917924104444,0
+0.09344818331807345,0
+0.00407182918709995,0
+0.01940815348325812,0
+0.1292560177394298,0
+0.6235187727945243,0
+0.041055471392413896,0
+0.030616758048249593,0
+0.012518599588647164,0
+0.00599518786897971,0
+0.002085487373340258,0
+0.02060031891342336,0
+0.014719124705114342,0
+0.057030461973611044,0
+0.14511701615896735,0
+0.07523981036617866,0
+0.03921569581914243,0
+0.01726402874992576,0
+0.0031051062466646868,0
+0.005685030715533069,0
+0.09607481399870592,0
+0.1201166342360868,0
+0.044947546064793675,0
+0.046580983135390414,0
+4.6252452358808943e-05,0
+0.0007752794096353825,0
+0.004825533597231873,0
+0.026267445821850692,0
+0.37012025272186455,0
+0.00025647178951565384,0
+0.005084301925492781,0
+0.13111282355644055,0
+0.11210619180907562,0
+0.09108107433453377,0
+0.19789112227937292,0
+0.6207897597690156,0
+0.003517527499349444,0
+0.00039158792399049993,0
+0.08016758395246591,0
+0.38376678997165414,0
+0.05586551490398165,0
+0.39765355279125003,0
+0.0016454267273503,0
+0.14247778713331094,0
+0.009546003277545508,0
+0.19196030161579575,0
+4.030798387911359e-05,0
+0.0031852363513161196,0
+0.005363808800243552,0
+0.03310264987346386,0
+0.043943893384818314,0
+0.012716543915542671,0
+0.08142106754844346,0
+0.31454205674219354,0
+0.14123599908943804,0
+0.2666099519908108,0
+0.05002500462692936,0
+0.050523286753620486,0
+0.5918336778397544,0
+0.0018566071359391687,0
+0.8971672790872424,0
+0.010558543009326729,0
+0.00011945931916869837,0
+0.001977173032163924,0
+0.01185308592657989,0
+0.038889336376471725,0
+0.03210239781468218,0
+0.00109340236781348,0
+0.026344047583411412,0
+0.1715274665730969,0
+0.08149070571017206,0
+0.11446781125176413,0
+0.0013431616631653946,0
+0.11768355540449923,0
+0.02684566156869453,0
+0.34903580080600977,0
+0.0019806983714609656,0
+0.005024366894315605,0
+0.007125028615009207,0
+0.12843748286137624,0
+0.009381452276704887,0
+0.010044642013669388,0
+0.004786486342791084,0
+0.16017228169357978,0
+0.15647480024346894,0
+0.01437326862149807,0
+0.02084005209708118,0
+0.24484996748381835,0
+0.04692369333030415,0
+0.017936396583829096,0
+0.17614634644143257,0
+0.1526080198192405,0
+0.00044613466871371385,0
+0.04645899190080396,0
+0.08528770719228931,0
+0.0059928511647346005,0
+0.9482923068686594,0
+0.0007204114025173676,0
+0.0877767429813182,0
+0.007825878842502076,0
+0.08490522768361428,0
+0.024734654365577535,0
+0.18506610193649264,0
+0.00095052024469379,0
+0.03037307810924878,0
+0.0017586270902977207,0
+0.05692676267468305,0
+0.003998854584374356,0
+0.5150862996119532,0
+0.22312441543412098,0
+0.29307009163223174,0
+0.15487023897942875,0
+0.07531045478323739,0
+0.1382215464441147,0
+0.1584817154663612,0
+0.6634728958593529,0
+0.025433481358374838,0
+0.006542212109324204,0
+0.0002731515859542749,0
+0.0027943771346009712,0
+0.07332786206467187,0
+0.004687013062333995,0
+0.07374329712121944,0
+0.0255794086735562,0
+0.0015150161849969584,0
+0.031106047099220536,0
+0.10767962442445175,0
+0.12179379647483131,0
+0.01065763740093909,0
+0.13562131657483317,0
+0.03287485031538832,0
+0.1765514853957279,0
+0.23368446650605007,0
+0.1222392891985161,0
+0.22651264212377492,0
+0.22933770630348285,0
+0.1749831919187,0
+0.08865723253146025,0
+0.022900434301294497,0
+0.22007348179102776,0
+0.038693491445756775,0
+0.02406821995199389,0
+0.8151555606837322,0
+0.08059665955883757,0
+0.0004143063945558833,0
+0.12601179983562794,0
+0.12779592032047438,0
+0.0003214236441897463,0
+0.00628359961018316,0
+0.012276242519699098,0
+0.16449406112915071,0
+0.005320428872978877,0
+0.14304335533358142,0
+0.024227571959837185,0
+0.07591790101761185,0
+0.004632201562060645,0
+0.0944952284342842,0
+0.0024474451915897657,0
+0.013608729631767407,0
+0.001903436443923091,0
+0.12039427741484647,0
+0.07113339293363927,0
+0.09103139319667022,0
+0.056098157391955714,0
+1.3789439507202301e-05,0
+0.11526372583616817,0
+0.03095372655942848,0
+0.026205700559475242,0
+0.40828693889375467,0
+0.0013640182131284724,0
+1.0443468463170686e-06,0
+0.037851073501061504,0
+0.013719834115710858,0
+0.011646521046381768,0
+0.04031445712510666,0
+0.3921124366600331,0
+0.01502580179015564,0
+0.009089345887819346,0
+0.1381856884949679,0
+0.1447634311092401,0
+0.0014308701557060473,0
+0.00013405463194721327,0
+0.16377706690442875,0
+0.16041456908379112,0
+0.2251182466148466,0
+0.007623688627862575,0
+0.27337920038480606,0
+0.414297374958958,0
+0.041659881758962965,0
+0.00579937567828869,0
+5.946171082636503e-05,0
+0.21522085576288297,0
+0.00015634249760644136,0
+2.539389928932901e-05,0
+0.05324848010054863,0
+0.004815173507456396,0
+0.019892665911820043,0
+0.027661370326520295,0
+0.0035044469069319866,0
+0.20310979463248408,0
+0.21336851401252002,0
+0.1537098370275566,0
+0.03913000521851775,0
+0.05870058851628037,0
+0.2321631601050545,0
+0.5685761733833891,0
+0.0814362896773387,0
+0.032445990627220006,0
+0.004390311904058554,0
+0.0731692941290678,0
+0.031736633237004576,0
+0.2429145423875913,0
+0.06665130258198519,0
+0.15490529308957504,0
+0.08129690338993512,0
+0.3868888257013293,0
+0.012128999695601547,0
+0.10081917858161016,0
+0.07180480780536906,0
+0.11527386216740174,0
+0.0004766660253413624,0
+0.0037275993725094736,0
+0.04819195718220445,0
+0.10700139348905431,0
+0.005555108056626049,0
+0.4596139436907093,0
+0.24227446933872893,0
+0.05128158511769097,0
+0.016012998400218012,0
+0.06125784105870683,0
+0.004766213777759732,0
+0.06009099225706264,0
+0.008515177656738902,0
+0.005814660458377337,0
+0.03887802125706203,0
+0.237017984063585,0
+0.002332309811171135,0
+0.009329319654560677,0
+0.23906518698618323,0
+0.000883326672428694,0
+0.20273537424686644,0
+0.13020522956390027,0
+0.10507626421745397,0
+0.036196144224852025,0
+0.12642650722951884,0
+0.0004002181522751382,0
+0.003779715584112583,0
+0.2995976366240434,0
+0.05843193871895114,0
+0.06680862562941202,0
+0.05375656782158748,0
+0.0011463428389118764,0
+0.1014231398545091,0
+0.008067483717662707,0
+0.03940110392306505,0
+0.060007472526673176,0
+0.05387388341396594,0
+0.022479100403450022,0
+0.016388408322245647,0
+0.11195795276977838,0
+0.052249458521956706,0
+0.034225535552367015,0
+0.00492605550195554,0
+0.005104499266835464,0
+0.0045644640222989846,0
+0.04019975606236814,0
+0.003011201369445365,0
+0.16714386267275844,0
+0.03902438035959838,0
+0.11541053689942768,0
+0.03692869245712065,0
+0.0152462780146622,0
+0.3420433923057923,0
+0.013161970544776191,0
+0.09926852235799893,0
+0.045136680461318926,0
+0.07818145375906899,0
+0.0004639288948238769,0
+0.02387260102190033,0
+0.11397921418921046,0
+0.126276955481649,0
+0.037910159033284,0
+0.35642429494491235,0
+0.001665792214657441,0
+0.04772087129164706,0
+0.13474326421588545,0
+0.2188495694072774,0
+0.03884234560728284,0
+0.004340292954118001,0
+0.0145481741364504,0
+0.12961732620231853,0
+0.046121879394447535,0
+0.09976193626837135,0
+0.031017711812451648,0
+0.029113967475972884,0
+0.04295682222745226,0
+0.5289832236048244,0
+0.008859609738389656,0
+0.1048819842545132,0
+0.17886903452815783,0
+0.04007960435689907,0
+0.05996481288692672,0
+0.05898185965413897,0
+0.08824186492681865,0
+0.07476883175147098,0
+0.29641388821202375,0
+0.031257769707027976,0
+0.09333317943439941,0
+0.007310353686365473,0
+0.034846450201735435,0
+0.05138332326416654,0
+0.024377541852131746,0
+0.0020815499289429163,0
+0.05885393749935121,0
+0.07056624248808917,0
+0.0018950953734678793,0
+0.17091264341325507,0
+0.03225588999191379,0
+0.01332502436598719,0
+0.0724920592361578,0
+0.22334624974531808,0
+0.008500982384366309,0
+0.04693943936949119,0
+0.01951093038575299,0
+0.0004472678285016789,0
+0.05349524790371359,0
+0.17990774238484686,0
+0.21001721156503367,0
+0.16709962022423452,0
+0.0003588912083095281,0
+0.00131165689705109,0
+0.03177605383911525,0
+0.01390218648439509,0
+0.0014207713940143879,0
+0.17036868425758528,0
+0.005130579243546794,0
+4.464028161887616e-05,0
+0.17663768299023913,0
+0.0007140600793229465,0
+0.07942159592217105,0
+0.0123248051460263,0
+0.004987769453869117,0
+0.012993701974767482,0
+0.01600054410769796,0
+0.00207658040160114,0
+0.006478218498564989,0
+0.20376830962134548,0
+0.1899354525506097,0
+0.09227881001611256,0
+0.1404668539310097,0
+0.189814715452794,0
+0.05675864398856244,0
+0.007525680796246115,0
+0.0027620403873253553,0
+0.33955137068427077,0
+0.5103770329440401,0
+0.06132188442443961,0
+0.03729324438523827,0
+0.5457306232006023,0
+0.1770148265196803,0
+0.0022046026041433213,0
+0.29335052547751855,0
+4.388559337082234e-05,0
+0.001114685770441999,0
+0.11314263385053562,0
+0.04382025316943214,0
+0.002860277891606094,0
+0.004338006003144984,0
+0.06781133833045244,0
+0.25514488457033707,0
+0.1435937745589459,0
+0.29407755908152633,0
+0.1568025069083714,0
+0.05715477739899185,0
+0.08568318113434081,0
+0.008177292719706443,0
+0.0006867123520484125,0
+0.1364748618941059,0
+0.0034024449002231145,0
+0.0004157155009778736,0
+0.0665835035034744,0
+0.02764030059260459,0
+0.20357677921740022,0
+0.004636162743274845,0
+0.31972522987045643,0
+0.37000736341348006,0
+0.0001679241712820323,0
+0.004989915705766749,0
+0.031002667005951095,0
+0.09157739558347347,0
+0.13285253388610557,0
+0.11144599262939407,0
+0.12168257989697544,0
+0.056879418394628754,0
+3.500248968409527e-05,0
+0.003718074109697535,0
+0.27993755381037283,0
+0.2407544418397845,0
+0.014461091904457402,0
+0.5256614897344558,0
+0.5923037406099029,0
+0.3536099467110473,0
+0.0879007320737363,0
+0.7116259909848366,0
+0.1724827335678625,0
+0.02080272215942978,0
+0.00485761944240021,0
+0.00012718099955976592,0
+0.008056895167398666,0
+0.006929720893649305,0
+0.00435142355204231,0
+0.5071105514909247,0
+0.016856964012321934,0
+0.1007156025084347,0
+0.04987331312354912,0
+0.18947193197878373,0
+0.08289039401264259,0
+0.4560846940198641,0
+0.2480937718259955,0
+0.17537545312236386,0
+0.4410223444955922,0
+0.1823355086877683,0
+0.08008785821629139,0
+0.2587916355816605,0
+0.022434559839754738,0
+0.4087891021100972,0
+0.0725095088406371,0
+0.08772585346253042,0
+0.01986518195833046,0
+0.06130201412736701,0
+0.012355150128996056,0
+0.017762097377354926,0
+0.13735583582261146,0
+0.6263650215562772,0
+0.09494899648638948,0
+0.005034535521392105,0
+0.010954731366696875,0
+0.010329863005172125,0
+0.15454877473932485,0
+0.15613410744537123,0
+0.0057681492302960585,0
+0.36385572810417993,0
+0.16522492326265295,0
+0.03979601256239898,0
+0.0074924448853465305,0
+2.548004405835317e-05,0
+0.17107535235114382,0
+0.03128507377221322,0
+0.039766158690874895,0
+9.47182020862883e-06,0
+0.2559705735464815,0
+0.007466249285521383,0
+0.00037224027215891,0
+0.0037007917115801986,0
+0.27091015060998236,0
+0.015857436274158063,0
+0.17162462206169124,0
+0.04771880743986846,0
+0.0005935428395524922,0
+0.005944177729580036,0
+0.11721806322493755,0
+0.05749896248912625,0
+0.0043702995400983395,0
+0.12509803981787254,0
+0.29562731846637924,0
+0.005139128356127337,0
+0.010749451982383184,0
+0.073769010472987,0
+0.00010645144408681329,0
+0.020122876841235367,0
+0.028687905561352495,0
+0.22860836913334132,0
+0.0374324352560929,0
+0.1717625245752871,0
+0.052333395899437016,0
+0.0011345390371880909,0
+0.07195170484749222,0
+0.02915535726746051,0
+0.01885030454112931,0
+0.057835301557950095,0
+0.029828663259183895,0
+0.008702046546000522,0
+0.08710366949759327,0
+0.006896438751241164,0
+0.18673524062064625,0
+0.004664572916325658,0
+0.35153219191880025,0
+0.009995511152049535,0
+0.033183938254554436,0
+0.002775082573647111,0
+0.05251948470371679,0
+0.4278324811889531,0
+0.1239628789059863,0
+0.05397371818841229,0
+0.0008741181583204379,0
+0.0028973572284994027,0
+0.15842653644277685,0
+0.16988654243953316,0
+0.06857636294112851,0
+0.1806388511850587,0
+0.23989630957473743,0
+0.04043407156318363,0
+0.017860724221788665,0
+0.0022742919487687705,0
+0.26202922536934664,0
+0.14555035461972332,0
+0.061176365210318794,0
+0.0042187268794714634,0
+0.26790547712205176,0
+0.00821281618342421,0
+0.04883756219155889,0
+0.02611546456476082,0
+0.0010452795096716353,0
+0.010104701332172337,0
+0.2807886854788723,0
+0.40137125731998946,0
+0.016855700975119722,0
+0.032913528099519675,0
+0.027025427988361144,0
+0.18822363549534493,0
+0.1758617827971443,0
+0.0397077471452582,0
+0.006826743276902021,0
+0.20249629813579278,0
+0.014690766985236154,0
+0.006985718117096348,0
+0.05174472428318163,0
+0.0009496315049906508,0
+0.001841403547473677,0
+0.0018653129772921346,0
+0.057214689209318534,0
+0.016168692115952676,0
+0.004989949097941464,0
+0.16013928688448728,0
+0.0005320867642531026,0
+0.054107584974468825,0
+0.04413818090953805,0
+0.00792391678934239,0
+0.2006327917619965,0
+0.0015007373379751713,0
+0.05422231334818486,0
+0.447920358980065,0
+0.0004946111521041971,0
+0.2053611052090035,0
+0.004839629577069122,0
+0.062078240037352427,0
+0.0185033240654696,0
+0.13288935593174506,0
+0.12379076388671803,0
+0.0063566300759601525,0
+0.29022395052856,0
+0.03130515792307841,0
+0.06882790407238149,0
+0.043857094910704414,0
+0.003232213878234152,0
+0.18663977847096364,0
+0.2166958861964591,0
+0.1828264306746697,0
+0.04009940115102597,0
+0.1039679510383047,0
+0.1615853109329881,0
+0.1329818349268877,0
+0.015694194229098315,0
+0.05021936772625659,0
+0.19171276100289572,0
+0.22881139380874882,0
+0.32387380338231286,0
+0.0011482315477278674,0
+0.10577281079427356,0
+0.0003815206058918615,0
+0.0032928932569851557,0
+0.4403160109688473,0
+0.17708447549574732,0
+0.010739910483799436,0
+0.7553766920699794,0
+0.07619854009341269,0
+0.18528665832176455,0
+0.1904925405516679,0
+0.11946532004084068,0
+0.004735739812059029,0
+0.039608131621638926,0
+0.05865002934732065,0
+0.07318717367927194,0
+0.04561746110092969,0
+0.0499316350664413,0
+0.1538772938575389,0
+0.04861299633686193,0
+0.17357259378641682,0
+0.0001329771245606536,0
+0.007044119414572857,0
+0.017979437318148807,0
+0.19294331893074232,0
+0.5343445493893878,0
+0.0017165703690999149,0
+0.22173476852295013,0
+0.016753464938687575,0
+0.09431454127713705,0
+0.04859550698901314,0
+0.03215163907521949,0
+0.5647642952668048,0
+0.024809481756522245,0
+0.21714136989593671,0
+0.147885403492013,0
+0.0023021738031162716,0
+0.007393905143152027,0
+0.1883622578812741,0
+0.11038446855843256,0
+0.0001653059079007623,0
+0.2991196175800931,0
+0.06854403237278756,0
+0.0016432802057559134,0
+0.0013423645156085515,0
+0.0027338138972073053,0
+0.008824532752943417,0
+0.006417296063683897,0
+0.0038671655794678635,0
+0.16071075637051277,0
+0.0970508170976481,0
+0.47543544593358017,0
+0.04908360299138887,0
+0.11349325328792534,0
+0.0006106104770330534,0
+0.11881023561081965,0
+0.1904183375039922,0
+0.010565392559428104,0
+0.011609943279821584,0
+0.019197007194628017,0
+0.07359528880367083,0
+0.12172998724299869,0
+0.13891576510117973,0
+8.605909507361539e-05,0
+0.057703492331195906,0
+0.006697918170878336,0
+0.0043295616638403984,0
+0.3761881760176184,0
+0.04714153653500175,0
+0.17723438541428121,0
+0.015174961540235798,0
+0.027340759522873282,0
+0.20166582731003593,0
+0.0025281954360788254,0
+0.01215464631161588,0
+0.012474442797294047,0
+0.01662701877060601,0
+0.002520104746426746,0
+0.000981255459520308,0
+0.004036018570426594,0
+0.14027365683988885,0
+0.16093304778593928,0
+0.03588682321206894,0
+0.04301982500481559,0
+0.23340112212021996,0
+0.10581027239868282,0
+0.013520848407022428,0
+0.05444036157492459,0
+0.04678439757053431,0
+0.0005192930969987253,0
+0.0006940319978506426,0
+0.0569948206214268,0
+5.458465403387695e-05,0
+0.27384075670857355,0
+0.0821544504861022,0
+0.0015498322536338326,0
+0.0003886125651698581,0
+0.02665490008256196,0
+0.1843558794191064,0
+0.17017840873176854,0
+8.266418526219459e-09,0
+0.12429633453081064,0
+0.15857316131622357,0
+0.04234813004646368,0
+0.0498480797191498,0
+0.015872760202228962,0
+0.051095731220464,0
+0.11413203593238319,0
+0.3346599880186153,0
+0.21693102789284033,0
+0.16999814553930792,0
+0.009422045264564406,0
+0.12821115265721297,0
+0.018349467794934883,0
+0.00014726108651060918,0
+0.0011586665776680547,0
+0.042944703334811735,0
+7.965071227590223e-06,0
+0.00012467176700872972,0
+0.04043459602868796,0
+0.017944609574455612,0
+0.001476161671973119,0
+0.7506987300534312,0
+0.157464066864062,0
+0.09517658350244926,0
+0.31119073417583654,0
+0.005168186881393113,0
+0.12123643105471767,0
+0.008251401127164994,0
+0.0014275502479978398,0
+0.001922750630216987,0
+0.07069580528384031,0
+0.004091124961891949,0
+0.16537181251250793,0
+0.2753180108687642,0
+0.0040117199465595325,0
+0.09933868650423511,0
+0.06402826659840305,0
+0.001967758594244875,0
+0.01731995277680436,0
+0.009767304469084689,0
+0.015391116399112646,0
+0.11770593527343046,0
+0.008438841403961037,0
+0.2742216472404305,0
+0.0063860881209395716,0
+0.007893591978596026,0
+0.000355498729321182,0
+0.17887057532856557,0
+0.06584921619273643,0
+0.02184574822965122,0
+0.1765405696848739,0
+0.5584629299230526,0
+0.0002814083056887893,0
+0.026994245302714798,0
+0.1395453717141092,0
+0.08102691953647158,0
+0.16824018743330463,0
+0.0852313248272776,0
+0.06802233935071862,0
+4.134274431047126e-05,0
+0.10598624722188263,0
+0.008896049000072643,0
+0.003777398879166509,0
+0.02123376333709364,0
+0.00596631419226699,0
+0.00011846075741687874,0
+0.05702292629729627,0
+0.08004748867369112,0
+0.14434754790048304,0
+0.19300233681773554,0
+0.0004432787755209061,0
+0.05825154447767119,0
+0.00042536632543225877,0
+0.009995616630343363,0
+0.0092728762271175,0
+0.020508761617152003,0
+0.06049561920130535,0
+0.13283896549783486,0
+0.07079246585676204,0
+0.12095917348720961,0
+0.007496601915383952,0
+0.038455813506184745,0
+0.6465654854110356,0
+0.01480620591181766,0
+0.012440006464393399,0
+0.12081284342100647,0
+0.365792571064835,0
+0.017378141955820804,0
+0.07173484034137212,0
+0.023350229371384666,0
+0.20811051165546207,0
+0.07391090166481451,0
+0.23939505976030576,0
+0.036521861240103176,0
+0.08133224045655173,0
+0.010523644565868144,0
+0.07212107551131083,0
+0.0358202217958566,0
+0.007647089720323179,0
+0.12495005331775719,0
+0.19169936996790102,0
+0.08999892118324351,0
+0.006277505376715517,0
+0.11222501401114056,0
+0.0030508948736722797,0
+0.19448770767977186,0
+0.0945592818790038,0
+0.1575123011812163,0
+0.005914690254335717,0
+0.0469855808223447,0
+0.6082614709471328,0
+0.0026864178967434997,0
+7.587158632464176e-06,0
+0.01980806529929417,0
+0.00265899851833363,0
+0.029104650545207833,0
+0.004937195485796056,0
+0.01109977736284838,0
+0.05107420936546668,0
+0.0352397144289827,0
+0.010031111129506274,0
+0.04543946012968621,0
+0.0952032278687894,0
+0.09929417684043959,0
+0.05053712648262678,0
+0.011419028503020368,0
+0.1284966432424144,0
+0.050415430199950914,0
+0.336132920820107,0
+0.0063880847459988664,0
+0.0013774037537275993,0
+0.14946214068068933,0
+0.1662060247829653,0
+0.042631176301923396,0
+0.14115638437837952,0
+0.0005293645145429001,0
+0.010710680501703717,0
+0.007806813377183046,0
+0.0002099564380740189,0
+0.02893743960617412,0
+0.011795597994707642,0
+0.04229696459518821,0
+0.5984673957304223,0
+0.005543726793763746,0
+0.2674308687460861,0
+0.0008714979777792091,0
+0.04053740087809797,0
+0.035402024902402414,0
+0.18284931484805084,0
+0.05463562365376105,0
+0.045392726963661256,0
+0.003867831693632722,0
+0.08001325915735477,0
+0.09262338463428885,0
+0.1077577683374878,0
+0.02731320813825016,0
+0.05607181176619562,0
+0.010733450672197409,0
+0.04713442368079618,0
+0.0008833657375735386,0
+0.041324309353990174,0
+1.1101581574489614e-05,0
+0.4440881598764322,0
+0.05787932829073381,0
+0.0351295111563591,0
+0.11069762608199862,0
+0.10764873812146773,0
+0.006687661100022367,0
+0.4616148110369361,0
+0.019157660071091095,0
+0.42618616188984354,0
+0.08605115293146301,0
+0.10537092928152461,0
+0.0010245293783234521,0
+0.05099366307661783,0
+0.24239309984304214,0
+0.001209493841781989,0
+0.1010097692007346,0
+0.13975438600763904,0
+0.48219697020588714,0
+0.0059679257998722975,0
+0.08429722236022887,0
+0.02050459341155581,0
+0.3404100846847807,0
+0.023567433876708302,0
+0.002477447521048144,0
+0.03388808981124213,0
+0.22126654931414474,0
+0.017821652023366157,0
+1.550333274278625e-06,0
+0.04835580767244216,0
+0.062034608800310365,0
+0.03109754743988381,0
+0.06230794645736021,0
+0.061559521514046533,0
+0.04671236041734228,0
+0.17816167194499027,0
+0.0282208310583503,0
+0.03358008143560107,0
+0.2098841389786669,0
+0.23388241715718175,0
+0.007781407779488396,0
+1.6921394235288518e-05,0
+0.06444709204079505,0
+0.006526658009045829,0
+0.053608536418994435,0
+0.08252419076619814,0
+0.35322873244454106,0
+0.008435676860057629,0
+0.0004638868180931518,0
+0.1214396482543177,0
+0.03642408044190664,0
+0.04637815723510814,0
+0.18155204429042565,0
+0.14246324402484883,0
+0.0018255734968082194,0
+0.035489341326956636,0
+0.023756376367195634,0
+0.06658149329176474,0
+0.10583154337125504,0
+0.08584028555499036,0
+0.026201227553275436,0
+0.06627340497683308,0
+0.0022077082601666296,0
+8.269705562539624e-05,0
+0.08056646907151933,0
+0.03040177115009355,0
+0.013807874358756808,0
+0.014732691422210837,0
+0.025795592772549603,0
+0.01989551066198469,0
+0.07434127202872234,0
+4.9669373418659975e-05,0
+0.06464447804913084,0
+0.05635726064422926,0
+0.01743273400373607,0
+0.03951404668015279,0
+0.42016047960970404,0
+0.05770802202169378,0
+0.12338195931895748,0
+0.01307556004428263,0
+0.27157058437356557,0
+0.5949738168909451,0
+0.0045410712338160185,0
+0.10280993777525546,0
+0.007526595073322316,0
+0.01284770766398779,0
+0.19059738761694822,0
+0.004226936318268504,0
+0.004396478620361231,0
+0.009783731169717364,0
+0.021938590676380546,0
+0.11274681461579039,0
+0.16920881361137868,0
+0.1586789677390507,0
+0.003100626008199739,0
+0.31260075219534955,0
+0.003743699849788235,0
+0.27729535815676937,0
+0.0021534663587580672,0
+0.1451257210359466,0
+0.18884171062727914,0
+0.024758908410907183,0
+0.01516670079209304,0
+0.15084682934182775,0
+0.02411218781188903,0
+0.07930246400788145,0
+0.12923623250917343,0
+0.08101618289228882,0
+0.17690771719183962,0
+0.008804552544588028,0
+0.010069284636883337,0
+0.007102615542348619,0
+0.29493286187404866,0
+0.32838580874168133,0
+0.02108457154209408,0
+0.0009720610907905597,0
+9.211806337840421e-05,0
+0.1646604015978042,0
+0.006315677803804702,0
+0.30179988944874203,0
+0.14017899542388396,0
+0.026827679191720882,0
+0.008660866878101865,0
+0.0008251934310196388,0
+0.20886497469869428,0
+0.021732431607741628,0
+0.12468269323519791,0
+0.22512880590507217,0
+0.12542761027250313,0
+0.014943410794593803,0
+0.13306127863604977,0
+0.00721382418498029,0
+0.006764804910381771,0
+0.11232772591760058,0
+0.0397510245911014,0
+0.0015904663139861951,0
+0.37554383052601137,0
+0.0024072804449200287,0
+0.0023555671302998875,0
+0.017331682537791486,0
+0.00726970170210515,0
+0.21129820069827607,0
+0.10803622857025996,0
+0.22621673823297472,0
+0.01701885767008362,0
+0.010284915578924707,0
+0.020345453769216575,0
+0.11186159174214516,0
+0.0036610911836934467,0
+0.1434616342953186,0
+0.00032862537810431417,0
+0.037450121853696186,0
+0.020951725275720926,0
+0.04590031558077215,0
+0.0002248343255731896,0
+0.07731463763849035,0
+0.23715632519273858,0
+0.10102881646364525,0
+0.15759895628919174,0
+0.01340061888931782,0
+0.11558093323176373,0
+0.07664477011220834,0
+0.0503630237112342,0
+0.5537596283807855,0
+0.018317770609086268,0
+0.00533823529889948,0
+0.01289893603332486,0
+0.05603195561818218,0
+0.2677296528588414,0
+0.06573276529801049,0
+0.01780504123166159,0
+0.03966106066450287,0
+0.047243187795665546,0
+1.4866060515839823e-05,0
+0.07391302982137607,0
+0.6135243015482814,0
+0.12993144201540538,0
+0.014612655921973122,0
+0.6972567433779596,0
+0.04467680433573949,0
+0.26260932997855385,0
+0.030193427286233098,0
+0.05704360590292997,0
+0.32399540528968185,0
+0.0374662513061446,0
+0.0020542661074306715,0
+0.18604507055979616,0
+0.001075176007560593,0
+0.00863456390901724,0
+0.09163791462287228,0
+0.005060001586169883,0
+0.030755547875571297,0
+0.27445112775094826,0
+0.5516697884005709,0
+0.10944168597836701,0
+0.035989492761964934,0
+0.06403267649865611,0
+0.023755773415965572,0
+0.004338200361968745,0
+0.07348652167018127,0
+0.09033689103383305,0
+0.05799509701809029,0
+0.11580916167327679,0
+0.04862806336305832,0
+0.0025161016689504503,0
+0.0009956490955140783,0
+0.045542963755139394,0
+0.24800569637602812,0
+0.1611718472226888,0
+0.1565917351080809,0
+0.23331962807183793,0
+0.015229991566321483,0
+5.738679256670142e-09,0
+0.17192554338523586,0
+0.08149072968210898,0
+0.0003605105170577931,0
+0.041264259732429184,0
+0.20161258277160227,0
+0.0015534622300000492,0
+0.1305250429496888,0
+
+0.08779847396334096,0
+0.1650554030371922,0
+0.25597875931652936,0
+0.22319860816645326,0
+0.057001248189906394,0
+0.012376722665549102,0
+0.008816294502632868,0
+0.009310959697573607,0
+0.001839819266563437,0
+0.24602990675539188,0
+0.057656361495239415,0
+0.01571709506150367,0
+0.07979183416005017,0
+0.348736289178947,0
+0.4488561665539355,0
+0.27480820044339727,0
+0.014803836515179216,0
+0.2405987929934216,0
+0.2851685100444374,0
+2.3436428693013953e-05,0
+0.003054813908785525,0
+0.0004028106674692008,0
+0.07673304498279851,0
+0.09420409191403753,0
+2.2959015226476372e-05,0
+0.005810889384188634,0
+0.003211533092728323,0
+0.055328327827098636,0
+0.16523940008035864,0
+0.04216834934509669,0
+0.001430232743012148,0
+0.034483428636265696,0
+0.021340390169467614,0
+0.07967393985359959,0
+0.20054908221937628,0
+0.09792603598949662,0
+0.04821297573843835,0
+0.01372601832234451,0
+0.08639927656913529,0
+0.20434927528787178,0
+0.22753598842773756,0
+0.06391416218851353,0
+4.0867542790566976e-05,0
+0.0001235220667250739,0
+0.16178442305881113,0
+0.2934498249304568,0
+0.006513046465588053,0
+0.00987596967821311,0
+0.01869635877194261,0
+0.01841703383171528,0
+0.1790351131660006,0
+0.006871494025362694,0
+0.10665319598945519,0
+0.07485884375931057,0
+0.31279911237613395,0
+0.25173057366930135,0
+0.022188917730959882,0
+0.08414293274590343,0
+0.34386797076515746,0
+0.1250802764463876,0
+0.0067584678129392044,0
+0.11651141421067043,0
+0.009096749473875258,0
+0.09254311928920253,0
+0.2690846026869352,0
+0.17642185947681216,0
+0.06710158591453141,0
+0.10500245670305482,0
+0.08964072085897774,0
+0.009918096097388415,0
+0.006533541529673613,0
+0.08375267431062479,0
+0.032177111179465964,0
+
+0.008342871664930057,0
+0.01638546927222906,0
+0.008959472087624413,0
+0.06286791979410825,0
+0.029306833219814282,0
+0.11979934191292248,0
+0.05274769718307946,0
+0.3500384543536251,0
+0.2514623599074059,0
+0.0029824797107660624,0
+0.02613357967736804,0
+0.0023608381510955333,0
+0.00036815864228848135,0
+0.009132991036236802,0
+0.22960923589300708,0
+3.038762491002066e-07,0
+0.010907117088301953,0
+0.00023241953344421614,0
+0.001199872317588534,0
+0.23735711987785663,0
+0.4896529761737134,0
+0.07246844994447535,0
+0.003699630435442275,0
+0.027296749008891973,0
+0.20325471976538267,0
+5.8506402720424105e-05,0
+0.46596980995047527,0
+0.1639051068471895,0
+0.06347293992318714,0
+0.021089194177106856,0
+0.1678149288709291,0
+0.04881151446083756,0
+0.054204523224078406,0
+0.011079106534659836,0
+0.23783226150132655,0
+0.025551519314310184,0
+1.865659494868059e-05,0
+0.0007836155001071767,0
+0.07151294582167851,0
+0.01698933781752922,0
+2.1458469949083585e-05,0
+0.016345124175534805,0
+0.04945423468056627,0
+0.0022054476681983063,0
+0.17717124469680248,0
+0.021253912346593247,0
+0.0229002481156358,0
+0.11236330358213056,0
+0.0009291402433031047,0
+0.007282776287744916,0
+0.1128643284743945,0
+0.04932153083589823,0
+0.017789355298610386,0
+0.026057118598887374,0
+0.28781389518974676,0
+0.002564923138911439,0
+0.12097785082776516,0
+0.1992413162474167,0
+0.16776317165699464,0
+0.19971522453801777,0
+0.3730485831586783,0
+0.17237430795429617,0
+0.004226961401674734,0
+0.07411852576337896,0
+0.2721939183637651,0
+0.004815344681672125,0
+0.009499788623167268,0
+0.0252464764189921,0
+0.28933268373494897,0
+0.021624024562671727,0
+0.1609501642969946,0
+0.057258879894175205,0
+0.06389578022549892,0
+0.00013894009090452967,0
+0.24559234330857604,0
+0.042547921506610895,0
+0.04863858167952107,0
+0.06818576232518768,0
+0.06466610830317453,0
+0.13142104389321713,0
+0.7677153703194193,0
+0.14000821561197813,0
+0.0043590924306015025,0
+0.021962816720681136,0
+0.11092817872453475,0
+0.0038487654278431607,0
+0.031649725355387404,0
+0.3198511234129594,0
+0.3539815672111599,0
+0.076797933998444,0
+0.023066830699737664,0
+0.1296607269510141,0
+0.08121043906106126,0
+0.04472389032876198,0
+0.07318805782603213,0
+0.15266381299251336,0
+0.2312572612652347,0
+0.008760371848925676,0
+0.06529743368330138,0
+0.10711222437713352,0
+0.4934737563509298,0
+0.01257482566122422,0
+0.02199392538382378,0
+0.09468350353173026,0
+0.7398158380879397,0
+0.533711880552321,0
+0.006928011663779836,0
+0.015537419804151076,0
+0.0006744189194492072,0
+0.14216938347243713,0
+0.25560603609021404,0
+0.0006445430750799551,0
+0.006985258661222743,0
+0.1814780997046252,0
+0.017233734559440515,0
+0.009237949374640042,0
+4.070998190705427e-06,0
+0.2341130100365289,0
+0.10450140313214948,0
+0.008936446302676903,0
+0.016994459174935785,0
+0.31271671378038696,0
+0.11173212913808131,0
+0.06250854010346973,0
+0.12802991581827788,0
+0.014187396690671686,0
+0.0005125945464124506,0
+0.370674914587925,0
+0.06510454885832376,0
+0.1360873740992184,0
+0.016478136689696842,0
+0.015528398650623127,0
+0.005192940199821092,0
+0.06609774923869413,0
+0.3249792606150214,0
+0.008251094954985407,0
+6.565964078551748e-05,0
+0.23033927045661357,0
+0.027669102247558162,0
+0.11856721621612731,0
+0.11488624538392297,0
+0.061449462528843125,0
+0.027561167997481067,0
+0.6761930562674815,0
+0.021707364216674175,0
+0.05415801138628262,0
+0.0023613777332122275,0
+0.001589363658988347,0
+0.00011306851988330722,0
+0.00020020535419913946,0
+0.03023027511683949,0
+0.3495054235552794,0
+0.0018128540286786968,0
+0.06508757007640129,0
+0.2832907443670936,0
+0.523514604180673,0
+0.2692841768637059,0
+0.3585273685165884,0
+0.006442354506395072,0
+0.045459329059299065,0
+0.03831222441067715,0
+0.13388652504127346,0
+0.017224498816402842,0
+0.013684773170890289,0
+0.07886601935912403,0
+0.04807847653432506,0
+0.002900922130274248,0
+0.057334748539203374,0
+0.002186877083248563,0
+0.0256887320153046,0
+0.2051288148315466,0
+0.03239634753470724,0
+0.1485657881616502,0
+0.07338301859435302,0
+7.525307349720751e-06,0
+0.02331908313355214,0
+0.13128886777735865,0
+0.2064493736506368,0
+0.02028424033205805,0
+0.06481656824448805,0
+0.0053137414756653165,0
+0.03229770160975108,0
+0.006680117096913683,0
+0.0065670324866160725,0
+0.0028995790692061983,0
+0.02013440039468211,0
+0.01216492076251786,0
+0.0023874563809349117,0
+0.2941418153169824,0
+0.028169678047285086,0
+0.06373374056266463,0
+0.0010417129588222974,0
+0.007707111751204647,0
+0.02651726498373867,0
+0.09923635565252394,0
+0.10891188977555635,0
+0.0039632810534590505,0
+0.043226769095484105,0
+0.04109378323358171,0
+0.06761260928979289,0
+0.010617425595216676,0
+0.20878043074517588,0
+0.067941556932188,0
+0.035660512595198764,0
+0.5267442928919037,0
+0.30960274957405615,0
+0.027890480661420504,0
+0.005762849289930607,0
+0.14299072905312135,0
+0.05447861408741957,0
+0.30938832539744326,0
+0.17327725321628867,0
+0.048880259519959356,0
+0.16989433175186644,0
+0.0061163406328351416,0
+0.01801545944231888,0
+0.00030136316315157116,0
+0.04132326599225932,0
+0.010463555077439738,0
+0.18844460083473502,0
+0.0016980944461191059,0
+0.003254505969733059,0
+0.11594256105453249,0
+0.054798206383324645,0
+0.015190411008554592,0
+0.09202947042551038,0
+0.002145753982645544,0
+0.0044625379527018704,0
+0.0035424466191058567,0
+0.032965927223733676,0
+0.21485513328772815,0
+0.09151925573079486,0
+0.04874270038813077,0
+0.3140676242950143,0
+0.10037088782552187,0
+0.4579383416923954,0
+0.3418171123757191,0
+0.18467929984582476,0
+0.5478709957162279,0
+0.0005004543554508351,0
+0.0265598680148215,0
+0.1355183435384325,0
+0.5723060675007681,0
+0.0378771338124515,0
+0.003993500136453318,0
+0.0002811480097991658,0
+0.27489391291154497,0
+0.03649339236350001,0
+0.012850161227098195,0
+0.0828834780016247,0
+0.10760718936427241,0
+0.058126115738553454,0
+0.2174861408707159,0
+0.03138445348008748,0
+0.009905874503956259,0
+0.40585417312258193,0
+0.07936142200386191,0
+0.00025481344720614636,0
+0.011509143383937085,0
+0.0025473132613993135,0
+0.09321402616097949,0
+0.07237077579997218,0
+0.005524547216247942,0
+0.18665056040499473,0
+0.004161328473555847,0
+9.539806404026675e-05,0
+0.18988021650237163,0
+0.009552296244430198,0
+0.02232588620978873,0
+0.041569596349916624,0
+0.022228940203218583,0
+0.30487356024767054,0
+0.41561259397009,0
+0.01568431579811367,0
+0.0033983766517749294,0
+0.0826758749225846,0
+0.16781332933450144,0
+0.10044113219034048,0
+0.022030675335272157,0
+0.00032002348786189315,0
+0.4935077983535119,0
+0.6002764207119778,0
+0.05948335382830343,0
+0.08101998795534064,0
+0.20343816033352713,0
+0.10653933018965708,0
+0.01523577880703352,0
+0.0067885341442876805,0
+0.013322435394172213,0
+9.983815412972796e-05,0
+0.11911784199445774,0
+0.20134838890523796,0
+0.08695047090755227,0
+0.22658647458801742,0
+0.018391938506569033,0
+0.1758631735895853,0
+0.0941227284766924,0
+0.02731768095307569,0
+0.08329373822389742,0
+0.052502588596488806,0
+0.376322954887557,0
+0.013932971937047196,0
+0.013521793509362365,0
+0.0011086113472580958,0
+0.065064873868887,0
+0.18352076268976608,0
+0.021290512139184044,0
+5.134666947454008e-06,0
+0.06926910350760299,0
+0.15262890664120574,0
+0.13683630010974618,0
+0.04694809966374752,0
+3.2655384101850916e-05,0
+0.22120076730530241,0
+0.02724079982920234,0
+0.34230071586960575,0
+0.000806314658100222,0
+0.4794984149517124,0
+0.11807164046763426,0
+0.07332630520087395,0
+0.010810549863359543,0
+0.14463246304617908,0
+0.04491424986432866,0
+0.003852852679406853,0
+0.003893432723346289,0
+0.10028569520210609,0
+0.09224055908101289,0
+0.9865911791996049,0
+0.08502715362770938,0
+0.03782280776440887,0
+0.10643650984416875,0
+0.013691350461876292,0
+0.03218414192858573,0
+0.17702842068793195,0
+0.28881417444852475,0
+0.0211694699959412,0
+0.012836458356618296,0
+0.001069832899206373,0
+0.002967524820937403,0
+0.11851831914580624,0
+0.000845450375153366,0
+0.027723716749567102,0
+0.04826587612466558,0
+0.008848429924595818,0
+0.1261098444189856,0
+0.006017725002927172,0
+0.026857318480377118,0
+0.026637590271363164,0
+0.040078336135189976,0
+0.06489888003767114,0
+0.10241293042392738,0
+0.02680425968640384,0
+0.08453210227484384,0
+0.04052492363319758,0
+0.02294912771896915,0
+0.4401995685777306,0
+0.0002760367007322693,0
+0.05176940912105268,0
+0.09606828378064317,0
+0.00029180397153153554,0
+0.08713256065153788,0
+0.004179759838006544,0
+0.1681706044076815,0
+0.10820556897565228,0
+0.06123379588858856,0
+0.5802300754614423,0
+0.0005581815022869393,0
+0.17146766378753392,0
+0.010115053530842785,0
+0.00011530533907772012,0
+0.0012671220361210691,0
+0.41203181104896147,0
+0.0024041781411187294,0
+0.00716566211028691,0
+0.0010661196451645888,0
+0.05224030016703357,0
+0.002361578734033675,0
+0.0028832912384553545,0
+0.17030290589705518,0
+0.04593499207172649,0
+0.02499761303400618,0
+0.002548456903999549,0
+0.3857539919907732,0
+0.13414073546450508,0
+0.01860540722588737,0
+0.08541776332417832,0
+0.12223517472147746,0
+0.033624111744453344,0
+0.13625142250762018,0
+0.38884069420162815,0
+0.003258125125859674,0
+0.0008334378388246886,0
+0.01681154029786052,0
+0.29469089935942994,0
+
+0.02552124543147344,0
+0.34001081122663895,0
+0.006967703559823254,0
+0.025898258128556555,0
+0.025948561246290542,0
+0.014034490870449345,0
+0.04402228374668877,0
+0.02622943634129577,0
+0.012668991381036799,0
+0.0007498198352810711,0
+0.23611838988767292,0
+0.03402727040554761,0
+0.18441367090510374,0
+1.3545580061056293e-06,0
+0.04885293260700825,0
+0.008501623265938143,0
+0.05790775196955742,0
+0.0024134948599394924,0
+0.2017502714075074,0
+0.05686919102322228,0
+0.04386719804338711,0
+0.033384073225671676,0
+0.018834268625303553,0
+0.008448203517877206,0
+0.009952007355953849,0
+0.08000580379400454,0
+0.028440932342221448,0
+0.00013177916323173564,0
+0.17752307965553676,0
+0.0005940110206564414,0
+0.09120797618196838,0
+0.13928906532021385,0
+0.0035393544197039597,0
+0.0052174700371041905,0
+0.2798545472421433,0
+0.2156773419898305,0
+0.008274443456681454,0
+0.5463979572009021,0
+0.040335739871034074,0
+0.22048409961413515,0
+0.1614924733926089,0
+0.04823063589934096,0
+0.33442667562262607,0
+0.0027856787747144603,0
+0.0686496145509641,0
+0.021115902919151528,0
+0.06778240716273992,0
+0.01623244118170118,0
+0.01207394212211591,0
+0.14815753632052855,0
+0.0983089562568336,0
+0.18497943707050973,0
+0.3562358035073227,0
+0.12609534480478574,0
+0.05493349425982623,0
+0.01108157212294089,0
+0.025112015505923548,0
+0.0064809046141521675,0
+0.04721983291830048,0
+0.026875265680032456,0
+0.0003454380763781075,0
+0.06168113885772049,0
+0.13797478927965207,0
+0.026325999961466794,0
+0.003362657285526096,0
+0.08784104749960849,0
+0.04848748697084943,0
+0.13955922453454897,0
+0.07841732595551068,0
+0.020801896726906268,0
+0.002723881383706051,0
+0.27902878952395865,0
+0.3534631432068648,0
+0.0012376225644105286,0
+0.3182362835718979,0
+0.17139515506777545,0
+0.0019009991725943063,0
+0.06511316965056878,0
+0.08211653223277728,0
+0.01895235583700019,0
+0.017654129286948383,0
+0.009222610367588912,0
+0.0424222691277452,0
+0.018444572701086875,0
+0.06239398479696372,0
+0.001111464741764369,0
+0.010445296487238302,0
+0.16532160932940326,0
+0.015227368861663901,0
+0.07258184899804175,0
+0.0013342816483710948,0
+0.11082730270342286,0
+0.03795413688995897,0
+0.002405724059607077,0
+0.0005983085637294511,0
+0.09168308945556428,0
+0.00039632763573609265,0
+0.13678520882771222,0
+0.12495580326755626,0
+0.06085484884048924,0
+0.00985951878662054,0
+0.0409269336703089,0
+0.23802693818088075,0
+0.3501191200083027,0
+0.1727307058419363,0
+0.042164427291876964,0
+0.5386108999294384,0
+0.020087829345769827,0
+0.1336472341348707,0
+0.22913015467342368,0
+0.4057153552785315,0
+0.07921292206647904,0
+0.013615137818058334,0
+0.8145924158510265,0
+0.031164962710351064,0
+0.3763188582607112,0
+0.009647600217086225,0
+0.0005639203008507973,0
+0.006787822832567047,0
+0.11999915769807316,0
+0.0021157369443683322,0
+0.18681671073750739,0
+0.0003215911475788497,0
+0.15863702878006375,0
+0.07342354133819108,0
+0.10310323853246887,0
+0.02023724968358325,0
+0.02724332719814711,0
+0.1534907702687988,0
+0.0001507466101852452,0
+0.12756511946296792,0
+0.07884601652861135,0
+0.17014453929741433,0
+0.05468271971113765,0
+0.03803650062754136,0
+0.12560630913466003,0
+0.1083615313992519,0
+0.0001231894540740208,0
+0.09675241167537027,0
+0.13563688860818324,0
+0.05564963303241317,0
+0.060390100935210064,0
+0.07342003023181622,0
+0.697443459746417,0
+0.006353842322039768,0
+0.007053060060301067,0
+0.0022787611194563713,0
+0.0008757169938583836,0
+0.3680848761148906,0
+0.12690349603211382,0
+0.2946882207691166,0
+0.03281761018339384,0
+0.0004168633625289796,0
+0.0008831489427591613,0
+0.06915582099057503,0
+0.0009249759048104934,0
+0.0734509781355073,0
+0.03238587694763529,0
+0.0019036305239330197,0
+0.0008389701529961761,0
+0.004305079812335367,0
+0.0017739459028632894,0
+0.012672545201712428,0
+0.0010423791275765229,0
+0.06153232912193205,0
+0.04177823740424378,0
+0.006577577519780192,0
+8.866279585551799e-05,0
+0.023344182079936732,0
+0.3190359831532839,0
+0.34927612184127294,0
+0.16641076963990048,0
+0.00015389000918220855,0
+0.1309484275939541,0
+0.08902392778510854,0
+0.0032692691545011046,0
+8.82750077008524e-05,0
+0.13523330736864325,0
+0.00045752183280355584,0
+0.031179531664509298,0
+0.018982232818301647,0
+0.04027878934720548,0
+0.2170109614350247,0
+0.08350925015385938,0
+0.07212899851283845,0
+0.03182494521128086,0
+0.12342181192017006,0
+0.1216745653637608,0
+0.006217439982021759,0
+0.03976379884742588,0
+0.07957208790041194,0
+0.051046135642675385,0
+0.37093795622996917,0
+0.0028804847079246763,0
+0.0006379078541126848,0
+0.010914258855138397,0
+0.1888490658630046,0
+0.02274995841732804,0
+0.01693647657521046,0
+0.0001364617426627972,0
+0.24020074451915532,0
+0.12592779663185596,0
+0.01439088137741317,0
+0.4644461904612509,0
+0.1887409043100679,0
+0.2880920774828504,0
+5.2243813469234926e-05,0
+0.07008997519973993,0
+0.01562560671600933,0
+0.0039264160446083754,0
+0.04297901737350886,0
+0.01297422548901613,0
+0.021093944264362834,0
+0.00041162862731282157,0
+6.175754928973468e-05,0
+0.018215856341816265,0
+0.5777559654419375,0
+0.0018801973518736918,0
+0.32500367644484934,0
+0.002403753361590541,0
+0.01034113492091404,0
+0.04759656476710643,0
+0.0038876487862063032,0
+0.022857463822644593,0
+0.007058169113596332,0
+0.04763474209773018,0
+0.024442204171037298,0
+0.005645526406369053,0
+0.01067770095322773,0
+0.19759785066821026,0
+0.1969367709599333,0
+0.07765705751640362,0
+0.19576119471719616,0
+0.005626809227179888,0
+0.12723622971754542,0
+0.04440843793506267,0
+0.11756380651153871,0
+0.13400431262218454,0
+0.7436245553125271,0
+0.027948269719043472,0
+0.024734771485109795,0
+0.014503482990450293,0
+0.07753474837463277,0
+0.0063228798547345574,0
+0.02304394720131349,0
+0.08186425348674084,0
+0.05253209100909066,0
+0.0014746312490618925,0
+0.0324222750818221,0
+0.0135809811932701,0
+0.22076899925010612,0
+0.34937626461237764,0
+0.013638811172461861,0
+0.18687210193407508,0
+5.3894855617409246e-06,0
+0.05348730879530729,0
+0.035500679418388734,0
+0.3022976993963338,0
+0.2820573342267249,0
+0.00021237003523945857,0
+0.06326975428591111,0
+0.15365674540657978,0
+0.0026638747118173356,0
+0.04325858581348489,0
+0.1483635562297538,0
+0.00814570267630744,0
+0.3656883514737856,0
+0.014552745010367334,0
+0.3244696940929469,0
+0.00349613370247876,0
+0.0020019886109281927,0
+0.005525080107438735,0
+0.003789622034973112,0
+0.06659021083901302,0
+0.15743028759847483,0
+0.4238182043394647,0
+0.21618963246344963,0
+0.08385647511068582,0
+0.0009722987041233739,0
+0.618450656323786,0
+0.2836068233491416,0
+0.014100058429188312,0
+0.27247999305161524,0
+0.0773401265623228,0
+0.6134817714411198,0
+0.023955358438777396,0
+0.004489240028480095,0
+0.5346501961058074,0
+0.14935708907700043,0
+0.06597355373936421,0
+0.09702818035631373,0
+0.07322449615449095,0
+0.052659471300014915,0
+0.0546048584455037,0
+0.03221071419523851,0
+0.37069330465038436,0
+0.02527090889291663,0
+0.05215081957856328,0
+0.07572548994606189,0
+0.029902165302908363,0
+0.10975943844315614,0
+0.0002284638645303479,0
+0.08107217677296466,0
+0.030771746600672188,0
+0.0038296440479791277,0
+0.04816619795606207,0
+0.0691619863742465,0
+0.0356593521533812,0
+0.029254073502697698,0
+0.010700055934875217,0
+0.00033021705628034003,0
+0.017684161454676713,0
+0.11389884020675396,0
+0.14891519212194065,0
+2.07140695259489e-06,0
+5.889505691704402e-06,0
+0.0017086455787138272,0
+0.18434552188144102,0
+0.009183254745792943,0
+0.13196823502446323,0
+0.0691937731505926,0
+0.9554010757201311,0
+0.556572280804433,0
+0.06884301048274694,0
+0.04867892186089134,0
+0.015178652676959618,0
+0.0038324918868748704,0
+0.0070676318062481095,0
+0.013379863454871405,0
+0.046459928793763906,0
+0.28070025127190046,0
+0.18802562715920124,0
+0.01627028697711177,0
+0.09085572424856735,0
+0.041624356477527935,0
+0.007553853634450204,0
+0.14060939201991834,0
+0.3984380773446263,0
+0.010560008317838418,0
+0.003344103729841493,0
+0.11317652534880758,0
+0.010147982988096507,0
+0.002806164276644729,0
+0.15115960286006597,0
+0.09933565010164763,0
+0.0016220847283951896,0
+0.0009031259497964863,0
+0.08202722018407355,0
+0.04200856862376153,0
+0.09889158909978589,0
+0.06755328655608016,0
+0.051332237316792886,0
+0.2560284775598985,0
+0.07585342024433386,0
+0.10892138953384871,0
+0.07161503063552747,0
+0.002377969620562953,0
+0.027050111637986762,0
+0.004395352958806275,0
+0.03224206100662417,0
+0.2806957819436596,0
+0.04719170284628514,0
+0.20278299897500723,0
+0.00023562849385713982,0
+0.0035082695269890557,0
+0.05125262097145835,0
+0.001966332273525615,0
+0.12758620765115986,0
+0.11581609030301232,0
+0.23273020010405973,0
+0.018434087591103186,0
+0.20181006168304133,0
+0.02555513079510501,0
+0.00012402445572844907,0
+0.1472657717869425,0
+0.23740481806584093,0
+0.0004934122182241791,0
+0.15516565675402863,0
+0.02175936751507209,0
+0.001249071563951714,0
+0.14373191950372122,0
+0.23087733418856377,0
+0.08008021953627818,0
+0.03331677439844838,0
+0.027141862340558136,0
+0.02662660546827157,0
+0.08605210214651955,0
+0.000668597219479973,0
+0.04161004414292447,0
+0.07594118176451962,0
+0.1273061899816198,0
+0.0264252804652371,0
+0.052221992753010496,0
+0.2587543152000346,0
+0.0009239982703513966,0
+0.0700864297373755,0
+0.03560128335317495,0
+0.03355672716399347,0
+0.18107093708499228,0
+0.0005548675815504327,0
+0.06237860399031179,0
+0.20845363563250144,0
+0.20741189277362698,0
+0.02027490272453023,0
+0.06774506461640553,0
+0.017844544637830705,0
+0.005406928155470622,0
+0.18444350731476805,0
+0.06904222220518061,0
+0.005083733520712915,0
+0.01866375644597821,0
+0.05355795612819997,0
+0.09981541427004388,0
+0.0004558336642425096,0
+0.16856340393305302,0
+0.23764998067784301,0
+0.35178254285332183,0
+0.16337246038798087,0
+0.02055417177586421,0
+0.15582409300263034,0
+0.03468792788505639,0
+0.1646232002553008,0
+0.011657959870119626,0
+0.21835677886419758,0
+0.0004744267027512494,0
+0.013091582606927579,0
+0.029599199557761652,0
+0.00141704038677936,0
+0.03511020877190558,0
+0.00441631635440239,0
+0.2148508958319541,0
+0.6516467749875086,0
+0.09155893292529402,0
+0.3117116694798308,0
+0.0004745229697234343,0
+0.031230662319936507,0
+0.012657627598389162,0
+0.177382841475366,0
+0.018930001450457583,0
+0.029647788612815352,0
+0.002753040109740683,0
+0.0827155002666525,0
+0.5597068418629554,0
+0.027542237423403514,0
+0.03254454090854835,0
+0.004778106254923966,0
+0.1523632126950492,0
+0.3667475117087735,0
+0.6373722060503957,0
+0.007509213150240758,0
+0.11968644251200958,0
+0.018419885595743497,0
+0.07068442333004794,0
+0.04948687577157103,0
+0.00883057565545405,0
+0.017257412523549183,0
+3.3230948493321684e-05,0
+0.021560234654294547,0
+0.0006910762783560473,0
+0.48444394055059375,0
+0.11092833742489065,0
+0.17176623057164123,0
+0.04205847875419112,0
+0.016562678597224805,0
+0.18355868195158273,0
+0.04321728297304257,0
+0.08942498702720979,0
+0.11310479005373822,0
+0.40258798368553367,0
+0.18805520398535822,0
+0.026308152861723645,0
+0.2539262627093107,0
+0.011518257263782417,0
+0.044349907950613505,0
+0.07148716689870285,0
+0.044621300207072896,0
+0.29619974695422946,0
+0.004087479837884687,0
+0.05799926070655955,0
+0.07649420114799761,0
+0.0554673486106375,0
+0.04440819727370964,0
+0.01898001711307626,0
+0.10212033195701105,0
+0.1527401982121495,0
+0.11142810822605856,0
+0.0036823382735406236,0
+0.030366412677019387,0
+0.2260825407755916,0
+0.037435659432088285,0
+0.044650331605090646,0
+0.021047485702963525,0
+0.11737756530316705,0
+0.020832300847947058,0
+0.21968013135026476,0
+0.004721989593354877,0
+0.0431709721651619,0
+0.010141274971932457,0
+0.004829278378934526,0
+0.01920977623465071,0
+0.11437960159142446,0
+0.00017202429733457846,0
+0.15262371473700798,0
+0.22023265141143197,0
+0.00017755759126063145,0
+0.08405945846627826,0
+0.04322623172976798,0
+0.016955662009868207,0
+0.0018032538740240533,0
+0.010190866012842428,0
+0.18118803153071528,0
+0.31323867441336906,0
+0.0057363618461369085,0
+0.20846570543065965,0
+0.00029679684200223215,0
+0.020956100377584143,0
+0.23467226110049505,0
+0.10649909261407767,0
+0.001888222867800984,0
+0.017283016591357635,0
+0.010691674179509982,0
+0.04494522671326295,0
+0.21801875942053658,0
+0.0970147378253119,0
+0.055591798959224156,0
+0.06164361877581002,0
+0.05999417324963454,0
+0.043098947885655894,0
+0.10156365913237109,0
+0.00242407999612728,0
+0.06125484654221962,0
+0.3149163732536524,0
+0.3466844153811301,0
+0.006948732052024485,0
+0.1629391823904023,0
+0.063375175862385,0
+0.04046679765909408,0
+0.023254311227023493,0
+0.07857179561531066,0
+0.04121641808115944,0
+0.06502031048804421,0
+0.30117282423054614,0
+0.00018934016317593552,0
+0.006772303066957208,0
+0.2972603397681928,0
+0.03224521077338058,0
+0.05603688668540628,0
+0.005137981594843103,0
+0.25469830393229664,0
+0.2032825138301111,0
+0.03335806487579445,0
+0.40215855662325073,0
+0.030366538879753973,0
+3.222446426324045e-06,0
+0.004563825712466709,0
+0.025815119237198952,0
+0.007215130122903519,0
+0.00015452573968082728,0
+0.12895469262540774,0
+0.5519133710040527,0
+0.0012258610258151766,0
+0.29714460552657246,0
+0.07661543960840636,0
+0.011085326846327775,0
+0.1507853573533725,0
+0.017581303221425308,0
+0.04026026389767898,0
+0.004727932822228801,0
+0.0023027214419111372,0
+0.043470274414068706,0
+0.14866832495904686,0
+0.08938422239663149,0
+0.5701124550785228,0
+0.354259336417381,0
+0.0734339306409306,0
+0.01929468193467892,0
+0.019441975345684353,0
+0.03338106720145842,0
+0.17817770279456235,0
+0.08957565599392409,0
+0.021649322423014983,0
+0.010633852359111233,0
+0.4797374193723356,0
+0.07936078487261453,0
+0.051849494920099694,0
+0.028149657218062445,0
+0.5267451361875801,0
+0.026608814282637012,0
+0.1644566249451971,0
+0.2895244675761098,0
+0.00016771263263708002,0
+0.002994787935603731,0
+0.04600027519198536,0
+0.024278338828026998,0
+0.00011296526132672765,0
+0.007649254295401464,0
+0.12900876304606507,0
+0.060644388172851935,0
+0.05661988366748492,0
+0.006001210022814106,0
+0.007126672843429428,0
+0.009388031219145433,0
+0.0004511955782384639,0
+0.13501549338484825,0
+0.1801709229083911,0
+0.14795935495527562,0
+0.11940442252234366,0
+0.025647857945192497,0
+0.0493440053177288,0
+0.06397860880338502,0
+0.004576380899987635,0
+0.0004015191398046179,0
+0.009023864945261414,0
+0.3176339264356183,0
+0.1301461993387198,0
+0.4202445016474935,0
+0.008985411242276285,0
+0.027849441446597106,0
+0.06155057983206095,0
+0.002384469621629616,0
+0.02376905278910678,0
+0.0691644366407512,0
+0.15169783425448463,0
+0.0006797639031529383,0
+0.06157875897122629,0
+0.005924581653715269,0
+0.04346290682500024,0
+0.14862476461531166,0
+0.00040170313641267575,0
+0.10006878906304348,0
+0.005849110289945251,0
+0.3181065603309165,0
+0.03413236458402336,0
+0.03303649856099605,0
+0.008872850215833925,0
+0.028910582516506612,0
+0.15416869687050766,0
+0.10907744834897556,0
+0.1281434056531205,0
+0.41384201914210694,0
+0.0030171068255100105,0
+0.0005893441057931341,0
+0.02454194638218199,0
+0.026796544080611946,0
+0.12618020262288338,0
+0.009894034339779279,0
+0.007262790513283893,0
+0.02271268150365362,0
+0.30789640539536556,0
+0.021266660915645462,0
+0.07090443074707553,0
+0.006653794956356818,0
+0.14562666413191355,0
+0.1487066703464976,0
+0.0019099627330931516,0
+0.17687743454441004,0
+0.026006591300458674,0
+0.01581144949890716,0
+0.00015002524259024485,0
+0.00035455344782594274,0
+0.41051231056512005,0
+0.0436991221040146,0
+1.321723776601073e-05,0
+0.0008250485160276969,0
+0.01892328952402986,0
+0.2363959120827801,0
+0.00035953091556895534,0
+0.02853643779292157,0
+0.047658345872668664,0
+0.10702403658631139,0
+0.0012749866044493088,0
+0.031754548466138253,0
+0.029363328709270026,0
+0.024414349189957697,0
+0.14247606180811492,0
+0.011615572489067399,0
+0.16201584368113864,0
+0.03773486007387784,0
+0.23683474675106128,0
+0.055478366040125314,0
+0.12189659349775857,0
+0.1643002513327924,0
+0.2253622984979678,0
+0.05620438566057675,0
+0.16431292594294963,0
+0.14766204952746387,0
+0.12402322141969566,0
+0.0021472725385762734,0
+0.020484114377134537,0
+0.07642878725808082,0
+0.14859309629284842,0
+0.11596753038250843,0
+0.016500648178857436,0
+0.2535682586396183,0
+0.2010468147402326,0
+0.11402319598769255,0
+0.038683521628659415,0
+0.3216281016734347,0
+0.03549459234350097,0
+0.0961759053593633,0
+0.012328624477790569,0
+0.3575355390029923,0
+0.03965072554923234,0
+0.038135795653854034,0
+0.12065079216681987,0
+0.3473803157113891,0
+0.18325796535061536,0
+0.2132640211492678,0
+0.0005191841913599967,0
+0.015712630746492914,0
+0.0008512505446319565,0
+0.0036939003611434116,0
+0.3353041789423029,0
+0.00020027902238256676,0
+0.5479686003920092,0
+0.41012711101351806,0
+1.3215384021556187e-05,0
+0.11252096825415199,0
+0.08770430425411038,0
+0.06218381607278618,0
+0.25058680969630637,0
+0.3034101034701821,0
+0.0054257478373538354,0
+0.02343499993099704,0
+0.0010587088326865484,0
+0.2505170285520747,0
+0.005888451258454908,0
+4.479044993925849e-06,0
+0.1008786066320532,0
+0.07983753696582249,0
+0.0012091712319530104,0
+0.00033622714733957243,0
+1.3320922962110539e-05,0
+0.10429796396719473,0
+0.022650689805777235,0
+0.011544646700843616,0
+0.020858277874230724,0
+0.15221633148315716,0
+0.029471121772643206,0
+0.014680396102418614,0
+0.001336066334257654,0
+0.003565694995458317,0
+0.005321573390964411,0
+0.0001863683785563262,0
+0.000675407960013825,0
+0.0948638668726026,0
+0.0005351330357208831,0
+0.3030652809662361,0
+0.08722621181979834,0
+0.07320238555821339,0
+0.06213896565978606,0
+0.002357884570215576,0
+0.013238983201515408,0
+0.011784062135407131,0
+0.19948533327879528,0
+0.06173606804391781,0
+0.323070425122458,0
+0.017752884022527102,0
+0.012314600213476754,0
+0.08345964210634567,0
+0.058366594470794855,0
+0.08351840714477728,0
+0.013542652276194672,0
+0.02355608947280834,0
+0.17895134847060504,0
+0.02900930330208216,0
+0.09924052828739036,0
+0.02190639384212316,0
+0.0194457560245603,0
+0.07403809866459624,0
+0.0010198411407280935,0
+0.1683181456642459,0
+0.02585161817727228,0
+0.06453753299221617,0
+0.04264534774672844,0
+0.0747133641559015,0
+0.012193814905483654,0
+0.032477746087609866,0
+0.06907289230738653,0
+0.34483684592466246,0
+0.00048691822107596757,0
+0.05976743042812547,0
+0.05158359383767265,0
+0.5853154119475941,0
+0.01262669191932786,0
+0.0859545178413498,0
+0.0028978631131768213,0
+0.033357539201039635,0
+
+0.163688358917646,0
+0.0005790379402082061,0
+0.020366098175958303,0
+0.00330083411315382,0
+0.11406082514671527,0
+0.004126227719366682,0
+0.005616046482619818,0
+0.24987056776349129,0
+0.00535385685476791,0
+0.12479163116225245,0
+0.16857317710424263,0
+0.018095426521795282,0
+0.0008718190567481212,0
+0.0034614067565369435,0
+0.06112848467304496,0
+0.021630054851406268,0
+0.03353771508391366,0
+0.07571395774042275,0
+0.00040678694168552076,0
+0.015222984947899417,0
+0.04264352174489434,0
+0.19786551867398702,0
+0.405989634423295,0
+0.040806449859722205,0
+0.3533293155319409,0
+0.14841908603466544,0
+0.0882159352982182,0
+0.018162499081504895,0
+0.327846431278446,0
+0.03445910312042858,0
+0.05453764545049924,0
+0.00010937065961955828,0
+0.8439179029031569,0
+0.0047466895955392925,0
+0.057020140370075724,0
+0.013217650746825784,0
+0.2863164607006481,0
+0.04352712705394439,0
+
+0.18410349306102747,0
+0.0023771907163490386,0
+0.03833777491129739,0
+0.006938144678573589,0
+0.03859489508651603,0
+0.0012505634927093647,0
+0.02945805912009721,0
+0.24238541001399555,0
+0.049032084742016896,0
+0.008621802612150033,0
+0.015273846921092706,0
+0.2386916636091118,0
+0.008238240275453048,0
+0.07161226398585441,0
+0.22993154635774093,0
+0.005959673694362007,0
+0.027041857932777275,0
+0.006802480193326797,0
+0.23548998631260937,0
+0.06430154502570133,0
+0.03868056165650359,0
+0.053992097710058105,0
+0.042216817308141336,0
+0.006263801498462895,0
+0.034305161457733394,0
+0.06818645905071105,0
+0.2704499252470857,0
+0.019231635638269965,0
+0.03973782129727268,0
+0.022354553887920604,0
+0.187963587174676,0
+0.11853838191568537,0
+0.002365150353127592,0
+0.0018571120069220928,0
+0.14931835198246082,0
+0.0024574200624891116,0
+0.002017622089137104,0
+0.05553702730752397,0
+0.12771565258707437,0
+0.02357074096635247,0
+0.03619016416718527,0
+0.011534311495568644,0
+0.08675039422208307,0
+0.08255523268236432,0
+0.001893217435629656,0
+0.053562618999054824,0
+0.09123967897667391,0
+0.00764838626999621,0
+0.20586612145368138,0
+0.07454517406823201,0
+0.4319162595069309,0
+0.1782769750378051,0
+0.010570178800405108,0
+0.45943773817058925,0
+0.0044535265487751635,0
+0.00029462573814706644,0
+0.0002762150644370652,0
+0.00166934168850329,0
+0.023044394500958746,0
+0.05830788830548959,0
+0.07392995020674908,0
+0.009310891792962277,0
+4.866429541768076e-06,0
+0.0463260701575718,0
+0.0009496561023078564,0
+0.033725003551207965,0
+0.0067696433895174015,0
+0.06641603844048385,0
+0.3472786450669306,0
+0.07037801548764057,0
+0.1554959294703832,0
+0.0632434185260424,0
+0.0050748333863672905,0
+0.05782139762552295,0
+0.016873522680117947,0
+0.061708749854371435,0
+0.09683122926622299,0
+0.006711628615140934,0
+0.3621277989653021,0
+0.45908926974242376,0
+0.002222105268665419,0
+0.33853533194044233,0
+0.039178657172403056,0
+0.15561884040275384,0
+0.00036326743385499914,0
+0.18481099868094947,0
+0.01765987584899424,0
+0.0934150462729097,0
+0.23585572828514967,0
+0.02778941907640841,0
+0.01347857515404855,0
+0.33935396368796333,0
+6.0331739926021375e-05,0
+0.029534218633909332,0
+0.14319931089367988,0
+0.2825759468934773,0
+0.03569544336307216,0
+0.019868444279568367,0
+0.06541274418899908,0
+0.012483133246760886,0
+0.026435668127776674,0
+0.0019807464592352672,0
+0.28075822991465305,0
+0.043675630159626555,0
+0.14993485600525147,0
+0.07483444363403621,0
+0.0065372307817613134,0
+0.058146120871695496,0
+0.10049212879313799,0
+4.4639632380073766e-05,0
+0.013240747964666358,0
+0.0003048360491740057,0
+0.18449958653055262,0
+0.011349530471513335,0
+0.19495860520436845,0
+0.0033930570315595663,0
+0.0004693518687674726,0
+0.002622201200267021,0
+0.10178089367296558,0
+0.5327950466405438,0
+9.922730587938362e-06,0
+0.01701077667139539,0
+0.11464440041131559,0
+0.04478337158909536,0
+0.013297422644497741,0
+0.02131262231006529,0
+0.06899109341907303,0
+0.3059996782960966,0
+0.02287659889818232,0
+0.2010683508774031,0
+0.01762171115225084,0
+0.271095899444462,0
+0.035858483451579194,0
+0.10373225150066172,0
+0.001522478506606235,0
+0.0033765435734560085,0
+0.005970954044724997,0
+0.7597631019832748,0
+7.641245727003497e-05,0
+0.00028719221565168506,0
+0.024489874584977905,0
+0.007520685741123749,0
+0.0007893216705033495,0
+0.021158006745487474,0
+0.1471938402789966,0
+0.007380409855145186,0
+0.015128923972060457,0
+0.02559131959302278,0
+0.009418172489671753,0
+0.14940965455949842,0
+0.007249945032489819,0
+0.18419566758109718,0
+0.19035876884459563,0
+0.15272382686859146,0
+0.004825338433915909,0
+0.008613876841677743,0
+0.15945645267120248,0
+0.009730475814562935,0
+0.017596357226426267,0
+0.541892638003963,0
+0.008608607473576797,0
+0.06883458228490492,0
+0.0703469096534373,0
+0.007032173164412138,0
+0.0001895539297913049,0
+0.051516433680805176,0
+0.2663981741762881,0
+0.012332316471385824,0
+0.009115115121861956,0
+0.11527899751046186,0
+0.0334797889250422,0
+0.07726510470040646,0
+0.1299865368081383,0
+0.05339450657689854,0
+1.3683450608506045e-05,0
+0.19314711607687857,0
+0.11273238196461241,0
+1.5418687115994013e-05,0
+0.007160274611806049,0
+0.030743401580909664,0
+0.0076631757491463,0
+0.0123987897670419,0
+0.0011196446839101875,0
+0.0010317069644769964,0
+0.0977628500769428,0
+0.4071205221575728,0
+0.010552655515821699,0
+0.015914482416208554,0
+0.038946531045922536,0
+9.867436066789244e-07,0
+0.0020655698595943494,0
+0.00554219580277082,0
+0.39161230825632043,0
+0.006573226728517334,0
+0.7851871690576099,0
+0.47342146459587847,0
+0.00016353617589405373,0
+0.1118425964015212,0
+0.37816682527010986,0
+0.0005925776750761254,0
+0.014519510430071925,0
+0.3054897625423688,0
+0.4528769686559099,0
+0.08246193291791894,0
+0.14575741531748126,0
+0.00034247280079587874,0
+0.1266110347572184,0
+0.04885512684780981,0
+0.1806834360096636,0
+0.017509184029508563,0
+0.47438039944960375,0
+0.10239970357602161,0
+0.35888747565056567,0
+0.008957191703558274,0
+0.03239970597037355,0
+0.01888860143302925,0
+0.16065061580508425,0
+0.00047598047247239945,0
+0.0002736743297349014,0
+0.06527940363503323,0
+0.00020002069857521002,0
+0.000363668090242509,0
+0.0722121204388288,0
+0.28751912806496416,0
+0.010342953167079675,0
+0.0005383694140309407,0
+0.0006739361318091805,0
+0.09598546530698461,0
+0.0303957199043065,0
+0.047846582871467744,0
+0.00013325103834205452,0
+0.1564997905020693,0
+0.020684449933400913,0
+0.197335670110884,0
+0.0027859580931970246,0
+0.1013451044016855,0
+0.0728892522825402,0
+0.03386212263163939,0
+0.05958129131199304,0
+0.007562708728260465,0
+0.001777528969060758,0
+0.019837201614562042,0
+0.10531990714084731,0
+2.1980796674285064e-05,0
+0.03655681892706307,0
+0.24861529356822626,0
+0.12062717936292396,0
+0.41691479595612496,0
+0.09801311697385183,0
+0.00303933876792484,0
+0.16366464045939805,0
+0.049482709175403,0
+0.10484281555491363,0
+0.0027492790288886253,0
+0.0015382334382904946,0
+0.0083778242215468,0
+0.035855369240865256,0
+0.0011852338850864266,0
+0.0018495877498585825,0
+0.22191813748092049,0
+0.08177536513514064,0
+0.08117020792973309,0
+0.1690257908892424,0
+0.13227547663596279,0
+0.018928482112748037,0
+8.422292408807168e-06,0
+0.20857756704912517,0
+1.0147255905147395e-06,0
+0.20362788969360426,0
+0.025823553007123117,0
+0.06330071027819043,0
+0.01988338329208529,0
+0.01473620948333224,0
+0.13160341057065617,0
+0.004615799779833682,0
+0.11554769931741637,0
+0.013560332534297333,0
+0.019537538281561198,0
+0.07681871389738146,0
+0.005324932410044475,0
+0.015186977280589107,0
+0.1718486812629965,0
+0.2256914476499094,0
+0.04338452285750131,0
+0.018439060625241543,0
+0.3389094904345958,0
+0.03147097421427671,0
+0.0001790570198687184,0
+0.19374070097460785,0
+0.10293719080474648,0
+0.174972755676454,0
+0.009842573787810876,0
+0.0038155666861689015,0
+0.40096442152264516,0
+0.06381526252562683,0
+0.23670561270644633,0
+0.34252298240297196,0
+0.06973048478347862,0
+0.003969426388920284,0
+0.09161666824700387,0
+0.009280616128399123,0
+0.16320013329366495,0
+0.032065276899377645,0
+0.048809547856669994,0
+0.102626449504813,0
+0.03644089916018069,0
+0.16083352324158304,0
+0.0027973107474299264,0
+0.02289265259611043,0
+0.18313662417628068,0
+0.25864903122767363,0
+0.02672562736709632,0
+0.013976572400419949,0
+0.1184625217355203,0
+0.020143095430133758,0
+0.1860075217938249,0
+0.005459854544755721,0
+0.00390524842343636,0
+0.24552039243351254,0
+0.13617153282937192,0
+3.6370120929481997e-05,0
+0.08706680158611037,0
+0.004549492029227917,0
+0.050591054709309836,0
+0.0006906860073367858,0
+0.34945391904370626,0
+0.05101853290129876,0
+0.04815436389111883,0
+0.23919185891017253,0
+0.046394851743713654,0
+0.01033686924758445,0
+0.00038456132442905643,0
+0.13608529206614098,0
+0.18581625525347048,0
+0.0009707209238816984,0
+0.3133893441809295,0
+0.042887359979074086,0
+0.06306449314892822,0
+0.03326015445309798,0
+0.04165822459006974,0
+0.0002432774260027816,0
+0.004493094176278188,0
+0.03914671557374081,0
+0.05202605039782475,0
+0.01488055347791289,0
+0.629767801913613,0
+0.06403785207449615,0
+0.027538662798532877,0
+0.03663909550643534,0
+0.014493316716697346,0
+0.035258926136292355,0
+0.000986558444704079,0
+0.02972193022841964,0
+0.010020698280437246,0
+0.001213221233215155,0
+0.021128891191478927,0
+0.00237578284942551,0
+0.0009773255666262915,0
+0.39444600612031044,0
+0.08403189433472946,0
+0.0192950296356696,0
+5.867775292550375e-05,0
+0.02121747337021637,0
+0.04802150890451692,0
+0.024149674675387124,0
+0.03765838925541053,0
+0.06171135044910388,0
+0.4060599821069933,0
+0.00020087956561731806,0
+0.0014697634165035094,0
+0.022412580201551548,0
+0.0009799796104636876,0
+0.05564881518833452,0
+0.3274160579531137,0
+0.004616532250134227,0
+0.0015216823440390066,0
+0.09431295863229928,0
+0.010527413638865234,0
+0.03259139689753342,0
+0.021416810709084418,0
+8.74636685385578e-05,0
+0.11526207455263955,0
+0.3221130243061169,0
+0.17198791734780142,0
+0.0032207744078956305,0
+0.1943778052421436,0
+0.3633788102753276,0
+0.05820882753986254,0
+0.0007679207501543773,0
+0.4137766599118651,0
+0.05782716904004379,0
+0.08841762400343034,0
+0.07281924704317243,0
+0.04244491642691857,0
+0.2096218720049559,0
+0.12802217235372218,0
+0.01650237035926707,0
+0.01492810703142905,0
+0.019953733437336783,0
+0.27795824820941795,0
+0.05092480122126865,0
+0.029801994425637586,0
+0.0006713800111110843,0
+0.03583641093205832,0
+0.037688775921419664,0
+0.0584067746558794,0
+0.21713361519571173,0
+0.2431505097244749,0
+0.1646656385243898,0
+0.1479250621429929,0
+0.02244380469957472,0
+0.08990052831442064,0
+0.012171589600887016,0
+0.015759680991598753,0
+0.43643004938551205,0
+0.11706637401522761,0
+6.522315773443164e-05,0
+0.06074748542444255,0
+0.1027892444942545,0
+0.010963752653294606,0
+0.18139993202420215,0
+0.00139684343546407,0
+0.021201375665008498,0
+0.12192284013568137,0
+0.4815931974877703,0
+0.11348041450895194,0
+0.0945390908902363,0
+0.003796899355599153,0
+0.007463112840542685,0
+0.00023237910698723584,0
+0.05669361016974907,0
+0.03038274089077197,0
+0.21864987677314301,0
+0.10349779263297927,0
+0.1467320633222114,0
+0.07218743784863274,0
+0.12549850555973008,0
+0.3019362363079737,0
+0.7137669904472916,0
+0.00020011651068339175,0
+0.3460024512648827,0
+0.08851926875622335,0
+0.08306579153403867,0
+0.03382165542942626,0
+0.13633593030464491,0
+0.004830559189345061,0
+0.03533259194546275,0
+0.03130832135810911,0
+0.0057219688841434685,0
+0.13582957106115698,0
+0.08235786215344731,0
+0.20797117829540931,0
+0.0028082882464890947,0
+0.3363430269912862,0
+0.07449049218456487,0
+0.008809090102903398,0
+0.08494251238149081,0
+0.4093783694613363,0
+0.0024468700942341646,0
+0.1185961004325518,0
+0.017933783274341746,0
+0.03862936274857347,0
+0.0016889779043426708,0
+0.01093599600645436,0
+2.0029010843239336e-05,0
+0.07391373166540663,0
+0.1401931131063839,0
+0.007844953962489883,0
+6.902311130611014e-05,0
+0.3838598459969825,0
+8.189295280186533e-05,0
+0.08033020092500663,0
+0.25998179674759525,0
+0.4366117196760208,0
+0.011433979137404718,0
+0.10939849399728799,0
+0.04431523125883694,0
+0.003407905643287757,0
+0.2355541057396784,0
+0.0014422740701911165,0
+0.019260191719635646,0
+0.2873583843972052,0
+0.38293991846772907,0
+1.5544492037683138e-07,0
+0.008069033635925125,0
+0.046557805509773176,0
+0.03561638056789462,0
+0.004477508322888494,0
+6.292107663862523e-05,0
+0.14136867021054159,0
+0.2560438540016513,0
+0.003860936035450625,0
+0.00010316663820522571,0
+0.06631860313533529,0
+0.08385567605363817,0
+0.04398314790966932,0
+0.051851078161123575,0
+0.03712513468550456,0
+0.06664427921436586,0
+0.0825920142201953,0
+0.020149130513594207,0
+0.15405971937802931,0
+0.20801912073769285,0
+0.01165434593992033,0
+0.008055521885511825,0
+2.987496607571576e-06,0
+0.07379785782384306,0
+0.0036935535535558297,0
+0.1276157057564569,0
+0.00031384520476400137,0
+0.004131767058258176,0
+0.3138157965581339,0
+0.0001860423731080247,0
+0.15094418284927544,0
+0.006770882426719381,0
+0.03252449530883111,0
+0.16305361975136154,0
+0.06414376613426721,0
+0.007191424092965611,0
+0.32455936858122303,0
+0.19013204956927682,0
+0.0615975096968918,0
+0.4118446587522798,0
+0.013606819022913738,0
+0.0018396961353707186,0
+0.13615874378863352,0
+0.005728036289507163,0
+0.2467796088408229,0
+0.0004233265854835798,0
+0.28933002716085465,0
+0.009316669744790958,0
+0.10693789139706086,0
+0.3879529732481556,0
+0.019846649314257524,0
+0.3650866645997742,0
+0.3174764169884347,0
+0.01353324402606614,0
+0.007929925634695132,0
+0.06491209376252988,0
+0.0005943507661177245,0
+0.001659763761720247,0
+0.0016484644052231854,0
+0.1415213755020598,0
+0.00023744930752982226,0
+0.004659742450514554,0
+2.414116733774363e-06,0
+0.24439840152073183,0
+0.0037581625471562,0
+0.003131930046253543,0
+0.1706832088909143,0
+0.3443724363128401,0
+0.002101116869805564,0
+0.015378361741976187,0
+0.04330688053405685,0
+0.00018792199218878504,0
+0.027976068180992398,0
+0.10483729251595948,0
+0.015978881390984332,0
+0.08941524640420515,0
+0.008045183757872176,0
+0.04611636963332871,0
+0.01056254302169051,0
+0.05544222013198985,0
+0.13393209833132028,0
+0.013223457737494806,0
+0.00017963949409855015,0
+0.014234099604387051,0
+0.03277003559522951,0
+0.0012755469338357063,0
+0.009815294599814384,0
+0.002112283655255549,0
+0.2174324292987976,0
+0.2686636738370879,0
+0.011885054388877147,0
+0.10136653492411356,0
+0.04216011643479374,0
+0.0073161506214575985,0
+0.06362643309023344,0
+0.011582099308663397,0
+0.015520674909564417,0
+0.12143845098952204,0
+0.03207607522144995,0
+0.0034583805002728423,0
+0.046488219728557045,0
+0.1349425490792341,0
+0.012104878886013927,0
+3.4647931683422817e-05,0
+0.049860615782265305,0
+0.4493323690879049,0
+0.02840838432150179,0
+0.04231384395939118,0
+0.09524577500675704,0
+0.279155950560221,0
+0.9392100857689707,0
+0.0753432668491751,0
+0.020282549830141765,0
+0.0003674889212822879,0
+0.19673970149629383,0
+0.04654962712384817,0
+0.04510060692695545,0
+0.010151894673185443,0
+0.024684236031235804,0
+0.4139761341514999,0
+0.025832490317281076,0
+0.0066124771533387985,0
+0.07367787102658346,0
+0.008064501955615287,0
+3.621644384387662e-06,0
+0.06457592064558175,0
+0.005438013553381206,0
+0.09162999127592632,0
+0.2153829028393607,0
+0.00909337425172901,0
+0.02625076341145103,0
+0.03701155391234552,0
+0.4549121299501576,0
+0.11537663930871915,0
+0.10996807162454354,0
+0.31935866410154384,0
+0.08304983090607408,0
+0.45690794521561484,0
+0.23221181241402838,0
+0.1751396325411157,0
+0.025860557341864175,0
+0.19784707698537268,0
+0.014106434355597422,0
+0.09076623671940737,0
+0.12097141034003658,0
+0.0017123655806371319,0
+0.009421317734179814,0
+0.015426665432575795,0
+0.010177696824622069,0
+0.007505658996248292,0
+0.09603819038748301,0
+0.023000367227915243,0
+0.05695650426193681,0
+0.0032876520948842804,0
+0.0022149705168905487,0
+0.0178598167222324,0
+0.17205849557194625,0
+0.021384694196491354,0
+0.09604551078327042,0
+0.0436420338403596,0
+0.09373489303702548,0
+0.03643708244440691,0
+0.0071643725386269595,0
+0.013219558643607984,0
+0.00012939631312318086,0
+0.10555095111289062,0
+0.11954874231896566,0
+2.9494745833190325e-06,0
+0.005176037717858389,0
+0.040263866810801505,0
+0.020768262014854565,0
+0.0015828469996977377,0
+0.03183559078575342,0
+0.0397723735125899,0
+0.0013003236163516272,0
+0.03400441631243414,0
+0.015996703114384732,0
+0.7263505727682829,0
+0.09795553275948972,0
+0.004077238024581127,0
+0.00010101346171152493,0
+0.20394673184330867,0
+0.001279024430401542,0
+0.05199553363119289,0
+0.1772988031182106,0
+0.22115447199954694,0
+0.07160711440311958,0
+0.19410795496904865,0
+0.0018243116744972078,0
+0.3874788526631411,0
+0.12172191064723607,0
+0.037024833498350306,0
+0.024305083331481223,0
+0.07475916093962734,0
+0.29055186724643034,0
+0.11169465951678723,0
+0.14757238817770918,0
+0.0027428733556806445,0
+0.07644583403308132,0
+
+0.47422818070513156,0
+0.018534395586059495,0
+0.005388868383801341,0
+0.08600594130409243,0
+0.037449315325574974,0
+0.4139530729719125,0
+0.02114466737993769,0
+0.036377842968024765,0
+0.008731999363502467,0
+0.2479341341934636,0
+0.05584157883620842,0
+0.018091393186372016,0
+0.16305368881100055,0
+0.17230172399259286,0
+0.08542237452128823,0
+0.10820606308706415,0
+0.004726768655394525,0
+0.7052498346300193,0
+0.07883457220180297,0
+0.031549368126208795,0
+0.16178920889499912,0
+0.037467896249963384,0
+0.05299569385294388,0
+0.0016083552588146408,0
+0.021585449971808248,0
+0.0661794759164053,0
+7.488455424218283e-05,0
+0.03321751726512105,0
+0.005173946071288238,0
+0.04944866082870332,0
+0.055278983765203724,0
+0.11788102629685235,0
+0.00878227471138594,0
+0.1832246071954299,0
+0.14672749528922036,0
+0.02974786882511899,0
+3.9726888790611284e-05,0
+0.06346130888110342,0
+0.006781523933683327,0
+0.020400383433027334,0
+0.06223888276286492,0
+0.05608182671044375,0
+0.001408830800911663,0
+0.016803249740725255,0
+0.039351187817191366,0
+0.06981312682210618,0
+0.20354498104309968,0
+0.20241058431569087,0
+0.09134723753723009,0
+0.0208358376317705,0
+0.3597949217337033,0
+0.010638444557443368,0
+0.06800035260143318,0
+0.0639718035723136,0
+0.0017285963108301609,0
+0.03992887314221931,0
+0.05713354330722673,0
+0.020503450209139493,0
+0.0048273706297122096,0
+0.003672826811374199,0
+0.08615896651687104,0
+0.16428370404178289,0
+0.0056601499524284535,0
+0.09828286468345102,0
+0.003828046087165262,0
+0.0012203228631926717,0
+0.3967891915818633,0
+0.0325375057525913,0
+0.008896571810344953,0
+0.1259664862353887,0
+0.09627547020286227,0
+0.00822820437086449,0
+0.004512868789341117,0
+0.005683464332114788,0
+0.08097696276165535,0
+0.10582025177969759,0
+0.22683176028088833,0
+0.00017062446866558155,0
+0.17015633124310317,0
+0.049208620398413325,0
+0.009916095913379306,0
+0.03202686679731433,0
+0.005512156919496794,0
+0.10105230377907701,0
+0.26352237752321955,0
+0.5372002724980339,0
+0.0001614870149944288,0
+0.1900692550491611,0
+0.010346933912798069,0
+0.1202172497420523,0
+0.08719699637836754,0
+0.10523950747763788,0
+0.08022510934483043,0
+0.03216720160858994,0
+0.12163970817019157,0
+0.051230010211598676,0
+0.002519674310693582,0
+0.018396370520821395,0
+0.023684768821758816,0
+0.048048457131938824,0
+0.0666836901480135,0
+0.03324872598457783,0
+0.01849631720716032,0
+0.11965876769637587,0
+0.178156363356281,0
+0.02358004723931302,0
+0.1652133969515612,0
+0.1443715298182527,0
+0.037245884350611956,0
+0.0517401847628556,0
+7.563912217396998e-08,0
+0.0003806656389517258,0
+0.08093743600642798,0
+0.00042535620953094717,0
+0.04222289019598372,0
+0.39433923686691663,0
+0.21861402951773928,0
+0.002021273353545312,0
+0.0018662892319849787,0
+0.2053420916571965,0
+0.06232944954339683,0
+0.017472313129787732,0
+0.10473355342519042,0
+0.06573593459123936,0
+0.05328483253269448,0
+0.03669430670825226,0
+0.050714291253452684,0
+0.7188249891474495,0
+0.12690068453653885,0
+0.015179067007032388,0
+0.021186875016933317,0
+0.010802624023558997,0
+0.00859578481870948,0
+0.02111743281036335,0
+0.3582362698133962,0
+0.10099316412648236,0
+0.021423871590767328,0
+0.05399523840160433,0
+0.28897095121012223,0
+0.00040752664009216435,0
+0.005792435643082097,0
+0.12866935232181337,0
+0.012197460755546603,0
+0.1685155308232771,0
+1.55095749215074e-05,0
+0.16577027961685045,0
+0.06395712156243064,0
+0.0008681886498928723,0
+0.2950611286500783,0
+2.3355021325564726e-05,0
+0.07418002557588113,0
+0.3341580481295431,0
+0.010382971295008245,0
+0.038593320174726706,0
+0.013694647267650642,0
+0.13185256208462665,0
+0.16919234240866493,0
+
+0.055068297961029446,0
+0.05917215024175709,0
+0.1323945645168574,0
+0.00636756435900207,0
+0.0018844147303623121,0
+0.006554840587399105,0
+0.5835431454451967,0
+0.15995288323035778,0
+9.78563449368295e-09,0
+0.005673275291841167,0
+0.02165803118692252,0
+0.000963744481118253,0
+0.0010835923845523684,0
+0.012351389955956452,0
+0.0019108266653189323,0
+0.0497514602916634,0
+0.20632016689024693,0
+0.1966122467378581,0
+0.04407915513151037,0
+0.009309166147813703,0
+0.015025634456106954,0
+0.3287228139833017,0
+0.028536599243057924,0
+0.004673382111920889,0
+0.006331421869769528,0
+0.02120601481623912,0
+0.044812109346074665,0
+0.019196318647761328,0
+0.28200561182596656,0
+0.17714174896380797,0
+0.2991369512561154,0
+0.14953822344777595,0
+0.03978278011804336,0
+0.3212495870740941,0
+0.029382198271949156,0
+0.016484593033226025,0
+0.00016246769806229163,0
+0.21304079625892203,0
+0.027600808404979214,0
+0.030748731556726333,0
+0.0013378971331511568,0
+0.003546305998116435,0
+0.094445201100003,0
+0.049993560387811775,0
+0.210717886928459,0
+0.19965976347817765,0
+0.04033961637998512,0
+0.2644955660368116,0
+0.0016631545332469332,0
+0.38440613646189187,0
+0.0019893368489632126,0
+0.1793850005980005,0
+0.024591288364883716,0
+0.002376019515054434,0
+0.061426316845030096,0
+0.005964956377407031,0
+0.06390371283320638,0
+0.003725651949677355,0
+0.07209895909554791,0
+0.004821407522932176,0
+0.05271014524510951,0
+0.14613523742056372,0
+0.08907129401249787,0
+0.2530755839074581,0
+0.017578895429775653,0
+0.3193513075718647,0
+0.05778737330222522,0
+0.006415150071964399,0
+0.20845767252912442,0
+0.0003659389586422985,0
+0.010466463503442184,0
+0.0025077595011435225,0
+0.0001717311525145474,0
+0.0007410068202692353,0
+0.014670656897674031,0
+0.01212661434820626,0
+0.2280663854326525,0
+0.16649064299924124,0
+0.0007643490281400183,0
+0.05296279159428106,0
+0.1941169755254615,0
+0.624121478394757,0
+0.08800338892743155,0
+0.18630228344047167,0
+0.003010294775209037,0
+0.0082172108958545,0
+0.08676393769989484,0
+0.22360614083878025,0
+0.06622739654371387,0
+0.043732123763021886,0
+0.002172400166680661,0
+0.02562946250647316,0
+0.10508726685162666,0
+0.02451771921735025,0
+0.06907610786039545,0
+0.10187159425414445,0
+0.13886165405071224,0
+0.2006758938544584,0
+0.20889676427207005,0
+0.0017601785158194861,0
+0.042671769568305755,0
+0.01823760402636462,0
+0.0003416317381702528,0
+0.10199324035398301,0
+0.1363880802531445,0
+0.0644068917662605,0
+0.010999491597946005,0
+0.01735699779273643,0
+0.00263665354782486,0
+0.3392936007279769,0
+0.005457490885083611,0
+0.11125417562832034,0
+0.12779890387447815,0
+0.25181787371680664,0
+0.3629308745256938,0
+0.212761683754828,0
+0.23277592821273227,0
+0.11459551579706347,0
+0.0005698814132550657,0
+0.0018674558202219649,0
+0.0337729017312294,0
+0.14146708213494766,0
+0.10363169297518401,0
+0.3299509655251924,0
+0.18635469275316824,0
+0.14443633552667226,0
+0.013056821173410033,0
+0.060467448749092545,0
+0.039853241914416346,0
+0.2770891991509619,0
+0.18292634879188002,0
+0.4128619593459241,0
+0.4613024784998264,0
+0.10125394067787448,0
+0.18650577820269712,0
+0.024800752025187233,0
+0.006146032796787664,0
+3.008773057579526e-05,0
+0.03437739082595684,0
+5.900833709909577e-05,0
+0.08691498678631285,0
+0.1637117584823842,0
+0.012136181529805086,0
+0.009342343806350783,0
+0.010153714463005309,0
+0.01760923463691549,0
+0.0015197801845369737,0
+0.13182948605724515,0
+0.06476622046514849,0
+0.08590099283846675,0
+0.0005793246612939069,0
+0.018543965892972844,0
+7.509872433612063e-05,0
+0.2364284430558167,0
+0.0004715973029451758,0
+0.1919172680215081,0
+0.4437312537789226,0
+0.5775901963311505,0
+0.019599175502883828,0
+0.08623421355293885,0
+0.03564904809050136,0
+0.39524194242068766,0
+0.10138404641524326,0
+0.08411843670189503,0
+0.019888331153954324,0
+0.17966530821663682,0
+0.19697574091704081,0
+0.004036698406497124,0
+0.0072886647320263035,0
+0.12742819553166032,0
+0.0006179252081006094,0
+0.008738494232743031,0
+0.012760463627706397,0
+0.029333396986912525,0
+0.1750634252833897,0
+0.18403194749072002,0
+0.06065594386271876,0
+0.15683119738233348,0
+0.1550733066168267,0
+0.0064060276886489746,0
+0.2586387392243764,0
+0.5810954889826998,0
+0.07333116135507811,0
+0.045411471206356836,0
+0.1708325031121152,0
+0.09112230151747026,0
+0.009783722197591976,0
+0.03367918373642924,0
+0.0017381868245955861,0
+0.11737793975399988,0
+0.0030422259756165498,0
+0.04827788829829512,0
+0.35843076685609515,0
+0.031349849886245076,0
+0.008115696823861486,0
+0.29488262945293375,0
+0.06658345145982546,0
+0.010900269978790997,0
+0.056365561381483985,0
+0.038168613451720165,0
+0.029794114809916568,0
+1.1328096646939975e-05,0
+0.1217794604001959,0
+0.1172494457100923,0
+0.04444838117141895,0
+0.23513222285384336,0
+5.2465432081472205e-05,0
+0.3330223149207975,0
+0.001465825517170955,0
+0.018813575525802942,0
+0.012929573460588697,0
+0.01816407736484223,0
+0.02286184337411531,0
+0.002609302024094291,0
+0.039948534276842224,0
+0.15225729304929872,0
+0.11126335047581237,0
+0.022944476559196757,0
+0.18982410474537528,0
+0.002837658626042715,0
+0.14128681947633867,0
+5.869874737481551e-06,0
+0.048809569187553234,0
+0.3123228439850698,0
+0.0004900824976908078,0
+0.015437356823569465,0
+0.08669481863974096,0
+0.006526671573925802,0
+0.43522833148937046,0
+0.018579499828710468,0
+0.2241749896700102,0
+0.18705617842118794,0
+0.4157176002542903,0
+0.011391947010709953,0
+0.21245819485123968,0
+0.002601799211039083,0
+0.24436393717665714,0
+8.856996694813026e-05,0
+0.03645598398312209,0
+0.020546048887054243,0
+0.629671526758907,0
+0.20118380997112947,0
+0.5743179846315856,0
+0.0023532713003183636,0
+0.005998880592679297,0
+0.14252985867095563,0
+0.07304099404825587,0
+0.08923606989650835,0
+0.0016775265115283496,0
+0.009110072519197985,0
+0.014745271182209415,0
+0.003564122894754796,0
+0.08454248966229148,0
+0.028375822198957068,0
+0.20479768472230725,0
+0.13954654190315927,0
+0.0014072184374565458,0
+0.29917305986067183,0
+0.03327789482373164,0
+0.12724567613783389,0
+0.3422112992539453,0
+0.17711130073411763,0
+0.03279338592075768,0
+0.005758845005784677,0
+0.017660383413571467,0
+0.04149521014090789,0
+0.6551082037591722,0
+0.04177827353748855,0
+0.13603515531246949,0
+0.15458686577115624,0
+0.09743408834439997,0
+0.13528824924190275,0
+0.002870315646924097,0
+0.0754596882776015,0
+0.049101866198527216,0
+8.485023290177864e-06,0
+0.14890614229540872,0
+0.0827998511994941,0
+0.00268828927100301,0
+0.30910351177933043,0
+0.038595042758014494,0
+0.18888797621779613,0
+0.13656030731351707,0
+0.044230762722833675,0
+0.1532668262791782,0
+0.04234921111880772,0
+0.008079208113113818,0
+0.19012521517211195,0
+0.07189856204268948,0
+0.02591749114584662,0
+0.005653399896317536,0
+0.03094432756008595,0
+0.02680937027997816,0
+0.18444523092348872,0
+0.0034057052131758804,0
+0.12489646113182137,0
+0.3042581066425971,0
+0.000323556299459981,0
+0.02222993784567981,0
+0.09995406623039728,0
+0.10869627391154155,0
+0.035465509446221774,0
+0.011666099684928835,0
+0.051677369926158644,0
+0.00015445032181626294,0
+0.03689366531401122,0
+0.06701455229113634,0
+1.2632747357744029e-05,0
+0.021598135218138016,0
+0.2406808119452993,0
+0.1137865452711482,0
+0.029627817192547277,0
+0.07201691726206028,0
+0.02267030603325238,0
+0.0035690394595436084,0
+0.20734897833334665,0
+0.09983272286236465,0
+0.020308933777435416,0
+0.0005473567205553011,0
+0.04577139595246132,0
+0.40485778895473024,0
+0.01828688458020254,0
+0.04361025850929477,0
+0.14831921366269524,0
+0.0945722967489783,0
+0.10655857233337669,0
+0.00844371682464447,0
+0.027826459912476224,0
+0.027895778089862037,0
+0.016322272780072974,0
+0.5203237581139641,0
+0.501369261472642,0
+0.0291601429095583,0
+0.053418316715063176,0
+0.004959032162826825,0
+0.0017407154652384015,0
+0.02063413030442622,0
+0.30884839590911073,0
+0.006115740071738664,0
+0.022041895621629455,0
+0.1459850976867163,0
+0.0887203690679266,0
+0.08683027362664172,0
+0.10038622273210651,0
+0.27493356105627076,0
+0.0036888999630763455,0
+0.2643351857664096,0
+0.018478710990557687,0
+0.05154442165901281,0
+0.5477313267533637,0
+0.08623587921352932,0
+0.023008266386408793,0
+0.03880516089913362,0
+0.40809864181453576,0
+0.055617990179216384,0
+0.12012641027050053,0
+0.044368169881239705,0
+0.5110428003290725,0
+0.04513657963353625,0
+0.20820568274167162,0
+0.16450372811313446,0
+0.015834705055671285,0
+0.019739620142674684,0
+0.05207304989488799,0
+0.3440143352776806,0
+0.005290957300391228,0
+0.00011997788745017677,0
+0.22743307430161175,0
+0.06938632877582412,0
+0.01812856949372847,0
+0.007328002656324028,0
+0.06327366913146855,0
+0.026981925399154217,0
+0.06725569659246354,0
+0.013510242453688554,0
+0.005051023002806189,0
+0.06989557112926206,0
+0.07410363226896698,0
+0.021972023072866446,0
+0.08321926833908383,0
+0.1641070589555787,0
+0.16729646628195838,0
+0.0035181868002104174,0
+0.06882436355773966,0
+0.00466674305376642,0
+0.01718066654316249,0
+0.08894596786535926,0
+0.04306562878175437,0
+0.1421892104222982,0
+3.589593482518877e-05,0
+0.015920532219253346,0
+0.6197882452988148,0
+0.20888923730858,0
+0.05273199663252946,0
+0.02703819002589526,0
+0.004891471660467612,0
+0.0008231536134008068,0
+0.31036070076022115,0
+0.771672965254455,0
+0.08670764451879961,0
+0.013911575671101475,0
+0.29315636126260114,0
+0.6122712074656241,0
+0.001487512918890251,0
+0.05063339905410089,0
+0.09861927394699484,0
+0.39152652788292536,0
+0.08133532400116593,0
+0.19612472503043304,0
+8.84042858573865e-05,0
+0.1064928648541578,0
+0.0110447131058334,0
+0.046392389760724885,0
+0.032745051335109396,0
+0.1271457325661077,0
+0.009902594608128914,0
+0.07367417160569534,0
+0.10280936021159341,0
+0.09954955801578935,0
+0.5105148817058981,0
+0.025402775783195757,0
+0.03743343858700361,0
+0.02671830117806006,0
+0.0010033158066526835,0
+0.14903719408837296,0
+0.1629150870378398,0
+0.052694035557356744,0
+0.1737122349468263,0
+0.5074215033034872,0
+0.04626626667897441,0
+0.042152768861471165,0
+0.019089672353403753,0
+0.18058581557607434,0
+0.28069446410025134,0
+0.08703980681521883,0
+0.015381504527520556,0
+0.015932333564455916,0
+0.7109742819902451,0
+0.03003854540762941,0
+0.2109756881686684,0
+0.12449235457008472,0
+0.11000187783187058,0
+0.003134030997871699,0
+0.003921635209882935,0
+0.026731121302408407,0
+0.07292189185453517,0
+0.24512317174532644,0
+0.006843226676650873,0
+0.0006025354142795794,0
+0.07553023853438164,0
+0.01954003075670637,0
+0.024887720654376465,0
+0.06842761357181475,0
+0.15133911967592512,0
+0.19593059288118048,0
+0.16672017937859712,0
+0.09659264894016767,0
+0.04228489062928431,0
+0.06146471424889075,0
+0.01723428445383985,0
+0.07512573566579428,0
+0.10493980315272418,0
+0.1078523287369112,0
+0.007561623580569131,0
+0.015433413730408371,0
+0.00032910797207427397,0
+0.06897437725068084,0
+0.0180675237255462,0
+0.09478366469614534,0
+0.12742987125543198,0
+0.004131113108077257,0
+0.040703584872737494,0
+0.12341911367591427,0
+0.25854578818684903,0
+0.09257153460420045,0
+0.02444106719103914,0
+0.008432408912440289,0
+0.00226739391696715,0
+0.016572349271834593,0
+0.07002998084485486,0
+0.09675026288203946,0
+0.5915497462817211,0
+0.26597042724924647,0
+0.06989158836519162,0
+0.2860924661727414,0
+3.805281843557818e-06,0
+0.00010329109196714832,0
+0.22611086731516233,0
+0.00785133254047,0
+0.14521852446927627,0
+0.015570742957837924,0
+0.08248694042908751,0
+0.0494044548171577,0
+0.049975333068595536,0
+0.03325910853872817,0
+0.008727068233420688,0
+0.12916328174929226,0
+0.3291794511209324,0
+0.028203677953958034,0
+0.0447906516372053,0
+0.10158246938337363,0
+0.007648120730929323,0
+0.012267474959703099,0
+0.10440150577897633,0
+0.0914824043584368,0
+0.02977139983560828,0
+0.1379166569290487,0
+0.14247485564771417,0
+0.6343651261056952,0
+0.11811753496388352,0
+0.015184443948027667,0
+0.36424059289340915,0
+0.0002961151157131239,0
+0.09616812951208478,0
+0.0743160122780271,0
+0.0032920706679199817,0
+0.0038467360506738045,0
+0.23960716044444616,0
+0.035624550626629045,0
+0.08003607715775041,0
+0.16166754770381392,0
+0.0003505721207884789,0
+0.2903337311789793,0
+0.03302027115282073,0
+0.003825188267653921,0
+0.23036920766786192,0
+0.11204303077814717,0
+0.17601842635824838,0
+0.17268073785155702,0
+0.04194822166089415,0
+0.31190022151759,0
+0.01040590788547124,0
+0.04343794460939272,0
+0.0055240625854069605,0
+0.0009054388918022406,0
+0.2221898491610837,0
+0.04040615461306697,0
+0.06237387484138705,0
+0.0027205907755776205,0
+0.006920742839941011,0
+0.02116082032762484,0
+3.745102898190511e-05,0
+0.04429053846438197,0
+0.12745761067222738,0
+0.03923790961604338,0
+0.054008557467398965,0
+0.04450217110249401,0
+0.26556789639737083,0
+0.11336403182098567,0
+0.15482736632494354,0
+0.00041941843137123486,0
+0.03756788857046732,0
+0.043123759934307906,0
+0.2889131092959598,0
+0.014524955472356119,0
+0.19233896769925646,0
+0.047680786266760165,0
+0.01941322783426041,0
+0.04859770855784037,0
+0.4777023693300563,0
+0.1501262522677435,0
+0.008081415635785287,0
+0.09541793677001972,0
+0.01302923427790705,0
+0.36942281008906314,0
+0.010123093268939742,0
+0.20911080900179552,0
+0.33716185825811895,0
+0.11400634268010863,0
+0.6740144284268149,0
+0.06975519633248768,0
+0.2550668774741927,0
+0.003913268746891266,0
+0.39608793053986735,0
+0.43557275741980456,0
+0.00015186043460748902,0
+0.028829017671076984,0
+0.06282576727659103,0
+0.20044887005623924,0
+0.0066489166690124075,0
+0.00014407115410578348,0
+0.1035273173668891,0
+0.06032644526804519,0
+0.0007896214516059279,0
+0.32860492823725757,0
+0.011279259918925028,0
+0.00143363626798686,0
+0.055737924733045986,0
+0.5312356765125518,0
+0.041979955700866114,0
+0.09798303370953557,0
+0.052898022134554815,0
+0.18422166614390584,0
+0.1065118910155384,0
+0.026778864115660855,0
+0.14580246825815305,0
+0.10930351265574775,0
+0.15918434268556364,0
+0.10278085762926839,0
+0.015898836969333634,0
+0.00018229160066910517,0
+0.010273661695280628,0
+2.5560000897676655e-06,0
+0.1255341522698029,0
+0.004642580704198608,0
+0.0010513777608144358,0
+5.86939499250815e-08,0
+0.18665882354663837,0
+0.06590764128575319,0
+0.00039654149669755975,0
+0.03967206402997378,0
+0.06349068745249078,0
+0.009851432539934703,0
+0.18539787761538357,0
+0.022833219743680543,0
+0.000801625892310498,0
+0.23036880751825212,0
+0.15988520724732125,0
+0.019000029584097796,0
+0.06969517502594305,0
+0.008916456369774286,0
+0.17386523564451184,0
+0.09396887291999134,0
+0.0005480212346721584,0
+0.04256001219562379,0
+0.03077385140071151,0
+0.0004866407418365643,0
+0.2918744951882749,0
+0.18804132451180966,0
+0.02809617179053177,0
+0.14738878733873612,0
+0.038584146750723886,0
+0.36974345258494246,0
+0.046729953700098914,0
+0.0501738749525674,0
+0.004191935640000319,0
+0.004347439381810124,0
+0.1585486541077985,0
+0.08484348165042124,0
+0.03419063258796579,0
+0.027967650274732213,0
+0.0003129007706887118,0
+0.07938055407951963,0
+0.006211267356968584,0
+0.2626341327373417,0
+0.3419792863202632,0
+0.09741099366861913,0
+0.005955717438079655,0
+0.03168406564664263,0
+0.32904506525218524,0
+0.12605527349702836,0
+0.004847038554644689,0
+0.22001994144172068,0
+1.700698619320362e-06,0
+0.007365082122226997,0
+0.0040635786051166555,0
+0.08800966272553037,0
+0.12148884934175516,0
+0.02591927136243321,0
+0.04496030115114403,0
+0.19685260413646283,0
+0.05652551347653865,0
+0.031560009229731886,0
+0.29517241578246967,0
+0.00013329264126476533,0
+0.11447270909000469,0
+0.06172900252711511,0
+0.0012819944783055478,0
+0.01329220990664999,0
+2.6582254949872087e-05,0
+0.005325060738668152,0
+0.27120385404303154,0
+0.14371776999703728,0
+0.0017225380627464248,0
+0.022818249467835026,0
+
+0.012355052884366889,0
+0.07238021032747875,0
+0.0013051805454507525,0
+0.010577246034973932,0
+0.29392061620070953,0
+0.04069838406998211,0
+0.011677464946533394,0
+0.15998700482272574,0
+0.07285533588917266,0
+0.0029273927435353167,0
+0.0029074108220523607,0
+0.2644900550793895,0
+0.22211157614901467,0
+0.0010965241930462801,0
+0.10786088867913435,0
+0.09044702361041367,0
+0.3059318453957744,0
+0.031686337043591674,0
+0.0016516322970061097,0
+0.23356397379528615,0
+0.16917406930536555,0
+0.03601224079800231,0
+0.01882525419511435,0
+0.03297435920490922,0
+0.060557266586830624,0
+0.018528163348966023,0
+0.02103022908236587,0
+0.0011617605371427068,0
+0.00130082032133875,0
+0.17191751837917996,0
+0.00983977769047788,0
+0.05881869393884831,0
+0.016930221372237743,0
+0.004679403312747362,0
+0.05990906944822313,0
+0.013680087234428798,0
+0.022314338360601333,0
+0.10221064275530689,0
+0.326734767037833,0
+0.006517054230843093,0
+0.013113715692223447,0
+0.009040875485957552,0
+0.010653796880372575,0
+0.0627248804165431,0
+0.2583659495541807,0
+0.015145823723219617,0
+0.1537872832461209,0
+0.3427258670096593,0
+0.00014208014096153554,0
+0.010553807071950517,0
+0.045577118589382105,0
+0.08096228473140085,0
+0.001884173278713842,0
+0.09145241944739044,0
+0.029821794823832563,0
+0.11844212130873724,0
+0.09908317993692226,0
+0.024589218233560056,0
+0.17311592413655913,0
+0.21373836271827223,0
+0.10122146732636797,0
+0.06969912583672985,0
+0.03480976097013096,0
+0.000709500538409203,0
+0.04431638858221899,0
+0.5728924252283356,0
+0.004169408760733672,0
+0.046610921700237985,0
+3.792166191500922e-05,0
+0.023801664452458456,0
+0.0023684240302244293,0
+0.003682600389823921,0
+0.014955560287822583,0
+0.2637282210934825,0
+0.06847746694245219,0
+
+0.11519261060942713,0
+0.11499384565245616,0
+0.0010166975505076534,0
+0.07099309168576354,0
+0.572979798204238,0
+0.1047599379662214,0
+0.06358237809692177,0
+0.0020635020345977162,0
+0.013280885226895028,0
+0.04046659498043109,0
+0.009124568164384471,0
+0.04238114659944765,0
+0.23299779913076685,0
+0.294815179367632,0
+0.04924556250334687,0
+0.0046378849470471075,0
+0.22914258339668286,0
+0.0010524885703295168,0
+0.009994045187432384,0
+0.14818134231560018,0
+0.007290094434979537,0
+0.06826976652368431,0
+0.08672804257548115,0
+0.03620788664277115,0
+0.010753938655396342,0
+0.0026576033397115967,0
+0.00037120902702042523,0
+0.013368042607200157,0
+0.0029627320011054526,0
+0.05616424674860434,0
+0.10989867048313258,0
+0.005068061136132288,0
+0.0007277327740949851,0
+0.016124143670958734,0
+0.01027316091342309,0
+0.23179636818814955,0
+0.20937677461617388,0
+0.02986565638917916,0
+0.06687799916357653,0
+0.05934680524736034,0
+0.20334143438471108,0
+0.39362910497452686,0
+0.010471846563423969,0
+0.3381401904474205,0
+0.019020325865270797,0
+0.00010467697589149314,0
+0.1184913593909602,0
+0.020785532053847474,0
+0.1545973963379978,0
+0.07000774878437407,0
+0.3783081455367786,0
+0.13979058403919942,0
+0.05955864341603682,0
+0.05217660805798202,0
+0.103930585947176,0
+0.02376459298585735,0
+0.0889149345967059,0
+0.43274089551797096,0
+0.0038356625183769257,0
+0.12426920984094944,0
+0.02791301901395284,0
+0.05638115911634293,0
+0.4233240616862924,0
+0.0006979704135701758,0
+0.03727486358212409,0
+0.05116642933331038,0
+0.06529376855117566,0
+0.31398573669470836,0
+0.18468193686072193,0
+0.006811658858705459,0
+0.05870278911356021,0
+0.0018815517436240286,0
+0.05993259459754009,0
+0.6608676317281512,0
+0.37702738554041076,0
+0.15036689010287696,0
+0.05546844907998788,0
+0.017838794706156874,0
+0.003568361691032062,0
+0.057530677492518126,0
+0.09523497897732533,0
+0.01579227700938728,0
+0.00318456530904601,0
+0.0021659670875181056,0
+0.3354554980230723,0
+0.0008062985774550636,0
+0.004030235823295963,0
+0.07160732512717646,0
+0.00418777066871698,0
+0.01386879269473322,0
+0.06366944468100087,0
+0.16184230294168614,0
+0.00020040590317081867,0
+0.135747786804763,0
+0.004654425435766405,0
+0.13788571103033254,0
+0.003882426608076744,0
+0.030189031701710424,0
+0.18533514340397989,0
+0.03709720676855115,0
+0.11102534487532811,0
+0.0017929262050061872,0
+0.30835559989925226,0
+0.022396444172925828,0
+0.016376033124816843,0
+0.39279164389356624,0
+0.8437535028803242,0
+0.19242169546016513,0
+0.006596458972168204,0
+0.09712392188577104,0
+0.009595831194644685,0
+0.003988599311051876,0
+0.13389555479177961,0
+0.0388794804986734,0
+0.06809740903012154,0
+0.128660844529993,0
+0.09231298872735341,0
+0.01062525258390406,0
+1.700798110331273e-05,0
+0.16297924090431387,0
+0.14550207094320972,0
+0.0330111673231646,0
+0.4839787037964121,0
+0.005064545148416256,0
+0.1465890078908933,0
+0.0490871019231518,0
+0.07421884472474738,0
+0.009915332130412065,0
+0.2457043910519129,0
+0.19810511037985626,0
+0.1702927247974481,0
+0.002823456991372093,0
+0.21861774715379192,0
+0.07703200823204541,0
+0.04429781869704831,0
+0.009145849094443527,0
+0.04865848164764108,0
+0.1192906477523876,0
+0.023635379332966475,0
+0.0007029612654413129,0
+0.05119105621449301,0
+0.00673464640865299,0
+0.05974375239108648,0
+0.027527725505261603,0
+0.22307616831410662,0
+0.024882130031574485,0
+0.014437003277869542,0
+0.0016672792795034495,0
+0.38299410327733646,0
+0.12308443598781257,0
+0.07741033873444003,0
+0.0011074803835075745,0
+0.2531492051427999,0
+0.027369057234637912,0
+0.05326265600733658,0
+0.09584879131444769,0
+0.25748523073913254,0
+0.08738279973202664,0
+0.002818796451383096,0
+0.16327946749731514,0
+0.005777610144637057,0
+0.087572608598552,0
+0.040978518415692014,0
+0.23141870098443795,0
+0.00017702813371851925,0
+0.034313767496418436,0
+0.0557519969944645,0
+0.09494145758574357,0
+0.016896164257203913,0
+6.877812105151272e-05,0
+0.26391036336570556,0
+0.26673732106294185,0
+0.0006854329274532634,0
+0.0005270789046450069,0
+0.17540579530718137,0
+0.8686427970523963,0
+0.4784524494367698,0
+0.23920799034838464,0
+0.007623416499377376,0
+0.002126676470952729,0
+0.0005775266786689265,0
+0.006913801928196364,0
+0.13228115217488806,0
+0.12181895470528818,0
+0.06454232531133677,0
+0.015913935679643776,0
+0.34571014150860513,0
+0.36182882397330046,0
+0.002382717438285392,0
+0.0037334037886177875,0
+0.0027907576233139604,0
+0.865196575591859,0
+0.0938919174477002,0
+0.15173061391698514,0
+0.040391901171202456,0
+0.13010584872844014,0
+0.0022699873874201504,0
+0.06640623610520446,0
+0.011718718883545884,0
+0.0115501270422942,0
+0.032382267815758606,0
+0.02546284176271294,0
+0.011932328669476962,0
+0.03900878626974395,0
+0.036272555189321855,0
+0.016729310391752523,0
+0.05102160003117612,0
+0.025332872093316788,0
+0.008844982809951062,0
+0.1560328739987174,0
+0.04630889010192355,0
+0.14731314041634652,0
+0.1661475721514595,0
+0.21467925708670954,0
+0.03224686252727939,0
+0.20616587476357462,0
+4.423243697338344e-05,0
+0.2895046107928419,0
+0.07590712383746583,0
+0.08021238704309605,0
+0.022903378279493652,0
+0.0031067582546139326,0
+0.29341520489355577,0
+0.11917261767729603,0
+0.025184629259221845,0
+0.08845216741733321,0
+0.03869898329737558,0
+0.36902733993835474,0
+0.008709463362302852,0
+0.0921029917089872,0
+0.019268760292509214,0
+0.039139063754272625,0
+0.22902063505690454,0
+0.06465671795458543,0
+0.02320710829614742,0
+4.879834599545338e-06,0
+0.07917163487685917,0
+0.001622980841243767,0
+0.009313289774582737,0
+0.1392462967958262,0
+0.1536400565710955,0
+0.007209591953067106,0
+0.10646077134328788,0
+0.07577745758135099,0
+0.01400187962562452,0
+0.14750938321842472,0
+0.1582811788545123,0
+0.019213162776567195,0
+0.25815014077159903,0
+0.001766181080970767,0
+0.02149306479692886,0
+0.20523121220651927,0
+0.006519494271812198,0
+0.49739512768846944,0
+0.1149423170212807,0
+0.0017295332659931456,0
+0.09546634255045378,0
+0.03869613966531037,0
+0.21919072249739774,0
+0.0861904790909523,0
+0.12542247884746666,0
+0.0734443938454312,0
+0.04473897178584092,0
+0.05206157496282131,0
+0.013016381181431605,0
+0.00566073503807613,0
+0.25511466486112155,0
+0.005853115202586015,0
+0.0026228484226118527,0
+0.031212010688168906,0
+0.42542454718754674,0
+0.009730201508024009,0
+0.3468262640131813,0
+0.10012060398506621,0
+0.016603058730643473,0
+0.01576501702244893,0
+0.0264463450107895,0
+0.2140491052428593,0
+0.015609685600659135,0
+0.0003863362380346156,0
+0.29383064486498334,0
+0.247884792769822,0
+0.008174286720416545,0
+0.010599000234620005,0
+0.0012045377050165103,0
+0.02563542389650298,0
+0.10399982417868543,0
+0.07197644988109629,0
+0.04138382829031226,0
+0.00030508312502308416,0
+0.00022402398307593937,0
+0.007497991236035879,0
+0.012224201449104254,0
+4.644467870604055e-05,0
+0.21435148354790795,0
+0.10299388803900118,0
+0.06757798631247248,0
+0.26337877122540176,0
+0.1891281933620043,0
+0.23369409060843566,0
+0.10319028360698765,0
+0.009970945359288805,0
+0.011047371640619709,0
+0.36380534390410363,0
+0.2981254915326753,0
+0.002130022082462836,0
+0.0437994288006549,0
+0.18961739931321486,0
+0.02025082590582868,0
+0.0032338883019831432,0
+0.004338384233315886,0
+0.5918676089170786,0
+3.514233024490384e-05,0
+0.048859660128468464,0
+0.009232785572426978,0
+0.004776164229969834,0
+0.024190075677787186,0
+0.48530824417938867,0
+0.243142875482734,0
+0.08351051231991552,0
+0.010125511206905698,0
+0.009447548793353265,0
+0.0007094706946693472,0
+0.010056089803001057,0
+0.17899270850097618,0
+0.18217294070795043,0
+0.009982015089066473,0
+0.2863738148075634,0
+0.0023567161715750827,0
+0.0939753367721019,0
+0.03235169929432698,0
+0.004218367704743681,0
+0.11368811496558873,0
+0.18856182096185137,0
+0.1342010612613245,0
+0.11761752122050725,0
+0.001099434047970579,0
+0.009418843750830316,0
+0.0184073469335703,0
+0.31615887342950566,0
+0.059841908744113395,0
+2.8178738360673516e-05,0
+0.01820448676542771,0
+0.22471490315678855,0
+0.006429471909456716,0
+0.010897345896142904,0
+0.06223630974159342,0
+0.04376598456325612,0
+0.043022320690506266,0
+0.010968041481170936,0
+0.0013507307488747511,0
+0.9521416436775688,0
+0.07207456669040489,0
+0.001955687259429817,0
+1.767328254878698e-07,0
+0.01040071135513303,0
+0.0009652799181561596,0
+0.009377562707612436,0
+8.752014440158577e-06,0
+0.007542891831683299,0
+0.016075183585257023,0
+0.00018975822052535055,0
+0.028503613709210757,0
+0.10200159765009309,0
+0.4433171929595181,0
+0.03805472238686124,0
+0.039585521398340456,0
+0.16974450448023426,0
+0.08822128149583332,0
+0.212466755194228,0
+0.0003221317467135104,0
+0.02860885911374348,0
+0.6955588286853498,0
+0.1525674758024659,0
+0.04937106323584201,0
+0.016940942720563394,0
+0.10962575300570492,0
+0.00022877502005702043,0
+0.05946914304865562,0
+0.02808456577012632,0
+0.35458584712339125,0
+0.02939108431106697,0
+0.06569719461493942,0
+0.0006523858902279182,0
+0.012586629822461884,0
+0.029800094583658548,0
+0.1571924366118052,0
+0.031088637528752176,0
+0.021267342438952473,0
+0.10612434616898939,0
+0.00018870805538892923,0
+0.11992078291942103,0
+0.0021416582355658085,0
+0.006148977343316679,0
+0.17205734120567706,0
+0.06907320193831468,0
+0.01018235328940863,0
+0.04495158631498826,0
+0.06330502818103947,0
+0.021387746737785752,0
+0.4245239845034707,0
+0.0018420765760824164,0
+0.12265271025777458,0
+0.1826111458579574,0
+0.053400380021565386,0
+0.0350195998653358,0
+0.22517495976923324,0
+0.0010248137277667402,0
+0.18562049836876052,0
+0.0026077775661175417,0
+0.009430805884462882,0
+0.0598689105790026,0
+0.061928058616665574,0
+0.06513075659369952,0
+0.3163441998100113,0
+0.33446891639203996,0
+0.0002771117391203273,0
+0.07952258620168914,0
+0.1631704832435237,0
+0.0026173489228532524,0
+0.12434272871621607,0
+0.23899291265331857,0
+0.4610925934355078,0
+0.004783737086991668,0
+0.1159493229910155,0
+0.04846334986985285,0
+0.08160198437589397,0
+0.009372410672634515,0
+0.10913522442374032,0
+0.10573273459709871,0
+0.022638883198308955,0
+0.03311064158658177,0
+6.730963123926338e-05,0
+0.31348361383749107,0
+0.01792805021624649,0
+0.001972730897239731,0
+0.15227361613781354,0
+0.0315546375902762,0
+0.05270607997952209,0
+0.05261788992774615,0
+0.22060195984665665,0
+0.23194265252481822,0
+5.85648953288603e-05,0
+0.011864891870908575,0
+0.2066819129905674,0
+0.017428464864598484,0
+0.09912718365044693,0
+0.4559675782739826,0
+0.1681179704453229,0
+0.6285323213633893,0
+0.038480840739480604,0
+0.019359720939210043,0
+0.003438493085425014,0
+0.06229695450245004,0
+0.005162309946835589,0
+9.094655438968358e-06,0
+0.042846906717620016,0
+0.1396436762907059,0
+0.09051341203689947,0
+0.02413368101873927,0
+0.04627311440577027,0
+0.22060950183897968,0
+0.5490991171425226,0
+0.9181609596029805,0
+0.16503190578845667,0
+0.028591334808318963,0
+0.009313078885069432,0
+0.0966993908287369,0
+0.00905564740504444,0
+0.0036924863783036705,0
+0.011330833426040634,0
+0.003174640220526935,0
+0.5374491285204381,0
+0.004615323400710965,0
+0.6287520579431174,0
+0.1626620436857676,0
+0.0025928484580286532,0
+0.00013954112534242413,0
+0.00992890856643353,0
+0.0035204328386551262,0
+0.23686451112867984,0
+3.053612327907631e-05,0
+0.012305787252324962,0
+0.132910037851284,0
+0.11556192779041914,0
+0.1265023981870888,0
+0.010843044168307971,0
+0.013276592739913542,0
+0.17435106396065794,0
+0.04037392680468693,0
+0.41129149635829726,0
+0.06887790037269988,0
+0.05777827138914504,0
+0.0967029561588461,0
+0.00305604579113448,0
+0.24461784525025415,0
+0.17133785312862287,0
+0.03665920379018785,0
+0.003669369061696915,0
+6.912724408280446e-05,0
+0.025682311206451553,0
+0.002665714338519994,0
+0.006275552947648333,0
+0.0034620979940291363,0
+0.07945614479341616,0
+0.027030975993447677,0
+0.01437632583538884,0
+0.179400235359011,0
+0.012410487616025558,0
+0.03413277560799729,0
+0.05741384898087411,0
+0.10926906159480812,0
+0.029719824486921915,0
+0.34516178172507506,0
+3.2079046034127135e-06,0
+0.01325832496138478,0
+0.21202692480644286,0
+0.0013357320345445335,0
+0.032955788137608535,0
+0.010600898670808814,0
+0.016097856430667273,0
+0.15407411692849388,0
+0.0034182255033697977,0
+0.017611507570368428,0
+0.00022167827153277017,0
+0.017026320695078104,0
+0.10845958114804863,0
+0.2885999428459055,0
+0.29861363416009024,0
+0.04271500473297945,0
+0.00037360693476264697,0
+0.012508984962064536,0
+0.008352087163700565,0
+0.008885763546291506,0
+0.005424638041463828,0
+0.023095990892517466,0
+0.01883745499497912,0
+0.005023143797869827,0
+0.08379473274134423,0
+0.09997969346951054,0
+0.015253958776276194,0
+0.003933951908740111,0
+0.5204567575371235,0
+0.054959740047483496,0
+0.6047970012720343,0
+0.03907892483441501,0
+0.021207815537967467,0
+0.10501265976289342,0
+0.10269973448295737,0
+0.0026894753277372837,0
+0.38919123988341847,0
+0.12577337026673857,0
+0.003325909261266374,0
+0.01880811064134641,0
+7.160714295057281e-05,0
+0.006572644638427189,0
+0.0018214232607257797,0
+0.0564432363867548,0
+0.06594311459255335,0
+0.07462111403480266,0
+0.08343635722455948,0
+0.0006913718997702521,0
+0.0013155572590891982,0
+0.11189238651077564,0
+0.23096375668709307,0
+0.044426864672868834,0
+0.2716573185847243,0
+0.01081339247889435,0
+0.18368420224825097,0
+0.015780602548129435,0
+0.09697210320989273,0
+0.04186989351744845,0
+0.14805210452469664,0
+0.018355315381917325,0
+0.0035647547631508848,0
+0.0075698621709483355,0
+0.09014771391984881,0
+0.014553238330212775,0
+0.0685596122580895,0
+0.023125567076610322,0
+0.017012315336956935,0
+0.02201709005150386,0
+0.2909258734687151,0
+0.01331009892129971,0
+0.03823499959489329,0
+0.141237623338868,0
+0.006894632766570058,0
+0.10364547012719597,0
+0.08717055043072999,0
+0.03267499493922327,0
+0.03824600795779039,0
+0.19796555740213573,0
+0.17189244096015718,0
+0.026749932453708953,0
+0.17847525087699664,0
+0.4103005342611995,0
+0.18977893385918745,0
+0.2870106811079908,0
+0.01617058625318042,0
+0.04026243841957388,0
+0.03299631048410882,0
+0.07766538739029696,0
+0.4838552791187548,0
+0.14352154310496607,0
+0.015836515705618025,0
+0.13673640308376334,0
+0.0615191720268445,0
+0.030697768611572113,0
+0.32231443491006645,0
+0.013240315325086502,0
+0.08333207370761422,0
+0.11618862493491963,0
+0.033584388172657194,0
+0.19097982612564765,0
+0.039192021122063304,0
+0.007379894705807294,0
+0.026288373481079985,0
+0.018024571231412136,0
+0.1702214481985028,0
+0.5810674100698586,0
+0.1456272401219987,0
+0.11758593379360457,0
+0.024951719883950493,0
+0.13717988887439397,0
+0.0030205235531529386,0
+0.00031020743096029914,0
+1.9199268670201558e-06,0
+2.0890463059365637e-05,0
+0.10270816957260157,0
+0.6114210860545428,0
+0.09621990748697651,0
+0.06388786513638696,0
+0.015503968892789086,0
+0.43576158522597463,0
+0.0002558044483520803,0
+0.12890018094415873,0
+0.023391345071384257,0
+0.10707320387105726,0
+0.005336867942612152,0
+0.11828553313795251,0
+0.07891630782992724,0
+0.10705306197207447,0
+0.02520992727156024,0
+0.10595590683135772,0
+0.014811820743318943,0
+0.710905339992846,0
+0.4261160233356877,0
+0.0037652480907197916,0
+0.012521523359444547,0
+0.002470651303852455,0
+0.11113217916084746,0
+0.2879135986958495,0
+0.4276819518432247,0
+0.2271700989524154,0
+0.005935096802500155,0
+0.09029125933187457,0
+0.00011911443430455845,0
+0.01147492975203014,0
+0.1307944712481729,0
+0.3279893852773915,0
+0.002210072265492834,0
+0.050071996736848014,0
+0.01897447415832256,0
+0.01709490873872866,0
+0.04095093432123177,0
+0.0205147230799408,0
+0.0020118732676919927,0
+0.0011638790056055274,0
+0.037881057054182404,0
+0.002294358705731113,0
+2.693148142249058e-08,0
+0.4539141192064425,0
+0.03712566239550867,0
+0.07261297475133835,0
+0.08548842898852856,0
+0.0008867179942387704,0
+0.0025618427018055455,0
+0.30542303231267154,0
+0.014301471591053227,0
+0.033340487629525295,0
+0.0018216383121200622,0
+0.409105101197655,0
+0.12608970072578746,0
+0.06780027033923605,0
+0.10126289297798104,0
+0.07038308010944444,0
+0.03248737354011123,0
+0.0619442052344575,0
+0.00827521834158675,0
+0.07208909460938752,0
+0.0011751426213853907,0
+0.0012704375560556188,0
+0.001339007181943581,0
+0.012332503071064005,0
+0.15538222356522208,0
+0.06223291840281281,0
+0.025043969645395868,0
+0.04782364333027638,0
+0.3202220584735393,0
+0.002236291918957715,0
+0.2154025526261975,0
+0.013148114348621943,0
+0.053065252778249195,0
+0.004263115522231268,0
+0.665787716146957,0
+0.16811676079286253,0
+0.3579000657687307,0
+0.14940409642179936,0
+0.06755091242092351,0
+0.05602561807459768,0
+0.019273160489231916,0
+8.462523915446596e-05,0
+0.030852374934778763,0
+0.016688741213454025,0
+0.019633015857394284,0
+0.05451747676468995,0
+0.12101124819225648,0
+0.0011918137443737065,0
+1.7712025729246817e-05,0
+0.0334246730181978,0
+0.0005581891338800584,0
+0.022900770942984598,0
+0.014056468510081965,0
+0.03581497224876864,0
+0.13892991068326274,0
+0.12410899615674162,0
+0.026759500362162698,0
+0.03013654482942066,0
+0.2634763105371433,0
+0.28440185193824064,0
+0.06362701517681932,0
+0.16571394005183743,0
+0.00500789483623041,0
+0.03387521436664734,0
+0.16540768403129902,0
+0.03895444606375337,0
+0.11973611590858117,0
+0.2190702886149271,0
+0.15454057783927608,0
+0.09147516623799956,0
+0.020417945148593065,0
+0.027158839902001047,0
+0.02652314323190591,0
+0.19142234710255535,0
+0.001673725785296041,0
+0.006789995694482245,0
+0.09397082826525315,0
+0.1107573840361002,0
+0.004209474353074483,0
+0.25094428093687166,0
+0.0007285486269277433,0
+0.04095392064537957,0
+0.18445967352158338,0
+0.02297424895030371,0
+0.002929655926830526,0
+0.048090713800582365,0
+0.29703639627608686,0
+0.0026644670507656714,0
+0.29759769652548995,0
+0.11465963381226447,0
+0.047028490770944925,0
+0.07018672902200415,0
+0.15684328961923388,0
+0.20358122249837368,0
+0.10465151920406987,0
+0.029894105563377286,0
+0.03289461234601609,0
+0.0057873572590404114,0
+0.0033359156515334262,0
+0.4332871099006647,0
+0.17530805274093492,0
+0.4008767751900229,0
+0.2743718427236553,0
+0.01586756728725051,0
+0.025104482775060832,0
+0.001890122502518965,0
+0.035184317714869136,0
+0.014604951937605904,0
+0.012273379074002921,0
+0.0571072401428165,0
+0.03275553201358914,0
+9.273739406329557e-06,0
+0.0006986977915676691,0
+0.017510250444328003,0
+0.012783530971695822,0
+0.0072600472754339685,0
+0.001217976324119906,0
+0.5487684783379848,0
+0.0017980865681195615,0
+0.0006988968149433307,0
+0.01734438127565454,0
+0.4392488501214354,0
+0.0007245411284802038,0
+0.03218896437188826,0
+0.021905723022861145,0
+0.08937530163182619,0
+0.07295895938690614,0
+0.08712883326192652,0
+0.0016585685962264194,0
+0.0035890060464101926,0
+0.004110044216184187,0
+0.003393360216324276,0
+0.00801636114532275,0
+0.41715766477257554,0
+2.756065601471545e-06,0
+0.01037869444776081,0
+0.029993704892865236,0
+0.004336838112477695,0
+0.14096128224756757,0
+0.24030874970886162,0
+0.00027878419250944043,0
+0.12487250454994318,0
+0.0978149912958626,0
+0.2501940453793484,0
+0.072307827895069,0
+0.0651660201966009,0
+0.2153207257730149,0
+0.012931313243206403,0
+0.5635473691470596,0
+0.10328903394877183,0
+0.05336506201410336,0
+0.02209893449953932,0
+0.0031764158967287613,0
+5.356108381594633e-06,0
+0.08657503900027372,0
+0.01989556159904312,0
+0.3004911318905655,0
+0.008501953226287027,0
+0.3890232417685894,0
+0.00386310455483922,0
+0.10362013815352374,0
+0.006310343388514004,0
+0.1428956410744074,0
+0.07532161491295873,0
+0.17107735401598045,0
+0.004279896212876616,0
+0.29678482585843613,0
+0.13604029776613233,0
+0.008275722892881494,0
+9.02142077867024e-05,0
+0.12835330250016266,0
+0.2474053354670506,0
+0.118877943444527,0
+0.12857963868774128,0
+0.01254399892378254,0
+0.027172658287503336,0
+0.070238509804602,0
+0.40865872583584106,0
+0.09661439509799234,0
+3.621453808762361e-05,0
+0.11370728977677665,0
+0.9999576225469046,0
+2.049575891195088e-05,0
+0.32832646557055606,0
+0.22465038956334368,0
+0.08422014945381032,0
+0.12034451088611893,0
+0.08400044201123633,0
+0.01865540403319529,0
+0.09020890772760361,0
+0.1546527252573254,0
+0.12934147861055018,0
+0.11787752199369883,0
+0.033720948153718955,0
+0.2580856765513321,0
+0.027416150043664444,0
+1.846787668177602e-05,0
+0.21508113771396933,0
+0.010935091078476112,0
+0.20632373832492582,0
+0.0015180021976888855,0
+0.19185038829294274,0
+0.048002083601813,0
+0.1406469625548104,0
+0.0009142457140069032,0
+0.006132766519005453,0
+0.18597020924136135,0
+0.1596870999712266,0
+0.12810790756252927,0
+0.0057552598612900545,0
+0.08120242519470694,0
+0.002447759329513948,0
+0.0816199607613133,0
+0.14313788097789654,0
+0.004926652816913084,0
+0.007769315486932925,0
+0.11434827790720928,0
+0.4099747396689294,0
+0.47987436358168595,0
+0.038947473200962986,0
+0.08427242177574776,0
+0.013905097949533651,0
+0.30627736104344405,0
+0.00033055792241245966,0
+0.026965531824613725,0
+0.023979696211725788,0
+0.22204635986566873,0
+0.15328835898299772,0
+0.09759513440625214,0
+0.06094334921217951,0
+0.0954532929611953,0
+0.15002998503907322,0
+0.02753049137261494,0
+0.00020519198435578687,0
+0.03721063052839018,0
+0.3252700071775518,0
+0.0316532592180324,0
+0.2754190082265435,0
+0.07958185308429572,0
+0.07286300440447276,0
+0.017514348531716056,0
+0.003168685854927792,0
+0.0011825190200375874,0
+0.2462843943383955,0
+0.3899565784718348,0
+0.1224582123165183,0
+0.0017018840174172988,0
+0.0017636457890853256,0
+0.0015528812405063961,0
+0.20343966898659444,0
+0.044063473071914945,0
+0.03136357186961464,0
+9.013719851413645e-05,0
+0.5924434379363511,0
+0.182095781202381,0
+0.07599331289834284,0
+0.030431260460449888,0
+0.0006536474853362193,0
+0.19766280500023345,0
+0.12345938517616359,0
+0.22674918548158168,0
+1.769164140944297e-05,0
+0.010282587830764673,0
+0.06111066565065434,0
+0.07192975708307582,0
+0.17932204061139145,0
+0.10708239499264396,0
+0.056981728713409244,0
+0.001515657647144243,0
+0.20438936167091573,0
+0.07395880232923027,0
+0.0014853122178624906,0
+0.36654919670059527,0
+0.04667995873302157,0
+0.04497658167665424,0
+0.0365416670326811,0
+0.16742773202034025,0
+0.023188201662271257,0
+0.1100688298321009,0
+0.06396271903635595,0
+0.0196882490985344,0
+0.0002212534744622157,0
+0.032897972736408085,0
+0.0005720697317089723,0
+0.02851371892312688,0
+0.08037567728067016,0
+0.1007577779157088,0
+0.06467905356924403,0
+0.18682123978161622,0
+0.0010977472674778927,0
+
+0.05510130762059673,0
+0.0024992902475185494,0
+0.05199623310349373,0
+0.30350662928138716,0
+0.009209132392153038,0
+0.04713141039732058,0
+0.06407690411503006,0
+0.20983137151776496,0
+0.22871360394294152,0
+0.33473984298360204,0
+0.12938177767125095,0
+0.1967029861267577,0
+0.19675006100569017,0
+0.24594122806147573,0
+0.0017857395453924926,0
+0.00962681651321255,0
+0.0037885302464279597,0
+1.4399186178504517e-05,0
+0.08278207440561056,0
+0.11745878007822934,0
+0.029021216398082122,0
+0.11037423349175775,0
+0.0005595289704281495,0
+0.07568729649053409,0
+0.1902425641096958,0
+0.01645767824855439,0
+0.023188415851575935,0
+0.013449109794587485,0
+0.001184523376106725,0
+0.0024228770859687078,0
+0.09614441411894983,0
+0.0021087390123646567,0
+2.0124463743098927e-05,0
+6.4161985341797764e-06,0
+0.3021275823680744,0
+0.052781709337979286,0
+0.63890977138859,0
+0.11485138197898895,0
+0.31098383375478994,0
+0.1541089527888184,0
+0.19433178079908348,0
+0.04398059644194245,0
+0.11375712821733286,0
+0.20688115192893827,0
+0.011501544951809373,0
+0.3851074009793772,0
+0.05417327095258877,0
+0.004227909240222257,0
+0.009505328883454242,0
+0.02887599508314464,0
+0.02539042462349852,0
+0.025222794458330217,0
+0.09181022120836625,0
+0.32766670285290694,0
+0.00872329113896481,0
+0.007242816760567305,0
+0.06715600189296922,0
+0.0026763429961377348,0
+0.1391344562977736,0
+0.0005577319844612615,0
+0.023838008126637115,0
+0.016220574661948414,0
+0.002499518008564111,0
+0.015384421872272175,0
+0.0005899992610986386,0
+0.20693427474092713,0
+0.03757632354587532,0
+0.02926138683346773,0
+0.0755574491056178,0
+0.09690404084628382,0
+0.0804921454637689,0
+0.18902504442873974,0
+0.1901319338731491,0
+0.01593596729499298,0
+0.45032583672047155,0
+0.21226835549576822,0
+0.06475476486099349,0
+0.0569308777677953,0
+0.0923285209335573,0
+0.057626513289753045,0
+0.03584085106943275,0
+0.310372357670507,0
+0.3157209887673856,0
+0.7306113310692637,0
+0.17216225079803193,0
+0.0045804632791131205,0
+0.013121853118941238,0
+0.12240738001110667,0
+0.015516272561783877,0
+0.03805825871971311,0
+0.0552652573675512,0
+0.0020304338431325194,0
+0.0022273006642439985,0
+0.060696077878780105,0
+0.08703466721427358,0
+0.03188060049055241,0
+0.03656226998752609,0
+0.0012741283422162111,0
+0.11510520013417011,0
+0.07313847868479409,0
+0.18440777188865637,0
+0.027413722131086293,0
+0.1637050697568488,0
+0.02200703123956925,0
+0.06836412344084725,0
+0.026004576042795345,0
+0.19716831205983115,0
+0.010053914025624387,0
+0.0002015252496107733,0
+0.7970945258784451,0
+0.010214056124563688,0
+0.05463658559290389,0
+0.010470215917126423,0
+0.04770410921208603,0
+0.014389061576758216,0
+0.012158461674915626,0
+0.0670799736777263,0
+0.010117426408894046,0
+0.1093631325798046,0
+0.6795115966536046,0
+0.00015047251884465804,0
+0.40353430064394863,0
+0.1117482903649382,0
+0.12050171359740718,0
+0.022407504701602778,0
+3.354095566992747e-05,0
+0.02817532751979319,0
+0.23479550583410264,0
+0.028532129188789473,0
+1.4893897223141648e-05,0
+0.332535670918932,0
+0.010314678867778659,0
+0.021157783626195074,0
+0.0009232463128742742,0
+0.04042225611857554,0
+0.0015396468189899724,0
+0.4007965605253322,0
+0.01815980579974897,0
+0.007145358129249234,0
+0.0026239434153745495,0
+0.40266109925988236,0
+0.004656244366566819,0
+0.14165150665796214,0
+0.19159225760688958,0
+0.32695690368459046,0
+0.05593879242604012,0
+0.07860520091923943,0
+0.016145669263593426,0
+2.381515458182722e-05,0
+0.4118930975597719,0
+0.03862724325651774,0
+0.00013874067395038385,0
+0.25204424661159097,0
+0.04781090381163138,0
+0.04551063872284104,0
+0.002172935966474395,0
+0.005352953675955507,0
+0.0725519699084733,0
+0.08662340241223729,0
+5.80317078557367e-05,0
+0.7262054491455847,0
+1.927176985043784e-05,0
+0.05065287721778696,0
+0.2977594000126277,0
+0.28603636279753675,0
+0.13332030752998597,0
+0.12957071506488874,0
+0.008984003987397928,0
+0.09246200269277231,0
+0.055203831079532154,0
+0.02656547169466275,0
+0.05955523677184203,0
+0.010855879598495578,0
+0.00016778560392054331,0
+0.05928178902954454,0
+0.09143768231288067,0
+0.12430660571244748,0
+7.293462501422766e-05,0
+0.06457627313685835,0
+0.00589588387877399,0
+0.11830788078867838,0
+0.010955150429511248,0
+0.5921198024095413,0
+0.20506722592551432,0
+0.03398370789630042,0
+0.1861863619493792,0
+0.2082123613648748,0
+0.030989213138756133,0
+0.09197654930056448,0
+0.13189539762382713,0
+0.09714258079022745,0
+0.11052695352516248,0
+0.0006146002495071348,0
+0.026192240968406437,0
+0.013522831863115117,0
+0.10239621277578632,0
+0.05743530755781127,0
+0.0849043001430269,0
+0.16419404264817145,0
+0.009412637949098685,0
+0.00029352101522283426,0
+0.19008635730720028,0
+0.035827438087083635,0
+0.10406727007688554,0
+0.16398052640031946,0
+0.027266446381834585,0
+0.013289451918967585,0
+0.003016118701404092,0
+0.07945254782496317,0
+0.14004191183182374,0
+0.0036066981138259957,0
+0.3675004792059845,0
+0.20194623580221766,0
+0.19870797275424676,0
+0.010109142294904613,0
+0.018216849588406366,0
+0.13713332855739,0
+0.12921454755845216,0
+0.18299562119178794,0
+0.07585624416274685,0
+0.3699697377732637,0
+0.09309545351715874,0
+0.09943987222350367,0
+0.005208769152490848,0
+0.375831076358221,0
+0.012700126404667214,0
+0.009405489493746488,0
+0.0026024066482893604,0
+0.017702084969974205,0
+0.0024108374075455237,0
+0.09165998039591261,0
+0.006284276820702535,0
+0.015097268078945417,0
+0.049322471794150786,0
+0.009097161105419,0
+0.0006930136989533435,0
+0.03106093474813827,0
+0.009831142634546583,0
+0.07474675124196115,0
+0.05294140192075021,0
+0.10045268755080723,0
+0.18980815090173458,0
+0.02853758915718812,0
+0.02826674438457989,0
+0.13910954189407626,0
+0.022009400498942674,0
+0.302377772470363,0
+0.0011546070722792971,0
+0.02284313335405582,0
+0.002881054676097675,0
+0.015283622799853399,0
+0.0031648829195172106,0
+0.0005522998430353614,0
+0.0052021567033474405,0
+0.14222042283352507,0
+0.03461748276283039,0
+0.06613555691791431,0
+0.0022738469516820612,0
+0.15641015661666186,0
+0.05421922230230064,0
+0.0035819519533877263,0
+0.336215977850861,0
+0.0032862986813033445,0
+0.195597269855619,0
+0.12345744076851084,0
+0.004061867878167315,0
+0.01875081558509668,0
+0.111284383668901,0
+0.16662179453357054,0
+0.4188764934919858,0
+0.08858833958760665,0
+0.011711014998382863,0
+0.28601227763067105,0
+0.0005061467494126149,0
+0.029924462405162285,0
+7.998631542705282e-05,0
+0.011650801197309069,0
+0.22260509979029952,0
+0.009266763761697376,0
+0.03602082756269596,0
+0.20123839101223612,0
+0.015507133820372878,0
+0.006073493657173966,0
+4.3032362365159326e-05,0
+0.0006650623825304252,0
+0.12739808701570704,0
+0.1652054528406381,0
+0.06906150904492027,0
+0.003544305748244833,0
+0.0272245935039493,0
+0.12234784691012142,0
+0.22319475220426482,0
+0.23502166870012803,0
+0.00525158877971971,0
+0.011242762864150409,0
+0.08627018972701032,0
+1.2795676654092524e-05,0
+0.25897121905201026,0
+0.23286458718623232,0
+0.14499895947541847,0
+0.0002558143471951447,0
+0.07802695243507805,0
+0.009075246644838391,0
+0.0031815112034560464,0
+0.24723452043251687,0
+0.02862912468411487,0
+0.033922129608975844,0
+0.008761684585784324,0
+0.0037464471353046056,0
+0.17971498733607869,0
+0.24049157443848118,0
+0.21507248429736175,0
+0.03191470733937527,0
+0.12149990064282068,0
+0.02244183911696785,0
+0.01422581948646949,0
+0.0005291523439237313,0
+0.012228052551949175,0
+0.07525766129592354,0
+0.06636090626309052,0
+0.2948690959830014,0
+0.5697043347243211,0
+0.28378929070293324,0
+0.09337495140479275,0
+0.6609716312540667,0
+0.18692768988154884,0
+0.20806999309372495,0
+0.0011711200729839877,0
+0.023559407583915056,0
+0.08005747894290947,0
+0.035353030150218775,0
+0.016478641507464167,0
+0.07464387865415466,0
+0.0007743162595772998,0
+0.2765188836587635,0
+0.7523436267083766,0
+0.020127786394201257,0
+0.011400015856637902,0
+0.030411014282238292,0
+0.04497640392843171,0
+0.029848156659654474,0
+0.08637061396417361,0
+0.3286245981867496,0
+0.053647841777029484,0
+0.34073911103675236,0
+0.006174156051120696,0
+0.40794392147133046,0
+0.07732715303000536,0
+0.06328329741191314,0
+0.06938032477091204,0
+0.0035324564466539038,0
+0.026458633369570002,0
+0.07064809949039821,0
+0.03257946547555722,0
+5.952157920624077e-05,0
+0.10790053517962672,0
+0.0001220496131286547,0
+0.009712570677630733,0
+0.06260396129568317,0
+0.015474605188124135,0
+0.0028396866196816486,0
+0.16261886830911532,0
+0.022567056799937948,0
+0.05788855894289131,0
+0.10647121785928651,0
+0.13932842115366223,0
+0.05127162793866906,0
+0.23315617431692187,0
+0.030587841970980207,0
+0.10969745437610834,0
+0.03781816663444516,0
+0.0526758103137116,0
+0.24313058911236257,0
+0.0020965186084557254,0
+0.187790203955937,0
+0.006186991326162351,0
+0.0017177132608912353,0
+0.006209099830546074,0
+0.10101182321360222,0
+0.0045869879952196175,0
+0.054379959553943244,0
+0.3708615816961771,0
+0.05197191013579722,0
+0.0007958997231652144,0
+0.00576492165117136,0
+0.036621564809308685,0
+0.02380906194336944,0
+0.5270051699003823,0
+0.13695086851559393,0
+0.0018272763790666083,0
+0.08672725615167344,0
+0.016220614291455143,0
+0.13301019472699177,0
+0.13625276925435298,0
+0.14021623317979381,0
+0.07026881772104368,0
+0.07654752662734679,0
+0.03742722936232752,0
+0.3457369663295632,0
+0.09985709960484929,0
+0.2933651409876806,0
+0.015403355772508665,0
+0.15303120880378815,0
+0.4065025198396823,0
+0.0018898468211961308,0
+0.45594080165852163,0
+0.1819087133288615,0
+0.0026401971483842783,0
+0.0007258035773566171,0
+0.03406600589789731,0
+0.002330594001733472,0
+0.12017162349556518,0
+0.07353294657572135,0
+0.17176707548414522,0
+0.0003028089423658517,0
+9.573152259323104e-05,0
+0.00102379146607732,0
+0.031196647619753003,0
+0.05756169940871042,0
+0.013192768418474509,0
+1.2090043668219798e-05,0
+0.039237189586209816,0
+0.13243843353159307,0
+0.027407691452678257,0
+0.007459354423763361,0
+0.024301045887748746,0
+0.030286849272356746,0
+0.13235747606414194,0
+0.05342384122620716,0
+0.006864999058023425,0
+0.22252030376144322,0
+0.012113746459808523,0
+0.14157153817334883,0
+0.2526079502623342,0
+0.013642134260986927,0
+0.07302261240572845,0
+0.019968728960460303,0
+0.11912575417675889,0
+0.039120969494431904,0
+7.641740926352153e-05,0
+0.07517969852508696,0
+0.0029948706108733703,0
+0.012755091569837479,0
+0.11835725982736851,0
+0.004858639791333405,0
+0.02863670988855898,0
+0.46902711194455726,0
+0.15176052621519986,0
+0.2720034693094346,0
+0.11256427743418802,0
+0.01874859521773462,0
+0.02093342402028654,0
+1.483318004100179e-07,0
+0.20805196770864934,0
+0.1231926181047563,0
+0.02390395951355235,0
+0.09639656930461832,0
+0.0020808168258249953,0
+0.46548849703781026,0
+0.19627464692944013,0
+0.008942612421842886,0
+0.05815400558291369,0
+0.007695436331525969,0
+0.2977230857939212,0
+0.0005400417257418083,0
+0.13399756546431615,0
+0.2236556046859235,0
+0.0018990264247464254,0
+0.16396260750781105,0
+0.024192639253910693,0
+0.039027000460178936,0
+0.0012730285193005024,0
+0.17918916430369256,0
+0.002881770591955879,0
+0.003199450797610045,0
+0.09320513009569308,0
+0.09411707035021241,0
+0.23043470273711883,0
+0.2405221435419198,0
+0.12785352769166353,0
+0.06313905891295582,0
+0.16116547760568725,0
+0.0024908615114029595,0
+0.006414717663987703,0
+0.19724577309882643,0
+0.0011568463500703685,0
+0.41562631645733916,0
+0.0005439442532913568,0
+0.20766028569388012,0
+0.009394081402286383,0
+0.34530131897154914,0
+0.20818054183086615,0
+0.18220751543833247,0
+0.06412386116880905,0
+0.03144632733542799,0
+0.00047809627265214935,0
+0.3122309168194662,0
+0.056291603674441915,0
+0.12321502798515112,0
+0.0071429301988793934,0
+0.16545028728213612,0
+0.10948002090510041,0
+0.1251904933531896,0
+0.011601605257119304,0
+0.0005690100866455365,0
+0.14903283044047141,0
+0.08709256760689041,0
+0.03256849000949919,0
+0.009145682716395804,0
+0.07273517995133295,0
+0.18531024750116742,0
+0.29976319971538595,0
+0.20870471011594088,0
+0.3459093039727056,0
+0.000974174730790783,0
+0.16935953421672725,0
+0.4052827946077218,0
+0.022817591834362577,0
+0.13990023916679195,0
+0.02188858740930754,0
+0.058318719449876155,0
+0.05664816605180765,0
+3.867293187685758e-05,0
+0.06481333152753255,0
+0.018369223357808436,0
+0.02272444361006399,0
+0.0214198981751619,0
+0.08204533396268242,0
+0.02432632137202126,0
+0.004832545147145347,0
+0.1269487496172514,0
+0.050156571646628866,0
+0.17898625603979743,0
+0.27827988568650264,0
+9.251654432749273e-05,0
+0.02665288451757522,0
+0.018614559398929285,0
+0.049976016576008205,0
+0.019324786804938997,0
+0.14495861308403282,0
+0.016220845455679693,0
+0.02956038348363439,0
+0.03971537429787258,0
+0.01596031102054027,0
+0.060678520862070776,0
+0.00825142915561912,0
+0.1406316142626037,0
+0.0033226550199798102,0
+0.21448840777454473,0
+0.05659148049019267,0
+0.04445337620143838,0
+0.0026777008279898653,0
+0.7706957828397429,0
+0.004398470623141537,0
+0.01612561079727256,0
+0.07735987433154466,0
+0.03511587707810908,0
+0.07300617262624452,0
+0.0014168488845745753,0
+0.030012088302616147,0
+0.27403263265081623,0
+0.17888700397081364,0
+0.020911126963082775,0
+0.006373489553891741,0
+0.14203318436248674,0
+0.001988996968512966,0
+0.0012200107491598723,0
+0.09024838654253266,0
+0.04987330450850317,0
+0.0002054425205434693,0
+0.10355074010912016,0
+0.048562982105809165,0
+0.10017023425357638,0
+0.029546842473413205,0
+0.12027690015339869,0
+0.016097470363460032,0
+0.24243063611503063,0
+0.001521976527529449,0
+0.004757271992188,0
+0.13817438241538907,0
+0.11860797746785734,0
+0.16571397133329863,0
+0.001036221724419265,0
+0.01137893808894071,0
+0.007538071576606212,0
+0.032744400387781994,0
+0.07915741016724505,0
+0.0055964451153089146,0
+0.021420031081027035,0
+0.04013725365857672,0
+0.003582282900035329,0
+0.00038890129040729314,0
+0.007530342741711482,0
+0.0800299942670517,0
+0.27899111917100294,0
+0.003687658663069385,0
+0.03435374507685507,0
+0.03588305889234856,0
+0.020028696583633092,0
+0.06497602468679367,0
+0.022633021468260284,0
+0.33202118026557775,0
+0.336051934920938,0
+0.02682155133121386,0
+0.05072392158732578,0
+0.06486446052293957,0
+0.01219232357869987,0
+0.008216144185322691,0
+0.00861553139214261,0
+0.23400738101481067,0
+0.20025797796180705,0
+0.0031784650786279233,0
+0.05756191125983408,0
+0.035965732733397954,0
+0.05895464774259916,0
+0.007049028232047419,0
+0.32548375287624254,0
+0.04717886832468879,0
+0.009137591541047908,0
+0.2097855276980345,0
+0.1667739709148337,0
+0.24277298150053306,0
+0.019876646702815717,0
+0.08756514805218268,0
+0.2206902071813967,0
+0.09772297671863295,0
+0.5378554421693232,0
+0.004746895477239629,0
+0.3250150822207002,0
+0.02012347355598281,0
+0.006192070198496161,0
+9.800624023770623e-05,0
+0.15663019766204722,0
+0.008574998345001712,0
+0.007222862551745229,0
+0.007482606097140745,0
+0.0004054927020815004,0
+0.002394306862810625,0
+0.11319722743526577,0
+0.00022014989430479796,0
+0.05326739525543397,0
+0.18326285098929934,0
+0.3607085530552762,0
+0.2835650481299026,0
+0.01822975312904797,0
+0.044806721064040864,0
+0.02957535238270015,0
+0.10384154027062334,0
+0.027267009027711175,0
+0.0027514570994996287,0
+0.007101570064946545,0
+0.024855430433167187,0
+0.07201929000367922,0
+0.011105416720929977,0
+0.013907672674335386,0
+0.07385241276629342,0
+0.0039037904527870204,0
+0.12077789504200272,0
+0.13835592391748347,0
+0.008222298454494932,0
+0.0018587691520803365,0
+0.033997520203808876,0
+0.2247502028062825,0
+0.10700368263171119,0
+0.23546147481780602,0
+0.005700472804265529,0
+0.043160658985384376,0
+0.037239564772357105,0
+0.4104325287011946,0
+0.010793784548487076,0
+0.0013683701707046087,0
+0.11989509369590123,0
+0.08473394675519821,0
+0.0008237570138891972,0
+0.013942714201973225,0
+0.026445142115048854,0
+0.050090604224472715,0
+0.002853566897917265,0
+0.009567230897378567,0
+0.01952016927340818,0
+0.01502884186448114,0
+0.04738030000391318,0
+0.15740591148071814,0
+0.06556358513303907,0
+0.01385656295273833,0
+0.19069536253858102,0
+0.012808610899011433,0
+0.07125224791846327,0
+0.00035759203112504823,0
+0.04874711334604732,0
+0.9813257677916815,0
+0.03606066330433139,0
+0.05561325580619886,0
+0.040954588509716186,0
+0.010875682695070426,0
+0.006291126884229746,0
+0.17189525112015341,0
+0.2157804372879884,0
+0.04706293854717671,0
+0.20539686885050865,0
+0.03841839401742008,0
+0.08029588153698809,0
+0.021917776066568334,0
+0.02257500553844347,0
+0.10219992748943436,0
+0.04921355066937188,0
+0.07114113723690164,0
+0.00015283463606748188,0
+0.006431086714802138,0
+0.02396247703072863,0
+0.23493235382646524,0
+0.00025109838298954774,0
+0.07576680375377645,0
+0.20975553016711185,0
+0.18588418793155817,0
+0.0017221507371746332,0
+0.0012898961065635575,0
+0.03096787432003878,0
+0.08205571931656416,0
+0.08824040892949389,0
+0.1506185724094247,0
+1.2754877678808303e-05,0
+0.2512352175035285,0
+0.09579097738103849,0
+0.01760183455530666,0
+0.08262737225230103,0
+0.04649570539473795,0
+0.005378007660387353,0
+0.04332481338771595,0
+0.010019072754348558,0
+0.1215570103635993,0
+0.08963143935113801,0
+0.0038625741085171438,0
+0.07083256097966298,0
+0.2642304542626219,0
+0.008649158284001483,0
+8.037273319490161e-05,0
+0.17061907313750654,0
+8.030482460116773e-05,0
+0.5960684768112069,0
+0.03472525369154304,0
+0.03324146588972614,0
+0.03287330775541476,0
+0.2930865754878803,0
+0.1328693378666026,0
+0.14130386694250083,0
+0.006773844120885668,0
+0.0011428225036155093,0
+0.13790638712512285,0
+0.21098373898266823,0
+0.1120971685964671,0
+0.05185372405882136,0
+0.0007645763607132261,0
+0.0004342895703848612,0
+0.01292943924797747,0
+0.060975435972459635,0
+0.027142038146949737,0
+0.30248537043171336,0
+0.003307486533462157,0
+0.0301962571022203,0
+0.10313983469498425,0
+0.2855157697870132,0
+0.2133659876945806,0
+0.0005277487598209129,0
+0.031247873436909553,0
+0.015200736695788333,0
+0.004404910187171528,0
+0.14238476747249712,0
+0.10873153297991671,0
+0.16370697514279622,0
+0.004958921626081024,0
+0.0012675720681445608,0
+0.2555806843502296,0
+0.24442106301517752,0
+0.0015589851236861578,0
+0.10567401398470407,0
+0.01293272431441867,0
+0.07700251598424938,0
+0.2937721022042736,0
+0.01924368809333453,0
+0.8696099858928434,0
+0.4992476017696209,0
+0.0011396969915634992,0
+0.01454872369960663,0
+0.24554517386530086,0
+0.004198881626762455,0
+0.01667572659291284,0
+0.020651289254223423,0
+0.00823813222038604,0
+0.2801494509239798,0
+0.05955028445552814,0
+0.0016736149898159125,0
+0.15450791622154708,0
+0.007604778004613041,0
+0.6630698069959128,0
+0.05946687378209552,0
+0.04170135974263782,0
+0.01917464711605103,0
+0.10543653767418652,0
+0.000600603481130923,0
+0.3071513408389114,0
+0.05589505265833812,0
+7.830449863885537e-05,0
+0.11040996671545192,0
+0.03234037425903374,0
+0.8282039416028635,0
+0.15773014883145786,0
+0.0045792256089180255,0
+0.49224764006503047,0
+0.12496876529255425,0
+0.3884613548639774,0
+0.08891637204538895,0
+0.001005813915970081,0
+0.041411602546153656,0
+0.15793837363698643,0
+0.0001972000148616314,0
+0.014302206918384594,0
+0.05873270847395114,0
+0.2123179894434446,0
+0.15387434718552984,0
+0.0071757993294753655,0
+0.25036566077570865,0
+0.27661846491601977,0
+0.3835893883438058,0
+0.03723729171035712,0
+0.003319815005808948,0
+0.019042061959632255,0
+0.05166456416793299,0
+0.49593137323716663,0
+0.34280696790105364,0
+0.049160172205037954,0
+0.0024743040724179797,0
+0.07077943403083745,0
+0.09268111416772667,0
+0.011193888876456556,0
+0.12192410663049917,0
+0.013555214379198747,0
+0.09075352805617683,0
+0.01818414062271132,0
+0.003907474463120336,0
+0.0536712678429883,0
+0.12728005466946898,0
+0.0071633321458060934,0
+0.02139954893812692,0
+0.00018765768206534115,0
+0.014089708846408122,0
+0.01999300556908817,0
+0.01893755939294629,0
+0.0063884899801678495,0
+0.15316520543255716,0
+0.45184052405331726,0
+0.01710897499435254,0
+0.01861268447132567,0
+0.1252489353672573,0
+0.0323980103875207,0
+1.6149194600710689e-06,0
+0.48142655471731277,0
+0.01933901552286608,0
+0.019580178190053785,0
+0.010235006666360773,0
+0.007388286019735046,0
+0.03441653906305487,0
+0.007932825290179874,0
+0.5562170364577763,0
+0.1614309064378355,0
+0.047664607953871584,0
+0.20287614280424573,0
+0.27093438158510874,0
+0.4501668070076715,0
+0.39734759529590596,0
+0.11068473831675438,0
+0.1191697421147776,0
+0.0004196914493060027,0
+0.0018660867865937982,0
+0.1317053670395355,0
+0.1334070399684393,0
+0.009952853890807698,0
+0.09132761139414781,0
+0.005513612754853046,0
+0.11905341642293439,0
+0.01142526392094675,0
+0.033978973236215154,0
+0.02151998880482988,0
+0.11291719106379565,0
+0.0037771226954521793,0
+0.019360946056488085,0
+0.09197345971455419,0
+0.002311254732711775,0
+0.2533750301612772,0
+0.09273461643334785,0
+0.07004472181353932,0
+0.0015098358015600902,0
+0.01096816084051509,0
+0.08486948945224519,0
+0.024206734735648487,0
+0.01450576171056939,0
+0.01379008488996144,0
+0.0008414529586098576,0
+0.01925775844204075,0
+4.456779489858597e-06,0
+0.011275699726094943,0
+0.11139222943679039,0
+0.1062916725790322,0
+0.12165463034589999,0
+0.04000051974456585,0
+0.07689591891942248,0
+0.15294332392506638,0
+0.010433158442782258,0
+0.040988599325744036,0
+0.037708847516280744,0
+0.008938006155268408,0
+0.05506750323617073,0
+0.02347722595319137,0
+0.26452590893763284,0
+0.2824318306989198,0
+0.01233690606321553,0
+0.05399024248801211,0
+0.29083524659703586,0
+0.06361803919992479,0
+9.432573481889933e-06,0
+0.010550523787310103,0
+0.060623078021697294,0
+0.15072380343680353,0
+0.8311857705952258,0
+0.028987199088828648,0
+0.1135581465269753,0
+0.05843154442472824,0
+0.0001773896353873306,0
+0.04356475733370062,0
+0.032899308920527455,0
+0.04100628286627954,0
+0.27985885502380786,0
+0.05895525927434466,0
+0.008490761650613073,0
+0.21808432513074805,0
+0.14673528184717205,0
+0.2923512534341204,0
+0.14111649211298374,0
+0.04699420283810554,0
+0.2497180441785734,0
+0.04955640827092071,0
+0.0009016954061073282,0
+0.177080717089041,0
+0.11243155550452541,0
+0.05225929036056206,0
+0.26339405982812625,0
+0.17299543042321838,0
+0.06262591379825926,0
+0.013831945881632363,0
+0.004828089867903248,0
+0.21508753870449934,0
+2.5986268960767807e-06,0
+0.0010157857518160475,0
+0.16233194317097116,0
+0.0806432062673493,0
+0.0078007811264357175,0
+0.007459794636095439,0
+0.10463435470000107,0
+0.08505436461500912,0
+0.25707070178054947,0
+0.3122101206983621,0
+0.05073269846693669,0
+0.03161707823546571,0
+0.15552188047503687,0
+0.0029082933099647437,0
+0.2989473854396,0
+0.0002227191884879542,0
+0.6457590575014743,0
+0.6506248685407859,0
+0.07218128285957245,0
+0.0006212634199082563,0
+0.0590622080361883,0
+0.01840947144991361,0
+0.053836098169009014,0
+0.0906064288809064,0
+0.004761624003716935,0
+0.003397003012499828,0
+0.032589740696246344,0
+0.11162279441408404,0
+0.024771832309757817,0
+0.00010638871160673872,0
+0.4276128470408162,0
+0.07431382692347589,0
+0.09667366959191323,0
+0.0031907674548625016,0
+0.006161311591052616,0
+0.00012479569674145305,0
+0.0033424974096723575,0
+0.021848126276096676,0
+0.11445795043902514,0
+0.006102276516546641,0
+0.0007108152830421845,0
+0.059340482649809415,0
+0.36119659565037054,0
+0.1625891870540241,0
+0.07978725092810167,0
+0.01927501489772813,0
+0.05880531386811808,0
+0.16252255559281742,0
+0.11532569448918908,0
+0.03547796053854382,0
+0.013076715593553449,0
+0.02397618578950834,0
+0.005393081535557671,0
+0.16104383664771188,0
+0.31703884457740755,0
+0.03294368091266281,0
+0.3412664120942494,0
+0.08141216745505922,0
+0.04904851126633321,0
+0.08150581300541196,0
+0.012293235241769656,0
+0.004260767009948855,0
+0.018656859322116588,0
+0.015560082544071568,0
+0.2582283393645025,0
+0.015551459102930584,0
+0.1635205655856974,0
+0.33409130943440085,0
+0.04680625943455678,0
+0.14410787949418488,0
+0.10484655449701333,0
+0.012306285992457115,0
+0.11491925680581291,0
+0.04664481860501301,0
+0.17207199652807115,0
+0.1101588742907648,0
+0.13061939073266812,0
+0.12067741854734086,0
+0.11605554943611758,0
+0.123353384279228,0
+0.059903685385476045,0
+0.021022198419021917,0
+0.2967265009938492,0
+0.16044331449156862,0
+0.12985620785647164,0
+0.033171534580439685,0
+0.002171139824603165,0
+0.0011512513982711368,0
+0.01899514414035687,0
+0.2260780563342077,0
+0.23947321628919696,0
+0.12639214676508054,0
+0.058302087692788815,0
+0.010106378678706689,0
+0.032915881018928186,0
+0.004527862538034055,0
+0.394985670723632,0
+0.03492959296814909,0
+0.009024662836984195,0
+0.07723849723129686,0
+0.4443515458241995,0
+0.0341641949136943,0
+0.00312291702260424,0
+0.04145580089838003,0
+0.0016740588837606141,0
+0.07219413920955467,0
+0.019749814312701997,0
+0.06909195312881553,0
+0.14234793105799856,0
+0.02951435461414888,0
+0.02151071647289747,0
+0.40845634798215247,0
+0.03270038743773179,0
+0.01051602836106123,0
+0.0036353406993324044,0
+0.24479341339186406,0
+0.0922524158427058,0
+0.007609949928759724,0
+0.9845348634224071,0
+0.1844780475002661,0
+0.01796192341793006,0
+0.12482945699305419,0
+0.010683034919245226,0
+0.020847242749279182,0
+0.00016485220270552923,0
+0.028022850849219804,0
+0.05374898799619021,0
+0.1146292176406802,0
+0.04416562157641582,0
+0.30785418096105965,0
+0.0003146631162551993,0
+0.0004648929109325818,0
+0.23890481629604415,0
+0.05454122176324847,0
+0.045203596556120954,0
+0.017013389378744886,0
+0.20603574229388183,0
+0.0018481014920251958,0
+0.32490143180934666,0
+0.01974100338718781,0
+0.012732184015392372,0
+0.11465529445122977,0
+0.09955282572129157,0
+0.12489161354463996,0
+0.3438434323374667,0
+0.015523303572837082,0
+0.0020783512904667847,0
+0.056130311485173924,0
+0.19763102224038523,0
+0.001198249060875464,0
+0.5324621119270102,0
+0.2306890615309814,0
+0.06311564147605987,0
+0.015044924770797741,0
+0.08151300602763097,0
+0.0034465936468811714,0
+0.013623236492299703,0
+0.028719605009823956,0
+0.11173724022281181,0
+0.015744560097943942,0
+0.2499421379441324,0
+0.0001870187246285791,0
+0.020663290531080715,0
+0.5430072842729441,0
+0.0029840663572835097,0
+0.2722338950854907,0
+0.44690199814147213,0
+0.1923825187681169,0
+0.030832234106786382,0
+0.009287052841713094,0
+0.022405120869306037,0
+0.33168491866835675,0
+0.5012859774757803,0
+0.06229897054583041,0
+0.09404341941500326,0
+0.034199757909824074,0
+0.07532639197596197,0
+0.13143082534441825,0
+0.00796334071376774,0
+0.31835157572814743,0
+0.008050473136140344,0
+0.0010360416450961988,0
+0.017499076597153124,0
+0.0006428540324816474,0
+0.06839953373093685,0
+0.08132226458112138,0
+0.006764081953170471,0
+0.029889140855852692,0
+0.004018535332289273,0
+0.06642856729991428,0
+0.005321270968147688,0
+0.04598725258722518,0
+0.08413281311078245,0
+0.15532193670225175,0
+0.004692225136728958,0
+0.005689602772778557,0
+0.0597562105195649,0
+0.008012080044500896,0
+0.0016451753025147088,0
+0.18580790246476397,0
+0.05793832477805685,0
+0.002771158964171904,0
+0.06625027699259786,0
+0.005235564749311017,0
+0.019410172082408132,0
+0.03901425394362774,0
+0.0892966684034898,0
+0.0910724715456121,0
+0.024101762987565126,0
+0.017943902547420277,0
+0.04855159879133521,0
+0.10012898264337582,0
+0.03829289952260642,0
+0.40472806886816565,0
+0.017209469318595953,0
+0.054044393330772156,0
+0.12354224851511941,0
+0.0036404605770387127,0
+0.03217751309968915,0
+0.02059347881178935,0
+0.08903264492713109,0
+0.018187698704118207,0
+0.14525624831071693,0
+0.02069199558217528,0
+0.06354451515308542,0
+0.22858159694863578,0
+0.0047785685055682856,0
+0.03606817097533001,0
+0.0008839382547077077,0
+0.06527470298942196,0
+0.0005190934203459028,0
+0.18478231756229785,0
+0.0713362717863785,0
+0.2091226729986896,0
+0.09833577689476601,0
+0.11472923252982414,0
+0.006470441660362874,0
+0.01324098144749274,0
+0.6090836327082118,0
+0.3065024669623787,0
+0.04712813310470439,0
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/example.py b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/example.py
new file mode 100644
index 0000000000000000000000000000000000000000..3fc1412450d48f281869fbf4987315a6813fe575
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/example.py
@@ -0,0 +1,36 @@
+import pandas as pd
+import numpy as np
+import os
+from omnibin import generate_binary_classification_report, ColorScheme
+
+# Define paths
+RESULTS_DIR = os.path.join(os.path.dirname(__file__), "results")
+
+# Ensure results directory exists
+os.makedirs(RESULTS_DIR, exist_ok=True)
+
+# Generate random data
+data = pd.DataFrame({
+ 'y_true': (y:=np.random.choice([0,1],1000,p:=[.9,.1])),
+ 'y_pred': np.where(
+ y,
+ np.random.beta(3,1.5,1000)*.9+.1, # Positive cases: less skewed towards 1.0
+ np.random.beta(1.5,3,1000)*.9+.1 # Negative cases: less skewed towards 0.1
+ )
+})
+
+y_true = data['y_true'].values
+y_scores = data['y_pred'].values
+
+# Generate comprehensive classification report
+report_path = generate_binary_classification_report(
+ y_true=y_true,
+ y_scores=y_scores,
+ output_path=os.path.join(RESULTS_DIR, "classification_report.pdf"),
+ n_bootstrap=1000,
+ random_seed=42, # Set a fixed random seed for reproducibility
+ dpi=72,
+ color_scheme=ColorScheme.DEFAULT
+)
+
+print(f"Report generated and saved to: {report_path}")
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/pyproject.toml b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/pyproject.toml
new file mode 100644
index 0000000000000000000000000000000000000000..def608be3c97f6335da2391461b8baf32416eb15
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/pyproject.toml
@@ -0,0 +1,31 @@
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[project]
+name = "omnibin"
+version = "0.1.5"
+description = "A package for generating comprehensive binary classification reports with visualizations and confidence intervals"
+readme = "README.md"
+requires-python = ">=3.11"
+license = "MIT"
+authors = [
+ { name = "Felipe Campos Kitamura", email = "kitamura.felipe@gmail.com" }
+]
+classifiers = [
+ "Programming Language :: Python :: 3",
+ "License :: OSI Approved :: MIT License",
+ "Operating System :: OS Independent",
+]
+dependencies = [
+ "numpy>=1.21.0",
+ "pandas>=1.3.0",
+ "scikit-learn>=1.0.0",
+ "matplotlib>=3.4.0",
+ "scipy>=1.7.0",
+ "seaborn>=0.11.0",
+]
+
+[project.urls]
+Homepage = "https://github.com/kitamura-felipe/omnibin"
+Repository = "https://github.com/kitamura-felipe/omnibin.git"
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/results/classification_report.pdf b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/results/classification_report.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6f42303f67412c4476f85b7884b59c010458ef1d
Binary files /dev/null and b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/results/classification_report.pdf differ
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.gitattributes b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..a6344aac8c09253b3b630fb776ae94478aa0275b
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/.gitattributes
@@ -0,0 +1,35 @@
+*.7z filter=lfs diff=lfs merge=lfs -text
+*.arrow filter=lfs diff=lfs merge=lfs -text
+*.bin filter=lfs diff=lfs merge=lfs -text
+*.bz2 filter=lfs diff=lfs merge=lfs -text
+*.ckpt filter=lfs diff=lfs merge=lfs -text
+*.ftz filter=lfs diff=lfs merge=lfs -text
+*.gz filter=lfs diff=lfs merge=lfs -text
+*.h5 filter=lfs diff=lfs merge=lfs -text
+*.joblib filter=lfs diff=lfs merge=lfs -text
+*.lfs.* filter=lfs diff=lfs merge=lfs -text
+*.mlmodel filter=lfs diff=lfs merge=lfs -text
+*.model filter=lfs diff=lfs merge=lfs -text
+*.msgpack filter=lfs diff=lfs merge=lfs -text
+*.npy filter=lfs diff=lfs merge=lfs -text
+*.npz filter=lfs diff=lfs merge=lfs -text
+*.onnx filter=lfs diff=lfs merge=lfs -text
+*.ot filter=lfs diff=lfs merge=lfs -text
+*.parquet filter=lfs diff=lfs merge=lfs -text
+*.pb filter=lfs diff=lfs merge=lfs -text
+*.pickle filter=lfs diff=lfs merge=lfs -text
+*.pkl filter=lfs diff=lfs merge=lfs -text
+*.pt filter=lfs diff=lfs merge=lfs -text
+*.pth filter=lfs diff=lfs merge=lfs -text
+*.rar filter=lfs diff=lfs merge=lfs -text
+*.safetensors filter=lfs diff=lfs merge=lfs -text
+saved_model/**/* filter=lfs diff=lfs merge=lfs -text
+*.tar.* filter=lfs diff=lfs merge=lfs -text
+*.tar filter=lfs diff=lfs merge=lfs -text
+*.tflite filter=lfs diff=lfs merge=lfs -text
+*.tgz filter=lfs diff=lfs merge=lfs -text
+*.wasm filter=lfs diff=lfs merge=lfs -text
+*.xz filter=lfs diff=lfs merge=lfs -text
+*.zip filter=lfs diff=lfs merge=lfs -text
+*.zst filter=lfs diff=lfs merge=lfs -text
+*tfevents* filter=lfs diff=lfs merge=lfs -text
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/README.md b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..3c18c272877ba223eb36cad737e80f04415d9765
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/README.md
@@ -0,0 +1,112 @@
+---
+title: Omnibin
+emoji: ⚡
+colorFrom: pink
+colorTo: yellow
+sdk: gradio
+sdk_version: 5.29.0
+app_file: app.py
+pinned: false
+license: mit
+short_description: A Python package for generating comprehensive binary classi
+---
+
+# Omnibin
+
+A Python package for generating comprehensive binary classification reports with visualizations and confidence intervals.
+
+## Try it Online
+
+You can try Omnibin directly in your browser through our [Hugging Face Space](https://felipekitamura-omnibin.hf.space).
+
+## Installation
+
+```bash
+pip install omnibin
+```
+
+## Usage
+
+```python
+import pandas as pd
+from omnibin import generate_binary_classification_report, ColorScheme
+
+# Load your data
+data = pd.read_csv("data/scores.csv")
+y_true = data['y_true'].values
+y_scores = data['y_pred'].values
+
+# Generate comprehensive classification report
+report_path = generate_binary_classification_report(
+ y_true=y_true, # Array of true binary labels (0 or 1)
+ y_scores=y_scores, # Array of predicted probabilities or scores
+ output_path="classification_report.pdf", # Path to save the PDF report
+ n_bootstrap=1000, # Number of bootstrap iterations for confidence intervals
+ random_seed=42, # Random seed for reproducibility
+ dpi=300, # DPI for plot resolution
+ color_scheme=ColorScheme.DEFAULT # Color scheme for plots (DEFAULT, MONOCHROME, or VIBRANT)
+)
+```
+
+## Input Format
+
+The input data should be provided as:
+- `y_true`: Array of true binary labels (0 or 1)
+- `y_pred`: Array of predicted probabilities or scores
+
+## Features
+
+- Generates a comprehensive PDF report with:
+ - ROC curve with confidence bands
+ - Precision-Recall curve with confidence bands
+ - Metrics vs. threshold plots
+ - Confusion matrix at optimal threshold
+ - Calibration plot
+ - Summary table with confidence intervals
+- Calculates optimal threshold using Youden's J statistic
+- Provides confidence intervals using bootstrapping
+- Supports both probability and score-based predictions
+
+## Metrics Included
+
+- Accuracy
+- Sensitivity (Recall)
+- Specificity
+- Positive Predictive Value (Precision)
+- Matthews Correlation Coefficient
+- F1 Score
+- AUC-ROC
+- AUC-PR
+
+All metrics include 95% confidence intervals calculated through bootstrapping.
+
+## Output
+
+The package generates a PDF report containing:
+1. ROC and Precision-Recall curves with confidence bands
+2. Metrics plotted across different thresholds
+3. Confusion matrix at the optimal threshold
+4. Calibration plot
+5. Summary table with all metrics and their confidence intervals
+
+## Example
+
+Here are examples of the visualizations generated by Omnibin:
+
+### ROC and Precision-Recall Curves
+
+
+### Metrics vs Threshold
+
+
+### Confusion Matrix
+
+
+### Calibration Plot
+
+
+### Prediction Distribution
+
+
+### Metrics Summary
+
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/app.py b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..c0a4b237291b2cfb632f4ad3bb39d1f9cebb5048
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/app.py
@@ -0,0 +1,90 @@
+import gradio as gr
+import pandas as pd
+import os
+import shutil
+from omnibin import generate_binary_classification_report, ColorScheme
+
+# Define results directory
+RESULTS_DIR = "/tmp/results"
+
+# Map string color schemes to enum values
+COLOR_SCHEME_MAP = {
+ "DEFAULT": ColorScheme.DEFAULT,
+ "MONOCHROME": ColorScheme.MONOCHROME,
+ "VIBRANT": ColorScheme.VIBRANT
+}
+
+def process_csv(csv_file, n_bootstrap=1000, dpi=72, color_scheme="DEFAULT"):
+ # Convert string color scheme to enum
+ color_scheme_enum = COLOR_SCHEME_MAP[color_scheme]
+
+ # Read the CSV file
+ df = pd.read_csv(csv_file.name)
+
+ # Check if required columns exist
+ required_columns = ['y_true', 'y_pred']
+ if not all(col in df.columns for col in required_columns):
+ raise ValueError("CSV file must contain 'y_true' and 'y_pred' columns")
+
+ # Clean up results directory if it exists
+ if os.path.exists(RESULTS_DIR):
+ shutil.rmtree(RESULTS_DIR)
+
+ # Create fresh results directory
+ os.makedirs(RESULTS_DIR, exist_ok=True)
+
+ # Generate the report
+ report_path = generate_binary_classification_report(
+ y_true=df['y_true'].values,
+ y_scores=df['y_pred'].values,
+ output_path=os.path.join(RESULTS_DIR, "classification_report.pdf"),
+ n_bootstrap=n_bootstrap,
+ random_seed=42,
+ dpi=dpi,
+ color_scheme=color_scheme_enum
+ )
+
+ # Get paths to individual plots
+ plots_dir = os.path.join(RESULTS_DIR, "plots")
+ plot_paths = {
+ "ROC and PR Curves": os.path.join(plots_dir, "roc_pr.png"),
+ "Metrics vs Threshold": os.path.join(plots_dir, "metrics_threshold.png"),
+ "Confusion Matrix": os.path.join(plots_dir, "confusion_matrix.png"),
+ "Calibration Plot": os.path.join(plots_dir, "calibration.png"),
+ "Prediction Distribution": os.path.join(plots_dir, "prediction_distribution.png"),
+ "Metrics Summary": os.path.join(plots_dir, "metrics_summary.png")
+ }
+
+ # Return both the PDF and the plot images
+ return report_path, *plot_paths.values()
+
+# Create the Gradio interface
+iface = gr.Interface(
+ fn=process_csv,
+ inputs=[
+ gr.File(label="Upload CSV file with 'y_true' and 'y_pred' columns"),
+ gr.Number(label="Number of Bootstrap Iterations", value=1000, minimum=100, maximum=10000),
+ gr.Number(label="DPI", value=72, minimum=50, maximum=300),
+ gr.Dropdown(label="Color Scheme", choices=["DEFAULT", "MONOCHROME", "VIBRANT"], value="DEFAULT")
+ ],
+ outputs=[
+ gr.File(label="Classification Report PDF"),
+ gr.Image(label="ROC and PR Curves"),
+ gr.Image(label="Metrics vs Threshold"),
+ gr.Image(label="Confusion Matrix"),
+ gr.Image(label="Calibration Plot"),
+ gr.Image(label="Prediction Distribution"),
+ gr.Image(label="Metrics Summary")
+ ],
+ title="Binary Classification Report Generator",
+ description="Upload a CSV file containing 'y_true' and 'y_pred' columns to generate a binary classification report.\n\n"
+ "'y_true': reference standard (0s or 1s).\n\n"
+ "'y_pred': model prediction (continuous value between 0 and 1).\n\n"
+ "This application takes approximately 35 seconds to generate the report.\n",
+
+ examples=[["scores.csv", 1000, 72, "DEFAULT"]],
+ cache_examples=False
+)
+
+if __name__ == "__main__":
+ iface.launch()
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin-0.1.4-py3-none-any.whl b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin-0.1.4-py3-none-any.whl
new file mode 100644
index 0000000000000000000000000000000000000000..67d8dbc13caead0ad7537765083fc920554f60e3
Binary files /dev/null and b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin-0.1.4-py3-none-any.whl differ
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/__init__.py b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..3a464f8efafbe988fc39f83e0dcdb57444fb725b
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/__init__.py
@@ -0,0 +1,4 @@
+from .metrics import generate_binary_classification_report, ColorScheme
+
+__version__ = "0.1.5"
+__all__ = ["generate_binary_classification_report"]
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/metrics.py b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/metrics.py
new file mode 100644
index 0000000000000000000000000000000000000000..77f69882317f6131aefa077d63ee583c9f899400
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/metrics.py
@@ -0,0 +1,62 @@
+import numpy as np
+import pandas as pd
+import matplotlib.pyplot as plt
+import seaborn as sns
+from tqdm import tqdm
+import os
+from sklearn.metrics import (
+ accuracy_score, recall_score, precision_score, f1_score, roc_auc_score,
+ average_precision_score, confusion_matrix, matthews_corrcoef, roc_curve,
+ precision_recall_curve
+)
+from sklearn.calibration import calibration_curve
+from matplotlib.backends.backend_pdf import PdfPages
+from enum import Enum
+from .utils import (
+ ColorScheme, calculate_metrics_by_threshold, bootstrap_curves,
+ calculate_optimal_threshold, calculate_metrics_summary,
+ calculate_confidence_intervals, create_output_directories,
+ plot_roc_pr_curves, plot_metrics_threshold, plot_confusion_matrix,
+ plot_calibration, plot_metrics_summary, plot_prediction_distribution
+)
+
+def generate_binary_classification_report(y_true, y_scores, output_path="omnibin_report.pdf", n_bootstrap=1000, random_seed=42, dpi=300, color_scheme=ColorScheme.DEFAULT):
+ # Set random seed for reproducibility
+ if random_seed is not None:
+ np.random.seed(random_seed)
+
+ # Set DPI for all figures
+ plt.rcParams['figure.dpi'] = dpi
+
+ # Get color scheme
+ colors = color_scheme.value
+
+ # Calculate metrics and optimal threshold
+ metrics_df = calculate_metrics_by_threshold(y_true, y_scores)
+ best_thresh = calculate_optimal_threshold(y_true, y_scores)
+ metrics_summary = calculate_metrics_summary(y_true, y_scores, best_thresh)
+ conf_intervals = calculate_confidence_intervals(y_true, y_scores, best_thresh, n_bootstrap)
+
+ # Create output directories
+ plots_dir = create_output_directories(output_path)
+
+ # Calculate confidence intervals for curves
+ tpr_ci, precision_ci, common_fpr, common_recall = bootstrap_curves(y_true, y_scores, n_boot=n_bootstrap)
+
+ with PdfPages(output_path) as pdf:
+ # Generate and save all plots
+ plots = [
+ plot_roc_pr_curves(y_true, y_scores, tpr_ci, precision_ci, common_fpr, common_recall, colors, dpi, plots_dir),
+ plot_metrics_threshold(metrics_df, colors, dpi, plots_dir),
+ plot_confusion_matrix(y_true, y_scores, best_thresh, colors, dpi, plots_dir),
+ plot_calibration(y_true, y_scores, colors, dpi, plots_dir),
+ plot_metrics_summary(metrics_summary, conf_intervals, dpi, plots_dir),
+ plot_prediction_distribution(y_true, y_scores, best_thresh, colors, dpi, plots_dir)
+ ]
+
+ # Save all plots to PDF
+ for plot in plots:
+ pdf.savefig(plot, dpi=dpi)
+ plt.close(plot)
+
+ return output_path
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/utils.py b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..c48af978eceb5eb72f99d12d6dbb341fe8a99fa2
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/omnibin/utils.py
@@ -0,0 +1,263 @@
+import numpy as np
+import pandas as pd
+import matplotlib.pyplot as plt
+import seaborn as sns
+from tqdm import tqdm
+from sklearn.metrics import (
+ accuracy_score, recall_score, precision_score, f1_score, roc_auc_score,
+ average_precision_score, confusion_matrix, matthews_corrcoef, roc_curve,
+ precision_recall_curve
+)
+from sklearn.calibration import calibration_curve
+from enum import Enum
+import os
+
+class ColorScheme(Enum):
+ DEFAULT = {
+ 'positive_class': 'tab:blue',
+ 'negative_class': 'tab:orange',
+ 'roc_curve': 'tab:blue',
+ 'pr_curve': 'tab:blue',
+ 'threshold_line': 'black',
+ 'calibration_curve': 'tab:blue',
+ 'calibration_reference': 'gray',
+ 'metrics_colors': ['tab:blue', 'tab:red', 'tab:green', 'tab:purple', 'tab:orange', 'tab:brown', 'tab:pink'],
+ 'cmap': 'Blues'
+ }
+
+ MONOCHROME = {
+ 'positive_class': '#404040',
+ 'negative_class': '#808080',
+ 'roc_curve': '#000000',
+ 'pr_curve': '#000000',
+ 'threshold_line': '#000000',
+ 'calibration_curve': '#000000',
+ 'calibration_reference': '#808080',
+ 'metrics_colors': ['#000000', '#404040', '#606060', '#808080', '#A0A0A0', '#C0C0C0', '#E0E0E0'],
+ 'cmap': 'Greys'
+ }
+
+ VIBRANT = {
+ 'positive_class': '#FF6B6B',
+ 'negative_class': '#4ECDC4',
+ 'roc_curve': '#FF6B6B',
+ 'pr_curve': '#4ECDC4',
+ 'threshold_line': '#2C3E50',
+ 'calibration_curve': '#FF6B6B',
+ 'calibration_reference': '#95A5A6',
+ 'metrics_colors': ['#FF6B6B', '#4ECDC4', '#45B7D1', '#96CEB4', '#FFEEAD', '#D4A5A5', '#9B59B6'],
+ 'cmap': 'Greens'
+ }
+
+def calculate_metrics_by_threshold(y_true, y_scores):
+ """Calculate various metrics across different thresholds."""
+ thresholds = np.linspace(0, 1, 100)
+ metrics_by_threshold = []
+
+ for t in tqdm(thresholds, desc="Calculating metrics across thresholds"):
+ y_pred = (y_scores >= t).astype(int)
+ acc = accuracy_score(y_true, y_pred)
+ sens = recall_score(y_true, y_pred)
+ spec = recall_score(y_true, y_pred, pos_label=0)
+ ppv = precision_score(y_true, y_pred, zero_division=0)
+ mcc = matthews_corrcoef(y_true, y_pred)
+ f1 = f1_score(y_true, y_pred)
+ metrics_by_threshold.append([t, acc, sens, spec, ppv, mcc, f1])
+
+ return pd.DataFrame(metrics_by_threshold, columns=[
+ "Threshold", "Accuracy", "Sensitivity", "Specificity",
+ "PPV", "MCC", "F1 Score"
+ ])
+
+def bootstrap_metric(metric_func, y_true, y_scores, n_boot=1000):
+ """Calculate bootstrap confidence intervals for a given metric."""
+ stats = []
+ for _ in tqdm(range(n_boot), desc="Bootstrap iterations", leave=False):
+ indices = np.random.choice(range(len(y_true)), len(y_true), replace=True)
+ try:
+ stats.append(metric_func(y_true[indices], y_scores[indices]))
+ except:
+ continue
+ return np.percentile(stats, [2.5, 97.5])
+
+def bootstrap_curves(y_true, y_scores, n_boot=1000):
+ """Calculate bootstrap confidence intervals for ROC and PR curves."""
+ tprs = []
+ fprs = []
+ precisions = []
+ recalls = []
+
+ base_fpr, base_tpr, _ = roc_curve(y_true, y_scores)
+ base_precision, base_recall, _ = precision_recall_curve(y_true, y_scores)
+
+ common_fpr = np.linspace(0, 1, 100)
+ common_recall = np.linspace(0, 1, 100)
+
+ for _ in tqdm(range(n_boot), desc="Bootstrap iterations for curves", leave=False):
+ indices = np.random.choice(range(len(y_true)), len(y_true), replace=True)
+ try:
+ fpr, tpr, _ = roc_curve(y_true[indices], y_scores[indices])
+ tpr_interp = np.interp(common_fpr, fpr, tpr)
+ tprs.append(tpr_interp)
+
+ precision, recall, _ = precision_recall_curve(y_true[indices], y_scores[indices])
+ sort_idx = np.argsort(recall)
+ recall = recall[sort_idx]
+ precision = precision[sort_idx]
+ precision_interp = np.interp(common_recall, recall, precision)
+ precisions.append(precision_interp)
+ except:
+ continue
+
+ tpr_ci = np.percentile(tprs, [2.5, 97.5], axis=0)
+ precision_ci = np.percentile(precisions, [2.5, 97.5], axis=0)
+
+ return tpr_ci, precision_ci, common_fpr, common_recall
+
+def calculate_optimal_threshold(y_true, y_scores):
+ """Calculate the optimal threshold using ROC curve."""
+ fpr, tpr, roc_thresholds = roc_curve(y_true, y_scores)
+ j_scores = tpr - fpr
+ return roc_thresholds[np.argmax(j_scores)]
+
+def calculate_metrics_summary(y_true, y_scores, best_thresh):
+ """Calculate summary metrics at the optimal threshold."""
+ y_pred_opt = (y_scores >= best_thresh).astype(int)
+
+ return {
+ "Accuracy": accuracy_score(y_true, y_pred_opt),
+ "Sensitivity": recall_score(y_true, y_pred_opt),
+ "Specificity": recall_score(y_true, y_pred_opt, pos_label=0),
+ "PPV": precision_score(y_true, y_pred_opt, zero_division=0),
+ "MCC": matthews_corrcoef(y_true, y_pred_opt),
+ "F1 Score": f1_score(y_true, y_pred_opt),
+ "AUC-ROC": roc_auc_score(y_true, y_scores),
+ "AUC-PR": average_precision_score(y_true, y_scores)
+ }
+
+def calculate_confidence_intervals(y_true, y_scores, best_thresh, n_bootstrap=1000):
+ """Calculate confidence intervals for all metrics."""
+ metric_functions = {
+ "Accuracy": lambda yt, ys: accuracy_score(yt, ys >= best_thresh),
+ "Sensitivity": lambda yt, ys: recall_score(yt, ys >= best_thresh),
+ "Specificity": lambda yt, ys: recall_score(yt, ys >= best_thresh, pos_label=0),
+ "PPV": lambda yt, ys: precision_score(yt, ys >= best_thresh, zero_division=0),
+ "MCC": lambda yt, ys: matthews_corrcoef(yt, ys >= best_thresh),
+ "F1 Score": lambda yt, ys: f1_score(yt, ys >= best_thresh),
+ "AUC-ROC": lambda yt, ys: roc_auc_score(yt, ys),
+ "AUC-PR": lambda yt, ys: average_precision_score(yt, ys)
+ }
+
+ return {
+ name: bootstrap_metric(func, y_true, y_scores, n_boot=n_bootstrap)
+ for name, func in metric_functions.items()
+ }
+
+def create_output_directories(output_path):
+ """Create necessary output directories for plots and PDF."""
+ output_dir = os.path.dirname(output_path)
+ if output_dir:
+ os.makedirs(output_dir, exist_ok=True)
+
+ plots_dir = os.path.join(output_dir, "plots")
+ os.makedirs(plots_dir, exist_ok=True)
+
+ return plots_dir
+
+def plot_roc_pr_curves(y_true, y_scores, tpr_ci, precision_ci, common_fpr, common_recall, colors, dpi, plots_dir):
+ """Generate ROC and PR curves with confidence intervals."""
+ plt.figure(figsize=(12, 5), dpi=dpi)
+
+ plt.subplot(1, 2, 1)
+ fpr, tpr, _ = roc_curve(y_true, y_scores)
+ plt.plot(fpr, tpr, label="ROC curve", color=colors['roc_curve'])
+ plt.fill_between(common_fpr, tpr_ci[0], tpr_ci[1], alpha=0.3, color=colors['roc_curve'])
+ plt.plot([0, 1], [0, 1], "k--")
+ plt.xlabel("False Positive Rate")
+ plt.ylabel("True Positive Rate")
+ plt.title("ROC Curve")
+ plt.legend()
+
+ plt.subplot(1, 2, 2)
+ precision, recall, _ = precision_recall_curve(y_true, y_scores)
+ plt.plot(recall, precision, label="PR curve", color=colors['pr_curve'])
+ plt.fill_between(common_recall, precision_ci[0], precision_ci[1], alpha=0.3, color=colors['pr_curve'])
+ plt.xlabel("Recall")
+ plt.ylabel("Precision")
+ plt.title("Precision-Recall Curve")
+ plt.legend()
+
+ plt.savefig(os.path.join(plots_dir, "roc_pr.png"), dpi=dpi, bbox_inches='tight')
+ return plt.gcf()
+
+def plot_metrics_threshold(metrics_df, colors, dpi, plots_dir):
+ """Generate metrics vs threshold plot."""
+ plt.figure(figsize=(10, 6), dpi=dpi)
+ for i, col in enumerate(metrics_df.columns[1:]):
+ plt.plot(metrics_df["Threshold"], metrics_df[col], label=col,
+ color=colors['metrics_colors'][i % len(colors['metrics_colors'])])
+ plt.xlabel("Threshold")
+ plt.ylabel("Metric Value")
+ plt.title("Metrics Across Thresholds")
+ plt.legend()
+
+ plt.savefig(os.path.join(plots_dir, "metrics_threshold.png"), dpi=dpi, bbox_inches='tight')
+ return plt.gcf()
+
+def plot_confusion_matrix(y_true, y_scores, best_thresh, colors, dpi, plots_dir):
+ """Generate confusion matrix plot."""
+ cm = confusion_matrix(y_true, y_scores >= best_thresh)
+ plt.figure(figsize=(5, 4), dpi=dpi)
+ sns.heatmap(cm, annot=True, fmt="d", cmap=colors['cmap'], cbar=False, annot_kws={"size": 12})
+ plt.title("Confusion Matrix (Optimal Threshold)", fontsize=12)
+ plt.xlabel("Predicted Label", fontsize=12)
+ plt.ylabel("True Label", fontsize=12)
+
+ plt.savefig(os.path.join(plots_dir, "confusion_matrix.png"), dpi=dpi, bbox_inches='tight')
+ return plt.gcf()
+
+def plot_calibration(y_true, y_scores, colors, dpi, plots_dir):
+ """Generate calibration plot."""
+ plt.figure(figsize=(6, 6), dpi=dpi)
+ prob_true, prob_pred = calibration_curve(y_true, y_scores, n_bins=10, strategy='uniform')
+ plt.plot(prob_pred, prob_true, marker='o', label='Calibration curve', color=colors['calibration_curve'])
+ plt.plot([0, 1], [0, 1], linestyle='--', color=colors['calibration_reference'])
+ plt.xlabel('Predicted Probability')
+ plt.ylabel('True Probability')
+ plt.title('Calibration Plot')
+ plt.legend()
+
+ plt.savefig(os.path.join(plots_dir, "calibration.png"), dpi=dpi, bbox_inches='tight')
+ return plt.gcf()
+
+def plot_metrics_summary(metrics_summary, conf_intervals, dpi, plots_dir):
+ """Generate metrics summary table plot."""
+ fig, ax = plt.subplots(figsize=(8, 6), dpi=dpi)
+ ax.axis("off")
+ table_data = [
+ [k, f"{v:.3f}", f"[{conf_intervals[k][0]:.3f}, {conf_intervals[k][1]:.3f}]"]
+ for k, v in metrics_summary.items()
+ ]
+ table = ax.table(cellText=table_data, colLabels=["Metric", "Value", "95% CI"], loc="center")
+ table.auto_set_font_size(False)
+ table.set_fontsize(10)
+ table.scale(1.2, 1.2)
+ ax.set_title("Performance Metrics at Optimal Threshold", fontweight="bold")
+
+ plt.savefig(os.path.join(plots_dir, "metrics_summary.png"), dpi=dpi, bbox_inches='tight')
+ return plt.gcf()
+
+def plot_prediction_distribution(y_true, y_scores, best_thresh, colors, dpi, plots_dir):
+ """Generate prediction distribution histogram."""
+ plt.figure(figsize=(10, 6), dpi=dpi)
+ plt.hist(y_scores[y_true == 1], bins=50, alpha=0.5, label='Positive Class', color=colors['positive_class'])
+ plt.hist(y_scores[y_true == 0], bins=50, alpha=0.5, label='Negative Class', color=colors['negative_class'])
+ plt.axvline(x=best_thresh, color=colors['threshold_line'], linestyle='--',
+ label=f'Optimal Threshold ({best_thresh:.3f})')
+ plt.xlabel('Predicted Probability')
+ plt.ylabel('Count')
+ plt.title('Distribution of Predictions')
+ plt.legend()
+
+ plt.savefig(os.path.join(plots_dir, "prediction_distribution.png"), dpi=dpi, bbox_inches='tight')
+ return plt.gcf()
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/requirements.txt b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..19f47fa8107a5979c47da81962d6de48a042c284
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/requirements.txt
@@ -0,0 +1,6 @@
+pandas
+numpy
+gradio
+matplotlib
+seaborn
+scikit-learn
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/scores.csv b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/scores.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1c612fb5667550ac4c93931d21321ed8d766adf9
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/scores.csv
@@ -0,0 +1,10201 @@
+y_pred,y_true
+0.6108777193397277,1
+0.9414566422007212,1
+0.9601427666215183,1
+0.9945732823840646,1
+0.526910845164245,1
+0.817536078656719,1
+0.9531242479103951,1
+0.9022708644316214,1
+0.9137806971384371,1
+0.9589073324045465,1
+0.8126999356017819,1
+0.9202403430450075,1
+0.9666927872049409,1
+0.7398566829429536,1
+0.9994507348128117,1
+0.8699429209074441,1
+0.7169458224355099,1
+0.6206740439285562,1
+0.7782477065486615,1
+0.999510755737531,1
+0.6222805141006532,1
+0.9101386250699285,1
+0.9392654671510053,1
+0.7042143713691886,1
+0.9899063783622869,1
+0.9984884971208096,1
+0.9893956939823622,1
+0.6173053052869797,1
+0.5994133923310844,1
+0.7627981122461411,1
+0.8228259660465228,1
+0.9681260365399877,1
+0.9693876939167403,1
+0.9838581059841184,1
+0.8190383715437765,1
+0.9438175046887697,1
+0.6665368235033549,1
+0.9998617765066796,1
+0.9881697861292998,1
+0.9856484598214257,1
+0.9995161421681925,1
+0.9562743478258021,1
+0.8952807884028098,1
+0.5880642571832053,1
+0.9730564916280946,1
+0.9996419895350552,1
+0.396034996592164,1
+0.6753558482030457,1
+0.9329485127752238,1
+0.9699186123101611,1
+0.9210643643045517,1
+0.834132165124575,1
+0.9512900290506714,1
+0.39106065282894753,1
+0.9996080795810429,1
+0.9560747366574177,1
+0.8119146591717581,1
+0.9985875889734148,1
+0.9879245650677189,1
+0.7466066001586875,1
+0.0,1
+0.6084324321000285,1
+0.7191562565993634,1
+0.9603186646229788,1
+0.9751717272405184,1
+0.9796423356296594,1
+0.9565811254028531,1
+0.9896948861400741,1
+0.9026706103856758,1
+0.15156097404982272,1
+0.9408431002321586,1
+0.9981671310164529,1
+0.8268545943000847,1
+0.9989688250049124,1
+0.999812954512679,1
+0.998398515659221,1
+0.9653222242779501,1
+0.9039901776228897,1
+0.9752602091371803,1
+0.999242077717062,1
+0.8349272617360932,1
+0.9669064820646318,1
+0.743199300641544,1
+0.5278279054841126,1
+0.0,1
+0.9969611852791698,1
+0.43744219917902094,1
+0.9489213345641022,1
+0.9999856219276582,1
+0.27121554253443125,1
+0.8048070725345953,1
+0.9637087028688819,1
+0.7686785209876746,1
+0.7159171473546867,1
+0.7680828992528506,1
+0.918938226883069,1
+0.9035672377916817,1
+0.9854291293427889,1
+0.9406921225123315,1
+0.9546339781850041,1
+0.9999264435607146,1
+0.9825945354770774,1
+0.9999756509837542,1
+0.9477323004052138,1
+0.680880657890768,1
+0.8198941456603951,1
+0.9109695373915015,1
+0.5928333475458158,1
+0.8792616724490449,1
+0.7331324133649977,1
+0.7550147321296424,1
+0.9957405124519143,1
+0.8215610873718654,1
+0.5092306715509154,1
+0.9913992592580253,1
+0.9267796870322693,1
+0.7695810885141547,1
+0.9308892548325006,1
+0.9967539932916728,1
+0.9234304596181135,1
+0.9927460215971999,1
+0.9933167985147748,1
+0.6559194752977433,1
+0.9583592239546211,1
+0.5496777928884857,1
+0.8052035345218987,1
+0.9581903806079984,1
+0.996480494348428,1
+0.9776951626321282,1
+0.9878726960424461,1
+0.875963751596295,1
+0.9340211874411132,1
+0.9556918592817932,1
+0.9167910541799162,1
+0.8092071729010326,1
+0.933287060855167,1
+0.8271687362767297,1
+0.9994442376457917,1
+0.9437577026323763,1
+0.9266911750817917,1
+0.5275065905959517,1
+0.9762104126840665,1
+0.9658002428120813,1
+0.892370002589647,1
+0.6072289368787276,1
+0.9607801275502186,1
+0.6818608770297723,1
+0.9772410908676157,1
+0.3747804290199114,1
+0.9895937185477486,1
+0.8754267757541843,1
+0.945703353083088,1
+0.9610363209250391,1
+0.9919931307297852,1
+0.6780974020031272,1
+0.7042332844724373,1
+0.9894347905104384,1
+0.9784239839543797,1
+0.8503852467047914,1
+0.9880731139277545,1
+0.9823676764843454,1
+0.9970193298638139,1
+0.6680827348108013,1
+0.8435048162611947,1
+0.982164377552456,1
+0.9937758519452399,1
+0.9829327035002513,1
+0.990094280021584,1
+0.999855405194223,1
+0.9949759311201788,1
+0.31769345094604984,1
+0.7507014124880611,1
+0.8608107498731634,1
+0.9994032842678539,1
+0.971455543359994,1
+0.9979806093112891,1
+0.9700356688441002,1
+0.9116740091779396,1
+0.9984841292499343,1
+0.9326983720591616,1
+0.9687652626541456,1
+0.8419101276547487,1
+0.8592859766033598,1
+0.9886124180189473,1
+0.9581012006276096,1
+0.8321812571316678,1
+0.5772116756372654,1
+0.9514742276914736,1
+0.08420179244620907,1
+0.9980486215891763,1
+0.9720923923927431,1
+0.25270204769705784,1
+0.9213948906199656,1
+0.8454783916778241,1
+0.9973647531390194,1
+0.9120603091227267,1
+0.9256575362114674,1
+0.6652919763133188,1
+0.9867798910789847,1
+0.9824974994097531,1
+0.2978354747071451,0
+1.2337316723404226e-05,0
+0.11858691235096752,0
+0.0029408951197745113,0
+0.007188587846347021,0
+0.10048942037371815,0
+0.44234991120757117,0
+0.04407380032000478,0
+0.005459005856742365,0
+0.21900025118461816,0
+0.24073667481988906,0
+0.007093230997814955,0
+0.05090929525906372,0
+0.10241442552225796,0
+0.1009560835251347,0
+0.002916689542103956,0
+0.03671060258368874,0
+0.004192392759318913,0
+0.058483430582740324,0
+0.12805678791129968,0
+0.013196345319365487,0
+0.01782704905951448,0
+0.010140926717927828,0
+0.02491796441836339,0
+0.013446500050737008,0
+0.021604867822597445,0
+0.12729753379241232,0
+0.047201803431369094,0
+0.05890293017292649,0
+0.0026471615686761403,0
+0.05338609598322395,0
+0.05696959103194029,0
+0.051183248966137275,0
+0.08120111834040118,0
+0.37325559026596344,0
+0.007525666342146585,0
+0.08253990395185816,0
+0.0945917396282692,0
+0.008416295805988053,0
+0.05534839816879469,0
+0.49373779103288173,0
+0.02402965857991108,0
+0.0790841589624873,0
+0.10767872332370595,0
+0.005158046307624289,0
+0.0011446731897967384,0
+0.0508601405458182,0
+0.00940682072078335,0
+0.005337645925043162,0
+0.08411819217794934,0
+0.423898630108208,0
+0.2237263382060281,0
+0.06667076709534395,0
+0.00406378505274236,0
+0.5457619341827158,0
+0.05926824627183116,0
+0.09673737882127942,0
+3.1844077297503646e-05,0
+0.008801240024970349,0
+0.046388743596452224,0
+0.046736047257080124,0
+0.1251774419257591,0
+0.11859912944932269,0
+0.11874797769068775,0
+0.025352751126814965,0
+0.010503225489212885,0
+0.11411840849106406,0
+0.03337979039050211,0
+0.02749366848375017,0
+0.11683638099796542,0
+0.12402808505999459,0
+0.03770616784744103,0
+0.016305061180533847,0
+0.27758220668044603,0
+0.0034773919941805996,0
+0.009358013361400658,0
+0.06348909677341989,0
+0.8724232722620894,0
+0.020733752526665473,0
+0.03259046579750546,0
+0.019246116202895763,0
+0.10570835476969383,0
+0.026628067171985247,0
+0.0037293650077116275,0
+0.13458801192703013,0
+0.009733389004870254,0
+0.006207903403602654,0
+0.01887723256059929,0
+0.06085449465548316,0
+0.18521080274287827,0
+0.5618441074072531,0
+0.06608414749229832,0
+0.037392785489218726,0
+0.0008883088832091818,0
+0.0006901097616995767,0
+0.19349999333756257,0
+0.025268089550385904,0
+0.006941713623404425,0
+0.5014192454523595,0
+1.2189515818506561e-08,0
+0.21065853685761732,0
+0.022810866300864367,0
+0.09732303292773234,0
+0.33289331700471025,0
+0.022172057154732003,0
+0.006500831594164476,0
+0.03186153342463896,0
+0.14117509349903773,0
+0.06460397888806146,0
+0.02205529945155447,0
+0.44481528351386207,0
+0.11305536664611326,0
+0.024988056044743905,0
+0.2099047690554184,0
+0.029491578563891285,0
+0.1124714486999105,0
+0.059662222462080375,0
+0.039105430952906646,0
+0.0008456319110194651,0
+0.04127042544982756,0
+0.01081145877138078,0
+0.005935731564763036,0
+0.12631322825123828,0
+0.03975976421723353,0
+0.002621618979227592,0
+0.16656193801409364,0
+0.05351186993539777,0
+0.15462257001274585,0
+0.0002158916904783928,0
+0.028318402842011287,0
+0.03306716932728811,0
+0.08719943980401522,0
+0.03563346835873781,0
+0.041041597012551834,0
+0.0018670363791165837,0
+0.05251489278458456,0
+0.05245686183966884,0
+0.0007418673964122107,0
+0.1762992635745348,0
+0.24154897576068052,0
+0.49657883046091833,0
+0.035039214223010165,0
+0.035032015630666866,0
+0.028795102653230348,0
+0.0240311164847651,0
+0.004741016617432049,0
+0.0038382745201521657,0
+0.0768083171270083,0
+0.14563746609909856,0
+0.04964798941057195,0
+0.00013137220906239428,0
+0.23509996538110686,0
+0.42739408360664866,0
+0.06415321265745746,0
+0.0045649102298345266,0
+0.0663592376198167,0
+0.0002196719061764789,0
+0.004466222985399244,0
+0.006040909013330745,0
+0.06070674382021325,0
+0.054277237755335106,0
+0.05728661856555376,0
+0.046885079269343426,0
+0.06455181918216053,0
+0.7689596548675522,0
+0.0770982223904156,0
+0.05786082335519942,0
+0.10375503086959248,0
+0.12019426551257403,0
+0.2391356694646582,0
+0.06448900421620501,0
+0.10395711128373566,0
+0.32092266633558425,0
+0.11059654732364843,0
+0.10214326623222152,0
+0.2783583694374255,0
+0.005055117166454942,0
+0.13513012734691834,0
+0.19576678589254512,0
+0.19351992966185552,0
+0.10821646009030464,0
+0.14801182664028964,0
+0.019954721368848242,0
+0.00010311742632050275,0
+0.0069683759865482725,0
+0.00708643539406673,0
+0.026444286079689776,0
+0.18466213659300673,0
+0.1232179012302902,0
+0.10141388908933754,0
+0.05341838344017323,0
+0.2376282183784805,0
+0.007132178193966434,0
+0.05543367398393475,0
+0.3528526176431265,0
+0.08613193553805448,0
+0.0023867809078042075,0
+0.013029165443282698,0
+3.998788775516012e-05,0
+0.040048336918864245,0
+0.04582797694627099,0
+0.01783983410285788,0
+0.023510069653895255,0
+0.042096082551469766,0
+0.6350940760947023,0
+0.004849434821395455,0
+0.1361353517309307,0
+0.014595175196838506,0
+0.18007372107808697,0
+0.43842437034823467,0
+0.09204791975142695,0
+0.0001781402962677577,0
+0.041709839890092276,0
+0.26088869696389233,0
+0.08275742036469365,0
+0.1063123396197729,0
+0.011767702571645123,0
+0.0027935187811120544,0
+0.20026757820625823,0
+0.1533009509928378,0
+0.7231502700624424,0
+0.07601361470258147,0
+0.013781470223297895,0
+0.20886303041484183,0
+0.11700313579700457,0
+0.0850584633369967,0
+0.27259185452345874,0
+0.01761595716861003,0
+0.0324142252259098,0
+0.010814811719392756,0
+0.21758189776922127,0
+0.03306819832386492,0
+0.13219462034761303,0
+0.04482061110641073,0
+0.3971417201372024,0
+0.009891654650486071,0
+0.05748804232336837,0
+0.15264459639863787,0
+0.6365100025825348,0
+0.11751169141314247,0
+0.11425746631150172,0
+0.014786782949865554,0
+0.04640267818589516,0
+0.11976009429063997,0
+0.11754365563847617,0
+0.047580299537763535,0
+0.03793094064058049,0
+0.015292194517116988,0
+0.06633791961660615,0
+0.048956606246205445,0
+0.038591427889817134,0
+3.87377617545595e-05,0
+0.003290478302811665,0
+0.12113724620011745,0
+0.011115269835549346,0
+0.004154724775154291,0
+0.687284423838348,0
+0.15457563888619166,0
+0.27800067011889606,0
+0.22502129100202373,0
+0.2217528497452867,0
+0.008550743887215892,0
+0.003159037986119001,0
+0.013359755828854231,0
+0.2981018967584579,0
+0.009915557240231935,0
+0.02200315082360923,0
+0.043587081188432825,0
+0.0796610335993813,0
+0.9792542618273054,0
+0.0010919872152622342,0
+0.006998525032379574,0
+0.014757791043104393,0
+0.03675614274457163,0
+0.1905374341116598,0
+0.2649184538003933,0
+0.0058882082138609505,0
+0.019459343364997685,0
+0.016350918418887618,0
+0.03811246579474889,0
+0.0031789896559017254,0
+0.11990655770232836,0
+0.007404086682083087,0
+0.06497384445010485,0
+0.050520354664687996,0
+0.09534208138506475,0
+0.07891587060604635,0
+0.13047885055572303,0
+0.0025892625423714183,0
+0.24904157687016343,0
+0.00863481119890598,0
+0.01689445249475128,0
+0.012514945630864601,0
+0.04825104145743743,0
+0.2618250781083573,0
+0.020769290952346867,0
+0.24101159405451691,0
+0.2844291410264505,0
+0.1973985799580026,0
+0.04485730767908512,0
+0.002518566181147204,0
+0.11097535462977895,0
+0.3220475370558059,0
+0.1543833524047106,0
+0.0005558632891548872,0
+0.096204778021836,0
+0.0018926436979090932,0
+0.06059152298661952,0
+0.012618236882437623,0
+0.0011324133392221385,0
+0.670101902526479,0
+0.003648552392860018,0
+0.0232749979413647,0
+0.34157899416540666,0
+0.007940116199906925,0
+0.01247953168770569,0
+0.1202570883127275,0
+0.27112207998459636,0
+0.2056199158597706,0
+0.018583080459742954,0
+0.009038983408649878,0
+0.011771192017813856,0
+0.10082414216225846,0
+0.15635027456124803,0
+0.047708935794194225,0
+0.10091583326871548,0
+0.00026686598466507666,0
+0.7626311367195205,0
+0.011886489783495616,0
+0.04262725280481312,0
+0.010552550843619248,0
+0.3543070583625334,0
+0.0008475541761222661,0
+0.08591838502017654,0
+0.017706084695436306,0
+0.021036978922596674,0
+0.0027694127061392653,0
+0.01649480612574596,0
+0.06764065214895666,0
+0.06298831627632327,0
+0.028217444882401865,0
+0.15152010188683512,0
+0.010067885683780952,0
+0.31804137277498123,0
+0.23744945031179793,0
+0.01940462903253808,0
+0.0727543971641902,0
+0.2769408398521237,0
+0.27894663881454745,0
+0.005187246582433548,0
+0.05953923861439966,0
+2.4179527282964314e-05,0
+0.05278468803081958,0
+0.008148616479574006,0
+0.043695311701841766,0
+0.04182448377545432,0
+0.07793057782988413,0
+0.19443629762179818,0
+0.0006842605860272531,0
+0.00956643807290512,0
+0.10843950676777489,0
+8.387364795786361e-05,0
+0.012863895515576507,0
+0.021937749949266172,0
+0.008485648681334867,0
+0.0042010800821706135,0
+0.010535694870528491,0
+5.060429586907988e-05,0
+0.12223117007108453,0
+0.05207650799351986,0
+0.19986740077394374,0
+0.06563595175133553,0
+0.24301689614930416,0
+0.18626466404133207,0
+0.8222338956089079,0
+0.12060923826080942,0
+0.01732591447130897,0
+0.11867269118460362,0
+0.027012282778213114,0
+0.003953429339164863,0
+0.38339266038552083,0
+0.0023123280932738225,0
+0.0003178158149732372,0
+0.12138478220923714,0
+0.0022129051690378716,0
+0.06479186668239623,0
+0.07921688245791099,0
+0.22290615693425303,0
+0.043386050605132384,0
+5.503858510551038e-05,0
+0.06978045457468188,0
+0.24478807719731868,0
+0.0096569750491527,0
+0.08652037955668826,0
+0.1205265551488169,0
+0.0004025348227882401,0
+0.27832159519085825,0
+0.07533124595290094,0
+0.012214829180702989,0
+0.03715939204882069,0
+0.021247968450745093,0
+0.09938352102921214,0
+0.1795775895557679,0
+0.03162389870442617,0
+0.000122498869154679,0
+0.06780467518856947,0
+0.16979043836369706,0
+0.38622461272795416,0
+0.001160244134050641,0
+0.3181052128662705,0
+0.04957491303574087,0
+0.12497858043787806,0
+0.0037770211680673827,0
+4.782672206830245e-08,0
+0.002286264167287939,0
+0.2739218176014212,0
+0.037274329700579846,0
+0.03554174120399047,0
+0.2356135059761689,0
+0.2162348304529338,0
+0.33092717671518723,0
+0.012821518047910308,0
+0.03674650743969899,0
+0.18744974249201635,0
+0.0330986506492338,0
+0.3581747592839076,0
+0.044449982517367245,0
+0.26099587170090166,0
+0.32653615744833225,0
+0.0003812784448687704,0
+0.12773516418568373,0
+0.20320553381201786,0
+0.005959526233867996,0
+0.18725924704137153,0
+0.0866912248933001,0
+0.0020061319147800395,0
+0.4689593604255169,0
+0.04020667943159288,0
+0.22565185616990496,0
+0.00014785732647615288,0
+0.379442021690428,0
+0.04560219228267244,0
+0.07326823827954895,0
+0.015453885025502313,0
+0.002973587479307308,0
+0.002042994565586465,0
+0.001173343868625012,0
+0.0005388106890945717,0
+0.004349830137167929,0
+0.11735298503397802,0
+0.006958908437001135,0
+0.06404127268013766,0
+3.606621209410877e-05,0
+0.5587109760087655,0
+0.0005025395086484806,0
+3.4492221808710906e-05,0
+0.014127630574963856,0
+0.4105956203980072,0
+0.018765509072944355,0
+0.0003420657689087713,0
+0.3310231346631145,0
+0.1594631230790764,0
+8.618818060533395e-06,0
+0.03627494638210039,0
+0.013471630480911911,0
+8.605150162311821e-07,0
+0.09953975415150543,0
+0.016654909564663728,0
+0.009835823949223383,0
+0.011045794001919872,0
+0.05895523242470526,0
+0.08947637957046767,0
+0.017528355043984235,0
+0.1599087295960638,0
+0.04588406613143357,0
+0.013598591382634936,0
+0.004719072060069668,0
+0.144786958141001,0
+0.01864015517927041,0
+0.1058271690949673,0
+0.2372066803019289,0
+2.595971611824302e-06,0
+0.060156043642396816,0
+0.037892940051206025,0
+0.030392757848695932,0
+0.008493636613219283,0
+0.04127355148168095,0
+0.2847705078250405,0
+0.32261394634952845,0
+0.009549916074310681,0
+0.12169164701955926,0
+0.08000572504687438,0
+5.668029741387505e-07,0
+0.11296083995068991,0
+0.27609538684634716,0
+0.17424779200303336,0
+0.03371029986027278,0
+0.03757461709742424,0
+0.14940726928820386,0
+0.031671285217160824,0
+0.0001733962529078806,0
+0.0122696376004373,0
+0.2387652613064156,0
+0.007337554768728533,0
+0.12949986459580487,0
+0.26481782405669396,0
+0.025457462865371754,0
+0.09525104020089749,0
+0.22338014294877984,0
+0.004696598159963176,0
+0.10934220676654045,0
+0.35812080885178255,0
+0.010928458397476231,0
+0.49647719181397354,0
+0.00681371457881118,0
+0.1978645219642056,0
+0.10865198975567988,0
+0.18347445540431984,0
+0.03993377251588762,0
+0.4263060006069977,0
+0.22117507843205453,0
+0.07369842598669905,0
+0.28484920021792703,0
+0.00014590536462761558,0
+0.04621681540676092,0
+0.020706003735389313,0
+0.001628106871079516,0
+0.07753508322393933,0
+0.5021717984688507,0
+0.008102770500859202,0
+0.005055671427936712,0
+2.7587977973804035e-07,0
+0.03584210340880241,0
+0.08047821225971552,0
+0.30459228839384755,0
+0.1824692899439029,0
+0.012635976609102387,0
+0.02118800578835125,0
+0.14981549417505569,0
+0.07213780877214068,0
+0.0072140679395570175,0
+0.31500298515672276,0
+0.00733024486326673,0
+0.005261760636731294,0
+0.022847162978032742,0
+0.44857721471870954,0
+0.04042985318376731,0
+0.07024065082274386,0
+0.01139902048835387,0
+0.21974180403740692,0
+0.02186069016094187,0
+0.007843886197180839,0
+0.08928369169968312,0
+0.0019328043765448042,0
+0.001215289688142915,0
+0.09931405941979385,0
+0.010861489916744512,0
+0.0073717212016888856,0
+0.13770048425338768,0
+0.3980454604022748,0
+0.0007134345252087107,0
+0.01801009359138696,0
+0.00024326852337636781,0
+0.16231599578149827,0
+0.2123717213180941,0
+0.058082040672106004,0
+0.000592053092752041,0
+0.03736299634653262,0
+0.08932701540420548,0
+0.01193207715108062,0
+0.2344868734053386,0
+0.009647878388842299,0
+0.02688658342314205,0
+0.056620937421299436,0
+0.026288240375202842,0
+0.009257190595171987,0
+0.0013103015198612396,0
+0.1225928245109537,0
+0.12465535692145639,0
+0.24706411076737225,0
+0.0003137200433332848,0
+0.006778731913793601,0
+0.007958501612968006,0
+0.13629463446935444,0
+0.005531693699464888,0
+0.031666349986042064,0
+0.010449901162211214,0
+0.25581875670003085,0
+0.023578735285735505,0
+0.19152741199598056,0
+0.04704259310976238,0
+0.22193509067687872,0
+0.012660777092224967,0
+0.1558267699596645,0
+0.12069649271093881,0
+0.027025264153476253,0
+0.023527003143398777,0
+0.019874231147445593,0
+0.025591090238408637,0
+0.025805777028906168,0
+0.0556037463054155,0
+0.23087901968709695,0
+0.003461741514251563,0
+0.016853083181993668,0
+0.0862472652370501,0
+0.030383929412178694,0
+0.008212401083868646,0
+0.11660011013354532,0
+0.0015571997512494491,0
+0.27336338005436084,0
+0.003784601561472193,0
+0.017021587295359346,0
+0.01568760404369843,0
+0.002665412834404865,0
+0.02964290981512065,0
+0.045759029601571424,0
+0.045058870359913114,0
+0.005025740930044265,0
+0.4474207243464904,0
+0.016722113927682934,0
+0.002899763826982835,0
+0.2900731113433331,0
+0.06872712693878287,0
+0.0980190040714162,0
+0.22495198513798714,0
+0.5429642309999025,0
+0.041358368881237596,0
+0.0606373352343762,0
+0.044838362738862395,0
+0.13956096274826343,0
+0.00018111346571889905,0
+0.18247079828078153,0
+5.630411918208904e-05,0
+0.059971211756179164,0
+0.025814706026527696,0
+0.0004795952683077918,0
+0.027995143466013856,0
+0.37241460209647753,0
+0.046383769263420985,0
+0.16445511607621296,0
+0.03840366485666351,0
+0.04190694583968878,0
+0.00019370605662911435,0
+0.10402842924828919,0
+0.008161646304032459,0
+0.07230681472981744,0
+0.07433128501646036,0
+0.11544382404169588,0
+0.09906726533838404,0
+0.11692479146453583,0
+0.05667590567575329,0
+0.21999914422887817,0
+0.3373333730637532,0
+0.013183992515192682,0
+0.010106090780694544,0
+0.05519580624948829,0
+0.0032544104116234984,0
+0.021682564739878125,0
+0.1322296291147691,0
+0.09448109617935689,0
+0.08479683105936049,0
+0.016439741337716515,0
+0.003622764247328267,0
+0.293121279201816,0
+0.004684230478385869,0
+0.16757156113220162,0
+1.2382445272782293e-06,0
+0.09509732014493585,0
+0.13979277883642727,0
+0.0069332613352361796,0
+0.07059315062779369,0
+0.012057472603373944,0
+0.030572866047412113,0
+9.932505770162473e-05,0
+0.00014154263691051468,0
+0.00015405258334731426,0
+0.09890694577161059,0
+0.2441004448595543,0
+0.004238055870625451,0
+0.02628935341467134,0
+0.29704664445358975,0
+0.15322286078953523,0
+0.03836605526019161,0
+0.060486789066601085,0
+0.010881325532113278,0
+0.037027289591485754,0
+0.011590401885126613,0
+0.0024865683684596705,0
+0.000679019388993399,0
+0.2203172093604239,0
+0.026063538693967454,0
+0.002076535139883557,0
+0.00505716194061346,0
+0.10474198711425517,0
+0.14083074920944044,0
+0.09712760344903344,0
+0.0805720941202672,0
+0.3464811976660002,0
+0.4954156233992252,0
+0.031150061359126312,0
+0.008952280698177993,0
+0.18637868080326786,0
+0.19963522633943306,0
+0.06257609673678077,0
+7.213443850007044e-05,0
+0.000370330349422309,0
+0.00011542523646833375,0
+0.0005242258485089181,0
+0.1050790181817832,0
+0.01949558522074865,0
+0.005108522247885081,0
+0.02771826750170287,0
+0.2068020820302748,0
+0.0005827211816315704,0
+0.08510575589279376,0
+0.7655366926098661,0
+0.020465976076956265,0
+0.06612299600851705,0
+0.09814211785823967,0
+7.100210069316879e-08,0
+0.11036507370621777,0
+0.11697730826475064,0
+0.04009936339314283,0
+0.0007488701111712261,0
+0.3142863586108952,0
+0.10112344599899929,0
+0.06618327541498328,0
+0.30080455959157404,0
+5.653728151983962e-05,0
+0.1237019662619615,0
+0.016257689080651443,0
+0.039875024172661894,0
+0.06965873137828762,0
+0.2746385484231818,0
+0.20178406051108552,0
+0.13203100579424998,0
+0.03889709630816662,0
+0.3274314734197622,0
+0.8623971729528636,0
+0.42789878013523086,0
+0.025840991342699394,0
+0.008900331142349626,0
+0.03252346857343897,0
+0.11306274414593638,0
+0.05235400122710036,0
+0.026989197177550682,0
+0.0006991498214463445,0
+0.07065364702521146,0
+
+0.010633839438008648,0
+0.03422920478904333,0
+0.009268267897617644,0
+0.002480518217927617,0
+0.14699551167381983,0
+0.21899961884413255,0
+0.03585805400054271,0
+0.11555808832898844,0
+0.02522328281457729,0
+1.8392287439819304e-05,0
+0.496041778028353,0
+0.023291161798245606,0
+0.2847737994476864,0
+0.011305774514213735,0
+0.04060139318192141,0
+0.015098800641783667,0
+0.06429080196173764,0
+0.3623011200476608,0
+0.0024321018938001206,0
+0.031114629247195595,0
+0.07193892140924098,0
+0.3115127901099236,0
+0.03467040853379552,0
+0.16815088039250278,0
+0.006750062109188974,0
+0.007948394050311364,0
+0.0026550416957479865,0
+0.086201694459084,0
+0.0629989118183685,0
+0.031036360605245773,0
+0.1456684372825817,0
+0.00019498735555590347,0
+0.14768746234569757,0
+0.004069066981717795,0
+0.10289191196017877,0
+0.0016048311230998907,0
+0.23275651400908187,0
+0.051272915918094186,0
+0.04875504767916346,0
+0.08960678656528395,0
+0.09112695428906314,0
+0.005241698433161311,0
+0.012281680817656878,0
+0.24988307050432895,0
+0.1380552565906952,0
+0.003429619361202174,0
+0.037129071638423036,0
+0.0011063620909875745,0
+0.21601619268629832,0
+0.00455654603171991,0
+0.2199640766641954,0
+0.04993984083390412,0
+0.08594450113379654,0
+0.011804793473150197,0
+0.0007989038450191398,0
+0.13554000239975345,0
+0.0019477893497676616,0
+0.08251377939449284,0
+0.059464090391860215,0
+0.025701429883542397,0
+0.009391942258178574,0
+0.11813915084441454,0
+0.005553551113706614,0
+0.00047744282128744096,0
+0.023898625373695123,0
+0.012154360888784823,0
+0.043288116483106875,0
+0.013627716675274768,0
+0.011797743665426873,0
+0.006842642548443691,0
+0.01927477429942133,0
+0.004654464806603061,0
+0.00032675267690465725,0
+0.22915036050985088,0
+0.01954331748426458,0
+0.0019221639600048648,0
+0.12821789540379142,0
+0.0015592145237569822,0
+0.12427034094941869,0
+0.02778131759067805,0
+0.02912819200278676,0
+0.0002543426393662553,0
+0.09052175448503043,0
+0.08692937201721937,0
+0.24536268059911936,0
+7.904816260073249e-07,0
+0.0015359559290992865,0
+0.006935453916892216,0
+0.0054491246962911615,0
+0.006898836280369945,0
+0.0008367892916704113,0
+0.0004161635439954619,0
+0.034749641249571715,0
+0.2087576809424318,0
+0.08221159627482136,0
+1.4584546757101606e-05,0
+0.06384310698847985,0
+0.05014773826479422,0
+0.004670843135242797,0
+0.000596282100801034,0
+0.03178813412727858,0
+0.4592683121105681,0
+0.008520249546166285,0
+0.06348436264487248,0
+0.42827614305028916,0
+0.10443848433548811,0
+0.25352678848598337,0
+0.22642262469394298,0
+0.0009202788902525214,0
+0.13956075277810642,0
+0.1661567041286132,0
+0.3996773687789471,0
+0.006353719851616778,0
+0.058909338702145944,0
+0.01620122493671474,0
+0.03942778334141393,0
+0.2083949501549803,0
+0.06349990292513982,0
+0.0001858544535800702,0
+0.20469849983739724,0
+0.01405117164025942,0
+0.0014291527546013661,0
+0.04396737794093951,0
+0.3713713299477812,0
+0.022830825298375525,0
+0.008086644867300246,0
+0.017701924014093724,0
+0.03225178003770678,0
+0.028003918666703452,0
+0.03993431817569623,0
+0.004051091433625983,0
+1.6938153539339316e-07,0
+0.13661615451564202,0
+0.02042396552533865,0
+0.011011578264100957,0
+0.043520089150561825,0
+0.11857271298808472,0
+0.08749857573469155,0
+0.004588354300510068,0
+0.0027287265494517097,0
+0.1570525719855786,0
+0.3871843054966527,0
+0.0005449519402449523,0
+0.12115234112716315,0
+0.003007497139265827,0
+0.1387919165450507,0
+0.028480352691919952,0
+0.006909851191189464,0
+0.19990873047042368,0
+0.0028676123541389585,0
+0.05451784154072219,0
+0.0366889207613937,0
+0.28729910161026434,0
+0.06449863077438069,0
+0.005581766471622353,0
+0.34379993997341546,0
+0.001020997310980531,0
+0.005180462534140164,0
+0.0010862039663294917,0
+0.1364283256526196,0
+0.19066311770641914,0
+0.00693682408755585,0
+0.017923901369365697,0
+0.1172422473662725,0
+0.037875705397398464,0
+0.0039447618005920984,0
+0.06380780053559262,0
+0.013042846461651597,0
+0.010597001313721047,0
+0.009326743476423292,0
+0.002155762846547455,0
+0.021284742046593225,0
+0.007205488936955125,0
+0.2901933185089715,0
+0.0003901405138986696,0
+0.08618227570508571,0
+0.05601285385872144,0
+0.1496465721199391,0
+0.049696286319132185,0
+0.022410828123620132,0
+0.2905895684013292,0
+0.08012805299098383,0
+0.10910189855197742,0
+0.19391404282621877,0
+0.34939356095073487,0
+0.05189906475625068,0
+0.02009047003963484,0
+0.02346278694240974,0
+0.1956121816439829,0
+0.0638950265651175,0
+0.13582629030759136,0
+0.06603022044490284,0
+0.059345936650317864,0
+0.061107189166700424,0
+0.03999419187628781,0
+0.006708988710716801,0
+0.16073945825154404,0
+0.004081908971511642,0
+0.0025081668699809653,0
+0.04632849764912718,0
+0.03837829760956434,0
+0.010840590689552596,0
+0.0014712457360710647,0
+0.14215136560857364,0
+0.0009312019043126825,0
+0.17322265672313672,0
+0.3799557701648078,0
+0.08311843689371172,0
+0.1415589705218299,0
+0.0112786377594106,0
+0.04877410908498093,0
+0.026447899146784297,0
+0.0031982876769305114,0
+0.000529828807996039,0
+0.010529478894114522,0
+0.09179768483086714,0
+0.49345965042049017,0
+0.3926093325463233,0
+0.055097689426605236,0
+0.031981823759675496,0
+0.00044535325666262855,0
+0.040966896902263246,0
+0.07898043965107755,0
+0.000565193597786461,0
+0.25458328581169554,0
+0.028203029638815873,0
+0.17911954338287756,0
+0.0700326607889721,0
+0.22374789065494066,0
+0.16969712257688124,0
+0.05650927003534667,0
+0.036375203007011025,0
+0.031179788160551548,0
+0.0017413902339385781,0
+0.422191456835262,0
+0.011957437201101682,0
+0.14275595599353455,0
+0.00057653697495974,0
+0.011258924719659783,0
+0.17026332981935904,0
+0.11059181498316513,0
+0.34370791915313326,0
+0.1490129537969507,0
+0.00481905109843377,0
+0.20251933502782188,0
+0.005801918375137869,0
+0.15091486790187145,0
+0.05024737330834132,0
+0.09130021084131722,0
+0.0008075004119900839,0
+0.03164132342158826,0
+0.052573237980527154,0
+0.0060689978805972275,0
+0.1113058518139245,0
+0.10540424777303121,0
+0.03735707820457888,0
+0.04172077767497538,0
+0.013878262500414426,0
+0.0054094085956443,0
+0.03566442446509728,0
+0.09061983730433307,0
+0.024407642459100307,0
+0.0574788848447861,0
+0.030674616723135244,0
+0.04829433990702668,0
+0.03007611810741891,0
+0.00043765276532259237,0
+0.14681132657082557,0
+0.02897852705861571,0
+0.013630333338273432,0
+0.2248608478029995,0
+0.07106169670162671,0
+0.11160234145282004,0
+0.23887762049331643,0
+0.1284587242004611,0
+0.029908304555854297,0
+0.008556267594915143,0
+0.011770652288089144,0
+0.029148253885235953,0
+0.2895448718272733,0
+0.3738623575154973,0
+0.5958649256116045,0
+0.0666327411780649,0
+5.8434496819748607e-05,0
+0.004856057517258594,0
+0.09980433728597553,0
+0.29311732766358845,0
+0.47842958530792024,0
+0.025847838947245145,0
+0.009098875184217255,0
+0.14969524686287278,0
+0.07170310081768136,0
+0.14183596789303668,0
+0.019032405059960088,0
+0.20499175675047324,0
+0.00010827791776261899,0
+0.0038905456000634963,0
+0.0020639986360398775,0
+0.031911284649664154,0
+0.11199652380668094,0
+0.002716158601266128,0
+0.42174867514072345,0
+0.004312882228995348,0
+0.08974715691377559,0
+0.2800238401002932,0
+0.10114702526940607,0
+0.006808118037085681,0
+0.029829582393914783,0
+0.24634036492073919,0
+0.10940777436834906,0
+0.014633366812295526,0
+0.02285048557464092,0
+0.021976944269383545,0
+0.0041281019431303224,0
+0.09120664677365938,0
+0.36902624818429364,0
+0.1291974346704809,0
+0.1439237439624076,0
+0.22490422202693394,0
+0.2857578066961789,0
+0.06475493218726926,0
+0.14102022273884315,0
+8.583718038435208e-05,0
+0.010029282151191459,0
+0.07899288801247259,0
+0.005190165025333322,0
+0.14544958368682495,0
+0.2923164026627171,0
+0.3211816269110616,0
+0.01500008734826426,0
+0.05133233840555753,0
+0.0051155616932587866,0
+0.0736785302348478,0
+0.0371596850509991,0
+0.30934287190853155,0
+0.1425264201788876,0
+0.06163139806176036,0
+0.0043027498190679,0
+0.15388998133151668,0
+0.4869708879255629,0
+0.08817161383997543,0
+0.006853454685041377,0
+0.18282514368509212,0
+0.03984863888335104,0
+0.19285342229800334,0
+0.004619782100083739,0
+0.010015786433132622,0
+0.00011603357898015651,0
+0.13521852398880335,0
+0.0858454083423589,0
+0.0762220408407057,0
+0.013426805619207649,0
+0.01575875491753409,0
+0.046983423013855184,0
+0.011120057872459845,0
+0.009792874865685685,0
+0.05191269163537807,0
+0.06050407572691684,0
+0.08958448471012664,0
+0.006661032019105638,0
+0.11287745640278388,0
+0.27337423160525903,0
+0.07328781967368712,0
+0.012969238550565334,0
+0.032055472379636095,0
+0.00022053677541577246,0
+0.01840081126445959,0
+0.5982817333418643,0
+0.015034963110603847,0
+0.10268148450340595,0
+0.013421098730525185,0
+0.12276690047801694,0
+0.0020721275099627088,0
+0.00023294723258845783,0
+0.25800285357834873,0
+0.002958523998414034,0
+0.01215106116815416,0
+0.3327896189471681,0
+0.00029305794837893777,0
+0.1891478892165956,0
+0.11835986852622335,0
+0.3013717513515714,0
+0.2269808608261603,0
+0.005287550800660881,0
+0.07783546401966634,0
+0.1301466999555272,0
+0.09887038271128264,0
+0.08428824893607097,0
+0.00045793283344965785,0
+0.04933792882203435,0
+0.012525883283470273,0
+0.18424205354805204,0
+8.844106820481447e-05,0
+0.023050222998274313,0
+0.12156818857756743,0
+0.0018090022508612115,0
+0.4805161883698859,0
+0.010876969130942719,0
+0.0003415321896191919,0
+0.0024509207435962177,0
+0.024929654876138702,0
+0.06535831531398284,0
+0.07189123207755065,0
+0.003643797297571933,0
+0.36819887426473874,0
+0.037121598676731454,0
+0.023554576098723436,0
+0.0195977200349269,0
+0.0055090028805292865,0
+0.02574981367044017,0
+0.03992079309512921,0
+0.000637797483213275,0
+0.13128164461341002,0
+0.14587034275479033,0
+0.048576325232325586,0
+0.005345149903528646,0
+0.010437220970774671,0
+7.745129010865468e-06,0
+0.04940500379116011,0
+0.05913721425587211,0
+0.3283485769419592,0
+0.18749095312887704,0
+0.003491299225641336,0
+0.00561925731169159,0
+0.016495442419489362,0
+0.0004097322474974157,0
+0.014193746443689462,0
+0.3612741705379673,0
+0.013911437916840626,0
+0.0051573777999766295,0
+0.18784946141043057,0
+0.06994380935682586,0
+0.17443860313609486,0
+0.03627235063309936,0
+0.10642237833212742,0
+0.013397264097239837,0
+0.004825635136285652,0
+0.017281180843239034,0
+0.0009911000367661483,0
+0.22486492724300092,0
+0.015167131985328073,0
+0.003901442860776461,0
+0.9539661030111406,0
+0.11293258770005969,0
+0.0884473940634737,0
+0.011832615013281374,0
+0.04936925671830647,0
+0.9673115081933925,0
+0.004376946532605662,0
+0.03709369801042044,0
+0.22095975232546144,0
+0.00016016683769584606,0
+0.03000884654096001,0
+0.21824360192621142,0
+0.00013590477561967925,0
+0.13090098914170872,0
+0.020225823180917712,0
+0.03113911218345799,0
+0.0510035036658687,0
+0.059838307635600906,0
+0.21546410637118774,0
+0.3081339045353474,0
+0.023697889046682113,0
+0.07285712403877964,0
+6.328637388159576e-05,0
+0.6292253962751667,0
+0.0208085706878878,0
+0.06172893904456174,0
+0.0463680130261203,0
+0.0708277838268477,0
+0.14378749754779668,0
+0.025814885830031796,0
+0.1351928094184444,0
+0.24665154700437597,0
+0.0012433431669761645,0
+0.0014637317753763265,0
+0.06508641040523318,0
+0.0008740951659495717,0
+0.3727452331117584,0
+0.04318339338311258,0
+0.004236037760089994,0
+0.12577279548498976,0
+0.0002520893663874999,0
+0.0014337025994955554,0
+0.16375720830137477,0
+0.02071681798574635,0
+0.6097030790719037,0
+0.0567019738238274,0
+0.01995794667697471,0
+0.0767593352283806,0
+0.056099115129818286,0
+0.22073549144718135,0
+0.037972034254809814,0
+0.002912650527998774,0
+0.07595288102105427,0
+0.2757236300294961,0
+0.049132486925197436,0
+0.08433150992891322,0
+0.04515218361737058,0
+0.050023434828546744,0
+0.1221549497291075,0
+0.01388424527089079,0
+0.23067911264197863,0
+0.010023740635959743,0
+0.24185225965602836,0
+4.481684329627491e-06,0
+0.10126080514234855,0
+0.07600635912062867,0
+0.05486836152070057,0
+0.07512751361545547,0
+0.00628546723109855,0
+0.2166548657208319,0
+0.05365769191807608,0
+0.0018906069226078573,0
+0.026535084465302377,0
+4.587786500996579e-05,0
+0.03758062088970566,0
+0.02126326757185898,0
+0.09566404171634271,0
+0.12110461772087469,0
+0.01269586610652595,0
+0.0037870419186518114,0
+0.002784203567680531,0
+0.02143242153666517,0
+0.005129095538470933,0
+0.0606388548137729,0
+0.09380160605600431,0
+0.0037200738181403952,0
+0.012416692264061346,0
+0.010255614079714374,0
+0.005360110669981412,0
+0.32271002421282136,0
+0.0031765762653835606,0
+0.0608930245534182,0
+0.0032186039384683334,0
+0.032094394397514395,0
+0.008834239815547913,0
+0.015422334125283451,0
+0.020530775380948236,0
+0.03348553484058725,0
+0.0040766899330514335,0
+0.032273487483769556,0
+0.0020857643968348865,0
+0.008609439784080668,0
+0.004441424931807631,0
+0.08262259472008875,0
+0.02854388387609204,0
+0.125127371970188,0
+0.4229100029350653,0
+0.00015647255445568815,0
+0.0001457214480317931,0
+0.2651318347002509,0
+0.09782539276372018,0
+0.30251321189707575,0
+0.049331219507694604,0
+0.07221357294296088,0
+0.0004593351440038749,0
+0.00747457227491595,0
+0.17651645969657087,0
+0.012339144433999149,0
+0.0024385133014899487,0
+0.008972583274047072,0
+0.006913200938689022,0
+0.002921300037580357,0
+0.11918354035097663,0
+0.0019283752663384137,0
+0.17568690206887497,0
+0.4096669283099327,0
+0.0269500338657008,0
+0.06893273697451602,0
+0.15200860903558067,0
+0.010507312347803225,0
+0.013904272359008171,0
+0.24157955808091608,0
+0.024193068871532233,0
+0.16926627055822083,0
+0.0006925228358712643,0
+0.0013801675579238628,0
+0.002630213041194119,0
+0.06750215211802031,0
+0.8576880660931504,0
+0.007307555539771431,0
+0.008938235465708877,0
+0.8410140573808393,0
+0.002262682203411122,0
+0.4007454889837426,0
+0.04114368420584727,0
+0.06378608625319335,0
+0.01868249562540868,0
+0.001010145509899136,0
+0.08707869066182303,0
+0.14722771027913079,0
+0.0026279940507293762,0
+0.08317170496206269,0
+0.1505745464797054,0
+0.0025964068789817722,0
+0.0037081278534867373,0
+0.24485436096280214,0
+0.022542589951706053,0
+0.09855303906375289,0
+6.164193080718881e-05,0
+0.008969596034111401,0
+0.00861650752861805,0
+0.0047849642485559025,0
+0.0007130059287092032,0
+0.3865343271596069,0
+0.2865925386004899,0
+0.09176463452713726,0
+0.014795489033512499,0
+0.06040956915387152,0
+0.16168019400034317,0
+0.00115112271855073,0
+0.2810548503158029,0
+0.016815779839123128,0
+0.026058104993272307,0
+0.30067008050214417,0
+0.10607519888674188,0
+0.03851629259252916,0
+0.008203315461432607,0
+0.010338857309310865,0
+0.0016640334204831165,0
+0.08588954503002996,0
+0.07609977682590757,0
+0.03467484167057745,0
+0.049097750948397106,0
+0.0049893556882056,0
+0.22242749830810649,0
+0.010169111730987663,0
+0.04609396366573124,0
+0.026958548079518817,0
+0.003890149661825915,0
+0.0036778845401752905,0
+0.00022621065834787878,0
+0.4692266145574634,0
+0.2606078664337904,0
+0.13948529139933422,0
+0.8344707605173424,0
+0.34043726157933585,0
+0.25626486534249826,0
+0.03672960934595349,0
+0.13512436442227746,0
+0.0002749272308186074,0
+0.03997380321438597,0
+0.00027931542384463444,0
+0.0002911153882918852,0
+0.00017946824578212153,0
+0.309514707288815,0
+0.0030430684583436516,0
+0.046005221259357756,0
+0.08586986554828507,0
+0.010390133226393003,0
+0.259847284775201,0
+0.27559812275015316,0
+0.015776618377909515,0
+3.6264882863788977e-05,0
+0.002358487293343393,0
+0.03215873384427093,0
+0.14441426085063952,0
+0.003560974490791839,0
+0.06455798487685903,0
+0.02196024851044689,0
+0.006774515369204944,0
+0.17547825700344516,0
+0.009427069555439186,0
+0.13311916420557918,0
+0.28520901491050876,0
+0.41346251068976486,0
+0.23352317041844267,0
+0.05392151105878971,0
+0.0879593296276914,0
+0.0015563446009699221,0
+0.017376623808661788,0
+0.12232818050269016,0
+0.004626045343220508,0
+0.09608038015760774,0
+0.02491464093676468,0
+0.2015369393688203,0
+0.048757821496949016,0
+0.04893110112846828,0
+0.014477430809322938,0
+0.11490654396309434,0
+0.028260538249438315,0
+0.6029489134951305,0
+0.014210269459325733,0
+0.0008863233023041692,0
+1.224337158486915e-05,0
+0.011850344545590117,0
+0.02888054754128363,0
+0.00833454581380785,0
+0.00018644648691465654,0
+0.14960060491175903,0
+0.3450573036065499,0
+0.16331797018361544,0
+0.3876211005931623,0
+0.08148681326787208,0
+0.2894480567193071,0
+0.0017010213929791178,0
+0.009505803745149682,0
+0.19462664360935403,0
+0.03542679696715937,0
+0.05090882330335237,0
+0.3336597181308875,0
+0.18271071946589948,0
+0.17175862935556813,0
+0.3992388293535646,0
+0.07055526588259052,0
+0.14078982501955598,0
+0.10998605513128083,0
+0.018451193087597684,0
+0.002156330013000292,0
+0.0011581943597227195,0
+0.22876347541784892,0
+0.17652882066875425,0
+0.013410157877629118,0
+0.348405268043615,0
+0.579585791238205,0
+0.4561334527168623,0
+0.1317680080233371,0
+0.02497622243662602,0
+0.09783280116518096,0
+0.03493750441927438,0
+0.05685211571507527,0
+0.0059894536491693915,0
+0.5006346544757646,0
+0.00926583200168324,0
+0.22023756082194668,0
+0.0025318991376005557,0
+0.0337556944255709,0
+0.006481250565890264,0
+0.1028542309316282,0
+0.31841482026349516,0
+0.10508940294451134,0
+0.10813401792640534,0
+0.07774912161979174,0
+0.09910580939807781,0
+0.19368964520671397,0
+0.7693997377394962,0
+0.18357169139978288,0
+0.0286620956471181,0
+0.001947024963520554,0
+0.10798646970409435,0
+0.2676884017740859,0
+0.0019750841231206033,0
+0.0036576152729625847,0
+0.08140098737271757,0
+0.1102242364118119,0
+0.18420106320740792,0
+
+0.1534211502778822,0
+0.2714514372963968,0
+0.3839098635015827,0
+0.013433842192480528,0
+0.001279175692165728,0
+0.08022165519522632,0
+0.009686457380607078,0
+0.23018240192412578,0
+0.0015665709803475553,0
+0.17641519731487945,0
+0.24153455120516348,0
+3.291275031307102e-05,0
+0.029121461710810075,0
+0.003664584447471514,0
+0.016315443797167282,0
+0.0342496826346931,0
+0.0659887930167907,0
+0.0011624833819855278,0
+0.011089101123086618,0
+0.011057365962794921,0
+0.01947514873622727,0
+0.023232632453826334,0
+0.0011991146795726137,0
+0.057478006271776495,0
+1.764641571742235e-06,0
+0.16094707022247,0
+0.013940726286952304,0
+0.19667074659980546,0
+0.08169538125721279,0
+0.07307039822624913,0
+0.04950094460657773,0
+0.1986549975735002,0
+0.070034113489955,0
+0.14525621209654674,0
+0.00040063873249635126,0
+0.0038843083190425115,0
+0.027923513933195754,0
+0.15633834024895862,0
+0.05040608055096981,0
+0.09492744273725498,0
+0.029494156026520883,0
+0.2166924912225075,0
+0.6824483598989616,0
+0.04493819029194621,0
+0.010337188744949665,0
+0.26866097637276143,0
+0.05741407798122099,0
+0.04936468381704468,0
+0.06609220575659729,0
+0.06836687401132929,0
+0.23098490923698742,0
+0.014732375011339092,0
+0.004526328405841033,0
+0.20326267915288257,0
+0.007173712860281037,0
+0.17809886004183523,0
+0.05024367736912355,0
+0.3821760263334542,0
+0.0879226195806316,0
+0.0374874975821356,0
+0.07376844959396103,0
+0.024159429459717812,0
+0.029755893983420302,0
+0.04357375799915293,0
+0.12926456010693585,0
+0.14164815197969885,0
+0.1077877165590518,0
+0.02008086380147314,0
+0.03131372893548748,0
+0.12366915970716233,0
+0.0017682583825936213,0
+0.009699905347526332,0
+0.26157024102661763,0
+0.07127158070095113,0
+0.12959971689874245,0
+0.01012551644570908,0
+0.001101177372103669,0
+0.00025397689459130153,0
+0.13678483189691512,0
+0.23263174273514436,0
+0.008799549246391484,0
+0.2524491500998106,0
+0.1233333860685748,0
+0.05189539301751147,0
+0.020459431153837894,0
+0.06261937016123001,0
+0.050990637256983364,0
+0.29256942010547615,0
+0.6470661584910175,0
+0.023576904028851813,0
+0.014308417608301949,0
+0.01338638011156135,0
+0.0532837085055084,0
+0.08437545477788026,0
+0.036398841055074384,0
+0.004811958098644137,0
+0.023401442086634788,0
+0.19249235333097134,0
+0.24497306918709602,0
+0.15598817006573945,0
+0.14841299797054397,0
+0.10257952215355079,0
+0.0016231108122543869,0
+0.03169801004925922,0
+0.057009615129466215,0
+0.03231114821248403,0
+0.0255232691740641,0
+0.09850046990655309,0
+0.0054121079305556345,0
+0.002181187265030902,0
+0.0469907183345019,0
+0.2678896687558495,0
+0.00217998011881899,0
+0.016479510765907462,0
+0.06233791722463143,0
+0.10827265992976262,0
+0.08758696267418867,0
+3.072322430563385e-06,0
+0.03378816195222456,0
+0.009146665697782304,0
+0.10845320823234614,0
+0.003977260272327558,0
+0.06878026609751274,0
+0.05294581690628268,0
+0.004205176793157879,0
+0.28225125191377365,0
+0.060838494223876924,0
+0.4298906828452651,0
+0.03550537210000195,0
+0.0671247381458207,0
+0.327853828271858,0
+0.08467401865478044,0
+0.028374567760393626,0
+0.040488359435660225,0
+0.0018494794862782475,0
+0.0527562980050857,0
+0.12209149726500387,0
+0.11668475297769634,0
+0.3903874083227242,0
+0.06568180007626613,0
+0.051053217984697585,0
+0.003382990818299953,0
+0.04526254630839039,0
+0.07128038637450525,0
+0.26536125420280937,0
+0.029364557926965018,0
+1.3512926325335207e-06,0
+0.08276654058088095,0
+0.12172302929589833,0
+0.016596839766075837,0
+0.10004409189272483,0
+0.11786023372352653,0
+0.2738293189640971,0
+0.006641316483839951,0
+0.41206578769250796,0
+0.1643171456311517,0
+0.9889681358453934,0
+0.008370748187106935,0
+0.4240002756612876,0
+0.0047048291014099375,0
+2.720298790795247e-05,0
+0.0028793119136514196,0
+0.0006412436080039517,0
+0.00011331859804121216,0
+0.010954210002317895,0
+0.0548551178932429,0
+0.1256857562475163,0
+0.015433911261829057,0
+0.006507943851718189,0
+0.0040237151864368,0
+0.06818999435432521,0
+0.007897525562145164,0
+0.04975818974087352,0
+0.00107727674318602,0
+5.276992598133608e-05,0
+0.00780294240001695,0
+0.0949184922443769,0
+0.004647764960502489,0
+0.06884124218486176,0
+0.10046543612898025,0
+0.03064318399785973,0
+0.04452836584092705,0
+0.09753408302516332,0
+0.011578384284141907,0
+0.023259297348206035,0
+0.05168379813334852,0
+0.033019924576842566,0
+0.03710383926378745,0
+0.035038276433935964,0
+0.07599186684603015,0
+0.013123034735296815,0
+0.0628946284736442,0
+0.048450947585126046,0
+0.02302759848693087,0
+0.0010814152951985657,0
+0.22160250770673132,0
+0.018034337396469577,0
+0.04695930549973991,0
+0.08528465355398479,0
+0.0013136723522365102,0
+0.7922391332133409,0
+0.0016220973098596235,0
+0.00042995192621129346,0
+0.10342737710368169,0
+0.22031837742067556,0
+0.11083172913857145,0
+0.17913198822674295,0
+0.019918566700210524,0
+0.013172649082133414,0
+0.057277131415327656,0
+0.1266413414182638,0
+0.005036034779873853,0
+0.015623038123766367,0
+2.5557239947440138e-05,0
+0.022985695557756248,0
+0.018672176805850867,0
+0.2420949502137988,0
+0.010594326495972153,0
+0.0019083340360116778,0
+0.08502737687038729,0
+0.07121100599831763,0
+0.026794782264164062,0
+0.07445864539733729,0
+0.33972200946077635,0
+0.0974070232866703,0
+0.11366866814070227,0
+0.003298167812847439,0
+0.034405032047212084,0
+0.0012131119310132212,0
+0.027559863390809552,0
+0.009270050739011038,0
+0.617067781205916,0
+0.08341254330713843,0
+4.398760091135716e-06,0
+0.1316811283623071,0
+0.015489928795391733,0
+0.0217034012911533,0
+0.014326600588393797,0
+0.19251961890748825,0
+0.0009611993852678931,0
+0.18511867361180392,0
+0.0009870566157685699,0
+0.03040734991806675,0
+0.28333211764495136,0
+0.06353280684089688,0
+0.16054912361070545,0
+0.0839084194283986,0
+0.3181260318841283,0
+0.3148691289110759,0
+0.4701844829227501,0
+0.0007159844091157635,0
+0.0005096541000667239,0
+0.5628353055152011,0
+0.0004415397548507967,0
+0.06879321104044564,0
+0.022499788884370958,0
+0.2771574916255298,0
+0.20653744176893257,0
+0.0015041440840240416,0
+0.17130933600960074,0
+0.19229142336760563,0
+0.033250029984070506,0
+0.039446776248565685,0
+0.03691442559881063,0
+0.04659567921773015,0
+0.2500832844916303,0
+0.00472621106057408,0
+0.23493904220394102,0
+0.34084855128821134,0
+0.06616139341450808,0
+0.02930194606845863,0
+0.03912426888334784,0
+0.024645314642528456,0
+0.2984706078279854,0
+0.09129147782812605,0
+0.16098232250318395,0
+0.07047977998077912,0
+0.2072218397291022,0
+0.08256751013233633,0
+0.011526031116022531,0
+9.475700451763129e-05,0
+0.051907310192241006,0
+0.009404062420126206,0
+0.14685035159543366,0
+0.01283367207495072,0
+0.6668260619165467,0
+0.021734262456016607,0
+0.1208479916458934,0
+0.002465903803007082,0
+0.15469457224119493,0
+0.021753085729437162,0
+0.41721132505144054,0
+0.016140306282342788,0
+0.0016382737057922738,0
+0.0039019895348688612,0
+0.4571871083310398,0
+0.03883111191161109,0
+0.2784930306346128,0
+0.07844035780468309,0
+0.050233622752176785,0
+0.04241097162777945,0
+0.2722895354270122,0
+0.12553917078249258,0
+1.0576562092991677e-06,0
+0.03253689019357893,0
+0.08716205917929273,0
+0.13378904143293105,0
+0.15765761915494314,0
+0.00014968551900840625,0
+0.014478324068140683,0
+0.13373098549467904,0
+0.8560255968151023,0
+0.04968086962950859,0
+2.2359993871017024e-05,0
+0.005151324412426191,0
+0.16916098030159815,0
+0.028668937988492026,0
+0.015264089167675934,0
+0.10845889269809712,0
+0.09571514673823897,0
+8.904503708957093e-06,0
+0.004663144635774824,0
+0.00680448004546277,0
+0.10917037889834695,0
+0.06979399055645098,0
+0.05181427959844355,0
+0.10579147296391238,0
+0.13859646099525452,0
+0.14560600260706794,0
+0.015527791814218293,0
+0.012304139594786621,0
+0.0007703533319820242,0
+0.08100366167746194,0
+0.18329603613905654,0
+0.015250151913132549,0
+0.1383057929952556,0
+0.0790468004596348,0
+0.3142211607903459,0
+0.01796621954420118,0
+0.09141319408443471,0
+0.17269375159518768,0
+0.016715367742031344,0
+0.7581662139968868,0
+0.8225773697293398,0
+0.2910181053018392,0
+0.22940981396596838,0
+0.00283523905247536,0
+0.0837300786559437,0
+0.06317594306485838,0
+0.005851365899688422,0
+0.006270378717275378,0
+0.00024413447829303893,0
+0.020134552689479158,0
+0.036771911697308535,0
+0.16047112361688046,0
+0.012667188542784102,0
+0.015548228225613261,0
+0.013547413492035986,0
+0.4000691315531496,0
+0.00021084986436005192,0
+0.10797242690350912,0
+0.19930823863632668,0
+0.009360982430158442,0
+0.5280131795573448,0
+0.18789625943062388,0
+0.28699061201013965,0
+0.017979468670250635,0
+0.009245563701670135,0
+0.12163810531063413,0
+0.018897586608167,0
+0.09598529303795657,0
+0.27814495679339435,0
+0.007288080783352785,0
+0.05351908496616877,0
+0.033896375985008595,0
+0.00601971796050108,0
+0.0719575435517707,0
+0.04971309363496856,0
+0.024898844211365623,0
+0.5000464676955806,0
+0.029184411493957323,0
+0.013918389563119516,0
+0.012988826604983517,0
+0.4589418927378531,0
+0.07582751694845181,0
+0.37276157453365155,0
+0.00013580172619841676,0
+2.1203711931632557e-05,0
+0.029010226274595173,0
+0.4010344554428237,0
+0.005240590824967774,0
+0.00039259884262010024,0
+0.09730700006641681,0
+0.047049515577200905,0
+0.09450111797108787,0
+0.10284083947340913,0
+0.047449049688181075,0
+0.019019686756816877,0
+0.24707736435024744,0
+0.10685465766173159,0
+1.5872269964193517e-05,0
+0.13907037494690827,0
+
+0.07051843097497124,0
+0.08840502974106225,0
+0.10042052319463017,0
+0.041407141421463664,0
+0.3466546313034465,0
+0.0005603491504790938,0
+0.035677136403500856,0
+0.17228659031282262,0
+0.02373917009456317,0
+0.011721564755336294,0
+0.0022985029670143883,0
+0.0825305394391786,0
+0.0011003546933364252,0
+0.00037217021803532234,0
+7.107274983035072e-06,0
+0.0005198178503351586,0
+0.0003973284503895843,0
+0.008301022110610795,0
+0.0008370787048247466,0
+0.2966036039437767,0
+0.13134660865482167,0
+0.006312523125776547,0
+0.0639737121907146,0
+0.1710225925070358,0
+0.061275862624967356,0
+0.03341693659940805,0
+0.02050377261223458,0
+0.04813089464682653,0
+0.0024488021874133634,0
+0.051035265719059385,0
+0.000722546375653222,0
+0.02108862794115833,0
+0.0935296554276711,0
+0.1492309571147297,0
+0.008663247174331498,0
+0.1143520730210688,0
+0.05083945894198314,0
+0.018067764029066062,0
+0.0065154495287198175,0
+0.10744910188047056,0
+0.0006158970534218733,0
+0.0018144593962909673,0
+9.724902932937866e-05,0
+0.0015725704389897316,0
+0.0038659849423390465,0
+1.2349313270123455e-05,0
+0.004211503265890685,0
+0.32365606032703137,0
+0.22135164299671523,0
+0.06635879068541858,0
+0.004529452973372055,0
+0.006753969988795032,0
+0.0009999274901663256,0
+0.01834630379694626,0
+4.477088615037047e-05,0
+0.01920364648866829,0
+0.010552814745688189,0
+0.26405962916873454,0
+0.11658815102154729,0
+0.016554243935137443,0
+0.11052030906202304,0
+0.1421228853115583,0
+0.02271178316199971,0
+0.07947336645779332,0
+0.014187799723217476,0
+0.2668935112013328,0
+0.018483890418415902,0
+0.015021495813405297,0
+0.4065780787115716,0
+0.2513540022808408,0
+0.085605617864486,0
+0.03653179408245143,0
+0.03408748871766705,0
+0.006377564188683217,0
+0.016995196807089726,0
+0.13467770180819025,0
+0.0489306896979756,0
+0.004743960838609857,0
+0.012462146782407342,0
+0.015558238710961732,0
+0.015607036106727474,0
+0.002328196849283959,0
+0.02780044303195453,0
+0.0009616882440219952,0
+0.001183488774044656,0
+0.5792905940950304,0
+0.0835571709562152,0
+0.008980152605323682,0
+0.042525598220556154,0
+0.03468584231065414,0
+0.034962449472897936,0
+0.10228082503203442,0
+0.09767635578029868,0
+0.7617077138444868,0
+
+0.029912256756042043,0
+0.1024015207378723,0
+0.5979859999209336,0
+0.19741400219199268,0
+0.006887243600604729,0
+0.0033550850122225457,0
+0.06249508145547202,0
+0.08294950679779445,0
+0.07236301741350157,0
+0.00465996569658355,0
+0.025889075641560084,0
+0.14154845307844993,0
+0.31157933068652943,0
+1.954719335043129e-06,0
+0.27403693706882226,0
+0.030171810802297007,0
+0.10599214800422996,0
+0.43411171256895165,0
+0.020384696473456563,0
+0.006413893231784489,0
+0.28087547264751717,0
+0.28411242139153897,0
+0.3232638527496857,0
+0.03539835541815582,0
+0.46722835922017725,0
+0.053408001371421224,0
+0.0006225226336413595,0
+0.5222566151442142,0
+0.010596485393183341,0
+0.020236164711210168,0
+0.18878248645311724,0
+0.012478258394153273,0
+0.002390208501538866,0
+0.012690237639518213,0
+0.30596656640409525,0
+0.03063730600467876,0
+0.01644666516447998,0
+0.007880584790126755,0
+0.02419805801284849,0
+0.009046012779748626,0
+0.01285545443937752,0
+0.17963449425947875,0
+0.08611612870727746,0
+0.14253629250885283,0
+0.04550859850540636,0
+0.020678732003662333,0
+0.0005840642462750054,0
+0.1049996040136636,0
+0.12789642368599544,0
+0.20970589892287766,0
+0.03381344533837818,0
+0.04941635482586724,0
+0.0011424783361111079,0
+0.08425990416882741,0
+0.35501018915718185,0
+0.004622865744141656,0
+0.04810858213755216,0
+0.020812233224212676,0
+0.0719588317530548,0
+0.4113255231259162,0
+0.029357864005204282,0
+0.0012271998688915817,0
+0.004806641617000446,0
+0.047325128321030765,0
+0.19470409012674256,0
+0.07026008240917152,0
+0.09594033400661216,0
+0.011996023636865468,0
+0.009548889761897193,0
+0.022474239186859653,0
+0.052746333279915694,0
+0.022759275528327936,0
+0.10254019100312137,0
+0.036249511191461734,0
+0.08067929123786824,0
+0.09175479145336395,0
+0.6356576182020226,0
+0.09053006019534396,0
+0.09095794501278412,0
+0.009422848182450313,0
+0.016752558430009307,0
+0.35183156352237777,0
+0.004849747302281879,0
+0.008706360605431538,0
+0.16584984361787505,0
+0.08224502811402268,0
+9.780437354085182e-09,0
+0.009978395712924418,0
+0.14026062312219117,0
+0.010911556918721494,0
+0.009873417763423578,0
+0.09021114417184169,0
+0.1883106483938581,0
+0.00731715898657284,0
+0.08867004161929004,0
+0.006393690573154713,0
+0.2643620069068538,0
+0.008595213017089463,0
+0.0006902602130856542,0
+0.0036674365854098253,0
+0.11505121998047116,0
+0.3182486946835744,0
+0.09731242511659553,0
+0.016617487365400533,0
+0.043952269570521854,0
+0.0037586281458163026,0
+0.3762490652956514,0
+0.43461801269563416,0
+0.09470249913813547,0
+0.18911132434594527,0
+0.06550545190231984,0
+9.490895442299416e-05,0
+0.0712794817007538,0
+0.002181552003444116,0
+0.07001946059956991,0
+0.14111493963482954,0
+0.004833288439782108,0
+0.0007270743005622027,0
+0.050239267928600465,0
+0.1046497860395936,0
+0.0702438148409311,0
+0.03778086470696154,0
+0.015255841256370115,0
+0.019772804577177727,0
+0.11061196201659977,0
+0.005576844285341004,0
+0.20563699693819398,0
+0.13365663134988062,0
+0.114557351040057,0
+0.06515294828287985,0
+0.22270465137914428,0
+0.015805281168821385,0
+0.04522574481085655,0
+0.03529239913782437,0
+0.03366822310973821,0
+0.5718117034513192,0
+0.20075537551995432,0
+0.3388673068221865,0
+0.06551064947475435,0
+0.017100062916979394,0
+0.0006590353162778416,0
+0.000911035169486757,0
+0.1370185097816196,0
+0.17376739569789293,0
+0.2563391460423437,0
+0.0077893076883762315,0
+0.07299655179277609,0
+0.0360417626848265,0
+0.037036749636053745,0
+0.038140982930333994,0
+0.04472451846479618,0
+0.004916767400830502,0
+0.3457248377968742,0
+0.000978849914633546,0
+0.03660812978727002,0
+0.16190617552654507,0
+0.10858578761985178,0
+0.1391136997913486,0
+0.0014359457298752537,0
+0.0060652755518876824,0
+0.22280693073797853,0
+0.12108851242846966,0
+0.024682876307759474,0
+0.01310580123992167,0
+0.541383299523041,0
+0.005728018810618423,0
+0.07819133665309999,0
+0.2173553274610518,0
+0.05880539759868007,0
+0.20399285563164696,0
+0.06361920316099343,0
+0.26191522706066717,0
+1.696090023352764e-05,0
+0.004349317028650395,0
+0.08914050891602493,0
+0.057239936737547084,0
+0.23049657315830502,0
+0.08647246195114419,0
+0.050726601724753836,0
+0.1745208345924336,0
+7.782410468007179e-07,0
+0.1718494628853451,0
+0.025905925370310102,0
+0.08951509006378502,0
+0.12065497924881577,0
+0.018972742714089476,0
+0.024631109616852283,0
+0.006416493704104345,0
+0.00015389902876471537,0
+0.43234417474796044,0
+0.655238542508146,0
+0.041147852556144,0
+0.05579336253149858,0
+0.02948077568310532,0
+0.01740295545259788,0
+0.23922994551701549,0
+0.00400449198466937,0
+0.31623782830468133,0
+0.19047631419926372,0
+0.07972210971647067,0
+0.2858233501534662,0
+0.0011108276918770097,0
+0.05593330555085896,0
+0.038781111832850386,0
+0.03759064985756004,0
+0.09239108766235658,0
+0.016608596897163333,0
+0.13867289688224763,0
+0.02665103209454006,0
+0.0033236242862748643,0
+0.05917195848313056,0
+0.13720389558274457,0
+3.987075734353677e-05,0
+0.0015081317715400786,0
+0.16955029922272088,0
+0.014385209186157724,0
+0.2539892078834844,0
+0.0759545334527998,0
+0.20111633245756702,0
+0.06451021124429343,0
+0.4167423849032703,0
+0.01932011222813692,0
+0.05538108788078031,0
+0.05043234135497101,0
+0.0849383017605993,0
+0.003371241878772776,0
+0.05400330363742195,0
+0.0003610869870698766,0
+0.1120613174895911,0
+0.010166887666839399,0
+0.01730966296551726,0
+0.03719962056070889,0
+0.18525525691738554,0
+0.23301926258831326,0
+0.01737004011550509,0
+0.2046956253039665,0
+0.0077756588611402,0
+0.045950974901806343,0
+0.07586202902035231,0
+0.0034901762806512234,0
+0.0027873458526774452,0
+0.08734938563580824,0
+0.08848132368171154,0
+0.002076173565268646,0
+0.1281195517511025,0
+0.016876286345006215,0
+0.02339904299568677,0
+0.008496670785860808,0
+0.13102737568255501,0
+0.037020873816501806,0
+0.06626438443982527,0
+0.02578818725051128,0
+0.011955794660490463,0
+0.05629598602729511,0
+7.435900059880975e-06,0
+0.11319958373139656,0
+9.572006562379972e-07,0
+0.16721797638204644,0
+0.16059508412534623,0
+0.005789317397174958,0
+0.007348269768923973,0
+0.12324035843267048,0
+0.017387723694760774,0
+0.18439083272362244,0
+0.06482646242669314,0
+0.052372314873065554,0
+0.04945900695472648,0
+0.06375945389451274,0
+0.017346610679414516,0
+0.21410570924733013,0
+0.06678738455189856,0
+0.04758545432290708,0
+0.00031975296307235523,0
+0.2012649310709834,0
+0.017006668597994552,0
+0.01570222336266792,0
+0.163132819033966,0
+0.011741145986727049,0
+0.008346860714108603,0
+0.19229923648594374,0
+0.445331042714857,0
+0.33596673159340334,0
+0.2535193487963125,0
+0.09112058213113022,0
+0.13607439974303864,0
+0.037208397365438184,0
+0.01129883778589469,0
+0.10926308731357474,0
+0.151291548795026,0
+0.18680688443985866,0
+0.03108721875932998,0
+0.0005439732450529756,0
+0.024945392762762916,0
+0.07194633841598708,0
+0.0071392601337815515,0
+0.002995248819978575,0
+0.09130762438165685,0
+0.17444768149137624,0
+0.0858303501101914,0
+0.018666456067274354,0
+0.004042544188808232,0
+0.07010544577303188,0
+0.14570462381928811,0
+0.011484121535784602,0
+0.15076099392844583,0
+0.01057011313640195,0
+0.0001127359032078118,0
+0.10663044628031974,0
+0.03813086593769349,0
+0.0217650508508503,0
+0.009379315676490843,0
+0.00020503249423474727,0
+0.30521941063786634,0
+0.07302793205258654,0
+0.06763250962750617,0
+0.02199384954579231,0
+0.000273505863723698,0
+0.19043564931345816,0
+0.0007884529166592299,0
+0.01043639825735737,0
+0.019015844872718672,0
+0.07438377000745036,0
+0.03621482887745382,0
+0.23255178245601954,0
+0.6733240760609216,0
+0.026884987361268885,0
+4.2443327776758684e-05,0
+0.18041403491859312,0
+0.2652331574869995,0
+0.17303071464024683,0
+0.12602997707670002,0
+0.1238502622695821,0
+0.1438275745544083,0
+0.009055641489871638,0
+0.11624428456374632,0
+0.1435850199029363,0
+0.0033498500540143834,0
+0.015135900571612395,0
+0.5187488972240295,0
+0.1101921538426451,0
+0.03719959048136022,0
+0.032758144137179646,0
+0.102896228415073,0
+0.34392105820971314,0
+0.22925410576784816,0
+0.013258915944186506,0
+0.15755358924244317,0
+0.05619960218916224,0
+0.045176008076478105,0
+0.1919283014104263,0
+0.2799189774771056,0
+0.009399712576966035,0
+0.22091993222550213,0
+0.12787970603295187,0
+0.0002451555144438696,0
+0.03631994781605731,0
+0.00039663865370522547,0
+0.06274931604613807,0
+0.032640261099396085,0
+0.028954912764471864,0
+0.009011252692695041,0
+0.02777837281088859,0
+0.02240852767993152,0
+0.02170827166770353,0
+0.000881649170098265,0
+0.004867958431197668,0
+0.01220913463771146,0
+0.09788691157511767,0
+0.07629900595718977,0
+0.051737871984998164,0
+0.07067046869592172,0
+0.18006979409057416,0
+0.027797453958030748,0
+0.05274016398813369,0
+0.5900180838381892,0
+0.06748194990430997,0
+0.08628385887635956,0
+0.08723577841394733,0
+0.24285774181482395,0
+0.09731907788240134,0
+0.00016402651546899247,0
+0.005710104741616275,0
+0.03543997388161213,0
+0.10786904834636066,0
+0.6280925710808403,0
+0.017215352626710107,0
+5.805242187025332e-05,0
+0.03331538740915767,0
+0.13903416267567706,0
+0.004005508460287153,0
+0.25926460781614175,0
+0.049724730667831514,0
+0.0058095957877736795,0
+6.604899208645753e-05,0
+0.001617476795281969,0
+0.12190492730223135,0
+0.09229411986905547,0
+0.008983152420237915,0
+0.0016512763272147056,0
+0.004017213483812588,0
+0.025604113361507586,0
+0.004960256529083636,0
+0.009263095722644199,0
+0.26286214506679956,0
+0.02602974032435589,0
+0.015891665922187645,0
+0.10330435241392677,0
+0.010102601761940487,0
+0.0058553108807031145,0
+0.15689173135966555,0
+0.009318287980511254,0
+0.00231100316387484,0
+0.09561011803790509,0
+0.10126207761123088,0
+0.0001600410476948651,0
+0.07071591545976294,0
+0.04876080774860335,0
+0.14088358788226624,0
+0.02808018749678427,0
+0.455878131415139,0
+0.3437954380097682,0
+0.03483942666310174,0
+0.052843960407411704,0
+0.044490128848516844,0
+0.011722805991238096,0
+0.2932373751335113,0
+0.08622107017177766,0
+0.005879872182439756,0
+0.011080634892349684,0
+0.0008196025431748367,0
+0.05198476524142559,0
+0.2683653163547099,0
+0.04650967233578533,0
+0.03608931984005713,0
+0.00012726157185459491,0
+0.003232014296825033,0
+0.024503638256546507,0
+0.00011210513032633665,0
+0.03571024611081652,0
+0.6552888868887821,0
+0.07220549024661983,0
+0.10187508552341003,0
+0.04599180419844502,0
+0.1831826454946729,0
+0.12129062843716601,0
+0.19910859541399814,0
+2.3274313658015076e-05,0
+0.12632701383740136,0
+0.03924853491638192,0
+0.2037028527037405,0
+0.2188611708601625,0
+0.0782599139454569,0
+0.005054146184142142,0
+0.018053194578611768,0
+0.0012300151961316633,0
+0.031038253784623215,0
+0.036735967033880795,0
+0.3453102994263851,0
+0.03300124743869891,0
+0.10439699132197804,0
+0.10258720132646977,0
+0.04684996650147892,0
+0.0008476269628802336,0
+0.08526340601047933,0
+0.14529544689754478,0
+0.2079197919833672,0
+0.03454806189317962,0
+0.10643357630323154,0
+0.012981630607976965,0
+0.00014817521783326736,0
+0.04083919105544803,0
+0.03022284543980755,0
+0.015885639654177632,0
+0.20314104839581487,0
+0.0016468878830605584,0
+0.010106920326622755,0
+0.03673067888389643,0
+0.03639417285994514,0
+0.4685145758482476,0
+0.17082509443877564,0
+0.059262004580882786,0
+0.3509458156405929,0
+0.37003100986248766,0
+0.07312768527129451,0
+0.016153529594668342,0
+0.035208125330372805,0
+0.05624652603118994,0
+0.23440080629479895,0
+0.002620487614533949,0
+0.1854606580847465,0
+0.02218808873861273,0
+0.0368962776888065,0
+0.004126471764375542,0
+0.1776155788383171,0
+0.01495928966140216,0
+0.0038481423334139142,0
+3.4428758334009584e-05,0
+0.01731243191202445,0
+0.3421028860960423,0
+0.0543602653517898,0
+0.002254795112147268,0
+0.05062602984234031,0
+0.011801500779768822,0
+0.6135790221101598,0
+0.016421542412153343,0
+0.043653443708459944,0
+0.07740561618932963,0
+0.01458184192238127,0
+0.35098749400536405,0
+0.0036514968189324754,0
+0.04245673480803821,0
+0.034042243963834026,0
+0.046723205696112505,0
+0.09640396102822622,0
+0.0024599986065182078,0
+0.054877110184391086,0
+0.07982565192191998,0
+0.017995075886332063,0
+0.0023144616306309458,0
+0.0064959531472249,0
+0.477175127562721,0
+0.021261195967467828,0
+0.010157106804875625,0
+0.16475446961062926,0
+0.5271334661286048,0
+0.0955645648179673,0
+0.033208317413847645,0
+0.13083825473703567,0
+0.16652170726025664,0
+0.15887522875747556,0
+0.025931705915509595,0
+0.035400397030497945,0
+0.17156125811771833,0
+0.1657809814950699,0
+0.20375007061557185,0
+0.0023238944069840224,0
+0.04149947836222114,0
+0.013707236145208728,0
+0.6068469068679156,0
+0.01385981338092816,0
+0.16389749195527728,0
+0.051171240734480074,0
+0.02897843444953238,0
+0.14894216303612393,0
+0.0595164300427129,0
+0.004835563402624593,0
+0.05763837289245233,0
+0.0109957406929651,0
+0.13453039498796066,0
+0.0493060294412158,0
+0.004798163934156246,0
+0.04038810491702577,0
+0.0007036682589617233,0
+0.007691759591331883,0
+0.3471280924690442,0
+0.02768634184721197,0
+0.18616054282615577,0
+0.068657843008115,0
+0.00021128146135022995,0
+0.01305590278196619,0
+0.002641755915168474,0
+0.058722540949033376,0
+0.031781970176889385,0
+0.47368713307892596,0
+2.0402363784234657e-06,0
+0.018082407991818462,0
+0.020252759540586855,0
+0.006433438263602459,0
+0.021431065299355,0
+0.0025236122960796384,0
+0.10832127471391931,0
+0.010483164786347683,0
+0.008086824520073383,0
+0.0009142155679203732,0
+0.051163686867391235,0
+0.059941302565083635,0
+0.1116360552144943,0
+0.11538393892508787,0
+0.00408468385351455,0
+0.050483108402259204,0
+0.10027671198138541,0
+0.2641118393702232,0
+1.6704977450362025e-05,0
+0.0002624273354779515,0
+0.01576711479851226,0
+0.018854685354927146,0
+0.04271119935214225,0
+0.25442224998945173,0
+0.01970715766407844,0
+0.0325016812695921,0
+0.12342969677818354,0
+0.1887448579267131,0
+0.23980155340445922,0
+0.06229149917854852,0
+0.04641215568894659,0
+0.049035874267235935,0
+0.02010083597028075,0
+0.09837849403633162,0
+0.06987694313528461,0
+0.006560263631969686,0
+0.02984038154780626,0
+0.0013019279511643713,0
+0.005455849425136676,0
+0.00955181537881354,0
+0.009184524678460333,0
+0.09424591877009085,0
+0.01665034643551139,0
+0.16209298598518718,0
+0.04405232516736505,0
+0.12926625843297912,0
+0.0143711857178941,0
+0.0004932058374259094,0
+0.014055096403163821,0
+0.09868957620977575,0
+0.20208371105747097,0
+2.3450288338521056e-05,0
+0.027305478795651462,0
+0.16443560456231712,0
+0.0020852941963734597,0
+0.011374571223794414,0
+0.0013736513778840067,0
+0.0283293897757728,0
+0.0005080560958716634,0
+0.0020507221966642804,0
+0.2214417661060582,0
+0.02399310565723179,0
+0.015000824395439946,0
+0.02757550027428467,0
+0.052988316400629565,0
+0.018434238735834167,0
+0.06933620709394425,0
+0.2988543050300594,0
+0.024682940374270865,0
+7.149887519807761e-05,0
+0.0021346853039499866,0
+0.5313933356701626,0
+0.007281211280192257,0
+0.014794504638281525,0
+0.005292381598097107,0
+0.08488095252789192,0
+0.0029719651659187727,0
+0.00010196898186795838,0
+2.096786382579351e-06,0
+0.07057908285232203,0
+0.038384286529738916,0
+9.827850614940975e-05,0
+0.011830370120811708,0
+0.14103316803187624,0
+0.20170166164465883,0
+0.27254971437719455,0
+7.587375699111817e-06,0
+0.39577792302449577,0
+0.11896218075726159,0
+0.234196714439708,0
+0.07507664093975638,0
+0.5492929879995482,0
+0.0009289759337765222,0
+0.07220598539146282,0
+0.052539551338681864,0
+0.21704508238797432,0
+0.05820564988251934,0
+0.0006178332172176988,0
+0.040722242322406274,0
+0.09708116513663366,0
+0.06401550535016201,0
+0.11724485091523174,0
+0.7796611012276965,0
+0.0018670642375470648,0
+0.42805416789284134,0
+0.2916614128371485,0
+0.11452337478227059,0
+0.000569365188022897,0
+0.0011859720063858996,0
+0.008269951246773927,0
+0.5414113431695132,0
+0.10594537243099356,0
+0.04354459710087927,0
+0.04138506884072745,0
+0.10944831541366999,0
+
+0.12807058418997405,0
+0.06926780686915743,0
+0.05380478439180997,0
+0.0986801933954739,0
+0.024650886929136577,0
+0.014871514034687935,0
+0.07276356296712311,0
+0.06462242901163302,0
+0.023783770181350368,0
+0.1641900060864372,0
+0.0848179136501649,0
+0.003369560454903562,0
+0.0017790372281645214,0
+0.39653240231907166,0
+0.039416481347022705,0
+0.11965317670403026,0
+0.012757492301377762,0
+0.04081042445188205,0
+0.7367627454252208,0
+0.09266186885278102,0
+0.012586768554295335,0
+0.062477406031881996,0
+0.0024902759740516945,0
+0.16179209141703152,0
+0.028422016532928272,0
+0.19917389591376872,0
+0.019394394890467882,0
+0.002482864456369378,0
+0.11306711051499943,0
+0.00013944867765250686,0
+0.008792444910686394,0
+0.45158299892280906,0
+0.48772180959240813,0
+0.495367871279512,0
+0.12911118951353265,0
+0.12741116293579652,0
+0.5806885873713805,0
+0.043319026598427915,0
+0.007052606858120071,0
+0.06953800651382222,0
+0.06067705510687978,0
+0.0056475362903265925,0
+0.03614682536273298,0
+0.0006157830828013021,0
+0.07940344653394353,0
+6.700438950554552e-05,0
+0.003473650757623957,0
+0.43813685011597103,0
+1.78028031729844e-06,0
+0.02671753214655922,0
+0.019685689921752153,0
+0.04629478864652815,0
+0.055328256469582934,0
+0.06559865903068308,0
+0.0121995230148426,0
+0.04128323608126702,0
+0.014628558633034406,0
+0.048374779102909694,0
+0.5462276990816788,0
+0.08556884225374013,0
+0.17175013957013402,0
+0.0040862277582461555,0
+0.004288689847273077,0
+1.8950277273358085e-05,0
+0.631285647364694,0
+0.43283658505561895,0
+0.0880557208191178,0
+0.13221986670669092,0
+0.0837793982689013,0
+0.021174551899191995,0
+0.007567860824287008,0
+0.15136058527403748,0
+0.014883143454544551,0
+0.13980711856579564,0
+0.00045211256917544924,0
+0.16024445485930905,0
+0.00026034993538784595,0
+0.17791693664634256,0
+0.47263244848561864,0
+0.04620870496240659,0
+0.2532668084493398,0
+0.15514577781317546,0
+0.016540276552200372,0
+0.0879234618027269,0
+0.11764840941829983,0
+0.09627138424207712,0
+0.005656680735735284,0
+0.13744348122438516,0
+0.3395188092166794,0
+0.3366283560981501,0
+0.030913873036739842,0
+0.012230613979423356,0
+0.024347799544541172,0
+0.07994762470651667,0
+0.15515347453776612,0
+0.1627506629168745,0
+0.15741557708235218,0
+0.010073526934783342,0
+0.23438509298240123,0
+0.05338614643975126,0
+0.2842240927293666,0
+0.2694495552052218,0
+0.14526463104672954,0
+0.19634291340123994,0
+0.005699381832477135,0
+0.07758635941051964,0
+0.015025856325116424,0
+0.00010304610197643903,0
+0.014521827466242873,0
+0.3303249050798608,0
+0.08380110029265703,0
+0.0028061837098939065,0
+0.11602555343575957,0
+0.006806562967383478,0
+0.23881531692460048,0
+0.5957886388852829,0
+0.03483736504168321,0
+0.037701686202562236,0
+0.08728032122110072,0
+0.09541817231650937,0
+0.10812435185255556,0
+0.034727923086114186,0
+0.010945938748800132,0
+0.04182309131577981,0
+0.00602767112398108,0
+0.017427345110192012,0
+0.13493784414450716,0
+0.005283201533633481,0
+0.032988764042957135,0
+0.05811467285158327,0
+0.17202129813827802,0
+0.03254639306763086,0
+0.007379255410725985,0
+0.0481329696199123,0
+0.02404769268343162,0
+0.07229085863728803,0
+0.007693613687245642,0
+0.5513600694610404,0
+0.06960880830115974,0
+0.03268513121229134,0
+0.2865922617310339,0
+0.04561815757322126,0
+0.16269834818835419,0
+0.05575083215841496,0
+0.0073401868695562545,0
+0.2065338376560503,0
+0.0003988208025785178,0
+0.14711140264768266,0
+0.02505271250733602,0
+0.087823858468686,0
+0.05456135056205417,0
+0.09959301430317083,0
+0.002052745112730877,0
+0.06651010478788943,0
+0.03974741987854596,0
+0.010741632107539673,0
+0.03353932287402049,0
+0.11268752060631344,0
+0.0028413713422394613,0
+0.0002080424791556375,0
+0.06998549904966515,0
+0.06615631543707465,0
+0.0012579252996356989,0
+0.03947223592834231,0
+0.07482341723864804,0
+0.47440968339249334,0
+0.5703163596939385,0
+0.01334327136084235,0
+0.013978051408654883,0
+0.03563157836305702,0
+0.028492616009659372,0
+0.017459931069139435,0
+0.01532583421519305,0
+5.074329876897427e-05,0
+0.004309649757956492,0
+0.0010403335599120966,0
+0.10655754092951646,0
+0.047917130043911696,0
+0.3069135803748322,0
+0.024439946237869405,0
+0.006894092391869109,0
+0.021907808187386864,0
+0.0006060743361647827,0
+0.03694765565264134,0
+0.08264991012802336,0
+0.0858695764706763,0
+0.0017099616657589869,0
+0.018416360766675986,0
+0.27429283798553733,0
+0.005992236463874751,0
+0.21765490481194183,0
+0.02413113103676257,0
+0.08771755296103187,0
+0.013925909500379141,0
+0.02143373811867639,0
+0.14045775483960402,0
+0.17762915946427055,0
+0.0009213900015199474,0
+3.372079906145281e-05,0
+0.020088703797153818,0
+0.08161612174277243,0
+0.36082251510781393,0
+0.12974323835464346,0
+0.15022037520286852,0
+0.09664637339616243,0
+0.12228599885789486,0
+0.007498313818182232,0
+0.04725279187455515,0
+0.018109732387251058,0
+0.0009549502906507995,0
+0.022839985366651057,0
+0.0019120706646909478,0
+0.04780911900957466,0
+0.034020372058882954,0
+0.05895011689608528,0
+0.5147730350254218,0
+0.0027067782776863418,0
+0.06823387591495492,0
+4.866543336836236e-06,0
+0.2560738909761516,0
+0.06910840228544493,0
+0.035954900197684915,0
+0.48629732511301704,0
+0.0013036035566762537,0
+0.21670837748681632,0
+0.05840853799202543,0
+0.03899710949927303,0
+0.031808235352477496,0
+0.038549197589626175,0
+0.009058613807458416,0
+0.2426446120162488,0
+0.004202948330438919,0
+0.23705736274782133,0
+0.03655477693717178,0
+0.6417693030699356,0
+0.018941623009992935,0
+0.11132243529219683,0
+0.12470004589704017,0
+0.08954780692528799,0
+0.32016322720035945,0
+0.028085203648943197,0
+0.04197238450735534,0
+0.08572981446299414,0
+0.06854519887616314,0
+0.15533836463936496,0
+0.013713369407384612,0
+0.04218302603367284,0
+0.11453290890307884,0
+0.09340105049303456,0
+0.08914481724260467,0
+0.1238422115540988,0
+0.4151011831501686,0
+0.27154898352992374,0
+0.03741365897047171,0
+0.03863044464669736,0
+0.0009472492262010024,0
+0.00945800677704341,0
+0.0003960983557338885,0
+0.05531966712107615,0
+0.04788847046878616,0
+0.007565621451295102,0
+0.08883742521509849,0
+0.00318351840768022,0
+0.2104877370497725,0
+0.019998687610902975,0
+0.02715998801604712,0
+0.11185229657918216,0
+0.08892331476872947,0
+0.04109353498483388,0
+5.293649179744615e-05,0
+0.017368607274801856,0
+0.14754356125436513,0
+0.08105998096020126,0
+0.008242641779364783,0
+0.0020843768178112686,0
+0.41070781822164315,0
+0.10368179181115131,0
+0.0003995048515611028,0
+0.003084966153866836,0
+0.025616997415226984,0
+0.04965422540251948,0
+0.05352895421013587,0
+0.18647157722421695,0
+0.1106580890929183,0
+0.0009956772652727386,0
+0.056101772554632924,0
+0.04600763767996846,0
+0.019764044033534434,0
+0.1274046178660492,0
+0.008154111287360816,0
+0.3694117160045403,0
+0.003834990854189707,0
+0.08893302230867049,0
+0.0005974481779803078,0
+0.07700327441100815,0
+0.016199591931310573,0
+0.02341983801326815,0
+0.019557517284560455,0
+0.01727033000240657,0
+0.23959900168987053,0
+0.03530989381797002,0
+0.3864225920483334,0
+0.016563037176870014,0
+0.15269569002508449,0
+0.05979887142271413,0
+0.03566970089528228,0
+0.045559826171637986,0
+0.06983299913586123,0
+0.03136850499183936,0
+0.07728271385361898,0
+0.02013332243560461,0
+0.000605783155932691,0
+0.07756524133253674,0
+0.12507427781935337,0
+0.10690838464706927,0
+0.001224200720259029,0
+0.03203998653050567,0
+0.13974641549177186,0
+0.5990148021364952,0
+0.011187361231073872,0
+0.250406804201412,0
+0.018456549476733457,0
+8.061594881934724e-05,0
+0.2946569750092328,0
+0.0027911716613566073,0
+0.07188120502070271,0
+0.0002399968923059084,0
+0.4726215361196866,0
+0.014511522815561067,0
+0.05230809486395762,0
+0.009642341876321937,0
+0.09823173002639508,0
+0.010649758429017258,0
+0.026176445270952847,0
+0.17997622254869666,0
+0.016215752558245165,0
+0.06323498432845238,0
+0.06951763594304235,0
+0.06338490370083494,0
+3.323626225599011e-07,0
+0.019796069148696492,0
+0.0013110652743914153,0
+0.4060079628458304,0
+0.06635115636259958,0
+0.06922369502586992,0
+0.08297315815154539,0
+0.015394006660693241,0
+0.09229178705871752,0
+0.06402659724352669,0
+0.06833679495043202,0
+0.3341430076704927,0
+0.007917907392318927,0
+0.22899866494508841,0
+0.2214358937741147,0
+0.12910646672313272,0
+0.04510268349652142,0
+0.019046766290572916,0
+0.00816871042731363,0
+0.21249718143152724,0
+0.32326615847900875,0
+0.013125676475802598,0
+0.13938171645753522,0
+0.16362358978515273,0
+0.014987350597614088,0
+0.35360263749363696,0
+0.020571840004506417,0
+0.012795307852503749,0
+0.05232259418318576,0
+0.14391513669787126,0
+0.07752023308497068,0
+0.0027154280819813538,0
+0.08827918397818754,0
+0.05145845809075596,0
+0.003592607133846292,0
+0.31005128730892206,0
+0.03515697156367755,0
+0.03418374658326339,0
+0.053722335435597776,0
+0.03877145137873085,0
+0.0002835249047238236,0
+0.09819148834362364,0
+0.007173098735005799,0
+0.13735603995015588,0
+0.12558506239740022,0
+0.12829183138937544,0
+0.035102822053789756,0
+0.18855707022464815,0
+0.0070437182546705486,0
+0.17192539360581865,0
+0.31053520526669104,0
+0.015588904196500764,0
+0.02631161028700719,0
+0.12621032083011835,0
+0.04602244679222155,0
+0.054637915892621715,0
+0.008755858458680977,0
+0.1593664363454724,0
+0.11024816592371105,0
+0.009367176954339113,0
+0.04387277309398982,0
+0.09501397855363314,0
+0.33523797900688107,0
+0.014648727796753105,0
+0.22240299176381723,0
+0.06107595586637891,0
+0.005000589808633294,0
+0.004034512877710703,0
+0.0030764519516756844,0
+0.06308598018496211,0
+0.0034256453661218834,0
+0.021368281522948014,0
+0.12363774912743482,0
+0.019785091722548814,0
+0.0014855971859998713,0
+0.25833271712286354,0
+0.06193402828829829,0
+0.2753550977645656,0
+0.45753963516909363,0
+0.2695491685570638,0
+0.1478320598579481,0
+0.07668731335245921,0
+0.024754667772817443,0
+0.05780003793159814,0
+0.2062018958453254,0
+0.25620910528464386,0
+0.04475552788585471,0
+0.16182652719834154,0
+0.34664375700629424,0
+0.008294343928150445,0
+0.032251394973278696,0
+0.10005906548034096,0
+0.260078632143827,0
+0.2463237922781966,0
+0.031766585479934245,0
+0.3049907594707395,0
+0.020946624924705858,0
+0.00224367619516809,0
+0.1788460699164019,0
+0.004240643855251183,0
+2.2341457257434487e-05,0
+0.1013256027614901,0
+0.06926905649201784,0
+0.072796433001597,0
+0.04116773625641378,0
+0.08778791288536265,0
+0.16104215982822145,0
+0.05038165435170613,0
+0.014213177933352254,0
+0.09883966590374775,0
+0.013647590090828823,0
+0.038491900229541645,0
+0.020599489686308987,0
+0.3170551142757343,0
+0.0006706331235819153,0
+0.1919365406367018,0
+9.41839688444785e-08,0
+0.10316860562541881,0
+0.23250023806308673,0
+0.03429858531368687,0
+0.029708512666285002,0
+0.048724076902688984,0
+0.032471359273670876,0
+0.024522131993374233,0
+0.013218564808830014,0
+0.28386292860222256,0
+0.23745626607464515,0
+0.12262008534652116,0
+0.002530554653516161,0
+0.05883603812629096,0
+0.02235808976565152,0
+0.0005894375706717363,0
+0.483139196154856,0
+0.013372402111440604,0
+0.027998145797964297,0
+0.0015135247348291709,0
+0.29278954681514346,0
+0.0021005712864292083,0
+0.011235669570832895,0
+0.0054833908796997925,0
+0.03299626603702928,0
+0.2887938103607365,0
+0.13709740087915967,0
+0.3011998070316832,0
+0.24938200046272657,0
+0.011008839595405972,0
+0.04948991700272863,0
+0.006869738510626398,0
+0.029086899818112626,0
+0.27822915895770334,0
+0.01273417690549282,0
+0.032509081672975684,0
+0.043047863986112225,0
+0.0552487309790342,0
+0.26092356774225306,0
+0.00636928883762646,0
+0.0024952080381075905,0
+0.2644109563598568,0
+0.00012259720895590385,0
+0.19188304749583066,0
+0.31431072007113,0
+0.00013307857050914886,0
+0.01913632634442307,0
+0.014937338983153442,0
+9.552404330497554e-06,0
+0.16935238512812778,0
+0.004506936035954592,0
+0.005886636877472256,0
+0.10434624302284665,0
+0.18731286371263806,0
+0.01897117665676482,0
+0.23554595941855433,0
+0.00019704934721384392,0
+0.17152598985141043,0
+0.010982512109781498,0
+0.07896938991519682,0
+0.002154819302982899,0
+0.06858127867811058,0
+0.06187625282107552,0
+0.0002010294392693466,0
+0.12549860006355598,0
+0.0049527316505692765,0
+0.19701666611446714,0
+0.018998348576541407,0
+0.008330202979594897,0
+0.12258739012966288,0
+0.011463462258683393,0
+0.07005837721566366,0
+0.025686723166279873,0
+0.1713137707515155,0
+0.06988700676014975,0
+0.07828468031079124,0
+0.006403066699472941,0
+0.11111409572344946,0
+0.4544815023906829,0
+0.13695374187567516,0
+0.25312889644049297,0
+0.10324571167858346,0
+0.0349074139068377,0
+0.19842757360789884,0
+0.00161714192282738,0
+0.10400412408939078,0
+0.0055054028569283845,0
+0.36262602826617685,0
+0.002213587688386935,0
+0.012097607071111457,0
+0.08666666244899715,0
+0.0061342534496463845,0
+0.015600371913754163,0
+0.26488238324544017,0
+0.038679693384767164,0
+0.017458186522732642,0
+0.16297274650362265,0
+0.005690610145621554,0
+0.11381170204424973,0
+0.09183829965167059,0
+0.005671676809802818,0
+0.001963345046091604,0
+0.04615856506051484,0
+0.11277651838582814,0
+0.1199472505385802,0
+0.1296160563721667,0
+0.08659142621528831,0
+0.023237193579941716,0
+0.008265451639072784,0
+0.13545256380849818,0
+0.006463481247681252,0
+0.004619873995420029,0
+0.0001792354142865146,0
+0.00017943019621457398,0
+0.3054120220707649,0
+0.02211944868974259,0
+0.10321982042711172,0
+0.0365849588180398,0
+0.004661600444367099,0
+0.031004355358161522,0
+0.0010565197362244142,0
+0.004965270136404151,0
+0.3019925140169824,0
+0.3761042064089651,0
+0.5479535824805026,0
+0.014306536069826566,0
+0.1240308195589908,0
+0.04015747622183015,0
+0.000825088964701938,0
+0.09719138189388771,0
+0.3783607569275492,0
+0.14193275261247634,0
+0.04255365851437304,0
+0.010680103456850587,0
+0.03836232160911996,0
+0.3211132993378048,0
+0.009152236101560773,0
+0.07618497483898388,0
+0.004169676293634595,0
+0.3763034865581445,0
+0.5711484446530027,0
+0.07660058126811198,0
+0.2859254936523888,0
+0.10957804206762076,0
+0.0842307536927358,0
+0.013351941568337952,0
+0.058045180852291434,0
+0.01735881988147201,0
+0.055727765628613146,0
+0.004121342086046576,0
+0.07988400413090972,0
+0.06265103358151992,0
+0.009676153215916456,0
+0.2152498617817305,0
+0.03818054196971044,0
+0.029588821322316643,0
+0.03539914433054755,0
+0.03585261209615796,0
+0.1676689452544958,0
+0.0010316368663301596,0
+0.055549002309670484,0
+0.12537237178357238,0
+0.007748830275880561,0
+0.17886142220222565,0
+0.0050619512613126845,0
+0.07755393244318633,0
+0.010413044497171836,0
+0.36061506572286045,0
+0.13292785259365897,0
+0.0063642328193039025,0
+0.19724438242066142,0
+0.00011291454524940023,0
+0.008954371938008172,0
+0.00805426387100709,0
+0.009551903315078472,0
+0.1673919194379072,0
+0.021183050587317686,0
+8.192815822884484e-05,0
+0.15548616185623043,0
+0.050341010859248525,0
+0.005729030798368662,0
+0.09589479327337116,0
+0.22568444592060805,0
+0.42802956974777107,0
+0.3765182051383328,0
+0.19426443931279366,0
+0.029073196012428342,0
+0.004646129304077017,0
+0.10209051503666247,0
+0.09061906120774518,0
+0.03138527170711819,0
+0.016016765267101683,0
+0.00028826792419718047,0
+0.40072660839797597,0
+0.03403902644253075,0
+0.1358261938093412,0
+0.0015356489084210618,0
+0.022049403404738648,0
+1.321704863439468e-06,0
+0.4059036742140748,0
+0.15258607278177944,0
+0.002251047790049824,0
+0.1975788872724425,0
+0.024646459437451317,0
+0.08118832299708487,0
+0.028232388415461183,0
+0.4738011294974725,0
+0.00867560669899113,0
+0.005121482105956495,0
+0.07428364481175519,0
+0.00012306563793700596,0
+0.06851399023422146,0
+0.02398634200456657,0
+0.0444328290922586,0
+0.1684636879496912,0
+0.06730404363294619,0
+0.0032073547609098156,0
+0.0032639424662189295,0
+0.042282856945853015,0
+0.017281405444753643,0
+0.009384870328807077,0
+0.04230294766364941,0
+0.07796269421088634,0
+0.19445012155689106,0
+0.011761701919343798,0
+0.02057674295603633,0
+0.10209874495057539,0
+0.035497254127077084,0
+0.00015263020712369063,0
+0.025068560512519877,0
+0.008421301207923813,0
+0.1375412469571973,0
+0.001812994285161578,0
+0.04395538698845801,0
+0.053666669646303275,0
+0.16982359963374577,0
+0.010329996806413673,0
+0.04486233993391246,0
+0.0005699753604657474,0
+0.01566211874208502,0
+0.09328927051157483,0
+0.19600802900156147,0
+0.028223738295081246,0
+0.08709479169516944,0
+0.02087923299296583,0
+0.013071073377249415,0
+0.0058561476167908865,0
+0.1498367769862886,0
+0.2383850008565492,0
+0.005158954900273503,0
+0.04511086306623156,0
+0.05675568298929771,0
+0.006967099725831592,0
+0.1673470757516538,0
+0.024931542123541383,0
+0.07959270000252966,0
+0.006931442643085395,0
+0.06376982663853643,0
+0.08958484344639564,0
+0.013742778748669448,0
+0.013238242683622406,0
+0.12211542996440872,0
+0.0003867652523859029,0
+0.045102611142122814,0
+0.04062557498956944,0
+0.028862579177397672,0
+0.00021599527920956543,0
+0.0014900515086316922,0
+0.04020713090327092,0
+0.32509434907477475,0
+0.004923241135685561,0
+0.15330577949428106,0
+0.30144012378302265,0
+0.03253787247880371,0
+0.08608241097621985,0
+0.02807285242193993,0
+0.07022135250505765,0
+0.13537996783266326,0
+0.00016956095916211285,0
+0.08633180981874504,0
+0.4403195510431638,0
+0.2849926381223971,0
+0.14580763750773168,0
+0.236957495976504,0
+0.0959940252912049,0
+0.033323112351937655,0
+0.009428339342841593,0
+0.025641540117788623,0
+0.2030781584922201,0
+0.04078444432201042,0
+0.011436439792854362,0
+0.04928140171849001,0
+0.15520615480618155,0
+0.15189277118276992,0
+0.011876371144056305,0
+0.036394823937255544,0
+0.136236517299199,0
+0.30617605790198604,0
+0.11276010833437902,0
+0.16020431351556286,0
+0.02667527354526774,0
+0.005478974322619656,0
+0.029774944391450054,0
+0.03442835039050375,0
+0.11073060024621358,0
+0.001855191105754102,0
+0.042777583540488204,0
+0.030209323774942,0
+0.06019984334679056,0
+0.006048305240059124,0
+0.20665180216979664,0
+0.12253432924069303,0
+0.2751027417359392,0
+0.2872750342438544,0
+0.1494386419186733,0
+0.08348196521260073,0
+0.4534211016515428,0
+0.17013748909216292,0
+0.03953403143991712,0
+0.010493717438963391,0
+0.1727112440480761,0
+0.10062862422856637,0
+0.27206098688916003,0
+0.006524092402916991,0
+0.0001704529051068914,0
+2.3313038692576197e-05,0
+0.028098609960455552,0
+0.02559157232009248,0
+0.006054719461952009,0
+0.2248653107920277,0
+0.030660110857004423,0
+0.054156941415836754,0
+0.021145164033822182,0
+0.002964726729091788,0
+0.24882431225596519,0
+0.010025140432313045,0
+0.4752040227841485,0
+0.02084504322389773,0
+0.0017281407023184317,0
+0.0033415919339519788,0
+0.03911200880037249,0
+0.03910324373960199,0
+0.006571193964741806,0
+0.0955691764296007,0
+0.1587456532950871,0
+0.02765377529283352,0
+0.14915646199315608,0
+0.3750591335759226,0
+0.11472362715531967,0
+0.022757905415424558,0
+0.44344758728311373,0
+0.41134639753797986,0
+0.007050033692362745,0
+0.017203660085556405,0
+0.03217991381349424,0
+0.08974745894212019,0
+0.04540116536545068,0
+0.04968669937600636,0
+0.03066388155561684,0
+0.3116550362240149,0
+0.016434913395306602,0
+5.956749710156868e-05,0
+0.3995044172175941,0
+0.05873632130921238,0
+0.2021608681969997,0
+0.00034810685035340655,0
+0.048757928625312745,0
+0.04070395306646006,0
+0.2836280266237711,0
+0.0013012341416005712,0
+0.003530750561171784,0
+0.08743306364062943,0
+0.15658697548001435,0
+0.004964541194794487,0
+0.015316684695524607,0
+0.13215654975005856,0
+0.5274292600303034,0
+0.018434752128406468,0
+0.00039952196053870214,0
+0.01797498082602945,0
+0.03724127017550445,0
+0.02249278485519504,0
+0.008117722903861627,0
+0.0003416235976615321,0
+0.16991086689261642,0
+0.010626052976487648,0
+0.0481456449568782,0
+0.26883530056535976,0
+0.007116927719566522,0
+0.2262042930036225,0
+0.1550138987553081,0
+0.008614531457984024,0
+0.27670513093933025,0
+0.010183762356345927,0
+0.07457961875535381,0
+0.06280634501511566,0
+0.004627293218960448,0
+0.010857918645695597,0
+0.21619087612287916,0
+0.011989975523663293,0
+0.18133631629359848,0
+0.008385850304430632,0
+0.15843442408549152,0
+0.04220647663472114,0
+0.023868451271027276,0
+0.14012528317493872,0
+0.001898572263476683,0
+0.10168543102348344,0
+0.012208584560940995,0
+0.0012552445528374076,0
+0.0818495413225132,0
+0.0032067857022839256,0
+0.0014349737158681982,0
+0.22422826434402743,0
+0.03601659982808551,0
+0.019094381136901907,0
+0.015886947925305393,0
+0.3516790776601998,0
+0.009419057275563445,0
+0.019684484721127216,0
+0.28487444889352787,0
+0.0009457192024987385,0
+4.476879898696497e-05,0
+0.07238696744649203,0
+0.11955211257253025,0
+0.17331092347905833,0
+0.05475536644843115,0
+0.18818008618042661,0
+0.3262923429162878,0
+0.004399244300614931,0
+0.471874855240807,0
+0.05609927031163734,0
+0.058129099093350046,0
+0.07654410542703159,0
+0.01136030302235437,0
+0.024716607770064698,0
+0.0010795123622937646,0
+0.0004868068381691019,0
+0.07565182975484505,0
+0.16378941602656888,0
+0.3003312693574338,0
+0.009332234089645754,0
+0.0037251056315998287,0
+0.0028646257518265923,0
+0.08921770978116096,0
+0.35787548358872884,0
+0.07669104891260774,0
+0.22210889188172606,0
+0.7979401241356153,0
+0.12599177371589043,0
+0.18713160667302553,0
+0.017698537836104176,0
+0.09691427581165482,0
+0.03398309053078854,0
+0.0021765774459577606,0
+0.06431867103368137,0
+0.09338670895456844,0
+0.089027189189578,0
+0.027848726395495155,0
+0.03953271804587346,0
+0.0028806202026213814,0
+0.38808702031615744,0
+0.03129839649338721,0
+0.12267863642227125,0
+0.005125964289146298,0
+0.12398856191328245,0
+0.09208012245173666,0
+0.10208534939821032,0
+0.01642359189013199,0
+0.018647012735987786,0
+0.02179661559206878,0
+0.008276766233178351,0
+0.4723975978820315,0
+0.01620215846863362,0
+0.2530594472766687,0
+0.1303080381279289,0
+0.22952084555760818,0
+0.044468828966548475,0
+0.027030645468077902,0
+0.030191236260733806,0
+0.016715548666711728,0
+0.01898198262973228,0
+0.10711675582002056,0
+0.026085444605161868,0
+0.00894106158617253,0
+0.0007429172793221347,0
+0.03325770539249562,0
+0.016243560775755925,0
+0.33010138792253396,0
+0.01875844901246928,0
+0.1133411246191482,0
+0.15493013974265318,0
+0.029400193008490456,0
+0.018722418952137342,0
+0.1491226934349317,0
+0.05391995104864008,0
+0.12655022382258424,0
+0.5514556216754904,0
+0.14331820092707798,0
+0.3638574290203619,0
+0.008290296847306575,0
+0.13751099858429797,0
+0.012541632454085783,0
+0.006366046443418237,0
+0.05647364775542968,0
+0.0005277903157864418,0
+0.09055860090997907,0
+0.2358016100705072,0
+0.10956459274069401,0
+
+0.014512294741740438,0
+0.04153839255151651,0
+0.4678591431363669,0
+0.030407246874321264,0
+0.046922546665068385,0
+0.05784015299845289,0
+0.07647965548150992,0
+0.49393213534540026,0
+0.0935009833643076,0
+0.009171043402643419,0
+0.001084496112028824,0
+0.05425486287566258,0
+0.2091549250847485,0
+0.08460193645804717,0
+0.04420848394086339,0
+0.016029614097156048,0
+0.16370833644967825,0
+0.03952253116057666,0
+0.18195603523709714,0
+0.16620973260885552,0
+0.03714219039885144,0
+0.03527695453320629,0
+0.04629778637438754,0
+0.008776447090665423,0
+0.06332943571198908,0
+0.0660363546787335,0
+0.3513740049832965,0
+0.08483115913572306,0
+0.003090591782907376,0
+0.013354606873932912,0
+0.017256904223293203,0
+0.7111024303834705,0
+9.565765923494403e-05,0
+0.0007498135169027125,0
+0.04903121360879093,0
+0.022444614210522476,0
+0.33786028724737316,0
+0.07532614759920284,0
+0.009363404398736787,0
+0.14246869397958487,0
+0.1673054200932945,0
+0.20110348494474278,0
+0.013765626332439888,0
+0.2407528758442707,0
+0.1033161095744382,0
+0.0008423324859698451,0
+0.00017051803060858317,0
+0.1089290516167398,0
+0.02555112412825476,0
+0.020466651915389836,0
+0.02322441517104425,0
+0.03138550556236731,0
+0.20850184511133968,0
+0.012840109534196283,0
+0.018949219524871507,0
+0.05223983920266304,0
+0.006361047831955057,0
+0.012373846704019862,0
+0.002183220110969915,0
+0.05055531115086949,0
+0.07734239990938602,0
+0.04549514618746843,0
+0.08758516494835465,0
+0.012586806114537835,0
+0.08672013458660471,0
+0.0686366331850399,0
+0.01599937156138119,0
+0.141096730563801,0
+0.024179235357086156,0
+0.3142397548562311,0
+0.0026747577143539417,0
+0.0975980934500697,0
+0.05669392128178495,0
+0.24617381461211343,0
+0.17013429742624,0
+0.19552990195398706,0
+0.008669888644894949,0
+0.0020087308082782384,0
+0.07734928869331222,0
+0.012249825721679042,0
+0.004377508742880961,0
+0.0696024181296702,0
+0.17923739669535038,0
+0.10931230168389863,0
+0.5938668275140964,0
+0.023828686005276066,0
+0.340527984918617,0
+0.012441286872883537,0
+7.534391456937496e-06,0
+0.005575777489118421,0
+0.002138489893549721,0
+0.02214547121770687,0
+0.030949851709427788,0
+0.00021391539527405675,0
+0.05611775444968997,0
+0.0030728311642065965,0
+0.03950751052175312,0
+0.04104089804042301,0
+0.29729098903880724,0
+0.03414565390113996,0
+
+0.014064502986502428,0
+0.11040136540054513,0
+0.05229362687116137,0
+0.062390966900505065,0
+0.22086771539030625,0
+2.88192162278178e-05,0
+0.05418002166419885,0
+0.2475238771737925,0
+0.07351780949717909,0
+0.15138219930001026,0
+0.017347911887306965,0
+0.10899322833505276,0
+0.09766958243829553,0
+0.02091092201246437,0
+0.010703388886350725,0
+0.022473696943344283,0
+0.0006620131896428937,0
+0.18856052930451533,0
+0.019979961669553053,0
+0.2754792064021714,0
+0.0008622529493237715,0
+0.03140288166417045,0
+0.01724440369076455,0
+0.002015207588792973,0
+0.044001173965308435,0
+0.003957749333162647,0
+0.31675447534436074,0
+0.06452829596762516,0
+0.017767992110065554,0
+0.20823257105887216,0
+0.2818149253465907,0
+0.08046542174256177,0
+0.1172695065284658,0
+0.030886719550643517,0
+0.0347850868901643,0
+0.023842613335561345,0
+0.18190666568656436,0
+0.051182975421509666,0
+0.20474966480105938,0
+0.07104972364219649,0
+0.3279367929024945,0
+0.09432428659503773,0
+0.04552421830120891,0
+0.10920288091548905,0
+0.28585163365436056,0
+0.0020986543568347815,0
+0.168992170483178,0
+0.002393309977353033,0
+0.013910280773962284,0
+0.01893467477011103,0
+0.08493601613130661,0
+0.10112511169127174,0
+0.1012144592854918,0
+0.6591615626535019,0
+0.1036506413976116,0
+0.014089137406148786,0
+0.06653344536002977,0
+0.07580098346167756,0
+0.007221208151513879,0
+0.03321079068853598,0
+0.10108199741396776,0
+0.0760238530296536,0
+0.011134975113388275,0
+0.006743073232563739,0
+0.004774743822087578,0
+0.6786462219955929,0
+0.08066043437541394,0
+0.01101705316829758,0
+0.15871313227554903,0
+0.040446250867732826,0
+0.002490444936890951,0
+0.010463724723831554,0
+0.08317184328900905,0
+0.14667886536957958,0
+0.01579264730607683,0
+0.03312546234897519,0
+0.08996338032964071,0
+0.010273655106953671,0
+0.01498889523920871,0
+0.0006983431572555936,0
+3.3074109679740527e-06,0
+0.02414962319878745,0
+0.07212286479690681,0
+0.07011783280410429,0
+0.46999931031044345,0
+0.2202233178719933,0
+0.02024092998290153,0
+0.0031802941813893837,0
+0.17663227282535549,0
+0.010097626374079013,0
+0.26938661484490545,0
+0.04825415156220939,0
+0.010208304780467723,0
+0.02571018567103826,0
+0.015951029486390718,0
+0.35855667020030085,0
+0.4249439781203453,0
+0.05982347529574723,0
+0.07506284020334136,0
+0.11230129873787428,0
+0.009050128547204377,0
+0.18960767681268037,0
+0.0027437738308289513,0
+
+0.01564767854411456,0
+0.024433873610485022,0
+0.015787648448917446,0
+0.015142478938027896,0
+0.05104629419687284,0
+0.316774611517599,0
+0.008269515689546314,0
+0.0005988050275353104,0
+0.010844213981838423,0
+0.0010284240260998098,0
+0.006831330509792286,0
+0.098060410482506,0
+0.019791696159396226,0
+0.1825072669513844,0
+0.017099829135785984,0
+0.006571439170308911,0
+0.0032865448522793107,0
+0.05069115989761902,0
+0.015113573387447104,0
+0.14968425980096953,0
+0.015722817155791914,0
+0.02758343692937859,0
+0.03457098496856595,0
+0.0669112076330034,0
+0.016803562764368517,0
+0.006705763427968914,0
+0.004846757772312771,0
+0.15302885469129132,0
+0.5130412165653258,0
+0.007719614569896366,0
+0.02825383545544402,0
+0.0021332499680201357,0
+0.17006583047083496,0
+0.2656396219808784,0
+0.06883153802754527,0
+0.5175481845858199,0
+0.29025900041456365,0
+0.027042493687244186,0
+0.01432680428490537,0
+0.02414348153309757,0
+0.23090332723172596,0
+0.04649827545305151,0
+0.2268119222879667,0
+0.18283874078667564,0
+0.0508107818433244,0
+0.5516039413933663,0
+0.025477353456034364,0
+0.007917452554861256,0
+0.35212631584103804,0
+0.1709478211991009,0
+0.00814644582078106,0
+0.000608659116253495,0
+0.020107122616993788,0
+0.09610674270595738,0
+0.04221102037091434,0
+0.04552680587454995,0
+0.016384419002278737,0
+0.3528524124449596,0
+0.5348648512697259,0
+0.07113328955383888,0
+0.01646356675823565,0
+0.005692852803558492,0
+0.26277917924104444,0
+0.09344818331807345,0
+0.00407182918709995,0
+0.01940815348325812,0
+0.1292560177394298,0
+0.6235187727945243,0
+0.041055471392413896,0
+0.030616758048249593,0
+0.012518599588647164,0
+0.00599518786897971,0
+0.002085487373340258,0
+0.02060031891342336,0
+0.014719124705114342,0
+0.057030461973611044,0
+0.14511701615896735,0
+0.07523981036617866,0
+0.03921569581914243,0
+0.01726402874992576,0
+0.0031051062466646868,0
+0.005685030715533069,0
+0.09607481399870592,0
+0.1201166342360868,0
+0.044947546064793675,0
+0.046580983135390414,0
+4.6252452358808943e-05,0
+0.0007752794096353825,0
+0.004825533597231873,0
+0.026267445821850692,0
+0.37012025272186455,0
+0.00025647178951565384,0
+0.005084301925492781,0
+0.13111282355644055,0
+0.11210619180907562,0
+0.09108107433453377,0
+0.19789112227937292,0
+0.6207897597690156,0
+0.003517527499349444,0
+0.00039158792399049993,0
+0.08016758395246591,0
+0.38376678997165414,0
+0.05586551490398165,0
+0.39765355279125003,0
+0.0016454267273503,0
+0.14247778713331094,0
+0.009546003277545508,0
+0.19196030161579575,0
+4.030798387911359e-05,0
+0.0031852363513161196,0
+0.005363808800243552,0
+0.03310264987346386,0
+0.043943893384818314,0
+0.012716543915542671,0
+0.08142106754844346,0
+0.31454205674219354,0
+0.14123599908943804,0
+0.2666099519908108,0
+0.05002500462692936,0
+0.050523286753620486,0
+0.5918336778397544,0
+0.0018566071359391687,0
+0.8971672790872424,0
+0.010558543009326729,0
+0.00011945931916869837,0
+0.001977173032163924,0
+0.01185308592657989,0
+0.038889336376471725,0
+0.03210239781468218,0
+0.00109340236781348,0
+0.026344047583411412,0
+0.1715274665730969,0
+0.08149070571017206,0
+0.11446781125176413,0
+0.0013431616631653946,0
+0.11768355540449923,0
+0.02684566156869453,0
+0.34903580080600977,0
+0.0019806983714609656,0
+0.005024366894315605,0
+0.007125028615009207,0
+0.12843748286137624,0
+0.009381452276704887,0
+0.010044642013669388,0
+0.004786486342791084,0
+0.16017228169357978,0
+0.15647480024346894,0
+0.01437326862149807,0
+0.02084005209708118,0
+0.24484996748381835,0
+0.04692369333030415,0
+0.017936396583829096,0
+0.17614634644143257,0
+0.1526080198192405,0
+0.00044613466871371385,0
+0.04645899190080396,0
+0.08528770719228931,0
+0.0059928511647346005,0
+0.9482923068686594,0
+0.0007204114025173676,0
+0.0877767429813182,0
+0.007825878842502076,0
+0.08490522768361428,0
+0.024734654365577535,0
+0.18506610193649264,0
+0.00095052024469379,0
+0.03037307810924878,0
+0.0017586270902977207,0
+0.05692676267468305,0
+0.003998854584374356,0
+0.5150862996119532,0
+0.22312441543412098,0
+0.29307009163223174,0
+0.15487023897942875,0
+0.07531045478323739,0
+0.1382215464441147,0
+0.1584817154663612,0
+0.6634728958593529,0
+0.025433481358374838,0
+0.006542212109324204,0
+0.0002731515859542749,0
+0.0027943771346009712,0
+0.07332786206467187,0
+0.004687013062333995,0
+0.07374329712121944,0
+0.0255794086735562,0
+0.0015150161849969584,0
+0.031106047099220536,0
+0.10767962442445175,0
+0.12179379647483131,0
+0.01065763740093909,0
+0.13562131657483317,0
+0.03287485031538832,0
+0.1765514853957279,0
+0.23368446650605007,0
+0.1222392891985161,0
+0.22651264212377492,0
+0.22933770630348285,0
+0.1749831919187,0
+0.08865723253146025,0
+0.022900434301294497,0
+0.22007348179102776,0
+0.038693491445756775,0
+0.02406821995199389,0
+0.8151555606837322,0
+0.08059665955883757,0
+0.0004143063945558833,0
+0.12601179983562794,0
+0.12779592032047438,0
+0.0003214236441897463,0
+0.00628359961018316,0
+0.012276242519699098,0
+0.16449406112915071,0
+0.005320428872978877,0
+0.14304335533358142,0
+0.024227571959837185,0
+0.07591790101761185,0
+0.004632201562060645,0
+0.0944952284342842,0
+0.0024474451915897657,0
+0.013608729631767407,0
+0.001903436443923091,0
+0.12039427741484647,0
+0.07113339293363927,0
+0.09103139319667022,0
+0.056098157391955714,0
+1.3789439507202301e-05,0
+0.11526372583616817,0
+0.03095372655942848,0
+0.026205700559475242,0
+0.40828693889375467,0
+0.0013640182131284724,0
+1.0443468463170686e-06,0
+0.037851073501061504,0
+0.013719834115710858,0
+0.011646521046381768,0
+0.04031445712510666,0
+0.3921124366600331,0
+0.01502580179015564,0
+0.009089345887819346,0
+0.1381856884949679,0
+0.1447634311092401,0
+0.0014308701557060473,0
+0.00013405463194721327,0
+0.16377706690442875,0
+0.16041456908379112,0
+0.2251182466148466,0
+0.007623688627862575,0
+0.27337920038480606,0
+0.414297374958958,0
+0.041659881758962965,0
+0.00579937567828869,0
+5.946171082636503e-05,0
+0.21522085576288297,0
+0.00015634249760644136,0
+2.539389928932901e-05,0
+0.05324848010054863,0
+0.004815173507456396,0
+0.019892665911820043,0
+0.027661370326520295,0
+0.0035044469069319866,0
+0.20310979463248408,0
+0.21336851401252002,0
+0.1537098370275566,0
+0.03913000521851775,0
+0.05870058851628037,0
+0.2321631601050545,0
+0.5685761733833891,0
+0.0814362896773387,0
+0.032445990627220006,0
+0.004390311904058554,0
+0.0731692941290678,0
+0.031736633237004576,0
+0.2429145423875913,0
+0.06665130258198519,0
+0.15490529308957504,0
+0.08129690338993512,0
+0.3868888257013293,0
+0.012128999695601547,0
+0.10081917858161016,0
+0.07180480780536906,0
+0.11527386216740174,0
+0.0004766660253413624,0
+0.0037275993725094736,0
+0.04819195718220445,0
+0.10700139348905431,0
+0.005555108056626049,0
+0.4596139436907093,0
+0.24227446933872893,0
+0.05128158511769097,0
+0.016012998400218012,0
+0.06125784105870683,0
+0.004766213777759732,0
+0.06009099225706264,0
+0.008515177656738902,0
+0.005814660458377337,0
+0.03887802125706203,0
+0.237017984063585,0
+0.002332309811171135,0
+0.009329319654560677,0
+0.23906518698618323,0
+0.000883326672428694,0
+0.20273537424686644,0
+0.13020522956390027,0
+0.10507626421745397,0
+0.036196144224852025,0
+0.12642650722951884,0
+0.0004002181522751382,0
+0.003779715584112583,0
+0.2995976366240434,0
+0.05843193871895114,0
+0.06680862562941202,0
+0.05375656782158748,0
+0.0011463428389118764,0
+0.1014231398545091,0
+0.008067483717662707,0
+0.03940110392306505,0
+0.060007472526673176,0
+0.05387388341396594,0
+0.022479100403450022,0
+0.016388408322245647,0
+0.11195795276977838,0
+0.052249458521956706,0
+0.034225535552367015,0
+0.00492605550195554,0
+0.005104499266835464,0
+0.0045644640222989846,0
+0.04019975606236814,0
+0.003011201369445365,0
+0.16714386267275844,0
+0.03902438035959838,0
+0.11541053689942768,0
+0.03692869245712065,0
+0.0152462780146622,0
+0.3420433923057923,0
+0.013161970544776191,0
+0.09926852235799893,0
+0.045136680461318926,0
+0.07818145375906899,0
+0.0004639288948238769,0
+0.02387260102190033,0
+0.11397921418921046,0
+0.126276955481649,0
+0.037910159033284,0
+0.35642429494491235,0
+0.001665792214657441,0
+0.04772087129164706,0
+0.13474326421588545,0
+0.2188495694072774,0
+0.03884234560728284,0
+0.004340292954118001,0
+0.0145481741364504,0
+0.12961732620231853,0
+0.046121879394447535,0
+0.09976193626837135,0
+0.031017711812451648,0
+0.029113967475972884,0
+0.04295682222745226,0
+0.5289832236048244,0
+0.008859609738389656,0
+0.1048819842545132,0
+0.17886903452815783,0
+0.04007960435689907,0
+0.05996481288692672,0
+0.05898185965413897,0
+0.08824186492681865,0
+0.07476883175147098,0
+0.29641388821202375,0
+0.031257769707027976,0
+0.09333317943439941,0
+0.007310353686365473,0
+0.034846450201735435,0
+0.05138332326416654,0
+0.024377541852131746,0
+0.0020815499289429163,0
+0.05885393749935121,0
+0.07056624248808917,0
+0.0018950953734678793,0
+0.17091264341325507,0
+0.03225588999191379,0
+0.01332502436598719,0
+0.0724920592361578,0
+0.22334624974531808,0
+0.008500982384366309,0
+0.04693943936949119,0
+0.01951093038575299,0
+0.0004472678285016789,0
+0.05349524790371359,0
+0.17990774238484686,0
+0.21001721156503367,0
+0.16709962022423452,0
+0.0003588912083095281,0
+0.00131165689705109,0
+0.03177605383911525,0
+0.01390218648439509,0
+0.0014207713940143879,0
+0.17036868425758528,0
+0.005130579243546794,0
+4.464028161887616e-05,0
+0.17663768299023913,0
+0.0007140600793229465,0
+0.07942159592217105,0
+0.0123248051460263,0
+0.004987769453869117,0
+0.012993701974767482,0
+0.01600054410769796,0
+0.00207658040160114,0
+0.006478218498564989,0
+0.20376830962134548,0
+0.1899354525506097,0
+0.09227881001611256,0
+0.1404668539310097,0
+0.189814715452794,0
+0.05675864398856244,0
+0.007525680796246115,0
+0.0027620403873253553,0
+0.33955137068427077,0
+0.5103770329440401,0
+0.06132188442443961,0
+0.03729324438523827,0
+0.5457306232006023,0
+0.1770148265196803,0
+0.0022046026041433213,0
+0.29335052547751855,0
+4.388559337082234e-05,0
+0.001114685770441999,0
+0.11314263385053562,0
+0.04382025316943214,0
+0.002860277891606094,0
+0.004338006003144984,0
+0.06781133833045244,0
+0.25514488457033707,0
+0.1435937745589459,0
+0.29407755908152633,0
+0.1568025069083714,0
+0.05715477739899185,0
+0.08568318113434081,0
+0.008177292719706443,0
+0.0006867123520484125,0
+0.1364748618941059,0
+0.0034024449002231145,0
+0.0004157155009778736,0
+0.0665835035034744,0
+0.02764030059260459,0
+0.20357677921740022,0
+0.004636162743274845,0
+0.31972522987045643,0
+0.37000736341348006,0
+0.0001679241712820323,0
+0.004989915705766749,0
+0.031002667005951095,0
+0.09157739558347347,0
+0.13285253388610557,0
+0.11144599262939407,0
+0.12168257989697544,0
+0.056879418394628754,0
+3.500248968409527e-05,0
+0.003718074109697535,0
+0.27993755381037283,0
+0.2407544418397845,0
+0.014461091904457402,0
+0.5256614897344558,0
+0.5923037406099029,0
+0.3536099467110473,0
+0.0879007320737363,0
+0.7116259909848366,0
+0.1724827335678625,0
+0.02080272215942978,0
+0.00485761944240021,0
+0.00012718099955976592,0
+0.008056895167398666,0
+0.006929720893649305,0
+0.00435142355204231,0
+0.5071105514909247,0
+0.016856964012321934,0
+0.1007156025084347,0
+0.04987331312354912,0
+0.18947193197878373,0
+0.08289039401264259,0
+0.4560846940198641,0
+0.2480937718259955,0
+0.17537545312236386,0
+0.4410223444955922,0
+0.1823355086877683,0
+0.08008785821629139,0
+0.2587916355816605,0
+0.022434559839754738,0
+0.4087891021100972,0
+0.0725095088406371,0
+0.08772585346253042,0
+0.01986518195833046,0
+0.06130201412736701,0
+0.012355150128996056,0
+0.017762097377354926,0
+0.13735583582261146,0
+0.6263650215562772,0
+0.09494899648638948,0
+0.005034535521392105,0
+0.010954731366696875,0
+0.010329863005172125,0
+0.15454877473932485,0
+0.15613410744537123,0
+0.0057681492302960585,0
+0.36385572810417993,0
+0.16522492326265295,0
+0.03979601256239898,0
+0.0074924448853465305,0
+2.548004405835317e-05,0
+0.17107535235114382,0
+0.03128507377221322,0
+0.039766158690874895,0
+9.47182020862883e-06,0
+0.2559705735464815,0
+0.007466249285521383,0
+0.00037224027215891,0
+0.0037007917115801986,0
+0.27091015060998236,0
+0.015857436274158063,0
+0.17162462206169124,0
+0.04771880743986846,0
+0.0005935428395524922,0
+0.005944177729580036,0
+0.11721806322493755,0
+0.05749896248912625,0
+0.0043702995400983395,0
+0.12509803981787254,0
+0.29562731846637924,0
+0.005139128356127337,0
+0.010749451982383184,0
+0.073769010472987,0
+0.00010645144408681329,0
+0.020122876841235367,0
+0.028687905561352495,0
+0.22860836913334132,0
+0.0374324352560929,0
+0.1717625245752871,0
+0.052333395899437016,0
+0.0011345390371880909,0
+0.07195170484749222,0
+0.02915535726746051,0
+0.01885030454112931,0
+0.057835301557950095,0
+0.029828663259183895,0
+0.008702046546000522,0
+0.08710366949759327,0
+0.006896438751241164,0
+0.18673524062064625,0
+0.004664572916325658,0
+0.35153219191880025,0
+0.009995511152049535,0
+0.033183938254554436,0
+0.002775082573647111,0
+0.05251948470371679,0
+0.4278324811889531,0
+0.1239628789059863,0
+0.05397371818841229,0
+0.0008741181583204379,0
+0.0028973572284994027,0
+0.15842653644277685,0
+0.16988654243953316,0
+0.06857636294112851,0
+0.1806388511850587,0
+0.23989630957473743,0
+0.04043407156318363,0
+0.017860724221788665,0
+0.0022742919487687705,0
+0.26202922536934664,0
+0.14555035461972332,0
+0.061176365210318794,0
+0.0042187268794714634,0
+0.26790547712205176,0
+0.00821281618342421,0
+0.04883756219155889,0
+0.02611546456476082,0
+0.0010452795096716353,0
+0.010104701332172337,0
+0.2807886854788723,0
+0.40137125731998946,0
+0.016855700975119722,0
+0.032913528099519675,0
+0.027025427988361144,0
+0.18822363549534493,0
+0.1758617827971443,0
+0.0397077471452582,0
+0.006826743276902021,0
+0.20249629813579278,0
+0.014690766985236154,0
+0.006985718117096348,0
+0.05174472428318163,0
+0.0009496315049906508,0
+0.001841403547473677,0
+0.0018653129772921346,0
+0.057214689209318534,0
+0.016168692115952676,0
+0.004989949097941464,0
+0.16013928688448728,0
+0.0005320867642531026,0
+0.054107584974468825,0
+0.04413818090953805,0
+0.00792391678934239,0
+0.2006327917619965,0
+0.0015007373379751713,0
+0.05422231334818486,0
+0.447920358980065,0
+0.0004946111521041971,0
+0.2053611052090035,0
+0.004839629577069122,0
+0.062078240037352427,0
+0.0185033240654696,0
+0.13288935593174506,0
+0.12379076388671803,0
+0.0063566300759601525,0
+0.29022395052856,0
+0.03130515792307841,0
+0.06882790407238149,0
+0.043857094910704414,0
+0.003232213878234152,0
+0.18663977847096364,0
+0.2166958861964591,0
+0.1828264306746697,0
+0.04009940115102597,0
+0.1039679510383047,0
+0.1615853109329881,0
+0.1329818349268877,0
+0.015694194229098315,0
+0.05021936772625659,0
+0.19171276100289572,0
+0.22881139380874882,0
+0.32387380338231286,0
+0.0011482315477278674,0
+0.10577281079427356,0
+0.0003815206058918615,0
+0.0032928932569851557,0
+0.4403160109688473,0
+0.17708447549574732,0
+0.010739910483799436,0
+0.7553766920699794,0
+0.07619854009341269,0
+0.18528665832176455,0
+0.1904925405516679,0
+0.11946532004084068,0
+0.004735739812059029,0
+0.039608131621638926,0
+0.05865002934732065,0
+0.07318717367927194,0
+0.04561746110092969,0
+0.0499316350664413,0
+0.1538772938575389,0
+0.04861299633686193,0
+0.17357259378641682,0
+0.0001329771245606536,0
+0.007044119414572857,0
+0.017979437318148807,0
+0.19294331893074232,0
+0.5343445493893878,0
+0.0017165703690999149,0
+0.22173476852295013,0
+0.016753464938687575,0
+0.09431454127713705,0
+0.04859550698901314,0
+0.03215163907521949,0
+0.5647642952668048,0
+0.024809481756522245,0
+0.21714136989593671,0
+0.147885403492013,0
+0.0023021738031162716,0
+0.007393905143152027,0
+0.1883622578812741,0
+0.11038446855843256,0
+0.0001653059079007623,0
+0.2991196175800931,0
+0.06854403237278756,0
+0.0016432802057559134,0
+0.0013423645156085515,0
+0.0027338138972073053,0
+0.008824532752943417,0
+0.006417296063683897,0
+0.0038671655794678635,0
+0.16071075637051277,0
+0.0970508170976481,0
+0.47543544593358017,0
+0.04908360299138887,0
+0.11349325328792534,0
+0.0006106104770330534,0
+0.11881023561081965,0
+0.1904183375039922,0
+0.010565392559428104,0
+0.011609943279821584,0
+0.019197007194628017,0
+0.07359528880367083,0
+0.12172998724299869,0
+0.13891576510117973,0
+8.605909507361539e-05,0
+0.057703492331195906,0
+0.006697918170878336,0
+0.0043295616638403984,0
+0.3761881760176184,0
+0.04714153653500175,0
+0.17723438541428121,0
+0.015174961540235798,0
+0.027340759522873282,0
+0.20166582731003593,0
+0.0025281954360788254,0
+0.01215464631161588,0
+0.012474442797294047,0
+0.01662701877060601,0
+0.002520104746426746,0
+0.000981255459520308,0
+0.004036018570426594,0
+0.14027365683988885,0
+0.16093304778593928,0
+0.03588682321206894,0
+0.04301982500481559,0
+0.23340112212021996,0
+0.10581027239868282,0
+0.013520848407022428,0
+0.05444036157492459,0
+0.04678439757053431,0
+0.0005192930969987253,0
+0.0006940319978506426,0
+0.0569948206214268,0
+5.458465403387695e-05,0
+0.27384075670857355,0
+0.0821544504861022,0
+0.0015498322536338326,0
+0.0003886125651698581,0
+0.02665490008256196,0
+0.1843558794191064,0
+0.17017840873176854,0
+8.266418526219459e-09,0
+0.12429633453081064,0
+0.15857316131622357,0
+0.04234813004646368,0
+0.0498480797191498,0
+0.015872760202228962,0
+0.051095731220464,0
+0.11413203593238319,0
+0.3346599880186153,0
+0.21693102789284033,0
+0.16999814553930792,0
+0.009422045264564406,0
+0.12821115265721297,0
+0.018349467794934883,0
+0.00014726108651060918,0
+0.0011586665776680547,0
+0.042944703334811735,0
+7.965071227590223e-06,0
+0.00012467176700872972,0
+0.04043459602868796,0
+0.017944609574455612,0
+0.001476161671973119,0
+0.7506987300534312,0
+0.157464066864062,0
+0.09517658350244926,0
+0.31119073417583654,0
+0.005168186881393113,0
+0.12123643105471767,0
+0.008251401127164994,0
+0.0014275502479978398,0
+0.001922750630216987,0
+0.07069580528384031,0
+0.004091124961891949,0
+0.16537181251250793,0
+0.2753180108687642,0
+0.0040117199465595325,0
+0.09933868650423511,0
+0.06402826659840305,0
+0.001967758594244875,0
+0.01731995277680436,0
+0.009767304469084689,0
+0.015391116399112646,0
+0.11770593527343046,0
+0.008438841403961037,0
+0.2742216472404305,0
+0.0063860881209395716,0
+0.007893591978596026,0
+0.000355498729321182,0
+0.17887057532856557,0
+0.06584921619273643,0
+0.02184574822965122,0
+0.1765405696848739,0
+0.5584629299230526,0
+0.0002814083056887893,0
+0.026994245302714798,0
+0.1395453717141092,0
+0.08102691953647158,0
+0.16824018743330463,0
+0.0852313248272776,0
+0.06802233935071862,0
+4.134274431047126e-05,0
+0.10598624722188263,0
+0.008896049000072643,0
+0.003777398879166509,0
+0.02123376333709364,0
+0.00596631419226699,0
+0.00011846075741687874,0
+0.05702292629729627,0
+0.08004748867369112,0
+0.14434754790048304,0
+0.19300233681773554,0
+0.0004432787755209061,0
+0.05825154447767119,0
+0.00042536632543225877,0
+0.009995616630343363,0
+0.0092728762271175,0
+0.020508761617152003,0
+0.06049561920130535,0
+0.13283896549783486,0
+0.07079246585676204,0
+0.12095917348720961,0
+0.007496601915383952,0
+0.038455813506184745,0
+0.6465654854110356,0
+0.01480620591181766,0
+0.012440006464393399,0
+0.12081284342100647,0
+0.365792571064835,0
+0.017378141955820804,0
+0.07173484034137212,0
+0.023350229371384666,0
+0.20811051165546207,0
+0.07391090166481451,0
+0.23939505976030576,0
+0.036521861240103176,0
+0.08133224045655173,0
+0.010523644565868144,0
+0.07212107551131083,0
+0.0358202217958566,0
+0.007647089720323179,0
+0.12495005331775719,0
+0.19169936996790102,0
+0.08999892118324351,0
+0.006277505376715517,0
+0.11222501401114056,0
+0.0030508948736722797,0
+0.19448770767977186,0
+0.0945592818790038,0
+0.1575123011812163,0
+0.005914690254335717,0
+0.0469855808223447,0
+0.6082614709471328,0
+0.0026864178967434997,0
+7.587158632464176e-06,0
+0.01980806529929417,0
+0.00265899851833363,0
+0.029104650545207833,0
+0.004937195485796056,0
+0.01109977736284838,0
+0.05107420936546668,0
+0.0352397144289827,0
+0.010031111129506274,0
+0.04543946012968621,0
+0.0952032278687894,0
+0.09929417684043959,0
+0.05053712648262678,0
+0.011419028503020368,0
+0.1284966432424144,0
+0.050415430199950914,0
+0.336132920820107,0
+0.0063880847459988664,0
+0.0013774037537275993,0
+0.14946214068068933,0
+0.1662060247829653,0
+0.042631176301923396,0
+0.14115638437837952,0
+0.0005293645145429001,0
+0.010710680501703717,0
+0.007806813377183046,0
+0.0002099564380740189,0
+0.02893743960617412,0
+0.011795597994707642,0
+0.04229696459518821,0
+0.5984673957304223,0
+0.005543726793763746,0
+0.2674308687460861,0
+0.0008714979777792091,0
+0.04053740087809797,0
+0.035402024902402414,0
+0.18284931484805084,0
+0.05463562365376105,0
+0.045392726963661256,0
+0.003867831693632722,0
+0.08001325915735477,0
+0.09262338463428885,0
+0.1077577683374878,0
+0.02731320813825016,0
+0.05607181176619562,0
+0.010733450672197409,0
+0.04713442368079618,0
+0.0008833657375735386,0
+0.041324309353990174,0
+1.1101581574489614e-05,0
+0.4440881598764322,0
+0.05787932829073381,0
+0.0351295111563591,0
+0.11069762608199862,0
+0.10764873812146773,0
+0.006687661100022367,0
+0.4616148110369361,0
+0.019157660071091095,0
+0.42618616188984354,0
+0.08605115293146301,0
+0.10537092928152461,0
+0.0010245293783234521,0
+0.05099366307661783,0
+0.24239309984304214,0
+0.001209493841781989,0
+0.1010097692007346,0
+0.13975438600763904,0
+0.48219697020588714,0
+0.0059679257998722975,0
+0.08429722236022887,0
+0.02050459341155581,0
+0.3404100846847807,0
+0.023567433876708302,0
+0.002477447521048144,0
+0.03388808981124213,0
+0.22126654931414474,0
+0.017821652023366157,0
+1.550333274278625e-06,0
+0.04835580767244216,0
+0.062034608800310365,0
+0.03109754743988381,0
+0.06230794645736021,0
+0.061559521514046533,0
+0.04671236041734228,0
+0.17816167194499027,0
+0.0282208310583503,0
+0.03358008143560107,0
+0.2098841389786669,0
+0.23388241715718175,0
+0.007781407779488396,0
+1.6921394235288518e-05,0
+0.06444709204079505,0
+0.006526658009045829,0
+0.053608536418994435,0
+0.08252419076619814,0
+0.35322873244454106,0
+0.008435676860057629,0
+0.0004638868180931518,0
+0.1214396482543177,0
+0.03642408044190664,0
+0.04637815723510814,0
+0.18155204429042565,0
+0.14246324402484883,0
+0.0018255734968082194,0
+0.035489341326956636,0
+0.023756376367195634,0
+0.06658149329176474,0
+0.10583154337125504,0
+0.08584028555499036,0
+0.026201227553275436,0
+0.06627340497683308,0
+0.0022077082601666296,0
+8.269705562539624e-05,0
+0.08056646907151933,0
+0.03040177115009355,0
+0.013807874358756808,0
+0.014732691422210837,0
+0.025795592772549603,0
+0.01989551066198469,0
+0.07434127202872234,0
+4.9669373418659975e-05,0
+0.06464447804913084,0
+0.05635726064422926,0
+0.01743273400373607,0
+0.03951404668015279,0
+0.42016047960970404,0
+0.05770802202169378,0
+0.12338195931895748,0
+0.01307556004428263,0
+0.27157058437356557,0
+0.5949738168909451,0
+0.0045410712338160185,0
+0.10280993777525546,0
+0.007526595073322316,0
+0.01284770766398779,0
+0.19059738761694822,0
+0.004226936318268504,0
+0.004396478620361231,0
+0.009783731169717364,0
+0.021938590676380546,0
+0.11274681461579039,0
+0.16920881361137868,0
+0.1586789677390507,0
+0.003100626008199739,0
+0.31260075219534955,0
+0.003743699849788235,0
+0.27729535815676937,0
+0.0021534663587580672,0
+0.1451257210359466,0
+0.18884171062727914,0
+0.024758908410907183,0
+0.01516670079209304,0
+0.15084682934182775,0
+0.02411218781188903,0
+0.07930246400788145,0
+0.12923623250917343,0
+0.08101618289228882,0
+0.17690771719183962,0
+0.008804552544588028,0
+0.010069284636883337,0
+0.007102615542348619,0
+0.29493286187404866,0
+0.32838580874168133,0
+0.02108457154209408,0
+0.0009720610907905597,0
+9.211806337840421e-05,0
+0.1646604015978042,0
+0.006315677803804702,0
+0.30179988944874203,0
+0.14017899542388396,0
+0.026827679191720882,0
+0.008660866878101865,0
+0.0008251934310196388,0
+0.20886497469869428,0
+0.021732431607741628,0
+0.12468269323519791,0
+0.22512880590507217,0
+0.12542761027250313,0
+0.014943410794593803,0
+0.13306127863604977,0
+0.00721382418498029,0
+0.006764804910381771,0
+0.11232772591760058,0
+0.0397510245911014,0
+0.0015904663139861951,0
+0.37554383052601137,0
+0.0024072804449200287,0
+0.0023555671302998875,0
+0.017331682537791486,0
+0.00726970170210515,0
+0.21129820069827607,0
+0.10803622857025996,0
+0.22621673823297472,0
+0.01701885767008362,0
+0.010284915578924707,0
+0.020345453769216575,0
+0.11186159174214516,0
+0.0036610911836934467,0
+0.1434616342953186,0
+0.00032862537810431417,0
+0.037450121853696186,0
+0.020951725275720926,0
+0.04590031558077215,0
+0.0002248343255731896,0
+0.07731463763849035,0
+0.23715632519273858,0
+0.10102881646364525,0
+0.15759895628919174,0
+0.01340061888931782,0
+0.11558093323176373,0
+0.07664477011220834,0
+0.0503630237112342,0
+0.5537596283807855,0
+0.018317770609086268,0
+0.00533823529889948,0
+0.01289893603332486,0
+0.05603195561818218,0
+0.2677296528588414,0
+0.06573276529801049,0
+0.01780504123166159,0
+0.03966106066450287,0
+0.047243187795665546,0
+1.4866060515839823e-05,0
+0.07391302982137607,0
+0.6135243015482814,0
+0.12993144201540538,0
+0.014612655921973122,0
+0.6972567433779596,0
+0.04467680433573949,0
+0.26260932997855385,0
+0.030193427286233098,0
+0.05704360590292997,0
+0.32399540528968185,0
+0.0374662513061446,0
+0.0020542661074306715,0
+0.18604507055979616,0
+0.001075176007560593,0
+0.00863456390901724,0
+0.09163791462287228,0
+0.005060001586169883,0
+0.030755547875571297,0
+0.27445112775094826,0
+0.5516697884005709,0
+0.10944168597836701,0
+0.035989492761964934,0
+0.06403267649865611,0
+0.023755773415965572,0
+0.004338200361968745,0
+0.07348652167018127,0
+0.09033689103383305,0
+0.05799509701809029,0
+0.11580916167327679,0
+0.04862806336305832,0
+0.0025161016689504503,0
+0.0009956490955140783,0
+0.045542963755139394,0
+0.24800569637602812,0
+0.1611718472226888,0
+0.1565917351080809,0
+0.23331962807183793,0
+0.015229991566321483,0
+5.738679256670142e-09,0
+0.17192554338523586,0
+0.08149072968210898,0
+0.0003605105170577931,0
+0.041264259732429184,0
+0.20161258277160227,0
+0.0015534622300000492,0
+0.1305250429496888,0
+
+0.08779847396334096,0
+0.1650554030371922,0
+0.25597875931652936,0
+0.22319860816645326,0
+0.057001248189906394,0
+0.012376722665549102,0
+0.008816294502632868,0
+0.009310959697573607,0
+0.001839819266563437,0
+0.24602990675539188,0
+0.057656361495239415,0
+0.01571709506150367,0
+0.07979183416005017,0
+0.348736289178947,0
+0.4488561665539355,0
+0.27480820044339727,0
+0.014803836515179216,0
+0.2405987929934216,0
+0.2851685100444374,0
+2.3436428693013953e-05,0
+0.003054813908785525,0
+0.0004028106674692008,0
+0.07673304498279851,0
+0.09420409191403753,0
+2.2959015226476372e-05,0
+0.005810889384188634,0
+0.003211533092728323,0
+0.055328327827098636,0
+0.16523940008035864,0
+0.04216834934509669,0
+0.001430232743012148,0
+0.034483428636265696,0
+0.021340390169467614,0
+0.07967393985359959,0
+0.20054908221937628,0
+0.09792603598949662,0
+0.04821297573843835,0
+0.01372601832234451,0
+0.08639927656913529,0
+0.20434927528787178,0
+0.22753598842773756,0
+0.06391416218851353,0
+4.0867542790566976e-05,0
+0.0001235220667250739,0
+0.16178442305881113,0
+0.2934498249304568,0
+0.006513046465588053,0
+0.00987596967821311,0
+0.01869635877194261,0
+0.01841703383171528,0
+0.1790351131660006,0
+0.006871494025362694,0
+0.10665319598945519,0
+0.07485884375931057,0
+0.31279911237613395,0
+0.25173057366930135,0
+0.022188917730959882,0
+0.08414293274590343,0
+0.34386797076515746,0
+0.1250802764463876,0
+0.0067584678129392044,0
+0.11651141421067043,0
+0.009096749473875258,0
+0.09254311928920253,0
+0.2690846026869352,0
+0.17642185947681216,0
+0.06710158591453141,0
+0.10500245670305482,0
+0.08964072085897774,0
+0.009918096097388415,0
+0.006533541529673613,0
+0.08375267431062479,0
+0.032177111179465964,0
+
+0.008342871664930057,0
+0.01638546927222906,0
+0.008959472087624413,0
+0.06286791979410825,0
+0.029306833219814282,0
+0.11979934191292248,0
+0.05274769718307946,0
+0.3500384543536251,0
+0.2514623599074059,0
+0.0029824797107660624,0
+0.02613357967736804,0
+0.0023608381510955333,0
+0.00036815864228848135,0
+0.009132991036236802,0
+0.22960923589300708,0
+3.038762491002066e-07,0
+0.010907117088301953,0
+0.00023241953344421614,0
+0.001199872317588534,0
+0.23735711987785663,0
+0.4896529761737134,0
+0.07246844994447535,0
+0.003699630435442275,0
+0.027296749008891973,0
+0.20325471976538267,0
+5.8506402720424105e-05,0
+0.46596980995047527,0
+0.1639051068471895,0
+0.06347293992318714,0
+0.021089194177106856,0
+0.1678149288709291,0
+0.04881151446083756,0
+0.054204523224078406,0
+0.011079106534659836,0
+0.23783226150132655,0
+0.025551519314310184,0
+1.865659494868059e-05,0
+0.0007836155001071767,0
+0.07151294582167851,0
+0.01698933781752922,0
+2.1458469949083585e-05,0
+0.016345124175534805,0
+0.04945423468056627,0
+0.0022054476681983063,0
+0.17717124469680248,0
+0.021253912346593247,0
+0.0229002481156358,0
+0.11236330358213056,0
+0.0009291402433031047,0
+0.007282776287744916,0
+0.1128643284743945,0
+0.04932153083589823,0
+0.017789355298610386,0
+0.026057118598887374,0
+0.28781389518974676,0
+0.002564923138911439,0
+0.12097785082776516,0
+0.1992413162474167,0
+0.16776317165699464,0
+0.19971522453801777,0
+0.3730485831586783,0
+0.17237430795429617,0
+0.004226961401674734,0
+0.07411852576337896,0
+0.2721939183637651,0
+0.004815344681672125,0
+0.009499788623167268,0
+0.0252464764189921,0
+0.28933268373494897,0
+0.021624024562671727,0
+0.1609501642969946,0
+0.057258879894175205,0
+0.06389578022549892,0
+0.00013894009090452967,0
+0.24559234330857604,0
+0.042547921506610895,0
+0.04863858167952107,0
+0.06818576232518768,0
+0.06466610830317453,0
+0.13142104389321713,0
+0.7677153703194193,0
+0.14000821561197813,0
+0.0043590924306015025,0
+0.021962816720681136,0
+0.11092817872453475,0
+0.0038487654278431607,0
+0.031649725355387404,0
+0.3198511234129594,0
+0.3539815672111599,0
+0.076797933998444,0
+0.023066830699737664,0
+0.1296607269510141,0
+0.08121043906106126,0
+0.04472389032876198,0
+0.07318805782603213,0
+0.15266381299251336,0
+0.2312572612652347,0
+0.008760371848925676,0
+0.06529743368330138,0
+0.10711222437713352,0
+0.4934737563509298,0
+0.01257482566122422,0
+0.02199392538382378,0
+0.09468350353173026,0
+0.7398158380879397,0
+0.533711880552321,0
+0.006928011663779836,0
+0.015537419804151076,0
+0.0006744189194492072,0
+0.14216938347243713,0
+0.25560603609021404,0
+0.0006445430750799551,0
+0.006985258661222743,0
+0.1814780997046252,0
+0.017233734559440515,0
+0.009237949374640042,0
+4.070998190705427e-06,0
+0.2341130100365289,0
+0.10450140313214948,0
+0.008936446302676903,0
+0.016994459174935785,0
+0.31271671378038696,0
+0.11173212913808131,0
+0.06250854010346973,0
+0.12802991581827788,0
+0.014187396690671686,0
+0.0005125945464124506,0
+0.370674914587925,0
+0.06510454885832376,0
+0.1360873740992184,0
+0.016478136689696842,0
+0.015528398650623127,0
+0.005192940199821092,0
+0.06609774923869413,0
+0.3249792606150214,0
+0.008251094954985407,0
+6.565964078551748e-05,0
+0.23033927045661357,0
+0.027669102247558162,0
+0.11856721621612731,0
+0.11488624538392297,0
+0.061449462528843125,0
+0.027561167997481067,0
+0.6761930562674815,0
+0.021707364216674175,0
+0.05415801138628262,0
+0.0023613777332122275,0
+0.001589363658988347,0
+0.00011306851988330722,0
+0.00020020535419913946,0
+0.03023027511683949,0
+0.3495054235552794,0
+0.0018128540286786968,0
+0.06508757007640129,0
+0.2832907443670936,0
+0.523514604180673,0
+0.2692841768637059,0
+0.3585273685165884,0
+0.006442354506395072,0
+0.045459329059299065,0
+0.03831222441067715,0
+0.13388652504127346,0
+0.017224498816402842,0
+0.013684773170890289,0
+0.07886601935912403,0
+0.04807847653432506,0
+0.002900922130274248,0
+0.057334748539203374,0
+0.002186877083248563,0
+0.0256887320153046,0
+0.2051288148315466,0
+0.03239634753470724,0
+0.1485657881616502,0
+0.07338301859435302,0
+7.525307349720751e-06,0
+0.02331908313355214,0
+0.13128886777735865,0
+0.2064493736506368,0
+0.02028424033205805,0
+0.06481656824448805,0
+0.0053137414756653165,0
+0.03229770160975108,0
+0.006680117096913683,0
+0.0065670324866160725,0
+0.0028995790692061983,0
+0.02013440039468211,0
+0.01216492076251786,0
+0.0023874563809349117,0
+0.2941418153169824,0
+0.028169678047285086,0
+0.06373374056266463,0
+0.0010417129588222974,0
+0.007707111751204647,0
+0.02651726498373867,0
+0.09923635565252394,0
+0.10891188977555635,0
+0.0039632810534590505,0
+0.043226769095484105,0
+0.04109378323358171,0
+0.06761260928979289,0
+0.010617425595216676,0
+0.20878043074517588,0
+0.067941556932188,0
+0.035660512595198764,0
+0.5267442928919037,0
+0.30960274957405615,0
+0.027890480661420504,0
+0.005762849289930607,0
+0.14299072905312135,0
+0.05447861408741957,0
+0.30938832539744326,0
+0.17327725321628867,0
+0.048880259519959356,0
+0.16989433175186644,0
+0.0061163406328351416,0
+0.01801545944231888,0
+0.00030136316315157116,0
+0.04132326599225932,0
+0.010463555077439738,0
+0.18844460083473502,0
+0.0016980944461191059,0
+0.003254505969733059,0
+0.11594256105453249,0
+0.054798206383324645,0
+0.015190411008554592,0
+0.09202947042551038,0
+0.002145753982645544,0
+0.0044625379527018704,0
+0.0035424466191058567,0
+0.032965927223733676,0
+0.21485513328772815,0
+0.09151925573079486,0
+0.04874270038813077,0
+0.3140676242950143,0
+0.10037088782552187,0
+0.4579383416923954,0
+0.3418171123757191,0
+0.18467929984582476,0
+0.5478709957162279,0
+0.0005004543554508351,0
+0.0265598680148215,0
+0.1355183435384325,0
+0.5723060675007681,0
+0.0378771338124515,0
+0.003993500136453318,0
+0.0002811480097991658,0
+0.27489391291154497,0
+0.03649339236350001,0
+0.012850161227098195,0
+0.0828834780016247,0
+0.10760718936427241,0
+0.058126115738553454,0
+0.2174861408707159,0
+0.03138445348008748,0
+0.009905874503956259,0
+0.40585417312258193,0
+0.07936142200386191,0
+0.00025481344720614636,0
+0.011509143383937085,0
+0.0025473132613993135,0
+0.09321402616097949,0
+0.07237077579997218,0
+0.005524547216247942,0
+0.18665056040499473,0
+0.004161328473555847,0
+9.539806404026675e-05,0
+0.18988021650237163,0
+0.009552296244430198,0
+0.02232588620978873,0
+0.041569596349916624,0
+0.022228940203218583,0
+0.30487356024767054,0
+0.41561259397009,0
+0.01568431579811367,0
+0.0033983766517749294,0
+0.0826758749225846,0
+0.16781332933450144,0
+0.10044113219034048,0
+0.022030675335272157,0
+0.00032002348786189315,0
+0.4935077983535119,0
+0.6002764207119778,0
+0.05948335382830343,0
+0.08101998795534064,0
+0.20343816033352713,0
+0.10653933018965708,0
+0.01523577880703352,0
+0.0067885341442876805,0
+0.013322435394172213,0
+9.983815412972796e-05,0
+0.11911784199445774,0
+0.20134838890523796,0
+0.08695047090755227,0
+0.22658647458801742,0
+0.018391938506569033,0
+0.1758631735895853,0
+0.0941227284766924,0
+0.02731768095307569,0
+0.08329373822389742,0
+0.052502588596488806,0
+0.376322954887557,0
+0.013932971937047196,0
+0.013521793509362365,0
+0.0011086113472580958,0
+0.065064873868887,0
+0.18352076268976608,0
+0.021290512139184044,0
+5.134666947454008e-06,0
+0.06926910350760299,0
+0.15262890664120574,0
+0.13683630010974618,0
+0.04694809966374752,0
+3.2655384101850916e-05,0
+0.22120076730530241,0
+0.02724079982920234,0
+0.34230071586960575,0
+0.000806314658100222,0
+0.4794984149517124,0
+0.11807164046763426,0
+0.07332630520087395,0
+0.010810549863359543,0
+0.14463246304617908,0
+0.04491424986432866,0
+0.003852852679406853,0
+0.003893432723346289,0
+0.10028569520210609,0
+0.09224055908101289,0
+0.9865911791996049,0
+0.08502715362770938,0
+0.03782280776440887,0
+0.10643650984416875,0
+0.013691350461876292,0
+0.03218414192858573,0
+0.17702842068793195,0
+0.28881417444852475,0
+0.0211694699959412,0
+0.012836458356618296,0
+0.001069832899206373,0
+0.002967524820937403,0
+0.11851831914580624,0
+0.000845450375153366,0
+0.027723716749567102,0
+0.04826587612466558,0
+0.008848429924595818,0
+0.1261098444189856,0
+0.006017725002927172,0
+0.026857318480377118,0
+0.026637590271363164,0
+0.040078336135189976,0
+0.06489888003767114,0
+0.10241293042392738,0
+0.02680425968640384,0
+0.08453210227484384,0
+0.04052492363319758,0
+0.02294912771896915,0
+0.4401995685777306,0
+0.0002760367007322693,0
+0.05176940912105268,0
+0.09606828378064317,0
+0.00029180397153153554,0
+0.08713256065153788,0
+0.004179759838006544,0
+0.1681706044076815,0
+0.10820556897565228,0
+0.06123379588858856,0
+0.5802300754614423,0
+0.0005581815022869393,0
+0.17146766378753392,0
+0.010115053530842785,0
+0.00011530533907772012,0
+0.0012671220361210691,0
+0.41203181104896147,0
+0.0024041781411187294,0
+0.00716566211028691,0
+0.0010661196451645888,0
+0.05224030016703357,0
+0.002361578734033675,0
+0.0028832912384553545,0
+0.17030290589705518,0
+0.04593499207172649,0
+0.02499761303400618,0
+0.002548456903999549,0
+0.3857539919907732,0
+0.13414073546450508,0
+0.01860540722588737,0
+0.08541776332417832,0
+0.12223517472147746,0
+0.033624111744453344,0
+0.13625142250762018,0
+0.38884069420162815,0
+0.003258125125859674,0
+0.0008334378388246886,0
+0.01681154029786052,0
+0.29469089935942994,0
+
+0.02552124543147344,0
+0.34001081122663895,0
+0.006967703559823254,0
+0.025898258128556555,0
+0.025948561246290542,0
+0.014034490870449345,0
+0.04402228374668877,0
+0.02622943634129577,0
+0.012668991381036799,0
+0.0007498198352810711,0
+0.23611838988767292,0
+0.03402727040554761,0
+0.18441367090510374,0
+1.3545580061056293e-06,0
+0.04885293260700825,0
+0.008501623265938143,0
+0.05790775196955742,0
+0.0024134948599394924,0
+0.2017502714075074,0
+0.05686919102322228,0
+0.04386719804338711,0
+0.033384073225671676,0
+0.018834268625303553,0
+0.008448203517877206,0
+0.009952007355953849,0
+0.08000580379400454,0
+0.028440932342221448,0
+0.00013177916323173564,0
+0.17752307965553676,0
+0.0005940110206564414,0
+0.09120797618196838,0
+0.13928906532021385,0
+0.0035393544197039597,0
+0.0052174700371041905,0
+0.2798545472421433,0
+0.2156773419898305,0
+0.008274443456681454,0
+0.5463979572009021,0
+0.040335739871034074,0
+0.22048409961413515,0
+0.1614924733926089,0
+0.04823063589934096,0
+0.33442667562262607,0
+0.0027856787747144603,0
+0.0686496145509641,0
+0.021115902919151528,0
+0.06778240716273992,0
+0.01623244118170118,0
+0.01207394212211591,0
+0.14815753632052855,0
+0.0983089562568336,0
+0.18497943707050973,0
+0.3562358035073227,0
+0.12609534480478574,0
+0.05493349425982623,0
+0.01108157212294089,0
+0.025112015505923548,0
+0.0064809046141521675,0
+0.04721983291830048,0
+0.026875265680032456,0
+0.0003454380763781075,0
+0.06168113885772049,0
+0.13797478927965207,0
+0.026325999961466794,0
+0.003362657285526096,0
+0.08784104749960849,0
+0.04848748697084943,0
+0.13955922453454897,0
+0.07841732595551068,0
+0.020801896726906268,0
+0.002723881383706051,0
+0.27902878952395865,0
+0.3534631432068648,0
+0.0012376225644105286,0
+0.3182362835718979,0
+0.17139515506777545,0
+0.0019009991725943063,0
+0.06511316965056878,0
+0.08211653223277728,0
+0.01895235583700019,0
+0.017654129286948383,0
+0.009222610367588912,0
+0.0424222691277452,0
+0.018444572701086875,0
+0.06239398479696372,0
+0.001111464741764369,0
+0.010445296487238302,0
+0.16532160932940326,0
+0.015227368861663901,0
+0.07258184899804175,0
+0.0013342816483710948,0
+0.11082730270342286,0
+0.03795413688995897,0
+0.002405724059607077,0
+0.0005983085637294511,0
+0.09168308945556428,0
+0.00039632763573609265,0
+0.13678520882771222,0
+0.12495580326755626,0
+0.06085484884048924,0
+0.00985951878662054,0
+0.0409269336703089,0
+0.23802693818088075,0
+0.3501191200083027,0
+0.1727307058419363,0
+0.042164427291876964,0
+0.5386108999294384,0
+0.020087829345769827,0
+0.1336472341348707,0
+0.22913015467342368,0
+0.4057153552785315,0
+0.07921292206647904,0
+0.013615137818058334,0
+0.8145924158510265,0
+0.031164962710351064,0
+0.3763188582607112,0
+0.009647600217086225,0
+0.0005639203008507973,0
+0.006787822832567047,0
+0.11999915769807316,0
+0.0021157369443683322,0
+0.18681671073750739,0
+0.0003215911475788497,0
+0.15863702878006375,0
+0.07342354133819108,0
+0.10310323853246887,0
+0.02023724968358325,0
+0.02724332719814711,0
+0.1534907702687988,0
+0.0001507466101852452,0
+0.12756511946296792,0
+0.07884601652861135,0
+0.17014453929741433,0
+0.05468271971113765,0
+0.03803650062754136,0
+0.12560630913466003,0
+0.1083615313992519,0
+0.0001231894540740208,0
+0.09675241167537027,0
+0.13563688860818324,0
+0.05564963303241317,0
+0.060390100935210064,0
+0.07342003023181622,0
+0.697443459746417,0
+0.006353842322039768,0
+0.007053060060301067,0
+0.0022787611194563713,0
+0.0008757169938583836,0
+0.3680848761148906,0
+0.12690349603211382,0
+0.2946882207691166,0
+0.03281761018339384,0
+0.0004168633625289796,0
+0.0008831489427591613,0
+0.06915582099057503,0
+0.0009249759048104934,0
+0.0734509781355073,0
+0.03238587694763529,0
+0.0019036305239330197,0
+0.0008389701529961761,0
+0.004305079812335367,0
+0.0017739459028632894,0
+0.012672545201712428,0
+0.0010423791275765229,0
+0.06153232912193205,0
+0.04177823740424378,0
+0.006577577519780192,0
+8.866279585551799e-05,0
+0.023344182079936732,0
+0.3190359831532839,0
+0.34927612184127294,0
+0.16641076963990048,0
+0.00015389000918220855,0
+0.1309484275939541,0
+0.08902392778510854,0
+0.0032692691545011046,0
+8.82750077008524e-05,0
+0.13523330736864325,0
+0.00045752183280355584,0
+0.031179531664509298,0
+0.018982232818301647,0
+0.04027878934720548,0
+0.2170109614350247,0
+0.08350925015385938,0
+0.07212899851283845,0
+0.03182494521128086,0
+0.12342181192017006,0
+0.1216745653637608,0
+0.006217439982021759,0
+0.03976379884742588,0
+0.07957208790041194,0
+0.051046135642675385,0
+0.37093795622996917,0
+0.0028804847079246763,0
+0.0006379078541126848,0
+0.010914258855138397,0
+0.1888490658630046,0
+0.02274995841732804,0
+0.01693647657521046,0
+0.0001364617426627972,0
+0.24020074451915532,0
+0.12592779663185596,0
+0.01439088137741317,0
+0.4644461904612509,0
+0.1887409043100679,0
+0.2880920774828504,0
+5.2243813469234926e-05,0
+0.07008997519973993,0
+0.01562560671600933,0
+0.0039264160446083754,0
+0.04297901737350886,0
+0.01297422548901613,0
+0.021093944264362834,0
+0.00041162862731282157,0
+6.175754928973468e-05,0
+0.018215856341816265,0
+0.5777559654419375,0
+0.0018801973518736918,0
+0.32500367644484934,0
+0.002403753361590541,0
+0.01034113492091404,0
+0.04759656476710643,0
+0.0038876487862063032,0
+0.022857463822644593,0
+0.007058169113596332,0
+0.04763474209773018,0
+0.024442204171037298,0
+0.005645526406369053,0
+0.01067770095322773,0
+0.19759785066821026,0
+0.1969367709599333,0
+0.07765705751640362,0
+0.19576119471719616,0
+0.005626809227179888,0
+0.12723622971754542,0
+0.04440843793506267,0
+0.11756380651153871,0
+0.13400431262218454,0
+0.7436245553125271,0
+0.027948269719043472,0
+0.024734771485109795,0
+0.014503482990450293,0
+0.07753474837463277,0
+0.0063228798547345574,0
+0.02304394720131349,0
+0.08186425348674084,0
+0.05253209100909066,0
+0.0014746312490618925,0
+0.0324222750818221,0
+0.0135809811932701,0
+0.22076899925010612,0
+0.34937626461237764,0
+0.013638811172461861,0
+0.18687210193407508,0
+5.3894855617409246e-06,0
+0.05348730879530729,0
+0.035500679418388734,0
+0.3022976993963338,0
+0.2820573342267249,0
+0.00021237003523945857,0
+0.06326975428591111,0
+0.15365674540657978,0
+0.0026638747118173356,0
+0.04325858581348489,0
+0.1483635562297538,0
+0.00814570267630744,0
+0.3656883514737856,0
+0.014552745010367334,0
+0.3244696940929469,0
+0.00349613370247876,0
+0.0020019886109281927,0
+0.005525080107438735,0
+0.003789622034973112,0
+0.06659021083901302,0
+0.15743028759847483,0
+0.4238182043394647,0
+0.21618963246344963,0
+0.08385647511068582,0
+0.0009722987041233739,0
+0.618450656323786,0
+0.2836068233491416,0
+0.014100058429188312,0
+0.27247999305161524,0
+0.0773401265623228,0
+0.6134817714411198,0
+0.023955358438777396,0
+0.004489240028480095,0
+0.5346501961058074,0
+0.14935708907700043,0
+0.06597355373936421,0
+0.09702818035631373,0
+0.07322449615449095,0
+0.052659471300014915,0
+0.0546048584455037,0
+0.03221071419523851,0
+0.37069330465038436,0
+0.02527090889291663,0
+0.05215081957856328,0
+0.07572548994606189,0
+0.029902165302908363,0
+0.10975943844315614,0
+0.0002284638645303479,0
+0.08107217677296466,0
+0.030771746600672188,0
+0.0038296440479791277,0
+0.04816619795606207,0
+0.0691619863742465,0
+0.0356593521533812,0
+0.029254073502697698,0
+0.010700055934875217,0
+0.00033021705628034003,0
+0.017684161454676713,0
+0.11389884020675396,0
+0.14891519212194065,0
+2.07140695259489e-06,0
+5.889505691704402e-06,0
+0.0017086455787138272,0
+0.18434552188144102,0
+0.009183254745792943,0
+0.13196823502446323,0
+0.0691937731505926,0
+0.9554010757201311,0
+0.556572280804433,0
+0.06884301048274694,0
+0.04867892186089134,0
+0.015178652676959618,0
+0.0038324918868748704,0
+0.0070676318062481095,0
+0.013379863454871405,0
+0.046459928793763906,0
+0.28070025127190046,0
+0.18802562715920124,0
+0.01627028697711177,0
+0.09085572424856735,0
+0.041624356477527935,0
+0.007553853634450204,0
+0.14060939201991834,0
+0.3984380773446263,0
+0.010560008317838418,0
+0.003344103729841493,0
+0.11317652534880758,0
+0.010147982988096507,0
+0.002806164276644729,0
+0.15115960286006597,0
+0.09933565010164763,0
+0.0016220847283951896,0
+0.0009031259497964863,0
+0.08202722018407355,0
+0.04200856862376153,0
+0.09889158909978589,0
+0.06755328655608016,0
+0.051332237316792886,0
+0.2560284775598985,0
+0.07585342024433386,0
+0.10892138953384871,0
+0.07161503063552747,0
+0.002377969620562953,0
+0.027050111637986762,0
+0.004395352958806275,0
+0.03224206100662417,0
+0.2806957819436596,0
+0.04719170284628514,0
+0.20278299897500723,0
+0.00023562849385713982,0
+0.0035082695269890557,0
+0.05125262097145835,0
+0.001966332273525615,0
+0.12758620765115986,0
+0.11581609030301232,0
+0.23273020010405973,0
+0.018434087591103186,0
+0.20181006168304133,0
+0.02555513079510501,0
+0.00012402445572844907,0
+0.1472657717869425,0
+0.23740481806584093,0
+0.0004934122182241791,0
+0.15516565675402863,0
+0.02175936751507209,0
+0.001249071563951714,0
+0.14373191950372122,0
+0.23087733418856377,0
+0.08008021953627818,0
+0.03331677439844838,0
+0.027141862340558136,0
+0.02662660546827157,0
+0.08605210214651955,0
+0.000668597219479973,0
+0.04161004414292447,0
+0.07594118176451962,0
+0.1273061899816198,0
+0.0264252804652371,0
+0.052221992753010496,0
+0.2587543152000346,0
+0.0009239982703513966,0
+0.0700864297373755,0
+0.03560128335317495,0
+0.03355672716399347,0
+0.18107093708499228,0
+0.0005548675815504327,0
+0.06237860399031179,0
+0.20845363563250144,0
+0.20741189277362698,0
+0.02027490272453023,0
+0.06774506461640553,0
+0.017844544637830705,0
+0.005406928155470622,0
+0.18444350731476805,0
+0.06904222220518061,0
+0.005083733520712915,0
+0.01866375644597821,0
+0.05355795612819997,0
+0.09981541427004388,0
+0.0004558336642425096,0
+0.16856340393305302,0
+0.23764998067784301,0
+0.35178254285332183,0
+0.16337246038798087,0
+0.02055417177586421,0
+0.15582409300263034,0
+0.03468792788505639,0
+0.1646232002553008,0
+0.011657959870119626,0
+0.21835677886419758,0
+0.0004744267027512494,0
+0.013091582606927579,0
+0.029599199557761652,0
+0.00141704038677936,0
+0.03511020877190558,0
+0.00441631635440239,0
+0.2148508958319541,0
+0.6516467749875086,0
+0.09155893292529402,0
+0.3117116694798308,0
+0.0004745229697234343,0
+0.031230662319936507,0
+0.012657627598389162,0
+0.177382841475366,0
+0.018930001450457583,0
+0.029647788612815352,0
+0.002753040109740683,0
+0.0827155002666525,0
+0.5597068418629554,0
+0.027542237423403514,0
+0.03254454090854835,0
+0.004778106254923966,0
+0.1523632126950492,0
+0.3667475117087735,0
+0.6373722060503957,0
+0.007509213150240758,0
+0.11968644251200958,0
+0.018419885595743497,0
+0.07068442333004794,0
+0.04948687577157103,0
+0.00883057565545405,0
+0.017257412523549183,0
+3.3230948493321684e-05,0
+0.021560234654294547,0
+0.0006910762783560473,0
+0.48444394055059375,0
+0.11092833742489065,0
+0.17176623057164123,0
+0.04205847875419112,0
+0.016562678597224805,0
+0.18355868195158273,0
+0.04321728297304257,0
+0.08942498702720979,0
+0.11310479005373822,0
+0.40258798368553367,0
+0.18805520398535822,0
+0.026308152861723645,0
+0.2539262627093107,0
+0.011518257263782417,0
+0.044349907950613505,0
+0.07148716689870285,0
+0.044621300207072896,0
+0.29619974695422946,0
+0.004087479837884687,0
+0.05799926070655955,0
+0.07649420114799761,0
+0.0554673486106375,0
+0.04440819727370964,0
+0.01898001711307626,0
+0.10212033195701105,0
+0.1527401982121495,0
+0.11142810822605856,0
+0.0036823382735406236,0
+0.030366412677019387,0
+0.2260825407755916,0
+0.037435659432088285,0
+0.044650331605090646,0
+0.021047485702963525,0
+0.11737756530316705,0
+0.020832300847947058,0
+0.21968013135026476,0
+0.004721989593354877,0
+0.0431709721651619,0
+0.010141274971932457,0
+0.004829278378934526,0
+0.01920977623465071,0
+0.11437960159142446,0
+0.00017202429733457846,0
+0.15262371473700798,0
+0.22023265141143197,0
+0.00017755759126063145,0
+0.08405945846627826,0
+0.04322623172976798,0
+0.016955662009868207,0
+0.0018032538740240533,0
+0.010190866012842428,0
+0.18118803153071528,0
+0.31323867441336906,0
+0.0057363618461369085,0
+0.20846570543065965,0
+0.00029679684200223215,0
+0.020956100377584143,0
+0.23467226110049505,0
+0.10649909261407767,0
+0.001888222867800984,0
+0.017283016591357635,0
+0.010691674179509982,0
+0.04494522671326295,0
+0.21801875942053658,0
+0.0970147378253119,0
+0.055591798959224156,0
+0.06164361877581002,0
+0.05999417324963454,0
+0.043098947885655894,0
+0.10156365913237109,0
+0.00242407999612728,0
+0.06125484654221962,0
+0.3149163732536524,0
+0.3466844153811301,0
+0.006948732052024485,0
+0.1629391823904023,0
+0.063375175862385,0
+0.04046679765909408,0
+0.023254311227023493,0
+0.07857179561531066,0
+0.04121641808115944,0
+0.06502031048804421,0
+0.30117282423054614,0
+0.00018934016317593552,0
+0.006772303066957208,0
+0.2972603397681928,0
+0.03224521077338058,0
+0.05603688668540628,0
+0.005137981594843103,0
+0.25469830393229664,0
+0.2032825138301111,0
+0.03335806487579445,0
+0.40215855662325073,0
+0.030366538879753973,0
+3.222446426324045e-06,0
+0.004563825712466709,0
+0.025815119237198952,0
+0.007215130122903519,0
+0.00015452573968082728,0
+0.12895469262540774,0
+0.5519133710040527,0
+0.0012258610258151766,0
+0.29714460552657246,0
+0.07661543960840636,0
+0.011085326846327775,0
+0.1507853573533725,0
+0.017581303221425308,0
+0.04026026389767898,0
+0.004727932822228801,0
+0.0023027214419111372,0
+0.043470274414068706,0
+0.14866832495904686,0
+0.08938422239663149,0
+0.5701124550785228,0
+0.354259336417381,0
+0.0734339306409306,0
+0.01929468193467892,0
+0.019441975345684353,0
+0.03338106720145842,0
+0.17817770279456235,0
+0.08957565599392409,0
+0.021649322423014983,0
+0.010633852359111233,0
+0.4797374193723356,0
+0.07936078487261453,0
+0.051849494920099694,0
+0.028149657218062445,0
+0.5267451361875801,0
+0.026608814282637012,0
+0.1644566249451971,0
+0.2895244675761098,0
+0.00016771263263708002,0
+0.002994787935603731,0
+0.04600027519198536,0
+0.024278338828026998,0
+0.00011296526132672765,0
+0.007649254295401464,0
+0.12900876304606507,0
+0.060644388172851935,0
+0.05661988366748492,0
+0.006001210022814106,0
+0.007126672843429428,0
+0.009388031219145433,0
+0.0004511955782384639,0
+0.13501549338484825,0
+0.1801709229083911,0
+0.14795935495527562,0
+0.11940442252234366,0
+0.025647857945192497,0
+0.0493440053177288,0
+0.06397860880338502,0
+0.004576380899987635,0
+0.0004015191398046179,0
+0.009023864945261414,0
+0.3176339264356183,0
+0.1301461993387198,0
+0.4202445016474935,0
+0.008985411242276285,0
+0.027849441446597106,0
+0.06155057983206095,0
+0.002384469621629616,0
+0.02376905278910678,0
+0.0691644366407512,0
+0.15169783425448463,0
+0.0006797639031529383,0
+0.06157875897122629,0
+0.005924581653715269,0
+0.04346290682500024,0
+0.14862476461531166,0
+0.00040170313641267575,0
+0.10006878906304348,0
+0.005849110289945251,0
+0.3181065603309165,0
+0.03413236458402336,0
+0.03303649856099605,0
+0.008872850215833925,0
+0.028910582516506612,0
+0.15416869687050766,0
+0.10907744834897556,0
+0.1281434056531205,0
+0.41384201914210694,0
+0.0030171068255100105,0
+0.0005893441057931341,0
+0.02454194638218199,0
+0.026796544080611946,0
+0.12618020262288338,0
+0.009894034339779279,0
+0.007262790513283893,0
+0.02271268150365362,0
+0.30789640539536556,0
+0.021266660915645462,0
+0.07090443074707553,0
+0.006653794956356818,0
+0.14562666413191355,0
+0.1487066703464976,0
+0.0019099627330931516,0
+0.17687743454441004,0
+0.026006591300458674,0
+0.01581144949890716,0
+0.00015002524259024485,0
+0.00035455344782594274,0
+0.41051231056512005,0
+0.0436991221040146,0
+1.321723776601073e-05,0
+0.0008250485160276969,0
+0.01892328952402986,0
+0.2363959120827801,0
+0.00035953091556895534,0
+0.02853643779292157,0
+0.047658345872668664,0
+0.10702403658631139,0
+0.0012749866044493088,0
+0.031754548466138253,0
+0.029363328709270026,0
+0.024414349189957697,0
+0.14247606180811492,0
+0.011615572489067399,0
+0.16201584368113864,0
+0.03773486007387784,0
+0.23683474675106128,0
+0.055478366040125314,0
+0.12189659349775857,0
+0.1643002513327924,0
+0.2253622984979678,0
+0.05620438566057675,0
+0.16431292594294963,0
+0.14766204952746387,0
+0.12402322141969566,0
+0.0021472725385762734,0
+0.020484114377134537,0
+0.07642878725808082,0
+0.14859309629284842,0
+0.11596753038250843,0
+0.016500648178857436,0
+0.2535682586396183,0
+0.2010468147402326,0
+0.11402319598769255,0
+0.038683521628659415,0
+0.3216281016734347,0
+0.03549459234350097,0
+0.0961759053593633,0
+0.012328624477790569,0
+0.3575355390029923,0
+0.03965072554923234,0
+0.038135795653854034,0
+0.12065079216681987,0
+0.3473803157113891,0
+0.18325796535061536,0
+0.2132640211492678,0
+0.0005191841913599967,0
+0.015712630746492914,0
+0.0008512505446319565,0
+0.0036939003611434116,0
+0.3353041789423029,0
+0.00020027902238256676,0
+0.5479686003920092,0
+0.41012711101351806,0
+1.3215384021556187e-05,0
+0.11252096825415199,0
+0.08770430425411038,0
+0.06218381607278618,0
+0.25058680969630637,0
+0.3034101034701821,0
+0.0054257478373538354,0
+0.02343499993099704,0
+0.0010587088326865484,0
+0.2505170285520747,0
+0.005888451258454908,0
+4.479044993925849e-06,0
+0.1008786066320532,0
+0.07983753696582249,0
+0.0012091712319530104,0
+0.00033622714733957243,0
+1.3320922962110539e-05,0
+0.10429796396719473,0
+0.022650689805777235,0
+0.011544646700843616,0
+0.020858277874230724,0
+0.15221633148315716,0
+0.029471121772643206,0
+0.014680396102418614,0
+0.001336066334257654,0
+0.003565694995458317,0
+0.005321573390964411,0
+0.0001863683785563262,0
+0.000675407960013825,0
+0.0948638668726026,0
+0.0005351330357208831,0
+0.3030652809662361,0
+0.08722621181979834,0
+0.07320238555821339,0
+0.06213896565978606,0
+0.002357884570215576,0
+0.013238983201515408,0
+0.011784062135407131,0
+0.19948533327879528,0
+0.06173606804391781,0
+0.323070425122458,0
+0.017752884022527102,0
+0.012314600213476754,0
+0.08345964210634567,0
+0.058366594470794855,0
+0.08351840714477728,0
+0.013542652276194672,0
+0.02355608947280834,0
+0.17895134847060504,0
+0.02900930330208216,0
+0.09924052828739036,0
+0.02190639384212316,0
+0.0194457560245603,0
+0.07403809866459624,0
+0.0010198411407280935,0
+0.1683181456642459,0
+0.02585161817727228,0
+0.06453753299221617,0
+0.04264534774672844,0
+0.0747133641559015,0
+0.012193814905483654,0
+0.032477746087609866,0
+0.06907289230738653,0
+0.34483684592466246,0
+0.00048691822107596757,0
+0.05976743042812547,0
+0.05158359383767265,0
+0.5853154119475941,0
+0.01262669191932786,0
+0.0859545178413498,0
+0.0028978631131768213,0
+0.033357539201039635,0
+
+0.163688358917646,0
+0.0005790379402082061,0
+0.020366098175958303,0
+0.00330083411315382,0
+0.11406082514671527,0
+0.004126227719366682,0
+0.005616046482619818,0
+0.24987056776349129,0
+0.00535385685476791,0
+0.12479163116225245,0
+0.16857317710424263,0
+0.018095426521795282,0
+0.0008718190567481212,0
+0.0034614067565369435,0
+0.06112848467304496,0
+0.021630054851406268,0
+0.03353771508391366,0
+0.07571395774042275,0
+0.00040678694168552076,0
+0.015222984947899417,0
+0.04264352174489434,0
+0.19786551867398702,0
+0.405989634423295,0
+0.040806449859722205,0
+0.3533293155319409,0
+0.14841908603466544,0
+0.0882159352982182,0
+0.018162499081504895,0
+0.327846431278446,0
+0.03445910312042858,0
+0.05453764545049924,0
+0.00010937065961955828,0
+0.8439179029031569,0
+0.0047466895955392925,0
+0.057020140370075724,0
+0.013217650746825784,0
+0.2863164607006481,0
+0.04352712705394439,0
+
+0.18410349306102747,0
+0.0023771907163490386,0
+0.03833777491129739,0
+0.006938144678573589,0
+0.03859489508651603,0
+0.0012505634927093647,0
+0.02945805912009721,0
+0.24238541001399555,0
+0.049032084742016896,0
+0.008621802612150033,0
+0.015273846921092706,0
+0.2386916636091118,0
+0.008238240275453048,0
+0.07161226398585441,0
+0.22993154635774093,0
+0.005959673694362007,0
+0.027041857932777275,0
+0.006802480193326797,0
+0.23548998631260937,0
+0.06430154502570133,0
+0.03868056165650359,0
+0.053992097710058105,0
+0.042216817308141336,0
+0.006263801498462895,0
+0.034305161457733394,0
+0.06818645905071105,0
+0.2704499252470857,0
+0.019231635638269965,0
+0.03973782129727268,0
+0.022354553887920604,0
+0.187963587174676,0
+0.11853838191568537,0
+0.002365150353127592,0
+0.0018571120069220928,0
+0.14931835198246082,0
+0.0024574200624891116,0
+0.002017622089137104,0
+0.05553702730752397,0
+0.12771565258707437,0
+0.02357074096635247,0
+0.03619016416718527,0
+0.011534311495568644,0
+0.08675039422208307,0
+0.08255523268236432,0
+0.001893217435629656,0
+0.053562618999054824,0
+0.09123967897667391,0
+0.00764838626999621,0
+0.20586612145368138,0
+0.07454517406823201,0
+0.4319162595069309,0
+0.1782769750378051,0
+0.010570178800405108,0
+0.45943773817058925,0
+0.0044535265487751635,0
+0.00029462573814706644,0
+0.0002762150644370652,0
+0.00166934168850329,0
+0.023044394500958746,0
+0.05830788830548959,0
+0.07392995020674908,0
+0.009310891792962277,0
+4.866429541768076e-06,0
+0.0463260701575718,0
+0.0009496561023078564,0
+0.033725003551207965,0
+0.0067696433895174015,0
+0.06641603844048385,0
+0.3472786450669306,0
+0.07037801548764057,0
+0.1554959294703832,0
+0.0632434185260424,0
+0.0050748333863672905,0
+0.05782139762552295,0
+0.016873522680117947,0
+0.061708749854371435,0
+0.09683122926622299,0
+0.006711628615140934,0
+0.3621277989653021,0
+0.45908926974242376,0
+0.002222105268665419,0
+0.33853533194044233,0
+0.039178657172403056,0
+0.15561884040275384,0
+0.00036326743385499914,0
+0.18481099868094947,0
+0.01765987584899424,0
+0.0934150462729097,0
+0.23585572828514967,0
+0.02778941907640841,0
+0.01347857515404855,0
+0.33935396368796333,0
+6.0331739926021375e-05,0
+0.029534218633909332,0
+0.14319931089367988,0
+0.2825759468934773,0
+0.03569544336307216,0
+0.019868444279568367,0
+0.06541274418899908,0
+0.012483133246760886,0
+0.026435668127776674,0
+0.0019807464592352672,0
+0.28075822991465305,0
+0.043675630159626555,0
+0.14993485600525147,0
+0.07483444363403621,0
+0.0065372307817613134,0
+0.058146120871695496,0
+0.10049212879313799,0
+4.4639632380073766e-05,0
+0.013240747964666358,0
+0.0003048360491740057,0
+0.18449958653055262,0
+0.011349530471513335,0
+0.19495860520436845,0
+0.0033930570315595663,0
+0.0004693518687674726,0
+0.002622201200267021,0
+0.10178089367296558,0
+0.5327950466405438,0
+9.922730587938362e-06,0
+0.01701077667139539,0
+0.11464440041131559,0
+0.04478337158909536,0
+0.013297422644497741,0
+0.02131262231006529,0
+0.06899109341907303,0
+0.3059996782960966,0
+0.02287659889818232,0
+0.2010683508774031,0
+0.01762171115225084,0
+0.271095899444462,0
+0.035858483451579194,0
+0.10373225150066172,0
+0.001522478506606235,0
+0.0033765435734560085,0
+0.005970954044724997,0
+0.7597631019832748,0
+7.641245727003497e-05,0
+0.00028719221565168506,0
+0.024489874584977905,0
+0.007520685741123749,0
+0.0007893216705033495,0
+0.021158006745487474,0
+0.1471938402789966,0
+0.007380409855145186,0
+0.015128923972060457,0
+0.02559131959302278,0
+0.009418172489671753,0
+0.14940965455949842,0
+0.007249945032489819,0
+0.18419566758109718,0
+0.19035876884459563,0
+0.15272382686859146,0
+0.004825338433915909,0
+0.008613876841677743,0
+0.15945645267120248,0
+0.009730475814562935,0
+0.017596357226426267,0
+0.541892638003963,0
+0.008608607473576797,0
+0.06883458228490492,0
+0.0703469096534373,0
+0.007032173164412138,0
+0.0001895539297913049,0
+0.051516433680805176,0
+0.2663981741762881,0
+0.012332316471385824,0
+0.009115115121861956,0
+0.11527899751046186,0
+0.0334797889250422,0
+0.07726510470040646,0
+0.1299865368081383,0
+0.05339450657689854,0
+1.3683450608506045e-05,0
+0.19314711607687857,0
+0.11273238196461241,0
+1.5418687115994013e-05,0
+0.007160274611806049,0
+0.030743401580909664,0
+0.0076631757491463,0
+0.0123987897670419,0
+0.0011196446839101875,0
+0.0010317069644769964,0
+0.0977628500769428,0
+0.4071205221575728,0
+0.010552655515821699,0
+0.015914482416208554,0
+0.038946531045922536,0
+9.867436066789244e-07,0
+0.0020655698595943494,0
+0.00554219580277082,0
+0.39161230825632043,0
+0.006573226728517334,0
+0.7851871690576099,0
+0.47342146459587847,0
+0.00016353617589405373,0
+0.1118425964015212,0
+0.37816682527010986,0
+0.0005925776750761254,0
+0.014519510430071925,0
+0.3054897625423688,0
+0.4528769686559099,0
+0.08246193291791894,0
+0.14575741531748126,0
+0.00034247280079587874,0
+0.1266110347572184,0
+0.04885512684780981,0
+0.1806834360096636,0
+0.017509184029508563,0
+0.47438039944960375,0
+0.10239970357602161,0
+0.35888747565056567,0
+0.008957191703558274,0
+0.03239970597037355,0
+0.01888860143302925,0
+0.16065061580508425,0
+0.00047598047247239945,0
+0.0002736743297349014,0
+0.06527940363503323,0
+0.00020002069857521002,0
+0.000363668090242509,0
+0.0722121204388288,0
+0.28751912806496416,0
+0.010342953167079675,0
+0.0005383694140309407,0
+0.0006739361318091805,0
+0.09598546530698461,0
+0.0303957199043065,0
+0.047846582871467744,0
+0.00013325103834205452,0
+0.1564997905020693,0
+0.020684449933400913,0
+0.197335670110884,0
+0.0027859580931970246,0
+0.1013451044016855,0
+0.0728892522825402,0
+0.03386212263163939,0
+0.05958129131199304,0
+0.007562708728260465,0
+0.001777528969060758,0
+0.019837201614562042,0
+0.10531990714084731,0
+2.1980796674285064e-05,0
+0.03655681892706307,0
+0.24861529356822626,0
+0.12062717936292396,0
+0.41691479595612496,0
+0.09801311697385183,0
+0.00303933876792484,0
+0.16366464045939805,0
+0.049482709175403,0
+0.10484281555491363,0
+0.0027492790288886253,0
+0.0015382334382904946,0
+0.0083778242215468,0
+0.035855369240865256,0
+0.0011852338850864266,0
+0.0018495877498585825,0
+0.22191813748092049,0
+0.08177536513514064,0
+0.08117020792973309,0
+0.1690257908892424,0
+0.13227547663596279,0
+0.018928482112748037,0
+8.422292408807168e-06,0
+0.20857756704912517,0
+1.0147255905147395e-06,0
+0.20362788969360426,0
+0.025823553007123117,0
+0.06330071027819043,0
+0.01988338329208529,0
+0.01473620948333224,0
+0.13160341057065617,0
+0.004615799779833682,0
+0.11554769931741637,0
+0.013560332534297333,0
+0.019537538281561198,0
+0.07681871389738146,0
+0.005324932410044475,0
+0.015186977280589107,0
+0.1718486812629965,0
+0.2256914476499094,0
+0.04338452285750131,0
+0.018439060625241543,0
+0.3389094904345958,0
+0.03147097421427671,0
+0.0001790570198687184,0
+0.19374070097460785,0
+0.10293719080474648,0
+0.174972755676454,0
+0.009842573787810876,0
+0.0038155666861689015,0
+0.40096442152264516,0
+0.06381526252562683,0
+0.23670561270644633,0
+0.34252298240297196,0
+0.06973048478347862,0
+0.003969426388920284,0
+0.09161666824700387,0
+0.009280616128399123,0
+0.16320013329366495,0
+0.032065276899377645,0
+0.048809547856669994,0
+0.102626449504813,0
+0.03644089916018069,0
+0.16083352324158304,0
+0.0027973107474299264,0
+0.02289265259611043,0
+0.18313662417628068,0
+0.25864903122767363,0
+0.02672562736709632,0
+0.013976572400419949,0
+0.1184625217355203,0
+0.020143095430133758,0
+0.1860075217938249,0
+0.005459854544755721,0
+0.00390524842343636,0
+0.24552039243351254,0
+0.13617153282937192,0
+3.6370120929481997e-05,0
+0.08706680158611037,0
+0.004549492029227917,0
+0.050591054709309836,0
+0.0006906860073367858,0
+0.34945391904370626,0
+0.05101853290129876,0
+0.04815436389111883,0
+0.23919185891017253,0
+0.046394851743713654,0
+0.01033686924758445,0
+0.00038456132442905643,0
+0.13608529206614098,0
+0.18581625525347048,0
+0.0009707209238816984,0
+0.3133893441809295,0
+0.042887359979074086,0
+0.06306449314892822,0
+0.03326015445309798,0
+0.04165822459006974,0
+0.0002432774260027816,0
+0.004493094176278188,0
+0.03914671557374081,0
+0.05202605039782475,0
+0.01488055347791289,0
+0.629767801913613,0
+0.06403785207449615,0
+0.027538662798532877,0
+0.03663909550643534,0
+0.014493316716697346,0
+0.035258926136292355,0
+0.000986558444704079,0
+0.02972193022841964,0
+0.010020698280437246,0
+0.001213221233215155,0
+0.021128891191478927,0
+0.00237578284942551,0
+0.0009773255666262915,0
+0.39444600612031044,0
+0.08403189433472946,0
+0.0192950296356696,0
+5.867775292550375e-05,0
+0.02121747337021637,0
+0.04802150890451692,0
+0.024149674675387124,0
+0.03765838925541053,0
+0.06171135044910388,0
+0.4060599821069933,0
+0.00020087956561731806,0
+0.0014697634165035094,0
+0.022412580201551548,0
+0.0009799796104636876,0
+0.05564881518833452,0
+0.3274160579531137,0
+0.004616532250134227,0
+0.0015216823440390066,0
+0.09431295863229928,0
+0.010527413638865234,0
+0.03259139689753342,0
+0.021416810709084418,0
+8.74636685385578e-05,0
+0.11526207455263955,0
+0.3221130243061169,0
+0.17198791734780142,0
+0.0032207744078956305,0
+0.1943778052421436,0
+0.3633788102753276,0
+0.05820882753986254,0
+0.0007679207501543773,0
+0.4137766599118651,0
+0.05782716904004379,0
+0.08841762400343034,0
+0.07281924704317243,0
+0.04244491642691857,0
+0.2096218720049559,0
+0.12802217235372218,0
+0.01650237035926707,0
+0.01492810703142905,0
+0.019953733437336783,0
+0.27795824820941795,0
+0.05092480122126865,0
+0.029801994425637586,0
+0.0006713800111110843,0
+0.03583641093205832,0
+0.037688775921419664,0
+0.0584067746558794,0
+0.21713361519571173,0
+0.2431505097244749,0
+0.1646656385243898,0
+0.1479250621429929,0
+0.02244380469957472,0
+0.08990052831442064,0
+0.012171589600887016,0
+0.015759680991598753,0
+0.43643004938551205,0
+0.11706637401522761,0
+6.522315773443164e-05,0
+0.06074748542444255,0
+0.1027892444942545,0
+0.010963752653294606,0
+0.18139993202420215,0
+0.00139684343546407,0
+0.021201375665008498,0
+0.12192284013568137,0
+0.4815931974877703,0
+0.11348041450895194,0
+0.0945390908902363,0
+0.003796899355599153,0
+0.007463112840542685,0
+0.00023237910698723584,0
+0.05669361016974907,0
+0.03038274089077197,0
+0.21864987677314301,0
+0.10349779263297927,0
+0.1467320633222114,0
+0.07218743784863274,0
+0.12549850555973008,0
+0.3019362363079737,0
+0.7137669904472916,0
+0.00020011651068339175,0
+0.3460024512648827,0
+0.08851926875622335,0
+0.08306579153403867,0
+0.03382165542942626,0
+0.13633593030464491,0
+0.004830559189345061,0
+0.03533259194546275,0
+0.03130832135810911,0
+0.0057219688841434685,0
+0.13582957106115698,0
+0.08235786215344731,0
+0.20797117829540931,0
+0.0028082882464890947,0
+0.3363430269912862,0
+0.07449049218456487,0
+0.008809090102903398,0
+0.08494251238149081,0
+0.4093783694613363,0
+0.0024468700942341646,0
+0.1185961004325518,0
+0.017933783274341746,0
+0.03862936274857347,0
+0.0016889779043426708,0
+0.01093599600645436,0
+2.0029010843239336e-05,0
+0.07391373166540663,0
+0.1401931131063839,0
+0.007844953962489883,0
+6.902311130611014e-05,0
+0.3838598459969825,0
+8.189295280186533e-05,0
+0.08033020092500663,0
+0.25998179674759525,0
+0.4366117196760208,0
+0.011433979137404718,0
+0.10939849399728799,0
+0.04431523125883694,0
+0.003407905643287757,0
+0.2355541057396784,0
+0.0014422740701911165,0
+0.019260191719635646,0
+0.2873583843972052,0
+0.38293991846772907,0
+1.5544492037683138e-07,0
+0.008069033635925125,0
+0.046557805509773176,0
+0.03561638056789462,0
+0.004477508322888494,0
+6.292107663862523e-05,0
+0.14136867021054159,0
+0.2560438540016513,0
+0.003860936035450625,0
+0.00010316663820522571,0
+0.06631860313533529,0
+0.08385567605363817,0
+0.04398314790966932,0
+0.051851078161123575,0
+0.03712513468550456,0
+0.06664427921436586,0
+0.0825920142201953,0
+0.020149130513594207,0
+0.15405971937802931,0
+0.20801912073769285,0
+0.01165434593992033,0
+0.008055521885511825,0
+2.987496607571576e-06,0
+0.07379785782384306,0
+0.0036935535535558297,0
+0.1276157057564569,0
+0.00031384520476400137,0
+0.004131767058258176,0
+0.3138157965581339,0
+0.0001860423731080247,0
+0.15094418284927544,0
+0.006770882426719381,0
+0.03252449530883111,0
+0.16305361975136154,0
+0.06414376613426721,0
+0.007191424092965611,0
+0.32455936858122303,0
+0.19013204956927682,0
+0.0615975096968918,0
+0.4118446587522798,0
+0.013606819022913738,0
+0.0018396961353707186,0
+0.13615874378863352,0
+0.005728036289507163,0
+0.2467796088408229,0
+0.0004233265854835798,0
+0.28933002716085465,0
+0.009316669744790958,0
+0.10693789139706086,0
+0.3879529732481556,0
+0.019846649314257524,0
+0.3650866645997742,0
+0.3174764169884347,0
+0.01353324402606614,0
+0.007929925634695132,0
+0.06491209376252988,0
+0.0005943507661177245,0
+0.001659763761720247,0
+0.0016484644052231854,0
+0.1415213755020598,0
+0.00023744930752982226,0
+0.004659742450514554,0
+2.414116733774363e-06,0
+0.24439840152073183,0
+0.0037581625471562,0
+0.003131930046253543,0
+0.1706832088909143,0
+0.3443724363128401,0
+0.002101116869805564,0
+0.015378361741976187,0
+0.04330688053405685,0
+0.00018792199218878504,0
+0.027976068180992398,0
+0.10483729251595948,0
+0.015978881390984332,0
+0.08941524640420515,0
+0.008045183757872176,0
+0.04611636963332871,0
+0.01056254302169051,0
+0.05544222013198985,0
+0.13393209833132028,0
+0.013223457737494806,0
+0.00017963949409855015,0
+0.014234099604387051,0
+0.03277003559522951,0
+0.0012755469338357063,0
+0.009815294599814384,0
+0.002112283655255549,0
+0.2174324292987976,0
+0.2686636738370879,0
+0.011885054388877147,0
+0.10136653492411356,0
+0.04216011643479374,0
+0.0073161506214575985,0
+0.06362643309023344,0
+0.011582099308663397,0
+0.015520674909564417,0
+0.12143845098952204,0
+0.03207607522144995,0
+0.0034583805002728423,0
+0.046488219728557045,0
+0.1349425490792341,0
+0.012104878886013927,0
+3.4647931683422817e-05,0
+0.049860615782265305,0
+0.4493323690879049,0
+0.02840838432150179,0
+0.04231384395939118,0
+0.09524577500675704,0
+0.279155950560221,0
+0.9392100857689707,0
+0.0753432668491751,0
+0.020282549830141765,0
+0.0003674889212822879,0
+0.19673970149629383,0
+0.04654962712384817,0
+0.04510060692695545,0
+0.010151894673185443,0
+0.024684236031235804,0
+0.4139761341514999,0
+0.025832490317281076,0
+0.0066124771533387985,0
+0.07367787102658346,0
+0.008064501955615287,0
+3.621644384387662e-06,0
+0.06457592064558175,0
+0.005438013553381206,0
+0.09162999127592632,0
+0.2153829028393607,0
+0.00909337425172901,0
+0.02625076341145103,0
+0.03701155391234552,0
+0.4549121299501576,0
+0.11537663930871915,0
+0.10996807162454354,0
+0.31935866410154384,0
+0.08304983090607408,0
+0.45690794521561484,0
+0.23221181241402838,0
+0.1751396325411157,0
+0.025860557341864175,0
+0.19784707698537268,0
+0.014106434355597422,0
+0.09076623671940737,0
+0.12097141034003658,0
+0.0017123655806371319,0
+0.009421317734179814,0
+0.015426665432575795,0
+0.010177696824622069,0
+0.007505658996248292,0
+0.09603819038748301,0
+0.023000367227915243,0
+0.05695650426193681,0
+0.0032876520948842804,0
+0.0022149705168905487,0
+0.0178598167222324,0
+0.17205849557194625,0
+0.021384694196491354,0
+0.09604551078327042,0
+0.0436420338403596,0
+0.09373489303702548,0
+0.03643708244440691,0
+0.0071643725386269595,0
+0.013219558643607984,0
+0.00012939631312318086,0
+0.10555095111289062,0
+0.11954874231896566,0
+2.9494745833190325e-06,0
+0.005176037717858389,0
+0.040263866810801505,0
+0.020768262014854565,0
+0.0015828469996977377,0
+0.03183559078575342,0
+0.0397723735125899,0
+0.0013003236163516272,0
+0.03400441631243414,0
+0.015996703114384732,0
+0.7263505727682829,0
+0.09795553275948972,0
+0.004077238024581127,0
+0.00010101346171152493,0
+0.20394673184330867,0
+0.001279024430401542,0
+0.05199553363119289,0
+0.1772988031182106,0
+0.22115447199954694,0
+0.07160711440311958,0
+0.19410795496904865,0
+0.0018243116744972078,0
+0.3874788526631411,0
+0.12172191064723607,0
+0.037024833498350306,0
+0.024305083331481223,0
+0.07475916093962734,0
+0.29055186724643034,0
+0.11169465951678723,0
+0.14757238817770918,0
+0.0027428733556806445,0
+0.07644583403308132,0
+
+0.47422818070513156,0
+0.018534395586059495,0
+0.005388868383801341,0
+0.08600594130409243,0
+0.037449315325574974,0
+0.4139530729719125,0
+0.02114466737993769,0
+0.036377842968024765,0
+0.008731999363502467,0
+0.2479341341934636,0
+0.05584157883620842,0
+0.018091393186372016,0
+0.16305368881100055,0
+0.17230172399259286,0
+0.08542237452128823,0
+0.10820606308706415,0
+0.004726768655394525,0
+0.7052498346300193,0
+0.07883457220180297,0
+0.031549368126208795,0
+0.16178920889499912,0
+0.037467896249963384,0
+0.05299569385294388,0
+0.0016083552588146408,0
+0.021585449971808248,0
+0.0661794759164053,0
+7.488455424218283e-05,0
+0.03321751726512105,0
+0.005173946071288238,0
+0.04944866082870332,0
+0.055278983765203724,0
+0.11788102629685235,0
+0.00878227471138594,0
+0.1832246071954299,0
+0.14672749528922036,0
+0.02974786882511899,0
+3.9726888790611284e-05,0
+0.06346130888110342,0
+0.006781523933683327,0
+0.020400383433027334,0
+0.06223888276286492,0
+0.05608182671044375,0
+0.001408830800911663,0
+0.016803249740725255,0
+0.039351187817191366,0
+0.06981312682210618,0
+0.20354498104309968,0
+0.20241058431569087,0
+0.09134723753723009,0
+0.0208358376317705,0
+0.3597949217337033,0
+0.010638444557443368,0
+0.06800035260143318,0
+0.0639718035723136,0
+0.0017285963108301609,0
+0.03992887314221931,0
+0.05713354330722673,0
+0.020503450209139493,0
+0.0048273706297122096,0
+0.003672826811374199,0
+0.08615896651687104,0
+0.16428370404178289,0
+0.0056601499524284535,0
+0.09828286468345102,0
+0.003828046087165262,0
+0.0012203228631926717,0
+0.3967891915818633,0
+0.0325375057525913,0
+0.008896571810344953,0
+0.1259664862353887,0
+0.09627547020286227,0
+0.00822820437086449,0
+0.004512868789341117,0
+0.005683464332114788,0
+0.08097696276165535,0
+0.10582025177969759,0
+0.22683176028088833,0
+0.00017062446866558155,0
+0.17015633124310317,0
+0.049208620398413325,0
+0.009916095913379306,0
+0.03202686679731433,0
+0.005512156919496794,0
+0.10105230377907701,0
+0.26352237752321955,0
+0.5372002724980339,0
+0.0001614870149944288,0
+0.1900692550491611,0
+0.010346933912798069,0
+0.1202172497420523,0
+0.08719699637836754,0
+0.10523950747763788,0
+0.08022510934483043,0
+0.03216720160858994,0
+0.12163970817019157,0
+0.051230010211598676,0
+0.002519674310693582,0
+0.018396370520821395,0
+0.023684768821758816,0
+0.048048457131938824,0
+0.0666836901480135,0
+0.03324872598457783,0
+0.01849631720716032,0
+0.11965876769637587,0
+0.178156363356281,0
+0.02358004723931302,0
+0.1652133969515612,0
+0.1443715298182527,0
+0.037245884350611956,0
+0.0517401847628556,0
+7.563912217396998e-08,0
+0.0003806656389517258,0
+0.08093743600642798,0
+0.00042535620953094717,0
+0.04222289019598372,0
+0.39433923686691663,0
+0.21861402951773928,0
+0.002021273353545312,0
+0.0018662892319849787,0
+0.2053420916571965,0
+0.06232944954339683,0
+0.017472313129787732,0
+0.10473355342519042,0
+0.06573593459123936,0
+0.05328483253269448,0
+0.03669430670825226,0
+0.050714291253452684,0
+0.7188249891474495,0
+0.12690068453653885,0
+0.015179067007032388,0
+0.021186875016933317,0
+0.010802624023558997,0
+0.00859578481870948,0
+0.02111743281036335,0
+0.3582362698133962,0
+0.10099316412648236,0
+0.021423871590767328,0
+0.05399523840160433,0
+0.28897095121012223,0
+0.00040752664009216435,0
+0.005792435643082097,0
+0.12866935232181337,0
+0.012197460755546603,0
+0.1685155308232771,0
+1.55095749215074e-05,0
+0.16577027961685045,0
+0.06395712156243064,0
+0.0008681886498928723,0
+0.2950611286500783,0
+2.3355021325564726e-05,0
+0.07418002557588113,0
+0.3341580481295431,0
+0.010382971295008245,0
+0.038593320174726706,0
+0.013694647267650642,0
+0.13185256208462665,0
+0.16919234240866493,0
+
+0.055068297961029446,0
+0.05917215024175709,0
+0.1323945645168574,0
+0.00636756435900207,0
+0.0018844147303623121,0
+0.006554840587399105,0
+0.5835431454451967,0
+0.15995288323035778,0
+9.78563449368295e-09,0
+0.005673275291841167,0
+0.02165803118692252,0
+0.000963744481118253,0
+0.0010835923845523684,0
+0.012351389955956452,0
+0.0019108266653189323,0
+0.0497514602916634,0
+0.20632016689024693,0
+0.1966122467378581,0
+0.04407915513151037,0
+0.009309166147813703,0
+0.015025634456106954,0
+0.3287228139833017,0
+0.028536599243057924,0
+0.004673382111920889,0
+0.006331421869769528,0
+0.02120601481623912,0
+0.044812109346074665,0
+0.019196318647761328,0
+0.28200561182596656,0
+0.17714174896380797,0
+0.2991369512561154,0
+0.14953822344777595,0
+0.03978278011804336,0
+0.3212495870740941,0
+0.029382198271949156,0
+0.016484593033226025,0
+0.00016246769806229163,0
+0.21304079625892203,0
+0.027600808404979214,0
+0.030748731556726333,0
+0.0013378971331511568,0
+0.003546305998116435,0
+0.094445201100003,0
+0.049993560387811775,0
+0.210717886928459,0
+0.19965976347817765,0
+0.04033961637998512,0
+0.2644955660368116,0
+0.0016631545332469332,0
+0.38440613646189187,0
+0.0019893368489632126,0
+0.1793850005980005,0
+0.024591288364883716,0
+0.002376019515054434,0
+0.061426316845030096,0
+0.005964956377407031,0
+0.06390371283320638,0
+0.003725651949677355,0
+0.07209895909554791,0
+0.004821407522932176,0
+0.05271014524510951,0
+0.14613523742056372,0
+0.08907129401249787,0
+0.2530755839074581,0
+0.017578895429775653,0
+0.3193513075718647,0
+0.05778737330222522,0
+0.006415150071964399,0
+0.20845767252912442,0
+0.0003659389586422985,0
+0.010466463503442184,0
+0.0025077595011435225,0
+0.0001717311525145474,0
+0.0007410068202692353,0
+0.014670656897674031,0
+0.01212661434820626,0
+0.2280663854326525,0
+0.16649064299924124,0
+0.0007643490281400183,0
+0.05296279159428106,0
+0.1941169755254615,0
+0.624121478394757,0
+0.08800338892743155,0
+0.18630228344047167,0
+0.003010294775209037,0
+0.0082172108958545,0
+0.08676393769989484,0
+0.22360614083878025,0
+0.06622739654371387,0
+0.043732123763021886,0
+0.002172400166680661,0
+0.02562946250647316,0
+0.10508726685162666,0
+0.02451771921735025,0
+0.06907610786039545,0
+0.10187159425414445,0
+0.13886165405071224,0
+0.2006758938544584,0
+0.20889676427207005,0
+0.0017601785158194861,0
+0.042671769568305755,0
+0.01823760402636462,0
+0.0003416317381702528,0
+0.10199324035398301,0
+0.1363880802531445,0
+0.0644068917662605,0
+0.010999491597946005,0
+0.01735699779273643,0
+0.00263665354782486,0
+0.3392936007279769,0
+0.005457490885083611,0
+0.11125417562832034,0
+0.12779890387447815,0
+0.25181787371680664,0
+0.3629308745256938,0
+0.212761683754828,0
+0.23277592821273227,0
+0.11459551579706347,0
+0.0005698814132550657,0
+0.0018674558202219649,0
+0.0337729017312294,0
+0.14146708213494766,0
+0.10363169297518401,0
+0.3299509655251924,0
+0.18635469275316824,0
+0.14443633552667226,0
+0.013056821173410033,0
+0.060467448749092545,0
+0.039853241914416346,0
+0.2770891991509619,0
+0.18292634879188002,0
+0.4128619593459241,0
+0.4613024784998264,0
+0.10125394067787448,0
+0.18650577820269712,0
+0.024800752025187233,0
+0.006146032796787664,0
+3.008773057579526e-05,0
+0.03437739082595684,0
+5.900833709909577e-05,0
+0.08691498678631285,0
+0.1637117584823842,0
+0.012136181529805086,0
+0.009342343806350783,0
+0.010153714463005309,0
+0.01760923463691549,0
+0.0015197801845369737,0
+0.13182948605724515,0
+0.06476622046514849,0
+0.08590099283846675,0
+0.0005793246612939069,0
+0.018543965892972844,0
+7.509872433612063e-05,0
+0.2364284430558167,0
+0.0004715973029451758,0
+0.1919172680215081,0
+0.4437312537789226,0
+0.5775901963311505,0
+0.019599175502883828,0
+0.08623421355293885,0
+0.03564904809050136,0
+0.39524194242068766,0
+0.10138404641524326,0
+0.08411843670189503,0
+0.019888331153954324,0
+0.17966530821663682,0
+0.19697574091704081,0
+0.004036698406497124,0
+0.0072886647320263035,0
+0.12742819553166032,0
+0.0006179252081006094,0
+0.008738494232743031,0
+0.012760463627706397,0
+0.029333396986912525,0
+0.1750634252833897,0
+0.18403194749072002,0
+0.06065594386271876,0
+0.15683119738233348,0
+0.1550733066168267,0
+0.0064060276886489746,0
+0.2586387392243764,0
+0.5810954889826998,0
+0.07333116135507811,0
+0.045411471206356836,0
+0.1708325031121152,0
+0.09112230151747026,0
+0.009783722197591976,0
+0.03367918373642924,0
+0.0017381868245955861,0
+0.11737793975399988,0
+0.0030422259756165498,0
+0.04827788829829512,0
+0.35843076685609515,0
+0.031349849886245076,0
+0.008115696823861486,0
+0.29488262945293375,0
+0.06658345145982546,0
+0.010900269978790997,0
+0.056365561381483985,0
+0.038168613451720165,0
+0.029794114809916568,0
+1.1328096646939975e-05,0
+0.1217794604001959,0
+0.1172494457100923,0
+0.04444838117141895,0
+0.23513222285384336,0
+5.2465432081472205e-05,0
+0.3330223149207975,0
+0.001465825517170955,0
+0.018813575525802942,0
+0.012929573460588697,0
+0.01816407736484223,0
+0.02286184337411531,0
+0.002609302024094291,0
+0.039948534276842224,0
+0.15225729304929872,0
+0.11126335047581237,0
+0.022944476559196757,0
+0.18982410474537528,0
+0.002837658626042715,0
+0.14128681947633867,0
+5.869874737481551e-06,0
+0.048809569187553234,0
+0.3123228439850698,0
+0.0004900824976908078,0
+0.015437356823569465,0
+0.08669481863974096,0
+0.006526671573925802,0
+0.43522833148937046,0
+0.018579499828710468,0
+0.2241749896700102,0
+0.18705617842118794,0
+0.4157176002542903,0
+0.011391947010709953,0
+0.21245819485123968,0
+0.002601799211039083,0
+0.24436393717665714,0
+8.856996694813026e-05,0
+0.03645598398312209,0
+0.020546048887054243,0
+0.629671526758907,0
+0.20118380997112947,0
+0.5743179846315856,0
+0.0023532713003183636,0
+0.005998880592679297,0
+0.14252985867095563,0
+0.07304099404825587,0
+0.08923606989650835,0
+0.0016775265115283496,0
+0.009110072519197985,0
+0.014745271182209415,0
+0.003564122894754796,0
+0.08454248966229148,0
+0.028375822198957068,0
+0.20479768472230725,0
+0.13954654190315927,0
+0.0014072184374565458,0
+0.29917305986067183,0
+0.03327789482373164,0
+0.12724567613783389,0
+0.3422112992539453,0
+0.17711130073411763,0
+0.03279338592075768,0
+0.005758845005784677,0
+0.017660383413571467,0
+0.04149521014090789,0
+0.6551082037591722,0
+0.04177827353748855,0
+0.13603515531246949,0
+0.15458686577115624,0
+0.09743408834439997,0
+0.13528824924190275,0
+0.002870315646924097,0
+0.0754596882776015,0
+0.049101866198527216,0
+8.485023290177864e-06,0
+0.14890614229540872,0
+0.0827998511994941,0
+0.00268828927100301,0
+0.30910351177933043,0
+0.038595042758014494,0
+0.18888797621779613,0
+0.13656030731351707,0
+0.044230762722833675,0
+0.1532668262791782,0
+0.04234921111880772,0
+0.008079208113113818,0
+0.19012521517211195,0
+0.07189856204268948,0
+0.02591749114584662,0
+0.005653399896317536,0
+0.03094432756008595,0
+0.02680937027997816,0
+0.18444523092348872,0
+0.0034057052131758804,0
+0.12489646113182137,0
+0.3042581066425971,0
+0.000323556299459981,0
+0.02222993784567981,0
+0.09995406623039728,0
+0.10869627391154155,0
+0.035465509446221774,0
+0.011666099684928835,0
+0.051677369926158644,0
+0.00015445032181626294,0
+0.03689366531401122,0
+0.06701455229113634,0
+1.2632747357744029e-05,0
+0.021598135218138016,0
+0.2406808119452993,0
+0.1137865452711482,0
+0.029627817192547277,0
+0.07201691726206028,0
+0.02267030603325238,0
+0.0035690394595436084,0
+0.20734897833334665,0
+0.09983272286236465,0
+0.020308933777435416,0
+0.0005473567205553011,0
+0.04577139595246132,0
+0.40485778895473024,0
+0.01828688458020254,0
+0.04361025850929477,0
+0.14831921366269524,0
+0.0945722967489783,0
+0.10655857233337669,0
+0.00844371682464447,0
+0.027826459912476224,0
+0.027895778089862037,0
+0.016322272780072974,0
+0.5203237581139641,0
+0.501369261472642,0
+0.0291601429095583,0
+0.053418316715063176,0
+0.004959032162826825,0
+0.0017407154652384015,0
+0.02063413030442622,0
+0.30884839590911073,0
+0.006115740071738664,0
+0.022041895621629455,0
+0.1459850976867163,0
+0.0887203690679266,0
+0.08683027362664172,0
+0.10038622273210651,0
+0.27493356105627076,0
+0.0036888999630763455,0
+0.2643351857664096,0
+0.018478710990557687,0
+0.05154442165901281,0
+0.5477313267533637,0
+0.08623587921352932,0
+0.023008266386408793,0
+0.03880516089913362,0
+0.40809864181453576,0
+0.055617990179216384,0
+0.12012641027050053,0
+0.044368169881239705,0
+0.5110428003290725,0
+0.04513657963353625,0
+0.20820568274167162,0
+0.16450372811313446,0
+0.015834705055671285,0
+0.019739620142674684,0
+0.05207304989488799,0
+0.3440143352776806,0
+0.005290957300391228,0
+0.00011997788745017677,0
+0.22743307430161175,0
+0.06938632877582412,0
+0.01812856949372847,0
+0.007328002656324028,0
+0.06327366913146855,0
+0.026981925399154217,0
+0.06725569659246354,0
+0.013510242453688554,0
+0.005051023002806189,0
+0.06989557112926206,0
+0.07410363226896698,0
+0.021972023072866446,0
+0.08321926833908383,0
+0.1641070589555787,0
+0.16729646628195838,0
+0.0035181868002104174,0
+0.06882436355773966,0
+0.00466674305376642,0
+0.01718066654316249,0
+0.08894596786535926,0
+0.04306562878175437,0
+0.1421892104222982,0
+3.589593482518877e-05,0
+0.015920532219253346,0
+0.6197882452988148,0
+0.20888923730858,0
+0.05273199663252946,0
+0.02703819002589526,0
+0.004891471660467612,0
+0.0008231536134008068,0
+0.31036070076022115,0
+0.771672965254455,0
+0.08670764451879961,0
+0.013911575671101475,0
+0.29315636126260114,0
+0.6122712074656241,0
+0.001487512918890251,0
+0.05063339905410089,0
+0.09861927394699484,0
+0.39152652788292536,0
+0.08133532400116593,0
+0.19612472503043304,0
+8.84042858573865e-05,0
+0.1064928648541578,0
+0.0110447131058334,0
+0.046392389760724885,0
+0.032745051335109396,0
+0.1271457325661077,0
+0.009902594608128914,0
+0.07367417160569534,0
+0.10280936021159341,0
+0.09954955801578935,0
+0.5105148817058981,0
+0.025402775783195757,0
+0.03743343858700361,0
+0.02671830117806006,0
+0.0010033158066526835,0
+0.14903719408837296,0
+0.1629150870378398,0
+0.052694035557356744,0
+0.1737122349468263,0
+0.5074215033034872,0
+0.04626626667897441,0
+0.042152768861471165,0
+0.019089672353403753,0
+0.18058581557607434,0
+0.28069446410025134,0
+0.08703980681521883,0
+0.015381504527520556,0
+0.015932333564455916,0
+0.7109742819902451,0
+0.03003854540762941,0
+0.2109756881686684,0
+0.12449235457008472,0
+0.11000187783187058,0
+0.003134030997871699,0
+0.003921635209882935,0
+0.026731121302408407,0
+0.07292189185453517,0
+0.24512317174532644,0
+0.006843226676650873,0
+0.0006025354142795794,0
+0.07553023853438164,0
+0.01954003075670637,0
+0.024887720654376465,0
+0.06842761357181475,0
+0.15133911967592512,0
+0.19593059288118048,0
+0.16672017937859712,0
+0.09659264894016767,0
+0.04228489062928431,0
+0.06146471424889075,0
+0.01723428445383985,0
+0.07512573566579428,0
+0.10493980315272418,0
+0.1078523287369112,0
+0.007561623580569131,0
+0.015433413730408371,0
+0.00032910797207427397,0
+0.06897437725068084,0
+0.0180675237255462,0
+0.09478366469614534,0
+0.12742987125543198,0
+0.004131113108077257,0
+0.040703584872737494,0
+0.12341911367591427,0
+0.25854578818684903,0
+0.09257153460420045,0
+0.02444106719103914,0
+0.008432408912440289,0
+0.00226739391696715,0
+0.016572349271834593,0
+0.07002998084485486,0
+0.09675026288203946,0
+0.5915497462817211,0
+0.26597042724924647,0
+0.06989158836519162,0
+0.2860924661727414,0
+3.805281843557818e-06,0
+0.00010329109196714832,0
+0.22611086731516233,0
+0.00785133254047,0
+0.14521852446927627,0
+0.015570742957837924,0
+0.08248694042908751,0
+0.0494044548171577,0
+0.049975333068595536,0
+0.03325910853872817,0
+0.008727068233420688,0
+0.12916328174929226,0
+0.3291794511209324,0
+0.028203677953958034,0
+0.0447906516372053,0
+0.10158246938337363,0
+0.007648120730929323,0
+0.012267474959703099,0
+0.10440150577897633,0
+0.0914824043584368,0
+0.02977139983560828,0
+0.1379166569290487,0
+0.14247485564771417,0
+0.6343651261056952,0
+0.11811753496388352,0
+0.015184443948027667,0
+0.36424059289340915,0
+0.0002961151157131239,0
+0.09616812951208478,0
+0.0743160122780271,0
+0.0032920706679199817,0
+0.0038467360506738045,0
+0.23960716044444616,0
+0.035624550626629045,0
+0.08003607715775041,0
+0.16166754770381392,0
+0.0003505721207884789,0
+0.2903337311789793,0
+0.03302027115282073,0
+0.003825188267653921,0
+0.23036920766786192,0
+0.11204303077814717,0
+0.17601842635824838,0
+0.17268073785155702,0
+0.04194822166089415,0
+0.31190022151759,0
+0.01040590788547124,0
+0.04343794460939272,0
+0.0055240625854069605,0
+0.0009054388918022406,0
+0.2221898491610837,0
+0.04040615461306697,0
+0.06237387484138705,0
+0.0027205907755776205,0
+0.006920742839941011,0
+0.02116082032762484,0
+3.745102898190511e-05,0
+0.04429053846438197,0
+0.12745761067222738,0
+0.03923790961604338,0
+0.054008557467398965,0
+0.04450217110249401,0
+0.26556789639737083,0
+0.11336403182098567,0
+0.15482736632494354,0
+0.00041941843137123486,0
+0.03756788857046732,0
+0.043123759934307906,0
+0.2889131092959598,0
+0.014524955472356119,0
+0.19233896769925646,0
+0.047680786266760165,0
+0.01941322783426041,0
+0.04859770855784037,0
+0.4777023693300563,0
+0.1501262522677435,0
+0.008081415635785287,0
+0.09541793677001972,0
+0.01302923427790705,0
+0.36942281008906314,0
+0.010123093268939742,0
+0.20911080900179552,0
+0.33716185825811895,0
+0.11400634268010863,0
+0.6740144284268149,0
+0.06975519633248768,0
+0.2550668774741927,0
+0.003913268746891266,0
+0.39608793053986735,0
+0.43557275741980456,0
+0.00015186043460748902,0
+0.028829017671076984,0
+0.06282576727659103,0
+0.20044887005623924,0
+0.0066489166690124075,0
+0.00014407115410578348,0
+0.1035273173668891,0
+0.06032644526804519,0
+0.0007896214516059279,0
+0.32860492823725757,0
+0.011279259918925028,0
+0.00143363626798686,0
+0.055737924733045986,0
+0.5312356765125518,0
+0.041979955700866114,0
+0.09798303370953557,0
+0.052898022134554815,0
+0.18422166614390584,0
+0.1065118910155384,0
+0.026778864115660855,0
+0.14580246825815305,0
+0.10930351265574775,0
+0.15918434268556364,0
+0.10278085762926839,0
+0.015898836969333634,0
+0.00018229160066910517,0
+0.010273661695280628,0
+2.5560000897676655e-06,0
+0.1255341522698029,0
+0.004642580704198608,0
+0.0010513777608144358,0
+5.86939499250815e-08,0
+0.18665882354663837,0
+0.06590764128575319,0
+0.00039654149669755975,0
+0.03967206402997378,0
+0.06349068745249078,0
+0.009851432539934703,0
+0.18539787761538357,0
+0.022833219743680543,0
+0.000801625892310498,0
+0.23036880751825212,0
+0.15988520724732125,0
+0.019000029584097796,0
+0.06969517502594305,0
+0.008916456369774286,0
+0.17386523564451184,0
+0.09396887291999134,0
+0.0005480212346721584,0
+0.04256001219562379,0
+0.03077385140071151,0
+0.0004866407418365643,0
+0.2918744951882749,0
+0.18804132451180966,0
+0.02809617179053177,0
+0.14738878733873612,0
+0.038584146750723886,0
+0.36974345258494246,0
+0.046729953700098914,0
+0.0501738749525674,0
+0.004191935640000319,0
+0.004347439381810124,0
+0.1585486541077985,0
+0.08484348165042124,0
+0.03419063258796579,0
+0.027967650274732213,0
+0.0003129007706887118,0
+0.07938055407951963,0
+0.006211267356968584,0
+0.2626341327373417,0
+0.3419792863202632,0
+0.09741099366861913,0
+0.005955717438079655,0
+0.03168406564664263,0
+0.32904506525218524,0
+0.12605527349702836,0
+0.004847038554644689,0
+0.22001994144172068,0
+1.700698619320362e-06,0
+0.007365082122226997,0
+0.0040635786051166555,0
+0.08800966272553037,0
+0.12148884934175516,0
+0.02591927136243321,0
+0.04496030115114403,0
+0.19685260413646283,0
+0.05652551347653865,0
+0.031560009229731886,0
+0.29517241578246967,0
+0.00013329264126476533,0
+0.11447270909000469,0
+0.06172900252711511,0
+0.0012819944783055478,0
+0.01329220990664999,0
+2.6582254949872087e-05,0
+0.005325060738668152,0
+0.27120385404303154,0
+0.14371776999703728,0
+0.0017225380627464248,0
+0.022818249467835026,0
+
+0.012355052884366889,0
+0.07238021032747875,0
+0.0013051805454507525,0
+0.010577246034973932,0
+0.29392061620070953,0
+0.04069838406998211,0
+0.011677464946533394,0
+0.15998700482272574,0
+0.07285533588917266,0
+0.0029273927435353167,0
+0.0029074108220523607,0
+0.2644900550793895,0
+0.22211157614901467,0
+0.0010965241930462801,0
+0.10786088867913435,0
+0.09044702361041367,0
+0.3059318453957744,0
+0.031686337043591674,0
+0.0016516322970061097,0
+0.23356397379528615,0
+0.16917406930536555,0
+0.03601224079800231,0
+0.01882525419511435,0
+0.03297435920490922,0
+0.060557266586830624,0
+0.018528163348966023,0
+0.02103022908236587,0
+0.0011617605371427068,0
+0.00130082032133875,0
+0.17191751837917996,0
+0.00983977769047788,0
+0.05881869393884831,0
+0.016930221372237743,0
+0.004679403312747362,0
+0.05990906944822313,0
+0.013680087234428798,0
+0.022314338360601333,0
+0.10221064275530689,0
+0.326734767037833,0
+0.006517054230843093,0
+0.013113715692223447,0
+0.009040875485957552,0
+0.010653796880372575,0
+0.0627248804165431,0
+0.2583659495541807,0
+0.015145823723219617,0
+0.1537872832461209,0
+0.3427258670096593,0
+0.00014208014096153554,0
+0.010553807071950517,0
+0.045577118589382105,0
+0.08096228473140085,0
+0.001884173278713842,0
+0.09145241944739044,0
+0.029821794823832563,0
+0.11844212130873724,0
+0.09908317993692226,0
+0.024589218233560056,0
+0.17311592413655913,0
+0.21373836271827223,0
+0.10122146732636797,0
+0.06969912583672985,0
+0.03480976097013096,0
+0.000709500538409203,0
+0.04431638858221899,0
+0.5728924252283356,0
+0.004169408760733672,0
+0.046610921700237985,0
+3.792166191500922e-05,0
+0.023801664452458456,0
+0.0023684240302244293,0
+0.003682600389823921,0
+0.014955560287822583,0
+0.2637282210934825,0
+0.06847746694245219,0
+
+0.11519261060942713,0
+0.11499384565245616,0
+0.0010166975505076534,0
+0.07099309168576354,0
+0.572979798204238,0
+0.1047599379662214,0
+0.06358237809692177,0
+0.0020635020345977162,0
+0.013280885226895028,0
+0.04046659498043109,0
+0.009124568164384471,0
+0.04238114659944765,0
+0.23299779913076685,0
+0.294815179367632,0
+0.04924556250334687,0
+0.0046378849470471075,0
+0.22914258339668286,0
+0.0010524885703295168,0
+0.009994045187432384,0
+0.14818134231560018,0
+0.007290094434979537,0
+0.06826976652368431,0
+0.08672804257548115,0
+0.03620788664277115,0
+0.010753938655396342,0
+0.0026576033397115967,0
+0.00037120902702042523,0
+0.013368042607200157,0
+0.0029627320011054526,0
+0.05616424674860434,0
+0.10989867048313258,0
+0.005068061136132288,0
+0.0007277327740949851,0
+0.016124143670958734,0
+0.01027316091342309,0
+0.23179636818814955,0
+0.20937677461617388,0
+0.02986565638917916,0
+0.06687799916357653,0
+0.05934680524736034,0
+0.20334143438471108,0
+0.39362910497452686,0
+0.010471846563423969,0
+0.3381401904474205,0
+0.019020325865270797,0
+0.00010467697589149314,0
+0.1184913593909602,0
+0.020785532053847474,0
+0.1545973963379978,0
+0.07000774878437407,0
+0.3783081455367786,0
+0.13979058403919942,0
+0.05955864341603682,0
+0.05217660805798202,0
+0.103930585947176,0
+0.02376459298585735,0
+0.0889149345967059,0
+0.43274089551797096,0
+0.0038356625183769257,0
+0.12426920984094944,0
+0.02791301901395284,0
+0.05638115911634293,0
+0.4233240616862924,0
+0.0006979704135701758,0
+0.03727486358212409,0
+0.05116642933331038,0
+0.06529376855117566,0
+0.31398573669470836,0
+0.18468193686072193,0
+0.006811658858705459,0
+0.05870278911356021,0
+0.0018815517436240286,0
+0.05993259459754009,0
+0.6608676317281512,0
+0.37702738554041076,0
+0.15036689010287696,0
+0.05546844907998788,0
+0.017838794706156874,0
+0.003568361691032062,0
+0.057530677492518126,0
+0.09523497897732533,0
+0.01579227700938728,0
+0.00318456530904601,0
+0.0021659670875181056,0
+0.3354554980230723,0
+0.0008062985774550636,0
+0.004030235823295963,0
+0.07160732512717646,0
+0.00418777066871698,0
+0.01386879269473322,0
+0.06366944468100087,0
+0.16184230294168614,0
+0.00020040590317081867,0
+0.135747786804763,0
+0.004654425435766405,0
+0.13788571103033254,0
+0.003882426608076744,0
+0.030189031701710424,0
+0.18533514340397989,0
+0.03709720676855115,0
+0.11102534487532811,0
+0.0017929262050061872,0
+0.30835559989925226,0
+0.022396444172925828,0
+0.016376033124816843,0
+0.39279164389356624,0
+0.8437535028803242,0
+0.19242169546016513,0
+0.006596458972168204,0
+0.09712392188577104,0
+0.009595831194644685,0
+0.003988599311051876,0
+0.13389555479177961,0
+0.0388794804986734,0
+0.06809740903012154,0
+0.128660844529993,0
+0.09231298872735341,0
+0.01062525258390406,0
+1.700798110331273e-05,0
+0.16297924090431387,0
+0.14550207094320972,0
+0.0330111673231646,0
+0.4839787037964121,0
+0.005064545148416256,0
+0.1465890078908933,0
+0.0490871019231518,0
+0.07421884472474738,0
+0.009915332130412065,0
+0.2457043910519129,0
+0.19810511037985626,0
+0.1702927247974481,0
+0.002823456991372093,0
+0.21861774715379192,0
+0.07703200823204541,0
+0.04429781869704831,0
+0.009145849094443527,0
+0.04865848164764108,0
+0.1192906477523876,0
+0.023635379332966475,0
+0.0007029612654413129,0
+0.05119105621449301,0
+0.00673464640865299,0
+0.05974375239108648,0
+0.027527725505261603,0
+0.22307616831410662,0
+0.024882130031574485,0
+0.014437003277869542,0
+0.0016672792795034495,0
+0.38299410327733646,0
+0.12308443598781257,0
+0.07741033873444003,0
+0.0011074803835075745,0
+0.2531492051427999,0
+0.027369057234637912,0
+0.05326265600733658,0
+0.09584879131444769,0
+0.25748523073913254,0
+0.08738279973202664,0
+0.002818796451383096,0
+0.16327946749731514,0
+0.005777610144637057,0
+0.087572608598552,0
+0.040978518415692014,0
+0.23141870098443795,0
+0.00017702813371851925,0
+0.034313767496418436,0
+0.0557519969944645,0
+0.09494145758574357,0
+0.016896164257203913,0
+6.877812105151272e-05,0
+0.26391036336570556,0
+0.26673732106294185,0
+0.0006854329274532634,0
+0.0005270789046450069,0
+0.17540579530718137,0
+0.8686427970523963,0
+0.4784524494367698,0
+0.23920799034838464,0
+0.007623416499377376,0
+0.002126676470952729,0
+0.0005775266786689265,0
+0.006913801928196364,0
+0.13228115217488806,0
+0.12181895470528818,0
+0.06454232531133677,0
+0.015913935679643776,0
+0.34571014150860513,0
+0.36182882397330046,0
+0.002382717438285392,0
+0.0037334037886177875,0
+0.0027907576233139604,0
+0.865196575591859,0
+0.0938919174477002,0
+0.15173061391698514,0
+0.040391901171202456,0
+0.13010584872844014,0
+0.0022699873874201504,0
+0.06640623610520446,0
+0.011718718883545884,0
+0.0115501270422942,0
+0.032382267815758606,0
+0.02546284176271294,0
+0.011932328669476962,0
+0.03900878626974395,0
+0.036272555189321855,0
+0.016729310391752523,0
+0.05102160003117612,0
+0.025332872093316788,0
+0.008844982809951062,0
+0.1560328739987174,0
+0.04630889010192355,0
+0.14731314041634652,0
+0.1661475721514595,0
+0.21467925708670954,0
+0.03224686252727939,0
+0.20616587476357462,0
+4.423243697338344e-05,0
+0.2895046107928419,0
+0.07590712383746583,0
+0.08021238704309605,0
+0.022903378279493652,0
+0.0031067582546139326,0
+0.29341520489355577,0
+0.11917261767729603,0
+0.025184629259221845,0
+0.08845216741733321,0
+0.03869898329737558,0
+0.36902733993835474,0
+0.008709463362302852,0
+0.0921029917089872,0
+0.019268760292509214,0
+0.039139063754272625,0
+0.22902063505690454,0
+0.06465671795458543,0
+0.02320710829614742,0
+4.879834599545338e-06,0
+0.07917163487685917,0
+0.001622980841243767,0
+0.009313289774582737,0
+0.1392462967958262,0
+0.1536400565710955,0
+0.007209591953067106,0
+0.10646077134328788,0
+0.07577745758135099,0
+0.01400187962562452,0
+0.14750938321842472,0
+0.1582811788545123,0
+0.019213162776567195,0
+0.25815014077159903,0
+0.001766181080970767,0
+0.02149306479692886,0
+0.20523121220651927,0
+0.006519494271812198,0
+0.49739512768846944,0
+0.1149423170212807,0
+0.0017295332659931456,0
+0.09546634255045378,0
+0.03869613966531037,0
+0.21919072249739774,0
+0.0861904790909523,0
+0.12542247884746666,0
+0.0734443938454312,0
+0.04473897178584092,0
+0.05206157496282131,0
+0.013016381181431605,0
+0.00566073503807613,0
+0.25511466486112155,0
+0.005853115202586015,0
+0.0026228484226118527,0
+0.031212010688168906,0
+0.42542454718754674,0
+0.009730201508024009,0
+0.3468262640131813,0
+0.10012060398506621,0
+0.016603058730643473,0
+0.01576501702244893,0
+0.0264463450107895,0
+0.2140491052428593,0
+0.015609685600659135,0
+0.0003863362380346156,0
+0.29383064486498334,0
+0.247884792769822,0
+0.008174286720416545,0
+0.010599000234620005,0
+0.0012045377050165103,0
+0.02563542389650298,0
+0.10399982417868543,0
+0.07197644988109629,0
+0.04138382829031226,0
+0.00030508312502308416,0
+0.00022402398307593937,0
+0.007497991236035879,0
+0.012224201449104254,0
+4.644467870604055e-05,0
+0.21435148354790795,0
+0.10299388803900118,0
+0.06757798631247248,0
+0.26337877122540176,0
+0.1891281933620043,0
+0.23369409060843566,0
+0.10319028360698765,0
+0.009970945359288805,0
+0.011047371640619709,0
+0.36380534390410363,0
+0.2981254915326753,0
+0.002130022082462836,0
+0.0437994288006549,0
+0.18961739931321486,0
+0.02025082590582868,0
+0.0032338883019831432,0
+0.004338384233315886,0
+0.5918676089170786,0
+3.514233024490384e-05,0
+0.048859660128468464,0
+0.009232785572426978,0
+0.004776164229969834,0
+0.024190075677787186,0
+0.48530824417938867,0
+0.243142875482734,0
+0.08351051231991552,0
+0.010125511206905698,0
+0.009447548793353265,0
+0.0007094706946693472,0
+0.010056089803001057,0
+0.17899270850097618,0
+0.18217294070795043,0
+0.009982015089066473,0
+0.2863738148075634,0
+0.0023567161715750827,0
+0.0939753367721019,0
+0.03235169929432698,0
+0.004218367704743681,0
+0.11368811496558873,0
+0.18856182096185137,0
+0.1342010612613245,0
+0.11761752122050725,0
+0.001099434047970579,0
+0.009418843750830316,0
+0.0184073469335703,0
+0.31615887342950566,0
+0.059841908744113395,0
+2.8178738360673516e-05,0
+0.01820448676542771,0
+0.22471490315678855,0
+0.006429471909456716,0
+0.010897345896142904,0
+0.06223630974159342,0
+0.04376598456325612,0
+0.043022320690506266,0
+0.010968041481170936,0
+0.0013507307488747511,0
+0.9521416436775688,0
+0.07207456669040489,0
+0.001955687259429817,0
+1.767328254878698e-07,0
+0.01040071135513303,0
+0.0009652799181561596,0
+0.009377562707612436,0
+8.752014440158577e-06,0
+0.007542891831683299,0
+0.016075183585257023,0
+0.00018975822052535055,0
+0.028503613709210757,0
+0.10200159765009309,0
+0.4433171929595181,0
+0.03805472238686124,0
+0.039585521398340456,0
+0.16974450448023426,0
+0.08822128149583332,0
+0.212466755194228,0
+0.0003221317467135104,0
+0.02860885911374348,0
+0.6955588286853498,0
+0.1525674758024659,0
+0.04937106323584201,0
+0.016940942720563394,0
+0.10962575300570492,0
+0.00022877502005702043,0
+0.05946914304865562,0
+0.02808456577012632,0
+0.35458584712339125,0
+0.02939108431106697,0
+0.06569719461493942,0
+0.0006523858902279182,0
+0.012586629822461884,0
+0.029800094583658548,0
+0.1571924366118052,0
+0.031088637528752176,0
+0.021267342438952473,0
+0.10612434616898939,0
+0.00018870805538892923,0
+0.11992078291942103,0
+0.0021416582355658085,0
+0.006148977343316679,0
+0.17205734120567706,0
+0.06907320193831468,0
+0.01018235328940863,0
+0.04495158631498826,0
+0.06330502818103947,0
+0.021387746737785752,0
+0.4245239845034707,0
+0.0018420765760824164,0
+0.12265271025777458,0
+0.1826111458579574,0
+0.053400380021565386,0
+0.0350195998653358,0
+0.22517495976923324,0
+0.0010248137277667402,0
+0.18562049836876052,0
+0.0026077775661175417,0
+0.009430805884462882,0
+0.0598689105790026,0
+0.061928058616665574,0
+0.06513075659369952,0
+0.3163441998100113,0
+0.33446891639203996,0
+0.0002771117391203273,0
+0.07952258620168914,0
+0.1631704832435237,0
+0.0026173489228532524,0
+0.12434272871621607,0
+0.23899291265331857,0
+0.4610925934355078,0
+0.004783737086991668,0
+0.1159493229910155,0
+0.04846334986985285,0
+0.08160198437589397,0
+0.009372410672634515,0
+0.10913522442374032,0
+0.10573273459709871,0
+0.022638883198308955,0
+0.03311064158658177,0
+6.730963123926338e-05,0
+0.31348361383749107,0
+0.01792805021624649,0
+0.001972730897239731,0
+0.15227361613781354,0
+0.0315546375902762,0
+0.05270607997952209,0
+0.05261788992774615,0
+0.22060195984665665,0
+0.23194265252481822,0
+5.85648953288603e-05,0
+0.011864891870908575,0
+0.2066819129905674,0
+0.017428464864598484,0
+0.09912718365044693,0
+0.4559675782739826,0
+0.1681179704453229,0
+0.6285323213633893,0
+0.038480840739480604,0
+0.019359720939210043,0
+0.003438493085425014,0
+0.06229695450245004,0
+0.005162309946835589,0
+9.094655438968358e-06,0
+0.042846906717620016,0
+0.1396436762907059,0
+0.09051341203689947,0
+0.02413368101873927,0
+0.04627311440577027,0
+0.22060950183897968,0
+0.5490991171425226,0
+0.9181609596029805,0
+0.16503190578845667,0
+0.028591334808318963,0
+0.009313078885069432,0
+0.0966993908287369,0
+0.00905564740504444,0
+0.0036924863783036705,0
+0.011330833426040634,0
+0.003174640220526935,0
+0.5374491285204381,0
+0.004615323400710965,0
+0.6287520579431174,0
+0.1626620436857676,0
+0.0025928484580286532,0
+0.00013954112534242413,0
+0.00992890856643353,0
+0.0035204328386551262,0
+0.23686451112867984,0
+3.053612327907631e-05,0
+0.012305787252324962,0
+0.132910037851284,0
+0.11556192779041914,0
+0.1265023981870888,0
+0.010843044168307971,0
+0.013276592739913542,0
+0.17435106396065794,0
+0.04037392680468693,0
+0.41129149635829726,0
+0.06887790037269988,0
+0.05777827138914504,0
+0.0967029561588461,0
+0.00305604579113448,0
+0.24461784525025415,0
+0.17133785312862287,0
+0.03665920379018785,0
+0.003669369061696915,0
+6.912724408280446e-05,0
+0.025682311206451553,0
+0.002665714338519994,0
+0.006275552947648333,0
+0.0034620979940291363,0
+0.07945614479341616,0
+0.027030975993447677,0
+0.01437632583538884,0
+0.179400235359011,0
+0.012410487616025558,0
+0.03413277560799729,0
+0.05741384898087411,0
+0.10926906159480812,0
+0.029719824486921915,0
+0.34516178172507506,0
+3.2079046034127135e-06,0
+0.01325832496138478,0
+0.21202692480644286,0
+0.0013357320345445335,0
+0.032955788137608535,0
+0.010600898670808814,0
+0.016097856430667273,0
+0.15407411692849388,0
+0.0034182255033697977,0
+0.017611507570368428,0
+0.00022167827153277017,0
+0.017026320695078104,0
+0.10845958114804863,0
+0.2885999428459055,0
+0.29861363416009024,0
+0.04271500473297945,0
+0.00037360693476264697,0
+0.012508984962064536,0
+0.008352087163700565,0
+0.008885763546291506,0
+0.005424638041463828,0
+0.023095990892517466,0
+0.01883745499497912,0
+0.005023143797869827,0
+0.08379473274134423,0
+0.09997969346951054,0
+0.015253958776276194,0
+0.003933951908740111,0
+0.5204567575371235,0
+0.054959740047483496,0
+0.6047970012720343,0
+0.03907892483441501,0
+0.021207815537967467,0
+0.10501265976289342,0
+0.10269973448295737,0
+0.0026894753277372837,0
+0.38919123988341847,0
+0.12577337026673857,0
+0.003325909261266374,0
+0.01880811064134641,0
+7.160714295057281e-05,0
+0.006572644638427189,0
+0.0018214232607257797,0
+0.0564432363867548,0
+0.06594311459255335,0
+0.07462111403480266,0
+0.08343635722455948,0
+0.0006913718997702521,0
+0.0013155572590891982,0
+0.11189238651077564,0
+0.23096375668709307,0
+0.044426864672868834,0
+0.2716573185847243,0
+0.01081339247889435,0
+0.18368420224825097,0
+0.015780602548129435,0
+0.09697210320989273,0
+0.04186989351744845,0
+0.14805210452469664,0
+0.018355315381917325,0
+0.0035647547631508848,0
+0.0075698621709483355,0
+0.09014771391984881,0
+0.014553238330212775,0
+0.0685596122580895,0
+0.023125567076610322,0
+0.017012315336956935,0
+0.02201709005150386,0
+0.2909258734687151,0
+0.01331009892129971,0
+0.03823499959489329,0
+0.141237623338868,0
+0.006894632766570058,0
+0.10364547012719597,0
+0.08717055043072999,0
+0.03267499493922327,0
+0.03824600795779039,0
+0.19796555740213573,0
+0.17189244096015718,0
+0.026749932453708953,0
+0.17847525087699664,0
+0.4103005342611995,0
+0.18977893385918745,0
+0.2870106811079908,0
+0.01617058625318042,0
+0.04026243841957388,0
+0.03299631048410882,0
+0.07766538739029696,0
+0.4838552791187548,0
+0.14352154310496607,0
+0.015836515705618025,0
+0.13673640308376334,0
+0.0615191720268445,0
+0.030697768611572113,0
+0.32231443491006645,0
+0.013240315325086502,0
+0.08333207370761422,0
+0.11618862493491963,0
+0.033584388172657194,0
+0.19097982612564765,0
+0.039192021122063304,0
+0.007379894705807294,0
+0.026288373481079985,0
+0.018024571231412136,0
+0.1702214481985028,0
+0.5810674100698586,0
+0.1456272401219987,0
+0.11758593379360457,0
+0.024951719883950493,0
+0.13717988887439397,0
+0.0030205235531529386,0
+0.00031020743096029914,0
+1.9199268670201558e-06,0
+2.0890463059365637e-05,0
+0.10270816957260157,0
+0.6114210860545428,0
+0.09621990748697651,0
+0.06388786513638696,0
+0.015503968892789086,0
+0.43576158522597463,0
+0.0002558044483520803,0
+0.12890018094415873,0
+0.023391345071384257,0
+0.10707320387105726,0
+0.005336867942612152,0
+0.11828553313795251,0
+0.07891630782992724,0
+0.10705306197207447,0
+0.02520992727156024,0
+0.10595590683135772,0
+0.014811820743318943,0
+0.710905339992846,0
+0.4261160233356877,0
+0.0037652480907197916,0
+0.012521523359444547,0
+0.002470651303852455,0
+0.11113217916084746,0
+0.2879135986958495,0
+0.4276819518432247,0
+0.2271700989524154,0
+0.005935096802500155,0
+0.09029125933187457,0
+0.00011911443430455845,0
+0.01147492975203014,0
+0.1307944712481729,0
+0.3279893852773915,0
+0.002210072265492834,0
+0.050071996736848014,0
+0.01897447415832256,0
+0.01709490873872866,0
+0.04095093432123177,0
+0.0205147230799408,0
+0.0020118732676919927,0
+0.0011638790056055274,0
+0.037881057054182404,0
+0.002294358705731113,0
+2.693148142249058e-08,0
+0.4539141192064425,0
+0.03712566239550867,0
+0.07261297475133835,0
+0.08548842898852856,0
+0.0008867179942387704,0
+0.0025618427018055455,0
+0.30542303231267154,0
+0.014301471591053227,0
+0.033340487629525295,0
+0.0018216383121200622,0
+0.409105101197655,0
+0.12608970072578746,0
+0.06780027033923605,0
+0.10126289297798104,0
+0.07038308010944444,0
+0.03248737354011123,0
+0.0619442052344575,0
+0.00827521834158675,0
+0.07208909460938752,0
+0.0011751426213853907,0
+0.0012704375560556188,0
+0.001339007181943581,0
+0.012332503071064005,0
+0.15538222356522208,0
+0.06223291840281281,0
+0.025043969645395868,0
+0.04782364333027638,0
+0.3202220584735393,0
+0.002236291918957715,0
+0.2154025526261975,0
+0.013148114348621943,0
+0.053065252778249195,0
+0.004263115522231268,0
+0.665787716146957,0
+0.16811676079286253,0
+0.3579000657687307,0
+0.14940409642179936,0
+0.06755091242092351,0
+0.05602561807459768,0
+0.019273160489231916,0
+8.462523915446596e-05,0
+0.030852374934778763,0
+0.016688741213454025,0
+0.019633015857394284,0
+0.05451747676468995,0
+0.12101124819225648,0
+0.0011918137443737065,0
+1.7712025729246817e-05,0
+0.0334246730181978,0
+0.0005581891338800584,0
+0.022900770942984598,0
+0.014056468510081965,0
+0.03581497224876864,0
+0.13892991068326274,0
+0.12410899615674162,0
+0.026759500362162698,0
+0.03013654482942066,0
+0.2634763105371433,0
+0.28440185193824064,0
+0.06362701517681932,0
+0.16571394005183743,0
+0.00500789483623041,0
+0.03387521436664734,0
+0.16540768403129902,0
+0.03895444606375337,0
+0.11973611590858117,0
+0.2190702886149271,0
+0.15454057783927608,0
+0.09147516623799956,0
+0.020417945148593065,0
+0.027158839902001047,0
+0.02652314323190591,0
+0.19142234710255535,0
+0.001673725785296041,0
+0.006789995694482245,0
+0.09397082826525315,0
+0.1107573840361002,0
+0.004209474353074483,0
+0.25094428093687166,0
+0.0007285486269277433,0
+0.04095392064537957,0
+0.18445967352158338,0
+0.02297424895030371,0
+0.002929655926830526,0
+0.048090713800582365,0
+0.29703639627608686,0
+0.0026644670507656714,0
+0.29759769652548995,0
+0.11465963381226447,0
+0.047028490770944925,0
+0.07018672902200415,0
+0.15684328961923388,0
+0.20358122249837368,0
+0.10465151920406987,0
+0.029894105563377286,0
+0.03289461234601609,0
+0.0057873572590404114,0
+0.0033359156515334262,0
+0.4332871099006647,0
+0.17530805274093492,0
+0.4008767751900229,0
+0.2743718427236553,0
+0.01586756728725051,0
+0.025104482775060832,0
+0.001890122502518965,0
+0.035184317714869136,0
+0.014604951937605904,0
+0.012273379074002921,0
+0.0571072401428165,0
+0.03275553201358914,0
+9.273739406329557e-06,0
+0.0006986977915676691,0
+0.017510250444328003,0
+0.012783530971695822,0
+0.0072600472754339685,0
+0.001217976324119906,0
+0.5487684783379848,0
+0.0017980865681195615,0
+0.0006988968149433307,0
+0.01734438127565454,0
+0.4392488501214354,0
+0.0007245411284802038,0
+0.03218896437188826,0
+0.021905723022861145,0
+0.08937530163182619,0
+0.07295895938690614,0
+0.08712883326192652,0
+0.0016585685962264194,0
+0.0035890060464101926,0
+0.004110044216184187,0
+0.003393360216324276,0
+0.00801636114532275,0
+0.41715766477257554,0
+2.756065601471545e-06,0
+0.01037869444776081,0
+0.029993704892865236,0
+0.004336838112477695,0
+0.14096128224756757,0
+0.24030874970886162,0
+0.00027878419250944043,0
+0.12487250454994318,0
+0.0978149912958626,0
+0.2501940453793484,0
+0.072307827895069,0
+0.0651660201966009,0
+0.2153207257730149,0
+0.012931313243206403,0
+0.5635473691470596,0
+0.10328903394877183,0
+0.05336506201410336,0
+0.02209893449953932,0
+0.0031764158967287613,0
+5.356108381594633e-06,0
+0.08657503900027372,0
+0.01989556159904312,0
+0.3004911318905655,0
+0.008501953226287027,0
+0.3890232417685894,0
+0.00386310455483922,0
+0.10362013815352374,0
+0.006310343388514004,0
+0.1428956410744074,0
+0.07532161491295873,0
+0.17107735401598045,0
+0.004279896212876616,0
+0.29678482585843613,0
+0.13604029776613233,0
+0.008275722892881494,0
+9.02142077867024e-05,0
+0.12835330250016266,0
+0.2474053354670506,0
+0.118877943444527,0
+0.12857963868774128,0
+0.01254399892378254,0
+0.027172658287503336,0
+0.070238509804602,0
+0.40865872583584106,0
+0.09661439509799234,0
+3.621453808762361e-05,0
+0.11370728977677665,0
+0.9999576225469046,0
+2.049575891195088e-05,0
+0.32832646557055606,0
+0.22465038956334368,0
+0.08422014945381032,0
+0.12034451088611893,0
+0.08400044201123633,0
+0.01865540403319529,0
+0.09020890772760361,0
+0.1546527252573254,0
+0.12934147861055018,0
+0.11787752199369883,0
+0.033720948153718955,0
+0.2580856765513321,0
+0.027416150043664444,0
+1.846787668177602e-05,0
+0.21508113771396933,0
+0.010935091078476112,0
+0.20632373832492582,0
+0.0015180021976888855,0
+0.19185038829294274,0
+0.048002083601813,0
+0.1406469625548104,0
+0.0009142457140069032,0
+0.006132766519005453,0
+0.18597020924136135,0
+0.1596870999712266,0
+0.12810790756252927,0
+0.0057552598612900545,0
+0.08120242519470694,0
+0.002447759329513948,0
+0.0816199607613133,0
+0.14313788097789654,0
+0.004926652816913084,0
+0.007769315486932925,0
+0.11434827790720928,0
+0.4099747396689294,0
+0.47987436358168595,0
+0.038947473200962986,0
+0.08427242177574776,0
+0.013905097949533651,0
+0.30627736104344405,0
+0.00033055792241245966,0
+0.026965531824613725,0
+0.023979696211725788,0
+0.22204635986566873,0
+0.15328835898299772,0
+0.09759513440625214,0
+0.06094334921217951,0
+0.0954532929611953,0
+0.15002998503907322,0
+0.02753049137261494,0
+0.00020519198435578687,0
+0.03721063052839018,0
+0.3252700071775518,0
+0.0316532592180324,0
+0.2754190082265435,0
+0.07958185308429572,0
+0.07286300440447276,0
+0.017514348531716056,0
+0.003168685854927792,0
+0.0011825190200375874,0
+0.2462843943383955,0
+0.3899565784718348,0
+0.1224582123165183,0
+0.0017018840174172988,0
+0.0017636457890853256,0
+0.0015528812405063961,0
+0.20343966898659444,0
+0.044063473071914945,0
+0.03136357186961464,0
+9.013719851413645e-05,0
+0.5924434379363511,0
+0.182095781202381,0
+0.07599331289834284,0
+0.030431260460449888,0
+0.0006536474853362193,0
+0.19766280500023345,0
+0.12345938517616359,0
+0.22674918548158168,0
+1.769164140944297e-05,0
+0.010282587830764673,0
+0.06111066565065434,0
+0.07192975708307582,0
+0.17932204061139145,0
+0.10708239499264396,0
+0.056981728713409244,0
+0.001515657647144243,0
+0.20438936167091573,0
+0.07395880232923027,0
+0.0014853122178624906,0
+0.36654919670059527,0
+0.04667995873302157,0
+0.04497658167665424,0
+0.0365416670326811,0
+0.16742773202034025,0
+0.023188201662271257,0
+0.1100688298321009,0
+0.06396271903635595,0
+0.0196882490985344,0
+0.0002212534744622157,0
+0.032897972736408085,0
+0.0005720697317089723,0
+0.02851371892312688,0
+0.08037567728067016,0
+0.1007577779157088,0
+0.06467905356924403,0
+0.18682123978161622,0
+0.0010977472674778927,0
+
+0.05510130762059673,0
+0.0024992902475185494,0
+0.05199623310349373,0
+0.30350662928138716,0
+0.009209132392153038,0
+0.04713141039732058,0
+0.06407690411503006,0
+0.20983137151776496,0
+0.22871360394294152,0
+0.33473984298360204,0
+0.12938177767125095,0
+0.1967029861267577,0
+0.19675006100569017,0
+0.24594122806147573,0
+0.0017857395453924926,0
+0.00962681651321255,0
+0.0037885302464279597,0
+1.4399186178504517e-05,0
+0.08278207440561056,0
+0.11745878007822934,0
+0.029021216398082122,0
+0.11037423349175775,0
+0.0005595289704281495,0
+0.07568729649053409,0
+0.1902425641096958,0
+0.01645767824855439,0
+0.023188415851575935,0
+0.013449109794587485,0
+0.001184523376106725,0
+0.0024228770859687078,0
+0.09614441411894983,0
+0.0021087390123646567,0
+2.0124463743098927e-05,0
+6.4161985341797764e-06,0
+0.3021275823680744,0
+0.052781709337979286,0
+0.63890977138859,0
+0.11485138197898895,0
+0.31098383375478994,0
+0.1541089527888184,0
+0.19433178079908348,0
+0.04398059644194245,0
+0.11375712821733286,0
+0.20688115192893827,0
+0.011501544951809373,0
+0.3851074009793772,0
+0.05417327095258877,0
+0.004227909240222257,0
+0.009505328883454242,0
+0.02887599508314464,0
+0.02539042462349852,0
+0.025222794458330217,0
+0.09181022120836625,0
+0.32766670285290694,0
+0.00872329113896481,0
+0.007242816760567305,0
+0.06715600189296922,0
+0.0026763429961377348,0
+0.1391344562977736,0
+0.0005577319844612615,0
+0.023838008126637115,0
+0.016220574661948414,0
+0.002499518008564111,0
+0.015384421872272175,0
+0.0005899992610986386,0
+0.20693427474092713,0
+0.03757632354587532,0
+0.02926138683346773,0
+0.0755574491056178,0
+0.09690404084628382,0
+0.0804921454637689,0
+0.18902504442873974,0
+0.1901319338731491,0
+0.01593596729499298,0
+0.45032583672047155,0
+0.21226835549576822,0
+0.06475476486099349,0
+0.0569308777677953,0
+0.0923285209335573,0
+0.057626513289753045,0
+0.03584085106943275,0
+0.310372357670507,0
+0.3157209887673856,0
+0.7306113310692637,0
+0.17216225079803193,0
+0.0045804632791131205,0
+0.013121853118941238,0
+0.12240738001110667,0
+0.015516272561783877,0
+0.03805825871971311,0
+0.0552652573675512,0
+0.0020304338431325194,0
+0.0022273006642439985,0
+0.060696077878780105,0
+0.08703466721427358,0
+0.03188060049055241,0
+0.03656226998752609,0
+0.0012741283422162111,0
+0.11510520013417011,0
+0.07313847868479409,0
+0.18440777188865637,0
+0.027413722131086293,0
+0.1637050697568488,0
+0.02200703123956925,0
+0.06836412344084725,0
+0.026004576042795345,0
+0.19716831205983115,0
+0.010053914025624387,0
+0.0002015252496107733,0
+0.7970945258784451,0
+0.010214056124563688,0
+0.05463658559290389,0
+0.010470215917126423,0
+0.04770410921208603,0
+0.014389061576758216,0
+0.012158461674915626,0
+0.0670799736777263,0
+0.010117426408894046,0
+0.1093631325798046,0
+0.6795115966536046,0
+0.00015047251884465804,0
+0.40353430064394863,0
+0.1117482903649382,0
+0.12050171359740718,0
+0.022407504701602778,0
+3.354095566992747e-05,0
+0.02817532751979319,0
+0.23479550583410264,0
+0.028532129188789473,0
+1.4893897223141648e-05,0
+0.332535670918932,0
+0.010314678867778659,0
+0.021157783626195074,0
+0.0009232463128742742,0
+0.04042225611857554,0
+0.0015396468189899724,0
+0.4007965605253322,0
+0.01815980579974897,0
+0.007145358129249234,0
+0.0026239434153745495,0
+0.40266109925988236,0
+0.004656244366566819,0
+0.14165150665796214,0
+0.19159225760688958,0
+0.32695690368459046,0
+0.05593879242604012,0
+0.07860520091923943,0
+0.016145669263593426,0
+2.381515458182722e-05,0
+0.4118930975597719,0
+0.03862724325651774,0
+0.00013874067395038385,0
+0.25204424661159097,0
+0.04781090381163138,0
+0.04551063872284104,0
+0.002172935966474395,0
+0.005352953675955507,0
+0.0725519699084733,0
+0.08662340241223729,0
+5.80317078557367e-05,0
+0.7262054491455847,0
+1.927176985043784e-05,0
+0.05065287721778696,0
+0.2977594000126277,0
+0.28603636279753675,0
+0.13332030752998597,0
+0.12957071506488874,0
+0.008984003987397928,0
+0.09246200269277231,0
+0.055203831079532154,0
+0.02656547169466275,0
+0.05955523677184203,0
+0.010855879598495578,0
+0.00016778560392054331,0
+0.05928178902954454,0
+0.09143768231288067,0
+0.12430660571244748,0
+7.293462501422766e-05,0
+0.06457627313685835,0
+0.00589588387877399,0
+0.11830788078867838,0
+0.010955150429511248,0
+0.5921198024095413,0
+0.20506722592551432,0
+0.03398370789630042,0
+0.1861863619493792,0
+0.2082123613648748,0
+0.030989213138756133,0
+0.09197654930056448,0
+0.13189539762382713,0
+0.09714258079022745,0
+0.11052695352516248,0
+0.0006146002495071348,0
+0.026192240968406437,0
+0.013522831863115117,0
+0.10239621277578632,0
+0.05743530755781127,0
+0.0849043001430269,0
+0.16419404264817145,0
+0.009412637949098685,0
+0.00029352101522283426,0
+0.19008635730720028,0
+0.035827438087083635,0
+0.10406727007688554,0
+0.16398052640031946,0
+0.027266446381834585,0
+0.013289451918967585,0
+0.003016118701404092,0
+0.07945254782496317,0
+0.14004191183182374,0
+0.0036066981138259957,0
+0.3675004792059845,0
+0.20194623580221766,0
+0.19870797275424676,0
+0.010109142294904613,0
+0.018216849588406366,0
+0.13713332855739,0
+0.12921454755845216,0
+0.18299562119178794,0
+0.07585624416274685,0
+0.3699697377732637,0
+0.09309545351715874,0
+0.09943987222350367,0
+0.005208769152490848,0
+0.375831076358221,0
+0.012700126404667214,0
+0.009405489493746488,0
+0.0026024066482893604,0
+0.017702084969974205,0
+0.0024108374075455237,0
+0.09165998039591261,0
+0.006284276820702535,0
+0.015097268078945417,0
+0.049322471794150786,0
+0.009097161105419,0
+0.0006930136989533435,0
+0.03106093474813827,0
+0.009831142634546583,0
+0.07474675124196115,0
+0.05294140192075021,0
+0.10045268755080723,0
+0.18980815090173458,0
+0.02853758915718812,0
+0.02826674438457989,0
+0.13910954189407626,0
+0.022009400498942674,0
+0.302377772470363,0
+0.0011546070722792971,0
+0.02284313335405582,0
+0.002881054676097675,0
+0.015283622799853399,0
+0.0031648829195172106,0
+0.0005522998430353614,0
+0.0052021567033474405,0
+0.14222042283352507,0
+0.03461748276283039,0
+0.06613555691791431,0
+0.0022738469516820612,0
+0.15641015661666186,0
+0.05421922230230064,0
+0.0035819519533877263,0
+0.336215977850861,0
+0.0032862986813033445,0
+0.195597269855619,0
+0.12345744076851084,0
+0.004061867878167315,0
+0.01875081558509668,0
+0.111284383668901,0
+0.16662179453357054,0
+0.4188764934919858,0
+0.08858833958760665,0
+0.011711014998382863,0
+0.28601227763067105,0
+0.0005061467494126149,0
+0.029924462405162285,0
+7.998631542705282e-05,0
+0.011650801197309069,0
+0.22260509979029952,0
+0.009266763761697376,0
+0.03602082756269596,0
+0.20123839101223612,0
+0.015507133820372878,0
+0.006073493657173966,0
+4.3032362365159326e-05,0
+0.0006650623825304252,0
+0.12739808701570704,0
+0.1652054528406381,0
+0.06906150904492027,0
+0.003544305748244833,0
+0.0272245935039493,0
+0.12234784691012142,0
+0.22319475220426482,0
+0.23502166870012803,0
+0.00525158877971971,0
+0.011242762864150409,0
+0.08627018972701032,0
+1.2795676654092524e-05,0
+0.25897121905201026,0
+0.23286458718623232,0
+0.14499895947541847,0
+0.0002558143471951447,0
+0.07802695243507805,0
+0.009075246644838391,0
+0.0031815112034560464,0
+0.24723452043251687,0
+0.02862912468411487,0
+0.033922129608975844,0
+0.008761684585784324,0
+0.0037464471353046056,0
+0.17971498733607869,0
+0.24049157443848118,0
+0.21507248429736175,0
+0.03191470733937527,0
+0.12149990064282068,0
+0.02244183911696785,0
+0.01422581948646949,0
+0.0005291523439237313,0
+0.012228052551949175,0
+0.07525766129592354,0
+0.06636090626309052,0
+0.2948690959830014,0
+0.5697043347243211,0
+0.28378929070293324,0
+0.09337495140479275,0
+0.6609716312540667,0
+0.18692768988154884,0
+0.20806999309372495,0
+0.0011711200729839877,0
+0.023559407583915056,0
+0.08005747894290947,0
+0.035353030150218775,0
+0.016478641507464167,0
+0.07464387865415466,0
+0.0007743162595772998,0
+0.2765188836587635,0
+0.7523436267083766,0
+0.020127786394201257,0
+0.011400015856637902,0
+0.030411014282238292,0
+0.04497640392843171,0
+0.029848156659654474,0
+0.08637061396417361,0
+0.3286245981867496,0
+0.053647841777029484,0
+0.34073911103675236,0
+0.006174156051120696,0
+0.40794392147133046,0
+0.07732715303000536,0
+0.06328329741191314,0
+0.06938032477091204,0
+0.0035324564466539038,0
+0.026458633369570002,0
+0.07064809949039821,0
+0.03257946547555722,0
+5.952157920624077e-05,0
+0.10790053517962672,0
+0.0001220496131286547,0
+0.009712570677630733,0
+0.06260396129568317,0
+0.015474605188124135,0
+0.0028396866196816486,0
+0.16261886830911532,0
+0.022567056799937948,0
+0.05788855894289131,0
+0.10647121785928651,0
+0.13932842115366223,0
+0.05127162793866906,0
+0.23315617431692187,0
+0.030587841970980207,0
+0.10969745437610834,0
+0.03781816663444516,0
+0.0526758103137116,0
+0.24313058911236257,0
+0.0020965186084557254,0
+0.187790203955937,0
+0.006186991326162351,0
+0.0017177132608912353,0
+0.006209099830546074,0
+0.10101182321360222,0
+0.0045869879952196175,0
+0.054379959553943244,0
+0.3708615816961771,0
+0.05197191013579722,0
+0.0007958997231652144,0
+0.00576492165117136,0
+0.036621564809308685,0
+0.02380906194336944,0
+0.5270051699003823,0
+0.13695086851559393,0
+0.0018272763790666083,0
+0.08672725615167344,0
+0.016220614291455143,0
+0.13301019472699177,0
+0.13625276925435298,0
+0.14021623317979381,0
+0.07026881772104368,0
+0.07654752662734679,0
+0.03742722936232752,0
+0.3457369663295632,0
+0.09985709960484929,0
+0.2933651409876806,0
+0.015403355772508665,0
+0.15303120880378815,0
+0.4065025198396823,0
+0.0018898468211961308,0
+0.45594080165852163,0
+0.1819087133288615,0
+0.0026401971483842783,0
+0.0007258035773566171,0
+0.03406600589789731,0
+0.002330594001733472,0
+0.12017162349556518,0
+0.07353294657572135,0
+0.17176707548414522,0
+0.0003028089423658517,0
+9.573152259323104e-05,0
+0.00102379146607732,0
+0.031196647619753003,0
+0.05756169940871042,0
+0.013192768418474509,0
+1.2090043668219798e-05,0
+0.039237189586209816,0
+0.13243843353159307,0
+0.027407691452678257,0
+0.007459354423763361,0
+0.024301045887748746,0
+0.030286849272356746,0
+0.13235747606414194,0
+0.05342384122620716,0
+0.006864999058023425,0
+0.22252030376144322,0
+0.012113746459808523,0
+0.14157153817334883,0
+0.2526079502623342,0
+0.013642134260986927,0
+0.07302261240572845,0
+0.019968728960460303,0
+0.11912575417675889,0
+0.039120969494431904,0
+7.641740926352153e-05,0
+0.07517969852508696,0
+0.0029948706108733703,0
+0.012755091569837479,0
+0.11835725982736851,0
+0.004858639791333405,0
+0.02863670988855898,0
+0.46902711194455726,0
+0.15176052621519986,0
+0.2720034693094346,0
+0.11256427743418802,0
+0.01874859521773462,0
+0.02093342402028654,0
+1.483318004100179e-07,0
+0.20805196770864934,0
+0.1231926181047563,0
+0.02390395951355235,0
+0.09639656930461832,0
+0.0020808168258249953,0
+0.46548849703781026,0
+0.19627464692944013,0
+0.008942612421842886,0
+0.05815400558291369,0
+0.007695436331525969,0
+0.2977230857939212,0
+0.0005400417257418083,0
+0.13399756546431615,0
+0.2236556046859235,0
+0.0018990264247464254,0
+0.16396260750781105,0
+0.024192639253910693,0
+0.039027000460178936,0
+0.0012730285193005024,0
+0.17918916430369256,0
+0.002881770591955879,0
+0.003199450797610045,0
+0.09320513009569308,0
+0.09411707035021241,0
+0.23043470273711883,0
+0.2405221435419198,0
+0.12785352769166353,0
+0.06313905891295582,0
+0.16116547760568725,0
+0.0024908615114029595,0
+0.006414717663987703,0
+0.19724577309882643,0
+0.0011568463500703685,0
+0.41562631645733916,0
+0.0005439442532913568,0
+0.20766028569388012,0
+0.009394081402286383,0
+0.34530131897154914,0
+0.20818054183086615,0
+0.18220751543833247,0
+0.06412386116880905,0
+0.03144632733542799,0
+0.00047809627265214935,0
+0.3122309168194662,0
+0.056291603674441915,0
+0.12321502798515112,0
+0.0071429301988793934,0
+0.16545028728213612,0
+0.10948002090510041,0
+0.1251904933531896,0
+0.011601605257119304,0
+0.0005690100866455365,0
+0.14903283044047141,0
+0.08709256760689041,0
+0.03256849000949919,0
+0.009145682716395804,0
+0.07273517995133295,0
+0.18531024750116742,0
+0.29976319971538595,0
+0.20870471011594088,0
+0.3459093039727056,0
+0.000974174730790783,0
+0.16935953421672725,0
+0.4052827946077218,0
+0.022817591834362577,0
+0.13990023916679195,0
+0.02188858740930754,0
+0.058318719449876155,0
+0.05664816605180765,0
+3.867293187685758e-05,0
+0.06481333152753255,0
+0.018369223357808436,0
+0.02272444361006399,0
+0.0214198981751619,0
+0.08204533396268242,0
+0.02432632137202126,0
+0.004832545147145347,0
+0.1269487496172514,0
+0.050156571646628866,0
+0.17898625603979743,0
+0.27827988568650264,0
+9.251654432749273e-05,0
+0.02665288451757522,0
+0.018614559398929285,0
+0.049976016576008205,0
+0.019324786804938997,0
+0.14495861308403282,0
+0.016220845455679693,0
+0.02956038348363439,0
+0.03971537429787258,0
+0.01596031102054027,0
+0.060678520862070776,0
+0.00825142915561912,0
+0.1406316142626037,0
+0.0033226550199798102,0
+0.21448840777454473,0
+0.05659148049019267,0
+0.04445337620143838,0
+0.0026777008279898653,0
+0.7706957828397429,0
+0.004398470623141537,0
+0.01612561079727256,0
+0.07735987433154466,0
+0.03511587707810908,0
+0.07300617262624452,0
+0.0014168488845745753,0
+0.030012088302616147,0
+0.27403263265081623,0
+0.17888700397081364,0
+0.020911126963082775,0
+0.006373489553891741,0
+0.14203318436248674,0
+0.001988996968512966,0
+0.0012200107491598723,0
+0.09024838654253266,0
+0.04987330450850317,0
+0.0002054425205434693,0
+0.10355074010912016,0
+0.048562982105809165,0
+0.10017023425357638,0
+0.029546842473413205,0
+0.12027690015339869,0
+0.016097470363460032,0
+0.24243063611503063,0
+0.001521976527529449,0
+0.004757271992188,0
+0.13817438241538907,0
+0.11860797746785734,0
+0.16571397133329863,0
+0.001036221724419265,0
+0.01137893808894071,0
+0.007538071576606212,0
+0.032744400387781994,0
+0.07915741016724505,0
+0.0055964451153089146,0
+0.021420031081027035,0
+0.04013725365857672,0
+0.003582282900035329,0
+0.00038890129040729314,0
+0.007530342741711482,0
+0.0800299942670517,0
+0.27899111917100294,0
+0.003687658663069385,0
+0.03435374507685507,0
+0.03588305889234856,0
+0.020028696583633092,0
+0.06497602468679367,0
+0.022633021468260284,0
+0.33202118026557775,0
+0.336051934920938,0
+0.02682155133121386,0
+0.05072392158732578,0
+0.06486446052293957,0
+0.01219232357869987,0
+0.008216144185322691,0
+0.00861553139214261,0
+0.23400738101481067,0
+0.20025797796180705,0
+0.0031784650786279233,0
+0.05756191125983408,0
+0.035965732733397954,0
+0.05895464774259916,0
+0.007049028232047419,0
+0.32548375287624254,0
+0.04717886832468879,0
+0.009137591541047908,0
+0.2097855276980345,0
+0.1667739709148337,0
+0.24277298150053306,0
+0.019876646702815717,0
+0.08756514805218268,0
+0.2206902071813967,0
+0.09772297671863295,0
+0.5378554421693232,0
+0.004746895477239629,0
+0.3250150822207002,0
+0.02012347355598281,0
+0.006192070198496161,0
+9.800624023770623e-05,0
+0.15663019766204722,0
+0.008574998345001712,0
+0.007222862551745229,0
+0.007482606097140745,0
+0.0004054927020815004,0
+0.002394306862810625,0
+0.11319722743526577,0
+0.00022014989430479796,0
+0.05326739525543397,0
+0.18326285098929934,0
+0.3607085530552762,0
+0.2835650481299026,0
+0.01822975312904797,0
+0.044806721064040864,0
+0.02957535238270015,0
+0.10384154027062334,0
+0.027267009027711175,0
+0.0027514570994996287,0
+0.007101570064946545,0
+0.024855430433167187,0
+0.07201929000367922,0
+0.011105416720929977,0
+0.013907672674335386,0
+0.07385241276629342,0
+0.0039037904527870204,0
+0.12077789504200272,0
+0.13835592391748347,0
+0.008222298454494932,0
+0.0018587691520803365,0
+0.033997520203808876,0
+0.2247502028062825,0
+0.10700368263171119,0
+0.23546147481780602,0
+0.005700472804265529,0
+0.043160658985384376,0
+0.037239564772357105,0
+0.4104325287011946,0
+0.010793784548487076,0
+0.0013683701707046087,0
+0.11989509369590123,0
+0.08473394675519821,0
+0.0008237570138891972,0
+0.013942714201973225,0
+0.026445142115048854,0
+0.050090604224472715,0
+0.002853566897917265,0
+0.009567230897378567,0
+0.01952016927340818,0
+0.01502884186448114,0
+0.04738030000391318,0
+0.15740591148071814,0
+0.06556358513303907,0
+0.01385656295273833,0
+0.19069536253858102,0
+0.012808610899011433,0
+0.07125224791846327,0
+0.00035759203112504823,0
+0.04874711334604732,0
+0.9813257677916815,0
+0.03606066330433139,0
+0.05561325580619886,0
+0.040954588509716186,0
+0.010875682695070426,0
+0.006291126884229746,0
+0.17189525112015341,0
+0.2157804372879884,0
+0.04706293854717671,0
+0.20539686885050865,0
+0.03841839401742008,0
+0.08029588153698809,0
+0.021917776066568334,0
+0.02257500553844347,0
+0.10219992748943436,0
+0.04921355066937188,0
+0.07114113723690164,0
+0.00015283463606748188,0
+0.006431086714802138,0
+0.02396247703072863,0
+0.23493235382646524,0
+0.00025109838298954774,0
+0.07576680375377645,0
+0.20975553016711185,0
+0.18588418793155817,0
+0.0017221507371746332,0
+0.0012898961065635575,0
+0.03096787432003878,0
+0.08205571931656416,0
+0.08824040892949389,0
+0.1506185724094247,0
+1.2754877678808303e-05,0
+0.2512352175035285,0
+0.09579097738103849,0
+0.01760183455530666,0
+0.08262737225230103,0
+0.04649570539473795,0
+0.005378007660387353,0
+0.04332481338771595,0
+0.010019072754348558,0
+0.1215570103635993,0
+0.08963143935113801,0
+0.0038625741085171438,0
+0.07083256097966298,0
+0.2642304542626219,0
+0.008649158284001483,0
+8.037273319490161e-05,0
+0.17061907313750654,0
+8.030482460116773e-05,0
+0.5960684768112069,0
+0.03472525369154304,0
+0.03324146588972614,0
+0.03287330775541476,0
+0.2930865754878803,0
+0.1328693378666026,0
+0.14130386694250083,0
+0.006773844120885668,0
+0.0011428225036155093,0
+0.13790638712512285,0
+0.21098373898266823,0
+0.1120971685964671,0
+0.05185372405882136,0
+0.0007645763607132261,0
+0.0004342895703848612,0
+0.01292943924797747,0
+0.060975435972459635,0
+0.027142038146949737,0
+0.30248537043171336,0
+0.003307486533462157,0
+0.0301962571022203,0
+0.10313983469498425,0
+0.2855157697870132,0
+0.2133659876945806,0
+0.0005277487598209129,0
+0.031247873436909553,0
+0.015200736695788333,0
+0.004404910187171528,0
+0.14238476747249712,0
+0.10873153297991671,0
+0.16370697514279622,0
+0.004958921626081024,0
+0.0012675720681445608,0
+0.2555806843502296,0
+0.24442106301517752,0
+0.0015589851236861578,0
+0.10567401398470407,0
+0.01293272431441867,0
+0.07700251598424938,0
+0.2937721022042736,0
+0.01924368809333453,0
+0.8696099858928434,0
+0.4992476017696209,0
+0.0011396969915634992,0
+0.01454872369960663,0
+0.24554517386530086,0
+0.004198881626762455,0
+0.01667572659291284,0
+0.020651289254223423,0
+0.00823813222038604,0
+0.2801494509239798,0
+0.05955028445552814,0
+0.0016736149898159125,0
+0.15450791622154708,0
+0.007604778004613041,0
+0.6630698069959128,0
+0.05946687378209552,0
+0.04170135974263782,0
+0.01917464711605103,0
+0.10543653767418652,0
+0.000600603481130923,0
+0.3071513408389114,0
+0.05589505265833812,0
+7.830449863885537e-05,0
+0.11040996671545192,0
+0.03234037425903374,0
+0.8282039416028635,0
+0.15773014883145786,0
+0.0045792256089180255,0
+0.49224764006503047,0
+0.12496876529255425,0
+0.3884613548639774,0
+0.08891637204538895,0
+0.001005813915970081,0
+0.041411602546153656,0
+0.15793837363698643,0
+0.0001972000148616314,0
+0.014302206918384594,0
+0.05873270847395114,0
+0.2123179894434446,0
+0.15387434718552984,0
+0.0071757993294753655,0
+0.25036566077570865,0
+0.27661846491601977,0
+0.3835893883438058,0
+0.03723729171035712,0
+0.003319815005808948,0
+0.019042061959632255,0
+0.05166456416793299,0
+0.49593137323716663,0
+0.34280696790105364,0
+0.049160172205037954,0
+0.0024743040724179797,0
+0.07077943403083745,0
+0.09268111416772667,0
+0.011193888876456556,0
+0.12192410663049917,0
+0.013555214379198747,0
+0.09075352805617683,0
+0.01818414062271132,0
+0.003907474463120336,0
+0.0536712678429883,0
+0.12728005466946898,0
+0.0071633321458060934,0
+0.02139954893812692,0
+0.00018765768206534115,0
+0.014089708846408122,0
+0.01999300556908817,0
+0.01893755939294629,0
+0.0063884899801678495,0
+0.15316520543255716,0
+0.45184052405331726,0
+0.01710897499435254,0
+0.01861268447132567,0
+0.1252489353672573,0
+0.0323980103875207,0
+1.6149194600710689e-06,0
+0.48142655471731277,0
+0.01933901552286608,0
+0.019580178190053785,0
+0.010235006666360773,0
+0.007388286019735046,0
+0.03441653906305487,0
+0.007932825290179874,0
+0.5562170364577763,0
+0.1614309064378355,0
+0.047664607953871584,0
+0.20287614280424573,0
+0.27093438158510874,0
+0.4501668070076715,0
+0.39734759529590596,0
+0.11068473831675438,0
+0.1191697421147776,0
+0.0004196914493060027,0
+0.0018660867865937982,0
+0.1317053670395355,0
+0.1334070399684393,0
+0.009952853890807698,0
+0.09132761139414781,0
+0.005513612754853046,0
+0.11905341642293439,0
+0.01142526392094675,0
+0.033978973236215154,0
+0.02151998880482988,0
+0.11291719106379565,0
+0.0037771226954521793,0
+0.019360946056488085,0
+0.09197345971455419,0
+0.002311254732711775,0
+0.2533750301612772,0
+0.09273461643334785,0
+0.07004472181353932,0
+0.0015098358015600902,0
+0.01096816084051509,0
+0.08486948945224519,0
+0.024206734735648487,0
+0.01450576171056939,0
+0.01379008488996144,0
+0.0008414529586098576,0
+0.01925775844204075,0
+4.456779489858597e-06,0
+0.011275699726094943,0
+0.11139222943679039,0
+0.1062916725790322,0
+0.12165463034589999,0
+0.04000051974456585,0
+0.07689591891942248,0
+0.15294332392506638,0
+0.010433158442782258,0
+0.040988599325744036,0
+0.037708847516280744,0
+0.008938006155268408,0
+0.05506750323617073,0
+0.02347722595319137,0
+0.26452590893763284,0
+0.2824318306989198,0
+0.01233690606321553,0
+0.05399024248801211,0
+0.29083524659703586,0
+0.06361803919992479,0
+9.432573481889933e-06,0
+0.010550523787310103,0
+0.060623078021697294,0
+0.15072380343680353,0
+0.8311857705952258,0
+0.028987199088828648,0
+0.1135581465269753,0
+0.05843154442472824,0
+0.0001773896353873306,0
+0.04356475733370062,0
+0.032899308920527455,0
+0.04100628286627954,0
+0.27985885502380786,0
+0.05895525927434466,0
+0.008490761650613073,0
+0.21808432513074805,0
+0.14673528184717205,0
+0.2923512534341204,0
+0.14111649211298374,0
+0.04699420283810554,0
+0.2497180441785734,0
+0.04955640827092071,0
+0.0009016954061073282,0
+0.177080717089041,0
+0.11243155550452541,0
+0.05225929036056206,0
+0.26339405982812625,0
+0.17299543042321838,0
+0.06262591379825926,0
+0.013831945881632363,0
+0.004828089867903248,0
+0.21508753870449934,0
+2.5986268960767807e-06,0
+0.0010157857518160475,0
+0.16233194317097116,0
+0.0806432062673493,0
+0.0078007811264357175,0
+0.007459794636095439,0
+0.10463435470000107,0
+0.08505436461500912,0
+0.25707070178054947,0
+0.3122101206983621,0
+0.05073269846693669,0
+0.03161707823546571,0
+0.15552188047503687,0
+0.0029082933099647437,0
+0.2989473854396,0
+0.0002227191884879542,0
+0.6457590575014743,0
+0.6506248685407859,0
+0.07218128285957245,0
+0.0006212634199082563,0
+0.0590622080361883,0
+0.01840947144991361,0
+0.053836098169009014,0
+0.0906064288809064,0
+0.004761624003716935,0
+0.003397003012499828,0
+0.032589740696246344,0
+0.11162279441408404,0
+0.024771832309757817,0
+0.00010638871160673872,0
+0.4276128470408162,0
+0.07431382692347589,0
+0.09667366959191323,0
+0.0031907674548625016,0
+0.006161311591052616,0
+0.00012479569674145305,0
+0.0033424974096723575,0
+0.021848126276096676,0
+0.11445795043902514,0
+0.006102276516546641,0
+0.0007108152830421845,0
+0.059340482649809415,0
+0.36119659565037054,0
+0.1625891870540241,0
+0.07978725092810167,0
+0.01927501489772813,0
+0.05880531386811808,0
+0.16252255559281742,0
+0.11532569448918908,0
+0.03547796053854382,0
+0.013076715593553449,0
+0.02397618578950834,0
+0.005393081535557671,0
+0.16104383664771188,0
+0.31703884457740755,0
+0.03294368091266281,0
+0.3412664120942494,0
+0.08141216745505922,0
+0.04904851126633321,0
+0.08150581300541196,0
+0.012293235241769656,0
+0.004260767009948855,0
+0.018656859322116588,0
+0.015560082544071568,0
+0.2582283393645025,0
+0.015551459102930584,0
+0.1635205655856974,0
+0.33409130943440085,0
+0.04680625943455678,0
+0.14410787949418488,0
+0.10484655449701333,0
+0.012306285992457115,0
+0.11491925680581291,0
+0.04664481860501301,0
+0.17207199652807115,0
+0.1101588742907648,0
+0.13061939073266812,0
+0.12067741854734086,0
+0.11605554943611758,0
+0.123353384279228,0
+0.059903685385476045,0
+0.021022198419021917,0
+0.2967265009938492,0
+0.16044331449156862,0
+0.12985620785647164,0
+0.033171534580439685,0
+0.002171139824603165,0
+0.0011512513982711368,0
+0.01899514414035687,0
+0.2260780563342077,0
+0.23947321628919696,0
+0.12639214676508054,0
+0.058302087692788815,0
+0.010106378678706689,0
+0.032915881018928186,0
+0.004527862538034055,0
+0.394985670723632,0
+0.03492959296814909,0
+0.009024662836984195,0
+0.07723849723129686,0
+0.4443515458241995,0
+0.0341641949136943,0
+0.00312291702260424,0
+0.04145580089838003,0
+0.0016740588837606141,0
+0.07219413920955467,0
+0.019749814312701997,0
+0.06909195312881553,0
+0.14234793105799856,0
+0.02951435461414888,0
+0.02151071647289747,0
+0.40845634798215247,0
+0.03270038743773179,0
+0.01051602836106123,0
+0.0036353406993324044,0
+0.24479341339186406,0
+0.0922524158427058,0
+0.007609949928759724,0
+0.9845348634224071,0
+0.1844780475002661,0
+0.01796192341793006,0
+0.12482945699305419,0
+0.010683034919245226,0
+0.020847242749279182,0
+0.00016485220270552923,0
+0.028022850849219804,0
+0.05374898799619021,0
+0.1146292176406802,0
+0.04416562157641582,0
+0.30785418096105965,0
+0.0003146631162551993,0
+0.0004648929109325818,0
+0.23890481629604415,0
+0.05454122176324847,0
+0.045203596556120954,0
+0.017013389378744886,0
+0.20603574229388183,0
+0.0018481014920251958,0
+0.32490143180934666,0
+0.01974100338718781,0
+0.012732184015392372,0
+0.11465529445122977,0
+0.09955282572129157,0
+0.12489161354463996,0
+0.3438434323374667,0
+0.015523303572837082,0
+0.0020783512904667847,0
+0.056130311485173924,0
+0.19763102224038523,0
+0.001198249060875464,0
+0.5324621119270102,0
+0.2306890615309814,0
+0.06311564147605987,0
+0.015044924770797741,0
+0.08151300602763097,0
+0.0034465936468811714,0
+0.013623236492299703,0
+0.028719605009823956,0
+0.11173724022281181,0
+0.015744560097943942,0
+0.2499421379441324,0
+0.0001870187246285791,0
+0.020663290531080715,0
+0.5430072842729441,0
+0.0029840663572835097,0
+0.2722338950854907,0
+0.44690199814147213,0
+0.1923825187681169,0
+0.030832234106786382,0
+0.009287052841713094,0
+0.022405120869306037,0
+0.33168491866835675,0
+0.5012859774757803,0
+0.06229897054583041,0
+0.09404341941500326,0
+0.034199757909824074,0
+0.07532639197596197,0
+0.13143082534441825,0
+0.00796334071376774,0
+0.31835157572814743,0
+0.008050473136140344,0
+0.0010360416450961988,0
+0.017499076597153124,0
+0.0006428540324816474,0
+0.06839953373093685,0
+0.08132226458112138,0
+0.006764081953170471,0
+0.029889140855852692,0
+0.004018535332289273,0
+0.06642856729991428,0
+0.005321270968147688,0
+0.04598725258722518,0
+0.08413281311078245,0
+0.15532193670225175,0
+0.004692225136728958,0
+0.005689602772778557,0
+0.0597562105195649,0
+0.008012080044500896,0
+0.0016451753025147088,0
+0.18580790246476397,0
+0.05793832477805685,0
+0.002771158964171904,0
+0.06625027699259786,0
+0.005235564749311017,0
+0.019410172082408132,0
+0.03901425394362774,0
+0.0892966684034898,0
+0.0910724715456121,0
+0.024101762987565126,0
+0.017943902547420277,0
+0.04855159879133521,0
+0.10012898264337582,0
+0.03829289952260642,0
+0.40472806886816565,0
+0.017209469318595953,0
+0.054044393330772156,0
+0.12354224851511941,0
+0.0036404605770387127,0
+0.03217751309968915,0
+0.02059347881178935,0
+0.08903264492713109,0
+0.018187698704118207,0
+0.14525624831071693,0
+0.02069199558217528,0
+0.06354451515308542,0
+0.22858159694863578,0
+0.0047785685055682856,0
+0.03606817097533001,0
+0.0008839382547077077,0
+0.06527470298942196,0
+0.0005190934203459028,0
+0.18478231756229785,0
+0.0713362717863785,0
+0.2091226729986896,0
+0.09833577689476601,0
+0.11472923252982414,0
+0.006470441660362874,0
+0.01324098144749274,0
+0.6090836327082118,0
+0.3065024669623787,0
+0.04712813310470439,0
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/tests/__init__.py b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/tests/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..c422d607982b40966f4525cb2a7db3d6523b2cd4
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/tests/__init__.py
@@ -0,0 +1,3 @@
+"""
+Unit tests for the omnibin package.
+"""
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/tests/test_metrics.py b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/tests/test_metrics.py
new file mode 100644
index 0000000000000000000000000000000000000000..ea0fa4745f5166bc970332d11c69ff7aa80fc406
--- /dev/null
+++ b/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/space/tests/test_metrics.py
@@ -0,0 +1,141 @@
+import unittest
+import os
+import pandas as pd
+import numpy as np
+from omnibin.metrics import generate_binary_classification_report
+
+class TestMetrics(unittest.TestCase):
+ @classmethod
+ def setUpClass(cls):
+ """Set up test data"""
+ # Create synthetic test data
+ np.random.seed(42)
+ n_samples = 1000
+ cls.y_true = np.random.binomial(1, 0.3, n_samples)
+ cls.y_scores = np.random.beta(2, 5, n_samples)
+
+ # Adjust scores to have some correlation with true labels
+ cls.y_scores[cls.y_true == 1] = np.random.beta(5, 2, sum(cls.y_true == 1))
+
+ # Create test output directory
+ cls.test_output_dir = "test_outputs"
+ os.makedirs(cls.test_output_dir, exist_ok=True)
+
+ def test_report_generation(self):
+ """Test the main report generation function"""
+ output_path = os.path.join(self.test_output_dir, "test_report.pdf")
+
+ # Generate report
+ result_path = generate_binary_classification_report(
+ y_true=self.y_true,
+ y_scores=self.y_scores,
+ output_path=output_path,
+ n_bootstrap=100 # Use smaller number for testing
+ )
+
+ # Test that file was created
+ self.assertTrue(os.path.exists(result_path))
+ self.assertTrue(os.path.getsize(result_path) > 0)
+
+ # Clean up
+ os.remove(result_path)
+
+ def test_input_validation(self):
+ """Test input validation"""
+ # Test with invalid y_true values
+ with self.assertRaises(ValueError):
+ generate_binary_classification_report(
+ y_true=np.array([0, 1, 2]), # Invalid label
+ y_scores=np.array([0.1, 0.5, 0.9])
+ )
+
+ # Test with invalid y_scores values
+ with self.assertRaises(ValueError):
+ generate_binary_classification_report(
+ y_true=np.array([0, 1, 0]),
+ y_scores=np.array([-0.1, 1.5, 0.9]) # Values outside [0,1]
+ )
+
+ # Test with mismatched lengths
+ with self.assertRaises(ValueError):
+ generate_binary_classification_report(
+ y_true=np.array([0, 1]),
+ y_scores=np.array([0.1, 0.5, 0.9])
+ )
+
+ def test_bootstrap_consistency(self):
+ """Test that bootstrap results are consistent"""
+ output_path1 = os.path.join(self.test_output_dir, "test_report1.pdf")
+ output_path2 = os.path.join(self.test_output_dir, "test_report2.pdf")
+
+ # Generate two reports with same data and seed
+ np.random.seed(42)
+ generate_binary_classification_report(
+ y_true=self.y_true,
+ y_scores=self.y_scores,
+ output_path=output_path1,
+ n_bootstrap=100
+ )
+
+ np.random.seed(42)
+ generate_binary_classification_report(
+ y_true=self.y_true,
+ y_scores=self.y_scores,
+ output_path=output_path2,
+ n_bootstrap=100
+ )
+
+ # Compare file sizes (they should be similar)
+ size1 = os.path.getsize(output_path1)
+ size2 = os.path.getsize(output_path2)
+ self.assertAlmostEqual(size1, size2, delta=1000) # Allow small differences due to PDF compression
+
+ # Clean up
+ os.remove(output_path1)
+ os.remove(output_path2)
+
+ def test_edge_cases(self):
+ """Test edge cases"""
+ # Test with all positive labels
+ output_path = os.path.join(self.test_output_dir, "all_positive.pdf")
+ generate_binary_classification_report(
+ y_true=np.ones(100),
+ y_scores=np.random.random(100),
+ output_path=output_path,
+ n_bootstrap=100
+ )
+ self.assertTrue(os.path.exists(output_path))
+ os.remove(output_path)
+
+ # Test with all negative labels
+ output_path = os.path.join(self.test_output_dir, "all_negative.pdf")
+ generate_binary_classification_report(
+ y_true=np.zeros(100),
+ y_scores=np.random.random(100),
+ output_path=output_path,
+ n_bootstrap=100
+ )
+ self.assertTrue(os.path.exists(output_path))
+ os.remove(output_path)
+
+ # Test with perfect predictions
+ output_path = os.path.join(self.test_output_dir, "perfect.pdf")
+ generate_binary_classification_report(
+ y_true=np.array([0, 1, 0, 1]),
+ y_scores=np.array([0.1, 0.9, 0.2, 0.8]),
+ output_path=output_path,
+ n_bootstrap=100
+ )
+ self.assertTrue(os.path.exists(output_path))
+ os.remove(output_path)
+
+ @classmethod
+ def tearDownClass(cls):
+ """Clean up test outputs"""
+ if os.path.exists(cls.test_output_dir):
+ for file in os.listdir(cls.test_output_dir):
+ os.remove(os.path.join(cls.test_output_dir, file))
+ os.rmdir(cls.test_output_dir)
+
+if __name__ == '__main__':
+ unittest.main()
\ No newline at end of file
diff --git a/space/space/space/space/space/space/space/tests/test_metrics.py b/space/space/space/space/space/space/space/tests/test_metrics.py
index ea0fa4745f5166bc970332d11c69ff7aa80fc406..23636b46b2434e72f6e3ff88338c84adf9287f5e 100644
--- a/space/space/space/space/space/space/space/tests/test_metrics.py
+++ b/space/space/space/space/space/space/space/tests/test_metrics.py
@@ -2,6 +2,8 @@ import unittest
import os
import pandas as pd
import numpy as np
+import warnings
+from sklearn.exceptions import UndefinedMetricWarning
from omnibin.metrics import generate_binary_classification_report
class TestMetrics(unittest.TestCase):
@@ -109,12 +111,15 @@ class TestMetrics(unittest.TestCase):
# Test with all negative labels
output_path = os.path.join(self.test_output_dir, "all_negative.pdf")
- generate_binary_classification_report(
- y_true=np.zeros(100),
- y_scores=np.random.random(100),
- output_path=output_path,
- n_bootstrap=100
- )
+ with warnings.catch_warnings():
+ warnings.filterwarnings("ignore", category=UserWarning)
+ warnings.filterwarnings("ignore", category=UndefinedMetricWarning)
+ generate_binary_classification_report(
+ y_true=np.zeros(100),
+ y_scores=np.random.random(100),
+ output_path=output_path,
+ n_bootstrap=100
+ )
self.assertTrue(os.path.exists(output_path))
os.remove(output_path)
@@ -134,7 +139,13 @@ class TestMetrics(unittest.TestCase):
"""Clean up test outputs"""
if os.path.exists(cls.test_output_dir):
for file in os.listdir(cls.test_output_dir):
- os.remove(os.path.join(cls.test_output_dir, file))
+ file_path = os.path.join(cls.test_output_dir, file)
+ if os.path.isfile(file_path):
+ os.remove(file_path)
+ elif os.path.isdir(file_path):
+ for subfile in os.listdir(file_path):
+ os.remove(os.path.join(file_path, subfile))
+ os.rmdir(file_path)
os.rmdir(cls.test_output_dir)
if __name__ == '__main__':