From 8c048594b4a5457d95df902e9ffb89884abb4137 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 15 May 2025 13:39:39 -0500
Subject: [PATCH 01/47] Unify code branding (#26)
---
.github/workflows/package_and_test.yml | 4 ++--
.gitignore | 2 +-
README.md | 20 +++++++++---------
.../StateMachine.py | 0
{efmcalculator => efmcalculator2}/__init__.py | 0
{efmcalculator => efmcalculator2}/cli.py | 2 +-
.../constants.py | 0
.../data/__init__.py | 0
.../data/gam_df.csv | 0
.../ingest/EFMSequence.py | 0
.../ingest/__init__.py | 0
.../ingest/bad_state_mitigation.py | 0
.../ingest/parse_inputs.py | 0
.../pipeline/__init__.py | 0
.../pipeline/classify_srs_rmd.py | 0
.../pipeline/classify_ssr.py | 0
.../pipeline/detection_strats.py | 0
.../pipeline/features.py | 0
.../pipeline/filtering.py | 0
.../pipeline/mutation_rates.py | 2 +-
.../pipeline/post_process.py | 0
.../pipeline/primary_pipeline.py | 0
.../pipeline/subsequence_curation.py | 0
.../utilities.py | 0
.../webapp/SequenceState.py | 0
.../webapp/__init__.py | 0
.../webapp/assets/favicon.ico | Bin
.../webapp/assets/html_template.html | 2 +-
.../webapp/assets/stylesheet.css | 0
.../webapp/assets/tombstone.ai | 0
.../webapp/assets/tombstone.svg | 0
.../webapp/bokeh_plot.py | 0
.../webapp/bootstrap_streamlit.py | 2 +-
.../webapp/vis_utils.py | 0
.../webapp/webapp.py | 0
pyproject.toml | 13 +++++++-----
tests/test_efm2.py | 16 +++++++-------
37 files changed, 33 insertions(+), 30 deletions(-)
rename {efmcalculator => efmcalculator2}/StateMachine.py (100%)
rename {efmcalculator => efmcalculator2}/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/cli.py (98%)
rename {efmcalculator => efmcalculator2}/constants.py (100%)
rename {efmcalculator => efmcalculator2}/data/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/data/gam_df.csv (100%)
rename {efmcalculator => efmcalculator2}/ingest/EFMSequence.py (100%)
rename {efmcalculator => efmcalculator2}/ingest/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/ingest/bad_state_mitigation.py (100%)
rename {efmcalculator => efmcalculator2}/ingest/parse_inputs.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/classify_srs_rmd.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/classify_ssr.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/detection_strats.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/features.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/filtering.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/mutation_rates.py (99%)
rename {efmcalculator => efmcalculator2}/pipeline/post_process.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/primary_pipeline.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/subsequence_curation.py (100%)
rename {efmcalculator => efmcalculator2}/utilities.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/SequenceState.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/favicon.ico (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/html_template.html (96%)
rename {efmcalculator => efmcalculator2}/webapp/assets/stylesheet.css (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/tombstone.ai (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/tombstone.svg (100%)
rename {efmcalculator => efmcalculator2}/webapp/bokeh_plot.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/bootstrap_streamlit.py (79%)
rename {efmcalculator => efmcalculator2}/webapp/vis_utils.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/webapp.py (100%)
diff --git a/.github/workflows/package_and_test.yml b/.github/workflows/package_and_test.yml
index c550e9e..3b1a766 100644
--- a/.github/workflows/package_and_test.yml
+++ b/.github/workflows/package_and_test.yml
@@ -28,10 +28,10 @@ jobs:
with:
python-version: 3.12
- - name: install efmcalculator
+ - name: install efmcalculator2
run: |
pip install ./
- - name: test efmcalculator
+ - name: test efmcalculator2
run: |
python -m unittest
diff --git a/.gitignore b/.gitignore
index 3c84b57..8049a45 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
# Auto-generated files
-efmcalculator/_version.py
+efmcalculator2/_version.py
# Byte-compiled / optimized / DLL files
__pycache__/
diff --git a/README.md b/README.md
index d0e33ea..4978b59 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-[](https://github.com/barricklab/efm-calculator2/actions/workflows/package_and_test.yml)
+[](https://github.com/barricklab/efmcalculator2/actions/workflows/package_and_test.yml)
-`efmcalculator` is a Python package or web tool for detecting mutational hotspots. It predicts the mutation rates associated with each hotspot and combines them into a relative instability score. These hotspots include simple sequence repeats, repeat mediated deletions, and short repeat sequences. This code updates and improves upon the last version of the [EFM calculator](https://github.com/barricklab/efm-calculator).
+`efmcalculator2` is a Python package or web tool for detecting mutational hotspots. It predicts the mutation rates associated with each hotspot and combines them into a relative instability score. These hotspots include simple sequence repeats, repeat mediated deletions, and short repeat sequences. This code updates and improves upon the last version of the [EFM calculator](https://github.com/barricklab/efm-calculator).
-`efmcalculator` supports multifasta, genbank, or csv files as input and accepts parameters from the command line. It also supports the scanning of both linear and circular sequences. It defaults to a pairwise comparison strategy (all occurrences of a repeat are compared with all other occurrences), but it also contains an option for a linear comparison strategy (each occurrence of a repeat is only compared with the next occurrence in the sequence) to accelerate the analysis of large sequences.
+`efmcalculator2` supports multifasta, genbank, or csv files as input and accepts parameters from the command line. It also supports the scanning of both linear and circular sequences. It defaults to a pairwise comparison strategy (all occurrences of a repeat are compared with all other occurrences), but it also contains an option for a linear comparison strategy (each occurrence of a repeat is only compared with the next occurrence in the sequence) to accelerate the analysis of large sequences.
# Installation
@@ -10,7 +10,7 @@ The EFM Calculator can be accessed as a free web tool at efm2-beta.streamlit.app
It can be installed and run locally below without such base restriction.
## From pip:
-`pip install efmcalculator` or clone this repository and `pip install ./` from the root of the repository.
+`pip install efmcalculator2` or clone this repository and `pip install ./` from the root of the repository.
# Command Line Usage
- -h: help
@@ -24,17 +24,17 @@ It can be installed and run locally below without such base restriction.
- -v: verbose. 0 (silent), 1 (basic information), 2 (debug)
- --summary: saves only aggrigate results, useful for very tall inputs
-Print efmcalculator help:
+Print efmcalculator2 help:
```
-efmcalculator -h
+efmcalculator2 -h
```
-Run efmcalculator on all sequences in a FASTA file using the pairwise strategy and print output to csv files within an output folder:
+Run efmcalculator2 on all sequences in a FASTA file using the pairwise strategy and print output to csv files within an output folder:
```
-efmcalculator -i “input.fasta” -o “output_folder”
+efmcalculator2 -i “input.fasta” -o “output_folder”
```
-Run efmcalculator on all sequences in a FASTA file, outputing to the folder output_folder, while treating the input as circular, searching with a linear pattern, and printing debug information:
+Run efmcalculator2 on all sequences in a FASTA file, outputing to the folder output_folder, while treating the input as circular, searching with a linear pattern, and printing debug information:
```
-efmcalculator -i “input.fasta” -o “output_folder” -c -s “linear” -v 2
+efmcalculator2 -i “input.fasta” -o “output_folder” -c -s “linear” -v 2
```
diff --git a/efmcalculator/StateMachine.py b/efmcalculator2/StateMachine.py
similarity index 100%
rename from efmcalculator/StateMachine.py
rename to efmcalculator2/StateMachine.py
diff --git a/efmcalculator/__init__.py b/efmcalculator2/__init__.py
similarity index 100%
rename from efmcalculator/__init__.py
rename to efmcalculator2/__init__.py
diff --git a/efmcalculator/cli.py b/efmcalculator2/cli.py
similarity index 98%
rename from efmcalculator/cli.py
rename to efmcalculator2/cli.py
index cb56062..32c86b8 100644
--- a/efmcalculator/cli.py
+++ b/efmcalculator2/cli.py
@@ -234,7 +234,7 @@ def main():
t_min, t_sec = divmod(t_sec, 60)
t_hour, t_min = divmod(t_min, 60)
logger.info(
- f"EFMCalculator completed in {t_hour:02d}h:{t_min:02d}m:{t_sec:02d}s:{t_msec:02d}ms"
+ f"EFMCalculator2 completed in {t_hour:02d}h:{t_min:02d}m:{t_sec:02d}s:{t_msec:02d}ms"
)
if __name__ == "__main__":
diff --git a/efmcalculator/constants.py b/efmcalculator2/constants.py
similarity index 100%
rename from efmcalculator/constants.py
rename to efmcalculator2/constants.py
diff --git a/efmcalculator/data/__init__.py b/efmcalculator2/data/__init__.py
similarity index 100%
rename from efmcalculator/data/__init__.py
rename to efmcalculator2/data/__init__.py
diff --git a/efmcalculator/data/gam_df.csv b/efmcalculator2/data/gam_df.csv
similarity index 100%
rename from efmcalculator/data/gam_df.csv
rename to efmcalculator2/data/gam_df.csv
diff --git a/efmcalculator/ingest/EFMSequence.py b/efmcalculator2/ingest/EFMSequence.py
similarity index 100%
rename from efmcalculator/ingest/EFMSequence.py
rename to efmcalculator2/ingest/EFMSequence.py
diff --git a/efmcalculator/ingest/__init__.py b/efmcalculator2/ingest/__init__.py
similarity index 100%
rename from efmcalculator/ingest/__init__.py
rename to efmcalculator2/ingest/__init__.py
diff --git a/efmcalculator/ingest/bad_state_mitigation.py b/efmcalculator2/ingest/bad_state_mitigation.py
similarity index 100%
rename from efmcalculator/ingest/bad_state_mitigation.py
rename to efmcalculator2/ingest/bad_state_mitigation.py
diff --git a/efmcalculator/ingest/parse_inputs.py b/efmcalculator2/ingest/parse_inputs.py
similarity index 100%
rename from efmcalculator/ingest/parse_inputs.py
rename to efmcalculator2/ingest/parse_inputs.py
diff --git a/efmcalculator/pipeline/__init__.py b/efmcalculator2/pipeline/__init__.py
similarity index 100%
rename from efmcalculator/pipeline/__init__.py
rename to efmcalculator2/pipeline/__init__.py
diff --git a/efmcalculator/pipeline/classify_srs_rmd.py b/efmcalculator2/pipeline/classify_srs_rmd.py
similarity index 100%
rename from efmcalculator/pipeline/classify_srs_rmd.py
rename to efmcalculator2/pipeline/classify_srs_rmd.py
diff --git a/efmcalculator/pipeline/classify_ssr.py b/efmcalculator2/pipeline/classify_ssr.py
similarity index 100%
rename from efmcalculator/pipeline/classify_ssr.py
rename to efmcalculator2/pipeline/classify_ssr.py
diff --git a/efmcalculator/pipeline/detection_strats.py b/efmcalculator2/pipeline/detection_strats.py
similarity index 100%
rename from efmcalculator/pipeline/detection_strats.py
rename to efmcalculator2/pipeline/detection_strats.py
diff --git a/efmcalculator/pipeline/features.py b/efmcalculator2/pipeline/features.py
similarity index 100%
rename from efmcalculator/pipeline/features.py
rename to efmcalculator2/pipeline/features.py
diff --git a/efmcalculator/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
similarity index 100%
rename from efmcalculator/pipeline/filtering.py
rename to efmcalculator2/pipeline/filtering.py
diff --git a/efmcalculator/pipeline/mutation_rates.py b/efmcalculator2/pipeline/mutation_rates.py
similarity index 99%
rename from efmcalculator/pipeline/mutation_rates.py
rename to efmcalculator2/pipeline/mutation_rates.py
index 165d8af..0dfa1b5 100644
--- a/efmcalculator/pipeline/mutation_rates.py
+++ b/efmcalculator2/pipeline/mutation_rates.py
@@ -4,7 +4,7 @@
from ..constants import SUB_RATE
try:
- gam_result_filepath = filepath = os.path.dirname(sys.modules['efmcalculator'].__file__)+'/data/gam_df.csv'
+ gam_result_filepath = filepath = os.path.dirname(sys.modules['efmcalculator2'].__file__)+'/data/gam_df.csv'
except e:
print("Error while loading gam results")
exit(1)
diff --git a/efmcalculator/pipeline/post_process.py b/efmcalculator2/pipeline/post_process.py
similarity index 100%
rename from efmcalculator/pipeline/post_process.py
rename to efmcalculator2/pipeline/post_process.py
diff --git a/efmcalculator/pipeline/primary_pipeline.py b/efmcalculator2/pipeline/primary_pipeline.py
similarity index 100%
rename from efmcalculator/pipeline/primary_pipeline.py
rename to efmcalculator2/pipeline/primary_pipeline.py
diff --git a/efmcalculator/pipeline/subsequence_curation.py b/efmcalculator2/pipeline/subsequence_curation.py
similarity index 100%
rename from efmcalculator/pipeline/subsequence_curation.py
rename to efmcalculator2/pipeline/subsequence_curation.py
diff --git a/efmcalculator/utilities.py b/efmcalculator2/utilities.py
similarity index 100%
rename from efmcalculator/utilities.py
rename to efmcalculator2/utilities.py
diff --git a/efmcalculator/webapp/SequenceState.py b/efmcalculator2/webapp/SequenceState.py
similarity index 100%
rename from efmcalculator/webapp/SequenceState.py
rename to efmcalculator2/webapp/SequenceState.py
diff --git a/efmcalculator/webapp/__init__.py b/efmcalculator2/webapp/__init__.py
similarity index 100%
rename from efmcalculator/webapp/__init__.py
rename to efmcalculator2/webapp/__init__.py
diff --git a/efmcalculator/webapp/assets/favicon.ico b/efmcalculator2/webapp/assets/favicon.ico
similarity index 100%
rename from efmcalculator/webapp/assets/favicon.ico
rename to efmcalculator2/webapp/assets/favicon.ico
diff --git a/efmcalculator/webapp/assets/html_template.html b/efmcalculator2/webapp/assets/html_template.html
similarity index 96%
rename from efmcalculator/webapp/assets/html_template.html
rename to efmcalculator2/webapp/assets/html_template.html
index 673f2ee..86419c0 100644
--- a/efmcalculator/webapp/assets/html_template.html
+++ b/efmcalculator2/webapp/assets/html_template.html
@@ -4,7 +4,7 @@
-
EFMCalculator Results
+ EFMCalculator2 Results
diff --git a/efmcalculator/webapp/assets/stylesheet.css b/efmcalculator2/webapp/assets/stylesheet.css
similarity index 100%
rename from efmcalculator/webapp/assets/stylesheet.css
rename to efmcalculator2/webapp/assets/stylesheet.css
diff --git a/efmcalculator/webapp/assets/tombstone.ai b/efmcalculator2/webapp/assets/tombstone.ai
similarity index 100%
rename from efmcalculator/webapp/assets/tombstone.ai
rename to efmcalculator2/webapp/assets/tombstone.ai
diff --git a/efmcalculator/webapp/assets/tombstone.svg b/efmcalculator2/webapp/assets/tombstone.svg
similarity index 100%
rename from efmcalculator/webapp/assets/tombstone.svg
rename to efmcalculator2/webapp/assets/tombstone.svg
diff --git a/efmcalculator/webapp/bokeh_plot.py b/efmcalculator2/webapp/bokeh_plot.py
similarity index 100%
rename from efmcalculator/webapp/bokeh_plot.py
rename to efmcalculator2/webapp/bokeh_plot.py
diff --git a/efmcalculator/webapp/bootstrap_streamlit.py b/efmcalculator2/webapp/bootstrap_streamlit.py
similarity index 79%
rename from efmcalculator/webapp/bootstrap_streamlit.py
rename to efmcalculator2/webapp/bootstrap_streamlit.py
index 4ca5371..cb732d2 100644
--- a/efmcalculator/webapp/bootstrap_streamlit.py
+++ b/efmcalculator2/webapp/bootstrap_streamlit.py
@@ -1,6 +1,6 @@
import subprocess
-from efmcalculator import run_webapp
+from efmcalculator2 import run_webapp
def bootstrap_streamlit():
diff --git a/efmcalculator/webapp/vis_utils.py b/efmcalculator2/webapp/vis_utils.py
similarity index 100%
rename from efmcalculator/webapp/vis_utils.py
rename to efmcalculator2/webapp/vis_utils.py
diff --git a/efmcalculator/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
similarity index 100%
rename from efmcalculator/webapp/webapp.py
rename to efmcalculator2/webapp/webapp.py
diff --git a/pyproject.toml b/pyproject.toml
index b808dd2..9c0e4c3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
-name = "EFMCalculator"
+name = "EFMCalculator2"
authors = [
{ name = "croots", email = "croots@utexas.edu" },
{ name = "coolbears", email = "sld3379@utexas.edu" },
@@ -60,13 +60,16 @@ Documentation = "https://github.com/barricklab/efmc-alculator2"
Issues = "https://github.com/barricklab/efm-calculator2/issues"
[project.scripts]
-efmcalculator = "efmcalculator.cli:main"
-efmcalculator-webapp = "efmcalculator.webapp.bootstrap_streamlit:bootstrap_streamlit"
+efmcalculator2 = "efmcalculator2.cli:main"
+efmcalculator2-webapp = "efmcalculator2.webapp.bootstrap_streamlit:bootstrap_streamlit"
+efmcalculator = "efmcalculator2.cli:main"
+efmcalculator-webapp = "efmcalculator2.webapp.bootstrap_streamlit:bootstrap_streamlit"
+
[tool.setuptools]
-packages = ["efmcalculator"]
+packages = ["efmcalculator2"]
[tool.setuptools_scm]
-version_file = "efmcalculator/_version.py"
+version_file = "efmcalculator2/_version.py"
version_scheme = "post-release"
local_scheme = "no-local-version"
diff --git a/tests/test_efm2.py b/tests/test_efm2.py
index e5aafdd..3d125ea 100644
--- a/tests/test_efm2.py
+++ b/tests/test_efm2.py
@@ -6,13 +6,13 @@
import csv
import shutil
import pathlib
-import efmcalculator
+import efmcalculator2
import Bio.SeqIO as SeqIO
import polars as pl
-import efmcalculator
+import efmcalculator2
from itertools import chain
-from efmcalculator.ingest.bad_state_mitigation import detect_special_cases
+from efmcalculator2.ingest.bad_state_mitigation import detect_special_cases
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
output_directory_path = os.path.join(THIS_DIR)
@@ -64,9 +64,9 @@ def test_unit_run_complete_wo_errors(self):
print("Test: Run complete without errors")
L6_10_plasmid = output_directory_path + "/../examples/1_L6-10_plasmid.gb"
L6_10_plasmid = pathlib.Path(L6_10_plasmid)
- L6_10_plasmid = efmcalculator.ingest.parse_file(L6_10_plasmid)
+ L6_10_plasmid = efmcalculator2.ingest.parse_file(L6_10_plasmid)
inseqs = list()
- statemachine = efmcalculator.StateMachine.StateMachine()
+ statemachine = efmcalculator2.StateMachine.StateMachine()
statemachine.import_sequences(inseqs)
for seqobject in statemachine.user_sequences.values():
seqobject.call_predictions()
@@ -98,8 +98,8 @@ def test_unit_filtering_ssr(self):
if not is_circular:
should_exist += ["T", "CA"]
- ssr_df, _, _ = efmcalculator.predict(test_sequence, "pairwise", is_circular)
- ssr_df = efmcalculator.pipeline.filtering.filter_ssrs(ssr_df, len(test_sequence), is_circular)
+ ssr_df, _, _ = efmcalculator2.predict(test_sequence, "pairwise", is_circular)
+ ssr_df = efmcalculator2.pipeline.filtering.filter_ssrs(ssr_df, len(test_sequence), is_circular)
ssr_df = ssr_df.with_columns(
pl.lit(shouldnt_exist).alias("test_case")
@@ -115,7 +115,7 @@ class test_unit_filtering_rmd(unittest.TestCase):
def test_unit_filtering_rmd(self):
test_sequence = "AGTCCAA" + "AAAAAAAAAAAAAAAAAAAAA" + "AGTCCAA"
is_circular = False
- ssr_df, srs_df, rmd_df = efmcalculator.predict(test_sequence, "pairwise", is_circular)
+ ssr_df, srs_df, rmd_df = efmcalculator2.predict(test_sequence, "pairwise", is_circular)
if __name__ == "__main__":
unittest.main()
From 1ad01112b5bee4449c4a52f7105e54658d957026 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 15 May 2025 13:49:05 -0500
Subject: [PATCH 02/47] remove hyphenation in urls
---
pyproject.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index b808dd2..d40a742 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -55,9 +55,9 @@ classifiers = [
]
[project.urls]
-Homepage = "https://github.com/barricklab/efm-calculator2"
-Documentation = "https://github.com/barricklab/efmc-alculator2"
-Issues = "https://github.com/barricklab/efm-calculator2/issues"
+Homepage = "https://github.com/barricklab/efmcalculator2"
+Documentation = "https://github.com/barricklab/efmcalculator2"
+Issues = "https://github.com/barricklab/efmcalculator2/issues"
[project.scripts]
efmcalculator = "efmcalculator.cli:main"
From 4146ddbce2dcff9a38df656191235dfe30094ee0 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 15 May 2025 14:48:52 -0500
Subject: [PATCH 03/47] Create requirements.txt
---
requirements.txt | 1 +
1 file changed, 1 insertion(+)
create mode 100644 requirements.txt
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..4ced80b
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+efmcalculator @ git+github.com/barricklab/efmcalculator2@production
From ff422afa8c23ff4b9cdffa7b77945d456ce8ef59 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 15 May 2025 14:50:07 -0500
Subject: [PATCH 04/47] Merge main to production (#27)
* Add pypi publishing workflow
* Fix versioning scheme for pypi
* Fix beta classifier
* Fix URL metadata for pypi
* Unify code branding (#26)
* remove hyphenation in urls
---
.github/workflows/package_and_test.yml | 4 +-
.github/workflows/publish_to_pypi.yml | 95 ++++++++++++++++++
.gitignore | 2 +-
README.md | 20 ++--
.../StateMachine.py | 0
{efmcalculator => efmcalculator2}/__init__.py | 0
{efmcalculator => efmcalculator2}/cli.py | 2 +-
.../constants.py | 0
.../data/__init__.py | 0
.../data/gam_df.csv | 0
.../ingest/EFMSequence.py | 0
.../ingest/__init__.py | 0
.../ingest/bad_state_mitigation.py | 0
.../ingest/parse_inputs.py | 0
.../pipeline/__init__.py | 0
.../pipeline/classify_srs_rmd.py | 0
.../pipeline/classify_ssr.py | 0
.../pipeline/detection_strats.py | 0
.../pipeline/features.py | 0
.../pipeline/filtering.py | 0
.../pipeline/mutation_rates.py | 2 +-
.../pipeline/post_process.py | 0
.../pipeline/primary_pipeline.py | 0
.../pipeline/subsequence_curation.py | 0
.../utilities.py | 0
.../webapp/SequenceState.py | 0
.../webapp/__init__.py | 0
.../webapp/assets/favicon.ico | Bin
.../webapp/assets/html_template.html | 2 +-
.../webapp/assets/stylesheet.css | 0
.../webapp/assets/tombstone.ai | 0
.../webapp/assets/tombstone.svg | 0
.../webapp/bokeh_plot.py | 0
.../webapp/bootstrap_streamlit.py | 2 +-
.../webapp/vis_utils.py | 0
.../webapp/webapp.py | 0
pyproject.toml | 17 ++--
tests/test_efm2.py | 16 +--
38 files changed, 131 insertions(+), 31 deletions(-)
create mode 100644 .github/workflows/publish_to_pypi.yml
rename {efmcalculator => efmcalculator2}/StateMachine.py (100%)
rename {efmcalculator => efmcalculator2}/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/cli.py (98%)
rename {efmcalculator => efmcalculator2}/constants.py (100%)
rename {efmcalculator => efmcalculator2}/data/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/data/gam_df.csv (100%)
rename {efmcalculator => efmcalculator2}/ingest/EFMSequence.py (100%)
rename {efmcalculator => efmcalculator2}/ingest/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/ingest/bad_state_mitigation.py (100%)
rename {efmcalculator => efmcalculator2}/ingest/parse_inputs.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/classify_srs_rmd.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/classify_ssr.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/detection_strats.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/features.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/filtering.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/mutation_rates.py (99%)
rename {efmcalculator => efmcalculator2}/pipeline/post_process.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/primary_pipeline.py (100%)
rename {efmcalculator => efmcalculator2}/pipeline/subsequence_curation.py (100%)
rename {efmcalculator => efmcalculator2}/utilities.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/SequenceState.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/__init__.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/favicon.ico (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/html_template.html (96%)
rename {efmcalculator => efmcalculator2}/webapp/assets/stylesheet.css (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/tombstone.ai (100%)
rename {efmcalculator => efmcalculator2}/webapp/assets/tombstone.svg (100%)
rename {efmcalculator => efmcalculator2}/webapp/bokeh_plot.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/bootstrap_streamlit.py (79%)
rename {efmcalculator => efmcalculator2}/webapp/vis_utils.py (100%)
rename {efmcalculator => efmcalculator2}/webapp/webapp.py (100%)
diff --git a/.github/workflows/package_and_test.yml b/.github/workflows/package_and_test.yml
index c550e9e..3b1a766 100644
--- a/.github/workflows/package_and_test.yml
+++ b/.github/workflows/package_and_test.yml
@@ -28,10 +28,10 @@ jobs:
with:
python-version: 3.12
- - name: install efmcalculator
+ - name: install efmcalculator2
run: |
pip install ./
- - name: test efmcalculator
+ - name: test efmcalculator2
run: |
python -m unittest
diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml
new file mode 100644
index 0000000..1132c57
--- /dev/null
+++ b/.github/workflows/publish_to_pypi.yml
@@ -0,0 +1,95 @@
+name: Publish Python distribution to PyPI
+
+on:
+ workflow_dispatch:
+
+jobs:
+ build:
+ name: Build distribution
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Set up Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: "3.x"
+
+ - name: Install pypa/build
+ run: >-
+ python3 -m
+ pip install
+ build
+ --user
+ - name: Build a binary wheel and a source tarball
+ run: python3 -m build
+ - name: Store the distribution packages
+ uses: actions/upload-artifact@v4
+ with:
+ name: python-package-distributions
+ path: dist/
+
+ publish-to-pypi:
+ name: Publish Python distribution to PyPI
+ needs:
+ - build
+ runs-on: ubuntu-latest
+
+ environment:
+ name: pypi
+ url: https://www.pypi.org/p/
+
+ permissions:
+ id-token: write # IMPORTANT: mandatory for trusted publishing
+
+ steps:
+ - name: Download all the dists
+ uses: actions/download-artifact@v4
+ with:
+ name: python-package-distributions
+ path: dist/
+ - name: Publish distribution 📦 to PyPI
+ uses: pypa/gh-action-pypi-publish@release/v1
+
+ github-release:
+ name: >-
+ Sign the Python 🐍 distribution 📦 with Sigstore
+ and upload them to GitHub Release
+ needs:
+ - publish-to-pypi
+ runs-on: ubuntu-latest
+
+ permissions:
+ contents: write # IMPORTANT: mandatory for making GitHub Releases
+ id-token: write # IMPORTANT: mandatory for sigstore
+
+ steps:
+ - name: Download all the dists
+ uses: actions/download-artifact@v4
+ with:
+ name: python-package-distributions
+ path: dist/
+ - name: Sign the dists with Sigstore
+ uses: sigstore/gh-action-sigstore-python@v3.0.0
+ with:
+ inputs: >-
+ ./dist/*.tar.gz
+ ./dist/*.whl
+ - name: Create GitHub Release
+ env:
+ GITHUB_TOKEN: ${{ github.token }}
+ run: >-
+ gh release create
+ '${{ github.ref_name }}'
+ --repo '${{ github.repository }}'
+ --notes ""
+ - name: Upload artifact signatures to GitHub Release
+ env:
+ GITHUB_TOKEN: ${{ github.token }}
+ # Upload to GitHub Release using the `gh` CLI.
+ # `dist/` contains the built packages, and the
+ # sigstore-produced signatures and certificates.
+ run: >-
+ gh release upload
+ '${{ github.ref_name }}' dist/**
+ --repo '${{ github.repository }}'
diff --git a/.gitignore b/.gitignore
index 3c84b57..8049a45 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
# Auto-generated files
-efmcalculator/_version.py
+efmcalculator2/_version.py
# Byte-compiled / optimized / DLL files
__pycache__/
diff --git a/README.md b/README.md
index d0e33ea..4978b59 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-[](https://github.com/barricklab/efm-calculator2/actions/workflows/package_and_test.yml)
+[](https://github.com/barricklab/efmcalculator2/actions/workflows/package_and_test.yml)
-`efmcalculator` is a Python package or web tool for detecting mutational hotspots. It predicts the mutation rates associated with each hotspot and combines them into a relative instability score. These hotspots include simple sequence repeats, repeat mediated deletions, and short repeat sequences. This code updates and improves upon the last version of the [EFM calculator](https://github.com/barricklab/efm-calculator).
+`efmcalculator2` is a Python package or web tool for detecting mutational hotspots. It predicts the mutation rates associated with each hotspot and combines them into a relative instability score. These hotspots include simple sequence repeats, repeat mediated deletions, and short repeat sequences. This code updates and improves upon the last version of the [EFM calculator](https://github.com/barricklab/efm-calculator).
-`efmcalculator` supports multifasta, genbank, or csv files as input and accepts parameters from the command line. It also supports the scanning of both linear and circular sequences. It defaults to a pairwise comparison strategy (all occurrences of a repeat are compared with all other occurrences), but it also contains an option for a linear comparison strategy (each occurrence of a repeat is only compared with the next occurrence in the sequence) to accelerate the analysis of large sequences.
+`efmcalculator2` supports multifasta, genbank, or csv files as input and accepts parameters from the command line. It also supports the scanning of both linear and circular sequences. It defaults to a pairwise comparison strategy (all occurrences of a repeat are compared with all other occurrences), but it also contains an option for a linear comparison strategy (each occurrence of a repeat is only compared with the next occurrence in the sequence) to accelerate the analysis of large sequences.
# Installation
@@ -10,7 +10,7 @@ The EFM Calculator can be accessed as a free web tool at efm2-beta.streamlit.app
It can be installed and run locally below without such base restriction.
## From pip:
-`pip install efmcalculator` or clone this repository and `pip install ./` from the root of the repository.
+`pip install efmcalculator2` or clone this repository and `pip install ./` from the root of the repository.
# Command Line Usage
- -h: help
@@ -24,17 +24,17 @@ It can be installed and run locally below without such base restriction.
- -v: verbose. 0 (silent), 1 (basic information), 2 (debug)
- --summary: saves only aggrigate results, useful for very tall inputs
-Print efmcalculator help:
+Print efmcalculator2 help:
```
-efmcalculator -h
+efmcalculator2 -h
```
-Run efmcalculator on all sequences in a FASTA file using the pairwise strategy and print output to csv files within an output folder:
+Run efmcalculator2 on all sequences in a FASTA file using the pairwise strategy and print output to csv files within an output folder:
```
-efmcalculator -i “input.fasta” -o “output_folder”
+efmcalculator2 -i “input.fasta” -o “output_folder”
```
-Run efmcalculator on all sequences in a FASTA file, outputing to the folder output_folder, while treating the input as circular, searching with a linear pattern, and printing debug information:
+Run efmcalculator2 on all sequences in a FASTA file, outputing to the folder output_folder, while treating the input as circular, searching with a linear pattern, and printing debug information:
```
-efmcalculator -i “input.fasta” -o “output_folder” -c -s “linear” -v 2
+efmcalculator2 -i “input.fasta” -o “output_folder” -c -s “linear” -v 2
```
diff --git a/efmcalculator/StateMachine.py b/efmcalculator2/StateMachine.py
similarity index 100%
rename from efmcalculator/StateMachine.py
rename to efmcalculator2/StateMachine.py
diff --git a/efmcalculator/__init__.py b/efmcalculator2/__init__.py
similarity index 100%
rename from efmcalculator/__init__.py
rename to efmcalculator2/__init__.py
diff --git a/efmcalculator/cli.py b/efmcalculator2/cli.py
similarity index 98%
rename from efmcalculator/cli.py
rename to efmcalculator2/cli.py
index cb56062..32c86b8 100644
--- a/efmcalculator/cli.py
+++ b/efmcalculator2/cli.py
@@ -234,7 +234,7 @@ def main():
t_min, t_sec = divmod(t_sec, 60)
t_hour, t_min = divmod(t_min, 60)
logger.info(
- f"EFMCalculator completed in {t_hour:02d}h:{t_min:02d}m:{t_sec:02d}s:{t_msec:02d}ms"
+ f"EFMCalculator2 completed in {t_hour:02d}h:{t_min:02d}m:{t_sec:02d}s:{t_msec:02d}ms"
)
if __name__ == "__main__":
diff --git a/efmcalculator/constants.py b/efmcalculator2/constants.py
similarity index 100%
rename from efmcalculator/constants.py
rename to efmcalculator2/constants.py
diff --git a/efmcalculator/data/__init__.py b/efmcalculator2/data/__init__.py
similarity index 100%
rename from efmcalculator/data/__init__.py
rename to efmcalculator2/data/__init__.py
diff --git a/efmcalculator/data/gam_df.csv b/efmcalculator2/data/gam_df.csv
similarity index 100%
rename from efmcalculator/data/gam_df.csv
rename to efmcalculator2/data/gam_df.csv
diff --git a/efmcalculator/ingest/EFMSequence.py b/efmcalculator2/ingest/EFMSequence.py
similarity index 100%
rename from efmcalculator/ingest/EFMSequence.py
rename to efmcalculator2/ingest/EFMSequence.py
diff --git a/efmcalculator/ingest/__init__.py b/efmcalculator2/ingest/__init__.py
similarity index 100%
rename from efmcalculator/ingest/__init__.py
rename to efmcalculator2/ingest/__init__.py
diff --git a/efmcalculator/ingest/bad_state_mitigation.py b/efmcalculator2/ingest/bad_state_mitigation.py
similarity index 100%
rename from efmcalculator/ingest/bad_state_mitigation.py
rename to efmcalculator2/ingest/bad_state_mitigation.py
diff --git a/efmcalculator/ingest/parse_inputs.py b/efmcalculator2/ingest/parse_inputs.py
similarity index 100%
rename from efmcalculator/ingest/parse_inputs.py
rename to efmcalculator2/ingest/parse_inputs.py
diff --git a/efmcalculator/pipeline/__init__.py b/efmcalculator2/pipeline/__init__.py
similarity index 100%
rename from efmcalculator/pipeline/__init__.py
rename to efmcalculator2/pipeline/__init__.py
diff --git a/efmcalculator/pipeline/classify_srs_rmd.py b/efmcalculator2/pipeline/classify_srs_rmd.py
similarity index 100%
rename from efmcalculator/pipeline/classify_srs_rmd.py
rename to efmcalculator2/pipeline/classify_srs_rmd.py
diff --git a/efmcalculator/pipeline/classify_ssr.py b/efmcalculator2/pipeline/classify_ssr.py
similarity index 100%
rename from efmcalculator/pipeline/classify_ssr.py
rename to efmcalculator2/pipeline/classify_ssr.py
diff --git a/efmcalculator/pipeline/detection_strats.py b/efmcalculator2/pipeline/detection_strats.py
similarity index 100%
rename from efmcalculator/pipeline/detection_strats.py
rename to efmcalculator2/pipeline/detection_strats.py
diff --git a/efmcalculator/pipeline/features.py b/efmcalculator2/pipeline/features.py
similarity index 100%
rename from efmcalculator/pipeline/features.py
rename to efmcalculator2/pipeline/features.py
diff --git a/efmcalculator/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
similarity index 100%
rename from efmcalculator/pipeline/filtering.py
rename to efmcalculator2/pipeline/filtering.py
diff --git a/efmcalculator/pipeline/mutation_rates.py b/efmcalculator2/pipeline/mutation_rates.py
similarity index 99%
rename from efmcalculator/pipeline/mutation_rates.py
rename to efmcalculator2/pipeline/mutation_rates.py
index 165d8af..0dfa1b5 100644
--- a/efmcalculator/pipeline/mutation_rates.py
+++ b/efmcalculator2/pipeline/mutation_rates.py
@@ -4,7 +4,7 @@
from ..constants import SUB_RATE
try:
- gam_result_filepath = filepath = os.path.dirname(sys.modules['efmcalculator'].__file__)+'/data/gam_df.csv'
+ gam_result_filepath = filepath = os.path.dirname(sys.modules['efmcalculator2'].__file__)+'/data/gam_df.csv'
except e:
print("Error while loading gam results")
exit(1)
diff --git a/efmcalculator/pipeline/post_process.py b/efmcalculator2/pipeline/post_process.py
similarity index 100%
rename from efmcalculator/pipeline/post_process.py
rename to efmcalculator2/pipeline/post_process.py
diff --git a/efmcalculator/pipeline/primary_pipeline.py b/efmcalculator2/pipeline/primary_pipeline.py
similarity index 100%
rename from efmcalculator/pipeline/primary_pipeline.py
rename to efmcalculator2/pipeline/primary_pipeline.py
diff --git a/efmcalculator/pipeline/subsequence_curation.py b/efmcalculator2/pipeline/subsequence_curation.py
similarity index 100%
rename from efmcalculator/pipeline/subsequence_curation.py
rename to efmcalculator2/pipeline/subsequence_curation.py
diff --git a/efmcalculator/utilities.py b/efmcalculator2/utilities.py
similarity index 100%
rename from efmcalculator/utilities.py
rename to efmcalculator2/utilities.py
diff --git a/efmcalculator/webapp/SequenceState.py b/efmcalculator2/webapp/SequenceState.py
similarity index 100%
rename from efmcalculator/webapp/SequenceState.py
rename to efmcalculator2/webapp/SequenceState.py
diff --git a/efmcalculator/webapp/__init__.py b/efmcalculator2/webapp/__init__.py
similarity index 100%
rename from efmcalculator/webapp/__init__.py
rename to efmcalculator2/webapp/__init__.py
diff --git a/efmcalculator/webapp/assets/favicon.ico b/efmcalculator2/webapp/assets/favicon.ico
similarity index 100%
rename from efmcalculator/webapp/assets/favicon.ico
rename to efmcalculator2/webapp/assets/favicon.ico
diff --git a/efmcalculator/webapp/assets/html_template.html b/efmcalculator2/webapp/assets/html_template.html
similarity index 96%
rename from efmcalculator/webapp/assets/html_template.html
rename to efmcalculator2/webapp/assets/html_template.html
index 673f2ee..86419c0 100644
--- a/efmcalculator/webapp/assets/html_template.html
+++ b/efmcalculator2/webapp/assets/html_template.html
@@ -4,7 +4,7 @@
- EFMCalculator Results
+ EFMCalculator2 Results
diff --git a/efmcalculator/webapp/assets/stylesheet.css b/efmcalculator2/webapp/assets/stylesheet.css
similarity index 100%
rename from efmcalculator/webapp/assets/stylesheet.css
rename to efmcalculator2/webapp/assets/stylesheet.css
diff --git a/efmcalculator/webapp/assets/tombstone.ai b/efmcalculator2/webapp/assets/tombstone.ai
similarity index 100%
rename from efmcalculator/webapp/assets/tombstone.ai
rename to efmcalculator2/webapp/assets/tombstone.ai
diff --git a/efmcalculator/webapp/assets/tombstone.svg b/efmcalculator2/webapp/assets/tombstone.svg
similarity index 100%
rename from efmcalculator/webapp/assets/tombstone.svg
rename to efmcalculator2/webapp/assets/tombstone.svg
diff --git a/efmcalculator/webapp/bokeh_plot.py b/efmcalculator2/webapp/bokeh_plot.py
similarity index 100%
rename from efmcalculator/webapp/bokeh_plot.py
rename to efmcalculator2/webapp/bokeh_plot.py
diff --git a/efmcalculator/webapp/bootstrap_streamlit.py b/efmcalculator2/webapp/bootstrap_streamlit.py
similarity index 79%
rename from efmcalculator/webapp/bootstrap_streamlit.py
rename to efmcalculator2/webapp/bootstrap_streamlit.py
index 4ca5371..cb732d2 100644
--- a/efmcalculator/webapp/bootstrap_streamlit.py
+++ b/efmcalculator2/webapp/bootstrap_streamlit.py
@@ -1,6 +1,6 @@
import subprocess
-from efmcalculator import run_webapp
+from efmcalculator2 import run_webapp
def bootstrap_streamlit():
diff --git a/efmcalculator/webapp/vis_utils.py b/efmcalculator2/webapp/vis_utils.py
similarity index 100%
rename from efmcalculator/webapp/vis_utils.py
rename to efmcalculator2/webapp/vis_utils.py
diff --git a/efmcalculator/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
similarity index 100%
rename from efmcalculator/webapp/webapp.py
rename to efmcalculator2/webapp/webapp.py
diff --git a/pyproject.toml b/pyproject.toml
index badab64..6bb47d8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
-name = "EFMCalculator"
+name = "EFMCalculator2"
authors = [
{ name = "croots", email = "croots@utexas.edu" },
{ name = "coolbears", email = "sld3379@utexas.edu" },
@@ -43,7 +43,7 @@ dependencies = [
license = { text = "GPL-3.0" }
classifiers = [
- "Development Status :: 3 - Beta",
+ "Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Operating System :: OS Independent",
@@ -60,11 +60,16 @@ Documentation = "https://github.com/barricklab/efmcalculator2"
Issues = "https://github.com/barricklab/efmcalculator2/issues"
[project.scripts]
-efmcalculator = "efmcalculator.cli:main"
-efmcalculator-webapp = "efmcalculator.webapp.bootstrap_streamlit:bootstrap_streamlit"
+efmcalculator2 = "efmcalculator2.cli:main"
+efmcalculator2-webapp = "efmcalculator2.webapp.bootstrap_streamlit:bootstrap_streamlit"
+efmcalculator = "efmcalculator2.cli:main"
+efmcalculator-webapp = "efmcalculator2.webapp.bootstrap_streamlit:bootstrap_streamlit"
+
[tool.setuptools]
-packages = ["efmcalculator"]
+packages = ["efmcalculator2"]
[tool.setuptools_scm]
-version_file = "efmcalculator/_version.py"
+version_file = "efmcalculator2/_version.py"
+version_scheme = "post-release"
+local_scheme = "no-local-version"
diff --git a/tests/test_efm2.py b/tests/test_efm2.py
index e5aafdd..3d125ea 100644
--- a/tests/test_efm2.py
+++ b/tests/test_efm2.py
@@ -6,13 +6,13 @@
import csv
import shutil
import pathlib
-import efmcalculator
+import efmcalculator2
import Bio.SeqIO as SeqIO
import polars as pl
-import efmcalculator
+import efmcalculator2
from itertools import chain
-from efmcalculator.ingest.bad_state_mitigation import detect_special_cases
+from efmcalculator2.ingest.bad_state_mitigation import detect_special_cases
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
output_directory_path = os.path.join(THIS_DIR)
@@ -64,9 +64,9 @@ def test_unit_run_complete_wo_errors(self):
print("Test: Run complete without errors")
L6_10_plasmid = output_directory_path + "/../examples/1_L6-10_plasmid.gb"
L6_10_plasmid = pathlib.Path(L6_10_plasmid)
- L6_10_plasmid = efmcalculator.ingest.parse_file(L6_10_plasmid)
+ L6_10_plasmid = efmcalculator2.ingest.parse_file(L6_10_plasmid)
inseqs = list()
- statemachine = efmcalculator.StateMachine.StateMachine()
+ statemachine = efmcalculator2.StateMachine.StateMachine()
statemachine.import_sequences(inseqs)
for seqobject in statemachine.user_sequences.values():
seqobject.call_predictions()
@@ -98,8 +98,8 @@ def test_unit_filtering_ssr(self):
if not is_circular:
should_exist += ["T", "CA"]
- ssr_df, _, _ = efmcalculator.predict(test_sequence, "pairwise", is_circular)
- ssr_df = efmcalculator.pipeline.filtering.filter_ssrs(ssr_df, len(test_sequence), is_circular)
+ ssr_df, _, _ = efmcalculator2.predict(test_sequence, "pairwise", is_circular)
+ ssr_df = efmcalculator2.pipeline.filtering.filter_ssrs(ssr_df, len(test_sequence), is_circular)
ssr_df = ssr_df.with_columns(
pl.lit(shouldnt_exist).alias("test_case")
@@ -115,7 +115,7 @@ class test_unit_filtering_rmd(unittest.TestCase):
def test_unit_filtering_rmd(self):
test_sequence = "AGTCCAA" + "AAAAAAAAAAAAAAAAAAAAA" + "AGTCCAA"
is_circular = False
- ssr_df, srs_df, rmd_df = efmcalculator.predict(test_sequence, "pairwise", is_circular)
+ ssr_df, srs_df, rmd_df = efmcalculator2.predict(test_sequence, "pairwise", is_circular)
if __name__ == "__main__":
unittest.main()
From 75f198cff3e5dcd2541d81cb01c42f02c19648ce Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 15 May 2025 15:57:42 -0500
Subject: [PATCH 05/47] Possible fix for streamlit dependency issue
---
requirements.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/requirements.txt b/requirements.txt
index 4ced80b..655c374 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1 @@
-efmcalculator @ git+github.com/barricklab/efmcalculator2@production
+efmcalculator @ git+https://github.com/barricklab/efmcalculator2@production
From 5766ba7ff4e04a2a21c0f81a53ea9da3014153e3 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 15 May 2025 15:58:34 -0500
Subject: [PATCH 06/47] Update requirements.txt
---
requirements.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/requirements.txt b/requirements.txt
index 655c374..9242876 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1 @@
-efmcalculator @ git+https://github.com/barricklab/efmcalculator2@production
+efmcalculator2 @ git+https://github.com/barricklab/efmcalculator2@production
From 941182f1e798ea91ff24aeed07960202522a5c57 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Fri, 16 May 2025 11:11:55 -0500
Subject: [PATCH 07/47] Fix bage pointing to old repo
---
efmcalculator2/webapp/webapp.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index cfe66b6..c1f1497 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -167,11 +167,11 @@ def run_webapp():
)
try:
from .._version import version_tuple
- st.markdown(f"Version {version_tuple[0]}.{version_tuple[1]}.{version_tuple[2]} ([{str(version_tuple[4])[1:8]}](https://www.github.com/barricklab/efm-calculator2/commit/{str(version_tuple[4]).split('.')[0][1:8]}))")
+ st.markdown(f"Version {version_tuple[0]}.{version_tuple[1]}.{version_tuple[2]} ([{str(version_tuple[4])[1:8]}](https://www.github.com/barricklab/efmcalculator2/commit/{str(version_tuple[4]).split('.')[0][1:8]}))")
except:
pass
with colbadge:
- st.html(r' ')
+ st.html(r' ')
col1,col2,col3 = st.columns([2,1,2])
From 94dff30c4ce45efbbeb0abb431db6ed74c9be5f5 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Fri, 16 May 2025 13:29:21 -0500
Subject: [PATCH 08/47] possible fix for download button
---
efmcalculator2/webapp/webapp.py | 54 ++++++++++++++-------------------
1 file changed, 22 insertions(+), 32 deletions(-)
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index c1f1497..d0b763f 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -39,39 +39,34 @@
import json
-
-
-def download_data(): # https://gist.github.com/snehankekre/2dcce9fb42b2f7e1742de7431326b263
- with TemporaryDirectory() as tempdir:
+@st.fragment
+def downloadfragment():
+ def download_data(tempdir): # https://gist.github.com/snehankekre/2dcce9fb42b2f7e1742de7431326b263
outputdir = tempdir + "/results"
os.mkdir(outputdir)
statemachine = st.session_state["statemachine"]
filetype = st.session_state["dlft"]
statemachine.save_results(outputdir, filetype=filetype)
- filestream=io.BytesIO() # https://stackoverflow.com/questions/75304410/streamlit-download-button-not-working-when-trying-to-download-files-as-zip
- with zipfile.ZipFile(filestream, mode='w', compression=zipfile.ZIP_DEFLATED) as zipf:
+ with zipfile.ZipFile(f"{outputdir}/results.zip", mode='w', compression=zipfile.ZIP_DEFLATED) as zipf:
for root, dirs, files in os.walk(outputdir):
for file in files:
zipf.write(os.path.join(root, file),
os.path.relpath(os.path.join(root, file),
os.path.join(outputdir, '..')))
- b64 = base64.b64encode(filestream.getvalue()).decode()
-
- dl_link = f"""
-
-
- Start Auto Download file
-
-
-
-
- """
- components.html(
- dl_link,
- height=0,
- )
+ return f"{outputdir}/results.zip"
+
+
+ with TemporaryDirectory() as tempdir:
+ if not st.session_state.get("dlft"):
+ st.session_state["dlft"] = "csv"
+ with open(download_data(tempdir), "rb") as fp:
+ st.download_button(label = "Download",
+ data = fp,
+ mime="application/zip",
+ use_container_width=True,
+ file_name="results.zip")
+ st.selectbox("Download File Format",["csv", "parquet"], key="dlft",
+ help="CSV files are easily usable in most spreadsheat programs but lack annotation information. Parquet files require specialized tooling but include annotation metadata")
def check_feats_look_circular(seq):
@@ -283,21 +278,15 @@ def run_webapp():
selectedhash = statemachine.named_sequences[selected_sequence]
seq_record = statemachine.sequencestates[selectedhash]
- with col6:
- with TemporaryDirectory() as tempdir:
- submit = st.button("Download results",
- on_click=download_data,
- use_container_width=True,
- type="primary")
- st.selectbox("Download File Format",["csv", "parquet"], key="dlft",
- help="CSV files are easily usable in most spreadsheat programs but lack annotation information. Parquet files require specialized tooling but include annotation metadata")
-
unique_features = seq_record.unique_annotations
if not seq_record.predicted:
seq_record.efmsequence.call_predictions(strategy="pairwise")
seq_record.post_predict_processing()
+ with col6:
+ downloadfragment()
+
figcontainer = st.container(height=340)
if unique_features:
@@ -368,5 +357,6 @@ def run_webapp():
sleep(0.1) # Helps to avoid two plots displayed
st.bokeh_chart(fig, use_container_width=True)
+
add_vertical_space(4)
seq_record.refreshed = False
From 2eaf7dff7cd6b3c3480acb777153fcef66e5ccbd Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Fri, 16 May 2025 13:30:06 -0500
Subject: [PATCH 09/47] fix warning about literal comparison
---
efmcalculator2/ingest/parse_inputs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efmcalculator2/ingest/parse_inputs.py b/efmcalculator2/ingest/parse_inputs.py
index 844023f..9eaf966 100644
--- a/efmcalculator2/ingest/parse_inputs.py
+++ b/efmcalculator2/ingest/parse_inputs.py
@@ -70,7 +70,7 @@ def validate_sequence(seq):
IUPAC_BASES = set("ACGTURYSWKMBDHVNacgturyswkmbdhvn")
sequence = str(seq.seq)
seq_set = set(sequence.upper().replace(" ", ""))
- if sequence is "":
+ if sequence == "":
raise BadSequenceError(
f"Input contains an empty sequence."
)
From bcd956c18ab6230bedc4f37824499d4b418d1df8 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Mon, 19 May 2025 11:59:03 -0500
Subject: [PATCH 10/47] remove extra print statement
---
efmcalculator2/ingest/EFMSequence.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/efmcalculator2/ingest/EFMSequence.py b/efmcalculator2/ingest/EFMSequence.py
index 01d3d8a..0853ade 100644
--- a/efmcalculator2/ingest/EFMSequence.py
+++ b/efmcalculator2/ingest/EFMSequence.py
@@ -179,8 +179,6 @@ def get_feature_bounds(feature_location):
schema=['type', 'loc', 'annotations', 'annotationobjects'],
orient="row")
- print(df)
-
# expand out loc
df = df.with_columns(pl.col("loc").list.to_struct(fields=['left_bound', 'right_bound'])).unnest("loc")
df = df.with_columns(
From 208a2cd31c6e83c9e7368de7e3b538f342817b63 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Mon, 19 May 2025 12:09:18 -0500
Subject: [PATCH 11/47] fix bugged top table assignment with rmds
---
efmcalculator2/webapp/vis_utils.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efmcalculator2/webapp/vis_utils.py b/efmcalculator2/webapp/vis_utils.py
index 3ff09fb..f1218f6 100644
--- a/efmcalculator2/webapp/vis_utils.py
+++ b/efmcalculator2/webapp/vis_utils.py
@@ -24,7 +24,7 @@ def eval_top(ssr_df=None, srs_df=None, rmd_df=None, num_report: int = 10):
)
valid_dataframes.append(srs_df_top)
- if isinstance(srs_df, pl.DataFrame) and not ssr_df.is_empty():
+ if isinstance(rmd_df, pl.DataFrame) and not rmd_df.is_empty():
rmd_df = rmd_df.sort(by="mutation_rate")
rmd_df_top = (
rmd_df.with_columns(source=pl.lit("RMD"))
From e8effa87b3e9a6f0cdd496844eaace4e34444df4 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 21 May 2025 12:46:58 -0500
Subject: [PATCH 12/47] 1 index for CLI and webapp outputs
---
efmcalculator2/cli.py | 2 ++
efmcalculator2/ingest/EFMSequence.py | 19 ++++++++++++++++++-
efmcalculator2/webapp/webapp.py | 7 +++++--
3 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/efmcalculator2/cli.py b/efmcalculator2/cli.py
index 32c86b8..9b568d2 100644
--- a/efmcalculator2/cli.py
+++ b/efmcalculator2/cli.py
@@ -201,6 +201,8 @@ def main():
# Unpack sequences into list ---------
sequences = list(sequences)
+ for seq in sequences:
+ seq.oneindex = True
# Run EFM Calculator ----------------
statemachine = StateMachine()
diff --git a/efmcalculator2/ingest/EFMSequence.py b/efmcalculator2/ingest/EFMSequence.py
index 0853ade..642812d 100644
--- a/efmcalculator2/ingest/EFMSequence.py
+++ b/efmcalculator2/ingest/EFMSequence.py
@@ -12,7 +12,7 @@
class EFMSequence(SeqRecord):
"""SeqRecord child class with equality handling and prediction methods"""
- def __init__(self, seqrecord: SeqRecord, is_circular = False, originhash = None):
+ def __init__(self, seqrecord: SeqRecord, is_circular = False, originhash = None, oneindex = False):
super().__init__(seq=seqrecord.seq,
id=seqrecord.id,
name=seqrecord.name,
@@ -43,6 +43,8 @@ def __init__(self, seqrecord: SeqRecord, is_circular = False, originhash = None)
self._plotted_predictions = []
self._ssr_webapp_state = None
+ self.oneindex = oneindex
+
@property
def seq(self):
@@ -101,6 +103,21 @@ def call_predictions(self, strategy):
self._rmds = rmd_df.with_columns(
pl.concat_str(pl.col(['repeat', 'repeat_len', "first_repeat", "second_repeat", "distance", "mutation_rate"])).hash().cast(pl.String).alias('predid')
)
+
+ if self.oneindex:
+ self._ssrs = self._ssrs.with_columns(
+ pl.col('start') + 1
+ )
+ self._srss = self._srss.with_columns(
+ pl.col('first_repeat') + 1,
+ pl.col('second_repeat') + 1
+ )
+ self._rmds = self._rmds.with_columns(
+ pl.col('first_repeat') + 1,
+ pl.col('second_repeat') + 1,
+ )
+
+
self._top = eval_top(self._ssrs, self._srss, self._rmds)
self._predicted = True
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index 1462948..f1a1886 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -40,7 +40,7 @@
@st.fragment
def downloadfragment():
- def download_data(tempdir):
+ def download_data(tempdir):
outputdir = tempdir + "/results"
os.mkdir(outputdir)
statemachine = st.session_state["statemachine"]
@@ -260,6 +260,9 @@ def run_webapp():
if not inSeq:
st.stop()
+ for seq in inSeq:
+ seq.oneindex = True
+
statemachine.import_sequences(inSeq, max_size=50000, webapp = True)
if len(inSeq) == 1:
@@ -285,7 +288,7 @@ def run_webapp():
with col6:
downloadfragment()
-
+
figcontainer = st.container(height=340)
if unique_features:
From 915ac325ef643a8fbb1ebdf2cef2fd12a14546b1 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 21 May 2025 12:48:36 -0500
Subject: [PATCH 13/47] Better filepath sanity checking
---
efmcalculator2/cli.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/efmcalculator2/cli.py b/efmcalculator2/cli.py
index 9b568d2..226864e 100644
--- a/efmcalculator2/cli.py
+++ b/efmcalculator2/cli.py
@@ -10,7 +10,6 @@
from Bio.SeqRecord import SeqRecord
from .utilities import (
- is_path_creatable,
is_pathname_valid,
)
from .ingest.EFMSequence import EFMSequence
@@ -160,7 +159,9 @@ def main():
elif not is_pathname_valid(args.outpath):
logger.error(f"File {args.outpath} is not a valid path.")
exit(1)
- elif not is_path_creatable(args.outpath):
+ try:
+ os.makedirs(args.outpath, exist_ok=True)
+ except:
logger.error(f"Cannot write to {args.outpath}")
exit(1)
From 0ce9bad914f74276e751d2e4dfc389b43054369c Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 21 May 2025 12:50:39 -0500
Subject: [PATCH 14/47] Allow unrealistically high probabilities
---
efmcalculator2/pipeline/mutation_rates.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/efmcalculator2/pipeline/mutation_rates.py b/efmcalculator2/pipeline/mutation_rates.py
index 0dfa1b5..c179e97 100644
--- a/efmcalculator2/pipeline/mutation_rates.py
+++ b/efmcalculator2/pipeline/mutation_rates.py
@@ -146,10 +146,12 @@ def rip_score(ssr_df, srs_df, rmd_df, sequence_length):
# Add in the mutation rate of an individual nucleotide
r_sum = float(ssr_sum + srs_sum + rmd_sum + base_rate)
+ '''
# Set the maximum rate sum to 1 for now.
if r_sum > 1:
r_sum = float(1)
rel_rate = float(r_sum) / float(base_rate)
+ '''
return {
"rip": rel_rate,
From 171486ddba4b9fd4860ff16b874eb1a04557275d Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 21 May 2025 12:55:31 -0500
Subject: [PATCH 15/47] Fix rel_rate error
---
efmcalculator2/pipeline/mutation_rates.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/efmcalculator2/pipeline/mutation_rates.py b/efmcalculator2/pipeline/mutation_rates.py
index c179e97..073c15b 100644
--- a/efmcalculator2/pipeline/mutation_rates.py
+++ b/efmcalculator2/pipeline/mutation_rates.py
@@ -150,9 +150,10 @@ def rip_score(ssr_df, srs_df, rmd_df, sequence_length):
# Set the maximum rate sum to 1 for now.
if r_sum > 1:
r_sum = float(1)
- rel_rate = float(r_sum) / float(base_rate)
'''
+ rel_rate = float(r_sum) / float(base_rate)
+
return {
"rip": rel_rate,
"ssr_sum": ssr_sum,
From bac42d8c51e1b7ef17cde9e673fa8c76ccf7599a Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 21 May 2025 16:00:50 -0500
Subject: [PATCH 16/47] Fix text input webapp not responding
---
efmcalculator2/webapp/webapp.py | 23 +++++++++++++++++------
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index f1a1886..6a495fe 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -148,6 +148,11 @@ def run_webapp():
}
""", unsafe_allow_html=True)
+ # Initialize session state
+ if not st.session_state.get("statemachine", False):
+ st.session_state["statemachine"] = StateMachine()
+ statemachine = st.session_state["statemachine"]
+
collogo,_,colbadge = st.columns([2,1,2], vertical_alignment="bottom")
with collogo:
st.markdown(
@@ -187,13 +192,9 @@ def run_webapp():
st.write("Jack, B. R., Leonard, S. P., Mishler, D. M., Renda, B. A., Leon, D., Suárez, G. A., & Barrick, J. E. (2015). Predicting the Genetic Stability of Engineered DNA Sequences with the EFM Calculator. ACS Synthetic Biology, 4(8), 939–943. https://doi.org/10.1021/acssynbio.5b00068")
- # Initialize session state
- if not st.session_state.get("statemachine", False):
- st.session_state["statemachine"] = StateMachine()
- statemachine = st.session_state["statemachine"]
-
with TemporaryDirectory() as tempdir:
is_circular = True
+ field = None
if option == upload_option:
with col1:
is_circular = st.checkbox(label="Circular Prediction", value=True)
@@ -237,6 +238,7 @@ def run_webapp():
field = field.replace("\n", "")
field = field.replace(" ", "")
field = "".join([i for i in field if not i.isdigit()])
+ last_text_input = st.session_state.get("last_text_input", "")
if field:
record = SeqRecord(Seq(field), id="sequence")
originhash = hashlib.md5(("string" + field).encode())
@@ -263,7 +265,14 @@ def run_webapp():
for seq in inSeq:
seq.oneindex = True
- statemachine.import_sequences(inSeq, max_size=50000, webapp = True)
+ print(f"{option == enter_option} and {field == st.session_state.get("last_text_input", "")}")
+ print(f"{field=}, {st.session_state.get("last_text_input", "")=}")
+ if option == enter_option and field == st.session_state.get("last_text_input", ""):
+ pass
+ else:
+ print("reimporting")
+ statemachine.import_sequences(inSeq, max_size=50000, webapp = True)
+ st.session_state["last_text_input"] = field
if len(inSeq) == 1:
disable_dropdown = True
@@ -282,6 +291,8 @@ def run_webapp():
unique_features = seq_record.unique_annotations
+ print(seq_record)
+
if not seq_record.predicted:
seq_record.efmsequence.call_predictions(strategy="pairwise")
seq_record.post_predict_processing()
From 3cc6b89498b88f9951c010b11a0019cce4841c38 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Thu, 22 May 2025 10:01:20 -0500
Subject: [PATCH 17/47] fixed filtering of nested SSRs
---
efmcalculator2/pipeline/filtering.py | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 1bd9c9c..e261752 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -45,11 +45,16 @@ def filter_ssrs(ssr_dataframe, seq_len, circular):
if(not circular):
joined = (
joined.filter(
- # these repeats are fully contained in another repeat, and has less count
+ # scenario 1: ssr occupies the same space as another ssr, but has less count
+ # scenario 2: sr is a smaller version of anothr ssr
(
(pl.col("start") >= pl.col("start_right")) &
(pl.col("end") <= pl.col("end_right")) &
- (pl.col("count") <= pl.col("count_right"))
+ (
+ (pl.col("count") <= pl.col("count_right")) &
+ # prevent nested SSR from being filtered out (GGCGGCGGCAGC...)
+ ((pl.col("end_right") - pl.col("end")).abs() < pl.col("repeat_len"))
+ )
) |
# these repeats are alternate versions of other SSRs
(
@@ -80,7 +85,11 @@ def filter_ssrs(ssr_dataframe, seq_len, circular):
(pl.col("modified_end") <= pl.col("modified_end_right"))
)
) &
- (pl.col("count") <= pl.col("count_right"))
+ (
+ (pl.col("count") <= pl.col("count_right")) &
+ # prevent nested SSR from being filtered out (GGCGGCGGCAGC...)
+ ((pl.col("end_right") - pl.col("end")).abs() < pl.col("repeat_len"))
+ )
) |
# these repeats are alternate versions of other SSRs
(
From e79b6a942ceb9090150ae492b5cce4053e8e0c6d Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 22 May 2025 10:26:04 -0500
Subject: [PATCH 18/47] possible fix for windows filepath issues
---
efmcalculator2/StateMachine.py | 5 ++++-
efmcalculator2/utilities.py | 29 -----------------------------
efmcalculator2/webapp/webapp.py | 6 +-----
3 files changed, 5 insertions(+), 35 deletions(-)
diff --git a/efmcalculator2/StateMachine.py b/efmcalculator2/StateMachine.py
index b7cf04d..e31a67b 100644
--- a/efmcalculator2/StateMachine.py
+++ b/efmcalculator2/StateMachine.py
@@ -10,6 +10,7 @@
import multiprocessing as mp
from .pipeline.mutation_rates import rip_score
from .webapp.SequenceState import SequenceState
+from .utilities import sanitize_filename
class ThreadSafeBar(Bar):
def __init__(self, *args, **kwargs):
@@ -78,6 +79,7 @@ def import_sequences(self, sequences, max_size=None, webapp = False):
self.named_sequences[sequence_name] = seqhash
def predict_tall(self, outpath, strategy, filetype, threads, keepmem=False, summaryonly=False):
+ outpath = sanitize_filename(outpath)
samples = []
for seqname in self.named_sequences:
seqhash = self.named_sequences[seqname]
@@ -117,6 +119,7 @@ def predict_tall(self, outpath, strategy, filetype, threads, keepmem=False, summ
summary_df.write_csv(summarypath)
def save_results(self, folderpath, prediction_style = None, filetype = "parquet", summaryonly=False):
+ folderpath = sanitize_filename(folderpath)
summary_df = pl.DataFrame([
pl.Series("name", [], dtype=pl.String),
pl.Series("ssr_sum", [], dtype=pl.Float64),
@@ -157,7 +160,7 @@ def save_results(self, folderpath, prediction_style = None, filetype = "parquet"
srss = seqobj.srss.select(pl.exclude(["predid", "annotationobjects"]))
rmds = seqobj.rmds.select(pl.exclude(["predid", "annotationobjects"]))
- folder = os.path.join(folderpath, f"{seqname}")
+ folder = os.path.join(folderpath, sanitize_filename("{seqname}"))
path = pathlib.Path(folder)
path.mkdir(parents=True)
if filetype == "parquet":
diff --git a/efmcalculator2/utilities.py b/efmcalculator2/utilities.py
index 04d5f29..f64add7 100644
--- a/efmcalculator2/utilities.py
+++ b/efmcalculator2/utilities.py
@@ -112,35 +112,6 @@ def is_pathname_valid(pathname: str) -> bool:
# Did we mention this should be shipped with Python already?
-def is_path_creatable(pathname: str) -> bool:
- """
- `True` if the current user has sufficient permissions to create the passed
- pathname; `False` otherwise.
- """
- # Parent directory of the passed path. If empty, we substitute the current
- # working directory (CWD) instead.
- dirname = os.path.dirname(pathname) or os.getcwd()
- return os.access(dirname, os.W_OK)
-
-
-def is_path_exists_or_creatable(pathname: str) -> bool:
- """
- `True` if the passed pathname is a valid pathname for the current OS _and_
- either currently exists or is hypothetically creatable; `False` otherwise.
-
- This function is guaranteed to _never_ raise exceptions.
- """
- try:
- # To prevent "os" module calls from raising undesirable exceptions on
- # invalid pathnames, is_pathname_valid() is explicitly called first.
- return is_pathname_valid(pathname) and (
- os.path.exists(pathname) or is_path_creatable(pathname)
- )
- # Report failure on non-fatal filesystem complaints (e.g., connection
- # timeouts, permissions issues) implying this path to be inaccessible. All
- # other exceptions are unrelated fatal issues and should not be caught here.
- except OSError:
- return False
def sanitize_filename(unsanitized_string: str) -> str:
return "".join(
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index 6a495fe..14048a3 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -265,12 +265,10 @@ def run_webapp():
for seq in inSeq:
seq.oneindex = True
- print(f"{option == enter_option} and {field == st.session_state.get("last_text_input", "")}")
- print(f"{field=}, {st.session_state.get("last_text_input", "")=}")
+
if option == enter_option and field == st.session_state.get("last_text_input", ""):
pass
else:
- print("reimporting")
statemachine.import_sequences(inSeq, max_size=50000, webapp = True)
st.session_state["last_text_input"] = field
@@ -291,8 +289,6 @@ def run_webapp():
unique_features = seq_record.unique_annotations
- print(seq_record)
-
if not seq_record.predicted:
seq_record.efmsequence.call_predictions(strategy="pairwise")
seq_record.post_predict_processing()
From 23d1168fca3e6ee3ebf10422ce7d27151e67b0cb Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Thu, 22 May 2025 11:34:36 -0500
Subject: [PATCH 19/47] Fix order of operations and statemachine clearing for
multi input
---
efmcalculator2/StateMachine.py | 2 +-
efmcalculator2/webapp/SequenceState.py | 8 ++++++--
efmcalculator2/webapp/webapp.py | 17 ++++++++++++-----
3 files changed, 19 insertions(+), 8 deletions(-)
diff --git a/efmcalculator2/StateMachine.py b/efmcalculator2/StateMachine.py
index e31a67b..4ee30e2 100644
--- a/efmcalculator2/StateMachine.py
+++ b/efmcalculator2/StateMachine.py
@@ -160,7 +160,7 @@ def save_results(self, folderpath, prediction_style = None, filetype = "parquet"
srss = seqobj.srss.select(pl.exclude(["predid", "annotationobjects"]))
rmds = seqobj.rmds.select(pl.exclude(["predid", "annotationobjects"]))
- folder = os.path.join(folderpath, sanitize_filename("{seqname}"))
+ folder = os.path.join(folderpath, sanitize_filename(f"{seqname}"))
path = pathlib.Path(folder)
path.mkdir(parents=True)
if filetype == "parquet":
diff --git a/efmcalculator2/webapp/SequenceState.py b/efmcalculator2/webapp/SequenceState.py
index c8d1acc..22519fb 100644
--- a/efmcalculator2/webapp/SequenceState.py
+++ b/efmcalculator2/webapp/SequenceState.py
@@ -34,6 +34,8 @@ def __init__(self, efmsequence):
self.srskey = f"srstable{self.counter}"
self.rmdkey = f"rmdtable{self.counter}"
+ self._last_filters = []
+
# Data from upstream EFMSequence
@property
@@ -66,7 +68,6 @@ def post_predict_processing(self):
self._filtered_srss = None
self._filtered_rmds = None
self._filtered_top = None
- self._last_filters = []
self.set_filters(None)
self.last_top_selections = None
@@ -415,6 +416,8 @@ def update_rmd_session(self, callbackobj):
state = callbackobj.grid_response["gridState"]
new_selection = state.get('rowSelection', [])
+ print(f"Before: {self.last_rmd_selections}, {new_selection}")
+
if self.last_rmd_selections is not None and self.last_rmd_selections == new_selection:
return
if self.last_rmd_selections is None:
@@ -422,16 +425,17 @@ def update_rmd_session(self, callbackobj):
if self.last_rmd_selections == new_selection:
return
+
self.counter += 1
self.topkey = f"toptable{self.counter}"
to_drop = [int(x) for x in self.last_rmd_selections if x not in new_selection]
to_add = [int(x) for x in new_selection if x not in self.last_rmd_selections]
-
self._update_general_table(self._filtered_rmds, to_drop, to_add)
self.last_rmd_selections = new_selection
+ print(f"After: {self.last_rmd_selections}, {new_selection}")
def annotation_coverage(self, annotations):
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index 14048a3..50a2120 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -1,3 +1,4 @@
+from os.path import normpath
import streamlit as st
import subprocess
import io
@@ -45,7 +46,7 @@ def download_data(tempdir):
os.mkdir(outputdir)
statemachine = st.session_state["statemachine"]
filetype = st.session_state["dlft"]
- statemachine.save_results(outputdir, filetype=filetype)
+ statemachine.save_results(outputdir, filetype=filetype, prediction_style="pairwise")
with zipfile.ZipFile(f"{outputdir}/results.zip", mode='w', compression=zipfile.ZIP_DEFLATED) as zipf:
for root, dirs, files in os.walk(outputdir):
for file in files:
@@ -226,6 +227,8 @@ def run_webapp():
inSeq.extend(file_sequences)
st.success("Files uploaded.")
+ else:
+ st.session_state["statemachine"] = StateMachine()
elif option == enter_option:
with col1:
@@ -244,6 +247,8 @@ def run_webapp():
originhash = hashlib.md5(("string" + field).encode())
record = EFMSequence(record, is_circular, originhash)
inSeq = [record]
+ else:
+ st.session_state["statemachine"] = StateMachine()
elif option == example_option:
with col1:
@@ -272,6 +277,12 @@ def run_webapp():
statemachine.import_sequences(inSeq, max_size=50000, webapp = True)
st.session_state["last_text_input"] = field
+ for seq in statemachine.sequencestates.values():
+ if not seq.predicted:
+ seq.efmsequence.call_predictions(strategy="pairwise")
+ seq.post_predict_processing()
+ seq.reset_selected_predictions()
+
if len(inSeq) == 1:
disable_dropdown = True
else:
@@ -289,10 +300,6 @@ def run_webapp():
unique_features = seq_record.unique_annotations
- if not seq_record.predicted:
- seq_record.efmsequence.call_predictions(strategy="pairwise")
- seq_record.post_predict_processing()
-
with col6:
downloadfragment()
From f22fe2f0fe2517c90cdc47c3178ef8b15db55808 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Mon, 26 May 2025 18:55:59 -0500
Subject: [PATCH 20/47] fix filtering of nested RMDs
---
efmcalculator2/pipeline/filtering.py | 104 ++++++++++++++++++---------
1 file changed, 72 insertions(+), 32 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index e261752..315742a 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -168,30 +168,29 @@ def filter_direct_repeats(rmd_dataframe, srs_dataframe, seq_len, ssr_dataframe,
)
.sort(["first_repeat", "repeat_len"], descending=[False, True])
.with_columns(
- pl.col("first_repeat").shift(1).alias("last_first_repeat"),
- pl.col("second_repeat").shift(1).list.unique().alias("last_second_repeat"),
- pl.col("repeat_len").shift(1).alias("last_len")
+ pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
+ pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
+ pl.col("repeat_len").shift(1).alias("prv_len")
)
.explode(["second_repeat", "distance", "type"])
.with_row_index()
)
- # Create a list of indices that should be deleted
# Delete instances of smaller repeats that are in bigger repeats (ex. 2 copies of "AAGTCAT" and 3 copies of "AAGTCA". Delete the instance of "AAGTCA" that
# corresponds to the "AAGTCAT" repeat and keep the other 2 pairwise repeats)
filter_out = (
combined_dataframe
.filter(
- (pl.col("first_repeat") == pl.col("last_first_repeat")) &
- (pl.col("last_second_repeat").list.contains(pl.col("second_repeat"))) &
- (pl.col("repeat_len") < pl.col("last_len"))
+ (pl.col("first_repeat") == pl.col("prv_first_repeat")) &
+ (pl.col("prv_second_repeat").list.contains(pl.col("second_repeat"))) &
+ (pl.col("repeat_len") < pl.col("prv_len"))
)
- .select("index").to_series().to_list()
)
-
- # Create another list of indices that should be deleted
+ combined_dataframe = combined_dataframe.join(filter_out, on="index", how="anti")
+
+
# Delete shorter versions of the same repeat that start at different positions
filter_out_2 = (
combined_dataframe
@@ -202,42 +201,33 @@ def filter_direct_repeats(rmd_dataframe, srs_dataframe, seq_len, ssr_dataframe,
pl.first("repeat_len"),
pl.col("distance"),
pl.col("type"),
- pl.first("last_first_repeat"),
- pl.first("last_second_repeat"),
- pl.first("last_len"),
pl.col("index")
)
.with_columns(
- pl.col("first_repeat").shift(1).alias("last_first_repeat"),
- pl.col("second_repeat").shift(1).list.unique().alias("last_second_repeat"),
- pl.col("repeat_len").shift(1).alias("last_len")
+ pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
+ pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
+ pl.col("repeat_len").shift(1).alias("prv_len")
)
.explode(["repeat", "second_repeat", "distance", "type", "index"])
.with_columns(
- (pl.col("first_repeat") - pl.col("last_first_repeat")).alias("difference")
+ (pl.col("first_repeat") - pl.col("prv_first_repeat")).alias("difference")
)
.with_columns(
(pl.col("first_repeat") - pl.col("difference")).alias("adjusted_first_repeat"),
(pl.col("second_repeat") - pl.col("difference")).alias("adjusted_second_repeat")
)
.filter(
- (pl.col("adjusted_first_repeat") == pl.col("last_first_repeat")) &
- (pl.col("last_second_repeat").list.contains(pl.col("adjusted_second_repeat"))) &
- (pl.col("repeat_len") <= pl.col("last_len"))
+ (pl.col("adjusted_first_repeat") == pl.col("prv_first_repeat")) &
+ (pl.col("prv_second_repeat").list.contains(pl.col("adjusted_second_repeat"))) &
+ (pl.col("repeat_len") <= pl.col("prv_len"))
)
- .select("index").to_series().to_list()
- )
-
- # Filter out repetas with indices in either of the lists
- filtered_df = combined_dataframe.filter(
- ~(
- (pl.col("index").is_in(filter_out)) |
- (pl.col("index").is_in(filter_out_2))
+ #.select("index").to_series().to_list()
)
- )
+
+ combined_dataframe = combined_dataframe.join(filter_out_2, on="index", how="anti")
- # filter out SRS nested fully inside SSRs
+ # filter out SRS nested fully inside SSRs
# if statement needed because cross join with an empty df creates an empty df
if ssr_dataframe.height > 0:
ssr_dataframe = (
@@ -294,8 +284,8 @@ def check_nested(row):
# Apply function to each row
- filtered_df = (
- filtered_df.with_columns(
+ combined_dataframe = (
+ combined_dataframe.with_columns(
pl.struct(["first_repeat", "second_repeat", "repeat_len"])
.map_elements(check_nested, return_dtype=pl.Boolean)
.alias("nested")
@@ -303,6 +293,56 @@ def check_nested(row):
.filter(~pl.col("nested")) # Filter out rows where nested=True
)
+
+ # Remove redundant repeats where positions of smaller repeat are different than larger repeat but are still fully contained
+ filter_out_3 = (
+ combined_dataframe
+ .sort(["first_repeat", "repeat_len"], descending=[False, True])
+ .with_columns(
+ (pl.col("first_repeat") + pl.col("repeat_len")).alias("first_end"),
+ (pl.col("second_repeat") + pl.col("repeat_len")).alias("second_end")
+ )
+ .group_by("repeat", maintain_order=True)
+ .agg(
+ pl.col("first_repeat"),
+ pl.col("second_repeat"),
+ pl.col("repeat_len"),
+ pl.col("distance"),
+ pl.col("type"),
+ pl.col("index"),
+ pl.col("first_end"),
+ pl.col("second_end")
+ )
+ .with_columns(
+ pl.col("first_repeat").shift(1).list.unique().alias("prv_first_repeat"),
+ pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
+ pl.col("repeat_len").shift(1).alias("prv_len"),
+ pl.col("first_end").shift(1).list.unique().alias("prv_first_end"),
+ pl.col("second_end").shift(1).list.unique().alias("prv_second_end"),
+ )
+ .with_columns(
+ pl.col("prv_first_repeat").fill_null([]),
+ pl.col("prv_first_end").fill_null([]),
+ pl.col("prv_second_repeat").fill_null([]),
+ pl.col("prv_second_end").fill_null([]),
+ )
+ .explode(["first_repeat", "second_repeat", "repeat_len", "distance", "type", "index", "first_end", "second_end"])
+ .explode(["prv_first_repeat", "prv_first_end"])
+ .explode(["prv_second_repeat", "prv_second_end"])
+ .filter(
+ (
+ (pl.col("first_repeat") >= pl.col("prv_first_repeat")) &
+ (pl.col("first_end") <= pl.col("prv_first_end"))
+ ) &
+ (pl.col("second_repeat") >= pl.col("prv_second_repeat")) &
+ (pl.col("second_end") <= pl.col("prv_second_end"))
+ )
+ # drop added columns so anti join can be performed
+ .drop(["first_end", "second_end", "prv_first_end", "prv_second_end"])
+ )
+
+ filtered_df = combined_dataframe.join(filter_out_3, on="index", how="anti")
+
filtered_df = filtered_df.select("repeat", "repeat_len", "first_repeat", "second_repeat", "distance", "type")
# split back into rmd_dataframe and srs_dataframe
From 8a6d7930a0f4454df50918dc81e23c3589810cb8 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Mon, 26 May 2025 19:49:23 -0500
Subject: [PATCH 21/47] fix filtering of nested SSRs
---
efmcalculator2/pipeline/filtering.py | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 315742a..57907da 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -46,15 +46,13 @@ def filter_ssrs(ssr_dataframe, seq_len, circular):
joined = (
joined.filter(
# scenario 1: ssr occupies the same space as another ssr, but has less count
- # scenario 2: sr is a smaller version of anothr ssr
+ # scenario 2: ssr is a smaller version of anothr ssr
(
(pl.col("start") >= pl.col("start_right")) &
(pl.col("end") <= pl.col("end_right")) &
- (
- (pl.col("count") <= pl.col("count_right")) &
- # prevent nested SSR from being filtered out (GGCGGCGGCAGC...)
- ((pl.col("end_right") - pl.col("end")).abs() < pl.col("repeat_len"))
- )
+ (pl.col("count") <= pl.col("count_right")) &
+ # prevent nested SSR from being filtered out (GGCGGCGGCAGC...)
+ (pl.col("repeat_len")*pl.col("count") > pl.col("repeat_len_right"))
) |
# these repeats are alternate versions of other SSRs
(
@@ -88,7 +86,7 @@ def filter_ssrs(ssr_dataframe, seq_len, circular):
(
(pl.col("count") <= pl.col("count_right")) &
# prevent nested SSR from being filtered out (GGCGGCGGCAGC...)
- ((pl.col("end_right") - pl.col("end")).abs() < pl.col("repeat_len"))
+ (pl.col("repeat_len")*pl.col("count") > pl.col("repeat_len_right"))
)
) |
# these repeats are alternate versions of other SSRs
From c62ba34ae1782ceea185b3aeaf6331517dc161a0 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Tue, 27 May 2025 15:37:42 -0500
Subject: [PATCH 22/47] changes to RMD filtering to reduce memory usage
---
efmcalculator2/pipeline/filtering.py | 51 ++++++++++++++++++----------
1 file changed, 33 insertions(+), 18 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 57907da..ee7c10a 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -296,10 +296,7 @@ def check_nested(row):
filter_out_3 = (
combined_dataframe
.sort(["first_repeat", "repeat_len"], descending=[False, True])
- .with_columns(
- (pl.col("first_repeat") + pl.col("repeat_len")).alias("first_end"),
- (pl.col("second_repeat") + pl.col("repeat_len")).alias("second_end")
- )
+
.group_by("repeat", maintain_order=True)
.agg(
pl.col("first_repeat"),
@@ -307,33 +304,51 @@ def check_nested(row):
pl.col("repeat_len"),
pl.col("distance"),
pl.col("type"),
- pl.col("index"),
- pl.col("first_end"),
- pl.col("second_end")
+ pl.col("index")
)
.with_columns(
- pl.col("first_repeat").shift(1).list.unique().alias("prv_first_repeat"),
- pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
+ (pl.col("first_repeat") + pl.col("repeat_len")).alias("first_end"),
+ (pl.col("second_repeat") + pl.col("repeat_len")).alias("second_end")
+ )
+ .with_columns(
+ pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
+ pl.col("second_repeat").shift(1).alias("prv_second_repeat"),
pl.col("repeat_len").shift(1).alias("prv_len"),
- pl.col("first_end").shift(1).list.unique().alias("prv_first_end"),
- pl.col("second_end").shift(1).list.unique().alias("prv_second_end"),
+ pl.col("first_end").shift(1).alias("prv_first_end"),
+ pl.col("second_end").shift(1).alias("prv_second_end"),
)
+ .explode(["first_repeat", "first_end", "repeat_len", "distance", "type", "index"])
.with_columns(
pl.col("prv_first_repeat").fill_null([]),
pl.col("prv_first_end").fill_null([]),
pl.col("prv_second_repeat").fill_null([]),
pl.col("prv_second_end").fill_null([]),
)
- .explode(["first_repeat", "second_repeat", "repeat_len", "distance", "type", "index", "first_end", "second_end"])
- .explode(["prv_first_repeat", "prv_first_end"])
- .explode(["prv_second_repeat", "prv_second_end"])
+ .with_columns(
+ pl.struct(["prv_first_repeat", "prv_first_end", "first_repeat", "first_end"]).map_elements(
+ lambda row: any(
+ r <= row["first_repeat"] and e >= row["first_end"]
+ for r, e in zip(row["prv_first_repeat"], row["prv_first_end"])
+ ), return_dtype=pl.Boolean
+ ).alias("first_repeat_redundant"),
+ pl.struct(["prv_second_repeat", "prv_second_end", "second_repeat", "second_end"]).map_elements(
+ lambda row: any(
+ r <= sr and e >= se
+ for r, e in zip(row["prv_second_repeat"], row["prv_second_end"])
+ for sr, se in zip(row["second_repeat"], row["second_end"])
+ ), return_dtype=pl.Boolean
+ ).alias("second_repeat_redundant")
+ )
+ #.explode(["repeat_len", "distance", "type", "index"])
.filter(
(
- (pl.col("first_repeat") >= pl.col("prv_first_repeat")) &
- (pl.col("first_end") <= pl.col("prv_first_end"))
+ #(pl.col("first_repeat") >= pl.col("prv_first_repeat")) &
+ #(pl.col("first_end") <= pl.col("prv_first_end"))
+ pl.col("first_repeat_redundant") == True
) &
- (pl.col("second_repeat") >= pl.col("prv_second_repeat")) &
- (pl.col("second_end") <= pl.col("prv_second_end"))
+ (pl.col("second_repeat_redundant") == True)
+ #(pl.col("second_repeat") >= pl.col("prv_second_repeat")) &
+ #(pl.col("second_end") <= pl.col("prv_second_end"))
)
# drop added columns so anti join can be performed
.drop(["first_end", "second_end", "prv_first_end", "prv_second_end"])
From a6ba42cfb794439c77edac1c385424198af1e570 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 28 May 2025 10:57:09 -0500
Subject: [PATCH 23/47] Fix webapp forgetting incremental new files
---
efmcalculator2/StateMachine.py | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/efmcalculator2/StateMachine.py b/efmcalculator2/StateMachine.py
index 4ee30e2..15d75da 100644
--- a/efmcalculator2/StateMachine.py
+++ b/efmcalculator2/StateMachine.py
@@ -11,6 +11,7 @@
from .pipeline.mutation_rates import rip_score
from .webapp.SequenceState import SequenceState
from .utilities import sanitize_filename
+from copy import deepcopy
class ThreadSafeBar(Bar):
def __init__(self, *args, **kwargs):
@@ -54,10 +55,14 @@ def import_sequences(self, sequences, max_size=None, webapp = False):
"""Import newly uploaded sequences while retaining state of existing sequences"""
# Import sequences without overwriting old ones
new = {seq._originhash: seq for seq in sequences}
+ retained_states = {}
for key in new:
+ print(key)
if key in self.user_sequences:
new[key] = self.user_sequences[key]
- if new == self.user_sequences:
+ if webapp:
+ retained_states[key] = deepcopy(self.sequencestates[key])
+ if new.keys() == self.user_sequences.keys():
return
self.user_sequences = new
@@ -66,7 +71,9 @@ def import_sequences(self, sequences, max_size=None, webapp = False):
# Make webapp states
if webapp:
- self.sequencestates = {key: SequenceState(value) for key, value in self.user_sequences.items()}
+ self.sequencestates = {key: SequenceState(value) for key, value in self.user_sequences.items() if key not in retained_states.keys()}
+ self.sequencestates.update(retained_states)
+
# Update sequence names
self.named_sequences = {}
From 06a5e2df487e1f49339c2b73ead07b49cc4598f7 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 28 May 2025 11:58:19 -0500
Subject: [PATCH 24/47] Fix wonky ssr glyphs
---
efmcalculator2/StateMachine.py | 1 -
efmcalculator2/webapp/bokeh_plot.py | 8 ++++----
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/efmcalculator2/StateMachine.py b/efmcalculator2/StateMachine.py
index 15d75da..40e71e6 100644
--- a/efmcalculator2/StateMachine.py
+++ b/efmcalculator2/StateMachine.py
@@ -57,7 +57,6 @@ def import_sequences(self, sequences, max_size=None, webapp = False):
new = {seq._originhash: seq for seq in sequences}
retained_states = {}
for key in new:
- print(key)
if key in self.user_sequences:
new[key] = self.user_sequences[key]
if webapp:
diff --git a/efmcalculator2/webapp/bokeh_plot.py b/efmcalculator2/webapp/bokeh_plot.py
index 3f076e5..a0d0d97 100644
--- a/efmcalculator2/webapp/bokeh_plot.py
+++ b/efmcalculator2/webapp/bokeh_plot.py
@@ -310,7 +310,7 @@ def plot_ssr(fig, ssr_df):
left_pos = row["start"]
repeat_len = row["repeat_len"]
y_height = row["level"]*MARKER_HEIGHT*1.5
- glyph = [[point[0]*repeat_len+left_pos, point[1]+OUTLINE_PADDING_Y] for point in ssr_shape]
+ glyph = [[point[0]*(repeat_len*row["count"])+left_pos, point[1]+OUTLINE_PADDING_Y] for point in ssr_shape]
ssr_source["x"].append([x for x, _ in glyph])
ssr_source["y"].append([y+y_height+MARKER_HEIGHT*0.5 for _, y in glyph])
@@ -323,11 +323,11 @@ def plot_ssr(fig, ssr_df):
ssr_source["sequence"].append(row["repeat"]*repeat_len)
# Outline
- outline = [[point[0]*repeat_len+left_pos, point[1]+OUTLINE_PADDING_Y] for point in ssr_shape]
+ outline = [[point[0]*(repeat_len*row["count"])+left_pos, point[1]+OUTLINE_PADDING_Y] for point in ssr_shape]
outline_mods = [[-OUTLINE_PADDING_X, -OUTLINE_PADDING_Y],
- [OUTLINE_PADDING_X+repeat_len, -OUTLINE_PADDING_Y],
- [OUTLINE_PADDING_X+repeat_len, OUTLINE_PADDING_Y],
+ [OUTLINE_PADDING_X, -OUTLINE_PADDING_Y],
+ [OUTLINE_PADDING_X, OUTLINE_PADDING_Y],
[-OUTLINE_PADDING_X, OUTLINE_PADDING_Y],
[-OUTLINE_PADDING_X, -OUTLINE_PADDING_Y]]
for i in range(len(outline)):
From 050460acd9403c470c5a755e9d50c13465ca8d53 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 28 May 2025 12:09:00 -0500
Subject: [PATCH 25/47] Make webapp sequence columns editable
---
efmcalculator2/webapp/SequenceState.py | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/efmcalculator2/webapp/SequenceState.py b/efmcalculator2/webapp/SequenceState.py
index 22519fb..7a56711 100644
--- a/efmcalculator2/webapp/SequenceState.py
+++ b/efmcalculator2/webapp/SequenceState.py
@@ -137,7 +137,7 @@ def rebuild_top_table(self):
builder.configure_selection(selection_mode='multiple', use_checkbox= True, pre_selected_rows= preselected_indices)
builder.configure_grid_options(onCellMouseOver=cell_hover_handler)
- builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat")
+ builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat", editable=True)
builder.configure_column("mutation_rate", header_name="Mutation Rate",
type=["numericColumn"], valueFormatter="x.toExponential(2)")
builder.configure_column("annotations", header_name="Annotations", tooltipField="annotations")
@@ -225,9 +225,8 @@ def rebuild_ssr_table(self):
pandas_conversion = self._filtered_ssrs.to_pandas()
builder = GridOptionsBuilder.from_dataframe(pandas_conversion)
builder.configure_selection(selection_mode='multiple', use_checkbox= True, pre_selected_rows= preselected_indices)
-
builder.configure_grid_options(onCellMouseOver=cell_hover_handler)
- builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat")
+ builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat", editable=True)
builder.configure_column("repeat_len", header_name="Repeat Length", type=["numericColumn"])
builder.configure_column("start", header_name="Start", type=["numericColumn"])
builder.configure_column("count", header_name="Count", type=["numericColumn"])
@@ -311,7 +310,7 @@ def rebuild_srs_table(self):
builder = GridOptionsBuilder.from_dataframe(pandas_conversion)
builder.configure_selection(selection_mode='multiple', use_checkbox= True, pre_selected_rows= preselected_indices)
builder.configure_grid_options(onCellMouseOver=cell_hover_handler)
- builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat")
+ builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat", editable=True)
builder.configure_column("repeat_len", header_name="Repeat Length", type=["numericColumn"])
builder.configure_column("first_repeat", header_name="First Repeat", type=["numericColumn"])
builder.configure_column("second_repeat", header_name="Second Repeat", type=["numericColumn"])
@@ -397,7 +396,7 @@ def rebuild_rmd_table(self):
builder = GridOptionsBuilder.from_dataframe(pandas_conversion)
builder.configure_selection(selection_mode='multiple', use_checkbox= True, pre_selected_rows= preselected_indices)
builder.configure_grid_options(onCellMouseOver=cell_hover_handler)
- builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat")
+ builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat", editable=True)
builder.configure_column("repeat_len", header_name="Repeat Length", type=["numericColumn"])
builder.configure_column("first_repeat", header_name="First Repeat", type=["numericColumn"])
builder.configure_column("second_repeat", header_name="Second Repeat", type=["numericColumn"])
From 727318e708e266f8a0f8e287941346ff8e7c39bd Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Mon, 9 Jun 2025 14:22:48 -0500
Subject: [PATCH 26/47] fixed overfiltering of nested RMDs
---
efmcalculator2/pipeline/filtering.py | 41 ++++++++++++++++++++--------
1 file changed, 29 insertions(+), 12 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index ee7c10a..73e8493 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -157,20 +157,33 @@ def filter_direct_repeats(rmd_dataframe, srs_dataframe, seq_len, ssr_dataframe,
)
)
.sort(["first_repeat", "repeat_len"], descending=[False, True])
- .group_by(pl.col("first_repeat"), pl.col("repeat"))
+ .group_by(pl.col("repeat"))
.agg(
+ pl.col("first_repeat"),
pl.col("second_repeat"),
pl.first("repeat_len"),
pl.col("distance"),
pl.col("type")
)
+ .with_columns(
+ (pl.col("second_repeat").list.unique().list.eval(pl.element().count()).list.first() + 1).alias("num_positions")
+ )
+ .explode(["first_repeat", "second_repeat", "distance", "type"])
+ .group_by(pl.col("first_repeat"), pl.col("repeat"))
+ .agg(
+ pl.col("second_repeat"),
+ pl.first("repeat_len"),
+ pl.col("distance"),
+ pl.col("type"),
+ pl.col("num_positions")
+ )
.sort(["first_repeat", "repeat_len"], descending=[False, True])
.with_columns(
pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
pl.col("repeat_len").shift(1).alias("prv_len")
)
- .explode(["second_repeat", "distance", "type"])
+ .explode(["second_repeat", "distance", "type", "num_positions"])
.with_row_index()
)
@@ -196,19 +209,22 @@ def filter_direct_repeats(rmd_dataframe, srs_dataframe, seq_len, ssr_dataframe,
.agg(
pl.col("repeat"),
pl.col("second_repeat"),
- pl.first("repeat_len"),
+ pl.col("repeat_len"),
pl.col("distance"),
pl.col("type"),
- pl.col("index")
+ pl.col("index"),
+ pl.col("num_positions")
)
.with_columns(
pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
- pl.col("repeat_len").shift(1).alias("prv_len")
+ pl.col("repeat_len").shift(1).fill_null([0]).alias("prv_len"),
+ pl.col("num_positions").shift(1).alias("prv_num_positions")
+
)
- .explode(["repeat", "second_repeat", "distance", "type", "index"])
+ .explode(["repeat", "second_repeat", "repeat_len", "distance", "type", "index", "num_positions"])
.with_columns(
- (pl.col("first_repeat") - pl.col("prv_first_repeat")).alias("difference")
+ (pl.col("first_repeat") - pl.col("prv_first_repeat")).alias("difference"),
)
.with_columns(
(pl.col("first_repeat") - pl.col("difference")).alias("adjusted_first_repeat"),
@@ -217,11 +233,12 @@ def filter_direct_repeats(rmd_dataframe, srs_dataframe, seq_len, ssr_dataframe,
.filter(
(pl.col("adjusted_first_repeat") == pl.col("prv_first_repeat")) &
(pl.col("prv_second_repeat").list.contains(pl.col("adjusted_second_repeat"))) &
- (pl.col("repeat_len") <= pl.col("prv_len"))
- )
- #.select("index").to_series().to_list()
- )
-
+ (pl.col("num_positions") <= pl.col("prv_num_positions").list.max())
+ )
+ )
+ #pl.Config(tbl_cols=-1)
+ #print(filter_out_2)
+ filter_out_2.to_pandas().to_excel("filter_out_2_new.xlsx")
combined_dataframe = combined_dataframe.join(filter_out_2, on="index", how="anti")
From 76b2e1664e8a4bf2a711d84cd6c95b5bc83059a6 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Mon, 9 Jun 2025 15:43:39 -0500
Subject: [PATCH 27/47] remove debugging print statemetns
---
efmcalculator2/pipeline/filtering.py | 3 ---
1 file changed, 3 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 73e8493..57e05f2 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -236,9 +236,6 @@ def filter_direct_repeats(rmd_dataframe, srs_dataframe, seq_len, ssr_dataframe,
(pl.col("num_positions") <= pl.col("prv_num_positions").list.max())
)
)
- #pl.Config(tbl_cols=-1)
- #print(filter_out_2)
- filter_out_2.to_pandas().to_excel("filter_out_2_new.xlsx")
combined_dataframe = combined_dataframe.join(filter_out_2, on="index", how="anti")
From a062a65ba99e0822dbb319ae0aa43340f2319ffe Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Wed, 11 Jun 2025 11:59:30 -0500
Subject: [PATCH 28/47] srs/rmd filtering fix
---
efmcalculator2/pipeline/filtering.py | 75 ++++++++++++++++------------
1 file changed, 43 insertions(+), 32 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 57e05f2..0d10f64 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -203,40 +203,51 @@ def filter_direct_repeats(rmd_dataframe, srs_dataframe, seq_len, ssr_dataframe,
# Delete shorter versions of the same repeat that start at different positions
- filter_out_2 = (
- combined_dataframe
- .group_by("first_repeat", maintain_order=True)
- .agg(
- pl.col("repeat"),
- pl.col("second_repeat"),
- pl.col("repeat_len"),
- pl.col("distance"),
- pl.col("type"),
- pl.col("index"),
- pl.col("num_positions")
- )
- .with_columns(
- pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
- pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
- pl.col("repeat_len").shift(1).fill_null([0]).alias("prv_len"),
- pl.col("num_positions").shift(1).alias("prv_num_positions")
+ for i in range(2):
+ filter_out_2 = (
+ combined_dataframe
+ .group_by("first_repeat", maintain_order=True)
+ .agg(
+ pl.col("repeat"),
+ pl.col("second_repeat"),
+ pl.col("repeat_len"),
+ pl.col("distance"),
+ pl.col("type"),
+ pl.col("index"),
+ pl.col("num_positions")
+ )
+ .with_columns(
+ pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
+ pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
+ pl.col("repeat_len").shift(1).fill_null([0]).alias("prv_len"),
+ pl.col("num_positions").shift(1).alias("prv_num_positions")
+ )
+ .explode(["repeat", "second_repeat", "repeat_len", "distance", "type", "index", "num_positions"])
+ .with_columns(
+ (pl.col("first_repeat") - pl.col("prv_first_repeat")).alias("difference"),
+ )
+ .with_columns(
+ (pl.col("first_repeat") - pl.col("difference")).alias("adjusted_first_repeat"),
+ (pl.col("second_repeat") - pl.col("difference")).alias("adjusted_second_repeat")
+ )
+ .filter(
+ pl.when(i == 0)
+ # Filter out repeats that are definitely redundant first to avoid removing repeats that are redundant with
+ .then(
+ (pl.col("difference") <= pl.col("repeat_len")) &
+ (pl.col("adjusted_first_repeat") == pl.col("prv_first_repeat")) &
+ (pl.col("prv_second_repeat").list.contains(pl.col("adjusted_second_repeat"))) &
+ (pl.col("num_positions") <= pl.col("prv_num_positions").list.max())
+ )
+ .otherwise(
+ (pl.col("difference") <= pl.col("repeat_len")) &
+ (pl.col("adjusted_first_repeat") == pl.col("prv_first_repeat")) &
+ (pl.col("prv_second_repeat").list.contains(pl.col("adjusted_second_repeat")))
+ )
+ )
)
- .explode(["repeat", "second_repeat", "repeat_len", "distance", "type", "index", "num_positions"])
- .with_columns(
- (pl.col("first_repeat") - pl.col("prv_first_repeat")).alias("difference"),
- )
- .with_columns(
- (pl.col("first_repeat") - pl.col("difference")).alias("adjusted_first_repeat"),
- (pl.col("second_repeat") - pl.col("difference")).alias("adjusted_second_repeat")
- )
- .filter(
- (pl.col("adjusted_first_repeat") == pl.col("prv_first_repeat")) &
- (pl.col("prv_second_repeat").list.contains(pl.col("adjusted_second_repeat"))) &
- (pl.col("num_positions") <= pl.col("prv_num_positions").list.max())
- )
- )
- combined_dataframe = combined_dataframe.join(filter_out_2, on="index", how="anti")
+ combined_dataframe = combined_dataframe.join(filter_out_2, on="index", how="anti")
# filter out SRS nested fully inside SSRs
From f84366aab13f35163d98def8b327087b5f0bf08c Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 11 Jun 2025 11:09:51 -0700
Subject: [PATCH 29/47] Remove logo and move text to bottom
---
efmcalculator2/webapp/webapp.py | 65 +++++++++++++--------------------
1 file changed, 25 insertions(+), 40 deletions(-)
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index 50a2120..cea3c7f 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -154,29 +154,15 @@ def run_webapp():
st.session_state["statemachine"] = StateMachine()
statemachine = st.session_state["statemachine"]
- collogo,_,colbadge = st.columns([2,1,2], vertical_alignment="bottom")
- with collogo:
- st.markdown(
- f"""
-
-
-
EFM Calculator
-
- """,
- unsafe_allow_html=True
- )
+ col1,col2,col3 = st.columns([2,1,2])
+
+ with col1:
try:
from .._version import version_tuple
st.markdown(f"Version {version_tuple[0]}.{version_tuple[1]}.{version_tuple[2]} ([{str(version_tuple[4])[1:8]}](https://www.github.com/barricklab/efmcalculator2/commit/{str(version_tuple[4]).split('.')[0][1:8]}))")
except:
pass
- with colbadge:
st.html(r' ')
-
-
- col1,col2,col3 = st.columns([2,1,2])
-
- with col1:
upload_option = "Upload files (FASTA, GenBank, or CSV)"
enter_option = "Copy/Paste Plain Text"
example_option = "Example"
@@ -188,16 +174,11 @@ def run_webapp():
inSeq = None
- with col3:
- st.write("The EFM Calculator predicts mutational hotspots as a result of DNA polymerase slippage. It classifies these hotspots into three categories, Short Sequence Repeats, Short Repeated Sequences, and Repeat Mediated Deletions. For more information, please see the paper. If you have found this tool helpful, please remember to cite it as well.")
- st.write("Jack, B. R., Leonard, S. P., Mishler, D. M., Renda, B. A., Leon, D., Suárez, G. A., & Barrick, J. E. (2015). Predicting the Genetic Stability of Engineered DNA Sequences with the EFM Calculator. ACS Synthetic Biology, 4(8), 939–943. https://doi.org/10.1021/acssynbio.5b00068")
-
-
with TemporaryDirectory() as tempdir:
is_circular = True
field = None
if option == upload_option:
- with col1:
+ with col3:
is_circular = st.checkbox(label="Circular Prediction", value=True)
upload_disclaimer = f"Total sequence length must be less than {MAX_SIZE+1}. CSV files must have a 'seq' column and may have a 'name' column."
uploaded_files = st.file_uploader("Choose a file:", type=VALID_EXTS, accept_multiple_files = True)
@@ -233,25 +214,26 @@ def run_webapp():
elif option == enter_option:
with col1:
is_circular = st.checkbox(label="Circular Prediction", value=True)
- upload_disclaimer = f"""
-
Total sequence length must be less than {MAX_SIZE+1}.
-
"""
- field = st.text_area("Input sequence here:", max_chars=MAX_SIZE)
- st.markdown(upload_disclaimer, unsafe_allow_html=True)
- field = field.replace("\n", "")
- field = field.replace(" ", "")
- field = "".join([i for i in field if not i.isdigit()])
- last_text_input = st.session_state.get("last_text_input", "")
- if field:
- record = SeqRecord(Seq(field), id="sequence")
- originhash = hashlib.md5(("string" + field).encode())
- record = EFMSequence(record, is_circular, originhash)
- inSeq = [record]
- else:
- st.session_state["statemachine"] = StateMachine()
+ with col3:
+ upload_disclaimer = f"""
+
Total sequence length must be less than {MAX_SIZE+1}.
+
"""
+ field = st.text_area("Input sequence here:", max_chars=MAX_SIZE)
+ st.markdown(upload_disclaimer, unsafe_allow_html=True)
+ field = field.replace("\n", "")
+ field = field.replace(" ", "")
+ field = "".join([i for i in field if not i.isdigit()])
+ last_text_input = st.session_state.get("last_text_input", "")
+ if field:
+ record = SeqRecord(Seq(field), id="sequence")
+ originhash = hashlib.md5(("string" + field).encode())
+ record = EFMSequence(record, is_circular, originhash)
+ inSeq = [record]
+ else:
+ st.session_state["statemachine"] = StateMachine()
elif option == example_option:
- with col1:
+ with col3:
gbs = []
examples_path = "examples/"
for infile_loc in glob.glob(os.path.join(examples_path, "*.gb")) + glob.glob(os.path.join(examples_path, "*.fasta")):
@@ -375,3 +357,6 @@ def run_webapp():
add_vertical_space(4)
seq_record.refreshed = False
+
+ st.write("The EFM Calculator predicts mutational hotspots as a result of DNA polymerase slippage. It classifies these hotspots into three categories, Short Sequence Repeats, Short Repeated Sequences, and Repeat Mediated Deletions. For more information, please see the paper. If you have found this tool helpful, please remember to cite it as well.")
+ st.write("Jack, B. R., Leonard, S. P., Mishler, D. M., Renda, B. A., Leon, D., Suárez, G. A., & Barrick, J. E. (2015). Predicting the Genetic Stability of Engineered DNA Sequences with the EFM Calculator. ACS Synthetic Biology, 4(8), 939–943. https://doi.org/10.1021/acssynbio.5b00068")
From cea1dfaa3f707009c3fc9005b319f932125e99d9 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 11 Jun 2025 11:18:34 -0700
Subject: [PATCH 30/47] Slightly better column sorting
---
efmcalculator2/webapp/webapp.py | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index cea3c7f..4f01920 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -155,13 +155,7 @@ def run_webapp():
statemachine = st.session_state["statemachine"]
col1,col2,col3 = st.columns([2,1,2])
-
with col1:
- try:
- from .._version import version_tuple
- st.markdown(f"Version {version_tuple[0]}.{version_tuple[1]}.{version_tuple[2]} ([{str(version_tuple[4])[1:8]}](https://www.github.com/barricklab/efmcalculator2/commit/{str(version_tuple[4]).split('.')[0][1:8]}))")
- except:
- pass
st.html(r' ')
upload_option = "Upload files (FASTA, GenBank, or CSV)"
enter_option = "Copy/Paste Plain Text"
@@ -174,14 +168,21 @@ def run_webapp():
inSeq = None
+ with col3:
+ try:
+ from .._version import version_tuple
+ st.markdown(f"Version {version_tuple[0]}.{version_tuple[1]}.{version_tuple[2]} ([{str(version_tuple[4])[1:8]}](https://www.github.com/barricklab/efmcalculator2/commit/{str(version_tuple[4]).split('.')[0][1:8]}))")
+ except:
+ pass
+
with TemporaryDirectory() as tempdir:
is_circular = True
field = None
if option == upload_option:
with col3:
is_circular = st.checkbox(label="Circular Prediction", value=True)
- upload_disclaimer = f"Total sequence length must be less than {MAX_SIZE+1}. CSV files must have a 'seq' column and may have a 'name' column."
- uploaded_files = st.file_uploader("Choose a file:", type=VALID_EXTS, accept_multiple_files = True)
+ upload_disclaimer = f"Total sequence length must be less than {MAX_SIZE+1}. CSV files must have a 'seq' column and may have a 'name' column."
+ uploaded_files = st.file_uploader("Choose a file:", type=VALID_EXTS, accept_multiple_files = True)
st.write(upload_disclaimer)
if uploaded_files:
inSeq = []
From 4a2464a74d97378217c4299dcbf846fb50991d9e Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 11 Jun 2025 12:15:35 -0700
Subject: [PATCH 31/47] Remove badge, add back logo, push down right column
---
efmcalculator2/webapp/webapp.py | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index 4f01920..0d96154 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -154,9 +154,17 @@ def run_webapp():
st.session_state["statemachine"] = StateMachine()
statemachine = st.session_state["statemachine"]
- col1,col2,col3 = st.columns([2,1,2])
+ col1,col2,col3 = st.columns([2,0.5,2])
with col1:
- st.html(r' ')
+ st.markdown(
+ f"""
+
+
+
EFM Calculator
+
+ """,
+ unsafe_allow_html=True)
+
upload_option = "Upload files (FASTA, GenBank, or CSV)"
enter_option = "Copy/Paste Plain Text"
example_option = "Example"
@@ -169,6 +177,8 @@ def run_webapp():
inSeq = None
with col3:
+ st.text("")
+ st.text("")
try:
from .._version import version_tuple
st.markdown(f"Version {version_tuple[0]}.{version_tuple[1]}.{version_tuple[2]} ([{str(version_tuple[4])[1:8]}](https://www.github.com/barricklab/efmcalculator2/commit/{str(version_tuple[4]).split('.')[0][1:8]}))")
@@ -271,7 +281,7 @@ def run_webapp():
else:
disable_dropdown = False
- col4,col5,col6 = st.columns([2,1,2])
+ col4,col5,col6 = st.columns([2,0.5,2])
with col4:
selected_sequence = st.selectbox(
From 5afc53d23e46fe2fac3c280629a4c74447e8f699 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 11 Jun 2025 12:28:21 -0700
Subject: [PATCH 32/47] Uncolumn the input layout.
---
efmcalculator2/webapp/webapp.py | 33 ++++++++++++++++-----------------
1 file changed, 16 insertions(+), 17 deletions(-)
diff --git a/efmcalculator2/webapp/webapp.py b/efmcalculator2/webapp/webapp.py
index 0d96154..c6e4ee8 100644
--- a/efmcalculator2/webapp/webapp.py
+++ b/efmcalculator2/webapp/webapp.py
@@ -225,23 +225,22 @@ def run_webapp():
elif option == enter_option:
with col1:
is_circular = st.checkbox(label="Circular Prediction", value=True)
- with col3:
- upload_disclaimer = f"""
-
Total sequence length must be less than {MAX_SIZE+1}.
-
"""
- field = st.text_area("Input sequence here:", max_chars=MAX_SIZE)
- st.markdown(upload_disclaimer, unsafe_allow_html=True)
- field = field.replace("\n", "")
- field = field.replace(" ", "")
- field = "".join([i for i in field if not i.isdigit()])
- last_text_input = st.session_state.get("last_text_input", "")
- if field:
- record = SeqRecord(Seq(field), id="sequence")
- originhash = hashlib.md5(("string" + field).encode())
- record = EFMSequence(record, is_circular, originhash)
- inSeq = [record]
- else:
- st.session_state["statemachine"] = StateMachine()
+ upload_disclaimer = f"""
+
Total sequence length must be less than {MAX_SIZE+1}.
+
"""
+ field = st.text_area("Input sequence here:", max_chars=MAX_SIZE)
+ st.markdown(upload_disclaimer, unsafe_allow_html=True)
+ field = field.replace("\n", "")
+ field = field.replace(" ", "")
+ field = "".join([i for i in field if not i.isdigit()])
+ last_text_input = st.session_state.get("last_text_input", "")
+ if field:
+ record = SeqRecord(Seq(field), id="sequence")
+ originhash = hashlib.md5(("string" + field).encode())
+ record = EFMSequence(record, is_circular, originhash)
+ inSeq = [record]
+ else:
+ st.session_state["statemachine"] = StateMachine()
elif option == example_option:
with col3:
From 0d621956ea4eee7145b4854562c6bf80b3f6f187 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Mon, 16 Jun 2025 12:06:54 -0500
Subject: [PATCH 33/47] fixed filtered out "TACTAGA"
---
efmcalculator2/pipeline/filtering.py | 72 +++++++++++++++-------------
1 file changed, 38 insertions(+), 34 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 0d10f64..019166e 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -316,64 +316,68 @@ def check_nested(row):
.filter(~pl.col("nested")) # Filter out rows where nested=True
)
-
- # Remove redundant repeats where positions of smaller repeat are different than larger repeat but are still fully contained
- filter_out_3 = (
+ # Re-sort dataframe
+ combined_dataframe = (
combined_dataframe
.sort(["first_repeat", "repeat_len"], descending=[False, True])
-
- .group_by("repeat", maintain_order=True)
+ .group_by(pl.col("repeat"))
.agg(
pl.col("first_repeat"),
pl.col("second_repeat"),
- pl.col("repeat_len"),
+ pl.first("repeat_len"),
pl.col("distance"),
- pl.col("type"),
- pl.col("index")
+ pl.col("type")
)
.with_columns(
- (pl.col("first_repeat") + pl.col("repeat_len")).alias("first_end"),
- (pl.col("second_repeat") + pl.col("repeat_len")).alias("second_end")
+ (pl.col("second_repeat").list.unique().list.eval(pl.element().count()).list.first() + 1).alias("num_positions")
+ )
+ .explode(["first_repeat", "second_repeat", "distance", "type"])
+ .group_by(pl.col("first_repeat"), pl.col("repeat"))
+ .agg(
+ pl.col("second_repeat"),
+ pl.first("repeat_len"),
+ pl.col("distance"),
+ pl.col("type"),
+ pl.col("num_positions")
)
+ .sort(["first_repeat", "repeat_len"], descending=[False, True])
.with_columns(
pl.col("first_repeat").shift(1).alias("prv_first_repeat"),
- pl.col("second_repeat").shift(1).alias("prv_second_repeat"),
- pl.col("repeat_len").shift(1).alias("prv_len"),
- pl.col("first_end").shift(1).alias("prv_first_end"),
- pl.col("second_end").shift(1).alias("prv_second_end"),
+ pl.col("second_repeat").shift(1).list.unique().alias("prv_second_repeat"),
+ pl.col("repeat_len").shift(1).alias("prv_len")
+ )
+ .explode(["second_repeat", "distance", "type", "num_positions"])
+ .with_row_index()
+ )
+
+
+ # Remove redundant repeats where positions of smaller repeat are different than larger repeat but are still fully contained
+ filter_out_3 = (
+ combined_dataframe
+ .with_columns(
+ (pl.col("first_repeat") + pl.col("repeat_len")).alias("first_end"),
+ (pl.col("second_repeat") + pl.col("repeat_len")).alias("second_end"),
+ (pl.col("prv_first_repeat") + pl.col("prv_len")).alias("prv_first_end"),
+ (pl.col("prv_second_repeat") + pl.col("prv_len")).alias("prv_second_end"),
)
- .explode(["first_repeat", "first_end", "repeat_len", "distance", "type", "index"])
.with_columns(
- pl.col("prv_first_repeat").fill_null([]),
- pl.col("prv_first_end").fill_null([]),
+ pl.col("prv_first_repeat").fill_null(0),
+ pl.col("prv_first_end").fill_null(0),
pl.col("prv_second_repeat").fill_null([]),
pl.col("prv_second_end").fill_null([]),
)
.with_columns(
- pl.struct(["prv_first_repeat", "prv_first_end", "first_repeat", "first_end"]).map_elements(
- lambda row: any(
- r <= row["first_repeat"] and e >= row["first_end"]
- for r, e in zip(row["prv_first_repeat"], row["prv_first_end"])
- ), return_dtype=pl.Boolean
- ).alias("first_repeat_redundant"),
+ ((pl.col("first_repeat") >= pl.col("prv_first_repeat")) & (pl.col("first_end") <= pl.col("prv_first_end"))).alias("first_repeat_redundant"),
pl.struct(["prv_second_repeat", "prv_second_end", "second_repeat", "second_end"]).map_elements(
lambda row: any(
- r <= sr and e >= se
+ r <= row["second_repeat"] and e >= row["second_end"]
for r, e in zip(row["prv_second_repeat"], row["prv_second_end"])
- for sr, se in zip(row["second_repeat"], row["second_end"])
), return_dtype=pl.Boolean
).alias("second_repeat_redundant")
)
- #.explode(["repeat_len", "distance", "type", "index"])
.filter(
- (
- #(pl.col("first_repeat") >= pl.col("prv_first_repeat")) &
- #(pl.col("first_end") <= pl.col("prv_first_end"))
- pl.col("first_repeat_redundant") == True
- ) &
- (pl.col("second_repeat_redundant") == True)
- #(pl.col("second_repeat") >= pl.col("prv_second_repeat")) &
- #(pl.col("second_end") <= pl.col("prv_second_end"))
+ (pl.col("first_repeat_redundant") == True) &
+ (pl.col("second_repeat_redundant") == True)
)
# drop added columns so anti join can be performed
.drop(["first_end", "second_end", "prv_first_end", "prv_second_end"])
From 246ac3d228a7a100f9002c84c78edb26442922a1 Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Wed, 25 Jun 2025 12:16:32 -0700
Subject: [PATCH 34/47] Truncate very long sequences in mouseover
---
efmcalculator2/webapp/bokeh_plot.py | 39 +++++++++++++++++++++++------
1 file changed, 31 insertions(+), 8 deletions(-)
diff --git a/efmcalculator2/webapp/bokeh_plot.py b/efmcalculator2/webapp/bokeh_plot.py
index a0d0d97..a4226eb 100644
--- a/efmcalculator2/webapp/bokeh_plot.py
+++ b/efmcalculator2/webapp/bokeh_plot.py
@@ -14,6 +14,8 @@
INNER_HEIGHT = MARKER_HEIGHT-OUTLINE_PADDING_Y*2
ANNOTATION_HEIGHT = MARKER_HEIGHT/2
+WEBAPP_SEQ_TRUNCATE = 25
+
def bokeh_plot(seqobj):
# Figure boilerplate
@@ -310,6 +312,11 @@ def plot_ssr(fig, ssr_df):
left_pos = row["start"]
repeat_len = row["repeat_len"]
y_height = row["level"]*MARKER_HEIGHT*1.5
+
+ seq = row["repeat"]*repeat_len
+ if len(seq) > WEBAPP_SEQ_TRUNCATE:
+ seq = seq[:WEBAPP_SEQ_TRUNCATE] + "..."
+
glyph = [[point[0]*(repeat_len*row["count"])+left_pos, point[1]+OUTLINE_PADDING_Y] for point in ssr_shape]
ssr_source["x"].append([x for x, _ in glyph])
@@ -320,7 +327,7 @@ def plot_ssr(fig, ssr_df):
ssr_source["mutation_rate"].append(row["mutation_rate"])
ssr_source["line_width"].append(2)
ssr_source["line_color"].append("black")
- ssr_source["sequence"].append(row["repeat"]*repeat_len)
+ ssr_source["sequence"].append(seq)
# Outline
outline = [[point[0]*(repeat_len*row["count"])+left_pos, point[1]+OUTLINE_PADDING_Y] for point in ssr_shape]
@@ -341,7 +348,7 @@ def plot_ssr(fig, ssr_df):
ssr_outline_source["mutation_rate"].append(row["mutation_rate"])
ssr_outline_source["line_width"].append(3)
ssr_outline_source["line_color"].append(color)
- ssr_outline_source["sequence"].append(row["repeat"]*row["count"])
+ ssr_outline_source["sequence"].append(seq)
ssr_outline_source["monomer"].append(row["repeat"])
ssr_outline_source['count'].append(row["count"])
@@ -409,6 +416,10 @@ def plot_srs(fig, ssr_df):
left_glyph = [[point[0]*repeat_len+left_pos, point[1]+OUTLINE_PADDING_Y] for point in rmd_shape]
right_glyph = [[point[0]*repeat_len+right_pos, point[1]+OUTLINE_PADDING_Y] for point in rmd_shape]
+ seq = row["repeat"]*repeat_len
+ if len(seq) > WEBAPP_SEQ_TRUNCATE:
+ seq = seq[:WEBAPP_SEQ_TRUNCATE] + "..."
+
srs_source["x"].append([x for x, _ in left_glyph])
srs_source["y"].append([y+y_height+MARKER_HEIGHT*0.5 for _, y in left_glyph])
srs_source["x"].append([x for x, _ in right_glyph])
@@ -421,7 +432,7 @@ def plot_srs(fig, ssr_df):
srs_source["mutation_rate"].append(row["mutation_rate"])
srs_source["line_width"].append(2)
srs_source["line_color"].append("black")
- srs_source["sequence"].append(row["repeat"])
+ srs_source["sequence"].append(seq)
srs_source["distance"].append(row["distance"])
srs_glyphs = fig.patches(
@@ -462,6 +473,9 @@ def plot_srs(fig, ssr_df):
right_pos = row["second_repeat"]
repeat_len = row["repeat_len"]
y_height = row["level"]*MARKER_HEIGHT*1.5
+ seq = row["repeat"]*repeat_len
+ if len(seq) > WEBAPP_SEQ_TRUNCATE:
+ seq = seq[:WEBAPP_SEQ_TRUNCATE] + "..."
if row["distance"] > OUTLINE_PADDING_X*4: # Distant SRSs
left_outline = [[point[0]+left_pos, point[1]+OUTLINE_PADDING_Y] for point in outline_shape_left]
left_outline_mods = [[-OUTLINE_PADDING_X, -OUTLINE_PADDING_Y],
@@ -497,7 +511,7 @@ def plot_srs(fig, ssr_df):
srs_outline_source["mutation_rate"].append(row["mutation_rate"])
srs_outline_source["line_width"].append(3)
srs_outline_source["line_color"].append(color)
- srs_outline_source["sequence"].append(row["repeat"])
+ srs_outline_source["sequence"].append(seq)
srs_outline_source["distance"].append(row["distance"])
@@ -530,7 +544,7 @@ def plot_srs(fig, ssr_df):
srs_outline_source["mutation_rate"].append(row["mutation_rate"])
srs_outline_source["line_width"].append(3)
srs_outline_source["line_color"].append(color)
- srs_outline_source["sequence"].append(row["repeat"])
+ srs_outline_source["sequence"].append(seq)
srs_outline_source["distance"].append(row["distance"])
srs_glyphs_outline = fig.patches(
@@ -596,6 +610,10 @@ def plot_rmd(fig, rmd_df):
left_glyph = [[point[0]*repeat_len+left_pos, point[1]+OUTLINE_PADDING_Y] for point in rmd_shape]
right_glyph = [[point[0]*repeat_len+right_pos, point[1]+OUTLINE_PADDING_Y] for point in rmd_shape]
+ seq = row["repeat"]*repeat_len
+ if len(seq) > WEBAPP_SEQ_TRUNCATE:
+ seq = seq[:WEBAPP_SEQ_TRUNCATE] + "..."
+
rmd_source["x"].append([x for x, _ in left_glyph])
rmd_source["y"].append([y+y_height+MARKER_HEIGHT*0.5 for _, y in left_glyph])
rmd_source["x"].append([x for x, _ in right_glyph])
@@ -608,7 +626,7 @@ def plot_rmd(fig, rmd_df):
rmd_source["mutation_rate"].append(row["mutation_rate"])
rmd_source["line_width"].append(2)
rmd_source["line_color"].append("black")
- rmd_source["sequence"].append(row["repeat"])
+ rmd_source["sequence"].append(seq)
rmd_source["distance"].append(row["distance"])
rmd_glyphs = fig.patches(
@@ -649,6 +667,11 @@ def plot_rmd(fig, rmd_df):
right_pos = row["second_repeat"]
repeat_len = row["repeat_len"]
y_height = row["level"]*MARKER_HEIGHT*1.5
+
+ seq = row["repeat"]*repeat_len
+ if len(seq) > WEBAPP_SEQ_TRUNCATE:
+ seq = seq[:WEBAPP_SEQ_TRUNCATE] + "..."
+
if row["distance"] > OUTLINE_PADDING_X*4: # Distant rmds
left_outline = [[point[0]+left_pos, point[1]+OUTLINE_PADDING_Y] for point in outline_shape_left]
left_outline_mods = [[-OUTLINE_PADDING_X, -OUTLINE_PADDING_Y],
@@ -684,7 +707,7 @@ def plot_rmd(fig, rmd_df):
rmd_outline_source["mutation_rate"].append(row["mutation_rate"])
rmd_outline_source["line_width"].append(3)
rmd_outline_source["line_color"].append(color)
- rmd_outline_source["sequence"].append(row["repeat"])
+ rmd_outline_source["sequence"].append(seq)
rmd_outline_source["distance"].append(row["distance"])
@@ -717,7 +740,7 @@ def plot_rmd(fig, rmd_df):
rmd_outline_source["mutation_rate"].append(row["mutation_rate"])
rmd_outline_source["line_width"].append(3)
rmd_outline_source["line_color"].append(color)
- rmd_outline_source["sequence"].append(row["repeat"])
+ rmd_outline_source["sequence"].append(seq)
rmd_outline_source["distance"].append(row["distance"])
rmd_glyphs_outline = fig.patches(
From c60f4b378bd6da8b7474d55a3b0c262ffc506e0c Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Mon, 7 Jul 2025 11:02:20 -0700
Subject: [PATCH 35/47] Fix cant assign tuple when filtering by annotation
---
efmcalculator2/webapp/SequenceState.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efmcalculator2/webapp/SequenceState.py b/efmcalculator2/webapp/SequenceState.py
index 7a56711..4fb92e0 100644
--- a/efmcalculator2/webapp/SequenceState.py
+++ b/efmcalculator2/webapp/SequenceState.py
@@ -455,7 +455,7 @@ def annotation_coverage(self, annotations):
break
else:
# entirely outside
- coverage.append((row['left_bound'], row['right_bound']))
+ coverage.append([row['left_bound'], row['right_bound']])
base_coverage = 0
for region in coverage:
base_coverage += region[1] - region[0] + 1
From 7df64b3123dd39a05117d8e96febcc500b6912cd Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Mon, 7 Jul 2025 11:32:40 -0700
Subject: [PATCH 36/47] One indexing for annotation data
---
efmcalculator2/ingest/EFMSequence.py | 6 +++++-
efmcalculator2/webapp/SequenceState.py | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/efmcalculator2/ingest/EFMSequence.py b/efmcalculator2/ingest/EFMSequence.py
index 642812d..7c684b1 100644
--- a/efmcalculator2/ingest/EFMSequence.py
+++ b/efmcalculator2/ingest/EFMSequence.py
@@ -129,7 +129,7 @@ def same_origin(self, other):
else:
return True
-def sequence_to_features_df(sequence, circular=True):
+def sequence_to_features_df(sequence, circular=True, onindex = False):
"""Takes genbank annotations and turns them into a polars dataframe"""
features = sequence.features
seqlen = len(sequence)
@@ -203,4 +203,8 @@ def get_feature_bounds(feature_location):
pl.col("right_bound").cast(pl.Int32)
)
+ if onindex:
+ df = df.with_columns(left_bound = pl.col("left_bound") +1,
+ right_bound = pl.col("right_bound") +1)
+
return df
diff --git a/efmcalculator2/webapp/SequenceState.py b/efmcalculator2/webapp/SequenceState.py
index 4fb92e0..070cae5 100644
--- a/efmcalculator2/webapp/SequenceState.py
+++ b/efmcalculator2/webapp/SequenceState.py
@@ -83,7 +83,7 @@ def unique_annotations(self):
if not self.efmsequence.annotations:
return None
if isinstance(self._unique_annotations, dict) and self._unique_annotations == {}:
- self._unique_annotations = sequence_to_features_df(self.efmsequence, self.efmsequence.is_circular)
+ self._unique_annotations = sequence_to_features_df(self.efmsequence, self.efmsequence.is_circular, self.efmsequence.oneindex)
self._unique_annotations = self._unique_annotations.with_columns(
pl.concat_str([pl.col("annotations"), pl.lit(" ("), pl.col("left_bound"), pl.lit("-"), pl.col("right_bound"), pl.lit(")")]).alias("annotationobjexpanded_names")
)
From 5feb78f2337fdfecd07e28927f141760a1785050 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Wed, 23 Jul 2025 14:40:08 -0500
Subject: [PATCH 37/47] Classify SRS and RMD as "Tandem Repeat" when
appropriate
---
efmcalculator2/pipeline/filtering.py | 25 +++++++++++++++++++++++--
efmcalculator2/pipeline/post_process.py | 7 ++++++-
2 files changed, 29 insertions(+), 3 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 019166e..3c846e5 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -394,5 +394,26 @@ def check_nested(row):
return rmd_dataframe, srs_dataframe
-# No longer necessary filters (already covered by pairwise approach)
-# - Delete rows with overlapping repeats and only 2 occurrences (not a real repeat)
+# Rename sequences into "Tandem Repeat" when appropriate
+def rename_tandem_repeat(repeat_dataframe, sequence, circular):
+ def check_tandem_repeat(row):
+ spacer = row["repeat_len"] + row["first_repeat"]
+ tandem_bp = row["repeat_len"] + row["second_repeat"]
+ if(circular):
+ if(tandem_bp > len(sequence)):
+ tandem_bp = tandem_bp - len(sequence)
+ if(sequence[spacer] == sequence[tandem_bp]):
+ return True
+ else:
+ return False
+
+ repeat_dataframe = (
+ repeat_dataframe
+ .with_columns(
+ pl.struct(["first_repeat", "second_repeat", "repeat_len"])
+ .map_elements(check_tandem_repeat, return_dtype=pl.Boolean)
+ .alias("tandem_repeat")
+ )
+ )
+
+ return repeat_dataframe
\ No newline at end of file
diff --git a/efmcalculator2/pipeline/post_process.py b/efmcalculator2/pipeline/post_process.py
index 8c3feff..5515806 100644
--- a/efmcalculator2/pipeline/post_process.py
+++ b/efmcalculator2/pipeline/post_process.py
@@ -1,5 +1,5 @@
from .mutation_rates import ssr_mut_rate_vector, srs_mut_rate_vector, rmd_mut_rate_vector
-from .filtering import filter_ssrs, filter_direct_repeats
+from .filtering import filter_ssrs, filter_direct_repeats, rename_tandem_repeat
from .features import assign_features_ssr, assign_features_rmd
from ..constants import THRESHOLD
@@ -21,6 +21,11 @@ def post_process(ssr_df, srs_df, rmd_df, seqobj, isCircular):
srs_df = srs_df.filter(pl.col("mutation_rate") > THRESHOLD)
rmd_df = rmd_df.filter(pl.col("mutation_rate") > THRESHOLD)
+ # Classify SRS and RMD as "Tandem Repeat" when appropriate
+ srs_df = rename_tandem_repeat(srs_df, seqobj, isCircular)
+ rmd_df = rename_tandem_repeat(rmd_df, seqobj, isCircular)
+
+
# Apply annotations
if seqobj.annotations:
ssr_df = assign_features_ssr(ssr_df, seqobj, isCircular)
From ae9a99d5d529b99a907c94766735b5410451746c Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Thu, 24 Jul 2025 09:44:54 -0500
Subject: [PATCH 38/47] only run tandem repeat assignment code on SRS/RMD with
distance of 1
---
efmcalculator2/pipeline/filtering.py | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 3c846e5..3c7c34a 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -397,20 +397,23 @@ def check_nested(row):
# Rename sequences into "Tandem Repeat" when appropriate
def rename_tandem_repeat(repeat_dataframe, sequence, circular):
def check_tandem_repeat(row):
- spacer = row["repeat_len"] + row["first_repeat"]
- tandem_bp = row["repeat_len"] + row["second_repeat"]
- if(circular):
- if(tandem_bp > len(sequence)):
- tandem_bp = tandem_bp - len(sequence)
- if(sequence[spacer] == sequence[tandem_bp]):
- return True
+ if(row["distance"] == 1):
+ spacer = row["repeat_len"] + row["first_repeat"]
+ tandem_bp = row["repeat_len"] + row["second_repeat"]
+ if(circular):
+ if(tandem_bp > len(sequence)):
+ tandem_bp = tandem_bp - len(sequence)
+ if(sequence[spacer] == sequence[tandem_bp]):
+ return True
+ else:
+ return False
else:
return False
repeat_dataframe = (
repeat_dataframe
.with_columns(
- pl.struct(["first_repeat", "second_repeat", "repeat_len"])
+ pl.struct(["first_repeat", "second_repeat", "repeat_len", "distance"])
.map_elements(check_tandem_repeat, return_dtype=pl.Boolean)
.alias("tandem_repeat")
)
From 2738574bf3474190c70b0cc52f2d72dbc9ea9683 Mon Sep 17 00:00:00 2001
From: kevin99111 <156483708+kevin99111@users.noreply.github.com>
Date: Fri, 25 Jul 2025 12:32:41 -0500
Subject: [PATCH 39/47] update tandem repeat assignment to prevent error when
second repeat includes last bp of sequence
---
efmcalculator2/pipeline/filtering.py | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/efmcalculator2/pipeline/filtering.py b/efmcalculator2/pipeline/filtering.py
index 3c7c34a..f62a3bf 100644
--- a/efmcalculator2/pipeline/filtering.py
+++ b/efmcalculator2/pipeline/filtering.py
@@ -403,8 +403,11 @@ def check_tandem_repeat(row):
if(circular):
if(tandem_bp > len(sequence)):
tandem_bp = tandem_bp - len(sequence)
- if(sequence[spacer] == sequence[tandem_bp]):
- return True
+ if(tandem_bp < len(sequence)):
+ if(sequence[spacer] == sequence[tandem_bp]):
+ return True
+ else:
+ return False
else:
return False
else:
@@ -419,4 +422,4 @@ def check_tandem_repeat(row):
)
)
- return repeat_dataframe
\ No newline at end of file
+ return repeat_dataframe
From 7d0e633994fabe573eddf758b154ef400dabc56a Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Fri, 22 Aug 2025 13:33:22 -0700
Subject: [PATCH 40/47] Pin streamlit-aggrid==1.1.7
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 6bb47d8..9c528a0 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -37,7 +37,7 @@ dependencies = [
"numpy<2",
"streamlit==1.43.0",
"streamlit-extras",
- "streamlit-aggrid",
+ "streamlit-aggrid==1.1.7",
"streamlit_javascript",
]
license = { text = "GPL-3.0" }
From e90b48d6626b2a768132b1cbb90216b73dba973c Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Mon, 25 Aug 2025 13:00:11 -0700
Subject: [PATCH 41/47] Enforce showing TR column and order
---
efmcalculator2/webapp/SequenceState.py | 28 +++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/efmcalculator2/webapp/SequenceState.py b/efmcalculator2/webapp/SequenceState.py
index 070cae5..19f3dd4 100644
--- a/efmcalculator2/webapp/SequenceState.py
+++ b/efmcalculator2/webapp/SequenceState.py
@@ -140,7 +140,6 @@ def rebuild_top_table(self):
builder.configure_column("repeat", header_name="Sequence", tooltipField="repeat", editable=True)
builder.configure_column("mutation_rate", header_name="Mutation Rate",
type=["numericColumn"], valueFormatter="x.toExponential(2)")
- builder.configure_column("annotations", header_name="Annotations", tooltipField="annotations")
builder.configure_column("predid", hide = True)
builder.configure_column("annotationobjects", hide = True)
grid_options = builder.build()
@@ -179,6 +178,7 @@ def ssr_webapp_table(self):
"""Streamlit aggrid table representing ssr data"""
pandas_conversion = self._filtered_ssrs.to_pandas()
+
return AgGrid(pandas_conversion,
gridOptions=self._ssr_webapp_state,
height=500,
@@ -223,6 +223,7 @@ def rebuild_ssr_table(self):
self.last_ssr_selections = preselected_indices
pandas_conversion = self._filtered_ssrs.to_pandas()
+
builder = GridOptionsBuilder.from_dataframe(pandas_conversion)
builder.configure_selection(selection_mode='multiple', use_checkbox= True, pre_selected_rows= preselected_indices)
builder.configure_grid_options(onCellMouseOver=cell_hover_handler)
@@ -306,7 +307,18 @@ def rebuild_srs_table(self):
if self.last_srs_selections is None:
self.last_srs_selections = preselected_indices
+ order = [
+ "repeat",
+ "repeat_len",
+ "count",
+ "start",
+ "mutation_rate",
+ "annotations",
+ "predid",
+ "annotationobjects"
+ ]
pandas_conversion = self._filtered_srss.to_pandas()
+ pandas_conversion = pandas_conversion[[col for col in order if col in pandas_conversion.columns]]
builder = GridOptionsBuilder.from_dataframe(pandas_conversion)
builder.configure_selection(selection_mode='multiple', use_checkbox= True, pre_selected_rows= preselected_indices)
builder.configure_grid_options(onCellMouseOver=cell_hover_handler)
@@ -318,6 +330,7 @@ def rebuild_srs_table(self):
builder.configure_column("mutation_rate", header_name="Mutation Rate",
type=["numericColumn"], valueFormatter="x.toExponential(2)")
builder.configure_column("annotations", header_name="Annotations", tooltipField="annotations")
+ builder.configure_column("tandem_repeat", header_name="Tandem Repeat", type=["boolColumn"])
builder.configure_column("predid", hide = True)
builder.configure_column("annotationobjects", hide = True)
@@ -392,7 +405,19 @@ def rebuild_rmd_table(self):
if self.last_rmd_selections is None:
self.last_rmd_selections = preselected_indices
+ order = [
+ "repeat",
+ "repeat_len",
+ "count",
+ "start",
+ "mutation_rate",
+ "annotations",
+ "predid",
+ "annotationobjects"
+ ]
+
pandas_conversion = self._filtered_rmds.to_pandas()
+ pandas_conversion = pandas_conversion[[col for col in order if col in pandas_conversion.columns]]
builder = GridOptionsBuilder.from_dataframe(pandas_conversion)
builder.configure_selection(selection_mode='multiple', use_checkbox= True, pre_selected_rows= preselected_indices)
builder.configure_grid_options(onCellMouseOver=cell_hover_handler)
@@ -404,6 +429,7 @@ def rebuild_rmd_table(self):
builder.configure_column("mutation_rate", header_name="Mutation Rate",
type=["numericColumn"], valueFormatter="x.toExponential(2)")
builder.configure_column("annotations", header_name="Annotations", tooltipField="annotations")
+ builder.configure_column("tandem_repeat", header_name="Tandem Repeat", type=["boolColumn"])
builder.configure_column("predid", hide = True)
builder.configure_column("annotationobjects", hide = True)
From 2b8ed3c72acec13a432a47fc91e8883d0bcae5ae Mon Sep 17 00:00:00 2001
From: Cameron Roots <38054423+croots@users.noreply.github.com>
Date: Tue, 26 Aug 2025 11:17:42 -0700
Subject: [PATCH 42/47] Fix: Annotations overriding TR column
---
efmcalculator2/pipeline/post_process.py | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/efmcalculator2/pipeline/post_process.py b/efmcalculator2/pipeline/post_process.py
index 5515806..a02d453 100644
--- a/efmcalculator2/pipeline/post_process.py
+++ b/efmcalculator2/pipeline/post_process.py
@@ -21,15 +21,14 @@ def post_process(ssr_df, srs_df, rmd_df, seqobj, isCircular):
srs_df = srs_df.filter(pl.col("mutation_rate") > THRESHOLD)
rmd_df = rmd_df.filter(pl.col("mutation_rate") > THRESHOLD)
- # Classify SRS and RMD as "Tandem Repeat" when appropriate
- srs_df = rename_tandem_repeat(srs_df, seqobj, isCircular)
- rmd_df = rename_tandem_repeat(rmd_df, seqobj, isCircular)
-
-
# Apply annotations
if seqobj.annotations:
ssr_df = assign_features_ssr(ssr_df, seqobj, isCircular)
srs_df = assign_features_rmd(srs_df, seqobj, isCircular)
rmd_df = assign_features_rmd(rmd_df, seqobj, isCircular)
+ # Classify SRS and RMD as "Tandem Repeat" when appropriate
+ srs_df = rename_tandem_repeat(srs_df, seqobj, isCircular)
+ rmd_df = rename_tandem_repeat(rmd_df, seqobj, isCircular)
+
return ssr_df, srs_df, rmd_df
From 0224a8be9416557cbdc6c28141459c4377659376 Mon Sep 17 00:00:00 2001
From: kevin99111 <156483708+kevin99111@users.noreply.github.com>
Date: Mon, 27 Oct 2025 09:32:03 -0500
Subject: [PATCH 43/47] add new gam mut rates with updated numbers
---
efmcalculator2/data/new_gam (1).csv | 22001 ++++++++++++++++++++++++++
1 file changed, 22001 insertions(+)
create mode 100644 efmcalculator2/data/new_gam (1).csv
diff --git a/efmcalculator2/data/new_gam (1).csv b/efmcalculator2/data/new_gam (1).csv
new file mode 100644
index 0000000..0994a0c
--- /dev/null
+++ b/efmcalculator2/data/new_gam (1).csv
@@ -0,0 +1,22001 @@
+RBP_Length,TBD_length,Prediction
+5,1,1.72E-09
+5,2,1.70E-09
+5,3,1.67E-09
+5,4,1.64E-09
+5,5,1.62E-09
+5,6,1.59E-09
+5,7,1.57E-09
+5,8,1.55E-09
+5,9,1.52E-09
+5,10,1.50E-09
+5,11,1.48E-09
+5,12,1.45E-09
+5,13,1.43E-09
+5,14,1.41E-09
+5,15,1.39E-09
+5,16,1.36E-09
+5,17,1.34E-09
+5,18,1.32E-09
+5,19,1.30E-09
+5,20,1.28E-09
+5,21,1.26E-09
+5,22,1.24E-09
+5,23,1.22E-09
+5,24,1.21E-09
+5,25,1.19E-09
+5,26,1.17E-09
+5,27,1.15E-09
+5,28,1.13E-09
+5,29,1.12E-09
+5,30,1.10E-09
+5,31,1.08E-09
+5,32,1.07E-09
+5,33,1.05E-09
+5,34,1.03E-09
+5,35,1.02E-09
+5,36,1.00E-09
+5,37,9.88E-10
+5,38,9.73E-10
+5,39,9.59E-10
+5,40,9.44E-10
+5,41,9.30E-10
+5,42,9.16E-10
+5,43,9.03E-10
+5,44,8.89E-10
+5,45,8.76E-10
+5,46,8.63E-10
+5,47,8.50E-10
+5,48,8.38E-10
+5,49,8.26E-10
+5,50,8.14E-10
+5,51,8.02E-10
+5,52,7.90E-10
+5,53,7.79E-10
+5,54,7.67E-10
+5,55,7.56E-10
+5,56,7.45E-10
+5,57,7.35E-10
+5,58,7.24E-10
+5,59,7.14E-10
+5,60,7.04E-10
+5,61,6.94E-10
+5,62,6.84E-10
+5,63,6.74E-10
+5,64,6.65E-10
+5,65,6.56E-10
+5,66,6.47E-10
+5,67,6.38E-10
+5,68,6.29E-10
+5,69,6.20E-10
+5,70,6.12E-10
+5,71,6.03E-10
+5,72,5.95E-10
+5,73,5.87E-10
+5,74,5.79E-10
+5,75,5.71E-10
+5,76,5.63E-10
+5,77,5.56E-10
+5,78,5.48E-10
+5,79,5.41E-10
+5,80,5.33E-10
+5,81,5.26E-10
+5,82,5.19E-10
+5,83,5.12E-10
+5,84,5.06E-10
+5,85,4.99E-10
+5,86,4.92E-10
+5,87,4.86E-10
+5,88,4.80E-10
+5,89,4.73E-10
+5,90,4.67E-10
+5,91,4.61E-10
+5,92,4.55E-10
+5,93,4.49E-10
+5,94,4.44E-10
+5,95,4.38E-10
+5,96,4.32E-10
+5,97,4.27E-10
+5,98,4.21E-10
+5,99,4.16E-10
+5,100,4.11E-10
+5,101,4.06E-10
+5,102,4.01E-10
+5,103,3.96E-10
+5,104,3.91E-10
+5,105,3.86E-10
+5,106,3.81E-10
+5,107,3.76E-10
+5,108,3.72E-10
+5,109,3.67E-10
+5,110,3.63E-10
+5,111,3.58E-10
+5,112,3.54E-10
+5,113,3.50E-10
+5,114,3.45E-10
+5,115,3.41E-10
+5,116,3.37E-10
+5,117,3.33E-10
+5,118,3.29E-10
+5,119,3.25E-10
+5,120,3.21E-10
+5,121,3.17E-10
+5,122,3.14E-10
+5,123,3.10E-10
+5,124,3.06E-10
+5,125,3.03E-10
+5,126,2.99E-10
+5,127,2.96E-10
+5,128,2.92E-10
+5,129,2.89E-10
+5,130,2.86E-10
+5,131,2.82E-10
+5,132,2.79E-10
+5,133,2.76E-10
+5,134,2.73E-10
+5,135,2.70E-10
+5,136,2.67E-10
+5,137,2.64E-10
+5,138,2.61E-10
+5,139,2.58E-10
+5,140,2.55E-10
+5,141,2.52E-10
+5,142,2.49E-10
+5,143,2.46E-10
+5,144,2.44E-10
+5,145,2.41E-10
+5,146,2.38E-10
+5,147,2.36E-10
+5,148,2.33E-10
+5,149,2.31E-10
+5,150,2.28E-10
+5,151,2.26E-10
+5,152,2.23E-10
+5,153,2.21E-10
+5,154,2.19E-10
+5,155,2.16E-10
+5,156,2.14E-10
+5,157,2.12E-10
+5,158,2.09E-10
+5,159,2.07E-10
+5,160,2.05E-10
+5,161,2.03E-10
+5,162,2.01E-10
+5,163,1.99E-10
+5,164,1.97E-10
+5,165,1.95E-10
+5,166,1.93E-10
+5,167,1.91E-10
+5,168,1.89E-10
+5,169,1.87E-10
+5,170,1.85E-10
+5,171,1.83E-10
+5,172,1.81E-10
+5,173,1.79E-10
+5,174,1.77E-10
+5,175,1.76E-10
+5,176,1.74E-10
+5,177,1.72E-10
+5,178,1.70E-10
+5,179,1.69E-10
+5,180,1.67E-10
+5,181,1.65E-10
+5,182,1.64E-10
+5,183,1.62E-10
+5,184,1.61E-10
+5,185,1.59E-10
+5,186,1.57E-10
+5,187,1.56E-10
+5,188,1.54E-10
+5,189,1.53E-10
+5,190,1.51E-10
+5,191,1.50E-10
+5,192,1.49E-10
+5,193,1.47E-10
+5,194,1.46E-10
+5,195,1.44E-10
+5,196,1.43E-10
+5,197,1.42E-10
+5,198,1.40E-10
+5,199,1.39E-10
+5,200,1.38E-10
+5,201,1.36E-10
+5,202,1.35E-10
+5,203,1.34E-10
+5,204,1.33E-10
+5,205,1.32E-10
+5,206,1.30E-10
+5,207,1.29E-10
+5,208,1.28E-10
+5,209,1.27E-10
+5,210,1.26E-10
+5,211,1.25E-10
+5,212,1.23E-10
+5,213,1.22E-10
+5,214,1.21E-10
+5,215,1.20E-10
+5,216,1.19E-10
+5,217,1.18E-10
+5,218,1.17E-10
+5,219,1.16E-10
+5,220,1.15E-10
+5,221,1.14E-10
+5,222,1.13E-10
+5,223,1.12E-10
+5,224,1.11E-10
+5,225,1.10E-10
+5,226,1.09E-10
+5,227,1.08E-10
+5,228,1.07E-10
+5,229,1.06E-10
+5,230,1.05E-10
+5,231,1.05E-10
+5,232,1.04E-10
+5,233,1.03E-10
+5,234,1.02E-10
+5,235,1.01E-10
+5,236,1.00E-10
+5,237,9.93E-11
+5,238,9.85E-11
+5,239,9.77E-11
+5,240,9.69E-11
+5,241,9.61E-11
+5,242,9.53E-11
+5,243,9.45E-11
+5,244,9.38E-11
+5,245,9.30E-11
+5,246,9.22E-11
+5,247,9.15E-11
+5,248,9.08E-11
+5,249,9.00E-11
+5,250,8.93E-11
+5,251,8.86E-11
+5,252,8.79E-11
+5,253,8.72E-11
+5,254,8.65E-11
+5,255,8.58E-11
+5,256,8.51E-11
+5,257,8.45E-11
+5,258,8.38E-11
+5,259,8.32E-11
+5,260,8.25E-11
+5,261,8.19E-11
+5,262,8.12E-11
+5,263,8.06E-11
+5,264,8.00E-11
+5,265,7.94E-11
+5,266,7.88E-11
+5,267,7.82E-11
+5,268,7.76E-11
+5,269,7.70E-11
+5,270,7.64E-11
+5,271,7.58E-11
+5,272,7.53E-11
+5,273,7.47E-11
+5,274,7.41E-11
+5,275,7.36E-11
+5,276,7.30E-11
+5,277,7.25E-11
+5,278,7.20E-11
+5,279,7.14E-11
+5,280,7.09E-11
+5,281,7.04E-11
+5,282,6.99E-11
+5,283,6.94E-11
+5,284,6.89E-11
+5,285,6.84E-11
+5,286,6.79E-11
+5,287,6.74E-11
+5,288,6.69E-11
+5,289,6.64E-11
+5,290,6.59E-11
+5,291,6.55E-11
+5,292,6.50E-11
+5,293,6.46E-11
+5,294,6.41E-11
+5,295,6.36E-11
+5,296,6.32E-11
+5,297,6.28E-11
+5,298,6.23E-11
+5,299,6.19E-11
+5,300,6.15E-11
+5,301,6.10E-11
+5,302,6.06E-11
+5,303,6.02E-11
+5,304,5.98E-11
+5,305,5.94E-11
+5,306,5.90E-11
+5,307,5.86E-11
+5,308,5.82E-11
+5,309,5.78E-11
+5,310,5.74E-11
+5,311,5.70E-11
+5,312,5.66E-11
+5,313,5.62E-11
+5,314,5.58E-11
+5,315,5.55E-11
+5,316,5.51E-11
+5,317,5.47E-11
+5,318,5.44E-11
+5,319,5.40E-11
+5,320,5.37E-11
+5,321,5.33E-11
+5,322,5.30E-11
+5,323,5.26E-11
+5,324,5.23E-11
+5,325,5.19E-11
+5,326,5.16E-11
+5,327,5.13E-11
+5,328,5.09E-11
+5,329,5.06E-11
+5,330,5.03E-11
+5,331,5.00E-11
+5,332,4.96E-11
+5,333,4.93E-11
+5,334,4.90E-11
+5,335,4.87E-11
+5,336,4.84E-11
+5,337,4.81E-11
+5,338,4.78E-11
+5,339,4.75E-11
+5,340,4.72E-11
+5,341,4.69E-11
+5,342,4.66E-11
+5,343,4.63E-11
+5,344,4.60E-11
+5,345,4.57E-11
+5,346,4.55E-11
+5,347,4.52E-11
+5,348,4.49E-11
+5,349,4.46E-11
+5,350,4.43E-11
+5,351,4.41E-11
+5,352,4.38E-11
+5,353,4.35E-11
+5,354,4.33E-11
+5,355,4.30E-11
+5,356,4.28E-11
+5,357,4.25E-11
+5,358,4.22E-11
+5,359,4.20E-11
+5,360,4.17E-11
+5,361,4.15E-11
+5,362,4.12E-11
+5,363,4.10E-11
+5,364,4.08E-11
+5,365,4.05E-11
+5,366,4.03E-11
+5,367,4.00E-11
+5,368,3.98E-11
+5,369,3.96E-11
+5,370,3.93E-11
+5,371,3.91E-11
+5,372,3.89E-11
+5,373,3.87E-11
+5,374,3.84E-11
+5,375,3.82E-11
+5,376,3.80E-11
+5,377,3.78E-11
+5,378,3.75E-11
+5,379,3.73E-11
+5,380,3.71E-11
+5,381,3.69E-11
+5,382,3.67E-11
+5,383,3.65E-11
+5,384,3.63E-11
+5,385,3.61E-11
+5,386,3.59E-11
+5,387,3.57E-11
+5,388,3.55E-11
+5,389,3.53E-11
+5,390,3.51E-11
+5,391,3.49E-11
+5,392,3.47E-11
+5,393,3.45E-11
+5,394,3.43E-11
+5,395,3.41E-11
+5,396,3.39E-11
+5,397,3.37E-11
+5,398,3.35E-11
+5,399,3.33E-11
+5,400,3.32E-11
+5,401,3.30E-11
+5,402,3.28E-11
+5,403,3.26E-11
+5,404,3.24E-11
+5,405,3.23E-11
+5,406,3.21E-11
+5,407,3.19E-11
+5,408,3.17E-11
+5,409,3.16E-11
+5,410,3.14E-11
+5,411,3.12E-11
+5,412,3.11E-11
+5,413,3.09E-11
+5,414,3.07E-11
+5,415,3.06E-11
+5,416,3.04E-11
+5,417,3.02E-11
+5,418,3.01E-11
+5,419,2.99E-11
+5,420,2.97E-11
+5,421,2.96E-11
+5,422,2.94E-11
+5,423,2.93E-11
+5,424,2.91E-11
+5,425,2.90E-11
+5,426,2.88E-11
+5,427,2.87E-11
+5,428,2.85E-11
+5,429,2.83E-11
+5,430,2.82E-11
+5,431,2.80E-11
+5,432,2.79E-11
+5,433,2.78E-11
+5,434,2.76E-11
+5,435,2.75E-11
+5,436,2.73E-11
+5,437,2.72E-11
+5,438,2.70E-11
+5,439,2.69E-11
+5,440,2.68E-11
+5,441,2.66E-11
+5,442,2.65E-11
+5,443,2.63E-11
+5,444,2.62E-11
+5,445,2.61E-11
+5,446,2.59E-11
+5,447,2.58E-11
+5,448,2.57E-11
+5,449,2.55E-11
+5,450,2.54E-11
+5,451,2.53E-11
+5,452,2.51E-11
+5,453,2.50E-11
+5,454,2.49E-11
+5,455,2.47E-11
+5,456,2.46E-11
+5,457,2.45E-11
+5,458,2.44E-11
+5,459,2.42E-11
+5,460,2.41E-11
+5,461,2.40E-11
+5,462,2.39E-11
+5,463,2.38E-11
+5,464,2.36E-11
+5,465,2.35E-11
+5,466,2.34E-11
+5,467,2.33E-11
+5,468,2.32E-11
+5,469,2.30E-11
+5,470,2.29E-11
+5,471,2.28E-11
+5,472,2.27E-11
+5,473,2.26E-11
+5,474,2.25E-11
+5,475,2.23E-11
+5,476,2.22E-11
+5,477,2.21E-11
+5,478,2.20E-11
+5,479,2.19E-11
+5,480,2.18E-11
+5,481,2.17E-11
+5,482,2.16E-11
+5,483,2.15E-11
+5,484,2.13E-11
+5,485,2.12E-11
+5,486,2.11E-11
+5,487,2.10E-11
+5,488,2.09E-11
+5,489,2.08E-11
+5,490,2.07E-11
+5,491,2.06E-11
+5,492,2.05E-11
+5,493,2.04E-11
+5,494,2.03E-11
+5,495,2.02E-11
+5,496,2.01E-11
+5,497,2.00E-11
+5,498,1.99E-11
+5,499,1.98E-11
+5,500,1.97E-11
+5,501,1.96E-11
+5,502,1.95E-11
+5,503,1.94E-11
+5,504,1.93E-11
+5,505,1.92E-11
+5,506,1.91E-11
+5,507,1.90E-11
+5,508,1.89E-11
+5,509,1.88E-11
+5,510,1.87E-11
+5,511,1.86E-11
+5,512,1.85E-11
+5,513,1.84E-11
+5,514,1.83E-11
+5,515,1.82E-11
+5,516,1.82E-11
+5,517,1.81E-11
+5,518,1.80E-11
+5,519,1.79E-11
+5,520,1.78E-11
+5,521,1.77E-11
+5,522,1.76E-11
+5,523,1.75E-11
+5,524,1.74E-11
+5,525,1.73E-11
+5,526,1.73E-11
+5,527,1.72E-11
+5,528,1.71E-11
+5,529,1.70E-11
+5,530,1.69E-11
+5,531,1.68E-11
+5,532,1.67E-11
+5,533,1.67E-11
+5,534,1.66E-11
+5,535,1.65E-11
+5,536,1.64E-11
+5,537,1.63E-11
+5,538,1.62E-11
+5,539,1.62E-11
+5,540,1.61E-11
+5,541,1.60E-11
+5,542,1.59E-11
+5,543,1.58E-11
+5,544,1.58E-11
+5,545,1.57E-11
+5,546,1.56E-11
+5,547,1.55E-11
+5,548,1.54E-11
+5,549,1.54E-11
+5,550,1.53E-11
+5,551,1.52E-11
+5,552,1.51E-11
+5,553,1.51E-11
+5,554,1.50E-11
+5,555,1.49E-11
+5,556,1.48E-11
+5,557,1.48E-11
+5,558,1.47E-11
+5,559,1.46E-11
+5,560,1.45E-11
+5,561,1.45E-11
+5,562,1.44E-11
+5,563,1.43E-11
+5,564,1.42E-11
+5,565,1.42E-11
+5,566,1.41E-11
+5,567,1.40E-11
+5,568,1.40E-11
+5,569,1.39E-11
+5,570,1.38E-11
+5,571,1.37E-11
+5,572,1.37E-11
+5,573,1.36E-11
+5,574,1.35E-11
+5,575,1.35E-11
+5,576,1.34E-11
+5,577,1.33E-11
+5,578,1.33E-11
+5,579,1.32E-11
+5,580,1.31E-11
+5,581,1.31E-11
+5,582,1.30E-11
+5,583,1.29E-11
+5,584,1.29E-11
+5,585,1.28E-11
+5,586,1.27E-11
+5,587,1.27E-11
+5,588,1.26E-11
+5,589,1.25E-11
+5,590,1.25E-11
+5,591,1.24E-11
+5,592,1.24E-11
+5,593,1.23E-11
+5,594,1.22E-11
+5,595,1.22E-11
+5,596,1.21E-11
+5,597,1.21E-11
+5,598,1.20E-11
+5,599,1.19E-11
+5,600,1.19E-11
+5,601,1.18E-11
+5,602,1.17E-11
+5,603,1.17E-11
+5,604,1.16E-11
+5,605,1.16E-11
+5,606,1.15E-11
+5,607,1.15E-11
+5,608,1.14E-11
+5,609,1.13E-11
+5,610,1.13E-11
+5,611,1.12E-11
+5,612,1.12E-11
+5,613,1.11E-11
+5,614,1.11E-11
+5,615,1.10E-11
+5,616,1.09E-11
+5,617,1.09E-11
+5,618,1.08E-11
+5,619,1.08E-11
+5,620,1.07E-11
+5,621,1.07E-11
+5,622,1.06E-11
+5,623,1.06E-11
+5,624,1.05E-11
+5,625,1.05E-11
+5,626,1.04E-11
+5,627,1.04E-11
+5,628,1.03E-11
+5,629,1.02E-11
+5,630,1.02E-11
+5,631,1.01E-11
+5,632,1.01E-11
+5,633,1.00E-11
+5,634,9.99E-12
+5,635,9.94E-12
+5,636,9.89E-12
+5,637,9.84E-12
+5,638,9.79E-12
+5,639,9.74E-12
+5,640,9.69E-12
+5,641,9.65E-12
+5,642,9.60E-12
+5,643,9.55E-12
+5,644,9.50E-12
+5,645,9.45E-12
+5,646,9.41E-12
+5,647,9.36E-12
+5,648,9.31E-12
+5,649,9.26E-12
+5,650,9.22E-12
+5,651,9.17E-12
+5,652,9.12E-12
+5,653,9.08E-12
+5,654,9.03E-12
+5,655,8.99E-12
+5,656,8.94E-12
+5,657,8.90E-12
+5,658,8.85E-12
+5,659,8.81E-12
+5,660,8.76E-12
+5,661,8.72E-12
+5,662,8.67E-12
+5,663,8.63E-12
+5,664,8.59E-12
+5,665,8.54E-12
+5,666,8.50E-12
+5,667,8.46E-12
+5,668,8.41E-12
+5,669,8.37E-12
+5,670,8.33E-12
+5,671,8.29E-12
+5,672,8.25E-12
+5,673,8.20E-12
+5,674,8.16E-12
+5,675,8.12E-12
+5,676,8.08E-12
+5,677,8.04E-12
+5,678,8.00E-12
+5,679,7.96E-12
+5,680,7.92E-12
+5,681,7.88E-12
+5,682,7.84E-12
+5,683,7.80E-12
+5,684,7.76E-12
+5,685,7.72E-12
+5,686,7.68E-12
+5,687,7.64E-12
+5,688,7.60E-12
+5,689,7.57E-12
+5,690,7.53E-12
+5,691,7.49E-12
+5,692,7.45E-12
+5,693,7.41E-12
+5,694,7.38E-12
+5,695,7.34E-12
+5,696,7.30E-12
+5,697,7.27E-12
+5,698,7.23E-12
+5,699,7.19E-12
+5,700,7.16E-12
+5,701,7.12E-12
+5,702,7.08E-12
+5,703,7.05E-12
+5,704,7.01E-12
+5,705,6.98E-12
+5,706,6.94E-12
+5,707,6.91E-12
+5,708,6.87E-12
+5,709,6.84E-12
+5,710,6.80E-12
+5,711,6.77E-12
+5,712,6.74E-12
+5,713,6.70E-12
+5,714,6.67E-12
+5,715,6.63E-12
+5,716,6.60E-12
+5,717,6.57E-12
+5,718,6.53E-12
+5,719,6.50E-12
+5,720,6.47E-12
+5,721,6.44E-12
+5,722,6.40E-12
+5,723,6.37E-12
+5,724,6.34E-12
+5,725,6.31E-12
+5,726,6.28E-12
+5,727,6.24E-12
+5,728,6.21E-12
+5,729,6.18E-12
+5,730,6.15E-12
+5,731,6.12E-12
+5,732,6.09E-12
+5,733,6.06E-12
+5,734,6.03E-12
+5,735,6.00E-12
+5,736,5.97E-12
+5,737,5.94E-12
+5,738,5.91E-12
+5,739,5.88E-12
+5,740,5.85E-12
+5,741,5.82E-12
+5,742,5.79E-12
+5,743,5.76E-12
+5,744,5.73E-12
+5,745,5.70E-12
+5,746,5.67E-12
+5,747,5.64E-12
+5,748,5.61E-12
+5,749,5.59E-12
+5,750,5.56E-12
+5,751,5.53E-12
+5,752,5.50E-12
+5,753,5.47E-12
+5,754,5.45E-12
+5,755,5.42E-12
+5,756,5.39E-12
+5,757,5.36E-12
+5,758,5.34E-12
+5,759,5.31E-12
+5,760,5.28E-12
+5,761,5.26E-12
+5,762,5.23E-12
+5,763,5.20E-12
+5,764,5.18E-12
+5,765,5.15E-12
+5,766,5.13E-12
+5,767,5.10E-12
+5,768,5.07E-12
+5,769,5.05E-12
+5,770,5.02E-12
+5,771,5.00E-12
+5,772,4.97E-12
+5,773,4.95E-12
+5,774,4.92E-12
+5,775,4.90E-12
+5,776,4.87E-12
+5,777,4.85E-12
+5,778,4.82E-12
+5,779,4.80E-12
+5,780,4.78E-12
+5,781,4.75E-12
+5,782,4.73E-12
+5,783,4.70E-12
+5,784,4.68E-12
+5,785,4.66E-12
+5,786,4.63E-12
+5,787,4.61E-12
+5,788,4.59E-12
+5,789,4.56E-12
+5,790,4.54E-12
+5,791,4.52E-12
+5,792,4.49E-12
+5,793,4.47E-12
+5,794,4.45E-12
+5,795,4.43E-12
+5,796,4.40E-12
+5,797,4.38E-12
+5,798,4.36E-12
+5,799,4.34E-12
+5,800,4.32E-12
+5,801,4.29E-12
+5,802,4.27E-12
+5,803,4.25E-12
+5,804,4.23E-12
+5,805,4.21E-12
+5,806,4.19E-12
+5,807,4.17E-12
+5,808,4.14E-12
+5,809,4.12E-12
+5,810,4.10E-12
+5,811,4.08E-12
+5,812,4.06E-12
+5,813,4.04E-12
+5,814,4.02E-12
+5,815,4.00E-12
+5,816,3.98E-12
+5,817,3.96E-12
+5,818,3.94E-12
+5,819,3.92E-12
+5,820,3.90E-12
+5,821,3.88E-12
+5,822,3.86E-12
+5,823,3.84E-12
+5,824,3.82E-12
+5,825,3.80E-12
+5,826,3.78E-12
+5,827,3.76E-12
+5,828,3.75E-12
+5,829,3.73E-12
+5,830,3.71E-12
+5,831,3.69E-12
+5,832,3.67E-12
+5,833,3.65E-12
+5,834,3.63E-12
+5,835,3.62E-12
+5,836,3.60E-12
+5,837,3.58E-12
+5,838,3.56E-12
+5,839,3.54E-12
+5,840,3.53E-12
+5,841,3.51E-12
+5,842,3.49E-12
+5,843,3.47E-12
+5,844,3.45E-12
+5,845,3.44E-12
+5,846,3.42E-12
+5,847,3.40E-12
+5,848,3.39E-12
+5,849,3.37E-12
+5,850,3.35E-12
+5,851,3.33E-12
+5,852,3.32E-12
+5,853,3.30E-12
+5,854,3.28E-12
+5,855,3.27E-12
+5,856,3.25E-12
+5,857,3.23E-12
+5,858,3.22E-12
+5,859,3.20E-12
+5,860,3.19E-12
+5,861,3.17E-12
+5,862,3.15E-12
+5,863,3.14E-12
+5,864,3.12E-12
+5,865,3.11E-12
+5,866,3.09E-12
+5,867,3.08E-12
+5,868,3.06E-12
+5,869,3.04E-12
+5,870,3.03E-12
+5,871,3.01E-12
+5,872,3.00E-12
+5,873,2.98E-12
+5,874,2.97E-12
+5,875,2.95E-12
+5,876,2.94E-12
+5,877,2.92E-12
+5,878,2.91E-12
+5,879,2.89E-12
+5,880,2.88E-12
+5,881,2.86E-12
+5,882,2.85E-12
+5,883,2.84E-12
+5,884,2.82E-12
+5,885,2.81E-12
+5,886,2.79E-12
+5,887,2.78E-12
+5,888,2.77E-12
+5,889,2.75E-12
+5,890,2.74E-12
+5,891,2.72E-12
+5,892,2.71E-12
+5,893,2.70E-12
+5,894,2.68E-12
+5,895,2.67E-12
+5,896,2.66E-12
+5,897,2.64E-12
+5,898,2.63E-12
+5,899,2.62E-12
+5,900,2.60E-12
+5,901,2.59E-12
+5,902,2.58E-12
+5,903,2.56E-12
+5,904,2.55E-12
+5,905,2.54E-12
+5,906,2.52E-12
+5,907,2.51E-12
+5,908,2.50E-12
+5,909,2.49E-12
+5,910,2.47E-12
+5,911,2.46E-12
+5,912,2.45E-12
+5,913,2.44E-12
+5,914,2.42E-12
+5,915,2.41E-12
+5,916,2.40E-12
+5,917,2.39E-12
+5,918,2.38E-12
+5,919,2.36E-12
+5,920,2.35E-12
+5,921,2.34E-12
+5,922,2.33E-12
+5,923,2.32E-12
+5,924,2.30E-12
+5,925,2.29E-12
+5,926,2.28E-12
+5,927,2.27E-12
+5,928,2.26E-12
+5,929,2.25E-12
+5,930,2.24E-12
+5,931,2.22E-12
+5,932,2.21E-12
+5,933,2.20E-12
+5,934,2.19E-12
+5,935,2.18E-12
+5,936,2.17E-12
+5,937,2.16E-12
+5,938,2.15E-12
+5,939,2.14E-12
+5,940,2.13E-12
+5,941,2.11E-12
+5,942,2.10E-12
+5,943,2.09E-12
+5,944,2.08E-12
+5,945,2.07E-12
+5,946,2.06E-12
+5,947,2.05E-12
+5,948,2.04E-12
+5,949,2.03E-12
+5,950,2.02E-12
+5,951,2.01E-12
+5,952,2.00E-12
+5,953,1.99E-12
+5,954,1.98E-12
+5,955,1.97E-12
+5,956,1.96E-12
+5,957,1.95E-12
+5,958,1.94E-12
+5,959,1.93E-12
+5,960,1.92E-12
+5,961,1.91E-12
+5,962,1.90E-12
+5,963,1.89E-12
+5,964,1.88E-12
+5,965,1.87E-12
+5,966,1.86E-12
+5,967,1.85E-12
+5,968,1.84E-12
+5,969,1.84E-12
+5,970,1.83E-12
+5,971,1.82E-12
+5,972,1.81E-12
+5,973,1.80E-12
+5,974,1.79E-12
+5,975,1.78E-12
+5,976,1.77E-12
+5,977,1.76E-12
+5,978,1.75E-12
+5,979,1.75E-12
+5,980,1.74E-12
+5,981,1.73E-12
+5,982,1.72E-12
+5,983,1.71E-12
+5,984,1.70E-12
+5,985,1.69E-12
+5,986,1.68E-12
+5,987,1.68E-12
+5,988,1.67E-12
+5,989,1.66E-12
+5,990,1.65E-12
+5,991,1.64E-12
+5,992,1.63E-12
+5,993,1.63E-12
+5,994,1.62E-12
+5,995,1.61E-12
+5,996,1.60E-12
+5,997,1.59E-12
+5,998,1.59E-12
+5,999,1.58E-12
+5,1000,1.57E-12
+5,1001,1.56E-12
+5,1002,1.55E-12
+5,1003,1.55E-12
+5,1004,1.54E-12
+5,1005,1.53E-12
+5,1006,1.52E-12
+5,1007,1.51E-12
+5,1008,1.51E-12
+5,1009,1.50E-12
+5,1010,1.49E-12
+5,1011,1.48E-12
+5,1012,1.48E-12
+5,1013,1.47E-12
+5,1014,1.46E-12
+5,1015,1.45E-12
+5,1016,1.45E-12
+5,1017,1.44E-12
+5,1018,1.43E-12
+5,1019,1.43E-12
+5,1020,1.42E-12
+5,1021,1.41E-12
+5,1022,1.40E-12
+5,1023,1.40E-12
+5,1024,1.39E-12
+5,1025,1.38E-12
+5,1026,1.38E-12
+5,1027,1.37E-12
+5,1028,1.36E-12
+5,1029,1.36E-12
+5,1030,1.35E-12
+5,1031,1.34E-12
+5,1032,1.33E-12
+5,1033,1.33E-12
+5,1034,1.32E-12
+5,1035,1.31E-12
+5,1036,1.31E-12
+5,1037,1.30E-12
+5,1038,1.29E-12
+5,1039,1.29E-12
+5,1040,1.28E-12
+5,1041,1.28E-12
+5,1042,1.27E-12
+5,1043,1.26E-12
+5,1044,1.26E-12
+5,1045,1.25E-12
+5,1046,1.24E-12
+5,1047,1.24E-12
+5,1048,1.23E-12
+5,1049,1.22E-12
+5,1050,1.22E-12
+5,1051,1.21E-12
+5,1052,1.21E-12
+5,1053,1.20E-12
+5,1054,1.19E-12
+5,1055,1.19E-12
+5,1056,1.18E-12
+5,1057,1.18E-12
+5,1058,1.17E-12
+5,1059,1.16E-12
+5,1060,1.16E-12
+5,1061,1.15E-12
+5,1062,1.15E-12
+5,1063,1.14E-12
+5,1064,1.14E-12
+5,1065,1.13E-12
+5,1066,1.12E-12
+5,1067,1.12E-12
+5,1068,1.11E-12
+5,1069,1.11E-12
+5,1070,1.10E-12
+5,1071,1.10E-12
+5,1072,1.09E-12
+5,1073,1.08E-12
+5,1074,1.08E-12
+5,1075,1.07E-12
+5,1076,1.07E-12
+5,1077,1.06E-12
+5,1078,1.06E-12
+5,1079,1.05E-12
+5,1080,1.05E-12
+5,1081,1.04E-12
+5,1082,1.04E-12
+5,1083,1.03E-12
+5,1084,1.03E-12
+5,1085,1.02E-12
+5,1086,1.02E-12
+5,1087,1.01E-12
+5,1088,1.01E-12
+5,1089,1.00E-12
+5,1090,9.95E-13
+5,1091,9.90E-13
+5,1092,9.85E-13
+5,1093,9.80E-13
+5,1094,9.75E-13
+5,1095,9.71E-13
+5,1096,9.66E-13
+5,1097,9.61E-13
+5,1098,9.56E-13
+5,1099,9.51E-13
+5,1100,9.46E-13
+5,1101,9.42E-13
+5,1102,9.37E-13
+5,1103,9.32E-13
+5,1104,9.27E-13
+5,1105,9.23E-13
+5,1106,9.18E-13
+5,1107,9.13E-13
+5,1108,9.09E-13
+5,1109,9.04E-13
+5,1110,9.00E-13
+5,1111,8.95E-13
+5,1112,8.91E-13
+5,1113,8.86E-13
+5,1114,8.82E-13
+5,1115,8.77E-13
+5,1116,8.73E-13
+5,1117,8.68E-13
+5,1118,8.64E-13
+5,1119,8.60E-13
+5,1120,8.55E-13
+5,1121,8.51E-13
+5,1122,8.47E-13
+5,1123,8.42E-13
+5,1124,8.38E-13
+5,1125,8.34E-13
+5,1126,8.30E-13
+5,1127,8.25E-13
+5,1128,8.21E-13
+5,1129,8.17E-13
+5,1130,8.13E-13
+5,1131,8.09E-13
+5,1132,8.05E-13
+5,1133,8.01E-13
+5,1134,7.97E-13
+5,1135,7.93E-13
+5,1136,7.89E-13
+5,1137,7.85E-13
+5,1138,7.81E-13
+5,1139,7.77E-13
+5,1140,7.73E-13
+5,1141,7.69E-13
+5,1142,7.65E-13
+5,1143,7.61E-13
+5,1144,7.57E-13
+5,1145,7.54E-13
+5,1146,7.50E-13
+5,1147,7.46E-13
+5,1148,7.42E-13
+5,1149,7.39E-13
+5,1150,7.35E-13
+5,1151,7.31E-13
+5,1152,7.27E-13
+5,1153,7.24E-13
+5,1154,7.20E-13
+5,1155,7.16E-13
+5,1156,7.13E-13
+5,1157,7.09E-13
+5,1158,7.06E-13
+5,1159,7.02E-13
+5,1160,6.99E-13
+5,1161,6.95E-13
+5,1162,6.92E-13
+5,1163,6.88E-13
+5,1164,6.85E-13
+5,1165,6.81E-13
+5,1166,6.78E-13
+5,1167,6.74E-13
+5,1168,6.71E-13
+5,1169,6.67E-13
+5,1170,6.64E-13
+5,1171,6.61E-13
+5,1172,6.57E-13
+5,1173,6.54E-13
+5,1174,6.51E-13
+5,1175,6.48E-13
+5,1176,6.44E-13
+5,1177,6.41E-13
+5,1178,6.38E-13
+5,1179,6.35E-13
+5,1180,6.31E-13
+5,1181,6.28E-13
+5,1182,6.25E-13
+5,1183,6.22E-13
+5,1184,6.19E-13
+5,1185,6.16E-13
+5,1186,6.12E-13
+5,1187,6.09E-13
+5,1188,6.06E-13
+5,1189,6.03E-13
+5,1190,6.00E-13
+5,1191,5.97E-13
+5,1192,5.94E-13
+5,1193,5.91E-13
+5,1194,5.88E-13
+5,1195,5.85E-13
+5,1196,5.82E-13
+5,1197,5.79E-13
+5,1198,5.76E-13
+5,1199,5.74E-13
+5,1200,5.71E-13
+5,1201,5.68E-13
+5,1202,5.65E-13
+5,1203,5.62E-13
+5,1204,5.59E-13
+5,1205,5.56E-13
+5,1206,5.54E-13
+5,1207,5.51E-13
+5,1208,5.48E-13
+5,1209,5.45E-13
+5,1210,5.42E-13
+5,1211,5.40E-13
+5,1212,5.37E-13
+5,1213,5.34E-13
+5,1214,5.32E-13
+5,1215,5.29E-13
+5,1216,5.26E-13
+5,1217,5.24E-13
+5,1218,5.21E-13
+5,1219,5.18E-13
+5,1220,5.16E-13
+5,1221,5.13E-13
+5,1222,5.11E-13
+5,1223,5.08E-13
+5,1224,5.05E-13
+5,1225,5.03E-13
+5,1226,5.00E-13
+5,1227,4.98E-13
+5,1228,4.95E-13
+5,1229,4.93E-13
+5,1230,4.90E-13
+5,1231,4.88E-13
+5,1232,4.85E-13
+5,1233,4.83E-13
+5,1234,4.80E-13
+5,1235,4.78E-13
+5,1236,4.76E-13
+5,1237,4.73E-13
+5,1238,4.71E-13
+5,1239,4.68E-13
+5,1240,4.66E-13
+5,1241,4.64E-13
+5,1242,4.61E-13
+5,1243,4.59E-13
+5,1244,4.57E-13
+5,1245,4.54E-13
+5,1246,4.52E-13
+5,1247,4.50E-13
+5,1248,4.48E-13
+5,1249,4.45E-13
+5,1250,4.43E-13
+5,1251,4.41E-13
+5,1252,4.39E-13
+5,1253,4.36E-13
+5,1254,4.34E-13
+5,1255,4.32E-13
+5,1256,4.30E-13
+5,1257,4.28E-13
+5,1258,4.26E-13
+5,1259,4.23E-13
+5,1260,4.21E-13
+5,1261,4.19E-13
+5,1262,4.17E-13
+5,1263,4.15E-13
+5,1264,4.13E-13
+5,1265,4.11E-13
+5,1266,4.09E-13
+5,1267,4.07E-13
+5,1268,4.05E-13
+5,1269,4.02E-13
+5,1270,4.00E-13
+5,1271,3.98E-13
+5,1272,3.96E-13
+5,1273,3.94E-13
+5,1274,3.92E-13
+5,1275,3.90E-13
+5,1276,3.88E-13
+5,1277,3.87E-13
+5,1278,3.85E-13
+5,1279,3.83E-13
+5,1280,3.81E-13
+5,1281,3.79E-13
+5,1282,3.77E-13
+5,1283,3.75E-13
+5,1284,3.73E-13
+5,1285,3.71E-13
+5,1286,3.69E-13
+5,1287,3.67E-13
+5,1288,3.66E-13
+5,1289,3.64E-13
+5,1290,3.62E-13
+5,1291,3.60E-13
+5,1292,3.58E-13
+5,1293,3.56E-13
+5,1294,3.55E-13
+5,1295,3.53E-13
+5,1296,3.51E-13
+5,1297,3.49E-13
+5,1298,3.48E-13
+5,1299,3.46E-13
+5,1300,3.44E-13
+5,1301,3.42E-13
+5,1302,3.41E-13
+5,1303,3.39E-13
+5,1304,3.37E-13
+5,1305,3.35E-13
+5,1306,3.34E-13
+5,1307,3.32E-13
+5,1308,3.30E-13
+5,1309,3.29E-13
+5,1310,3.27E-13
+5,1311,3.25E-13
+5,1312,3.24E-13
+5,1313,3.22E-13
+5,1314,3.21E-13
+5,1315,3.19E-13
+5,1316,3.17E-13
+5,1317,3.16E-13
+5,1318,3.14E-13
+5,1319,3.13E-13
+5,1320,3.11E-13
+5,1321,3.09E-13
+5,1322,3.08E-13
+5,1323,3.06E-13
+5,1324,3.05E-13
+5,1325,3.03E-13
+5,1326,3.02E-13
+5,1327,3.00E-13
+5,1328,2.99E-13
+5,1329,2.97E-13
+5,1330,2.96E-13
+5,1331,2.94E-13
+5,1332,2.93E-13
+5,1333,2.91E-13
+5,1334,2.90E-13
+5,1335,2.88E-13
+5,1336,2.87E-13
+5,1337,2.85E-13
+5,1338,2.84E-13
+5,1339,2.82E-13
+5,1340,2.81E-13
+5,1341,2.80E-13
+5,1342,2.78E-13
+5,1343,2.77E-13
+5,1344,2.75E-13
+5,1345,2.74E-13
+5,1346,2.73E-13
+5,1347,2.71E-13
+5,1348,2.70E-13
+5,1349,2.69E-13
+5,1350,2.67E-13
+5,1351,2.66E-13
+5,1352,2.65E-13
+5,1353,2.63E-13
+5,1354,2.62E-13
+5,1355,2.61E-13
+5,1356,2.59E-13
+5,1357,2.58E-13
+5,1358,2.57E-13
+5,1359,2.55E-13
+5,1360,2.54E-13
+5,1361,2.53E-13
+5,1362,2.51E-13
+5,1363,2.50E-13
+5,1364,2.49E-13
+5,1365,2.48E-13
+5,1366,2.46E-13
+5,1367,2.45E-13
+5,1368,2.44E-13
+5,1369,2.43E-13
+5,1370,2.41E-13
+5,1371,2.40E-13
+5,1372,2.39E-13
+5,1373,2.38E-13
+5,1374,2.37E-13
+5,1375,2.35E-13
+5,1376,2.34E-13
+5,1377,2.33E-13
+5,1378,2.32E-13
+5,1379,2.31E-13
+5,1380,2.30E-13
+5,1381,2.28E-13
+5,1382,2.27E-13
+5,1383,2.26E-13
+5,1384,2.25E-13
+5,1385,2.24E-13
+5,1386,2.23E-13
+5,1387,2.22E-13
+5,1388,2.20E-13
+5,1389,2.19E-13
+5,1390,2.18E-13
+5,1391,2.17E-13
+5,1392,2.16E-13
+5,1393,2.15E-13
+5,1394,2.14E-13
+5,1395,2.13E-13
+5,1396,2.12E-13
+5,1397,2.11E-13
+5,1398,2.10E-13
+5,1399,2.09E-13
+5,1400,2.07E-13
+5,1401,2.06E-13
+5,1402,2.05E-13
+5,1403,2.04E-13
+5,1404,2.03E-13
+5,1405,2.02E-13
+5,1406,2.01E-13
+5,1407,2.00E-13
+5,1408,1.99E-13
+5,1409,1.98E-13
+5,1410,1.97E-13
+5,1411,1.96E-13
+5,1412,1.95E-13
+5,1413,1.94E-13
+5,1414,1.93E-13
+5,1415,1.92E-13
+5,1416,1.91E-13
+5,1417,1.90E-13
+5,1418,1.89E-13
+5,1419,1.88E-13
+5,1420,1.88E-13
+5,1421,1.87E-13
+5,1422,1.86E-13
+5,1423,1.85E-13
+5,1424,1.84E-13
+5,1425,1.83E-13
+5,1426,1.82E-13
+5,1427,1.81E-13
+5,1428,1.80E-13
+5,1429,1.79E-13
+5,1430,1.78E-13
+5,1431,1.77E-13
+5,1432,1.76E-13
+5,1433,1.76E-13
+5,1434,1.75E-13
+5,1435,1.74E-13
+5,1436,1.73E-13
+5,1437,1.72E-13
+5,1438,1.71E-13
+5,1439,1.70E-13
+5,1440,1.69E-13
+5,1441,1.69E-13
+5,1442,1.68E-13
+5,1443,1.67E-13
+5,1444,1.66E-13
+5,1445,1.65E-13
+5,1446,1.64E-13
+5,1447,1.64E-13
+5,1448,1.63E-13
+5,1449,1.62E-13
+5,1450,1.61E-13
+5,1451,1.60E-13
+5,1452,1.59E-13
+5,1453,1.59E-13
+5,1454,1.58E-13
+5,1455,1.57E-13
+5,1456,1.56E-13
+5,1457,1.56E-13
+5,1458,1.55E-13
+5,1459,1.54E-13
+5,1460,1.53E-13
+5,1461,1.52E-13
+5,1462,1.52E-13
+5,1463,1.51E-13
+5,1464,1.50E-13
+5,1465,1.49E-13
+5,1466,1.49E-13
+5,1467,1.48E-13
+5,1468,1.47E-13
+5,1469,1.46E-13
+5,1470,1.46E-13
+5,1471,1.45E-13
+5,1472,1.44E-13
+5,1473,1.43E-13
+5,1474,1.43E-13
+5,1475,1.42E-13
+5,1476,1.41E-13
+5,1477,1.41E-13
+5,1478,1.40E-13
+5,1479,1.39E-13
+5,1480,1.38E-13
+5,1481,1.38E-13
+5,1482,1.37E-13
+5,1483,1.36E-13
+5,1484,1.36E-13
+5,1485,1.35E-13
+5,1486,1.34E-13
+5,1487,1.34E-13
+5,1488,1.33E-13
+5,1489,1.32E-13
+5,1490,1.32E-13
+5,1491,1.31E-13
+5,1492,1.30E-13
+5,1493,1.30E-13
+5,1494,1.29E-13
+5,1495,1.28E-13
+5,1496,1.28E-13
+5,1497,1.27E-13
+5,1498,1.26E-13
+5,1499,1.26E-13
+5,1500,1.25E-13
+5,1501,1.24E-13
+5,1502,1.24E-13
+5,1503,1.23E-13
+5,1504,1.23E-13
+5,1505,1.22E-13
+5,1506,1.21E-13
+5,1507,1.21E-13
+5,1508,1.20E-13
+5,1509,1.20E-13
+5,1510,1.19E-13
+5,1511,1.18E-13
+5,1512,1.18E-13
+5,1513,1.17E-13
+5,1514,1.17E-13
+5,1515,1.16E-13
+5,1516,1.15E-13
+5,1517,1.15E-13
+5,1518,1.14E-13
+5,1519,1.14E-13
+5,1520,1.13E-13
+5,1521,1.13E-13
+5,1522,1.12E-13
+5,1523,1.11E-13
+5,1524,1.11E-13
+5,1525,1.10E-13
+5,1526,1.10E-13
+5,1527,1.09E-13
+5,1528,1.09E-13
+5,1529,1.08E-13
+5,1530,1.07E-13
+5,1531,1.07E-13
+5,1532,1.06E-13
+5,1533,1.06E-13
+5,1534,1.05E-13
+5,1535,1.05E-13
+5,1536,1.04E-13
+5,1537,1.04E-13
+5,1538,1.03E-13
+5,1539,1.03E-13
+5,1540,1.02E-13
+5,1541,1.02E-13
+5,1542,1.01E-13
+5,1543,1.01E-13
+5,1544,1.00E-13
+5,1545,9.96E-14
+5,1546,9.91E-14
+5,1547,9.86E-14
+5,1548,9.81E-14
+5,1549,9.76E-14
+5,1550,9.72E-14
+5,1551,9.67E-14
+5,1552,9.62E-14
+5,1553,9.57E-14
+5,1554,9.52E-14
+5,1555,9.47E-14
+5,1556,9.43E-14
+5,1557,9.38E-14
+5,1558,9.33E-14
+5,1559,9.28E-14
+5,1560,9.24E-14
+5,1561,9.19E-14
+5,1562,9.14E-14
+5,1563,9.10E-14
+5,1564,9.05E-14
+5,1565,9.01E-14
+5,1566,8.96E-14
+5,1567,8.91E-14
+5,1568,8.87E-14
+5,1569,8.83E-14
+5,1570,8.78E-14
+5,1571,8.74E-14
+5,1572,8.69E-14
+5,1573,8.65E-14
+5,1574,8.60E-14
+5,1575,8.56E-14
+5,1576,8.52E-14
+5,1577,8.48E-14
+5,1578,8.43E-14
+5,1579,8.39E-14
+5,1580,8.35E-14
+5,1581,8.31E-14
+5,1582,8.26E-14
+5,1583,8.22E-14
+5,1584,8.18E-14
+5,1585,8.14E-14
+5,1586,8.10E-14
+5,1587,8.06E-14
+5,1588,8.02E-14
+5,1589,7.98E-14
+5,1590,7.94E-14
+5,1591,7.90E-14
+5,1592,7.86E-14
+5,1593,7.82E-14
+5,1594,7.78E-14
+5,1595,7.74E-14
+5,1596,7.70E-14
+5,1597,7.66E-14
+5,1598,7.62E-14
+5,1599,7.58E-14
+5,1600,7.54E-14
+5,1601,7.51E-14
+5,1602,7.47E-14
+5,1603,7.43E-14
+5,1604,7.39E-14
+5,1605,7.36E-14
+5,1606,7.32E-14
+5,1607,7.28E-14
+5,1608,7.25E-14
+5,1609,7.21E-14
+5,1610,7.17E-14
+5,1611,7.14E-14
+5,1612,7.10E-14
+5,1613,7.06E-14
+5,1614,7.03E-14
+5,1615,6.99E-14
+5,1616,6.96E-14
+5,1617,6.92E-14
+5,1618,6.89E-14
+5,1619,6.85E-14
+5,1620,6.82E-14
+5,1621,6.78E-14
+5,1622,6.75E-14
+5,1623,6.72E-14
+5,1624,6.68E-14
+5,1625,6.65E-14
+5,1626,6.61E-14
+5,1627,6.58E-14
+5,1628,6.55E-14
+5,1629,6.52E-14
+5,1630,6.48E-14
+5,1631,6.45E-14
+5,1632,6.42E-14
+5,1633,6.38E-14
+5,1634,6.35E-14
+5,1635,6.32E-14
+5,1636,6.29E-14
+5,1637,6.26E-14
+5,1638,6.23E-14
+5,1639,6.19E-14
+5,1640,6.16E-14
+5,1641,6.13E-14
+5,1642,6.10E-14
+5,1643,6.07E-14
+5,1644,6.04E-14
+5,1645,6.01E-14
+5,1646,5.98E-14
+5,1647,5.95E-14
+5,1648,5.92E-14
+5,1649,5.89E-14
+5,1650,5.86E-14
+5,1651,5.83E-14
+5,1652,5.80E-14
+5,1653,5.77E-14
+5,1654,5.74E-14
+5,1655,5.71E-14
+5,1656,5.68E-14
+5,1657,5.65E-14
+5,1658,5.63E-14
+5,1659,5.60E-14
+5,1660,5.57E-14
+5,1661,5.54E-14
+5,1662,5.51E-14
+5,1663,5.49E-14
+5,1664,5.46E-14
+5,1665,5.43E-14
+5,1666,5.40E-14
+5,1667,5.38E-14
+5,1668,5.35E-14
+5,1669,5.32E-14
+5,1670,5.29E-14
+5,1671,5.27E-14
+5,1672,5.24E-14
+5,1673,5.22E-14
+5,1674,5.19E-14
+5,1675,5.16E-14
+5,1676,5.14E-14
+5,1677,5.11E-14
+5,1678,5.08E-14
+5,1679,5.06E-14
+5,1680,5.03E-14
+5,1681,5.01E-14
+5,1682,4.98E-14
+5,1683,4.96E-14
+5,1684,4.93E-14
+5,1685,4.91E-14
+5,1686,4.88E-14
+5,1687,4.86E-14
+5,1688,4.83E-14
+5,1689,4.81E-14
+5,1690,4.79E-14
+5,1691,4.76E-14
+5,1692,4.74E-14
+5,1693,4.71E-14
+5,1694,4.69E-14
+5,1695,4.67E-14
+5,1696,4.64E-14
+5,1697,4.62E-14
+5,1698,4.60E-14
+5,1699,4.57E-14
+5,1700,4.55E-14
+5,1701,4.53E-14
+5,1702,4.50E-14
+5,1703,4.48E-14
+5,1704,4.46E-14
+5,1705,4.44E-14
+5,1706,4.41E-14
+5,1707,4.39E-14
+5,1708,4.37E-14
+5,1709,4.35E-14
+5,1710,4.32E-14
+5,1711,4.30E-14
+5,1712,4.28E-14
+5,1713,4.26E-14
+5,1714,4.24E-14
+5,1715,4.22E-14
+5,1716,4.20E-14
+5,1717,4.17E-14
+5,1718,4.15E-14
+5,1719,4.13E-14
+5,1720,4.11E-14
+5,1721,4.09E-14
+5,1722,4.07E-14
+5,1723,4.05E-14
+5,1724,4.03E-14
+5,1725,4.01E-14
+5,1726,3.99E-14
+5,1727,3.97E-14
+5,1728,3.95E-14
+5,1729,3.93E-14
+5,1730,3.91E-14
+5,1731,3.89E-14
+5,1732,3.87E-14
+5,1733,3.85E-14
+5,1734,3.83E-14
+5,1735,3.81E-14
+5,1736,3.79E-14
+5,1737,3.77E-14
+5,1738,3.75E-14
+5,1739,3.73E-14
+5,1740,3.72E-14
+5,1741,3.70E-14
+5,1742,3.68E-14
+5,1743,3.66E-14
+5,1744,3.64E-14
+5,1745,3.62E-14
+5,1746,3.60E-14
+5,1747,3.59E-14
+5,1748,3.57E-14
+5,1749,3.55E-14
+5,1750,3.53E-14
+5,1751,3.51E-14
+5,1752,3.50E-14
+5,1753,3.48E-14
+5,1754,3.46E-14
+5,1755,3.44E-14
+5,1756,3.43E-14
+5,1757,3.41E-14
+5,1758,3.39E-14
+5,1759,3.38E-14
+5,1760,3.36E-14
+5,1761,3.34E-14
+5,1762,3.32E-14
+5,1763,3.31E-14
+5,1764,3.29E-14
+5,1765,3.27E-14
+5,1766,3.26E-14
+5,1767,3.24E-14
+5,1768,3.23E-14
+5,1769,3.21E-14
+5,1770,3.19E-14
+5,1771,3.18E-14
+5,1772,3.16E-14
+5,1773,3.14E-14
+5,1774,3.13E-14
+5,1775,3.11E-14
+5,1776,3.10E-14
+5,1777,3.08E-14
+5,1778,3.07E-14
+5,1779,3.05E-14
+5,1780,3.04E-14
+5,1781,3.02E-14
+5,1782,3.00E-14
+5,1783,2.99E-14
+5,1784,2.97E-14
+5,1785,2.96E-14
+5,1786,2.94E-14
+5,1787,2.93E-14
+5,1788,2.91E-14
+5,1789,2.90E-14
+5,1790,2.89E-14
+5,1791,2.87E-14
+5,1792,2.86E-14
+5,1793,2.84E-14
+5,1794,2.83E-14
+5,1795,2.81E-14
+5,1796,2.80E-14
+5,1797,2.79E-14
+5,1798,2.77E-14
+5,1799,2.76E-14
+5,1800,2.74E-14
+5,1801,2.73E-14
+5,1802,2.72E-14
+5,1803,2.70E-14
+5,1804,2.69E-14
+5,1805,2.67E-14
+5,1806,2.66E-14
+5,1807,2.65E-14
+5,1808,2.63E-14
+5,1809,2.62E-14
+5,1810,2.61E-14
+5,1811,2.59E-14
+5,1812,2.58E-14
+5,1813,2.57E-14
+5,1814,2.56E-14
+5,1815,2.54E-14
+5,1816,2.53E-14
+5,1817,2.52E-14
+5,1818,2.50E-14
+5,1819,2.49E-14
+5,1820,2.48E-14
+5,1821,2.47E-14
+5,1822,2.45E-14
+5,1823,2.44E-14
+5,1824,2.43E-14
+5,1825,2.42E-14
+5,1826,2.41E-14
+5,1827,2.39E-14
+5,1828,2.38E-14
+5,1829,2.37E-14
+5,1830,2.36E-14
+5,1831,2.35E-14
+5,1832,2.33E-14
+5,1833,2.32E-14
+5,1834,2.31E-14
+5,1835,2.30E-14
+5,1836,2.29E-14
+5,1837,2.28E-14
+5,1838,2.26E-14
+5,1839,2.25E-14
+5,1840,2.24E-14
+5,1841,2.23E-14
+5,1842,2.22E-14
+5,1843,2.21E-14
+5,1844,2.20E-14
+5,1845,2.18E-14
+5,1846,2.17E-14
+5,1847,2.16E-14
+5,1848,2.15E-14
+5,1849,2.14E-14
+5,1850,2.13E-14
+5,1851,2.12E-14
+5,1852,2.11E-14
+5,1853,2.10E-14
+5,1854,2.09E-14
+5,1855,2.08E-14
+5,1856,2.07E-14
+5,1857,2.06E-14
+5,1858,2.05E-14
+5,1859,2.04E-14
+5,1860,2.03E-14
+5,1861,2.01E-14
+5,1862,2.00E-14
+5,1863,1.99E-14
+5,1864,1.98E-14
+5,1865,1.97E-14
+5,1866,1.96E-14
+5,1867,1.95E-14
+5,1868,1.94E-14
+5,1869,1.94E-14
+5,1870,1.93E-14
+5,1871,1.92E-14
+5,1872,1.91E-14
+5,1873,1.90E-14
+5,1874,1.89E-14
+5,1875,1.88E-14
+5,1876,1.87E-14
+5,1877,1.86E-14
+5,1878,1.85E-14
+5,1879,1.84E-14
+5,1880,1.83E-14
+5,1881,1.82E-14
+5,1882,1.81E-14
+5,1883,1.80E-14
+5,1884,1.79E-14
+5,1885,1.78E-14
+5,1886,1.78E-14
+5,1887,1.77E-14
+5,1888,1.76E-14
+5,1889,1.75E-14
+5,1890,1.74E-14
+5,1891,1.73E-14
+5,1892,1.72E-14
+5,1893,1.71E-14
+5,1894,1.71E-14
+5,1895,1.70E-14
+5,1896,1.69E-14
+5,1897,1.68E-14
+5,1898,1.67E-14
+5,1899,1.66E-14
+5,1900,1.65E-14
+5,1901,1.65E-14
+5,1902,1.64E-14
+5,1903,1.63E-14
+5,1904,1.62E-14
+5,1905,1.61E-14
+5,1906,1.60E-14
+5,1907,1.60E-14
+5,1908,1.59E-14
+5,1909,1.58E-14
+5,1910,1.57E-14
+5,1911,1.56E-14
+5,1912,1.56E-14
+5,1913,1.55E-14
+5,1914,1.54E-14
+5,1915,1.53E-14
+5,1916,1.53E-14
+5,1917,1.52E-14
+5,1918,1.51E-14
+5,1919,1.50E-14
+5,1920,1.50E-14
+5,1921,1.49E-14
+5,1922,1.48E-14
+5,1923,1.47E-14
+5,1924,1.47E-14
+5,1925,1.46E-14
+5,1926,1.45E-14
+5,1927,1.44E-14
+5,1928,1.44E-14
+5,1929,1.43E-14
+5,1930,1.42E-14
+5,1931,1.41E-14
+5,1932,1.41E-14
+5,1933,1.40E-14
+5,1934,1.39E-14
+5,1935,1.39E-14
+5,1936,1.38E-14
+5,1937,1.37E-14
+5,1938,1.36E-14
+5,1939,1.36E-14
+5,1940,1.35E-14
+5,1941,1.34E-14
+5,1942,1.34E-14
+5,1943,1.33E-14
+5,1944,1.32E-14
+5,1945,1.32E-14
+5,1946,1.31E-14
+5,1947,1.30E-14
+5,1948,1.30E-14
+5,1949,1.29E-14
+5,1950,1.28E-14
+5,1951,1.28E-14
+5,1952,1.27E-14
+5,1953,1.27E-14
+5,1954,1.26E-14
+5,1955,1.25E-14
+5,1956,1.25E-14
+5,1957,1.24E-14
+5,1958,1.23E-14
+5,1959,1.23E-14
+5,1960,1.22E-14
+5,1961,1.22E-14
+5,1962,1.21E-14
+5,1963,1.20E-14
+5,1964,1.20E-14
+5,1965,1.19E-14
+5,1966,1.18E-14
+5,1967,1.18E-14
+5,1968,1.17E-14
+5,1969,1.17E-14
+5,1970,1.16E-14
+5,1971,1.16E-14
+5,1972,1.15E-14
+5,1973,1.14E-14
+5,1974,1.14E-14
+5,1975,1.13E-14
+5,1976,1.13E-14
+5,1977,1.12E-14
+5,1978,1.11E-14
+5,1979,1.11E-14
+5,1980,1.10E-14
+5,1981,1.10E-14
+5,1982,1.09E-14
+5,1983,1.09E-14
+5,1984,1.08E-14
+5,1985,1.08E-14
+5,1986,1.07E-14
+5,1987,1.07E-14
+5,1988,1.06E-14
+5,1989,1.05E-14
+5,1990,1.05E-14
+5,1991,1.04E-14
+5,1992,1.04E-14
+5,1993,1.03E-14
+5,1994,1.03E-14
+5,1995,1.02E-14
+5,1996,1.02E-14
+5,1997,1.01E-14
+5,1998,1.01E-14
+5,1999,1.00E-14
+5,2000,9.97E-15
+6,1,6.02E-09
+6,2,5.92E-09
+6,3,5.83E-09
+6,4,5.74E-09
+6,5,5.65E-09
+6,6,5.57E-09
+6,7,5.48E-09
+6,8,5.40E-09
+6,9,5.31E-09
+6,10,5.23E-09
+6,11,5.15E-09
+6,12,5.07E-09
+6,13,4.99E-09
+6,14,4.92E-09
+6,15,4.84E-09
+6,16,4.77E-09
+6,17,4.69E-09
+6,18,4.62E-09
+6,19,4.55E-09
+6,20,4.48E-09
+6,21,4.41E-09
+6,22,4.34E-09
+6,23,4.28E-09
+6,24,4.21E-09
+6,25,4.15E-09
+6,26,4.08E-09
+6,27,4.02E-09
+6,28,3.96E-09
+6,29,3.90E-09
+6,30,3.84E-09
+6,31,3.78E-09
+6,32,3.72E-09
+6,33,3.67E-09
+6,34,3.61E-09
+6,35,3.56E-09
+6,36,3.50E-09
+6,37,3.45E-09
+6,38,3.40E-09
+6,39,3.35E-09
+6,40,3.30E-09
+6,41,3.25E-09
+6,42,3.20E-09
+6,43,3.15E-09
+6,44,3.10E-09
+6,45,3.06E-09
+6,46,3.01E-09
+6,47,2.97E-09
+6,48,2.93E-09
+6,49,2.88E-09
+6,50,2.84E-09
+6,51,2.80E-09
+6,52,2.76E-09
+6,53,2.72E-09
+6,54,2.68E-09
+6,55,2.64E-09
+6,56,2.60E-09
+6,57,2.57E-09
+6,58,2.53E-09
+6,59,2.49E-09
+6,60,2.46E-09
+6,61,2.42E-09
+6,62,2.39E-09
+6,63,2.36E-09
+6,64,2.32E-09
+6,65,2.29E-09
+6,66,2.26E-09
+6,67,2.23E-09
+6,68,2.20E-09
+6,69,2.17E-09
+6,70,2.14E-09
+6,71,2.11E-09
+6,72,2.08E-09
+6,73,2.05E-09
+6,74,2.02E-09
+6,75,1.99E-09
+6,76,1.97E-09
+6,77,1.94E-09
+6,78,1.91E-09
+6,79,1.89E-09
+6,80,1.86E-09
+6,81,1.84E-09
+6,82,1.81E-09
+6,83,1.79E-09
+6,84,1.77E-09
+6,85,1.74E-09
+6,86,1.72E-09
+6,87,1.70E-09
+6,88,1.67E-09
+6,89,1.65E-09
+6,90,1.63E-09
+6,91,1.61E-09
+6,92,1.59E-09
+6,93,1.57E-09
+6,94,1.55E-09
+6,95,1.53E-09
+6,96,1.51E-09
+6,97,1.49E-09
+6,98,1.47E-09
+6,99,1.45E-09
+6,100,1.43E-09
+6,101,1.42E-09
+6,102,1.40E-09
+6,103,1.38E-09
+6,104,1.36E-09
+6,105,1.35E-09
+6,106,1.33E-09
+6,107,1.31E-09
+6,108,1.30E-09
+6,109,1.28E-09
+6,110,1.27E-09
+6,111,1.25E-09
+6,112,1.24E-09
+6,113,1.22E-09
+6,114,1.21E-09
+6,115,1.19E-09
+6,116,1.18E-09
+6,117,1.16E-09
+6,118,1.15E-09
+6,119,1.14E-09
+6,120,1.12E-09
+6,121,1.11E-09
+6,122,1.10E-09
+6,123,1.08E-09
+6,124,1.07E-09
+6,125,1.06E-09
+6,126,1.05E-09
+6,127,1.03E-09
+6,128,1.02E-09
+6,129,1.01E-09
+6,130,9.97E-10
+6,131,9.86E-10
+6,132,9.75E-10
+6,133,9.64E-10
+6,134,9.53E-10
+6,135,9.42E-10
+6,136,9.31E-10
+6,137,9.21E-10
+6,138,9.10E-10
+6,139,9.00E-10
+6,140,8.90E-10
+6,141,8.80E-10
+6,142,8.70E-10
+6,143,8.61E-10
+6,144,8.51E-10
+6,145,8.42E-10
+6,146,8.33E-10
+6,147,8.23E-10
+6,148,8.14E-10
+6,149,8.06E-10
+6,150,7.97E-10
+6,151,7.88E-10
+6,152,7.80E-10
+6,153,7.71E-10
+6,154,7.63E-10
+6,155,7.55E-10
+6,156,7.47E-10
+6,157,7.39E-10
+6,158,7.31E-10
+6,159,7.23E-10
+6,160,7.16E-10
+6,161,7.08E-10
+6,162,7.01E-10
+6,163,6.94E-10
+6,164,6.86E-10
+6,165,6.79E-10
+6,166,6.72E-10
+6,167,6.65E-10
+6,168,6.59E-10
+6,169,6.52E-10
+6,170,6.45E-10
+6,171,6.39E-10
+6,172,6.32E-10
+6,173,6.26E-10
+6,174,6.19E-10
+6,175,6.13E-10
+6,176,6.07E-10
+6,177,6.01E-10
+6,178,5.95E-10
+6,179,5.89E-10
+6,180,5.83E-10
+6,181,5.77E-10
+6,182,5.72E-10
+6,183,5.66E-10
+6,184,5.61E-10
+6,185,5.55E-10
+6,186,5.50E-10
+6,187,5.44E-10
+6,188,5.39E-10
+6,189,5.34E-10
+6,190,5.29E-10
+6,191,5.24E-10
+6,192,5.19E-10
+6,193,5.14E-10
+6,194,5.09E-10
+6,195,5.04E-10
+6,196,4.99E-10
+6,197,4.95E-10
+6,198,4.90E-10
+6,199,4.86E-10
+6,200,4.81E-10
+6,201,4.77E-10
+6,202,4.72E-10
+6,203,4.68E-10
+6,204,4.64E-10
+6,205,4.59E-10
+6,206,4.55E-10
+6,207,4.51E-10
+6,208,4.47E-10
+6,209,4.43E-10
+6,210,4.39E-10
+6,211,4.35E-10
+6,212,4.31E-10
+6,213,4.27E-10
+6,214,4.23E-10
+6,215,4.19E-10
+6,216,4.16E-10
+6,217,4.12E-10
+6,218,4.08E-10
+6,219,4.05E-10
+6,220,4.01E-10
+6,221,3.98E-10
+6,222,3.94E-10
+6,223,3.91E-10
+6,224,3.88E-10
+6,225,3.84E-10
+6,226,3.81E-10
+6,227,3.78E-10
+6,228,3.74E-10
+6,229,3.71E-10
+6,230,3.68E-10
+6,231,3.65E-10
+6,232,3.62E-10
+6,233,3.59E-10
+6,234,3.56E-10
+6,235,3.53E-10
+6,236,3.50E-10
+6,237,3.47E-10
+6,238,3.44E-10
+6,239,3.41E-10
+6,240,3.38E-10
+6,241,3.36E-10
+6,242,3.33E-10
+6,243,3.30E-10
+6,244,3.27E-10
+6,245,3.25E-10
+6,246,3.22E-10
+6,247,3.20E-10
+6,248,3.17E-10
+6,249,3.14E-10
+6,250,3.12E-10
+6,251,3.09E-10
+6,252,3.07E-10
+6,253,3.04E-10
+6,254,3.02E-10
+6,255,3.00E-10
+6,256,2.97E-10
+6,257,2.95E-10
+6,258,2.93E-10
+6,259,2.90E-10
+6,260,2.88E-10
+6,261,2.86E-10
+6,262,2.84E-10
+6,263,2.82E-10
+6,264,2.79E-10
+6,265,2.77E-10
+6,266,2.75E-10
+6,267,2.73E-10
+6,268,2.71E-10
+6,269,2.69E-10
+6,270,2.67E-10
+6,271,2.65E-10
+6,272,2.63E-10
+6,273,2.61E-10
+6,274,2.59E-10
+6,275,2.57E-10
+6,276,2.55E-10
+6,277,2.53E-10
+6,278,2.51E-10
+6,279,2.49E-10
+6,280,2.48E-10
+6,281,2.46E-10
+6,282,2.44E-10
+6,283,2.42E-10
+6,284,2.40E-10
+6,285,2.39E-10
+6,286,2.37E-10
+6,287,2.35E-10
+6,288,2.34E-10
+6,289,2.32E-10
+6,290,2.30E-10
+6,291,2.29E-10
+6,292,2.27E-10
+6,293,2.25E-10
+6,294,2.24E-10
+6,295,2.22E-10
+6,296,2.21E-10
+6,297,2.19E-10
+6,298,2.18E-10
+6,299,2.16E-10
+6,300,2.15E-10
+6,301,2.13E-10
+6,302,2.12E-10
+6,303,2.10E-10
+6,304,2.09E-10
+6,305,2.07E-10
+6,306,2.06E-10
+6,307,2.04E-10
+6,308,2.03E-10
+6,309,2.02E-10
+6,310,2.00E-10
+6,311,1.99E-10
+6,312,1.98E-10
+6,313,1.96E-10
+6,314,1.95E-10
+6,315,1.94E-10
+6,316,1.92E-10
+6,317,1.91E-10
+6,318,1.90E-10
+6,319,1.89E-10
+6,320,1.87E-10
+6,321,1.86E-10
+6,322,1.85E-10
+6,323,1.84E-10
+6,324,1.83E-10
+6,325,1.81E-10
+6,326,1.80E-10
+6,327,1.79E-10
+6,328,1.78E-10
+6,329,1.77E-10
+6,330,1.76E-10
+6,331,1.74E-10
+6,332,1.73E-10
+6,333,1.72E-10
+6,334,1.71E-10
+6,335,1.70E-10
+6,336,1.69E-10
+6,337,1.68E-10
+6,338,1.67E-10
+6,339,1.66E-10
+6,340,1.65E-10
+6,341,1.64E-10
+6,342,1.63E-10
+6,343,1.62E-10
+6,344,1.61E-10
+6,345,1.60E-10
+6,346,1.59E-10
+6,347,1.58E-10
+6,348,1.57E-10
+6,349,1.56E-10
+6,350,1.55E-10
+6,351,1.54E-10
+6,352,1.53E-10
+6,353,1.52E-10
+6,354,1.51E-10
+6,355,1.50E-10
+6,356,1.49E-10
+6,357,1.48E-10
+6,358,1.48E-10
+6,359,1.47E-10
+6,360,1.46E-10
+6,361,1.45E-10
+6,362,1.44E-10
+6,363,1.43E-10
+6,364,1.42E-10
+6,365,1.41E-10
+6,366,1.41E-10
+6,367,1.40E-10
+6,368,1.39E-10
+6,369,1.38E-10
+6,370,1.37E-10
+6,371,1.37E-10
+6,372,1.36E-10
+6,373,1.35E-10
+6,374,1.34E-10
+6,375,1.33E-10
+6,376,1.33E-10
+6,377,1.32E-10
+6,378,1.31E-10
+6,379,1.30E-10
+6,380,1.30E-10
+6,381,1.29E-10
+6,382,1.28E-10
+6,383,1.27E-10
+6,384,1.27E-10
+6,385,1.26E-10
+6,386,1.25E-10
+6,387,1.25E-10
+6,388,1.24E-10
+6,389,1.23E-10
+6,390,1.22E-10
+6,391,1.22E-10
+6,392,1.21E-10
+6,393,1.20E-10
+6,394,1.20E-10
+6,395,1.19E-10
+6,396,1.18E-10
+6,397,1.18E-10
+6,398,1.17E-10
+6,399,1.16E-10
+6,400,1.16E-10
+6,401,1.15E-10
+6,402,1.15E-10
+6,403,1.14E-10
+6,404,1.13E-10
+6,405,1.13E-10
+6,406,1.12E-10
+6,407,1.11E-10
+6,408,1.11E-10
+6,409,1.10E-10
+6,410,1.10E-10
+6,411,1.09E-10
+6,412,1.08E-10
+6,413,1.08E-10
+6,414,1.07E-10
+6,415,1.07E-10
+6,416,1.06E-10
+6,417,1.06E-10
+6,418,1.05E-10
+6,419,1.04E-10
+6,420,1.04E-10
+6,421,1.03E-10
+6,422,1.03E-10
+6,423,1.02E-10
+6,424,1.02E-10
+6,425,1.01E-10
+6,426,1.01E-10
+6,427,1.00E-10
+6,428,9.95E-11
+6,429,9.90E-11
+6,430,9.85E-11
+6,431,9.79E-11
+6,432,9.74E-11
+6,433,9.69E-11
+6,434,9.64E-11
+6,435,9.59E-11
+6,436,9.54E-11
+6,437,9.49E-11
+6,438,9.44E-11
+6,439,9.39E-11
+6,440,9.34E-11
+6,441,9.29E-11
+6,442,9.24E-11
+6,443,9.20E-11
+6,444,9.15E-11
+6,445,9.10E-11
+6,446,9.05E-11
+6,447,9.01E-11
+6,448,8.96E-11
+6,449,8.91E-11
+6,450,8.87E-11
+6,451,8.82E-11
+6,452,8.78E-11
+6,453,8.73E-11
+6,454,8.69E-11
+6,455,8.64E-11
+6,456,8.60E-11
+6,457,8.55E-11
+6,458,8.51E-11
+6,459,8.47E-11
+6,460,8.42E-11
+6,461,8.38E-11
+6,462,8.34E-11
+6,463,8.29E-11
+6,464,8.25E-11
+6,465,8.21E-11
+6,466,8.17E-11
+6,467,8.13E-11
+6,468,8.08E-11
+6,469,8.04E-11
+6,470,8.00E-11
+6,471,7.96E-11
+6,472,7.92E-11
+6,473,7.88E-11
+6,474,7.84E-11
+6,475,7.80E-11
+6,476,7.76E-11
+6,477,7.72E-11
+6,478,7.68E-11
+6,479,7.64E-11
+6,480,7.61E-11
+6,481,7.57E-11
+6,482,7.53E-11
+6,483,7.49E-11
+6,484,7.45E-11
+6,485,7.42E-11
+6,486,7.38E-11
+6,487,7.34E-11
+6,488,7.30E-11
+6,489,7.27E-11
+6,490,7.23E-11
+6,491,7.19E-11
+6,492,7.16E-11
+6,493,7.12E-11
+6,494,7.08E-11
+6,495,7.05E-11
+6,496,7.01E-11
+6,497,6.98E-11
+6,498,6.94E-11
+6,499,6.91E-11
+6,500,6.87E-11
+6,501,6.84E-11
+6,502,6.80E-11
+6,503,6.77E-11
+6,504,6.74E-11
+6,505,6.70E-11
+6,506,6.67E-11
+6,507,6.63E-11
+6,508,6.60E-11
+6,509,6.57E-11
+6,510,6.53E-11
+6,511,6.50E-11
+6,512,6.47E-11
+6,513,6.44E-11
+6,514,6.40E-11
+6,515,6.37E-11
+6,516,6.34E-11
+6,517,6.31E-11
+6,518,6.27E-11
+6,519,6.24E-11
+6,520,6.21E-11
+6,521,6.18E-11
+6,522,6.15E-11
+6,523,6.12E-11
+6,524,6.09E-11
+6,525,6.06E-11
+6,526,6.03E-11
+6,527,6.00E-11
+6,528,5.97E-11
+6,529,5.94E-11
+6,530,5.91E-11
+6,531,5.88E-11
+6,532,5.85E-11
+6,533,5.82E-11
+6,534,5.79E-11
+6,535,5.76E-11
+6,536,5.73E-11
+6,537,5.70E-11
+6,538,5.67E-11
+6,539,5.64E-11
+6,540,5.61E-11
+6,541,5.59E-11
+6,542,5.56E-11
+6,543,5.53E-11
+6,544,5.50E-11
+6,545,5.47E-11
+6,546,5.45E-11
+6,547,5.42E-11
+6,548,5.39E-11
+6,549,5.36E-11
+6,550,5.34E-11
+6,551,5.31E-11
+6,552,5.28E-11
+6,553,5.26E-11
+6,554,5.23E-11
+6,555,5.20E-11
+6,556,5.18E-11
+6,557,5.15E-11
+6,558,5.13E-11
+6,559,5.10E-11
+6,560,5.07E-11
+6,561,5.05E-11
+6,562,5.02E-11
+6,563,5.00E-11
+6,564,4.97E-11
+6,565,4.95E-11
+6,566,4.92E-11
+6,567,4.90E-11
+6,568,4.87E-11
+6,569,4.85E-11
+6,570,4.82E-11
+6,571,4.80E-11
+6,572,4.78E-11
+6,573,4.75E-11
+6,574,4.73E-11
+6,575,4.70E-11
+6,576,4.68E-11
+6,577,4.66E-11
+6,578,4.63E-11
+6,579,4.61E-11
+6,580,4.59E-11
+6,581,4.56E-11
+6,582,4.54E-11
+6,583,4.52E-11
+6,584,4.49E-11
+6,585,4.47E-11
+6,586,4.45E-11
+6,587,4.43E-11
+6,588,4.40E-11
+6,589,4.38E-11
+6,590,4.36E-11
+6,591,4.34E-11
+6,592,4.32E-11
+6,593,4.29E-11
+6,594,4.27E-11
+6,595,4.25E-11
+6,596,4.23E-11
+6,597,4.21E-11
+6,598,4.19E-11
+6,599,4.17E-11
+6,600,4.14E-11
+6,601,4.12E-11
+6,602,4.10E-11
+6,603,4.08E-11
+6,604,4.06E-11
+6,605,4.04E-11
+6,606,4.02E-11
+6,607,4.00E-11
+6,608,3.98E-11
+6,609,3.96E-11
+6,610,3.94E-11
+6,611,3.92E-11
+6,612,3.90E-11
+6,613,3.88E-11
+6,614,3.86E-11
+6,615,3.84E-11
+6,616,3.82E-11
+6,617,3.80E-11
+6,618,3.78E-11
+6,619,3.76E-11
+6,620,3.75E-11
+6,621,3.73E-11
+6,622,3.71E-11
+6,623,3.69E-11
+6,624,3.67E-11
+6,625,3.65E-11
+6,626,3.63E-11
+6,627,3.62E-11
+6,628,3.60E-11
+6,629,3.58E-11
+6,630,3.56E-11
+6,631,3.54E-11
+6,632,3.53E-11
+6,633,3.51E-11
+6,634,3.49E-11
+6,635,3.47E-11
+6,636,3.45E-11
+6,637,3.44E-11
+6,638,3.42E-11
+6,639,3.40E-11
+6,640,3.39E-11
+6,641,3.37E-11
+6,642,3.35E-11
+6,643,3.33E-11
+6,644,3.32E-11
+6,645,3.30E-11
+6,646,3.28E-11
+6,647,3.27E-11
+6,648,3.25E-11
+6,649,3.23E-11
+6,650,3.22E-11
+6,651,3.20E-11
+6,652,3.19E-11
+6,653,3.17E-11
+6,654,3.15E-11
+6,655,3.14E-11
+6,656,3.12E-11
+6,657,3.11E-11
+6,658,3.09E-11
+6,659,3.08E-11
+6,660,3.06E-11
+6,661,3.04E-11
+6,662,3.03E-11
+6,663,3.01E-11
+6,664,3.00E-11
+6,665,2.98E-11
+6,666,2.97E-11
+6,667,2.95E-11
+6,668,2.94E-11
+6,669,2.92E-11
+6,670,2.91E-11
+6,671,2.89E-11
+6,672,2.88E-11
+6,673,2.86E-11
+6,674,2.85E-11
+6,675,2.84E-11
+6,676,2.82E-11
+6,677,2.81E-11
+6,678,2.79E-11
+6,679,2.78E-11
+6,680,2.77E-11
+6,681,2.75E-11
+6,682,2.74E-11
+6,683,2.72E-11
+6,684,2.71E-11
+6,685,2.70E-11
+6,686,2.68E-11
+6,687,2.67E-11
+6,688,2.66E-11
+6,689,2.64E-11
+6,690,2.63E-11
+6,691,2.62E-11
+6,692,2.60E-11
+6,693,2.59E-11
+6,694,2.58E-11
+6,695,2.56E-11
+6,696,2.55E-11
+6,697,2.54E-11
+6,698,2.52E-11
+6,699,2.51E-11
+6,700,2.50E-11
+6,701,2.49E-11
+6,702,2.47E-11
+6,703,2.46E-11
+6,704,2.45E-11
+6,705,2.44E-11
+6,706,2.42E-11
+6,707,2.41E-11
+6,708,2.40E-11
+6,709,2.39E-11
+6,710,2.38E-11
+6,711,2.36E-11
+6,712,2.35E-11
+6,713,2.34E-11
+6,714,2.33E-11
+6,715,2.32E-11
+6,716,2.30E-11
+6,717,2.29E-11
+6,718,2.28E-11
+6,719,2.27E-11
+6,720,2.26E-11
+6,721,2.25E-11
+6,722,2.24E-11
+6,723,2.22E-11
+6,724,2.21E-11
+6,725,2.20E-11
+6,726,2.19E-11
+6,727,2.18E-11
+6,728,2.17E-11
+6,729,2.16E-11
+6,730,2.15E-11
+6,731,2.14E-11
+6,732,2.13E-11
+6,733,2.11E-11
+6,734,2.10E-11
+6,735,2.09E-11
+6,736,2.08E-11
+6,737,2.07E-11
+6,738,2.06E-11
+6,739,2.05E-11
+6,740,2.04E-11
+6,741,2.03E-11
+6,742,2.02E-11
+6,743,2.01E-11
+6,744,2.00E-11
+6,745,1.99E-11
+6,746,1.98E-11
+6,747,1.97E-11
+6,748,1.96E-11
+6,749,1.95E-11
+6,750,1.94E-11
+6,751,1.93E-11
+6,752,1.92E-11
+6,753,1.91E-11
+6,754,1.90E-11
+6,755,1.89E-11
+6,756,1.88E-11
+6,757,1.87E-11
+6,758,1.86E-11
+6,759,1.85E-11
+6,760,1.84E-11
+6,761,1.84E-11
+6,762,1.83E-11
+6,763,1.82E-11
+6,764,1.81E-11
+6,765,1.80E-11
+6,766,1.79E-11
+6,767,1.78E-11
+6,768,1.77E-11
+6,769,1.76E-11
+6,770,1.75E-11
+6,771,1.75E-11
+6,772,1.74E-11
+6,773,1.73E-11
+6,774,1.72E-11
+6,775,1.71E-11
+6,776,1.70E-11
+6,777,1.69E-11
+6,778,1.68E-11
+6,779,1.68E-11
+6,780,1.67E-11
+6,781,1.66E-11
+6,782,1.65E-11
+6,783,1.64E-11
+6,784,1.63E-11
+6,785,1.63E-11
+6,786,1.62E-11
+6,787,1.61E-11
+6,788,1.60E-11
+6,789,1.59E-11
+6,790,1.59E-11
+6,791,1.58E-11
+6,792,1.57E-11
+6,793,1.56E-11
+6,794,1.55E-11
+6,795,1.55E-11
+6,796,1.54E-11
+6,797,1.53E-11
+6,798,1.52E-11
+6,799,1.51E-11
+6,800,1.51E-11
+6,801,1.50E-11
+6,802,1.49E-11
+6,803,1.48E-11
+6,804,1.48E-11
+6,805,1.47E-11
+6,806,1.46E-11
+6,807,1.45E-11
+6,808,1.45E-11
+6,809,1.44E-11
+6,810,1.43E-11
+6,811,1.43E-11
+6,812,1.42E-11
+6,813,1.41E-11
+6,814,1.40E-11
+6,815,1.40E-11
+6,816,1.39E-11
+6,817,1.38E-11
+6,818,1.38E-11
+6,819,1.37E-11
+6,820,1.36E-11
+6,821,1.36E-11
+6,822,1.35E-11
+6,823,1.34E-11
+6,824,1.33E-11
+6,825,1.33E-11
+6,826,1.32E-11
+6,827,1.31E-11
+6,828,1.31E-11
+6,829,1.30E-11
+6,830,1.29E-11
+6,831,1.29E-11
+6,832,1.28E-11
+6,833,1.28E-11
+6,834,1.27E-11
+6,835,1.26E-11
+6,836,1.26E-11
+6,837,1.25E-11
+6,838,1.24E-11
+6,839,1.24E-11
+6,840,1.23E-11
+6,841,1.22E-11
+6,842,1.22E-11
+6,843,1.21E-11
+6,844,1.21E-11
+6,845,1.20E-11
+6,846,1.19E-11
+6,847,1.19E-11
+6,848,1.18E-11
+6,849,1.18E-11
+6,850,1.17E-11
+6,851,1.16E-11
+6,852,1.16E-11
+6,853,1.15E-11
+6,854,1.15E-11
+6,855,1.14E-11
+6,856,1.14E-11
+6,857,1.13E-11
+6,858,1.12E-11
+6,859,1.12E-11
+6,860,1.11E-11
+6,861,1.11E-11
+6,862,1.10E-11
+6,863,1.10E-11
+6,864,1.09E-11
+6,865,1.08E-11
+6,866,1.08E-11
+6,867,1.07E-11
+6,868,1.07E-11
+6,869,1.06E-11
+6,870,1.06E-11
+6,871,1.05E-11
+6,872,1.05E-11
+6,873,1.04E-11
+6,874,1.04E-11
+6,875,1.03E-11
+6,876,1.03E-11
+6,877,1.02E-11
+6,878,1.02E-11
+6,879,1.01E-11
+6,880,1.01E-11
+6,881,1.00E-11
+6,882,9.95E-12
+6,883,9.90E-12
+6,884,9.85E-12
+6,885,9.80E-12
+6,886,9.75E-12
+6,887,9.70E-12
+6,888,9.66E-12
+6,889,9.61E-12
+6,890,9.56E-12
+6,891,9.51E-12
+6,892,9.46E-12
+6,893,9.41E-12
+6,894,9.37E-12
+6,895,9.32E-12
+6,896,9.27E-12
+6,897,9.23E-12
+6,898,9.18E-12
+6,899,9.13E-12
+6,900,9.09E-12
+6,901,9.04E-12
+6,902,9.00E-12
+6,903,8.95E-12
+6,904,8.91E-12
+6,905,8.86E-12
+6,906,8.82E-12
+6,907,8.77E-12
+6,908,8.73E-12
+6,909,8.68E-12
+6,910,8.64E-12
+6,911,8.60E-12
+6,912,8.55E-12
+6,913,8.51E-12
+6,914,8.47E-12
+6,915,8.42E-12
+6,916,8.38E-12
+6,917,8.34E-12
+6,918,8.30E-12
+6,919,8.25E-12
+6,920,8.21E-12
+6,921,8.17E-12
+6,922,8.13E-12
+6,923,8.09E-12
+6,924,8.05E-12
+6,925,8.01E-12
+6,926,7.97E-12
+6,927,7.93E-12
+6,928,7.89E-12
+6,929,7.85E-12
+6,930,7.81E-12
+6,931,7.77E-12
+6,932,7.73E-12
+6,933,7.69E-12
+6,934,7.65E-12
+6,935,7.61E-12
+6,936,7.57E-12
+6,937,7.54E-12
+6,938,7.50E-12
+6,939,7.46E-12
+6,940,7.42E-12
+6,941,7.39E-12
+6,942,7.35E-12
+6,943,7.31E-12
+6,944,7.27E-12
+6,945,7.24E-12
+6,946,7.20E-12
+6,947,7.16E-12
+6,948,7.13E-12
+6,949,7.09E-12
+6,950,7.06E-12
+6,951,7.02E-12
+6,952,6.99E-12
+6,953,6.95E-12
+6,954,6.92E-12
+6,955,6.88E-12
+6,956,6.85E-12
+6,957,6.81E-12
+6,958,6.78E-12
+6,959,6.74E-12
+6,960,6.71E-12
+6,961,6.67E-12
+6,962,6.64E-12
+6,963,6.61E-12
+6,964,6.57E-12
+6,965,6.54E-12
+6,966,6.51E-12
+6,967,6.48E-12
+6,968,6.44E-12
+6,969,6.41E-12
+6,970,6.38E-12
+6,971,6.35E-12
+6,972,6.31E-12
+6,973,6.28E-12
+6,974,6.25E-12
+6,975,6.22E-12
+6,976,6.19E-12
+6,977,6.16E-12
+6,978,6.12E-12
+6,979,6.09E-12
+6,980,6.06E-12
+6,981,6.03E-12
+6,982,6.00E-12
+6,983,5.97E-12
+6,984,5.94E-12
+6,985,5.91E-12
+6,986,5.88E-12
+6,987,5.85E-12
+6,988,5.82E-12
+6,989,5.79E-12
+6,990,5.76E-12
+6,991,5.73E-12
+6,992,5.71E-12
+6,993,5.68E-12
+6,994,5.65E-12
+6,995,5.62E-12
+6,996,5.59E-12
+6,997,5.56E-12
+6,998,5.54E-12
+6,999,5.51E-12
+6,1000,5.48E-12
+6,1001,5.45E-12
+6,1002,5.42E-12
+6,1003,5.40E-12
+6,1004,5.37E-12
+6,1005,5.34E-12
+6,1006,5.32E-12
+6,1007,5.29E-12
+6,1008,5.26E-12
+6,1009,5.24E-12
+6,1010,5.21E-12
+6,1011,5.18E-12
+6,1012,5.16E-12
+6,1013,5.13E-12
+6,1014,5.11E-12
+6,1015,5.08E-12
+6,1016,5.05E-12
+6,1017,5.03E-12
+6,1018,5.00E-12
+6,1019,4.98E-12
+6,1020,4.95E-12
+6,1021,4.93E-12
+6,1022,4.90E-12
+6,1023,4.88E-12
+6,1024,4.85E-12
+6,1025,4.83E-12
+6,1026,4.80E-12
+6,1027,4.78E-12
+6,1028,4.76E-12
+6,1029,4.73E-12
+6,1030,4.71E-12
+6,1031,4.68E-12
+6,1032,4.66E-12
+6,1033,4.64E-12
+6,1034,4.61E-12
+6,1035,4.59E-12
+6,1036,4.57E-12
+6,1037,4.54E-12
+6,1038,4.52E-12
+6,1039,4.50E-12
+6,1040,4.48E-12
+6,1041,4.45E-12
+6,1042,4.43E-12
+6,1043,4.41E-12
+6,1044,4.39E-12
+6,1045,4.36E-12
+6,1046,4.34E-12
+6,1047,4.32E-12
+6,1048,4.30E-12
+6,1049,4.28E-12
+6,1050,4.26E-12
+6,1051,4.23E-12
+6,1052,4.21E-12
+6,1053,4.19E-12
+6,1054,4.17E-12
+6,1055,4.15E-12
+6,1056,4.13E-12
+6,1057,4.11E-12
+6,1058,4.09E-12
+6,1059,4.07E-12
+6,1060,4.05E-12
+6,1061,4.02E-12
+6,1062,4.00E-12
+6,1063,3.98E-12
+6,1064,3.96E-12
+6,1065,3.94E-12
+6,1066,3.92E-12
+6,1067,3.90E-12
+6,1068,3.88E-12
+6,1069,3.87E-12
+6,1070,3.85E-12
+6,1071,3.83E-12
+6,1072,3.81E-12
+6,1073,3.79E-12
+6,1074,3.77E-12
+6,1075,3.75E-12
+6,1076,3.73E-12
+6,1077,3.71E-12
+6,1078,3.69E-12
+6,1079,3.67E-12
+6,1080,3.66E-12
+6,1081,3.64E-12
+6,1082,3.62E-12
+6,1083,3.60E-12
+6,1084,3.58E-12
+6,1085,3.56E-12
+6,1086,3.55E-12
+6,1087,3.53E-12
+6,1088,3.51E-12
+6,1089,3.49E-12
+6,1090,3.48E-12
+6,1091,3.46E-12
+6,1092,3.44E-12
+6,1093,3.42E-12
+6,1094,3.41E-12
+6,1095,3.39E-12
+6,1096,3.37E-12
+6,1097,3.35E-12
+6,1098,3.34E-12
+6,1099,3.32E-12
+6,1100,3.30E-12
+6,1101,3.29E-12
+6,1102,3.27E-12
+6,1103,3.25E-12
+6,1104,3.24E-12
+6,1105,3.22E-12
+6,1106,3.21E-12
+6,1107,3.19E-12
+6,1108,3.17E-12
+6,1109,3.16E-12
+6,1110,3.14E-12
+6,1111,3.13E-12
+6,1112,3.11E-12
+6,1113,3.09E-12
+6,1114,3.08E-12
+6,1115,3.06E-12
+6,1116,3.05E-12
+6,1117,3.03E-12
+6,1118,3.02E-12
+6,1119,3.00E-12
+6,1120,2.99E-12
+6,1121,2.97E-12
+6,1122,2.96E-12
+6,1123,2.94E-12
+6,1124,2.93E-12
+6,1125,2.91E-12
+6,1126,2.90E-12
+6,1127,2.88E-12
+6,1128,2.87E-12
+6,1129,2.85E-12
+6,1130,2.84E-12
+6,1131,2.82E-12
+6,1132,2.81E-12
+6,1133,2.80E-12
+6,1134,2.78E-12
+6,1135,2.77E-12
+6,1136,2.75E-12
+6,1137,2.74E-12
+6,1138,2.73E-12
+6,1139,2.71E-12
+6,1140,2.70E-12
+6,1141,2.69E-12
+6,1142,2.67E-12
+6,1143,2.66E-12
+6,1144,2.64E-12
+6,1145,2.63E-12
+6,1146,2.62E-12
+6,1147,2.61E-12
+6,1148,2.59E-12
+6,1149,2.58E-12
+6,1150,2.57E-12
+6,1151,2.55E-12
+6,1152,2.54E-12
+6,1153,2.53E-12
+6,1154,2.51E-12
+6,1155,2.50E-12
+6,1156,2.49E-12
+6,1157,2.48E-12
+6,1158,2.46E-12
+6,1159,2.45E-12
+6,1160,2.44E-12
+6,1161,2.43E-12
+6,1162,2.41E-12
+6,1163,2.40E-12
+6,1164,2.39E-12
+6,1165,2.38E-12
+6,1166,2.37E-12
+6,1167,2.35E-12
+6,1168,2.34E-12
+6,1169,2.33E-12
+6,1170,2.32E-12
+6,1171,2.31E-12
+6,1172,2.30E-12
+6,1173,2.28E-12
+6,1174,2.27E-12
+6,1175,2.26E-12
+6,1176,2.25E-12
+6,1177,2.24E-12
+6,1178,2.23E-12
+6,1179,2.22E-12
+6,1180,2.20E-12
+6,1181,2.19E-12
+6,1182,2.18E-12
+6,1183,2.17E-12
+6,1184,2.16E-12
+6,1185,2.15E-12
+6,1186,2.14E-12
+6,1187,2.13E-12
+6,1188,2.12E-12
+6,1189,2.11E-12
+6,1190,2.10E-12
+6,1191,2.09E-12
+6,1192,2.07E-12
+6,1193,2.06E-12
+6,1194,2.05E-12
+6,1195,2.04E-12
+6,1196,2.03E-12
+6,1197,2.02E-12
+6,1198,2.01E-12
+6,1199,2.00E-12
+6,1200,1.99E-12
+6,1201,1.98E-12
+6,1202,1.97E-12
+6,1203,1.96E-12
+6,1204,1.95E-12
+6,1205,1.94E-12
+6,1206,1.93E-12
+6,1207,1.92E-12
+6,1208,1.91E-12
+6,1209,1.90E-12
+6,1210,1.89E-12
+6,1211,1.88E-12
+6,1212,1.88E-12
+6,1213,1.87E-12
+6,1214,1.86E-12
+6,1215,1.85E-12
+6,1216,1.84E-12
+6,1217,1.83E-12
+6,1218,1.82E-12
+6,1219,1.81E-12
+6,1220,1.80E-12
+6,1221,1.79E-12
+6,1222,1.78E-12
+6,1223,1.77E-12
+6,1224,1.76E-12
+6,1225,1.76E-12
+6,1226,1.75E-12
+6,1227,1.74E-12
+6,1228,1.73E-12
+6,1229,1.72E-12
+6,1230,1.71E-12
+6,1231,1.70E-12
+6,1232,1.69E-12
+6,1233,1.69E-12
+6,1234,1.68E-12
+6,1235,1.67E-12
+6,1236,1.66E-12
+6,1237,1.65E-12
+6,1238,1.64E-12
+6,1239,1.64E-12
+6,1240,1.63E-12
+6,1241,1.62E-12
+6,1242,1.61E-12
+6,1243,1.60E-12
+6,1244,1.59E-12
+6,1245,1.59E-12
+6,1246,1.58E-12
+6,1247,1.57E-12
+6,1248,1.56E-12
+6,1249,1.56E-12
+6,1250,1.55E-12
+6,1251,1.54E-12
+6,1252,1.53E-12
+6,1253,1.52E-12
+6,1254,1.52E-12
+6,1255,1.51E-12
+6,1256,1.50E-12
+6,1257,1.49E-12
+6,1258,1.49E-12
+6,1259,1.48E-12
+6,1260,1.47E-12
+6,1261,1.46E-12
+6,1262,1.46E-12
+6,1263,1.45E-12
+6,1264,1.44E-12
+6,1265,1.43E-12
+6,1266,1.43E-12
+6,1267,1.42E-12
+6,1268,1.41E-12
+6,1269,1.41E-12
+6,1270,1.40E-12
+6,1271,1.39E-12
+6,1272,1.38E-12
+6,1273,1.38E-12
+6,1274,1.37E-12
+6,1275,1.36E-12
+6,1276,1.36E-12
+6,1277,1.35E-12
+6,1278,1.34E-12
+6,1279,1.34E-12
+6,1280,1.33E-12
+6,1281,1.32E-12
+6,1282,1.32E-12
+6,1283,1.31E-12
+6,1284,1.30E-12
+6,1285,1.30E-12
+6,1286,1.29E-12
+6,1287,1.28E-12
+6,1288,1.28E-12
+6,1289,1.27E-12
+6,1290,1.26E-12
+6,1291,1.26E-12
+6,1292,1.25E-12
+6,1293,1.24E-12
+6,1294,1.24E-12
+6,1295,1.23E-12
+6,1296,1.23E-12
+6,1297,1.22E-12
+6,1298,1.21E-12
+6,1299,1.21E-12
+6,1300,1.20E-12
+6,1301,1.20E-12
+6,1302,1.19E-12
+6,1303,1.18E-12
+6,1304,1.18E-12
+6,1305,1.17E-12
+6,1306,1.17E-12
+6,1307,1.16E-12
+6,1308,1.15E-12
+6,1309,1.15E-12
+6,1310,1.14E-12
+6,1311,1.14E-12
+6,1312,1.13E-12
+6,1313,1.13E-12
+6,1314,1.12E-12
+6,1315,1.11E-12
+6,1316,1.11E-12
+6,1317,1.10E-12
+6,1318,1.10E-12
+6,1319,1.09E-12
+6,1320,1.09E-12
+6,1321,1.08E-12
+6,1322,1.07E-12
+6,1323,1.07E-12
+6,1324,1.06E-12
+6,1325,1.06E-12
+6,1326,1.05E-12
+6,1327,1.05E-12
+6,1328,1.04E-12
+6,1329,1.04E-12
+6,1330,1.03E-12
+6,1331,1.03E-12
+6,1332,1.02E-12
+6,1333,1.02E-12
+6,1334,1.01E-12
+6,1335,1.01E-12
+6,1336,1.00E-12
+6,1337,9.96E-13
+6,1338,9.91E-13
+6,1339,9.86E-13
+6,1340,9.81E-13
+6,1341,9.76E-13
+6,1342,9.72E-13
+6,1343,9.67E-13
+6,1344,9.62E-13
+6,1345,9.57E-13
+6,1346,9.52E-13
+6,1347,9.47E-13
+6,1348,9.42E-13
+6,1349,9.38E-13
+6,1350,9.33E-13
+6,1351,9.28E-13
+6,1352,9.24E-13
+6,1353,9.19E-13
+6,1354,9.14E-13
+6,1355,9.10E-13
+6,1356,9.05E-13
+6,1357,9.01E-13
+6,1358,8.96E-13
+6,1359,8.91E-13
+6,1360,8.87E-13
+6,1361,8.82E-13
+6,1362,8.78E-13
+6,1363,8.74E-13
+6,1364,8.69E-13
+6,1365,8.65E-13
+6,1366,8.60E-13
+6,1367,8.56E-13
+6,1368,8.52E-13
+6,1369,8.47E-13
+6,1370,8.43E-13
+6,1371,8.39E-13
+6,1372,8.35E-13
+6,1373,8.31E-13
+6,1374,8.26E-13
+6,1375,8.22E-13
+6,1376,8.18E-13
+6,1377,8.14E-13
+6,1378,8.10E-13
+6,1379,8.06E-13
+6,1380,8.02E-13
+6,1381,7.98E-13
+6,1382,7.94E-13
+6,1383,7.90E-13
+6,1384,7.86E-13
+6,1385,7.82E-13
+6,1386,7.78E-13
+6,1387,7.74E-13
+6,1388,7.70E-13
+6,1389,7.66E-13
+6,1390,7.62E-13
+6,1391,7.58E-13
+6,1392,7.54E-13
+6,1393,7.51E-13
+6,1394,7.47E-13
+6,1395,7.43E-13
+6,1396,7.39E-13
+6,1397,7.36E-13
+6,1398,7.32E-13
+6,1399,7.28E-13
+6,1400,7.24E-13
+6,1401,7.21E-13
+6,1402,7.17E-13
+6,1403,7.14E-13
+6,1404,7.10E-13
+6,1405,7.06E-13
+6,1406,7.03E-13
+6,1407,6.99E-13
+6,1408,6.96E-13
+6,1409,6.92E-13
+6,1410,6.89E-13
+6,1411,6.85E-13
+6,1412,6.82E-13
+6,1413,6.78E-13
+6,1414,6.75E-13
+6,1415,6.72E-13
+6,1416,6.68E-13
+6,1417,6.65E-13
+6,1418,6.61E-13
+6,1419,6.58E-13
+6,1420,6.55E-13
+6,1421,6.51E-13
+6,1422,6.48E-13
+6,1423,6.45E-13
+6,1424,6.42E-13
+6,1425,6.38E-13
+6,1426,6.35E-13
+6,1427,6.32E-13
+6,1428,6.29E-13
+6,1429,6.26E-13
+6,1430,6.22E-13
+6,1431,6.19E-13
+6,1432,6.16E-13
+6,1433,6.13E-13
+6,1434,6.10E-13
+6,1435,6.07E-13
+6,1436,6.04E-13
+6,1437,6.01E-13
+6,1438,5.98E-13
+6,1439,5.95E-13
+6,1440,5.92E-13
+6,1441,5.89E-13
+6,1442,5.86E-13
+6,1443,5.83E-13
+6,1444,5.80E-13
+6,1445,5.77E-13
+6,1446,5.74E-13
+6,1447,5.71E-13
+6,1448,5.68E-13
+6,1449,5.65E-13
+6,1450,5.63E-13
+6,1451,5.60E-13
+6,1452,5.57E-13
+6,1453,5.54E-13
+6,1454,5.51E-13
+6,1455,5.49E-13
+6,1456,5.46E-13
+6,1457,5.43E-13
+6,1458,5.40E-13
+6,1459,5.38E-13
+6,1460,5.35E-13
+6,1461,5.32E-13
+6,1462,5.29E-13
+6,1463,5.27E-13
+6,1464,5.24E-13
+6,1465,5.21E-13
+6,1466,5.19E-13
+6,1467,5.16E-13
+6,1468,5.14E-13
+6,1469,5.11E-13
+6,1470,5.08E-13
+6,1471,5.06E-13
+6,1472,5.03E-13
+6,1473,5.01E-13
+6,1474,4.98E-13
+6,1475,4.96E-13
+6,1476,4.93E-13
+6,1477,4.91E-13
+6,1478,4.88E-13
+6,1479,4.86E-13
+6,1480,4.83E-13
+6,1481,4.81E-13
+6,1482,4.79E-13
+6,1483,4.76E-13
+6,1484,4.74E-13
+6,1485,4.71E-13
+6,1486,4.69E-13
+6,1487,4.67E-13
+6,1488,4.64E-13
+6,1489,4.62E-13
+6,1490,4.60E-13
+6,1491,4.57E-13
+6,1492,4.55E-13
+6,1493,4.53E-13
+6,1494,4.50E-13
+6,1495,4.48E-13
+6,1496,4.46E-13
+6,1497,4.44E-13
+6,1498,4.41E-13
+6,1499,4.39E-13
+6,1500,4.37E-13
+6,1501,4.35E-13
+6,1502,4.32E-13
+6,1503,4.30E-13
+6,1504,4.28E-13
+6,1505,4.26E-13
+6,1506,4.24E-13
+6,1507,4.22E-13
+6,1508,4.20E-13
+6,1509,4.17E-13
+6,1510,4.15E-13
+6,1511,4.13E-13
+6,1512,4.11E-13
+6,1513,4.09E-13
+6,1514,4.07E-13
+6,1515,4.05E-13
+6,1516,4.03E-13
+6,1517,4.01E-13
+6,1518,3.99E-13
+6,1519,3.97E-13
+6,1520,3.95E-13
+6,1521,3.93E-13
+6,1522,3.91E-13
+6,1523,3.89E-13
+6,1524,3.87E-13
+6,1525,3.85E-13
+6,1526,3.83E-13
+6,1527,3.81E-13
+6,1528,3.79E-13
+6,1529,3.77E-13
+6,1530,3.75E-13
+6,1531,3.73E-13
+6,1532,3.72E-13
+6,1533,3.70E-13
+6,1534,3.68E-13
+6,1535,3.66E-13
+6,1536,3.64E-13
+6,1537,3.62E-13
+6,1538,3.60E-13
+6,1539,3.59E-13
+6,1540,3.57E-13
+6,1541,3.55E-13
+6,1542,3.53E-13
+6,1543,3.51E-13
+6,1544,3.50E-13
+6,1545,3.48E-13
+6,1546,3.46E-13
+6,1547,3.44E-13
+6,1548,3.43E-13
+6,1549,3.41E-13
+6,1550,3.39E-13
+6,1551,3.38E-13
+6,1552,3.36E-13
+6,1553,3.34E-13
+6,1554,3.32E-13
+6,1555,3.31E-13
+6,1556,3.29E-13
+6,1557,3.27E-13
+6,1558,3.26E-13
+6,1559,3.24E-13
+6,1560,3.23E-13
+6,1561,3.21E-13
+6,1562,3.19E-13
+6,1563,3.18E-13
+6,1564,3.16E-13
+6,1565,3.14E-13
+6,1566,3.13E-13
+6,1567,3.11E-13
+6,1568,3.10E-13
+6,1569,3.08E-13
+6,1570,3.07E-13
+6,1571,3.05E-13
+6,1572,3.04E-13
+6,1573,3.02E-13
+6,1574,3.00E-13
+6,1575,2.99E-13
+6,1576,2.97E-13
+6,1577,2.96E-13
+6,1578,2.94E-13
+6,1579,2.93E-13
+6,1580,2.91E-13
+6,1581,2.90E-13
+6,1582,2.89E-13
+6,1583,2.87E-13
+6,1584,2.86E-13
+6,1585,2.84E-13
+6,1586,2.83E-13
+6,1587,2.81E-13
+6,1588,2.80E-13
+6,1589,2.79E-13
+6,1590,2.77E-13
+6,1591,2.76E-13
+6,1592,2.74E-13
+6,1593,2.73E-13
+6,1594,2.72E-13
+6,1595,2.70E-13
+6,1596,2.69E-13
+6,1597,2.67E-13
+6,1598,2.66E-13
+6,1599,2.65E-13
+6,1600,2.63E-13
+6,1601,2.62E-13
+6,1602,2.61E-13
+6,1603,2.59E-13
+6,1604,2.58E-13
+6,1605,2.57E-13
+6,1606,2.56E-13
+6,1607,2.54E-13
+6,1608,2.53E-13
+6,1609,2.52E-13
+6,1610,2.50E-13
+6,1611,2.49E-13
+6,1612,2.48E-13
+6,1613,2.47E-13
+6,1614,2.45E-13
+6,1615,2.44E-13
+6,1616,2.43E-13
+6,1617,2.42E-13
+6,1618,2.41E-13
+6,1619,2.39E-13
+6,1620,2.38E-13
+6,1621,2.37E-13
+6,1622,2.36E-13
+6,1623,2.35E-13
+6,1624,2.33E-13
+6,1625,2.32E-13
+6,1626,2.31E-13
+6,1627,2.30E-13
+6,1628,2.29E-13
+6,1629,2.27E-13
+6,1630,2.26E-13
+6,1631,2.25E-13
+6,1632,2.24E-13
+6,1633,2.23E-13
+6,1634,2.22E-13
+6,1635,2.21E-13
+6,1636,2.20E-13
+6,1637,2.18E-13
+6,1638,2.17E-13
+6,1639,2.16E-13
+6,1640,2.15E-13
+6,1641,2.14E-13
+6,1642,2.13E-13
+6,1643,2.12E-13
+6,1644,2.11E-13
+6,1645,2.10E-13
+6,1646,2.09E-13
+6,1647,2.08E-13
+6,1648,2.07E-13
+6,1649,2.06E-13
+6,1650,2.05E-13
+6,1651,2.04E-13
+6,1652,2.03E-13
+6,1653,2.01E-13
+6,1654,2.00E-13
+6,1655,1.99E-13
+6,1656,1.98E-13
+6,1657,1.97E-13
+6,1658,1.96E-13
+6,1659,1.95E-13
+6,1660,1.94E-13
+6,1661,1.93E-13
+6,1662,1.93E-13
+6,1663,1.92E-13
+6,1664,1.91E-13
+6,1665,1.90E-13
+6,1666,1.89E-13
+6,1667,1.88E-13
+6,1668,1.87E-13
+6,1669,1.86E-13
+6,1670,1.85E-13
+6,1671,1.84E-13
+6,1672,1.83E-13
+6,1673,1.82E-13
+6,1674,1.81E-13
+6,1675,1.80E-13
+6,1676,1.79E-13
+6,1677,1.78E-13
+6,1678,1.78E-13
+6,1679,1.77E-13
+6,1680,1.76E-13
+6,1681,1.75E-13
+6,1682,1.74E-13
+6,1683,1.73E-13
+6,1684,1.72E-13
+6,1685,1.71E-13
+6,1686,1.71E-13
+6,1687,1.70E-13
+6,1688,1.69E-13
+6,1689,1.68E-13
+6,1690,1.67E-13
+6,1691,1.66E-13
+6,1692,1.65E-13
+6,1693,1.65E-13
+6,1694,1.64E-13
+6,1695,1.63E-13
+6,1696,1.62E-13
+6,1697,1.61E-13
+6,1698,1.60E-13
+6,1699,1.60E-13
+6,1700,1.59E-13
+6,1701,1.58E-13
+6,1702,1.57E-13
+6,1703,1.56E-13
+6,1704,1.56E-13
+6,1705,1.55E-13
+6,1706,1.54E-13
+6,1707,1.53E-13
+6,1708,1.53E-13
+6,1709,1.52E-13
+6,1710,1.51E-13
+6,1711,1.50E-13
+6,1712,1.49E-13
+6,1713,1.49E-13
+6,1714,1.48E-13
+6,1715,1.47E-13
+6,1716,1.47E-13
+6,1717,1.46E-13
+6,1718,1.45E-13
+6,1719,1.44E-13
+6,1720,1.44E-13
+6,1721,1.43E-13
+6,1722,1.42E-13
+6,1723,1.41E-13
+6,1724,1.41E-13
+6,1725,1.40E-13
+6,1726,1.39E-13
+6,1727,1.39E-13
+6,1728,1.38E-13
+6,1729,1.37E-13
+6,1730,1.36E-13
+6,1731,1.36E-13
+6,1732,1.35E-13
+6,1733,1.34E-13
+6,1734,1.34E-13
+6,1735,1.33E-13
+6,1736,1.32E-13
+6,1737,1.32E-13
+6,1738,1.31E-13
+6,1739,1.30E-13
+6,1740,1.30E-13
+6,1741,1.29E-13
+6,1742,1.28E-13
+6,1743,1.28E-13
+6,1744,1.27E-13
+6,1745,1.27E-13
+6,1746,1.26E-13
+6,1747,1.25E-13
+6,1748,1.25E-13
+6,1749,1.24E-13
+6,1750,1.23E-13
+6,1751,1.23E-13
+6,1752,1.22E-13
+6,1753,1.21E-13
+6,1754,1.21E-13
+6,1755,1.20E-13
+6,1756,1.20E-13
+6,1757,1.19E-13
+6,1758,1.18E-13
+6,1759,1.18E-13
+6,1760,1.17E-13
+6,1761,1.17E-13
+6,1762,1.16E-13
+6,1763,1.16E-13
+6,1764,1.15E-13
+6,1765,1.14E-13
+6,1766,1.14E-13
+6,1767,1.13E-13
+6,1768,1.13E-13
+6,1769,1.12E-13
+6,1770,1.11E-13
+6,1771,1.11E-13
+6,1772,1.10E-13
+6,1773,1.10E-13
+6,1774,1.09E-13
+6,1775,1.09E-13
+6,1776,1.08E-13
+6,1777,1.08E-13
+6,1778,1.07E-13
+6,1779,1.07E-13
+6,1780,1.06E-13
+6,1781,1.05E-13
+6,1782,1.05E-13
+6,1783,1.04E-13
+6,1784,1.04E-13
+6,1785,1.03E-13
+6,1786,1.03E-13
+6,1787,1.02E-13
+6,1788,1.02E-13
+6,1789,1.01E-13
+6,1790,1.01E-13
+6,1791,1.00E-13
+6,1792,9.97E-14
+6,1793,9.92E-14
+6,1794,9.87E-14
+6,1795,9.82E-14
+6,1796,9.77E-14
+6,1797,9.73E-14
+6,1798,9.68E-14
+6,1799,9.63E-14
+6,1800,9.58E-14
+6,1801,9.53E-14
+6,1802,9.48E-14
+6,1803,9.43E-14
+6,1804,9.39E-14
+6,1805,9.34E-14
+6,1806,9.29E-14
+6,1807,9.25E-14
+6,1808,9.20E-14
+6,1809,9.15E-14
+6,1810,9.11E-14
+6,1811,9.06E-14
+6,1812,9.01E-14
+6,1813,8.97E-14
+6,1814,8.92E-14
+6,1815,8.88E-14
+6,1816,8.83E-14
+6,1817,8.79E-14
+6,1818,8.75E-14
+6,1819,8.70E-14
+6,1820,8.66E-14
+6,1821,8.61E-14
+6,1822,8.57E-14
+6,1823,8.53E-14
+6,1824,8.48E-14
+6,1825,8.44E-14
+6,1826,8.40E-14
+6,1827,8.36E-14
+6,1828,8.31E-14
+6,1829,8.27E-14
+6,1830,8.23E-14
+6,1831,8.19E-14
+6,1832,8.15E-14
+6,1833,8.11E-14
+6,1834,8.07E-14
+6,1835,8.02E-14
+6,1836,7.98E-14
+6,1837,7.94E-14
+6,1838,7.90E-14
+6,1839,7.86E-14
+6,1840,7.82E-14
+6,1841,7.78E-14
+6,1842,7.75E-14
+6,1843,7.71E-14
+6,1844,7.67E-14
+6,1845,7.63E-14
+6,1846,7.59E-14
+6,1847,7.55E-14
+6,1848,7.51E-14
+6,1849,7.48E-14
+6,1850,7.44E-14
+6,1851,7.40E-14
+6,1852,7.36E-14
+6,1853,7.33E-14
+6,1854,7.29E-14
+6,1855,7.25E-14
+6,1856,7.22E-14
+6,1857,7.18E-14
+6,1858,7.14E-14
+6,1859,7.11E-14
+6,1860,7.07E-14
+6,1861,7.04E-14
+6,1862,7.00E-14
+6,1863,6.97E-14
+6,1864,6.93E-14
+6,1865,6.89E-14
+6,1866,6.86E-14
+6,1867,6.83E-14
+6,1868,6.79E-14
+6,1869,6.76E-14
+6,1870,6.72E-14
+6,1871,6.69E-14
+6,1872,6.66E-14
+6,1873,6.62E-14
+6,1874,6.59E-14
+6,1875,6.55E-14
+6,1876,6.52E-14
+6,1877,6.49E-14
+6,1878,6.46E-14
+6,1879,6.42E-14
+6,1880,6.39E-14
+6,1881,6.36E-14
+6,1882,6.33E-14
+6,1883,6.29E-14
+6,1884,6.26E-14
+6,1885,6.23E-14
+6,1886,6.20E-14
+6,1887,6.17E-14
+6,1888,6.14E-14
+6,1889,6.11E-14
+6,1890,6.08E-14
+6,1891,6.05E-14
+6,1892,6.01E-14
+6,1893,5.98E-14
+6,1894,5.95E-14
+6,1895,5.92E-14
+6,1896,5.89E-14
+6,1897,5.86E-14
+6,1898,5.83E-14
+6,1899,5.81E-14
+6,1900,5.78E-14
+6,1901,5.75E-14
+6,1902,5.72E-14
+6,1903,5.69E-14
+6,1904,5.66E-14
+6,1905,5.63E-14
+6,1906,5.60E-14
+6,1907,5.58E-14
+6,1908,5.55E-14
+6,1909,5.52E-14
+6,1910,5.49E-14
+6,1911,5.46E-14
+6,1912,5.44E-14
+6,1913,5.41E-14
+6,1914,5.38E-14
+6,1915,5.35E-14
+6,1916,5.33E-14
+6,1917,5.30E-14
+6,1918,5.27E-14
+6,1919,5.25E-14
+6,1920,5.22E-14
+6,1921,5.19E-14
+6,1922,5.17E-14
+6,1923,5.14E-14
+6,1924,5.12E-14
+6,1925,5.09E-14
+6,1926,5.06E-14
+6,1927,5.04E-14
+6,1928,5.01E-14
+6,1929,4.99E-14
+6,1930,4.96E-14
+6,1931,4.94E-14
+6,1932,4.91E-14
+6,1933,4.89E-14
+6,1934,4.86E-14
+6,1935,4.84E-14
+6,1936,4.81E-14
+6,1937,4.79E-14
+6,1938,4.77E-14
+6,1939,4.74E-14
+6,1940,4.72E-14
+6,1941,4.69E-14
+6,1942,4.67E-14
+6,1943,4.65E-14
+6,1944,4.62E-14
+6,1945,4.60E-14
+6,1946,4.58E-14
+6,1947,4.55E-14
+6,1948,4.53E-14
+6,1949,4.51E-14
+6,1950,4.49E-14
+6,1951,4.46E-14
+6,1952,4.44E-14
+6,1953,4.42E-14
+6,1954,4.40E-14
+6,1955,4.37E-14
+6,1956,4.35E-14
+6,1957,4.33E-14
+6,1958,4.31E-14
+6,1959,4.29E-14
+6,1960,4.26E-14
+6,1961,4.24E-14
+6,1962,4.22E-14
+6,1963,4.20E-14
+6,1964,4.18E-14
+6,1965,4.16E-14
+6,1966,4.14E-14
+6,1967,4.12E-14
+6,1968,4.10E-14
+6,1969,4.07E-14
+6,1970,4.05E-14
+6,1971,4.03E-14
+6,1972,4.01E-14
+6,1973,3.99E-14
+6,1974,3.97E-14
+6,1975,3.95E-14
+6,1976,3.93E-14
+6,1977,3.91E-14
+6,1978,3.89E-14
+6,1979,3.87E-14
+6,1980,3.85E-14
+6,1981,3.83E-14
+6,1982,3.82E-14
+6,1983,3.80E-14
+6,1984,3.78E-14
+6,1985,3.76E-14
+6,1986,3.74E-14
+6,1987,3.72E-14
+6,1988,3.70E-14
+6,1989,3.68E-14
+6,1990,3.66E-14
+6,1991,3.65E-14
+6,1992,3.63E-14
+6,1993,3.61E-14
+6,1994,3.59E-14
+6,1995,3.57E-14
+6,1996,3.55E-14
+6,1997,3.54E-14
+6,1998,3.52E-14
+6,1999,3.50E-14
+6,2000,3.48E-14
+7,1,2.06E-08
+7,2,2.02E-08
+7,3,1.99E-08
+7,4,1.96E-08
+7,5,1.93E-08
+7,6,1.90E-08
+7,7,1.87E-08
+7,8,1.84E-08
+7,9,1.82E-08
+7,10,1.79E-08
+7,11,1.76E-08
+7,12,1.73E-08
+7,13,1.71E-08
+7,14,1.68E-08
+7,15,1.65E-08
+7,16,1.63E-08
+7,17,1.60E-08
+7,18,1.58E-08
+7,19,1.55E-08
+7,20,1.53E-08
+7,21,1.51E-08
+7,22,1.48E-08
+7,23,1.46E-08
+7,24,1.44E-08
+7,25,1.42E-08
+7,26,1.39E-08
+7,27,1.37E-08
+7,28,1.35E-08
+7,29,1.33E-08
+7,30,1.31E-08
+7,31,1.29E-08
+7,32,1.27E-08
+7,33,1.25E-08
+7,34,1.23E-08
+7,35,1.21E-08
+7,36,1.20E-08
+7,37,1.18E-08
+7,38,1.16E-08
+7,39,1.14E-08
+7,40,1.13E-08
+7,41,1.11E-08
+7,42,1.09E-08
+7,43,1.08E-08
+7,44,1.06E-08
+7,45,1.04E-08
+7,46,1.03E-08
+7,47,1.01E-08
+7,48,9.99E-09
+7,49,9.85E-09
+7,50,9.70E-09
+7,51,9.56E-09
+7,52,9.42E-09
+7,53,9.29E-09
+7,54,9.15E-09
+7,55,9.02E-09
+7,56,8.89E-09
+7,57,8.76E-09
+7,58,8.64E-09
+7,59,8.52E-09
+7,60,8.40E-09
+7,61,8.28E-09
+7,62,8.16E-09
+7,63,8.05E-09
+7,64,7.93E-09
+7,65,7.82E-09
+7,66,7.71E-09
+7,67,7.61E-09
+7,68,7.50E-09
+7,69,7.40E-09
+7,70,7.29E-09
+7,71,7.19E-09
+7,72,7.10E-09
+7,73,7.00E-09
+7,74,6.90E-09
+7,75,6.81E-09
+7,76,6.72E-09
+7,77,6.63E-09
+7,78,6.54E-09
+7,79,6.45E-09
+7,80,6.36E-09
+7,81,6.28E-09
+7,82,6.19E-09
+7,83,6.11E-09
+7,84,6.03E-09
+7,85,5.95E-09
+7,86,5.87E-09
+7,87,5.80E-09
+7,88,5.72E-09
+7,89,5.65E-09
+7,90,5.57E-09
+7,91,5.50E-09
+7,92,5.43E-09
+7,93,5.36E-09
+7,94,5.29E-09
+7,95,5.22E-09
+7,96,5.16E-09
+7,97,5.09E-09
+7,98,5.03E-09
+7,99,4.96E-09
+7,100,4.90E-09
+7,101,4.84E-09
+7,102,4.78E-09
+7,103,4.72E-09
+7,104,4.66E-09
+7,105,4.60E-09
+7,106,4.54E-09
+7,107,4.49E-09
+7,108,4.43E-09
+7,109,4.38E-09
+7,110,4.33E-09
+7,111,4.27E-09
+7,112,4.22E-09
+7,113,4.17E-09
+7,114,4.12E-09
+7,115,4.07E-09
+7,116,4.02E-09
+7,117,3.97E-09
+7,118,3.92E-09
+7,119,3.88E-09
+7,120,3.83E-09
+7,121,3.79E-09
+7,122,3.74E-09
+7,123,3.70E-09
+7,124,3.65E-09
+7,125,3.61E-09
+7,126,3.57E-09
+7,127,3.53E-09
+7,128,3.49E-09
+7,129,3.45E-09
+7,130,3.41E-09
+7,131,3.37E-09
+7,132,3.33E-09
+7,133,3.29E-09
+7,134,3.25E-09
+7,135,3.22E-09
+7,136,3.18E-09
+7,137,3.14E-09
+7,138,3.11E-09
+7,139,3.07E-09
+7,140,3.04E-09
+7,141,3.01E-09
+7,142,2.97E-09
+7,143,2.94E-09
+7,144,2.91E-09
+7,145,2.88E-09
+7,146,2.84E-09
+7,147,2.81E-09
+7,148,2.78E-09
+7,149,2.75E-09
+7,150,2.72E-09
+7,151,2.69E-09
+7,152,2.66E-09
+7,153,2.63E-09
+7,154,2.61E-09
+7,155,2.58E-09
+7,156,2.55E-09
+7,157,2.52E-09
+7,158,2.50E-09
+7,159,2.47E-09
+7,160,2.45E-09
+7,161,2.42E-09
+7,162,2.39E-09
+7,163,2.37E-09
+7,164,2.34E-09
+7,165,2.32E-09
+7,166,2.30E-09
+7,167,2.27E-09
+7,168,2.25E-09
+7,169,2.23E-09
+7,170,2.20E-09
+7,171,2.18E-09
+7,172,2.16E-09
+7,173,2.14E-09
+7,174,2.12E-09
+7,175,2.09E-09
+7,176,2.07E-09
+7,177,2.05E-09
+7,178,2.03E-09
+7,179,2.01E-09
+7,180,1.99E-09
+7,181,1.97E-09
+7,182,1.95E-09
+7,183,1.93E-09
+7,184,1.92E-09
+7,185,1.90E-09
+7,186,1.88E-09
+7,187,1.86E-09
+7,188,1.84E-09
+7,189,1.82E-09
+7,190,1.81E-09
+7,191,1.79E-09
+7,192,1.77E-09
+7,193,1.76E-09
+7,194,1.74E-09
+7,195,1.72E-09
+7,196,1.71E-09
+7,197,1.69E-09
+7,198,1.67E-09
+7,199,1.66E-09
+7,200,1.64E-09
+7,201,1.63E-09
+7,202,1.61E-09
+7,203,1.60E-09
+7,204,1.58E-09
+7,205,1.57E-09
+7,206,1.55E-09
+7,207,1.54E-09
+7,208,1.53E-09
+7,209,1.51E-09
+7,210,1.50E-09
+7,211,1.49E-09
+7,212,1.47E-09
+7,213,1.46E-09
+7,214,1.45E-09
+7,215,1.43E-09
+7,216,1.42E-09
+7,217,1.41E-09
+7,218,1.40E-09
+7,219,1.38E-09
+7,220,1.37E-09
+7,221,1.36E-09
+7,222,1.35E-09
+7,223,1.34E-09
+7,224,1.32E-09
+7,225,1.31E-09
+7,226,1.30E-09
+7,227,1.29E-09
+7,228,1.28E-09
+7,229,1.27E-09
+7,230,1.26E-09
+7,231,1.25E-09
+7,232,1.24E-09
+7,233,1.23E-09
+7,234,1.22E-09
+7,235,1.21E-09
+7,236,1.19E-09
+7,237,1.19E-09
+7,238,1.18E-09
+7,239,1.17E-09
+7,240,1.16E-09
+7,241,1.15E-09
+7,242,1.14E-09
+7,243,1.13E-09
+7,244,1.12E-09
+7,245,1.11E-09
+7,246,1.10E-09
+7,247,1.09E-09
+7,248,1.08E-09
+7,249,1.07E-09
+7,250,1.07E-09
+7,251,1.06E-09
+7,252,1.05E-09
+7,253,1.04E-09
+7,254,1.03E-09
+7,255,1.02E-09
+7,256,1.02E-09
+7,257,1.01E-09
+7,258,1.00E-09
+7,259,9.92E-10
+7,260,9.84E-10
+7,261,9.77E-10
+7,262,9.69E-10
+7,263,9.62E-10
+7,264,9.54E-10
+7,265,9.47E-10
+7,266,9.40E-10
+7,267,9.32E-10
+7,268,9.25E-10
+7,269,9.18E-10
+7,270,9.11E-10
+7,271,9.05E-10
+7,272,8.98E-10
+7,273,8.91E-10
+7,274,8.84E-10
+7,275,8.78E-10
+7,276,8.71E-10
+7,277,8.65E-10
+7,278,8.58E-10
+7,279,8.52E-10
+7,280,8.46E-10
+7,281,8.40E-10
+7,282,8.34E-10
+7,283,8.27E-10
+7,284,8.21E-10
+7,285,8.15E-10
+7,286,8.10E-10
+7,287,8.04E-10
+7,288,7.98E-10
+7,289,7.92E-10
+7,290,7.87E-10
+7,291,7.81E-10
+7,292,7.75E-10
+7,293,7.70E-10
+7,294,7.65E-10
+7,295,7.59E-10
+7,296,7.54E-10
+7,297,7.49E-10
+7,298,7.43E-10
+7,299,7.38E-10
+7,300,7.33E-10
+7,301,7.28E-10
+7,302,7.23E-10
+7,303,7.18E-10
+7,304,7.13E-10
+7,305,7.08E-10
+7,306,7.03E-10
+7,307,6.98E-10
+7,308,6.94E-10
+7,309,6.89E-10
+7,310,6.84E-10
+7,311,6.80E-10
+7,312,6.75E-10
+7,313,6.71E-10
+7,314,6.66E-10
+7,315,6.62E-10
+7,316,6.57E-10
+7,317,6.53E-10
+7,318,6.49E-10
+7,319,6.44E-10
+7,320,6.40E-10
+7,321,6.36E-10
+7,322,6.32E-10
+7,323,6.28E-10
+7,324,6.24E-10
+7,325,6.19E-10
+7,326,6.15E-10
+7,327,6.11E-10
+7,328,6.08E-10
+7,329,6.04E-10
+7,330,6.00E-10
+7,331,5.96E-10
+7,332,5.92E-10
+7,333,5.88E-10
+7,334,5.85E-10
+7,335,5.81E-10
+7,336,5.77E-10
+7,337,5.74E-10
+7,338,5.70E-10
+7,339,5.66E-10
+7,340,5.63E-10
+7,341,5.59E-10
+7,342,5.56E-10
+7,343,5.52E-10
+7,344,5.49E-10
+7,345,5.46E-10
+7,346,5.42E-10
+7,347,5.39E-10
+7,348,5.35E-10
+7,349,5.32E-10
+7,350,5.29E-10
+7,351,5.26E-10
+7,352,5.23E-10
+7,353,5.19E-10
+7,354,5.16E-10
+7,355,5.13E-10
+7,356,5.10E-10
+7,357,5.07E-10
+7,358,5.04E-10
+7,359,5.01E-10
+7,360,4.98E-10
+7,361,4.95E-10
+7,362,4.92E-10
+7,363,4.89E-10
+7,364,4.86E-10
+7,365,4.83E-10
+7,366,4.80E-10
+7,367,4.78E-10
+7,368,4.75E-10
+7,369,4.72E-10
+7,370,4.69E-10
+7,371,4.66E-10
+7,372,4.64E-10
+7,373,4.61E-10
+7,374,4.58E-10
+7,375,4.56E-10
+7,376,4.53E-10
+7,377,4.50E-10
+7,378,4.48E-10
+7,379,4.45E-10
+7,380,4.43E-10
+7,381,4.40E-10
+7,382,4.38E-10
+7,383,4.35E-10
+7,384,4.33E-10
+7,385,4.30E-10
+7,386,4.28E-10
+7,387,4.25E-10
+7,388,4.23E-10
+7,389,4.21E-10
+7,390,4.18E-10
+7,391,4.16E-10
+7,392,4.14E-10
+7,393,4.11E-10
+7,394,4.09E-10
+7,395,4.07E-10
+7,396,4.04E-10
+7,397,4.02E-10
+7,398,4.00E-10
+7,399,3.98E-10
+7,400,3.96E-10
+7,401,3.93E-10
+7,402,3.91E-10
+7,403,3.89E-10
+7,404,3.87E-10
+7,405,3.85E-10
+7,406,3.83E-10
+7,407,3.81E-10
+7,408,3.79E-10
+7,409,3.76E-10
+7,410,3.74E-10
+7,411,3.72E-10
+7,412,3.70E-10
+7,413,3.68E-10
+7,414,3.66E-10
+7,415,3.64E-10
+7,416,3.62E-10
+7,417,3.61E-10
+7,418,3.59E-10
+7,419,3.57E-10
+7,420,3.55E-10
+7,421,3.53E-10
+7,422,3.51E-10
+7,423,3.49E-10
+7,424,3.47E-10
+7,425,3.45E-10
+7,426,3.44E-10
+7,427,3.42E-10
+7,428,3.40E-10
+7,429,3.38E-10
+7,430,3.36E-10
+7,431,3.35E-10
+7,432,3.33E-10
+7,433,3.31E-10
+7,434,3.29E-10
+7,435,3.28E-10
+7,436,3.26E-10
+7,437,3.24E-10
+7,438,3.22E-10
+7,439,3.21E-10
+7,440,3.19E-10
+7,441,3.17E-10
+7,442,3.16E-10
+7,443,3.14E-10
+7,444,3.13E-10
+7,445,3.11E-10
+7,446,3.09E-10
+7,447,3.08E-10
+7,448,3.06E-10
+7,449,3.05E-10
+7,450,3.03E-10
+7,451,3.01E-10
+7,452,3.00E-10
+7,453,2.98E-10
+7,454,2.97E-10
+7,455,2.95E-10
+7,456,2.94E-10
+7,457,2.92E-10
+7,458,2.91E-10
+7,459,2.89E-10
+7,460,2.88E-10
+7,461,2.86E-10
+7,462,2.85E-10
+7,463,2.83E-10
+7,464,2.82E-10
+7,465,2.80E-10
+7,466,2.79E-10
+7,467,2.78E-10
+7,468,2.76E-10
+7,469,2.75E-10
+7,470,2.73E-10
+7,471,2.72E-10
+7,472,2.71E-10
+7,473,2.69E-10
+7,474,2.68E-10
+7,475,2.66E-10
+7,476,2.65E-10
+7,477,2.64E-10
+7,478,2.62E-10
+7,479,2.61E-10
+7,480,2.60E-10
+7,481,2.58E-10
+7,482,2.57E-10
+7,483,2.56E-10
+7,484,2.55E-10
+7,485,2.53E-10
+7,486,2.52E-10
+7,487,2.51E-10
+7,488,2.49E-10
+7,489,2.48E-10
+7,490,2.47E-10
+7,491,2.46E-10
+7,492,2.44E-10
+7,493,2.43E-10
+7,494,2.42E-10
+7,495,2.41E-10
+7,496,2.40E-10
+7,497,2.38E-10
+7,498,2.37E-10
+7,499,2.36E-10
+7,500,2.35E-10
+7,501,2.34E-10
+7,502,2.32E-10
+7,503,2.31E-10
+7,504,2.30E-10
+7,505,2.29E-10
+7,506,2.28E-10
+7,507,2.27E-10
+7,508,2.25E-10
+7,509,2.24E-10
+7,510,2.23E-10
+7,511,2.22E-10
+7,512,2.21E-10
+7,513,2.20E-10
+7,514,2.19E-10
+7,515,2.18E-10
+7,516,2.17E-10
+7,517,2.15E-10
+7,518,2.14E-10
+7,519,2.13E-10
+7,520,2.12E-10
+7,521,2.11E-10
+7,522,2.10E-10
+7,523,2.09E-10
+7,524,2.08E-10
+7,525,2.07E-10
+7,526,2.06E-10
+7,527,2.05E-10
+7,528,2.04E-10
+7,529,2.03E-10
+7,530,2.02E-10
+7,531,2.01E-10
+7,532,2.00E-10
+7,533,1.99E-10
+7,534,1.98E-10
+7,535,1.97E-10
+7,536,1.96E-10
+7,537,1.95E-10
+7,538,1.94E-10
+7,539,1.93E-10
+7,540,1.92E-10
+7,541,1.91E-10
+7,542,1.90E-10
+7,543,1.89E-10
+7,544,1.88E-10
+7,545,1.87E-10
+7,546,1.86E-10
+7,547,1.85E-10
+7,548,1.84E-10
+7,549,1.83E-10
+7,550,1.82E-10
+7,551,1.81E-10
+7,552,1.80E-10
+7,553,1.80E-10
+7,554,1.79E-10
+7,555,1.78E-10
+7,556,1.77E-10
+7,557,1.76E-10
+7,558,1.75E-10
+7,559,1.74E-10
+7,560,1.73E-10
+7,561,1.72E-10
+7,562,1.72E-10
+7,563,1.71E-10
+7,564,1.70E-10
+7,565,1.69E-10
+7,566,1.68E-10
+7,567,1.67E-10
+7,568,1.66E-10
+7,569,1.66E-10
+7,570,1.65E-10
+7,571,1.64E-10
+7,572,1.63E-10
+7,573,1.62E-10
+7,574,1.61E-10
+7,575,1.61E-10
+7,576,1.60E-10
+7,577,1.59E-10
+7,578,1.58E-10
+7,579,1.57E-10
+7,580,1.57E-10
+7,581,1.56E-10
+7,582,1.55E-10
+7,583,1.54E-10
+7,584,1.54E-10
+7,585,1.53E-10
+7,586,1.52E-10
+7,587,1.51E-10
+7,588,1.50E-10
+7,589,1.50E-10
+7,590,1.49E-10
+7,591,1.48E-10
+7,592,1.47E-10
+7,593,1.47E-10
+7,594,1.46E-10
+7,595,1.45E-10
+7,596,1.44E-10
+7,597,1.44E-10
+7,598,1.43E-10
+7,599,1.42E-10
+7,600,1.42E-10
+7,601,1.41E-10
+7,602,1.40E-10
+7,603,1.39E-10
+7,604,1.39E-10
+7,605,1.38E-10
+7,606,1.37E-10
+7,607,1.37E-10
+7,608,1.36E-10
+7,609,1.35E-10
+7,610,1.35E-10
+7,611,1.34E-10
+7,612,1.33E-10
+7,613,1.33E-10
+7,614,1.32E-10
+7,615,1.31E-10
+7,616,1.31E-10
+7,617,1.30E-10
+7,618,1.29E-10
+7,619,1.29E-10
+7,620,1.28E-10
+7,621,1.27E-10
+7,622,1.27E-10
+7,623,1.26E-10
+7,624,1.25E-10
+7,625,1.25E-10
+7,626,1.24E-10
+7,627,1.23E-10
+7,628,1.23E-10
+7,629,1.22E-10
+7,630,1.22E-10
+7,631,1.21E-10
+7,632,1.20E-10
+7,633,1.20E-10
+7,634,1.19E-10
+7,635,1.19E-10
+7,636,1.18E-10
+7,637,1.17E-10
+7,638,1.17E-10
+7,639,1.16E-10
+7,640,1.16E-10
+7,641,1.15E-10
+7,642,1.14E-10
+7,643,1.14E-10
+7,644,1.13E-10
+7,645,1.13E-10
+7,646,1.12E-10
+7,647,1.12E-10
+7,648,1.11E-10
+7,649,1.10E-10
+7,650,1.10E-10
+7,651,1.09E-10
+7,652,1.09E-10
+7,653,1.08E-10
+7,654,1.08E-10
+7,655,1.07E-10
+7,656,1.07E-10
+7,657,1.06E-10
+7,658,1.06E-10
+7,659,1.05E-10
+7,660,1.05E-10
+7,661,1.04E-10
+7,662,1.03E-10
+7,663,1.03E-10
+7,664,1.02E-10
+7,665,1.02E-10
+7,666,1.01E-10
+7,667,1.01E-10
+7,668,1.00E-10
+7,669,9.99E-11
+7,670,9.94E-11
+7,671,9.89E-11
+7,672,9.84E-11
+7,673,9.79E-11
+7,674,9.74E-11
+7,675,9.69E-11
+7,676,9.64E-11
+7,677,9.59E-11
+7,678,9.54E-11
+7,679,9.49E-11
+7,680,9.45E-11
+7,681,9.40E-11
+7,682,9.35E-11
+7,683,9.30E-11
+7,684,9.26E-11
+7,685,9.21E-11
+7,686,9.16E-11
+7,687,9.12E-11
+7,688,9.07E-11
+7,689,9.03E-11
+7,690,8.98E-11
+7,691,8.93E-11
+7,692,8.89E-11
+7,693,8.84E-11
+7,694,8.80E-11
+7,695,8.76E-11
+7,696,8.71E-11
+7,697,8.67E-11
+7,698,8.62E-11
+7,699,8.58E-11
+7,700,8.54E-11
+7,701,8.49E-11
+7,702,8.45E-11
+7,703,8.41E-11
+7,704,8.37E-11
+7,705,8.32E-11
+7,706,8.28E-11
+7,707,8.24E-11
+7,708,8.20E-11
+7,709,8.16E-11
+7,710,8.12E-11
+7,711,8.07E-11
+7,712,8.03E-11
+7,713,7.99E-11
+7,714,7.95E-11
+7,715,7.91E-11
+7,716,7.87E-11
+7,717,7.83E-11
+7,718,7.79E-11
+7,719,7.75E-11
+7,720,7.72E-11
+7,721,7.68E-11
+7,722,7.64E-11
+7,723,7.60E-11
+7,724,7.56E-11
+7,725,7.52E-11
+7,726,7.48E-11
+7,727,7.45E-11
+7,728,7.41E-11
+7,729,7.37E-11
+7,730,7.33E-11
+7,731,7.30E-11
+7,732,7.26E-11
+7,733,7.22E-11
+7,734,7.19E-11
+7,735,7.15E-11
+7,736,7.12E-11
+7,737,7.08E-11
+7,738,7.04E-11
+7,739,7.01E-11
+7,740,6.97E-11
+7,741,6.94E-11
+7,742,6.90E-11
+7,743,6.87E-11
+7,744,6.83E-11
+7,745,6.80E-11
+7,746,6.76E-11
+7,747,6.73E-11
+7,748,6.70E-11
+7,749,6.66E-11
+7,750,6.63E-11
+7,751,6.60E-11
+7,752,6.56E-11
+7,753,6.53E-11
+7,754,6.50E-11
+7,755,6.46E-11
+7,756,6.43E-11
+7,757,6.40E-11
+7,758,6.37E-11
+7,759,6.33E-11
+7,760,6.30E-11
+7,761,6.27E-11
+7,762,6.24E-11
+7,763,6.21E-11
+7,764,6.18E-11
+7,765,6.14E-11
+7,766,6.11E-11
+7,767,6.08E-11
+7,768,6.05E-11
+7,769,6.02E-11
+7,770,5.99E-11
+7,771,5.96E-11
+7,772,5.93E-11
+7,773,5.90E-11
+7,774,5.87E-11
+7,775,5.84E-11
+7,776,5.81E-11
+7,777,5.78E-11
+7,778,5.75E-11
+7,779,5.72E-11
+7,780,5.70E-11
+7,781,5.67E-11
+7,782,5.64E-11
+7,783,5.61E-11
+7,784,5.58E-11
+7,785,5.55E-11
+7,786,5.53E-11
+7,787,5.50E-11
+7,788,5.47E-11
+7,789,5.44E-11
+7,790,5.41E-11
+7,791,5.39E-11
+7,792,5.36E-11
+7,793,5.33E-11
+7,794,5.31E-11
+7,795,5.28E-11
+7,796,5.25E-11
+7,797,5.23E-11
+7,798,5.20E-11
+7,799,5.17E-11
+7,800,5.15E-11
+7,801,5.12E-11
+7,802,5.10E-11
+7,803,5.07E-11
+7,804,5.04E-11
+7,805,5.02E-11
+7,806,4.99E-11
+7,807,4.97E-11
+7,808,4.94E-11
+7,809,4.92E-11
+7,810,4.89E-11
+7,811,4.87E-11
+7,812,4.84E-11
+7,813,4.82E-11
+7,814,4.80E-11
+7,815,4.77E-11
+7,816,4.75E-11
+7,817,4.72E-11
+7,818,4.70E-11
+7,819,4.68E-11
+7,820,4.65E-11
+7,821,4.63E-11
+7,822,4.61E-11
+7,823,4.58E-11
+7,824,4.56E-11
+7,825,4.54E-11
+7,826,4.51E-11
+7,827,4.49E-11
+7,828,4.47E-11
+7,829,4.45E-11
+7,830,4.42E-11
+7,831,4.40E-11
+7,832,4.38E-11
+7,833,4.36E-11
+7,834,4.33E-11
+7,835,4.31E-11
+7,836,4.29E-11
+7,837,4.27E-11
+7,838,4.25E-11
+7,839,4.23E-11
+7,840,4.20E-11
+7,841,4.18E-11
+7,842,4.16E-11
+7,843,4.14E-11
+7,844,4.12E-11
+7,845,4.10E-11
+7,846,4.08E-11
+7,847,4.06E-11
+7,848,4.04E-11
+7,849,4.02E-11
+7,850,4.00E-11
+7,851,3.98E-11
+7,852,3.96E-11
+7,853,3.94E-11
+7,854,3.92E-11
+7,855,3.90E-11
+7,856,3.88E-11
+7,857,3.86E-11
+7,858,3.84E-11
+7,859,3.82E-11
+7,860,3.80E-11
+7,861,3.78E-11
+7,862,3.76E-11
+7,863,3.74E-11
+7,864,3.72E-11
+7,865,3.71E-11
+7,866,3.69E-11
+7,867,3.67E-11
+7,868,3.65E-11
+7,869,3.63E-11
+7,870,3.61E-11
+7,871,3.59E-11
+7,872,3.58E-11
+7,873,3.56E-11
+7,874,3.54E-11
+7,875,3.52E-11
+7,876,3.50E-11
+7,877,3.49E-11
+7,878,3.47E-11
+7,879,3.45E-11
+7,880,3.43E-11
+7,881,3.42E-11
+7,882,3.40E-11
+7,883,3.38E-11
+7,884,3.37E-11
+7,885,3.35E-11
+7,886,3.33E-11
+7,887,3.32E-11
+7,888,3.30E-11
+7,889,3.28E-11
+7,890,3.27E-11
+7,891,3.25E-11
+7,892,3.23E-11
+7,893,3.22E-11
+7,894,3.20E-11
+7,895,3.18E-11
+7,896,3.17E-11
+7,897,3.15E-11
+7,898,3.14E-11
+7,899,3.12E-11
+7,900,3.10E-11
+7,901,3.09E-11
+7,902,3.07E-11
+7,903,3.06E-11
+7,904,3.04E-11
+7,905,3.03E-11
+7,906,3.01E-11
+7,907,3.00E-11
+7,908,2.98E-11
+7,909,2.97E-11
+7,910,2.95E-11
+7,911,2.94E-11
+7,912,2.92E-11
+7,913,2.91E-11
+7,914,2.89E-11
+7,915,2.88E-11
+7,916,2.86E-11
+7,917,2.85E-11
+7,918,2.83E-11
+7,919,2.82E-11
+7,920,2.81E-11
+7,921,2.79E-11
+7,922,2.78E-11
+7,923,2.76E-11
+7,924,2.75E-11
+7,925,2.74E-11
+7,926,2.72E-11
+7,927,2.71E-11
+7,928,2.69E-11
+7,929,2.68E-11
+7,930,2.67E-11
+7,931,2.65E-11
+7,932,2.64E-11
+7,933,2.63E-11
+7,934,2.61E-11
+7,935,2.60E-11
+7,936,2.59E-11
+7,937,2.57E-11
+7,938,2.56E-11
+7,939,2.55E-11
+7,940,2.54E-11
+7,941,2.52E-11
+7,942,2.51E-11
+7,943,2.50E-11
+7,944,2.48E-11
+7,945,2.47E-11
+7,946,2.46E-11
+7,947,2.45E-11
+7,948,2.43E-11
+7,949,2.42E-11
+7,950,2.41E-11
+7,951,2.40E-11
+7,952,2.39E-11
+7,953,2.37E-11
+7,954,2.36E-11
+7,955,2.35E-11
+7,956,2.34E-11
+7,957,2.33E-11
+7,958,2.31E-11
+7,959,2.30E-11
+7,960,2.29E-11
+7,961,2.28E-11
+7,962,2.27E-11
+7,963,2.26E-11
+7,964,2.25E-11
+7,965,2.23E-11
+7,966,2.22E-11
+7,967,2.21E-11
+7,968,2.20E-11
+7,969,2.19E-11
+7,970,2.18E-11
+7,971,2.17E-11
+7,972,2.16E-11
+7,973,2.15E-11
+7,974,2.13E-11
+7,975,2.12E-11
+7,976,2.11E-11
+7,977,2.10E-11
+7,978,2.09E-11
+7,979,2.08E-11
+7,980,2.07E-11
+7,981,2.06E-11
+7,982,2.05E-11
+7,983,2.04E-11
+7,984,2.03E-11
+7,985,2.02E-11
+7,986,2.01E-11
+7,987,2.00E-11
+7,988,1.99E-11
+7,989,1.98E-11
+7,990,1.97E-11
+7,991,1.96E-11
+7,992,1.95E-11
+7,993,1.94E-11
+7,994,1.93E-11
+7,995,1.92E-11
+7,996,1.91E-11
+7,997,1.90E-11
+7,998,1.89E-11
+7,999,1.88E-11
+7,1000,1.87E-11
+7,1001,1.86E-11
+7,1002,1.85E-11
+7,1003,1.84E-11
+7,1004,1.83E-11
+7,1005,1.83E-11
+7,1006,1.82E-11
+7,1007,1.81E-11
+7,1008,1.80E-11
+7,1009,1.79E-11
+7,1010,1.78E-11
+7,1011,1.77E-11
+7,1012,1.76E-11
+7,1013,1.75E-11
+7,1014,1.74E-11
+7,1015,1.74E-11
+7,1016,1.73E-11
+7,1017,1.72E-11
+7,1018,1.71E-11
+7,1019,1.70E-11
+7,1020,1.69E-11
+7,1021,1.68E-11
+7,1022,1.67E-11
+7,1023,1.67E-11
+7,1024,1.66E-11
+7,1025,1.65E-11
+7,1026,1.64E-11
+7,1027,1.63E-11
+7,1028,1.62E-11
+7,1029,1.62E-11
+7,1030,1.61E-11
+7,1031,1.60E-11
+7,1032,1.59E-11
+7,1033,1.58E-11
+7,1034,1.58E-11
+7,1035,1.57E-11
+7,1036,1.56E-11
+7,1037,1.55E-11
+7,1038,1.54E-11
+7,1039,1.54E-11
+7,1040,1.53E-11
+7,1041,1.52E-11
+7,1042,1.51E-11
+7,1043,1.51E-11
+7,1044,1.50E-11
+7,1045,1.49E-11
+7,1046,1.48E-11
+7,1047,1.48E-11
+7,1048,1.47E-11
+7,1049,1.46E-11
+7,1050,1.45E-11
+7,1051,1.45E-11
+7,1052,1.44E-11
+7,1053,1.43E-11
+7,1054,1.42E-11
+7,1055,1.42E-11
+7,1056,1.41E-11
+7,1057,1.40E-11
+7,1058,1.40E-11
+7,1059,1.39E-11
+7,1060,1.38E-11
+7,1061,1.37E-11
+7,1062,1.37E-11
+7,1063,1.36E-11
+7,1064,1.35E-11
+7,1065,1.35E-11
+7,1066,1.34E-11
+7,1067,1.33E-11
+7,1068,1.33E-11
+7,1069,1.32E-11
+7,1070,1.31E-11
+7,1071,1.31E-11
+7,1072,1.30E-11
+7,1073,1.29E-11
+7,1074,1.29E-11
+7,1075,1.28E-11
+7,1076,1.27E-11
+7,1077,1.27E-11
+7,1078,1.26E-11
+7,1079,1.26E-11
+7,1080,1.25E-11
+7,1081,1.24E-11
+7,1082,1.24E-11
+7,1083,1.23E-11
+7,1084,1.22E-11
+7,1085,1.22E-11
+7,1086,1.21E-11
+7,1087,1.21E-11
+7,1088,1.20E-11
+7,1089,1.19E-11
+7,1090,1.19E-11
+7,1091,1.18E-11
+7,1092,1.18E-11
+7,1093,1.17E-11
+7,1094,1.16E-11
+7,1095,1.16E-11
+7,1096,1.15E-11
+7,1097,1.15E-11
+7,1098,1.14E-11
+7,1099,1.13E-11
+7,1100,1.13E-11
+7,1101,1.12E-11
+7,1102,1.12E-11
+7,1103,1.11E-11
+7,1104,1.11E-11
+7,1105,1.10E-11
+7,1106,1.09E-11
+7,1107,1.09E-11
+7,1108,1.08E-11
+7,1109,1.08E-11
+7,1110,1.07E-11
+7,1111,1.07E-11
+7,1112,1.06E-11
+7,1113,1.06E-11
+7,1114,1.05E-11
+7,1115,1.05E-11
+7,1116,1.04E-11
+7,1117,1.04E-11
+7,1118,1.03E-11
+7,1119,1.03E-11
+7,1120,1.02E-11
+7,1121,1.01E-11
+7,1122,1.01E-11
+7,1123,1.00E-11
+7,1124,1.00E-11
+7,1125,9.95E-12
+7,1126,9.90E-12
+7,1127,9.85E-12
+7,1128,9.80E-12
+7,1129,9.75E-12
+7,1130,9.70E-12
+7,1131,9.65E-12
+7,1132,9.60E-12
+7,1133,9.55E-12
+7,1134,9.50E-12
+7,1135,9.46E-12
+7,1136,9.41E-12
+7,1137,9.36E-12
+7,1138,9.31E-12
+7,1139,9.27E-12
+7,1140,9.22E-12
+7,1141,9.17E-12
+7,1142,9.13E-12
+7,1143,9.08E-12
+7,1144,9.03E-12
+7,1145,8.99E-12
+7,1146,8.94E-12
+7,1147,8.90E-12
+7,1148,8.85E-12
+7,1149,8.81E-12
+7,1150,8.76E-12
+7,1151,8.72E-12
+7,1152,8.68E-12
+7,1153,8.63E-12
+7,1154,8.59E-12
+7,1155,8.55E-12
+7,1156,8.50E-12
+7,1157,8.46E-12
+7,1158,8.42E-12
+7,1159,8.37E-12
+7,1160,8.33E-12
+7,1161,8.29E-12
+7,1162,8.25E-12
+7,1163,8.21E-12
+7,1164,8.17E-12
+7,1165,8.12E-12
+7,1166,8.08E-12
+7,1167,8.04E-12
+7,1168,8.00E-12
+7,1169,7.96E-12
+7,1170,7.92E-12
+7,1171,7.88E-12
+7,1172,7.84E-12
+7,1173,7.80E-12
+7,1174,7.76E-12
+7,1175,7.72E-12
+7,1176,7.68E-12
+7,1177,7.65E-12
+7,1178,7.61E-12
+7,1179,7.57E-12
+7,1180,7.53E-12
+7,1181,7.49E-12
+7,1182,7.45E-12
+7,1183,7.42E-12
+7,1184,7.38E-12
+7,1185,7.34E-12
+7,1186,7.31E-12
+7,1187,7.27E-12
+7,1188,7.23E-12
+7,1189,7.20E-12
+7,1190,7.16E-12
+7,1191,7.12E-12
+7,1192,7.09E-12
+7,1193,7.05E-12
+7,1194,7.02E-12
+7,1195,6.98E-12
+7,1196,6.95E-12
+7,1197,6.91E-12
+7,1198,6.88E-12
+7,1199,6.84E-12
+7,1200,6.81E-12
+7,1201,6.77E-12
+7,1202,6.74E-12
+7,1203,6.70E-12
+7,1204,6.67E-12
+7,1205,6.64E-12
+7,1206,6.60E-12
+7,1207,6.57E-12
+7,1208,6.54E-12
+7,1209,6.50E-12
+7,1210,6.47E-12
+7,1211,6.44E-12
+7,1212,6.41E-12
+7,1213,6.37E-12
+7,1214,6.34E-12
+7,1215,6.31E-12
+7,1216,6.28E-12
+7,1217,6.25E-12
+7,1218,6.21E-12
+7,1219,6.18E-12
+7,1220,6.15E-12
+7,1221,6.12E-12
+7,1222,6.09E-12
+7,1223,6.06E-12
+7,1224,6.03E-12
+7,1225,6.00E-12
+7,1226,5.97E-12
+7,1227,5.94E-12
+7,1228,5.91E-12
+7,1229,5.88E-12
+7,1230,5.85E-12
+7,1231,5.82E-12
+7,1232,5.79E-12
+7,1233,5.76E-12
+7,1234,5.73E-12
+7,1235,5.70E-12
+7,1236,5.67E-12
+7,1237,5.64E-12
+7,1238,5.62E-12
+7,1239,5.59E-12
+7,1240,5.56E-12
+7,1241,5.53E-12
+7,1242,5.50E-12
+7,1243,5.48E-12
+7,1244,5.45E-12
+7,1245,5.42E-12
+7,1246,5.39E-12
+7,1247,5.37E-12
+7,1248,5.34E-12
+7,1249,5.31E-12
+7,1250,5.29E-12
+7,1251,5.26E-12
+7,1252,5.23E-12
+7,1253,5.21E-12
+7,1254,5.18E-12
+7,1255,5.15E-12
+7,1256,5.13E-12
+7,1257,5.10E-12
+7,1258,5.08E-12
+7,1259,5.05E-12
+7,1260,5.02E-12
+7,1261,5.00E-12
+7,1262,4.97E-12
+7,1263,4.95E-12
+7,1264,4.92E-12
+7,1265,4.90E-12
+7,1266,4.87E-12
+7,1267,4.85E-12
+7,1268,4.83E-12
+7,1269,4.80E-12
+7,1270,4.78E-12
+7,1271,4.75E-12
+7,1272,4.73E-12
+7,1273,4.70E-12
+7,1274,4.68E-12
+7,1275,4.66E-12
+7,1276,4.63E-12
+7,1277,4.61E-12
+7,1278,4.59E-12
+7,1279,4.56E-12
+7,1280,4.54E-12
+7,1281,4.52E-12
+7,1282,4.50E-12
+7,1283,4.47E-12
+7,1284,4.45E-12
+7,1285,4.43E-12
+7,1286,4.41E-12
+7,1287,4.38E-12
+7,1288,4.36E-12
+7,1289,4.34E-12
+7,1290,4.32E-12
+7,1291,4.30E-12
+7,1292,4.27E-12
+7,1293,4.25E-12
+7,1294,4.23E-12
+7,1295,4.21E-12
+7,1296,4.19E-12
+7,1297,4.17E-12
+7,1298,4.15E-12
+7,1299,4.12E-12
+7,1300,4.10E-12
+7,1301,4.08E-12
+7,1302,4.06E-12
+7,1303,4.04E-12
+7,1304,4.02E-12
+7,1305,4.00E-12
+7,1306,3.98E-12
+7,1307,3.96E-12
+7,1308,3.94E-12
+7,1309,3.92E-12
+7,1310,3.90E-12
+7,1311,3.88E-12
+7,1312,3.86E-12
+7,1313,3.84E-12
+7,1314,3.82E-12
+7,1315,3.80E-12
+7,1316,3.79E-12
+7,1317,3.77E-12
+7,1318,3.75E-12
+7,1319,3.73E-12
+7,1320,3.71E-12
+7,1321,3.69E-12
+7,1322,3.67E-12
+7,1323,3.65E-12
+7,1324,3.63E-12
+7,1325,3.62E-12
+7,1326,3.60E-12
+7,1327,3.58E-12
+7,1328,3.56E-12
+7,1329,3.54E-12
+7,1330,3.53E-12
+7,1331,3.51E-12
+7,1332,3.49E-12
+7,1333,3.47E-12
+7,1334,3.46E-12
+7,1335,3.44E-12
+7,1336,3.42E-12
+7,1337,3.40E-12
+7,1338,3.39E-12
+7,1339,3.37E-12
+7,1340,3.35E-12
+7,1341,3.34E-12
+7,1342,3.32E-12
+7,1343,3.30E-12
+7,1344,3.29E-12
+7,1345,3.27E-12
+7,1346,3.25E-12
+7,1347,3.24E-12
+7,1348,3.22E-12
+7,1349,3.20E-12
+7,1350,3.19E-12
+7,1351,3.17E-12
+7,1352,3.15E-12
+7,1353,3.14E-12
+7,1354,3.12E-12
+7,1355,3.11E-12
+7,1356,3.09E-12
+7,1357,3.08E-12
+7,1358,3.06E-12
+7,1359,3.05E-12
+7,1360,3.03E-12
+7,1361,3.01E-12
+7,1362,3.00E-12
+7,1363,2.98E-12
+7,1364,2.97E-12
+7,1365,2.95E-12
+7,1366,2.94E-12
+7,1367,2.92E-12
+7,1368,2.91E-12
+7,1369,2.89E-12
+7,1370,2.88E-12
+7,1371,2.87E-12
+7,1372,2.85E-12
+7,1373,2.84E-12
+7,1374,2.82E-12
+7,1375,2.81E-12
+7,1376,2.79E-12
+7,1377,2.78E-12
+7,1378,2.77E-12
+7,1379,2.75E-12
+7,1380,2.74E-12
+7,1381,2.72E-12
+7,1382,2.71E-12
+7,1383,2.70E-12
+7,1384,2.68E-12
+7,1385,2.67E-12
+7,1386,2.66E-12
+7,1387,2.64E-12
+7,1388,2.63E-12
+7,1389,2.62E-12
+7,1390,2.60E-12
+7,1391,2.59E-12
+7,1392,2.58E-12
+7,1393,2.56E-12
+7,1394,2.55E-12
+7,1395,2.54E-12
+7,1396,2.53E-12
+7,1397,2.51E-12
+7,1398,2.50E-12
+7,1399,2.49E-12
+7,1400,2.47E-12
+7,1401,2.46E-12
+7,1402,2.45E-12
+7,1403,2.44E-12
+7,1404,2.43E-12
+7,1405,2.41E-12
+7,1406,2.40E-12
+7,1407,2.39E-12
+7,1408,2.38E-12
+7,1409,2.36E-12
+7,1410,2.35E-12
+7,1411,2.34E-12
+7,1412,2.33E-12
+7,1413,2.32E-12
+7,1414,2.31E-12
+7,1415,2.29E-12
+7,1416,2.28E-12
+7,1417,2.27E-12
+7,1418,2.26E-12
+7,1419,2.25E-12
+7,1420,2.24E-12
+7,1421,2.23E-12
+7,1422,2.21E-12
+7,1423,2.20E-12
+7,1424,2.19E-12
+7,1425,2.18E-12
+7,1426,2.17E-12
+7,1427,2.16E-12
+7,1428,2.15E-12
+7,1429,2.14E-12
+7,1430,2.13E-12
+7,1431,2.12E-12
+7,1432,2.10E-12
+7,1433,2.09E-12
+7,1434,2.08E-12
+7,1435,2.07E-12
+7,1436,2.06E-12
+7,1437,2.05E-12
+7,1438,2.04E-12
+7,1439,2.03E-12
+7,1440,2.02E-12
+7,1441,2.01E-12
+7,1442,2.00E-12
+7,1443,1.99E-12
+7,1444,1.98E-12
+7,1445,1.97E-12
+7,1446,1.96E-12
+7,1447,1.95E-12
+7,1448,1.94E-12
+7,1449,1.93E-12
+7,1450,1.92E-12
+7,1451,1.91E-12
+7,1452,1.90E-12
+7,1453,1.89E-12
+7,1454,1.88E-12
+7,1455,1.87E-12
+7,1456,1.86E-12
+7,1457,1.85E-12
+7,1458,1.85E-12
+7,1459,1.84E-12
+7,1460,1.83E-12
+7,1461,1.82E-12
+7,1462,1.81E-12
+7,1463,1.80E-12
+7,1464,1.79E-12
+7,1465,1.78E-12
+7,1466,1.77E-12
+7,1467,1.76E-12
+7,1468,1.75E-12
+7,1469,1.75E-12
+7,1470,1.74E-12
+7,1471,1.73E-12
+7,1472,1.72E-12
+7,1473,1.71E-12
+7,1474,1.70E-12
+7,1475,1.69E-12
+7,1476,1.68E-12
+7,1477,1.68E-12
+7,1478,1.67E-12
+7,1479,1.66E-12
+7,1480,1.65E-12
+7,1481,1.64E-12
+7,1482,1.63E-12
+7,1483,1.63E-12
+7,1484,1.62E-12
+7,1485,1.61E-12
+7,1486,1.60E-12
+7,1487,1.59E-12
+7,1488,1.59E-12
+7,1489,1.58E-12
+7,1490,1.57E-12
+7,1491,1.56E-12
+7,1492,1.55E-12
+7,1493,1.55E-12
+7,1494,1.54E-12
+7,1495,1.53E-12
+7,1496,1.52E-12
+7,1497,1.52E-12
+7,1498,1.51E-12
+7,1499,1.50E-12
+7,1500,1.49E-12
+7,1501,1.48E-12
+7,1502,1.48E-12
+7,1503,1.47E-12
+7,1504,1.46E-12
+7,1505,1.46E-12
+7,1506,1.45E-12
+7,1507,1.44E-12
+7,1508,1.43E-12
+7,1509,1.43E-12
+7,1510,1.42E-12
+7,1511,1.41E-12
+7,1512,1.40E-12
+7,1513,1.40E-12
+7,1514,1.39E-12
+7,1515,1.38E-12
+7,1516,1.38E-12
+7,1517,1.37E-12
+7,1518,1.36E-12
+7,1519,1.36E-12
+7,1520,1.35E-12
+7,1521,1.34E-12
+7,1522,1.34E-12
+7,1523,1.33E-12
+7,1524,1.32E-12
+7,1525,1.32E-12
+7,1526,1.31E-12
+7,1527,1.30E-12
+7,1528,1.30E-12
+7,1529,1.29E-12
+7,1530,1.28E-12
+7,1531,1.28E-12
+7,1532,1.27E-12
+7,1533,1.26E-12
+7,1534,1.26E-12
+7,1535,1.25E-12
+7,1536,1.24E-12
+7,1537,1.24E-12
+7,1538,1.23E-12
+7,1539,1.23E-12
+7,1540,1.22E-12
+7,1541,1.21E-12
+7,1542,1.21E-12
+7,1543,1.20E-12
+7,1544,1.19E-12
+7,1545,1.19E-12
+7,1546,1.18E-12
+7,1547,1.18E-12
+7,1548,1.17E-12
+7,1549,1.16E-12
+7,1550,1.16E-12
+7,1551,1.15E-12
+7,1552,1.15E-12
+7,1553,1.14E-12
+7,1554,1.14E-12
+7,1555,1.13E-12
+7,1556,1.12E-12
+7,1557,1.12E-12
+7,1558,1.11E-12
+7,1559,1.11E-12
+7,1560,1.10E-12
+7,1561,1.10E-12
+7,1562,1.09E-12
+7,1563,1.09E-12
+7,1564,1.08E-12
+7,1565,1.07E-12
+7,1566,1.07E-12
+7,1567,1.06E-12
+7,1568,1.06E-12
+7,1569,1.05E-12
+7,1570,1.05E-12
+7,1571,1.04E-12
+7,1572,1.04E-12
+7,1573,1.03E-12
+7,1574,1.03E-12
+7,1575,1.02E-12
+7,1576,1.02E-12
+7,1577,1.01E-12
+7,1578,1.01E-12
+7,1579,1.00E-12
+7,1580,9.96E-13
+7,1581,9.91E-13
+7,1582,9.86E-13
+7,1583,9.81E-13
+7,1584,9.76E-13
+7,1585,9.71E-13
+7,1586,9.66E-13
+7,1587,9.61E-13
+7,1588,9.56E-13
+7,1589,9.51E-13
+7,1590,9.47E-13
+7,1591,9.42E-13
+7,1592,9.37E-13
+7,1593,9.32E-13
+7,1594,9.28E-13
+7,1595,9.23E-13
+7,1596,9.18E-13
+7,1597,9.14E-13
+7,1598,9.09E-13
+7,1599,9.04E-13
+7,1600,9.00E-13
+7,1601,8.95E-13
+7,1602,8.91E-13
+7,1603,8.86E-13
+7,1604,8.82E-13
+7,1605,8.77E-13
+7,1606,8.73E-13
+7,1607,8.69E-13
+7,1608,8.64E-13
+7,1609,8.60E-13
+7,1610,8.55E-13
+7,1611,8.51E-13
+7,1612,8.47E-13
+7,1613,8.43E-13
+7,1614,8.38E-13
+7,1615,8.34E-13
+7,1616,8.30E-13
+7,1617,8.26E-13
+7,1618,8.22E-13
+7,1619,8.17E-13
+7,1620,8.13E-13
+7,1621,8.09E-13
+7,1622,8.05E-13
+7,1623,8.01E-13
+7,1624,7.97E-13
+7,1625,7.93E-13
+7,1626,7.89E-13
+7,1627,7.85E-13
+7,1628,7.81E-13
+7,1629,7.77E-13
+7,1630,7.73E-13
+7,1631,7.69E-13
+7,1632,7.65E-13
+7,1633,7.62E-13
+7,1634,7.58E-13
+7,1635,7.54E-13
+7,1636,7.50E-13
+7,1637,7.46E-13
+7,1638,7.43E-13
+7,1639,7.39E-13
+7,1640,7.35E-13
+7,1641,7.31E-13
+7,1642,7.28E-13
+7,1643,7.24E-13
+7,1644,7.20E-13
+7,1645,7.17E-13
+7,1646,7.13E-13
+7,1647,7.09E-13
+7,1648,7.06E-13
+7,1649,7.02E-13
+7,1650,6.99E-13
+7,1651,6.95E-13
+7,1652,6.92E-13
+7,1653,6.88E-13
+7,1654,6.85E-13
+7,1655,6.81E-13
+7,1656,6.78E-13
+7,1657,6.74E-13
+7,1658,6.71E-13
+7,1659,6.68E-13
+7,1660,6.64E-13
+7,1661,6.61E-13
+7,1662,6.58E-13
+7,1663,6.54E-13
+7,1664,6.51E-13
+7,1665,6.48E-13
+7,1666,6.44E-13
+7,1667,6.41E-13
+7,1668,6.38E-13
+7,1669,6.35E-13
+7,1670,6.32E-13
+7,1671,6.28E-13
+7,1672,6.25E-13
+7,1673,6.22E-13
+7,1674,6.19E-13
+7,1675,6.16E-13
+7,1676,6.13E-13
+7,1677,6.10E-13
+7,1678,6.07E-13
+7,1679,6.03E-13
+7,1680,6.00E-13
+7,1681,5.97E-13
+7,1682,5.94E-13
+7,1683,5.91E-13
+7,1684,5.88E-13
+7,1685,5.85E-13
+7,1686,5.82E-13
+7,1687,5.80E-13
+7,1688,5.77E-13
+7,1689,5.74E-13
+7,1690,5.71E-13
+7,1691,5.68E-13
+7,1692,5.65E-13
+7,1693,5.62E-13
+7,1694,5.59E-13
+7,1695,5.57E-13
+7,1696,5.54E-13
+7,1697,5.51E-13
+7,1698,5.48E-13
+7,1699,5.45E-13
+7,1700,5.43E-13
+7,1701,5.40E-13
+7,1702,5.37E-13
+7,1703,5.34E-13
+7,1704,5.32E-13
+7,1705,5.29E-13
+7,1706,5.26E-13
+7,1707,5.24E-13
+7,1708,5.21E-13
+7,1709,5.18E-13
+7,1710,5.16E-13
+7,1711,5.13E-13
+7,1712,5.11E-13
+7,1713,5.08E-13
+7,1714,5.06E-13
+7,1715,5.03E-13
+7,1716,5.00E-13
+7,1717,4.98E-13
+7,1718,4.95E-13
+7,1719,4.93E-13
+7,1720,4.90E-13
+7,1721,4.88E-13
+7,1722,4.85E-13
+7,1723,4.83E-13
+7,1724,4.81E-13
+7,1725,4.78E-13
+7,1726,4.76E-13
+7,1727,4.73E-13
+7,1728,4.71E-13
+7,1729,4.69E-13
+7,1730,4.66E-13
+7,1731,4.64E-13
+7,1732,4.62E-13
+7,1733,4.59E-13
+7,1734,4.57E-13
+7,1735,4.55E-13
+7,1736,4.52E-13
+7,1737,4.50E-13
+7,1738,4.48E-13
+7,1739,4.45E-13
+7,1740,4.43E-13
+7,1741,4.41E-13
+7,1742,4.39E-13
+7,1743,4.37E-13
+7,1744,4.34E-13
+7,1745,4.32E-13
+7,1746,4.30E-13
+7,1747,4.28E-13
+7,1748,4.26E-13
+7,1749,4.24E-13
+7,1750,4.21E-13
+7,1751,4.19E-13
+7,1752,4.17E-13
+7,1753,4.15E-13
+7,1754,4.13E-13
+7,1755,4.11E-13
+7,1756,4.09E-13
+7,1757,4.07E-13
+7,1758,4.05E-13
+7,1759,4.03E-13
+7,1760,4.01E-13
+7,1761,3.99E-13
+7,1762,3.97E-13
+7,1763,3.95E-13
+7,1764,3.93E-13
+7,1765,3.91E-13
+7,1766,3.89E-13
+7,1767,3.87E-13
+7,1768,3.85E-13
+7,1769,3.83E-13
+7,1770,3.81E-13
+7,1771,3.79E-13
+7,1772,3.77E-13
+7,1773,3.75E-13
+7,1774,3.73E-13
+7,1775,3.71E-13
+7,1776,3.69E-13
+7,1777,3.68E-13
+7,1778,3.66E-13
+7,1779,3.64E-13
+7,1780,3.62E-13
+7,1781,3.60E-13
+7,1782,3.58E-13
+7,1783,3.57E-13
+7,1784,3.55E-13
+7,1785,3.53E-13
+7,1786,3.51E-13
+7,1787,3.49E-13
+7,1788,3.48E-13
+7,1789,3.46E-13
+7,1790,3.44E-13
+7,1791,3.42E-13
+7,1792,3.41E-13
+7,1793,3.39E-13
+7,1794,3.37E-13
+7,1795,3.36E-13
+7,1796,3.34E-13
+7,1797,3.32E-13
+7,1798,3.31E-13
+7,1799,3.29E-13
+7,1800,3.27E-13
+7,1801,3.26E-13
+7,1802,3.24E-13
+7,1803,3.22E-13
+7,1804,3.21E-13
+7,1805,3.19E-13
+7,1806,3.17E-13
+7,1807,3.16E-13
+7,1808,3.14E-13
+7,1809,3.13E-13
+7,1810,3.11E-13
+7,1811,3.09E-13
+7,1812,3.08E-13
+7,1813,3.06E-13
+7,1814,3.05E-13
+7,1815,3.03E-13
+7,1816,3.02E-13
+7,1817,3.00E-13
+7,1818,2.99E-13
+7,1819,2.97E-13
+7,1820,2.96E-13
+7,1821,2.94E-13
+7,1822,2.93E-13
+7,1823,2.91E-13
+7,1824,2.90E-13
+7,1825,2.88E-13
+7,1826,2.87E-13
+7,1827,2.85E-13
+7,1828,2.84E-13
+7,1829,2.83E-13
+7,1830,2.81E-13
+7,1831,2.80E-13
+7,1832,2.78E-13
+7,1833,2.77E-13
+7,1834,2.76E-13
+7,1835,2.74E-13
+7,1836,2.73E-13
+7,1837,2.71E-13
+7,1838,2.70E-13
+7,1839,2.69E-13
+7,1840,2.67E-13
+7,1841,2.66E-13
+7,1842,2.65E-13
+7,1843,2.63E-13
+7,1844,2.62E-13
+7,1845,2.61E-13
+7,1846,2.59E-13
+7,1847,2.58E-13
+7,1848,2.57E-13
+7,1849,2.55E-13
+7,1850,2.54E-13
+7,1851,2.53E-13
+7,1852,2.52E-13
+7,1853,2.50E-13
+7,1854,2.49E-13
+7,1855,2.48E-13
+7,1856,2.46E-13
+7,1857,2.45E-13
+7,1858,2.44E-13
+7,1859,2.43E-13
+7,1860,2.42E-13
+7,1861,2.40E-13
+7,1862,2.39E-13
+7,1863,2.38E-13
+7,1864,2.37E-13
+7,1865,2.36E-13
+7,1866,2.34E-13
+7,1867,2.33E-13
+7,1868,2.32E-13
+7,1869,2.31E-13
+7,1870,2.30E-13
+7,1871,2.28E-13
+7,1872,2.27E-13
+7,1873,2.26E-13
+7,1874,2.25E-13
+7,1875,2.24E-13
+7,1876,2.23E-13
+7,1877,2.22E-13
+7,1878,2.21E-13
+7,1879,2.19E-13
+7,1880,2.18E-13
+7,1881,2.17E-13
+7,1882,2.16E-13
+7,1883,2.15E-13
+7,1884,2.14E-13
+7,1885,2.13E-13
+7,1886,2.12E-13
+7,1887,2.11E-13
+7,1888,2.10E-13
+7,1889,2.09E-13
+7,1890,2.08E-13
+7,1891,2.06E-13
+7,1892,2.05E-13
+7,1893,2.04E-13
+7,1894,2.03E-13
+7,1895,2.02E-13
+7,1896,2.01E-13
+7,1897,2.00E-13
+7,1898,1.99E-13
+7,1899,1.98E-13
+7,1900,1.97E-13
+7,1901,1.96E-13
+7,1902,1.95E-13
+7,1903,1.94E-13
+7,1904,1.93E-13
+7,1905,1.92E-13
+7,1906,1.91E-13
+7,1907,1.90E-13
+7,1908,1.89E-13
+7,1909,1.89E-13
+7,1910,1.88E-13
+7,1911,1.87E-13
+7,1912,1.86E-13
+7,1913,1.85E-13
+7,1914,1.84E-13
+7,1915,1.83E-13
+7,1916,1.82E-13
+7,1917,1.81E-13
+7,1918,1.80E-13
+7,1919,1.79E-13
+7,1920,1.78E-13
+7,1921,1.77E-13
+7,1922,1.77E-13
+7,1923,1.76E-13
+7,1924,1.75E-13
+7,1925,1.74E-13
+7,1926,1.73E-13
+7,1927,1.72E-13
+7,1928,1.71E-13
+7,1929,1.70E-13
+7,1930,1.70E-13
+7,1931,1.69E-13
+7,1932,1.68E-13
+7,1933,1.67E-13
+7,1934,1.66E-13
+7,1935,1.65E-13
+7,1936,1.64E-13
+7,1937,1.64E-13
+7,1938,1.63E-13
+7,1939,1.62E-13
+7,1940,1.61E-13
+7,1941,1.60E-13
+7,1942,1.60E-13
+7,1943,1.59E-13
+7,1944,1.58E-13
+7,1945,1.57E-13
+7,1946,1.56E-13
+7,1947,1.56E-13
+7,1948,1.55E-13
+7,1949,1.54E-13
+7,1950,1.53E-13
+7,1951,1.52E-13
+7,1952,1.52E-13
+7,1953,1.51E-13
+7,1954,1.50E-13
+7,1955,1.49E-13
+7,1956,1.49E-13
+7,1957,1.48E-13
+7,1958,1.47E-13
+7,1959,1.46E-13
+7,1960,1.46E-13
+7,1961,1.45E-13
+7,1962,1.44E-13
+7,1963,1.43E-13
+7,1964,1.43E-13
+7,1965,1.42E-13
+7,1966,1.41E-13
+7,1967,1.41E-13
+7,1968,1.40E-13
+7,1969,1.39E-13
+7,1970,1.38E-13
+7,1971,1.38E-13
+7,1972,1.37E-13
+7,1973,1.36E-13
+7,1974,1.36E-13
+7,1975,1.35E-13
+7,1976,1.34E-13
+7,1977,1.34E-13
+7,1978,1.33E-13
+7,1979,1.32E-13
+7,1980,1.32E-13
+7,1981,1.31E-13
+7,1982,1.30E-13
+7,1983,1.30E-13
+7,1984,1.29E-13
+7,1985,1.28E-13
+7,1986,1.28E-13
+7,1987,1.27E-13
+7,1988,1.26E-13
+7,1989,1.26E-13
+7,1990,1.25E-13
+7,1991,1.25E-13
+7,1992,1.24E-13
+7,1993,1.23E-13
+7,1994,1.23E-13
+7,1995,1.22E-13
+7,1996,1.21E-13
+7,1997,1.21E-13
+7,1998,1.20E-13
+7,1999,1.20E-13
+7,2000,1.19E-13
+8,1,6.15E-08
+8,2,6.06E-08
+8,3,5.96E-08
+8,4,5.87E-08
+8,5,5.78E-08
+8,6,5.69E-08
+8,7,5.60E-08
+8,8,5.52E-08
+8,9,5.43E-08
+8,10,5.35E-08
+8,11,5.27E-08
+8,12,5.19E-08
+8,13,5.11E-08
+8,14,5.03E-08
+8,15,4.95E-08
+8,16,4.87E-08
+8,17,4.80E-08
+8,18,4.72E-08
+8,19,4.65E-08
+8,20,4.58E-08
+8,21,4.51E-08
+8,22,4.44E-08
+8,23,4.37E-08
+8,24,4.30E-08
+8,25,4.24E-08
+8,26,4.17E-08
+8,27,4.11E-08
+8,28,4.05E-08
+8,29,3.99E-08
+8,30,3.92E-08
+8,31,3.87E-08
+8,32,3.81E-08
+8,33,3.75E-08
+8,34,3.69E-08
+8,35,3.64E-08
+8,36,3.58E-08
+8,37,3.53E-08
+8,38,3.47E-08
+8,39,3.42E-08
+8,40,3.37E-08
+8,41,3.32E-08
+8,42,3.27E-08
+8,43,3.22E-08
+8,44,3.17E-08
+8,45,3.13E-08
+8,46,3.08E-08
+8,47,3.04E-08
+8,48,2.99E-08
+8,49,2.95E-08
+8,50,2.90E-08
+8,51,2.86E-08
+8,52,2.82E-08
+8,53,2.78E-08
+8,54,2.74E-08
+8,55,2.70E-08
+8,56,2.66E-08
+8,57,2.62E-08
+8,58,2.59E-08
+8,59,2.55E-08
+8,60,2.51E-08
+8,61,2.48E-08
+8,62,2.44E-08
+8,63,2.41E-08
+8,64,2.37E-08
+8,65,2.34E-08
+8,66,2.31E-08
+8,67,2.28E-08
+8,68,2.24E-08
+8,69,2.21E-08
+8,70,2.18E-08
+8,71,2.15E-08
+8,72,2.12E-08
+8,73,2.09E-08
+8,74,2.07E-08
+8,75,2.04E-08
+8,76,2.01E-08
+8,77,1.98E-08
+8,78,1.96E-08
+8,79,1.93E-08
+8,80,1.90E-08
+8,81,1.88E-08
+8,82,1.85E-08
+8,83,1.83E-08
+8,84,1.81E-08
+8,85,1.78E-08
+8,86,1.76E-08
+8,87,1.74E-08
+8,88,1.71E-08
+8,89,1.69E-08
+8,90,1.67E-08
+8,91,1.65E-08
+8,92,1.63E-08
+8,93,1.60E-08
+8,94,1.58E-08
+8,95,1.56E-08
+8,96,1.54E-08
+8,97,1.52E-08
+8,98,1.50E-08
+8,99,1.49E-08
+8,100,1.47E-08
+8,101,1.45E-08
+8,102,1.43E-08
+8,103,1.41E-08
+8,104,1.39E-08
+8,105,1.38E-08
+8,106,1.36E-08
+8,107,1.34E-08
+8,108,1.33E-08
+8,109,1.31E-08
+8,110,1.29E-08
+8,111,1.28E-08
+8,112,1.26E-08
+8,113,1.25E-08
+8,114,1.23E-08
+8,115,1.22E-08
+8,116,1.20E-08
+8,117,1.19E-08
+8,118,1.17E-08
+8,119,1.16E-08
+8,120,1.15E-08
+8,121,1.13E-08
+8,122,1.12E-08
+8,123,1.11E-08
+8,124,1.09E-08
+8,125,1.08E-08
+8,126,1.07E-08
+8,127,1.06E-08
+8,128,1.04E-08
+8,129,1.03E-08
+8,130,1.02E-08
+8,131,1.01E-08
+8,132,9.97E-09
+8,133,9.85E-09
+8,134,9.74E-09
+8,135,9.63E-09
+8,136,9.52E-09
+8,137,9.41E-09
+8,138,9.31E-09
+8,139,9.20E-09
+8,140,9.10E-09
+8,141,9.00E-09
+8,142,8.90E-09
+8,143,8.80E-09
+8,144,8.70E-09
+8,145,8.61E-09
+8,146,8.51E-09
+8,147,8.42E-09
+8,148,8.33E-09
+8,149,8.24E-09
+8,150,8.15E-09
+8,151,8.06E-09
+8,152,7.97E-09
+8,153,7.89E-09
+8,154,7.80E-09
+8,155,7.72E-09
+8,156,7.64E-09
+8,157,7.56E-09
+8,158,7.48E-09
+8,159,7.40E-09
+8,160,7.32E-09
+8,161,7.24E-09
+8,162,7.17E-09
+8,163,7.09E-09
+8,164,7.02E-09
+8,165,6.95E-09
+8,166,6.87E-09
+8,167,6.80E-09
+8,168,6.73E-09
+8,169,6.66E-09
+8,170,6.60E-09
+8,171,6.53E-09
+8,172,6.46E-09
+8,173,6.40E-09
+8,174,6.33E-09
+8,175,6.27E-09
+8,176,6.21E-09
+8,177,6.14E-09
+8,178,6.08E-09
+8,179,6.02E-09
+8,180,5.96E-09
+8,181,5.90E-09
+8,182,5.85E-09
+8,183,5.79E-09
+8,184,5.73E-09
+8,185,5.68E-09
+8,186,5.62E-09
+8,187,5.57E-09
+8,188,5.51E-09
+8,189,5.46E-09
+8,190,5.41E-09
+8,191,5.36E-09
+8,192,5.31E-09
+8,193,5.25E-09
+8,194,5.20E-09
+8,195,5.16E-09
+8,196,5.11E-09
+8,197,5.06E-09
+8,198,5.01E-09
+8,199,4.96E-09
+8,200,4.92E-09
+8,201,4.87E-09
+8,202,4.83E-09
+8,203,4.78E-09
+8,204,4.74E-09
+8,205,4.70E-09
+8,206,4.65E-09
+8,207,4.61E-09
+8,208,4.57E-09
+8,209,4.53E-09
+8,210,4.49E-09
+8,211,4.45E-09
+8,212,4.41E-09
+8,213,4.37E-09
+8,214,4.33E-09
+8,215,4.29E-09
+8,216,4.25E-09
+8,217,4.21E-09
+8,218,4.18E-09
+8,219,4.14E-09
+8,220,4.10E-09
+8,221,4.07E-09
+8,222,4.03E-09
+8,223,4.00E-09
+8,224,3.96E-09
+8,225,3.93E-09
+8,226,3.89E-09
+8,227,3.86E-09
+8,228,3.83E-09
+8,229,3.80E-09
+8,230,3.76E-09
+8,231,3.73E-09
+8,232,3.70E-09
+8,233,3.67E-09
+8,234,3.64E-09
+8,235,3.61E-09
+8,236,3.58E-09
+8,237,3.55E-09
+8,238,3.52E-09
+8,239,3.49E-09
+8,240,3.46E-09
+8,241,3.43E-09
+8,242,3.40E-09
+8,243,3.38E-09
+8,244,3.35E-09
+8,245,3.32E-09
+8,246,3.29E-09
+8,247,3.27E-09
+8,248,3.24E-09
+8,249,3.21E-09
+8,250,3.19E-09
+8,251,3.16E-09
+8,252,3.14E-09
+8,253,3.11E-09
+8,254,3.09E-09
+8,255,3.06E-09
+8,256,3.04E-09
+8,257,3.02E-09
+8,258,2.99E-09
+8,259,2.97E-09
+8,260,2.95E-09
+8,261,2.92E-09
+8,262,2.90E-09
+8,263,2.88E-09
+8,264,2.86E-09
+8,265,2.83E-09
+8,266,2.81E-09
+8,267,2.79E-09
+8,268,2.77E-09
+8,269,2.75E-09
+8,270,2.73E-09
+8,271,2.71E-09
+8,272,2.69E-09
+8,273,2.67E-09
+8,274,2.65E-09
+8,275,2.63E-09
+8,276,2.61E-09
+8,277,2.59E-09
+8,278,2.57E-09
+8,279,2.55E-09
+8,280,2.53E-09
+8,281,2.51E-09
+8,282,2.50E-09
+8,283,2.48E-09
+8,284,2.46E-09
+8,285,2.44E-09
+8,286,2.42E-09
+8,287,2.41E-09
+8,288,2.39E-09
+8,289,2.37E-09
+8,290,2.35E-09
+8,291,2.34E-09
+8,292,2.32E-09
+8,293,2.30E-09
+8,294,2.29E-09
+8,295,2.27E-09
+8,296,2.26E-09
+8,297,2.24E-09
+8,298,2.23E-09
+8,299,2.21E-09
+8,300,2.19E-09
+8,301,2.18E-09
+8,302,2.16E-09
+8,303,2.15E-09
+8,304,2.13E-09
+8,305,2.12E-09
+8,306,2.11E-09
+8,307,2.09E-09
+8,308,2.08E-09
+8,309,2.06E-09
+8,310,2.05E-09
+8,311,2.03E-09
+8,312,2.02E-09
+8,313,2.01E-09
+8,314,1.99E-09
+8,315,1.98E-09
+8,316,1.97E-09
+8,317,1.95E-09
+8,318,1.94E-09
+8,319,1.93E-09
+8,320,1.92E-09
+8,321,1.90E-09
+8,322,1.89E-09
+8,323,1.88E-09
+8,324,1.87E-09
+8,325,1.85E-09
+8,326,1.84E-09
+8,327,1.83E-09
+8,328,1.82E-09
+8,329,1.81E-09
+8,330,1.80E-09
+8,331,1.78E-09
+8,332,1.77E-09
+8,333,1.76E-09
+8,334,1.75E-09
+8,335,1.74E-09
+8,336,1.73E-09
+8,337,1.72E-09
+8,338,1.71E-09
+8,339,1.70E-09
+8,340,1.68E-09
+8,341,1.67E-09
+8,342,1.66E-09
+8,343,1.65E-09
+8,344,1.64E-09
+8,345,1.63E-09
+8,346,1.62E-09
+8,347,1.61E-09
+8,348,1.60E-09
+8,349,1.59E-09
+8,350,1.58E-09
+8,351,1.57E-09
+8,352,1.56E-09
+8,353,1.55E-09
+8,354,1.55E-09
+8,355,1.54E-09
+8,356,1.53E-09
+8,357,1.52E-09
+8,358,1.51E-09
+8,359,1.50E-09
+8,360,1.49E-09
+8,361,1.48E-09
+8,362,1.47E-09
+8,363,1.46E-09
+8,364,1.46E-09
+8,365,1.45E-09
+8,366,1.44E-09
+8,367,1.43E-09
+8,368,1.42E-09
+8,369,1.41E-09
+8,370,1.40E-09
+8,371,1.40E-09
+8,372,1.39E-09
+8,373,1.38E-09
+8,374,1.37E-09
+8,375,1.36E-09
+8,376,1.36E-09
+8,377,1.35E-09
+8,378,1.34E-09
+8,379,1.33E-09
+8,380,1.33E-09
+8,381,1.32E-09
+8,382,1.31E-09
+8,383,1.30E-09
+8,384,1.30E-09
+8,385,1.29E-09
+8,386,1.28E-09
+8,387,1.27E-09
+8,388,1.27E-09
+8,389,1.26E-09
+8,390,1.25E-09
+8,391,1.25E-09
+8,392,1.24E-09
+8,393,1.23E-09
+8,394,1.22E-09
+8,395,1.22E-09
+8,396,1.21E-09
+8,397,1.20E-09
+8,398,1.20E-09
+8,399,1.19E-09
+8,400,1.18E-09
+8,401,1.18E-09
+8,402,1.17E-09
+8,403,1.16E-09
+8,404,1.16E-09
+8,405,1.15E-09
+8,406,1.15E-09
+8,407,1.14E-09
+8,408,1.13E-09
+8,409,1.13E-09
+8,410,1.12E-09
+8,411,1.11E-09
+8,412,1.11E-09
+8,413,1.10E-09
+8,414,1.10E-09
+8,415,1.09E-09
+8,416,1.08E-09
+8,417,1.08E-09
+8,418,1.07E-09
+8,419,1.07E-09
+8,420,1.06E-09
+8,421,1.06E-09
+8,422,1.05E-09
+8,423,1.04E-09
+8,424,1.04E-09
+8,425,1.03E-09
+8,426,1.03E-09
+8,427,1.02E-09
+8,428,1.02E-09
+8,429,1.01E-09
+8,430,1.01E-09
+8,431,1.00E-09
+8,432,9.96E-10
+8,433,9.91E-10
+8,434,9.86E-10
+8,435,9.81E-10
+8,436,9.75E-10
+8,437,9.70E-10
+8,438,9.65E-10
+8,439,9.60E-10
+8,440,9.55E-10
+8,441,9.50E-10
+8,442,9.45E-10
+8,443,9.40E-10
+8,444,9.35E-10
+8,445,9.31E-10
+8,446,9.26E-10
+8,447,9.21E-10
+8,448,9.16E-10
+8,449,9.12E-10
+8,450,9.07E-10
+8,451,9.02E-10
+8,452,8.97E-10
+8,453,8.93E-10
+8,454,8.88E-10
+8,455,8.84E-10
+8,456,8.79E-10
+8,457,8.75E-10
+8,458,8.70E-10
+8,459,8.66E-10
+8,460,8.61E-10
+8,461,8.57E-10
+8,462,8.52E-10
+8,463,8.48E-10
+8,464,8.44E-10
+8,465,8.39E-10
+8,466,8.35E-10
+8,467,8.31E-10
+8,468,8.27E-10
+8,469,8.22E-10
+8,470,8.18E-10
+8,471,8.14E-10
+8,472,8.10E-10
+8,473,8.06E-10
+8,474,8.02E-10
+8,475,7.98E-10
+8,476,7.94E-10
+8,477,7.90E-10
+8,478,7.86E-10
+8,479,7.82E-10
+8,480,7.78E-10
+8,481,7.74E-10
+8,482,7.70E-10
+8,483,7.66E-10
+8,484,7.62E-10
+8,485,7.58E-10
+8,486,7.54E-10
+8,487,7.51E-10
+8,488,7.47E-10
+8,489,7.43E-10
+8,490,7.39E-10
+8,491,7.36E-10
+8,492,7.32E-10
+8,493,7.28E-10
+8,494,7.24E-10
+8,495,7.21E-10
+8,496,7.17E-10
+8,497,7.14E-10
+8,498,7.10E-10
+8,499,7.06E-10
+8,500,7.03E-10
+8,501,6.99E-10
+8,502,6.96E-10
+8,503,6.92E-10
+8,504,6.89E-10
+8,505,6.85E-10
+8,506,6.82E-10
+8,507,6.78E-10
+8,508,6.75E-10
+8,509,6.71E-10
+8,510,6.68E-10
+8,511,6.65E-10
+8,512,6.61E-10
+8,513,6.58E-10
+8,514,6.55E-10
+8,515,6.51E-10
+8,516,6.48E-10
+8,517,6.45E-10
+8,518,6.42E-10
+8,519,6.38E-10
+8,520,6.35E-10
+8,521,6.32E-10
+8,522,6.29E-10
+8,523,6.26E-10
+8,524,6.22E-10
+8,525,6.19E-10
+8,526,6.16E-10
+8,527,6.13E-10
+8,528,6.10E-10
+8,529,6.07E-10
+8,530,6.04E-10
+8,531,6.01E-10
+8,532,5.98E-10
+8,533,5.95E-10
+8,534,5.92E-10
+8,535,5.89E-10
+8,536,5.86E-10
+8,537,5.83E-10
+8,538,5.80E-10
+8,539,5.77E-10
+8,540,5.74E-10
+8,541,5.71E-10
+8,542,5.68E-10
+8,543,5.65E-10
+8,544,5.63E-10
+8,545,5.60E-10
+8,546,5.57E-10
+8,547,5.54E-10
+8,548,5.51E-10
+8,549,5.48E-10
+8,550,5.46E-10
+8,551,5.43E-10
+8,552,5.40E-10
+8,553,5.37E-10
+8,554,5.35E-10
+8,555,5.32E-10
+8,556,5.29E-10
+8,557,5.27E-10
+8,558,5.24E-10
+8,559,5.21E-10
+8,560,5.19E-10
+8,561,5.16E-10
+8,562,5.14E-10
+8,563,5.11E-10
+8,564,5.08E-10
+8,565,5.06E-10
+8,566,5.03E-10
+8,567,5.01E-10
+8,568,4.98E-10
+8,569,4.96E-10
+8,570,4.93E-10
+8,571,4.91E-10
+8,572,4.88E-10
+8,573,4.86E-10
+8,574,4.83E-10
+8,575,4.81E-10
+8,576,4.78E-10
+8,577,4.76E-10
+8,578,4.74E-10
+8,579,4.71E-10
+8,580,4.69E-10
+8,581,4.67E-10
+8,582,4.64E-10
+8,583,4.62E-10
+8,584,4.59E-10
+8,585,4.57E-10
+8,586,4.55E-10
+8,587,4.53E-10
+8,588,4.50E-10
+8,589,4.48E-10
+8,590,4.46E-10
+8,591,4.44E-10
+8,592,4.41E-10
+8,593,4.39E-10
+8,594,4.37E-10
+8,595,4.35E-10
+8,596,4.32E-10
+8,597,4.30E-10
+8,598,4.28E-10
+8,599,4.26E-10
+8,600,4.24E-10
+8,601,4.22E-10
+8,602,4.20E-10
+8,603,4.17E-10
+8,604,4.15E-10
+8,605,4.13E-10
+8,606,4.11E-10
+8,607,4.09E-10
+8,608,4.07E-10
+8,609,4.05E-10
+8,610,4.03E-10
+8,611,4.01E-10
+8,612,3.99E-10
+8,613,3.97E-10
+8,614,3.95E-10
+8,615,3.93E-10
+8,616,3.91E-10
+8,617,3.89E-10
+8,618,3.87E-10
+8,619,3.85E-10
+8,620,3.83E-10
+8,621,3.81E-10
+8,622,3.79E-10
+8,623,3.77E-10
+8,624,3.75E-10
+8,625,3.73E-10
+8,626,3.72E-10
+8,627,3.70E-10
+8,628,3.68E-10
+8,629,3.66E-10
+8,630,3.64E-10
+8,631,3.62E-10
+8,632,3.60E-10
+8,633,3.59E-10
+8,634,3.57E-10
+8,635,3.55E-10
+8,636,3.53E-10
+8,637,3.51E-10
+8,638,3.50E-10
+8,639,3.48E-10
+8,640,3.46E-10
+8,641,3.44E-10
+8,642,3.43E-10
+8,643,3.41E-10
+8,644,3.39E-10
+8,645,3.37E-10
+8,646,3.36E-10
+8,647,3.34E-10
+8,648,3.32E-10
+8,649,3.31E-10
+8,650,3.29E-10
+8,651,3.27E-10
+8,652,3.26E-10
+8,653,3.24E-10
+8,654,3.22E-10
+8,655,3.21E-10
+8,656,3.19E-10
+8,657,3.18E-10
+8,658,3.16E-10
+8,659,3.14E-10
+8,660,3.13E-10
+8,661,3.11E-10
+8,662,3.10E-10
+8,663,3.08E-10
+8,664,3.07E-10
+8,665,3.05E-10
+8,666,3.03E-10
+8,667,3.02E-10
+8,668,3.00E-10
+8,669,2.99E-10
+8,670,2.97E-10
+8,671,2.96E-10
+8,672,2.94E-10
+8,673,2.93E-10
+8,674,2.91E-10
+8,675,2.90E-10
+8,676,2.89E-10
+8,677,2.87E-10
+8,678,2.86E-10
+8,679,2.84E-10
+8,680,2.83E-10
+8,681,2.81E-10
+8,682,2.80E-10
+8,683,2.78E-10
+8,684,2.77E-10
+8,685,2.76E-10
+8,686,2.74E-10
+8,687,2.73E-10
+8,688,2.72E-10
+8,689,2.70E-10
+8,690,2.69E-10
+8,691,2.67E-10
+8,692,2.66E-10
+8,693,2.65E-10
+8,694,2.63E-10
+8,695,2.62E-10
+8,696,2.61E-10
+8,697,2.59E-10
+8,698,2.58E-10
+8,699,2.57E-10
+8,700,2.56E-10
+8,701,2.54E-10
+8,702,2.53E-10
+8,703,2.52E-10
+8,704,2.50E-10
+8,705,2.49E-10
+8,706,2.48E-10
+8,707,2.47E-10
+8,708,2.45E-10
+8,709,2.44E-10
+8,710,2.43E-10
+8,711,2.42E-10
+8,712,2.40E-10
+8,713,2.39E-10
+8,714,2.38E-10
+8,715,2.37E-10
+8,716,2.36E-10
+8,717,2.34E-10
+8,718,2.33E-10
+8,719,2.32E-10
+8,720,2.31E-10
+8,721,2.30E-10
+8,722,2.29E-10
+8,723,2.27E-10
+8,724,2.26E-10
+8,725,2.25E-10
+8,726,2.24E-10
+8,727,2.23E-10
+8,728,2.22E-10
+8,729,2.21E-10
+8,730,2.20E-10
+8,731,2.18E-10
+8,732,2.17E-10
+8,733,2.16E-10
+8,734,2.15E-10
+8,735,2.14E-10
+8,736,2.13E-10
+8,737,2.12E-10
+8,738,2.11E-10
+8,739,2.10E-10
+8,740,2.09E-10
+8,741,2.08E-10
+8,742,2.07E-10
+8,743,2.06E-10
+8,744,2.05E-10
+8,745,2.04E-10
+8,746,2.02E-10
+8,747,2.01E-10
+8,748,2.00E-10
+8,749,1.99E-10
+8,750,1.98E-10
+8,751,1.97E-10
+8,752,1.96E-10
+8,753,1.95E-10
+8,754,1.94E-10
+8,755,1.93E-10
+8,756,1.92E-10
+8,757,1.92E-10
+8,758,1.91E-10
+8,759,1.90E-10
+8,760,1.89E-10
+8,761,1.88E-10
+8,762,1.87E-10
+8,763,1.86E-10
+8,764,1.85E-10
+8,765,1.84E-10
+8,766,1.83E-10
+8,767,1.82E-10
+8,768,1.81E-10
+8,769,1.80E-10
+8,770,1.79E-10
+8,771,1.78E-10
+8,772,1.78E-10
+8,773,1.77E-10
+8,774,1.76E-10
+8,775,1.75E-10
+8,776,1.74E-10
+8,777,1.73E-10
+8,778,1.72E-10
+8,779,1.71E-10
+8,780,1.70E-10
+8,781,1.70E-10
+8,782,1.69E-10
+8,783,1.68E-10
+8,784,1.67E-10
+8,785,1.66E-10
+8,786,1.65E-10
+8,787,1.65E-10
+8,788,1.64E-10
+8,789,1.63E-10
+8,790,1.62E-10
+8,791,1.61E-10
+8,792,1.60E-10
+8,793,1.60E-10
+8,794,1.59E-10
+8,795,1.58E-10
+8,796,1.57E-10
+8,797,1.56E-10
+8,798,1.56E-10
+8,799,1.55E-10
+8,800,1.54E-10
+8,801,1.53E-10
+8,802,1.53E-10
+8,803,1.52E-10
+8,804,1.51E-10
+8,805,1.50E-10
+8,806,1.49E-10
+8,807,1.49E-10
+8,808,1.48E-10
+8,809,1.47E-10
+8,810,1.46E-10
+8,811,1.46E-10
+8,812,1.45E-10
+8,813,1.44E-10
+8,814,1.44E-10
+8,815,1.43E-10
+8,816,1.42E-10
+8,817,1.41E-10
+8,818,1.41E-10
+8,819,1.40E-10
+8,820,1.39E-10
+8,821,1.39E-10
+8,822,1.38E-10
+8,823,1.37E-10
+8,824,1.36E-10
+8,825,1.36E-10
+8,826,1.35E-10
+8,827,1.34E-10
+8,828,1.34E-10
+8,829,1.33E-10
+8,830,1.32E-10
+8,831,1.32E-10
+8,832,1.31E-10
+8,833,1.30E-10
+8,834,1.30E-10
+8,835,1.29E-10
+8,836,1.28E-10
+8,837,1.28E-10
+8,838,1.27E-10
+8,839,1.27E-10
+8,840,1.26E-10
+8,841,1.25E-10
+8,842,1.25E-10
+8,843,1.24E-10
+8,844,1.23E-10
+8,845,1.23E-10
+8,846,1.22E-10
+8,847,1.21E-10
+8,848,1.21E-10
+8,849,1.20E-10
+8,850,1.20E-10
+8,851,1.19E-10
+8,852,1.18E-10
+8,853,1.18E-10
+8,854,1.17E-10
+8,855,1.17E-10
+8,856,1.16E-10
+8,857,1.15E-10
+8,858,1.15E-10
+8,859,1.14E-10
+8,860,1.14E-10
+8,861,1.13E-10
+8,862,1.13E-10
+8,863,1.12E-10
+8,864,1.11E-10
+8,865,1.11E-10
+8,866,1.10E-10
+8,867,1.10E-10
+8,868,1.09E-10
+8,869,1.09E-10
+8,870,1.08E-10
+8,871,1.08E-10
+8,872,1.07E-10
+8,873,1.07E-10
+8,874,1.06E-10
+8,875,1.05E-10
+8,876,1.05E-10
+8,877,1.04E-10
+8,878,1.04E-10
+8,879,1.03E-10
+8,880,1.03E-10
+8,881,1.02E-10
+8,882,1.02E-10
+8,883,1.01E-10
+8,884,1.01E-10
+8,885,1.00E-10
+8,886,9.97E-11
+8,887,9.92E-11
+8,888,9.87E-11
+8,889,9.82E-11
+8,890,9.77E-11
+8,891,9.72E-11
+8,892,9.68E-11
+8,893,9.63E-11
+8,894,9.58E-11
+8,895,9.53E-11
+8,896,9.48E-11
+8,897,9.43E-11
+8,898,9.39E-11
+8,899,9.34E-11
+8,900,9.29E-11
+8,901,9.24E-11
+8,902,9.20E-11
+8,903,9.15E-11
+8,904,9.11E-11
+8,905,9.06E-11
+8,906,9.01E-11
+8,907,8.97E-11
+8,908,8.92E-11
+8,909,8.88E-11
+8,910,8.83E-11
+8,911,8.79E-11
+8,912,8.74E-11
+8,913,8.70E-11
+8,914,8.66E-11
+8,915,8.61E-11
+8,916,8.57E-11
+8,917,8.53E-11
+8,918,8.48E-11
+8,919,8.44E-11
+8,920,8.40E-11
+8,921,8.36E-11
+8,922,8.31E-11
+8,923,8.27E-11
+8,924,8.23E-11
+8,925,8.19E-11
+8,926,8.15E-11
+8,927,8.11E-11
+8,928,8.06E-11
+8,929,8.02E-11
+8,930,7.98E-11
+8,931,7.94E-11
+8,932,7.90E-11
+8,933,7.86E-11
+8,934,7.82E-11
+8,935,7.78E-11
+8,936,7.74E-11
+8,937,7.71E-11
+8,938,7.67E-11
+8,939,7.63E-11
+8,940,7.59E-11
+8,941,7.55E-11
+8,942,7.51E-11
+8,943,7.48E-11
+8,944,7.44E-11
+8,945,7.40E-11
+8,946,7.36E-11
+8,947,7.33E-11
+8,948,7.29E-11
+8,949,7.25E-11
+8,950,7.22E-11
+8,951,7.18E-11
+8,952,7.14E-11
+8,953,7.11E-11
+8,954,7.07E-11
+8,955,7.04E-11
+8,956,7.00E-11
+8,957,6.96E-11
+8,958,6.93E-11
+8,959,6.89E-11
+8,960,6.86E-11
+8,961,6.82E-11
+8,962,6.79E-11
+8,963,6.76E-11
+8,964,6.72E-11
+8,965,6.69E-11
+8,966,6.65E-11
+8,967,6.62E-11
+8,968,6.59E-11
+8,969,6.55E-11
+8,970,6.52E-11
+8,971,6.49E-11
+8,972,6.46E-11
+8,973,6.42E-11
+8,974,6.39E-11
+8,975,6.36E-11
+8,976,6.33E-11
+8,977,6.29E-11
+8,978,6.26E-11
+8,979,6.23E-11
+8,980,6.20E-11
+8,981,6.17E-11
+8,982,6.14E-11
+8,983,6.11E-11
+8,984,6.08E-11
+8,985,6.04E-11
+8,986,6.01E-11
+8,987,5.98E-11
+8,988,5.95E-11
+8,989,5.92E-11
+8,990,5.89E-11
+8,991,5.86E-11
+8,992,5.83E-11
+8,993,5.80E-11
+8,994,5.78E-11
+8,995,5.75E-11
+8,996,5.72E-11
+8,997,5.69E-11
+8,998,5.66E-11
+8,999,5.63E-11
+8,1000,5.60E-11
+8,1001,5.57E-11
+8,1002,5.55E-11
+8,1003,5.52E-11
+8,1004,5.49E-11
+8,1005,5.46E-11
+8,1006,5.44E-11
+8,1007,5.41E-11
+8,1008,5.38E-11
+8,1009,5.35E-11
+8,1010,5.33E-11
+8,1011,5.30E-11
+8,1012,5.27E-11
+8,1013,5.25E-11
+8,1014,5.22E-11
+8,1015,5.19E-11
+8,1016,5.17E-11
+8,1017,5.14E-11
+8,1018,5.12E-11
+8,1019,5.09E-11
+8,1020,5.06E-11
+8,1021,5.04E-11
+8,1022,5.01E-11
+8,1023,4.99E-11
+8,1024,4.96E-11
+8,1025,4.94E-11
+8,1026,4.91E-11
+8,1027,4.89E-11
+8,1028,4.86E-11
+8,1029,4.84E-11
+8,1030,4.81E-11
+8,1031,4.79E-11
+8,1032,4.77E-11
+8,1033,4.74E-11
+8,1034,4.72E-11
+8,1035,4.69E-11
+8,1036,4.67E-11
+8,1037,4.65E-11
+8,1038,4.62E-11
+8,1039,4.60E-11
+8,1040,4.58E-11
+8,1041,4.55E-11
+8,1042,4.53E-11
+8,1043,4.51E-11
+8,1044,4.48E-11
+8,1045,4.46E-11
+8,1046,4.44E-11
+8,1047,4.42E-11
+8,1048,4.40E-11
+8,1049,4.37E-11
+8,1050,4.35E-11
+8,1051,4.33E-11
+8,1052,4.31E-11
+8,1053,4.29E-11
+8,1054,4.26E-11
+8,1055,4.24E-11
+8,1056,4.22E-11
+8,1057,4.20E-11
+8,1058,4.18E-11
+8,1059,4.16E-11
+8,1060,4.14E-11
+8,1061,4.12E-11
+8,1062,4.09E-11
+8,1063,4.07E-11
+8,1064,4.05E-11
+8,1065,4.03E-11
+8,1066,4.01E-11
+8,1067,3.99E-11
+8,1068,3.97E-11
+8,1069,3.95E-11
+8,1070,3.93E-11
+8,1071,3.91E-11
+8,1072,3.89E-11
+8,1073,3.87E-11
+8,1074,3.85E-11
+8,1075,3.83E-11
+8,1076,3.81E-11
+8,1077,3.80E-11
+8,1078,3.78E-11
+8,1079,3.76E-11
+8,1080,3.74E-11
+8,1081,3.72E-11
+8,1082,3.70E-11
+8,1083,3.68E-11
+8,1084,3.66E-11
+8,1085,3.64E-11
+8,1086,3.63E-11
+8,1087,3.61E-11
+8,1088,3.59E-11
+8,1089,3.57E-11
+8,1090,3.55E-11
+8,1091,3.54E-11
+8,1092,3.52E-11
+8,1093,3.50E-11
+8,1094,3.48E-11
+8,1095,3.47E-11
+8,1096,3.45E-11
+8,1097,3.43E-11
+8,1098,3.41E-11
+8,1099,3.40E-11
+8,1100,3.38E-11
+8,1101,3.36E-11
+8,1102,3.34E-11
+8,1103,3.33E-11
+8,1104,3.31E-11
+8,1105,3.29E-11
+8,1106,3.28E-11
+8,1107,3.26E-11
+8,1108,3.24E-11
+8,1109,3.23E-11
+8,1110,3.21E-11
+8,1111,3.20E-11
+8,1112,3.18E-11
+8,1113,3.16E-11
+8,1114,3.15E-11
+8,1115,3.13E-11
+8,1116,3.12E-11
+8,1117,3.10E-11
+8,1118,3.08E-11
+8,1119,3.07E-11
+8,1120,3.05E-11
+8,1121,3.04E-11
+8,1122,3.02E-11
+8,1123,3.01E-11
+8,1124,2.99E-11
+8,1125,2.98E-11
+8,1126,2.96E-11
+8,1127,2.95E-11
+8,1128,2.93E-11
+8,1129,2.92E-11
+8,1130,2.90E-11
+8,1131,2.89E-11
+8,1132,2.87E-11
+8,1133,2.86E-11
+8,1134,2.84E-11
+8,1135,2.83E-11
+8,1136,2.82E-11
+8,1137,2.80E-11
+8,1138,2.79E-11
+8,1139,2.77E-11
+8,1140,2.76E-11
+8,1141,2.75E-11
+8,1142,2.73E-11
+8,1143,2.72E-11
+8,1144,2.70E-11
+8,1145,2.69E-11
+8,1146,2.68E-11
+8,1147,2.66E-11
+8,1148,2.65E-11
+8,1149,2.64E-11
+8,1150,2.62E-11
+8,1151,2.61E-11
+8,1152,2.60E-11
+8,1153,2.58E-11
+8,1154,2.57E-11
+8,1155,2.56E-11
+8,1156,2.55E-11
+8,1157,2.53E-11
+8,1158,2.52E-11
+8,1159,2.51E-11
+8,1160,2.49E-11
+8,1161,2.48E-11
+8,1162,2.47E-11
+8,1163,2.46E-11
+8,1164,2.44E-11
+8,1165,2.43E-11
+8,1166,2.42E-11
+8,1167,2.41E-11
+8,1168,2.40E-11
+8,1169,2.38E-11
+8,1170,2.37E-11
+8,1171,2.36E-11
+8,1172,2.35E-11
+8,1173,2.34E-11
+8,1174,2.32E-11
+8,1175,2.31E-11
+8,1176,2.30E-11
+8,1177,2.29E-11
+8,1178,2.28E-11
+8,1179,2.27E-11
+8,1180,2.25E-11
+8,1181,2.24E-11
+8,1182,2.23E-11
+8,1183,2.22E-11
+8,1184,2.21E-11
+8,1185,2.20E-11
+8,1186,2.19E-11
+8,1187,2.18E-11
+8,1188,2.16E-11
+8,1189,2.15E-11
+8,1190,2.14E-11
+8,1191,2.13E-11
+8,1192,2.12E-11
+8,1193,2.11E-11
+8,1194,2.10E-11
+8,1195,2.09E-11
+8,1196,2.08E-11
+8,1197,2.07E-11
+8,1198,2.06E-11
+8,1199,2.05E-11
+8,1200,2.04E-11
+8,1201,2.03E-11
+8,1202,2.02E-11
+8,1203,2.01E-11
+8,1204,2.00E-11
+8,1205,1.99E-11
+8,1206,1.98E-11
+8,1207,1.97E-11
+8,1208,1.96E-11
+8,1209,1.95E-11
+8,1210,1.94E-11
+8,1211,1.93E-11
+8,1212,1.92E-11
+8,1213,1.91E-11
+8,1214,1.90E-11
+8,1215,1.89E-11
+8,1216,1.88E-11
+8,1217,1.87E-11
+8,1218,1.86E-11
+8,1219,1.85E-11
+8,1220,1.84E-11
+8,1221,1.83E-11
+8,1222,1.82E-11
+8,1223,1.81E-11
+8,1224,1.80E-11
+8,1225,1.80E-11
+8,1226,1.79E-11
+8,1227,1.78E-11
+8,1228,1.77E-11
+8,1229,1.76E-11
+8,1230,1.75E-11
+8,1231,1.74E-11
+8,1232,1.73E-11
+8,1233,1.72E-11
+8,1234,1.72E-11
+8,1235,1.71E-11
+8,1236,1.70E-11
+8,1237,1.69E-11
+8,1238,1.68E-11
+8,1239,1.67E-11
+8,1240,1.66E-11
+8,1241,1.66E-11
+8,1242,1.65E-11
+8,1243,1.64E-11
+8,1244,1.63E-11
+8,1245,1.62E-11
+8,1246,1.61E-11
+8,1247,1.61E-11
+8,1248,1.60E-11
+8,1249,1.59E-11
+8,1250,1.58E-11
+8,1251,1.57E-11
+8,1252,1.57E-11
+8,1253,1.56E-11
+8,1254,1.55E-11
+8,1255,1.54E-11
+8,1256,1.53E-11
+8,1257,1.53E-11
+8,1258,1.52E-11
+8,1259,1.51E-11
+8,1260,1.50E-11
+8,1261,1.50E-11
+8,1262,1.49E-11
+8,1263,1.48E-11
+8,1264,1.47E-11
+8,1265,1.47E-11
+8,1266,1.46E-11
+8,1267,1.45E-11
+8,1268,1.44E-11
+8,1269,1.44E-11
+8,1270,1.43E-11
+8,1271,1.42E-11
+8,1272,1.42E-11
+8,1273,1.41E-11
+8,1274,1.40E-11
+8,1275,1.39E-11
+8,1276,1.39E-11
+8,1277,1.38E-11
+8,1278,1.37E-11
+8,1279,1.37E-11
+8,1280,1.36E-11
+8,1281,1.35E-11
+8,1282,1.35E-11
+8,1283,1.34E-11
+8,1284,1.33E-11
+8,1285,1.33E-11
+8,1286,1.32E-11
+8,1287,1.31E-11
+8,1288,1.31E-11
+8,1289,1.30E-11
+8,1290,1.29E-11
+8,1291,1.29E-11
+8,1292,1.28E-11
+8,1293,1.27E-11
+8,1294,1.27E-11
+8,1295,1.26E-11
+8,1296,1.25E-11
+8,1297,1.25E-11
+8,1298,1.24E-11
+8,1299,1.23E-11
+8,1300,1.23E-11
+8,1301,1.22E-11
+8,1302,1.22E-11
+8,1303,1.21E-11
+8,1304,1.20E-11
+8,1305,1.20E-11
+8,1306,1.19E-11
+8,1307,1.19E-11
+8,1308,1.18E-11
+8,1309,1.17E-11
+8,1310,1.17E-11
+8,1311,1.16E-11
+8,1312,1.16E-11
+8,1313,1.15E-11
+8,1314,1.14E-11
+8,1315,1.14E-11
+8,1316,1.13E-11
+8,1317,1.13E-11
+8,1318,1.12E-11
+8,1319,1.12E-11
+8,1320,1.11E-11
+8,1321,1.10E-11
+8,1322,1.10E-11
+8,1323,1.09E-11
+8,1324,1.09E-11
+8,1325,1.08E-11
+8,1326,1.08E-11
+8,1327,1.07E-11
+8,1328,1.07E-11
+8,1329,1.06E-11
+8,1330,1.06E-11
+8,1331,1.05E-11
+8,1332,1.04E-11
+8,1333,1.04E-11
+8,1334,1.03E-11
+8,1335,1.03E-11
+8,1336,1.02E-11
+8,1337,1.02E-11
+8,1338,1.01E-11
+8,1339,1.01E-11
+8,1340,1.00E-11
+8,1341,9.98E-12
+8,1342,9.93E-12
+8,1343,9.88E-12
+8,1344,9.83E-12
+8,1345,9.78E-12
+8,1346,9.73E-12
+8,1347,9.69E-12
+8,1348,9.64E-12
+8,1349,9.59E-12
+8,1350,9.54E-12
+8,1351,9.49E-12
+8,1352,9.44E-12
+8,1353,9.40E-12
+8,1354,9.35E-12
+8,1355,9.30E-12
+8,1356,9.25E-12
+8,1357,9.21E-12
+8,1358,9.16E-12
+8,1359,9.12E-12
+8,1360,9.07E-12
+8,1361,9.02E-12
+8,1362,8.98E-12
+8,1363,8.93E-12
+8,1364,8.89E-12
+8,1365,8.84E-12
+8,1366,8.80E-12
+8,1367,8.75E-12
+8,1368,8.71E-12
+8,1369,8.67E-12
+8,1370,8.62E-12
+8,1371,8.58E-12
+8,1372,8.54E-12
+8,1373,8.49E-12
+8,1374,8.45E-12
+8,1375,8.41E-12
+8,1376,8.36E-12
+8,1377,8.32E-12
+8,1378,8.28E-12
+8,1379,8.24E-12
+8,1380,8.20E-12
+8,1381,8.16E-12
+8,1382,8.11E-12
+8,1383,8.07E-12
+8,1384,8.03E-12
+8,1385,7.99E-12
+8,1386,7.95E-12
+8,1387,7.91E-12
+8,1388,7.87E-12
+8,1389,7.83E-12
+8,1390,7.79E-12
+8,1391,7.75E-12
+8,1392,7.71E-12
+8,1393,7.67E-12
+8,1394,7.64E-12
+8,1395,7.60E-12
+8,1396,7.56E-12
+8,1397,7.52E-12
+8,1398,7.48E-12
+8,1399,7.45E-12
+8,1400,7.41E-12
+8,1401,7.37E-12
+8,1402,7.33E-12
+8,1403,7.30E-12
+8,1404,7.26E-12
+8,1405,7.22E-12
+8,1406,7.19E-12
+8,1407,7.15E-12
+8,1408,7.11E-12
+8,1409,7.08E-12
+8,1410,7.04E-12
+8,1411,7.01E-12
+8,1412,6.97E-12
+8,1413,6.94E-12
+8,1414,6.90E-12
+8,1415,6.87E-12
+8,1416,6.83E-12
+8,1417,6.80E-12
+8,1418,6.76E-12
+8,1419,6.73E-12
+8,1420,6.70E-12
+8,1421,6.66E-12
+8,1422,6.63E-12
+8,1423,6.59E-12
+8,1424,6.56E-12
+8,1425,6.53E-12
+8,1426,6.50E-12
+8,1427,6.46E-12
+8,1428,6.43E-12
+8,1429,6.40E-12
+8,1430,6.36E-12
+8,1431,6.33E-12
+8,1432,6.30E-12
+8,1433,6.27E-12
+8,1434,6.24E-12
+8,1435,6.21E-12
+8,1436,6.17E-12
+8,1437,6.14E-12
+8,1438,6.11E-12
+8,1439,6.08E-12
+8,1440,6.05E-12
+8,1441,6.02E-12
+8,1442,5.99E-12
+8,1443,5.96E-12
+8,1444,5.93E-12
+8,1445,5.90E-12
+8,1446,5.87E-12
+8,1447,5.84E-12
+8,1448,5.81E-12
+8,1449,5.78E-12
+8,1450,5.75E-12
+8,1451,5.72E-12
+8,1452,5.69E-12
+8,1453,5.67E-12
+8,1454,5.64E-12
+8,1455,5.61E-12
+8,1456,5.58E-12
+8,1457,5.55E-12
+8,1458,5.52E-12
+8,1459,5.50E-12
+8,1460,5.47E-12
+8,1461,5.44E-12
+8,1462,5.41E-12
+8,1463,5.39E-12
+8,1464,5.36E-12
+8,1465,5.33E-12
+8,1466,5.31E-12
+8,1467,5.28E-12
+8,1468,5.25E-12
+8,1469,5.23E-12
+8,1470,5.20E-12
+8,1471,5.17E-12
+8,1472,5.15E-12
+8,1473,5.12E-12
+8,1474,5.09E-12
+8,1475,5.07E-12
+8,1476,5.04E-12
+8,1477,5.02E-12
+8,1478,4.99E-12
+8,1479,4.97E-12
+8,1480,4.94E-12
+8,1481,4.92E-12
+8,1482,4.89E-12
+8,1483,4.87E-12
+8,1484,4.84E-12
+8,1485,4.82E-12
+8,1486,4.79E-12
+8,1487,4.77E-12
+8,1488,4.75E-12
+8,1489,4.72E-12
+8,1490,4.70E-12
+8,1491,4.68E-12
+8,1492,4.65E-12
+8,1493,4.63E-12
+8,1494,4.60E-12
+8,1495,4.58E-12
+8,1496,4.56E-12
+8,1497,4.54E-12
+8,1498,4.51E-12
+8,1499,4.49E-12
+8,1500,4.47E-12
+8,1501,4.44E-12
+8,1502,4.42E-12
+8,1503,4.40E-12
+8,1504,4.38E-12
+8,1505,4.36E-12
+8,1506,4.33E-12
+8,1507,4.31E-12
+8,1508,4.29E-12
+8,1509,4.27E-12
+8,1510,4.25E-12
+8,1511,4.23E-12
+8,1512,4.20E-12
+8,1513,4.18E-12
+8,1514,4.16E-12
+8,1515,4.14E-12
+8,1516,4.12E-12
+8,1517,4.10E-12
+8,1518,4.08E-12
+8,1519,4.06E-12
+8,1520,4.04E-12
+8,1521,4.02E-12
+8,1522,4.00E-12
+8,1523,3.98E-12
+8,1524,3.96E-12
+8,1525,3.94E-12
+8,1526,3.92E-12
+8,1527,3.90E-12
+8,1528,3.88E-12
+8,1529,3.86E-12
+8,1530,3.84E-12
+8,1531,3.82E-12
+8,1532,3.80E-12
+8,1533,3.78E-12
+8,1534,3.76E-12
+8,1535,3.74E-12
+8,1536,3.72E-12
+8,1537,3.70E-12
+8,1538,3.69E-12
+8,1539,3.67E-12
+8,1540,3.65E-12
+8,1541,3.63E-12
+8,1542,3.61E-12
+8,1543,3.59E-12
+8,1544,3.58E-12
+8,1545,3.56E-12
+8,1546,3.54E-12
+8,1547,3.52E-12
+8,1548,3.50E-12
+8,1549,3.49E-12
+8,1550,3.47E-12
+8,1551,3.45E-12
+8,1552,3.43E-12
+8,1553,3.42E-12
+8,1554,3.40E-12
+8,1555,3.38E-12
+8,1556,3.37E-12
+8,1557,3.35E-12
+8,1558,3.33E-12
+8,1559,3.31E-12
+8,1560,3.30E-12
+8,1561,3.28E-12
+8,1562,3.26E-12
+8,1563,3.25E-12
+8,1564,3.23E-12
+8,1565,3.22E-12
+8,1566,3.20E-12
+8,1567,3.18E-12
+8,1568,3.17E-12
+8,1569,3.15E-12
+8,1570,3.14E-12
+8,1571,3.12E-12
+8,1572,3.10E-12
+8,1573,3.09E-12
+8,1574,3.07E-12
+8,1575,3.06E-12
+8,1576,3.04E-12
+8,1577,3.03E-12
+8,1578,3.01E-12
+8,1579,3.00E-12
+8,1580,2.98E-12
+8,1581,2.97E-12
+8,1582,2.95E-12
+8,1583,2.94E-12
+8,1584,2.92E-12
+8,1585,2.91E-12
+8,1586,2.89E-12
+8,1587,2.88E-12
+8,1588,2.86E-12
+8,1589,2.85E-12
+8,1590,2.83E-12
+8,1591,2.82E-12
+8,1592,2.80E-12
+8,1593,2.79E-12
+8,1594,2.78E-12
+8,1595,2.76E-12
+8,1596,2.75E-12
+8,1597,2.73E-12
+8,1598,2.72E-12
+8,1599,2.71E-12
+8,1600,2.69E-12
+8,1601,2.68E-12
+8,1602,2.67E-12
+8,1603,2.65E-12
+8,1604,2.64E-12
+8,1605,2.63E-12
+8,1606,2.61E-12
+8,1607,2.60E-12
+8,1608,2.59E-12
+8,1609,2.57E-12
+8,1610,2.56E-12
+8,1611,2.55E-12
+8,1612,2.54E-12
+8,1613,2.52E-12
+8,1614,2.51E-12
+8,1615,2.50E-12
+8,1616,2.48E-12
+8,1617,2.47E-12
+8,1618,2.46E-12
+8,1619,2.45E-12
+8,1620,2.43E-12
+8,1621,2.42E-12
+8,1622,2.41E-12
+8,1623,2.40E-12
+8,1624,2.39E-12
+8,1625,2.37E-12
+8,1626,2.36E-12
+8,1627,2.35E-12
+8,1628,2.34E-12
+8,1629,2.33E-12
+8,1630,2.31E-12
+8,1631,2.30E-12
+8,1632,2.29E-12
+8,1633,2.28E-12
+8,1634,2.27E-12
+8,1635,2.26E-12
+8,1636,2.25E-12
+8,1637,2.23E-12
+8,1638,2.22E-12
+8,1639,2.21E-12
+8,1640,2.20E-12
+8,1641,2.19E-12
+8,1642,2.18E-12
+8,1643,2.17E-12
+8,1644,2.16E-12
+8,1645,2.15E-12
+8,1646,2.13E-12
+8,1647,2.12E-12
+8,1648,2.11E-12
+8,1649,2.10E-12
+8,1650,2.09E-12
+8,1651,2.08E-12
+8,1652,2.07E-12
+8,1653,2.06E-12
+8,1654,2.05E-12
+8,1655,2.04E-12
+8,1656,2.03E-12
+8,1657,2.02E-12
+8,1658,2.01E-12
+8,1659,2.00E-12
+8,1660,1.99E-12
+8,1661,1.98E-12
+8,1662,1.97E-12
+8,1663,1.96E-12
+8,1664,1.95E-12
+8,1665,1.94E-12
+8,1666,1.93E-12
+8,1667,1.92E-12
+8,1668,1.91E-12
+8,1669,1.90E-12
+8,1670,1.89E-12
+8,1671,1.88E-12
+8,1672,1.87E-12
+8,1673,1.86E-12
+8,1674,1.85E-12
+8,1675,1.84E-12
+8,1676,1.83E-12
+8,1677,1.82E-12
+8,1678,1.82E-12
+8,1679,1.81E-12
+8,1680,1.80E-12
+8,1681,1.79E-12
+8,1682,1.78E-12
+8,1683,1.77E-12
+8,1684,1.76E-12
+8,1685,1.75E-12
+8,1686,1.74E-12
+8,1687,1.73E-12
+8,1688,1.73E-12
+8,1689,1.72E-12
+8,1690,1.71E-12
+8,1691,1.70E-12
+8,1692,1.69E-12
+8,1693,1.68E-12
+8,1694,1.67E-12
+8,1695,1.67E-12
+8,1696,1.66E-12
+8,1697,1.65E-12
+8,1698,1.64E-12
+8,1699,1.63E-12
+8,1700,1.62E-12
+8,1701,1.62E-12
+8,1702,1.61E-12
+8,1703,1.60E-12
+8,1704,1.59E-12
+8,1705,1.58E-12
+8,1706,1.58E-12
+8,1707,1.57E-12
+8,1708,1.56E-12
+8,1709,1.55E-12
+8,1710,1.54E-12
+8,1711,1.54E-12
+8,1712,1.53E-12
+8,1713,1.52E-12
+8,1714,1.51E-12
+8,1715,1.51E-12
+8,1716,1.50E-12
+8,1717,1.49E-12
+8,1718,1.48E-12
+8,1719,1.48E-12
+8,1720,1.47E-12
+8,1721,1.46E-12
+8,1722,1.45E-12
+8,1723,1.45E-12
+8,1724,1.44E-12
+8,1725,1.43E-12
+8,1726,1.42E-12
+8,1727,1.42E-12
+8,1728,1.41E-12
+8,1729,1.40E-12
+8,1730,1.40E-12
+8,1731,1.39E-12
+8,1732,1.38E-12
+8,1733,1.37E-12
+8,1734,1.37E-12
+8,1735,1.36E-12
+8,1736,1.35E-12
+8,1737,1.35E-12
+8,1738,1.34E-12
+8,1739,1.33E-12
+8,1740,1.33E-12
+8,1741,1.32E-12
+8,1742,1.31E-12
+8,1743,1.31E-12
+8,1744,1.30E-12
+8,1745,1.29E-12
+8,1746,1.29E-12
+8,1747,1.28E-12
+8,1748,1.27E-12
+8,1749,1.27E-12
+8,1750,1.26E-12
+8,1751,1.25E-12
+8,1752,1.25E-12
+8,1753,1.24E-12
+8,1754,1.24E-12
+8,1755,1.23E-12
+8,1756,1.22E-12
+8,1757,1.22E-12
+8,1758,1.21E-12
+8,1759,1.21E-12
+8,1760,1.20E-12
+8,1761,1.19E-12
+8,1762,1.19E-12
+8,1763,1.18E-12
+8,1764,1.18E-12
+8,1765,1.17E-12
+8,1766,1.16E-12
+8,1767,1.16E-12
+8,1768,1.15E-12
+8,1769,1.15E-12
+8,1770,1.14E-12
+8,1771,1.13E-12
+8,1772,1.13E-12
+8,1773,1.12E-12
+8,1774,1.12E-12
+8,1775,1.11E-12
+8,1776,1.11E-12
+8,1777,1.10E-12
+8,1778,1.09E-12
+8,1779,1.09E-12
+8,1780,1.08E-12
+8,1781,1.08E-12
+8,1782,1.07E-12
+8,1783,1.07E-12
+8,1784,1.06E-12
+8,1785,1.06E-12
+8,1786,1.05E-12
+8,1787,1.05E-12
+8,1788,1.04E-12
+8,1789,1.04E-12
+8,1790,1.03E-12
+8,1791,1.03E-12
+8,1792,1.02E-12
+8,1793,1.01E-12
+8,1794,1.01E-12
+8,1795,1.00E-12
+8,1796,9.99E-13
+8,1797,9.94E-13
+8,1798,9.89E-13
+8,1799,9.84E-13
+8,1800,9.79E-13
+8,1801,9.75E-13
+8,1802,9.70E-13
+8,1803,9.65E-13
+8,1804,9.60E-13
+8,1805,9.55E-13
+8,1806,9.50E-13
+8,1807,9.45E-13
+8,1808,9.41E-13
+8,1809,9.36E-13
+8,1810,9.31E-13
+8,1811,9.26E-13
+8,1812,9.22E-13
+8,1813,9.17E-13
+8,1814,9.12E-13
+8,1815,9.08E-13
+8,1816,9.03E-13
+8,1817,8.99E-13
+8,1818,8.94E-13
+8,1819,8.90E-13
+8,1820,8.85E-13
+8,1821,8.81E-13
+8,1822,8.76E-13
+8,1823,8.72E-13
+8,1824,8.67E-13
+8,1825,8.63E-13
+8,1826,8.59E-13
+8,1827,8.54E-13
+8,1828,8.50E-13
+8,1829,8.46E-13
+8,1830,8.42E-13
+8,1831,8.37E-13
+8,1832,8.33E-13
+8,1833,8.29E-13
+8,1834,8.25E-13
+8,1835,8.21E-13
+8,1836,8.16E-13
+8,1837,8.12E-13
+8,1838,8.08E-13
+8,1839,8.04E-13
+8,1840,8.00E-13
+8,1841,7.96E-13
+8,1842,7.92E-13
+8,1843,7.88E-13
+8,1844,7.84E-13
+8,1845,7.80E-13
+8,1846,7.76E-13
+8,1847,7.72E-13
+8,1848,7.68E-13
+8,1849,7.64E-13
+8,1850,7.61E-13
+8,1851,7.57E-13
+8,1852,7.53E-13
+8,1853,7.49E-13
+8,1854,7.45E-13
+8,1855,7.42E-13
+8,1856,7.38E-13
+8,1857,7.34E-13
+8,1858,7.30E-13
+8,1859,7.27E-13
+8,1860,7.23E-13
+8,1861,7.19E-13
+8,1862,7.16E-13
+8,1863,7.12E-13
+8,1864,7.09E-13
+8,1865,7.05E-13
+8,1866,7.01E-13
+8,1867,6.98E-13
+8,1868,6.94E-13
+8,1869,6.91E-13
+8,1870,6.87E-13
+8,1871,6.84E-13
+8,1872,6.80E-13
+8,1873,6.77E-13
+8,1874,6.74E-13
+8,1875,6.70E-13
+8,1876,6.67E-13
+8,1877,6.63E-13
+8,1878,6.60E-13
+8,1879,6.57E-13
+8,1880,6.53E-13
+8,1881,6.50E-13
+8,1882,6.47E-13
+8,1883,6.44E-13
+8,1884,6.40E-13
+8,1885,6.37E-13
+8,1886,6.34E-13
+8,1887,6.31E-13
+8,1888,6.28E-13
+8,1889,6.24E-13
+8,1890,6.21E-13
+8,1891,6.18E-13
+8,1892,6.15E-13
+8,1893,6.12E-13
+8,1894,6.09E-13
+8,1895,6.06E-13
+8,1896,6.03E-13
+8,1897,6.00E-13
+8,1898,5.97E-13
+8,1899,5.94E-13
+8,1900,5.91E-13
+8,1901,5.88E-13
+8,1902,5.85E-13
+8,1903,5.82E-13
+8,1904,5.79E-13
+8,1905,5.76E-13
+8,1906,5.73E-13
+8,1907,5.70E-13
+8,1908,5.67E-13
+8,1909,5.64E-13
+8,1910,5.61E-13
+8,1911,5.59E-13
+8,1912,5.56E-13
+8,1913,5.53E-13
+8,1914,5.50E-13
+8,1915,5.47E-13
+8,1916,5.45E-13
+8,1917,5.42E-13
+8,1918,5.39E-13
+8,1919,5.36E-13
+8,1920,5.34E-13
+8,1921,5.31E-13
+8,1922,5.28E-13
+8,1923,5.26E-13
+8,1924,5.23E-13
+8,1925,5.20E-13
+8,1926,5.18E-13
+8,1927,5.15E-13
+8,1928,5.13E-13
+8,1929,5.10E-13
+8,1930,5.07E-13
+8,1931,5.05E-13
+8,1932,5.02E-13
+8,1933,5.00E-13
+8,1934,4.97E-13
+8,1935,4.95E-13
+8,1936,4.92E-13
+8,1937,4.90E-13
+8,1938,4.87E-13
+8,1939,4.85E-13
+8,1940,4.82E-13
+8,1941,4.80E-13
+8,1942,4.78E-13
+8,1943,4.75E-13
+8,1944,4.73E-13
+8,1945,4.70E-13
+8,1946,4.68E-13
+8,1947,4.66E-13
+8,1948,4.63E-13
+8,1949,4.61E-13
+8,1950,4.59E-13
+8,1951,4.56E-13
+8,1952,4.54E-13
+8,1953,4.52E-13
+8,1954,4.49E-13
+8,1955,4.47E-13
+8,1956,4.45E-13
+8,1957,4.43E-13
+8,1958,4.40E-13
+8,1959,4.38E-13
+8,1960,4.36E-13
+8,1961,4.34E-13
+8,1962,4.32E-13
+8,1963,4.29E-13
+8,1964,4.27E-13
+8,1965,4.25E-13
+8,1966,4.23E-13
+8,1967,4.21E-13
+8,1968,4.19E-13
+8,1969,4.17E-13
+8,1970,4.15E-13
+8,1971,4.12E-13
+8,1972,4.10E-13
+8,1973,4.08E-13
+8,1974,4.06E-13
+8,1975,4.04E-13
+8,1976,4.02E-13
+8,1977,4.00E-13
+8,1978,3.98E-13
+8,1979,3.96E-13
+8,1980,3.94E-13
+8,1981,3.92E-13
+8,1982,3.90E-13
+8,1983,3.88E-13
+8,1984,3.86E-13
+8,1985,3.84E-13
+8,1986,3.82E-13
+8,1987,3.80E-13
+8,1988,3.78E-13
+8,1989,3.77E-13
+8,1990,3.75E-13
+8,1991,3.73E-13
+8,1992,3.71E-13
+8,1993,3.69E-13
+8,1994,3.67E-13
+8,1995,3.65E-13
+8,1996,3.63E-13
+8,1997,3.62E-13
+8,1998,3.60E-13
+8,1999,3.58E-13
+8,2000,3.56E-13
+9,1,1.41E-07
+9,2,1.39E-07
+9,3,1.37E-07
+9,4,1.35E-07
+9,5,1.33E-07
+9,6,1.31E-07
+9,7,1.29E-07
+9,8,1.27E-07
+9,9,1.25E-07
+9,10,1.23E-07
+9,11,1.21E-07
+9,12,1.19E-07
+9,13,1.17E-07
+9,14,1.16E-07
+9,15,1.14E-07
+9,16,1.12E-07
+9,17,1.10E-07
+9,18,1.09E-07
+9,19,1.07E-07
+9,20,1.05E-07
+9,21,1.04E-07
+9,22,1.02E-07
+9,23,1.00E-07
+9,24,9.90E-08
+9,25,9.74E-08
+9,26,9.59E-08
+9,27,9.45E-08
+9,28,9.30E-08
+9,29,9.16E-08
+9,30,9.02E-08
+9,31,8.88E-08
+9,32,8.75E-08
+9,33,8.62E-08
+9,34,8.49E-08
+9,35,8.36E-08
+9,36,8.23E-08
+9,37,8.11E-08
+9,38,7.99E-08
+9,39,7.87E-08
+9,40,7.75E-08
+9,41,7.63E-08
+9,42,7.52E-08
+9,43,7.41E-08
+9,44,7.30E-08
+9,45,7.19E-08
+9,46,7.08E-08
+9,47,6.98E-08
+9,48,6.88E-08
+9,49,6.78E-08
+9,50,6.68E-08
+9,51,6.58E-08
+9,52,6.48E-08
+9,53,6.39E-08
+9,54,6.30E-08
+9,55,6.21E-08
+9,56,6.12E-08
+9,57,6.03E-08
+9,58,5.94E-08
+9,59,5.86E-08
+9,60,5.78E-08
+9,61,5.69E-08
+9,62,5.61E-08
+9,63,5.54E-08
+9,64,5.46E-08
+9,65,5.38E-08
+9,66,5.31E-08
+9,67,5.23E-08
+9,68,5.16E-08
+9,69,5.09E-08
+9,70,5.02E-08
+9,71,4.95E-08
+9,72,4.88E-08
+9,73,4.82E-08
+9,74,4.75E-08
+9,75,4.69E-08
+9,76,4.62E-08
+9,77,4.56E-08
+9,78,4.50E-08
+9,79,4.44E-08
+9,80,4.38E-08
+9,81,4.32E-08
+9,82,4.26E-08
+9,83,4.21E-08
+9,84,4.15E-08
+9,85,4.10E-08
+9,86,4.04E-08
+9,87,3.99E-08
+9,88,3.94E-08
+9,89,3.89E-08
+9,90,3.83E-08
+9,91,3.79E-08
+9,92,3.74E-08
+9,93,3.69E-08
+9,94,3.64E-08
+9,95,3.59E-08
+9,96,3.55E-08
+9,97,3.50E-08
+9,98,3.46E-08
+9,99,3.41E-08
+9,100,3.37E-08
+9,101,3.33E-08
+9,102,3.29E-08
+9,103,3.25E-08
+9,104,3.21E-08
+9,105,3.17E-08
+9,106,3.13E-08
+9,107,3.09E-08
+9,108,3.05E-08
+9,109,3.01E-08
+9,110,2.98E-08
+9,111,2.94E-08
+9,112,2.90E-08
+9,113,2.87E-08
+9,114,2.83E-08
+9,115,2.80E-08
+9,116,2.77E-08
+9,117,2.73E-08
+9,118,2.70E-08
+9,119,2.67E-08
+9,120,2.64E-08
+9,121,2.61E-08
+9,122,2.57E-08
+9,123,2.54E-08
+9,124,2.51E-08
+9,125,2.49E-08
+9,126,2.46E-08
+9,127,2.43E-08
+9,128,2.40E-08
+9,129,2.37E-08
+9,130,2.34E-08
+9,131,2.32E-08
+9,132,2.29E-08
+9,133,2.26E-08
+9,134,2.24E-08
+9,135,2.21E-08
+9,136,2.19E-08
+9,137,2.16E-08
+9,138,2.14E-08
+9,139,2.12E-08
+9,140,2.09E-08
+9,141,2.07E-08
+9,142,2.05E-08
+9,143,2.02E-08
+9,144,2.00E-08
+9,145,1.98E-08
+9,146,1.96E-08
+9,147,1.94E-08
+9,148,1.91E-08
+9,149,1.89E-08
+9,150,1.87E-08
+9,151,1.85E-08
+9,152,1.83E-08
+9,153,1.81E-08
+9,154,1.79E-08
+9,155,1.77E-08
+9,156,1.76E-08
+9,157,1.74E-08
+9,158,1.72E-08
+9,159,1.70E-08
+9,160,1.68E-08
+9,161,1.66E-08
+9,162,1.65E-08
+9,163,1.63E-08
+9,164,1.61E-08
+9,165,1.60E-08
+9,166,1.58E-08
+9,167,1.56E-08
+9,168,1.55E-08
+9,169,1.53E-08
+9,170,1.52E-08
+9,171,1.50E-08
+9,172,1.49E-08
+9,173,1.47E-08
+9,174,1.46E-08
+9,175,1.44E-08
+9,176,1.43E-08
+9,177,1.41E-08
+9,178,1.40E-08
+9,179,1.38E-08
+9,180,1.37E-08
+9,181,1.36E-08
+9,182,1.34E-08
+9,183,1.33E-08
+9,184,1.32E-08
+9,185,1.30E-08
+9,186,1.29E-08
+9,187,1.28E-08
+9,188,1.27E-08
+9,189,1.26E-08
+9,190,1.24E-08
+9,191,1.23E-08
+9,192,1.22E-08
+9,193,1.21E-08
+9,194,1.20E-08
+9,195,1.19E-08
+9,196,1.17E-08
+9,197,1.16E-08
+9,198,1.15E-08
+9,199,1.14E-08
+9,200,1.13E-08
+9,201,1.12E-08
+9,202,1.11E-08
+9,203,1.10E-08
+9,204,1.09E-08
+9,205,1.08E-08
+9,206,1.07E-08
+9,207,1.06E-08
+9,208,1.05E-08
+9,209,1.04E-08
+9,210,1.03E-08
+9,211,1.02E-08
+9,212,1.01E-08
+9,213,1.00E-08
+9,214,9.95E-09
+9,215,9.86E-09
+9,216,9.77E-09
+9,217,9.69E-09
+9,218,9.60E-09
+9,219,9.52E-09
+9,220,9.43E-09
+9,221,9.35E-09
+9,222,9.27E-09
+9,223,9.19E-09
+9,224,9.11E-09
+9,225,9.03E-09
+9,226,8.95E-09
+9,227,8.87E-09
+9,228,8.80E-09
+9,229,8.72E-09
+9,230,8.65E-09
+9,231,8.58E-09
+9,232,8.50E-09
+9,233,8.43E-09
+9,234,8.36E-09
+9,235,8.29E-09
+9,236,8.22E-09
+9,237,8.15E-09
+9,238,8.09E-09
+9,239,8.02E-09
+9,240,7.95E-09
+9,241,7.89E-09
+9,242,7.82E-09
+9,243,7.76E-09
+9,244,7.70E-09
+9,245,7.63E-09
+9,246,7.57E-09
+9,247,7.51E-09
+9,248,7.45E-09
+9,249,7.39E-09
+9,250,7.33E-09
+9,251,7.27E-09
+9,252,7.21E-09
+9,253,7.16E-09
+9,254,7.10E-09
+9,255,7.04E-09
+9,256,6.99E-09
+9,257,6.93E-09
+9,258,6.88E-09
+9,259,6.83E-09
+9,260,6.77E-09
+9,261,6.72E-09
+9,262,6.67E-09
+9,263,6.62E-09
+9,264,6.57E-09
+9,265,6.52E-09
+9,266,6.47E-09
+9,267,6.42E-09
+9,268,6.37E-09
+9,269,6.32E-09
+9,270,6.27E-09
+9,271,6.22E-09
+9,272,6.18E-09
+9,273,6.13E-09
+9,274,6.09E-09
+9,275,6.04E-09
+9,276,5.99E-09
+9,277,5.95E-09
+9,278,5.91E-09
+9,279,5.86E-09
+9,280,5.82E-09
+9,281,5.78E-09
+9,282,5.74E-09
+9,283,5.69E-09
+9,284,5.65E-09
+9,285,5.61E-09
+9,286,5.57E-09
+9,287,5.53E-09
+9,288,5.49E-09
+9,289,5.45E-09
+9,290,5.41E-09
+9,291,5.37E-09
+9,292,5.34E-09
+9,293,5.30E-09
+9,294,5.26E-09
+9,295,5.22E-09
+9,296,5.19E-09
+9,297,5.15E-09
+9,298,5.11E-09
+9,299,5.08E-09
+9,300,5.04E-09
+9,301,5.01E-09
+9,302,4.97E-09
+9,303,4.94E-09
+9,304,4.91E-09
+9,305,4.87E-09
+9,306,4.84E-09
+9,307,4.81E-09
+9,308,4.77E-09
+9,309,4.74E-09
+9,310,4.71E-09
+9,311,4.68E-09
+9,312,4.65E-09
+9,313,4.61E-09
+9,314,4.58E-09
+9,315,4.55E-09
+9,316,4.52E-09
+9,317,4.49E-09
+9,318,4.46E-09
+9,319,4.43E-09
+9,320,4.40E-09
+9,321,4.38E-09
+9,322,4.35E-09
+9,323,4.32E-09
+9,324,4.29E-09
+9,325,4.26E-09
+9,326,4.23E-09
+9,327,4.21E-09
+9,328,4.18E-09
+9,329,4.15E-09
+9,330,4.13E-09
+9,331,4.10E-09
+9,332,4.07E-09
+9,333,4.05E-09
+9,334,4.02E-09
+9,335,4.00E-09
+9,336,3.97E-09
+9,337,3.95E-09
+9,338,3.92E-09
+9,339,3.90E-09
+9,340,3.87E-09
+9,341,3.85E-09
+9,342,3.82E-09
+9,343,3.80E-09
+9,344,3.78E-09
+9,345,3.75E-09
+9,346,3.73E-09
+9,347,3.71E-09
+9,348,3.68E-09
+9,349,3.66E-09
+9,350,3.64E-09
+9,351,3.62E-09
+9,352,3.60E-09
+9,353,3.57E-09
+9,354,3.55E-09
+9,355,3.53E-09
+9,356,3.51E-09
+9,357,3.49E-09
+9,358,3.47E-09
+9,359,3.45E-09
+9,360,3.43E-09
+9,361,3.41E-09
+9,362,3.38E-09
+9,363,3.36E-09
+9,364,3.34E-09
+9,365,3.33E-09
+9,366,3.31E-09
+9,367,3.29E-09
+9,368,3.27E-09
+9,369,3.25E-09
+9,370,3.23E-09
+9,371,3.21E-09
+9,372,3.19E-09
+9,373,3.17E-09
+9,374,3.15E-09
+9,375,3.14E-09
+9,376,3.12E-09
+9,377,3.10E-09
+9,378,3.08E-09
+9,379,3.06E-09
+9,380,3.05E-09
+9,381,3.03E-09
+9,382,3.01E-09
+9,383,2.99E-09
+9,384,2.98E-09
+9,385,2.96E-09
+9,386,2.94E-09
+9,387,2.93E-09
+9,388,2.91E-09
+9,389,2.89E-09
+9,390,2.88E-09
+9,391,2.86E-09
+9,392,2.85E-09
+9,393,2.83E-09
+9,394,2.81E-09
+9,395,2.80E-09
+9,396,2.78E-09
+9,397,2.77E-09
+9,398,2.75E-09
+9,399,2.74E-09
+9,400,2.72E-09
+9,401,2.71E-09
+9,402,2.69E-09
+9,403,2.68E-09
+9,404,2.66E-09
+9,405,2.65E-09
+9,406,2.63E-09
+9,407,2.62E-09
+9,408,2.60E-09
+9,409,2.59E-09
+9,410,2.58E-09
+9,411,2.56E-09
+9,412,2.55E-09
+9,413,2.53E-09
+9,414,2.52E-09
+9,415,2.51E-09
+9,416,2.49E-09
+9,417,2.48E-09
+9,418,2.47E-09
+9,419,2.45E-09
+9,420,2.44E-09
+9,421,2.43E-09
+9,422,2.41E-09
+9,423,2.40E-09
+9,424,2.39E-09
+9,425,2.38E-09
+9,426,2.36E-09
+9,427,2.35E-09
+9,428,2.34E-09
+9,429,2.33E-09
+9,430,2.31E-09
+9,431,2.30E-09
+9,432,2.29E-09
+9,433,2.28E-09
+9,434,2.27E-09
+9,435,2.25E-09
+9,436,2.24E-09
+9,437,2.23E-09
+9,438,2.22E-09
+9,439,2.21E-09
+9,440,2.20E-09
+9,441,2.18E-09
+9,442,2.17E-09
+9,443,2.16E-09
+9,444,2.15E-09
+9,445,2.14E-09
+9,446,2.13E-09
+9,447,2.12E-09
+9,448,2.11E-09
+9,449,2.10E-09
+9,450,2.08E-09
+9,451,2.07E-09
+9,452,2.06E-09
+9,453,2.05E-09
+9,454,2.04E-09
+9,455,2.03E-09
+9,456,2.02E-09
+9,457,2.01E-09
+9,458,2.00E-09
+9,459,1.99E-09
+9,460,1.98E-09
+9,461,1.97E-09
+9,462,1.96E-09
+9,463,1.95E-09
+9,464,1.94E-09
+9,465,1.93E-09
+9,466,1.92E-09
+9,467,1.91E-09
+9,468,1.90E-09
+9,469,1.89E-09
+9,470,1.88E-09
+9,471,1.87E-09
+9,472,1.86E-09
+9,473,1.85E-09
+9,474,1.84E-09
+9,475,1.83E-09
+9,476,1.82E-09
+9,477,1.82E-09
+9,478,1.81E-09
+9,479,1.80E-09
+9,480,1.79E-09
+9,481,1.78E-09
+9,482,1.77E-09
+9,483,1.76E-09
+9,484,1.75E-09
+9,485,1.74E-09
+9,486,1.73E-09
+9,487,1.73E-09
+9,488,1.72E-09
+9,489,1.71E-09
+9,490,1.70E-09
+9,491,1.69E-09
+9,492,1.68E-09
+9,493,1.67E-09
+9,494,1.67E-09
+9,495,1.66E-09
+9,496,1.65E-09
+9,497,1.64E-09
+9,498,1.63E-09
+9,499,1.62E-09
+9,500,1.62E-09
+9,501,1.61E-09
+9,502,1.60E-09
+9,503,1.59E-09
+9,504,1.58E-09
+9,505,1.58E-09
+9,506,1.57E-09
+9,507,1.56E-09
+9,508,1.55E-09
+9,509,1.54E-09
+9,510,1.54E-09
+9,511,1.53E-09
+9,512,1.52E-09
+9,513,1.51E-09
+9,514,1.50E-09
+9,515,1.50E-09
+9,516,1.49E-09
+9,517,1.48E-09
+9,518,1.47E-09
+9,519,1.47E-09
+9,520,1.46E-09
+9,521,1.45E-09
+9,522,1.45E-09
+9,523,1.44E-09
+9,524,1.43E-09
+9,525,1.42E-09
+9,526,1.42E-09
+9,527,1.41E-09
+9,528,1.40E-09
+9,529,1.40E-09
+9,530,1.39E-09
+9,531,1.38E-09
+9,532,1.37E-09
+9,533,1.37E-09
+9,534,1.36E-09
+9,535,1.35E-09
+9,536,1.35E-09
+9,537,1.34E-09
+9,538,1.33E-09
+9,539,1.33E-09
+9,540,1.32E-09
+9,541,1.31E-09
+9,542,1.31E-09
+9,543,1.30E-09
+9,544,1.29E-09
+9,545,1.29E-09
+9,546,1.28E-09
+9,547,1.27E-09
+9,548,1.27E-09
+9,549,1.26E-09
+9,550,1.25E-09
+9,551,1.25E-09
+9,552,1.24E-09
+9,553,1.24E-09
+9,554,1.23E-09
+9,555,1.22E-09
+9,556,1.22E-09
+9,557,1.21E-09
+9,558,1.20E-09
+9,559,1.20E-09
+9,560,1.19E-09
+9,561,1.19E-09
+9,562,1.18E-09
+9,563,1.17E-09
+9,564,1.17E-09
+9,565,1.16E-09
+9,566,1.16E-09
+9,567,1.15E-09
+9,568,1.15E-09
+9,569,1.14E-09
+9,570,1.13E-09
+9,571,1.13E-09
+9,572,1.12E-09
+9,573,1.12E-09
+9,574,1.11E-09
+9,575,1.11E-09
+9,576,1.10E-09
+9,577,1.09E-09
+9,578,1.09E-09
+9,579,1.08E-09
+9,580,1.08E-09
+9,581,1.07E-09
+9,582,1.07E-09
+9,583,1.06E-09
+9,584,1.06E-09
+9,585,1.05E-09
+9,586,1.05E-09
+9,587,1.04E-09
+9,588,1.04E-09
+9,589,1.03E-09
+9,590,1.02E-09
+9,591,1.02E-09
+9,592,1.01E-09
+9,593,1.01E-09
+9,594,1.00E-09
+9,595,9.99E-10
+9,596,9.94E-10
+9,597,9.89E-10
+9,598,9.84E-10
+9,599,9.79E-10
+9,600,9.74E-10
+9,601,9.69E-10
+9,602,9.64E-10
+9,603,9.59E-10
+9,604,9.55E-10
+9,605,9.50E-10
+9,606,9.45E-10
+9,607,9.40E-10
+9,608,9.35E-10
+9,609,9.31E-10
+9,610,9.26E-10
+9,611,9.21E-10
+9,612,9.17E-10
+9,613,9.12E-10
+9,614,9.08E-10
+9,615,9.03E-10
+9,616,8.98E-10
+9,617,8.94E-10
+9,618,8.89E-10
+9,619,8.85E-10
+9,620,8.80E-10
+9,621,8.76E-10
+9,622,8.72E-10
+9,623,8.67E-10
+9,624,8.63E-10
+9,625,8.58E-10
+9,626,8.54E-10
+9,627,8.50E-10
+9,628,8.45E-10
+9,629,8.41E-10
+9,630,8.37E-10
+9,631,8.33E-10
+9,632,8.29E-10
+9,633,8.24E-10
+9,634,8.20E-10
+9,635,8.16E-10
+9,636,8.12E-10
+9,637,8.08E-10
+9,638,8.04E-10
+9,639,8.00E-10
+9,640,7.96E-10
+9,641,7.92E-10
+9,642,7.88E-10
+9,643,7.84E-10
+9,644,7.80E-10
+9,645,7.76E-10
+9,646,7.72E-10
+9,647,7.68E-10
+9,648,7.64E-10
+9,649,7.60E-10
+9,650,7.56E-10
+9,651,7.53E-10
+9,652,7.49E-10
+9,653,7.45E-10
+9,654,7.41E-10
+9,655,7.38E-10
+9,656,7.34E-10
+9,657,7.30E-10
+9,658,7.26E-10
+9,659,7.23E-10
+9,660,7.19E-10
+9,661,7.15E-10
+9,662,7.12E-10
+9,663,7.08E-10
+9,664,7.05E-10
+9,665,7.01E-10
+9,666,6.98E-10
+9,667,6.94E-10
+9,668,6.91E-10
+9,669,6.87E-10
+9,670,6.84E-10
+9,671,6.80E-10
+9,672,6.77E-10
+9,673,6.73E-10
+9,674,6.70E-10
+9,675,6.67E-10
+9,676,6.63E-10
+9,677,6.60E-10
+9,678,6.57E-10
+9,679,6.53E-10
+9,680,6.50E-10
+9,681,6.47E-10
+9,682,6.43E-10
+9,683,6.40E-10
+9,684,6.37E-10
+9,685,6.34E-10
+9,686,6.30E-10
+9,687,6.27E-10
+9,688,6.24E-10
+9,689,6.21E-10
+9,690,6.18E-10
+9,691,6.15E-10
+9,692,6.12E-10
+9,693,6.09E-10
+9,694,6.05E-10
+9,695,6.02E-10
+9,696,5.99E-10
+9,697,5.96E-10
+9,698,5.93E-10
+9,699,5.90E-10
+9,700,5.87E-10
+9,701,5.84E-10
+9,702,5.81E-10
+9,703,5.79E-10
+9,704,5.76E-10
+9,705,5.73E-10
+9,706,5.70E-10
+9,707,5.67E-10
+9,708,5.64E-10
+9,709,5.61E-10
+9,710,5.58E-10
+9,711,5.56E-10
+9,712,5.53E-10
+9,713,5.50E-10
+9,714,5.47E-10
+9,715,5.44E-10
+9,716,5.42E-10
+9,717,5.39E-10
+9,718,5.36E-10
+9,719,5.34E-10
+9,720,5.31E-10
+9,721,5.28E-10
+9,722,5.26E-10
+9,723,5.23E-10
+9,724,5.20E-10
+9,725,5.18E-10
+9,726,5.15E-10
+9,727,5.12E-10
+9,728,5.10E-10
+9,729,5.07E-10
+9,730,5.05E-10
+9,731,5.02E-10
+9,732,5.00E-10
+9,733,4.97E-10
+9,734,4.95E-10
+9,735,4.92E-10
+9,736,4.90E-10
+9,737,4.87E-10
+9,738,4.85E-10
+9,739,4.82E-10
+9,740,4.80E-10
+9,741,4.77E-10
+9,742,4.75E-10
+9,743,4.73E-10
+9,744,4.70E-10
+9,745,4.68E-10
+9,746,4.65E-10
+9,747,4.63E-10
+9,748,4.61E-10
+9,749,4.58E-10
+9,750,4.56E-10
+9,751,4.54E-10
+9,752,4.52E-10
+9,753,4.49E-10
+9,754,4.47E-10
+9,755,4.45E-10
+9,756,4.42E-10
+9,757,4.40E-10
+9,758,4.38E-10
+9,759,4.36E-10
+9,760,4.34E-10
+9,761,4.31E-10
+9,762,4.29E-10
+9,763,4.27E-10
+9,764,4.25E-10
+9,765,4.23E-10
+9,766,4.21E-10
+9,767,4.19E-10
+9,768,4.16E-10
+9,769,4.14E-10
+9,770,4.12E-10
+9,771,4.10E-10
+9,772,4.08E-10
+9,773,4.06E-10
+9,774,4.04E-10
+9,775,4.02E-10
+9,776,4.00E-10
+9,777,3.98E-10
+9,778,3.96E-10
+9,779,3.94E-10
+9,780,3.92E-10
+9,781,3.90E-10
+9,782,3.88E-10
+9,783,3.86E-10
+9,784,3.84E-10
+9,785,3.82E-10
+9,786,3.80E-10
+9,787,3.78E-10
+9,788,3.76E-10
+9,789,3.74E-10
+9,790,3.73E-10
+9,791,3.71E-10
+9,792,3.69E-10
+9,793,3.67E-10
+9,794,3.65E-10
+9,795,3.63E-10
+9,796,3.61E-10
+9,797,3.60E-10
+9,798,3.58E-10
+9,799,3.56E-10
+9,800,3.54E-10
+9,801,3.52E-10
+9,802,3.51E-10
+9,803,3.49E-10
+9,804,3.47E-10
+9,805,3.45E-10
+9,806,3.44E-10
+9,807,3.42E-10
+9,808,3.40E-10
+9,809,3.38E-10
+9,810,3.37E-10
+9,811,3.35E-10
+9,812,3.33E-10
+9,813,3.32E-10
+9,814,3.30E-10
+9,815,3.28E-10
+9,816,3.27E-10
+9,817,3.25E-10
+9,818,3.23E-10
+9,819,3.22E-10
+9,820,3.20E-10
+9,821,3.19E-10
+9,822,3.17E-10
+9,823,3.15E-10
+9,824,3.14E-10
+9,825,3.12E-10
+9,826,3.11E-10
+9,827,3.09E-10
+9,828,3.07E-10
+9,829,3.06E-10
+9,830,3.04E-10
+9,831,3.03E-10
+9,832,3.01E-10
+9,833,3.00E-10
+9,834,2.98E-10
+9,835,2.97E-10
+9,836,2.95E-10
+9,837,2.94E-10
+9,838,2.92E-10
+9,839,2.91E-10
+9,840,2.89E-10
+9,841,2.88E-10
+9,842,2.86E-10
+9,843,2.85E-10
+9,844,2.84E-10
+9,845,2.82E-10
+9,846,2.81E-10
+9,847,2.79E-10
+9,848,2.78E-10
+9,849,2.76E-10
+9,850,2.75E-10
+9,851,2.74E-10
+9,852,2.72E-10
+9,853,2.71E-10
+9,854,2.70E-10
+9,855,2.68E-10
+9,856,2.67E-10
+9,857,2.65E-10
+9,858,2.64E-10
+9,859,2.63E-10
+9,860,2.61E-10
+9,861,2.60E-10
+9,862,2.59E-10
+9,863,2.58E-10
+9,864,2.56E-10
+9,865,2.55E-10
+9,866,2.54E-10
+9,867,2.52E-10
+9,868,2.51E-10
+9,869,2.50E-10
+9,870,2.49E-10
+9,871,2.47E-10
+9,872,2.46E-10
+9,873,2.45E-10
+9,874,2.44E-10
+9,875,2.42E-10
+9,876,2.41E-10
+9,877,2.40E-10
+9,878,2.39E-10
+9,879,2.38E-10
+9,880,2.36E-10
+9,881,2.35E-10
+9,882,2.34E-10
+9,883,2.33E-10
+9,884,2.32E-10
+9,885,2.30E-10
+9,886,2.29E-10
+9,887,2.28E-10
+9,888,2.27E-10
+9,889,2.26E-10
+9,890,2.25E-10
+9,891,2.24E-10
+9,892,2.22E-10
+9,893,2.21E-10
+9,894,2.20E-10
+9,895,2.19E-10
+9,896,2.18E-10
+9,897,2.17E-10
+9,898,2.16E-10
+9,899,2.15E-10
+9,900,2.14E-10
+9,901,2.13E-10
+9,902,2.11E-10
+9,903,2.10E-10
+9,904,2.09E-10
+9,905,2.08E-10
+9,906,2.07E-10
+9,907,2.06E-10
+9,908,2.05E-10
+9,909,2.04E-10
+9,910,2.03E-10
+9,911,2.02E-10
+9,912,2.01E-10
+9,913,2.00E-10
+9,914,1.99E-10
+9,915,1.98E-10
+9,916,1.97E-10
+9,917,1.96E-10
+9,918,1.95E-10
+9,919,1.94E-10
+9,920,1.93E-10
+9,921,1.92E-10
+9,922,1.91E-10
+9,923,1.90E-10
+9,924,1.89E-10
+9,925,1.88E-10
+9,926,1.87E-10
+9,927,1.86E-10
+9,928,1.85E-10
+9,929,1.84E-10
+9,930,1.84E-10
+9,931,1.83E-10
+9,932,1.82E-10
+9,933,1.81E-10
+9,934,1.80E-10
+9,935,1.79E-10
+9,936,1.78E-10
+9,937,1.77E-10
+9,938,1.76E-10
+9,939,1.75E-10
+9,940,1.74E-10
+9,941,1.74E-10
+9,942,1.73E-10
+9,943,1.72E-10
+9,944,1.71E-10
+9,945,1.70E-10
+9,946,1.69E-10
+9,947,1.68E-10
+9,948,1.68E-10
+9,949,1.67E-10
+9,950,1.66E-10
+9,951,1.65E-10
+9,952,1.64E-10
+9,953,1.63E-10
+9,954,1.63E-10
+9,955,1.62E-10
+9,956,1.61E-10
+9,957,1.60E-10
+9,958,1.59E-10
+9,959,1.58E-10
+9,960,1.58E-10
+9,961,1.57E-10
+9,962,1.56E-10
+9,963,1.55E-10
+9,964,1.55E-10
+9,965,1.54E-10
+9,966,1.53E-10
+9,967,1.52E-10
+9,968,1.51E-10
+9,969,1.51E-10
+9,970,1.50E-10
+9,971,1.49E-10
+9,972,1.48E-10
+9,973,1.48E-10
+9,974,1.47E-10
+9,975,1.46E-10
+9,976,1.45E-10
+9,977,1.45E-10
+9,978,1.44E-10
+9,979,1.43E-10
+9,980,1.43E-10
+9,981,1.42E-10
+9,982,1.41E-10
+9,983,1.40E-10
+9,984,1.40E-10
+9,985,1.39E-10
+9,986,1.38E-10
+9,987,1.38E-10
+9,988,1.37E-10
+9,989,1.36E-10
+9,990,1.35E-10
+9,991,1.35E-10
+9,992,1.34E-10
+9,993,1.33E-10
+9,994,1.33E-10
+9,995,1.32E-10
+9,996,1.31E-10
+9,997,1.31E-10
+9,998,1.30E-10
+9,999,1.29E-10
+9,1000,1.29E-10
+9,1001,1.28E-10
+9,1002,1.27E-10
+9,1003,1.27E-10
+9,1004,1.26E-10
+9,1005,1.26E-10
+9,1006,1.25E-10
+9,1007,1.24E-10
+9,1008,1.24E-10
+9,1009,1.23E-10
+9,1010,1.22E-10
+9,1011,1.22E-10
+9,1012,1.21E-10
+9,1013,1.21E-10
+9,1014,1.20E-10
+9,1015,1.19E-10
+9,1016,1.19E-10
+9,1017,1.18E-10
+9,1018,1.18E-10
+9,1019,1.17E-10
+9,1020,1.16E-10
+9,1021,1.16E-10
+9,1022,1.15E-10
+9,1023,1.15E-10
+9,1024,1.14E-10
+9,1025,1.13E-10
+9,1026,1.13E-10
+9,1027,1.12E-10
+9,1028,1.12E-10
+9,1029,1.11E-10
+9,1030,1.11E-10
+9,1031,1.10E-10
+9,1032,1.10E-10
+9,1033,1.09E-10
+9,1034,1.08E-10
+9,1035,1.08E-10
+9,1036,1.07E-10
+9,1037,1.07E-10
+9,1038,1.06E-10
+9,1039,1.06E-10
+9,1040,1.05E-10
+9,1041,1.05E-10
+9,1042,1.04E-10
+9,1043,1.04E-10
+9,1044,1.03E-10
+9,1045,1.03E-10
+9,1046,1.02E-10
+9,1047,1.02E-10
+9,1048,1.01E-10
+9,1049,1.01E-10
+9,1050,1.00E-10
+9,1051,9.95E-11
+9,1052,9.90E-11
+9,1053,9.85E-11
+9,1054,9.80E-11
+9,1055,9.75E-11
+9,1056,9.70E-11
+9,1057,9.65E-11
+9,1058,9.60E-11
+9,1059,9.56E-11
+9,1060,9.51E-11
+9,1061,9.46E-11
+9,1062,9.41E-11
+9,1063,9.36E-11
+9,1064,9.32E-11
+9,1065,9.27E-11
+9,1066,9.22E-11
+9,1067,9.18E-11
+9,1068,9.13E-11
+9,1069,9.08E-11
+9,1070,9.04E-11
+9,1071,8.99E-11
+9,1072,8.95E-11
+9,1073,8.90E-11
+9,1074,8.86E-11
+9,1075,8.81E-11
+9,1076,8.77E-11
+9,1077,8.72E-11
+9,1078,8.68E-11
+9,1079,8.64E-11
+9,1080,8.59E-11
+9,1081,8.55E-11
+9,1082,8.51E-11
+9,1083,8.46E-11
+9,1084,8.42E-11
+9,1085,8.38E-11
+9,1086,8.34E-11
+9,1087,8.29E-11
+9,1088,8.25E-11
+9,1089,8.21E-11
+9,1090,8.17E-11
+9,1091,8.13E-11
+9,1092,8.09E-11
+9,1093,8.05E-11
+9,1094,8.01E-11
+9,1095,7.97E-11
+9,1096,7.92E-11
+9,1097,7.88E-11
+9,1098,7.85E-11
+9,1099,7.81E-11
+9,1100,7.77E-11
+9,1101,7.73E-11
+9,1102,7.69E-11
+9,1103,7.65E-11
+9,1104,7.61E-11
+9,1105,7.57E-11
+9,1106,7.53E-11
+9,1107,7.50E-11
+9,1108,7.46E-11
+9,1109,7.42E-11
+9,1110,7.38E-11
+9,1111,7.35E-11
+9,1112,7.31E-11
+9,1113,7.27E-11
+9,1114,7.24E-11
+9,1115,7.20E-11
+9,1116,7.16E-11
+9,1117,7.13E-11
+9,1118,7.09E-11
+9,1119,7.05E-11
+9,1120,7.02E-11
+9,1121,6.98E-11
+9,1122,6.95E-11
+9,1123,6.91E-11
+9,1124,6.88E-11
+9,1125,6.84E-11
+9,1126,6.81E-11
+9,1127,6.77E-11
+9,1128,6.74E-11
+9,1129,6.71E-11
+9,1130,6.67E-11
+9,1131,6.64E-11
+9,1132,6.61E-11
+9,1133,6.57E-11
+9,1134,6.54E-11
+9,1135,6.51E-11
+9,1136,6.47E-11
+9,1137,6.44E-11
+9,1138,6.41E-11
+9,1139,6.38E-11
+9,1140,6.34E-11
+9,1141,6.31E-11
+9,1142,6.28E-11
+9,1143,6.25E-11
+9,1144,6.22E-11
+9,1145,6.19E-11
+9,1146,6.15E-11
+9,1147,6.12E-11
+9,1148,6.09E-11
+9,1149,6.06E-11
+9,1150,6.03E-11
+9,1151,6.00E-11
+9,1152,5.97E-11
+9,1153,5.94E-11
+9,1154,5.91E-11
+9,1155,5.88E-11
+9,1156,5.85E-11
+9,1157,5.82E-11
+9,1158,5.79E-11
+9,1159,5.76E-11
+9,1160,5.73E-11
+9,1161,5.70E-11
+9,1162,5.68E-11
+9,1163,5.65E-11
+9,1164,5.62E-11
+9,1165,5.59E-11
+9,1166,5.56E-11
+9,1167,5.53E-11
+9,1168,5.51E-11
+9,1169,5.48E-11
+9,1170,5.45E-11
+9,1171,5.42E-11
+9,1172,5.40E-11
+9,1173,5.37E-11
+9,1174,5.34E-11
+9,1175,5.31E-11
+9,1176,5.29E-11
+9,1177,5.26E-11
+9,1178,5.23E-11
+9,1179,5.21E-11
+9,1180,5.18E-11
+9,1181,5.16E-11
+9,1182,5.13E-11
+9,1183,5.10E-11
+9,1184,5.08E-11
+9,1185,5.05E-11
+9,1186,5.03E-11
+9,1187,5.00E-11
+9,1188,4.98E-11
+9,1189,4.95E-11
+9,1190,4.93E-11
+9,1191,4.90E-11
+9,1192,4.88E-11
+9,1193,4.85E-11
+9,1194,4.83E-11
+9,1195,4.80E-11
+9,1196,4.78E-11
+9,1197,4.75E-11
+9,1198,4.73E-11
+9,1199,4.71E-11
+9,1200,4.68E-11
+9,1201,4.66E-11
+9,1202,4.64E-11
+9,1203,4.61E-11
+9,1204,4.59E-11
+9,1205,4.57E-11
+9,1206,4.54E-11
+9,1207,4.52E-11
+9,1208,4.50E-11
+9,1209,4.47E-11
+9,1210,4.45E-11
+9,1211,4.43E-11
+9,1212,4.41E-11
+9,1213,4.39E-11
+9,1214,4.36E-11
+9,1215,4.34E-11
+9,1216,4.32E-11
+9,1217,4.30E-11
+9,1218,4.28E-11
+9,1219,4.25E-11
+9,1220,4.23E-11
+9,1221,4.21E-11
+9,1222,4.19E-11
+9,1223,4.17E-11
+9,1224,4.15E-11
+9,1225,4.13E-11
+9,1226,4.11E-11
+9,1227,4.09E-11
+9,1228,4.06E-11
+9,1229,4.04E-11
+9,1230,4.02E-11
+9,1231,4.00E-11
+9,1232,3.98E-11
+9,1233,3.96E-11
+9,1234,3.94E-11
+9,1235,3.92E-11
+9,1236,3.90E-11
+9,1237,3.88E-11
+9,1238,3.86E-11
+9,1239,3.84E-11
+9,1240,3.83E-11
+9,1241,3.81E-11
+9,1242,3.79E-11
+9,1243,3.77E-11
+9,1244,3.75E-11
+9,1245,3.73E-11
+9,1246,3.71E-11
+9,1247,3.69E-11
+9,1248,3.67E-11
+9,1249,3.65E-11
+9,1250,3.64E-11
+9,1251,3.62E-11
+9,1252,3.60E-11
+9,1253,3.58E-11
+9,1254,3.56E-11
+9,1255,3.55E-11
+9,1256,3.53E-11
+9,1257,3.51E-11
+9,1258,3.49E-11
+9,1259,3.47E-11
+9,1260,3.46E-11
+9,1261,3.44E-11
+9,1262,3.42E-11
+9,1263,3.41E-11
+9,1264,3.39E-11
+9,1265,3.37E-11
+9,1266,3.35E-11
+9,1267,3.34E-11
+9,1268,3.32E-11
+9,1269,3.30E-11
+9,1270,3.29E-11
+9,1271,3.27E-11
+9,1272,3.25E-11
+9,1273,3.24E-11
+9,1274,3.22E-11
+9,1275,3.20E-11
+9,1276,3.19E-11
+9,1277,3.17E-11
+9,1278,3.16E-11
+9,1279,3.14E-11
+9,1280,3.12E-11
+9,1281,3.11E-11
+9,1282,3.09E-11
+9,1283,3.08E-11
+9,1284,3.06E-11
+9,1285,3.05E-11
+9,1286,3.03E-11
+9,1287,3.02E-11
+9,1288,3.00E-11
+9,1289,2.99E-11
+9,1290,2.97E-11
+9,1291,2.96E-11
+9,1292,2.94E-11
+9,1293,2.93E-11
+9,1294,2.91E-11
+9,1295,2.90E-11
+9,1296,2.88E-11
+9,1297,2.87E-11
+9,1298,2.85E-11
+9,1299,2.84E-11
+9,1300,2.82E-11
+9,1301,2.81E-11
+9,1302,2.80E-11
+9,1303,2.78E-11
+9,1304,2.77E-11
+9,1305,2.75E-11
+9,1306,2.74E-11
+9,1307,2.73E-11
+9,1308,2.71E-11
+9,1309,2.70E-11
+9,1310,2.68E-11
+9,1311,2.67E-11
+9,1312,2.66E-11
+9,1313,2.64E-11
+9,1314,2.63E-11
+9,1315,2.62E-11
+9,1316,2.60E-11
+9,1317,2.59E-11
+9,1318,2.58E-11
+9,1319,2.57E-11
+9,1320,2.55E-11
+9,1321,2.54E-11
+9,1322,2.53E-11
+9,1323,2.51E-11
+9,1324,2.50E-11
+9,1325,2.49E-11
+9,1326,2.48E-11
+9,1327,2.46E-11
+9,1328,2.45E-11
+9,1329,2.44E-11
+9,1330,2.43E-11
+9,1331,2.41E-11
+9,1332,2.40E-11
+9,1333,2.39E-11
+9,1334,2.38E-11
+9,1335,2.37E-11
+9,1336,2.35E-11
+9,1337,2.34E-11
+9,1338,2.33E-11
+9,1339,2.32E-11
+9,1340,2.31E-11
+9,1341,2.29E-11
+9,1342,2.28E-11
+9,1343,2.27E-11
+9,1344,2.26E-11
+9,1345,2.25E-11
+9,1346,2.24E-11
+9,1347,2.23E-11
+9,1348,2.22E-11
+9,1349,2.20E-11
+9,1350,2.19E-11
+9,1351,2.18E-11
+9,1352,2.17E-11
+9,1353,2.16E-11
+9,1354,2.15E-11
+9,1355,2.14E-11
+9,1356,2.13E-11
+9,1357,2.12E-11
+9,1358,2.11E-11
+9,1359,2.10E-11
+9,1360,2.08E-11
+9,1361,2.07E-11
+9,1362,2.06E-11
+9,1363,2.05E-11
+9,1364,2.04E-11
+9,1365,2.03E-11
+9,1366,2.02E-11
+9,1367,2.01E-11
+9,1368,2.00E-11
+9,1369,1.99E-11
+9,1370,1.98E-11
+9,1371,1.97E-11
+9,1372,1.96E-11
+9,1373,1.95E-11
+9,1374,1.94E-11
+9,1375,1.93E-11
+9,1376,1.92E-11
+9,1377,1.91E-11
+9,1378,1.90E-11
+9,1379,1.89E-11
+9,1380,1.88E-11
+9,1381,1.87E-11
+9,1382,1.87E-11
+9,1383,1.86E-11
+9,1384,1.85E-11
+9,1385,1.84E-11
+9,1386,1.83E-11
+9,1387,1.82E-11
+9,1388,1.81E-11
+9,1389,1.80E-11
+9,1390,1.79E-11
+9,1391,1.78E-11
+9,1392,1.77E-11
+9,1393,1.76E-11
+9,1394,1.76E-11
+9,1395,1.75E-11
+9,1396,1.74E-11
+9,1397,1.73E-11
+9,1398,1.72E-11
+9,1399,1.71E-11
+9,1400,1.70E-11
+9,1401,1.69E-11
+9,1402,1.69E-11
+9,1403,1.68E-11
+9,1404,1.67E-11
+9,1405,1.66E-11
+9,1406,1.65E-11
+9,1407,1.64E-11
+9,1408,1.64E-11
+9,1409,1.63E-11
+9,1410,1.62E-11
+9,1411,1.61E-11
+9,1412,1.60E-11
+9,1413,1.59E-11
+9,1414,1.59E-11
+9,1415,1.58E-11
+9,1416,1.57E-11
+9,1417,1.56E-11
+9,1418,1.55E-11
+9,1419,1.55E-11
+9,1420,1.54E-11
+9,1421,1.53E-11
+9,1422,1.52E-11
+9,1423,1.52E-11
+9,1424,1.51E-11
+9,1425,1.50E-11
+9,1426,1.49E-11
+9,1427,1.49E-11
+9,1428,1.48E-11
+9,1429,1.47E-11
+9,1430,1.46E-11
+9,1431,1.46E-11
+9,1432,1.45E-11
+9,1433,1.44E-11
+9,1434,1.43E-11
+9,1435,1.43E-11
+9,1436,1.42E-11
+9,1437,1.41E-11
+9,1438,1.41E-11
+9,1439,1.40E-11
+9,1440,1.39E-11
+9,1441,1.38E-11
+9,1442,1.38E-11
+9,1443,1.37E-11
+9,1444,1.36E-11
+9,1445,1.36E-11
+9,1446,1.35E-11
+9,1447,1.34E-11
+9,1448,1.34E-11
+9,1449,1.33E-11
+9,1450,1.32E-11
+9,1451,1.32E-11
+9,1452,1.31E-11
+9,1453,1.30E-11
+9,1454,1.30E-11
+9,1455,1.29E-11
+9,1456,1.28E-11
+9,1457,1.28E-11
+9,1458,1.27E-11
+9,1459,1.26E-11
+9,1460,1.26E-11
+9,1461,1.25E-11
+9,1462,1.24E-11
+9,1463,1.24E-11
+9,1464,1.23E-11
+9,1465,1.23E-11
+9,1466,1.22E-11
+9,1467,1.21E-11
+9,1468,1.21E-11
+9,1469,1.20E-11
+9,1470,1.20E-11
+9,1471,1.19E-11
+9,1472,1.18E-11
+9,1473,1.18E-11
+9,1474,1.17E-11
+9,1475,1.17E-11
+9,1476,1.16E-11
+9,1477,1.15E-11
+9,1478,1.15E-11
+9,1479,1.14E-11
+9,1480,1.14E-11
+9,1481,1.13E-11
+9,1482,1.12E-11
+9,1483,1.12E-11
+9,1484,1.11E-11
+9,1485,1.11E-11
+9,1486,1.10E-11
+9,1487,1.10E-11
+9,1488,1.09E-11
+9,1489,1.09E-11
+9,1490,1.08E-11
+9,1491,1.07E-11
+9,1492,1.07E-11
+9,1493,1.06E-11
+9,1494,1.06E-11
+9,1495,1.05E-11
+9,1496,1.05E-11
+9,1497,1.04E-11
+9,1498,1.04E-11
+9,1499,1.03E-11
+9,1500,1.03E-11
+9,1501,1.02E-11
+9,1502,1.02E-11
+9,1503,1.01E-11
+9,1504,1.01E-11
+9,1505,1.00E-11
+9,1506,9.96E-12
+9,1507,9.91E-12
+9,1508,9.86E-12
+9,1509,9.81E-12
+9,1510,9.76E-12
+9,1511,9.71E-12
+9,1512,9.66E-12
+9,1513,9.61E-12
+9,1514,9.57E-12
+9,1515,9.52E-12
+9,1516,9.47E-12
+9,1517,9.42E-12
+9,1518,9.37E-12
+9,1519,9.33E-12
+9,1520,9.28E-12
+9,1521,9.23E-12
+9,1522,9.19E-12
+9,1523,9.14E-12
+9,1524,9.09E-12
+9,1525,9.05E-12
+9,1526,9.00E-12
+9,1527,8.96E-12
+9,1528,8.91E-12
+9,1529,8.87E-12
+9,1530,8.82E-12
+9,1531,8.78E-12
+9,1532,8.73E-12
+9,1533,8.69E-12
+9,1534,8.65E-12
+9,1535,8.60E-12
+9,1536,8.56E-12
+9,1537,8.52E-12
+9,1538,8.47E-12
+9,1539,8.43E-12
+9,1540,8.39E-12
+9,1541,8.34E-12
+9,1542,8.30E-12
+9,1543,8.26E-12
+9,1544,8.22E-12
+9,1545,8.18E-12
+9,1546,8.14E-12
+9,1547,8.10E-12
+9,1548,8.05E-12
+9,1549,8.01E-12
+9,1550,7.97E-12
+9,1551,7.93E-12
+9,1552,7.89E-12
+9,1553,7.85E-12
+9,1554,7.81E-12
+9,1555,7.77E-12
+9,1556,7.74E-12
+9,1557,7.70E-12
+9,1558,7.66E-12
+9,1559,7.62E-12
+9,1560,7.58E-12
+9,1561,7.54E-12
+9,1562,7.50E-12
+9,1563,7.47E-12
+9,1564,7.43E-12
+9,1565,7.39E-12
+9,1566,7.35E-12
+9,1567,7.32E-12
+9,1568,7.28E-12
+9,1569,7.24E-12
+9,1570,7.21E-12
+9,1571,7.17E-12
+9,1572,7.13E-12
+9,1573,7.10E-12
+9,1574,7.06E-12
+9,1575,7.03E-12
+9,1576,6.99E-12
+9,1577,6.96E-12
+9,1578,6.92E-12
+9,1579,6.89E-12
+9,1580,6.85E-12
+9,1581,6.82E-12
+9,1582,6.78E-12
+9,1583,6.75E-12
+9,1584,6.71E-12
+9,1585,6.68E-12
+9,1586,6.65E-12
+9,1587,6.61E-12
+9,1588,6.58E-12
+9,1589,6.55E-12
+9,1590,6.51E-12
+9,1591,6.48E-12
+9,1592,6.45E-12
+9,1593,6.41E-12
+9,1594,6.38E-12
+9,1595,6.35E-12
+9,1596,6.32E-12
+9,1597,6.29E-12
+9,1598,6.25E-12
+9,1599,6.22E-12
+9,1600,6.19E-12
+9,1601,6.16E-12
+9,1602,6.13E-12
+9,1603,6.10E-12
+9,1604,6.07E-12
+9,1605,6.04E-12
+9,1606,6.01E-12
+9,1607,5.98E-12
+9,1608,5.95E-12
+9,1609,5.92E-12
+9,1610,5.89E-12
+9,1611,5.86E-12
+9,1612,5.83E-12
+9,1613,5.80E-12
+9,1614,5.77E-12
+9,1615,5.74E-12
+9,1616,5.71E-12
+9,1617,5.68E-12
+9,1618,5.65E-12
+9,1619,5.62E-12
+9,1620,5.60E-12
+9,1621,5.57E-12
+9,1622,5.54E-12
+9,1623,5.51E-12
+9,1624,5.48E-12
+9,1625,5.46E-12
+9,1626,5.43E-12
+9,1627,5.40E-12
+9,1628,5.37E-12
+9,1629,5.35E-12
+9,1630,5.32E-12
+9,1631,5.29E-12
+9,1632,5.27E-12
+9,1633,5.24E-12
+9,1634,5.21E-12
+9,1635,5.19E-12
+9,1636,5.16E-12
+9,1637,5.13E-12
+9,1638,5.11E-12
+9,1639,5.08E-12
+9,1640,5.06E-12
+9,1641,5.03E-12
+9,1642,5.01E-12
+9,1643,4.98E-12
+9,1644,4.96E-12
+9,1645,4.93E-12
+9,1646,4.91E-12
+9,1647,4.88E-12
+9,1648,4.86E-12
+9,1649,4.83E-12
+9,1650,4.81E-12
+9,1651,4.78E-12
+9,1652,4.76E-12
+9,1653,4.74E-12
+9,1654,4.71E-12
+9,1655,4.69E-12
+9,1656,4.66E-12
+9,1657,4.64E-12
+9,1658,4.62E-12
+9,1659,4.59E-12
+9,1660,4.57E-12
+9,1661,4.55E-12
+9,1662,4.52E-12
+9,1663,4.50E-12
+9,1664,4.48E-12
+9,1665,4.46E-12
+9,1666,4.43E-12
+9,1667,4.41E-12
+9,1668,4.39E-12
+9,1669,4.37E-12
+9,1670,4.35E-12
+9,1671,4.32E-12
+9,1672,4.30E-12
+9,1673,4.28E-12
+9,1674,4.26E-12
+9,1675,4.24E-12
+9,1676,4.22E-12
+9,1677,4.19E-12
+9,1678,4.17E-12
+9,1679,4.15E-12
+9,1680,4.13E-12
+9,1681,4.11E-12
+9,1682,4.09E-12
+9,1683,4.07E-12
+9,1684,4.05E-12
+9,1685,4.03E-12
+9,1686,4.01E-12
+9,1687,3.99E-12
+9,1688,3.97E-12
+9,1689,3.95E-12
+9,1690,3.93E-12
+9,1691,3.91E-12
+9,1692,3.89E-12
+9,1693,3.87E-12
+9,1694,3.85E-12
+9,1695,3.83E-12
+9,1696,3.81E-12
+9,1697,3.79E-12
+9,1698,3.77E-12
+9,1699,3.75E-12
+9,1700,3.73E-12
+9,1701,3.71E-12
+9,1702,3.70E-12
+9,1703,3.68E-12
+9,1704,3.66E-12
+9,1705,3.64E-12
+9,1706,3.62E-12
+9,1707,3.60E-12
+9,1708,3.59E-12
+9,1709,3.57E-12
+9,1710,3.55E-12
+9,1711,3.53E-12
+9,1712,3.51E-12
+9,1713,3.50E-12
+9,1714,3.48E-12
+9,1715,3.46E-12
+9,1716,3.44E-12
+9,1717,3.43E-12
+9,1718,3.41E-12
+9,1719,3.39E-12
+9,1720,3.37E-12
+9,1721,3.36E-12
+9,1722,3.34E-12
+9,1723,3.32E-12
+9,1724,3.31E-12
+9,1725,3.29E-12
+9,1726,3.27E-12
+9,1727,3.26E-12
+9,1728,3.24E-12
+9,1729,3.22E-12
+9,1730,3.21E-12
+9,1731,3.19E-12
+9,1732,3.18E-12
+9,1733,3.16E-12
+9,1734,3.14E-12
+9,1735,3.13E-12
+9,1736,3.11E-12
+9,1737,3.10E-12
+9,1738,3.08E-12
+9,1739,3.07E-12
+9,1740,3.05E-12
+9,1741,3.03E-12
+9,1742,3.02E-12
+9,1743,3.00E-12
+9,1744,2.99E-12
+9,1745,2.97E-12
+9,1746,2.96E-12
+9,1747,2.94E-12
+9,1748,2.93E-12
+9,1749,2.91E-12
+9,1750,2.90E-12
+9,1751,2.88E-12
+9,1752,2.87E-12
+9,1753,2.86E-12
+9,1754,2.84E-12
+9,1755,2.83E-12
+9,1756,2.81E-12
+9,1757,2.80E-12
+9,1758,2.78E-12
+9,1759,2.77E-12
+9,1760,2.76E-12
+9,1761,2.74E-12
+9,1762,2.73E-12
+9,1763,2.71E-12
+9,1764,2.70E-12
+9,1765,2.69E-12
+9,1766,2.67E-12
+9,1767,2.66E-12
+9,1768,2.65E-12
+9,1769,2.63E-12
+9,1770,2.62E-12
+9,1771,2.61E-12
+9,1772,2.59E-12
+9,1773,2.58E-12
+9,1774,2.57E-12
+9,1775,2.55E-12
+9,1776,2.54E-12
+9,1777,2.53E-12
+9,1778,2.52E-12
+9,1779,2.50E-12
+9,1780,2.49E-12
+9,1781,2.48E-12
+9,1782,2.47E-12
+9,1783,2.45E-12
+9,1784,2.44E-12
+9,1785,2.43E-12
+9,1786,2.42E-12
+9,1787,2.40E-12
+9,1788,2.39E-12
+9,1789,2.38E-12
+9,1790,2.37E-12
+9,1791,2.36E-12
+9,1792,2.34E-12
+9,1793,2.33E-12
+9,1794,2.32E-12
+9,1795,2.31E-12
+9,1796,2.30E-12
+9,1797,2.29E-12
+9,1798,2.27E-12
+9,1799,2.26E-12
+9,1800,2.25E-12
+9,1801,2.24E-12
+9,1802,2.23E-12
+9,1803,2.22E-12
+9,1804,2.21E-12
+9,1805,2.20E-12
+9,1806,2.18E-12
+9,1807,2.17E-12
+9,1808,2.16E-12
+9,1809,2.15E-12
+9,1810,2.14E-12
+9,1811,2.13E-12
+9,1812,2.12E-12
+9,1813,2.11E-12
+9,1814,2.10E-12
+9,1815,2.09E-12
+9,1816,2.08E-12
+9,1817,2.07E-12
+9,1818,2.06E-12
+9,1819,2.05E-12
+9,1820,2.03E-12
+9,1821,2.02E-12
+9,1822,2.01E-12
+9,1823,2.00E-12
+9,1824,1.99E-12
+9,1825,1.98E-12
+9,1826,1.97E-12
+9,1827,1.96E-12
+9,1828,1.95E-12
+9,1829,1.94E-12
+9,1830,1.93E-12
+9,1831,1.92E-12
+9,1832,1.91E-12
+9,1833,1.91E-12
+9,1834,1.90E-12
+9,1835,1.89E-12
+9,1836,1.88E-12
+9,1837,1.87E-12
+9,1838,1.86E-12
+9,1839,1.85E-12
+9,1840,1.84E-12
+9,1841,1.83E-12
+9,1842,1.82E-12
+9,1843,1.81E-12
+9,1844,1.80E-12
+9,1845,1.79E-12
+9,1846,1.78E-12
+9,1847,1.78E-12
+9,1848,1.77E-12
+9,1849,1.76E-12
+9,1850,1.75E-12
+9,1851,1.74E-12
+9,1852,1.73E-12
+9,1853,1.72E-12
+9,1854,1.71E-12
+9,1855,1.70E-12
+9,1856,1.70E-12
+9,1857,1.69E-12
+9,1858,1.68E-12
+9,1859,1.67E-12
+9,1860,1.66E-12
+9,1861,1.65E-12
+9,1862,1.65E-12
+9,1863,1.64E-12
+9,1864,1.63E-12
+9,1865,1.62E-12
+9,1866,1.61E-12
+9,1867,1.60E-12
+9,1868,1.60E-12
+9,1869,1.59E-12
+9,1870,1.58E-12
+9,1871,1.57E-12
+9,1872,1.56E-12
+9,1873,1.56E-12
+9,1874,1.55E-12
+9,1875,1.54E-12
+9,1876,1.53E-12
+9,1877,1.53E-12
+9,1878,1.52E-12
+9,1879,1.51E-12
+9,1880,1.50E-12
+9,1881,1.49E-12
+9,1882,1.49E-12
+9,1883,1.48E-12
+9,1884,1.47E-12
+9,1885,1.46E-12
+9,1886,1.46E-12
+9,1887,1.45E-12
+9,1888,1.44E-12
+9,1889,1.44E-12
+9,1890,1.43E-12
+9,1891,1.42E-12
+9,1892,1.41E-12
+9,1893,1.41E-12
+9,1894,1.40E-12
+9,1895,1.39E-12
+9,1896,1.39E-12
+9,1897,1.38E-12
+9,1898,1.37E-12
+9,1899,1.36E-12
+9,1900,1.36E-12
+9,1901,1.35E-12
+9,1902,1.34E-12
+9,1903,1.34E-12
+9,1904,1.33E-12
+9,1905,1.32E-12
+9,1906,1.32E-12
+9,1907,1.31E-12
+9,1908,1.30E-12
+9,1909,1.30E-12
+9,1910,1.29E-12
+9,1911,1.28E-12
+9,1912,1.28E-12
+9,1913,1.27E-12
+9,1914,1.26E-12
+9,1915,1.26E-12
+9,1916,1.25E-12
+9,1917,1.25E-12
+9,1918,1.24E-12
+9,1919,1.23E-12
+9,1920,1.23E-12
+9,1921,1.22E-12
+9,1922,1.21E-12
+9,1923,1.21E-12
+9,1924,1.20E-12
+9,1925,1.20E-12
+9,1926,1.19E-12
+9,1927,1.18E-12
+9,1928,1.18E-12
+9,1929,1.17E-12
+9,1930,1.17E-12
+9,1931,1.16E-12
+9,1932,1.15E-12
+9,1933,1.15E-12
+9,1934,1.14E-12
+9,1935,1.14E-12
+9,1936,1.13E-12
+9,1937,1.13E-12
+9,1938,1.12E-12
+9,1939,1.11E-12
+9,1940,1.11E-12
+9,1941,1.10E-12
+9,1942,1.10E-12
+9,1943,1.09E-12
+9,1944,1.09E-12
+9,1945,1.08E-12
+9,1946,1.08E-12
+9,1947,1.07E-12
+9,1948,1.06E-12
+9,1949,1.06E-12
+9,1950,1.05E-12
+9,1951,1.05E-12
+9,1952,1.04E-12
+9,1953,1.04E-12
+9,1954,1.03E-12
+9,1955,1.03E-12
+9,1956,1.02E-12
+9,1957,1.02E-12
+9,1958,1.01E-12
+9,1959,1.01E-12
+9,1960,1.00E-12
+9,1961,9.97E-13
+9,1962,9.92E-13
+9,1963,9.87E-13
+9,1964,9.82E-13
+9,1965,9.77E-13
+9,1966,9.72E-13
+9,1967,9.67E-13
+9,1968,9.62E-13
+9,1969,9.58E-13
+9,1970,9.53E-13
+9,1971,9.48E-13
+9,1972,9.43E-13
+9,1973,9.38E-13
+9,1974,9.34E-13
+9,1975,9.29E-13
+9,1976,9.24E-13
+9,1977,9.20E-13
+9,1978,9.15E-13
+9,1979,9.10E-13
+9,1980,9.06E-13
+9,1981,9.01E-13
+9,1982,8.97E-13
+9,1983,8.92E-13
+9,1984,8.88E-13
+9,1985,8.83E-13
+9,1986,8.79E-13
+9,1987,8.74E-13
+9,1988,8.70E-13
+9,1989,8.65E-13
+9,1990,8.61E-13
+9,1991,8.57E-13
+9,1992,8.52E-13
+9,1993,8.48E-13
+9,1994,8.44E-13
+9,1995,8.40E-13
+9,1996,8.35E-13
+9,1997,8.31E-13
+9,1998,8.27E-13
+9,1999,8.23E-13
+9,2000,8.19E-13
+10,1,2.31E-07
+10,2,2.28E-07
+10,3,2.24E-07
+10,4,2.21E-07
+10,5,2.17E-07
+10,6,2.14E-07
+10,7,2.11E-07
+10,8,2.07E-07
+10,9,2.04E-07
+10,10,2.01E-07
+10,11,1.98E-07
+10,12,1.95E-07
+10,13,1.92E-07
+10,14,1.89E-07
+10,15,1.86E-07
+10,16,1.83E-07
+10,17,1.80E-07
+10,18,1.77E-07
+10,19,1.75E-07
+10,20,1.72E-07
+10,21,1.69E-07
+10,22,1.67E-07
+10,23,1.64E-07
+10,24,1.62E-07
+10,25,1.59E-07
+10,26,1.57E-07
+10,27,1.54E-07
+10,28,1.52E-07
+10,29,1.50E-07
+10,30,1.47E-07
+10,31,1.45E-07
+10,32,1.43E-07
+10,33,1.41E-07
+10,34,1.39E-07
+10,35,1.37E-07
+10,36,1.35E-07
+10,37,1.33E-07
+10,38,1.31E-07
+10,39,1.29E-07
+10,40,1.27E-07
+10,41,1.25E-07
+10,42,1.23E-07
+10,43,1.21E-07
+10,44,1.19E-07
+10,45,1.18E-07
+10,46,1.16E-07
+10,47,1.14E-07
+10,48,1.12E-07
+10,49,1.11E-07
+10,50,1.09E-07
+10,51,1.08E-07
+10,52,1.06E-07
+10,53,1.04E-07
+10,54,1.03E-07
+10,55,1.01E-07
+10,56,1.00E-07
+10,57,9.86E-08
+10,58,9.72E-08
+10,59,9.58E-08
+10,60,9.44E-08
+10,61,9.31E-08
+10,62,9.18E-08
+10,63,9.05E-08
+10,64,8.92E-08
+10,65,8.80E-08
+10,66,8.67E-08
+10,67,8.55E-08
+10,68,8.43E-08
+10,69,8.32E-08
+10,70,8.20E-08
+10,71,8.09E-08
+10,72,7.98E-08
+10,73,7.87E-08
+10,74,7.76E-08
+10,75,7.66E-08
+10,76,7.55E-08
+10,77,7.45E-08
+10,78,7.35E-08
+10,79,7.25E-08
+10,80,7.16E-08
+10,81,7.06E-08
+10,82,6.97E-08
+10,83,6.87E-08
+10,84,6.78E-08
+10,85,6.69E-08
+10,86,6.61E-08
+10,87,6.52E-08
+10,88,6.43E-08
+10,89,6.35E-08
+10,90,6.27E-08
+10,91,6.19E-08
+10,92,6.11E-08
+10,93,6.03E-08
+10,94,5.95E-08
+10,95,5.87E-08
+10,96,5.80E-08
+10,97,5.73E-08
+10,98,5.65E-08
+10,99,5.58E-08
+10,100,5.51E-08
+10,101,5.44E-08
+10,102,5.37E-08
+10,103,5.31E-08
+10,104,5.24E-08
+10,105,5.17E-08
+10,106,5.11E-08
+10,107,5.05E-08
+10,108,4.99E-08
+10,109,4.92E-08
+10,110,4.86E-08
+10,111,4.80E-08
+10,112,4.75E-08
+10,113,4.69E-08
+10,114,4.63E-08
+10,115,4.58E-08
+10,116,4.52E-08
+10,117,4.47E-08
+10,118,4.41E-08
+10,119,4.36E-08
+10,120,4.31E-08
+10,121,4.26E-08
+10,122,4.21E-08
+10,123,4.16E-08
+10,124,4.11E-08
+10,125,4.06E-08
+10,126,4.01E-08
+10,127,3.97E-08
+10,128,3.92E-08
+10,129,3.88E-08
+10,130,3.83E-08
+10,131,3.79E-08
+10,132,3.74E-08
+10,133,3.70E-08
+10,134,3.66E-08
+10,135,3.62E-08
+10,136,3.58E-08
+10,137,3.54E-08
+10,138,3.50E-08
+10,139,3.46E-08
+10,140,3.42E-08
+10,141,3.38E-08
+10,142,3.34E-08
+10,143,3.31E-08
+10,144,3.27E-08
+10,145,3.23E-08
+10,146,3.20E-08
+10,147,3.16E-08
+10,148,3.13E-08
+10,149,3.09E-08
+10,150,3.06E-08
+10,151,3.03E-08
+10,152,3.00E-08
+10,153,2.96E-08
+10,154,2.93E-08
+10,155,2.90E-08
+10,156,2.87E-08
+10,157,2.84E-08
+10,158,2.81E-08
+10,159,2.78E-08
+10,160,2.75E-08
+10,161,2.72E-08
+10,162,2.69E-08
+10,163,2.66E-08
+10,164,2.64E-08
+10,165,2.61E-08
+10,166,2.58E-08
+10,167,2.56E-08
+10,168,2.53E-08
+10,169,2.50E-08
+10,170,2.48E-08
+10,171,2.45E-08
+10,172,2.43E-08
+10,173,2.40E-08
+10,174,2.38E-08
+10,175,2.36E-08
+10,176,2.33E-08
+10,177,2.31E-08
+10,178,2.29E-08
+10,179,2.26E-08
+10,180,2.24E-08
+10,181,2.22E-08
+10,182,2.20E-08
+10,183,2.17E-08
+10,184,2.15E-08
+10,185,2.13E-08
+10,186,2.11E-08
+10,187,2.09E-08
+10,188,2.07E-08
+10,189,2.05E-08
+10,190,2.03E-08
+10,191,2.01E-08
+10,192,1.99E-08
+10,193,1.97E-08
+10,194,1.96E-08
+10,195,1.94E-08
+10,196,1.92E-08
+10,197,1.90E-08
+10,198,1.88E-08
+10,199,1.87E-08
+10,200,1.85E-08
+10,201,1.83E-08
+10,202,1.81E-08
+10,203,1.80E-08
+10,204,1.78E-08
+10,205,1.76E-08
+10,206,1.75E-08
+10,207,1.73E-08
+10,208,1.72E-08
+10,209,1.70E-08
+10,210,1.69E-08
+10,211,1.67E-08
+10,212,1.66E-08
+10,213,1.64E-08
+10,214,1.63E-08
+10,215,1.61E-08
+10,216,1.60E-08
+10,217,1.58E-08
+10,218,1.57E-08
+10,219,1.56E-08
+10,220,1.54E-08
+10,221,1.53E-08
+10,222,1.51E-08
+10,223,1.50E-08
+10,224,1.49E-08
+10,225,1.48E-08
+10,226,1.46E-08
+10,227,1.45E-08
+10,228,1.44E-08
+10,229,1.43E-08
+10,230,1.41E-08
+10,231,1.40E-08
+10,232,1.39E-08
+10,233,1.38E-08
+10,234,1.37E-08
+10,235,1.36E-08
+10,236,1.34E-08
+10,237,1.33E-08
+10,238,1.32E-08
+10,239,1.31E-08
+10,240,1.30E-08
+10,241,1.29E-08
+10,242,1.28E-08
+10,243,1.27E-08
+10,244,1.26E-08
+10,245,1.25E-08
+10,246,1.24E-08
+10,247,1.23E-08
+10,248,1.22E-08
+10,249,1.21E-08
+10,250,1.20E-08
+10,251,1.19E-08
+10,252,1.18E-08
+10,253,1.17E-08
+10,254,1.16E-08
+10,255,1.15E-08
+10,256,1.14E-08
+10,257,1.13E-08
+10,258,1.12E-08
+10,259,1.12E-08
+10,260,1.11E-08
+10,261,1.10E-08
+10,262,1.09E-08
+10,263,1.08E-08
+10,264,1.07E-08
+10,265,1.06E-08
+10,266,1.06E-08
+10,267,1.05E-08
+10,268,1.04E-08
+10,269,1.03E-08
+10,270,1.02E-08
+10,271,1.02E-08
+10,272,1.01E-08
+10,273,1.00E-08
+10,274,9.95E-09
+10,275,9.87E-09
+10,276,9.80E-09
+10,277,9.73E-09
+10,278,9.65E-09
+10,279,9.58E-09
+10,280,9.51E-09
+10,281,9.44E-09
+10,282,9.37E-09
+10,283,9.30E-09
+10,284,9.24E-09
+10,285,9.17E-09
+10,286,9.10E-09
+10,287,9.04E-09
+10,288,8.97E-09
+10,289,8.91E-09
+10,290,8.85E-09
+10,291,8.78E-09
+10,292,8.72E-09
+10,293,8.66E-09
+10,294,8.60E-09
+10,295,8.54E-09
+10,296,8.48E-09
+10,297,8.42E-09
+10,298,8.36E-09
+10,299,8.30E-09
+10,300,8.24E-09
+10,301,8.19E-09
+10,302,8.13E-09
+10,303,8.07E-09
+10,304,8.02E-09
+10,305,7.96E-09
+10,306,7.91E-09
+10,307,7.85E-09
+10,308,7.80E-09
+10,309,7.75E-09
+10,310,7.70E-09
+10,311,7.64E-09
+10,312,7.59E-09
+10,313,7.54E-09
+10,314,7.49E-09
+10,315,7.44E-09
+10,316,7.39E-09
+10,317,7.34E-09
+10,318,7.29E-09
+10,319,7.25E-09
+10,320,7.20E-09
+10,321,7.15E-09
+10,322,7.10E-09
+10,323,7.06E-09
+10,324,7.01E-09
+10,325,6.97E-09
+10,326,6.92E-09
+10,327,6.88E-09
+10,328,6.83E-09
+10,329,6.79E-09
+10,330,6.74E-09
+10,331,6.70E-09
+10,332,6.66E-09
+10,333,6.62E-09
+10,334,6.57E-09
+10,335,6.53E-09
+10,336,6.49E-09
+10,337,6.45E-09
+10,338,6.41E-09
+10,339,6.37E-09
+10,340,6.33E-09
+10,341,6.29E-09
+10,342,6.25E-09
+10,343,6.21E-09
+10,344,6.17E-09
+10,345,6.13E-09
+10,346,6.10E-09
+10,347,6.06E-09
+10,348,6.02E-09
+10,349,5.98E-09
+10,350,5.95E-09
+10,351,5.91E-09
+10,352,5.88E-09
+10,353,5.84E-09
+10,354,5.80E-09
+10,355,5.77E-09
+10,356,5.73E-09
+10,357,5.70E-09
+10,358,5.67E-09
+10,359,5.63E-09
+10,360,5.60E-09
+10,361,5.57E-09
+10,362,5.53E-09
+10,363,5.50E-09
+10,364,5.47E-09
+10,365,5.43E-09
+10,366,5.40E-09
+10,367,5.37E-09
+10,368,5.34E-09
+10,369,5.31E-09
+10,370,5.28E-09
+10,371,5.25E-09
+10,372,5.22E-09
+10,373,5.18E-09
+10,374,5.15E-09
+10,375,5.12E-09
+10,376,5.10E-09
+10,377,5.07E-09
+10,378,5.04E-09
+10,379,5.01E-09
+10,380,4.98E-09
+10,381,4.95E-09
+10,382,4.92E-09
+10,383,4.89E-09
+10,384,4.87E-09
+10,385,4.84E-09
+10,386,4.81E-09
+10,387,4.78E-09
+10,388,4.76E-09
+10,389,4.73E-09
+10,390,4.70E-09
+10,391,4.68E-09
+10,392,4.65E-09
+10,393,4.63E-09
+10,394,4.60E-09
+10,395,4.57E-09
+10,396,4.55E-09
+10,397,4.52E-09
+10,398,4.50E-09
+10,399,4.47E-09
+10,400,4.45E-09
+10,401,4.42E-09
+10,402,4.40E-09
+10,403,4.38E-09
+10,404,4.35E-09
+10,405,4.33E-09
+10,406,4.30E-09
+10,407,4.28E-09
+10,408,4.26E-09
+10,409,4.23E-09
+10,410,4.21E-09
+10,411,4.19E-09
+10,412,4.17E-09
+10,413,4.14E-09
+10,414,4.12E-09
+10,415,4.10E-09
+10,416,4.08E-09
+10,417,4.05E-09
+10,418,4.03E-09
+10,419,4.01E-09
+10,420,3.99E-09
+10,421,3.97E-09
+10,422,3.95E-09
+10,423,3.93E-09
+10,424,3.90E-09
+10,425,3.88E-09
+10,426,3.86E-09
+10,427,3.84E-09
+10,428,3.82E-09
+10,429,3.80E-09
+10,430,3.78E-09
+10,431,3.76E-09
+10,432,3.74E-09
+10,433,3.72E-09
+10,434,3.70E-09
+10,435,3.68E-09
+10,436,3.66E-09
+10,437,3.65E-09
+10,438,3.63E-09
+10,439,3.61E-09
+10,440,3.59E-09
+10,441,3.57E-09
+10,442,3.55E-09
+10,443,3.53E-09
+10,444,3.51E-09
+10,445,3.50E-09
+10,446,3.48E-09
+10,447,3.46E-09
+10,448,3.44E-09
+10,449,3.42E-09
+10,450,3.41E-09
+10,451,3.39E-09
+10,452,3.37E-09
+10,453,3.35E-09
+10,454,3.34E-09
+10,455,3.32E-09
+10,456,3.30E-09
+10,457,3.29E-09
+10,458,3.27E-09
+10,459,3.25E-09
+10,460,3.24E-09
+10,461,3.22E-09
+10,462,3.20E-09
+10,463,3.19E-09
+10,464,3.17E-09
+10,465,3.15E-09
+10,466,3.14E-09
+10,467,3.12E-09
+10,468,3.11E-09
+10,469,3.09E-09
+10,470,3.07E-09
+10,471,3.06E-09
+10,472,3.04E-09
+10,473,3.03E-09
+10,474,3.01E-09
+10,475,3.00E-09
+10,476,2.98E-09
+10,477,2.97E-09
+10,478,2.95E-09
+10,479,2.94E-09
+10,480,2.92E-09
+10,481,2.91E-09
+10,482,2.89E-09
+10,483,2.88E-09
+10,484,2.86E-09
+10,485,2.85E-09
+10,486,2.83E-09
+10,487,2.82E-09
+10,488,2.81E-09
+10,489,2.79E-09
+10,490,2.78E-09
+10,491,2.76E-09
+10,492,2.75E-09
+10,493,2.74E-09
+10,494,2.72E-09
+10,495,2.71E-09
+10,496,2.69E-09
+10,497,2.68E-09
+10,498,2.67E-09
+10,499,2.65E-09
+10,500,2.64E-09
+10,501,2.63E-09
+10,502,2.61E-09
+10,503,2.60E-09
+10,504,2.59E-09
+10,505,2.57E-09
+10,506,2.56E-09
+10,507,2.55E-09
+10,508,2.54E-09
+10,509,2.52E-09
+10,510,2.51E-09
+10,511,2.50E-09
+10,512,2.48E-09
+10,513,2.47E-09
+10,514,2.46E-09
+10,515,2.45E-09
+10,516,2.43E-09
+10,517,2.42E-09
+10,518,2.41E-09
+10,519,2.40E-09
+10,520,2.39E-09
+10,521,2.37E-09
+10,522,2.36E-09
+10,523,2.35E-09
+10,524,2.34E-09
+10,525,2.33E-09
+10,526,2.31E-09
+10,527,2.30E-09
+10,528,2.29E-09
+10,529,2.28E-09
+10,530,2.27E-09
+10,531,2.26E-09
+10,532,2.25E-09
+10,533,2.23E-09
+10,534,2.22E-09
+10,535,2.21E-09
+10,536,2.20E-09
+10,537,2.19E-09
+10,538,2.18E-09
+10,539,2.17E-09
+10,540,2.16E-09
+10,541,2.15E-09
+10,542,2.13E-09
+10,543,2.12E-09
+10,544,2.11E-09
+10,545,2.10E-09
+10,546,2.09E-09
+10,547,2.08E-09
+10,548,2.07E-09
+10,549,2.06E-09
+10,550,2.05E-09
+10,551,2.04E-09
+10,552,2.03E-09
+10,553,2.02E-09
+10,554,2.01E-09
+10,555,2.00E-09
+10,556,1.99E-09
+10,557,1.98E-09
+10,558,1.97E-09
+10,559,1.96E-09
+10,560,1.95E-09
+10,561,1.94E-09
+10,562,1.93E-09
+10,563,1.92E-09
+10,564,1.91E-09
+10,565,1.90E-09
+10,566,1.89E-09
+10,567,1.88E-09
+10,568,1.87E-09
+10,569,1.86E-09
+10,570,1.85E-09
+10,571,1.84E-09
+10,572,1.83E-09
+10,573,1.82E-09
+10,574,1.82E-09
+10,575,1.81E-09
+10,576,1.80E-09
+10,577,1.79E-09
+10,578,1.78E-09
+10,579,1.77E-09
+10,580,1.76E-09
+10,581,1.75E-09
+10,582,1.74E-09
+10,583,1.73E-09
+10,584,1.73E-09
+10,585,1.72E-09
+10,586,1.71E-09
+10,587,1.70E-09
+10,588,1.69E-09
+10,589,1.68E-09
+10,590,1.67E-09
+10,591,1.67E-09
+10,592,1.66E-09
+10,593,1.65E-09
+10,594,1.64E-09
+10,595,1.63E-09
+10,596,1.62E-09
+10,597,1.62E-09
+10,598,1.61E-09
+10,599,1.60E-09
+10,600,1.59E-09
+10,601,1.58E-09
+10,602,1.58E-09
+10,603,1.57E-09
+10,604,1.56E-09
+10,605,1.55E-09
+10,606,1.54E-09
+10,607,1.54E-09
+10,608,1.53E-09
+10,609,1.52E-09
+10,610,1.51E-09
+10,611,1.51E-09
+10,612,1.50E-09
+10,613,1.49E-09
+10,614,1.48E-09
+10,615,1.48E-09
+10,616,1.47E-09
+10,617,1.46E-09
+10,618,1.45E-09
+10,619,1.45E-09
+10,620,1.44E-09
+10,621,1.43E-09
+10,622,1.42E-09
+10,623,1.42E-09
+10,624,1.41E-09
+10,625,1.40E-09
+10,626,1.40E-09
+10,627,1.39E-09
+10,628,1.38E-09
+10,629,1.37E-09
+10,630,1.37E-09
+10,631,1.36E-09
+10,632,1.35E-09
+10,633,1.35E-09
+10,634,1.34E-09
+10,635,1.33E-09
+10,636,1.33E-09
+10,637,1.32E-09
+10,638,1.31E-09
+10,639,1.31E-09
+10,640,1.30E-09
+10,641,1.29E-09
+10,642,1.29E-09
+10,643,1.28E-09
+10,644,1.27E-09
+10,645,1.27E-09
+10,646,1.26E-09
+10,647,1.26E-09
+10,648,1.25E-09
+10,649,1.24E-09
+10,650,1.24E-09
+10,651,1.23E-09
+10,652,1.22E-09
+10,653,1.22E-09
+10,654,1.21E-09
+10,655,1.21E-09
+10,656,1.20E-09
+10,657,1.19E-09
+10,658,1.19E-09
+10,659,1.18E-09
+10,660,1.18E-09
+10,661,1.17E-09
+10,662,1.16E-09
+10,663,1.16E-09
+10,664,1.15E-09
+10,665,1.15E-09
+10,666,1.14E-09
+10,667,1.13E-09
+10,668,1.13E-09
+10,669,1.12E-09
+10,670,1.12E-09
+10,671,1.11E-09
+10,672,1.11E-09
+10,673,1.10E-09
+10,674,1.09E-09
+10,675,1.09E-09
+10,676,1.08E-09
+10,677,1.08E-09
+10,678,1.07E-09
+10,679,1.07E-09
+10,680,1.06E-09
+10,681,1.06E-09
+10,682,1.05E-09
+10,683,1.05E-09
+10,684,1.04E-09
+10,685,1.04E-09
+10,686,1.03E-09
+10,687,1.03E-09
+10,688,1.02E-09
+10,689,1.01E-09
+10,690,1.01E-09
+10,691,1.00E-09
+10,692,1.00E-09
+10,693,9.95E-10
+10,694,9.90E-10
+10,695,9.85E-10
+10,696,9.80E-10
+10,697,9.75E-10
+10,698,9.70E-10
+10,699,9.65E-10
+10,700,9.60E-10
+10,701,9.55E-10
+10,702,9.50E-10
+10,703,9.46E-10
+10,704,9.41E-10
+10,705,9.36E-10
+10,706,9.31E-10
+10,707,9.27E-10
+10,708,9.22E-10
+10,709,9.17E-10
+10,710,9.13E-10
+10,711,9.08E-10
+10,712,9.03E-10
+10,713,8.99E-10
+10,714,8.94E-10
+10,715,8.90E-10
+10,716,8.85E-10
+10,717,8.81E-10
+10,718,8.76E-10
+10,719,8.72E-10
+10,720,8.68E-10
+10,721,8.63E-10
+10,722,8.59E-10
+10,723,8.55E-10
+10,724,8.50E-10
+10,725,8.46E-10
+10,726,8.42E-10
+10,727,8.37E-10
+10,728,8.33E-10
+10,729,8.29E-10
+10,730,8.25E-10
+10,731,8.21E-10
+10,732,8.17E-10
+10,733,8.12E-10
+10,734,8.08E-10
+10,735,8.04E-10
+10,736,8.00E-10
+10,737,7.96E-10
+10,738,7.92E-10
+10,739,7.88E-10
+10,740,7.84E-10
+10,741,7.80E-10
+10,742,7.76E-10
+10,743,7.72E-10
+10,744,7.68E-10
+10,745,7.65E-10
+10,746,7.61E-10
+10,747,7.57E-10
+10,748,7.53E-10
+10,749,7.49E-10
+10,750,7.45E-10
+10,751,7.42E-10
+10,752,7.38E-10
+10,753,7.34E-10
+10,754,7.31E-10
+10,755,7.27E-10
+10,756,7.23E-10
+10,757,7.20E-10
+10,758,7.16E-10
+10,759,7.12E-10
+10,760,7.09E-10
+10,761,7.05E-10
+10,762,7.02E-10
+10,763,6.98E-10
+10,764,6.94E-10
+10,765,6.91E-10
+10,766,6.88E-10
+10,767,6.84E-10
+10,768,6.81E-10
+10,769,6.77E-10
+10,770,6.74E-10
+10,771,6.70E-10
+10,772,6.67E-10
+10,773,6.64E-10
+10,774,6.60E-10
+10,775,6.57E-10
+10,776,6.54E-10
+10,777,6.50E-10
+10,778,6.47E-10
+10,779,6.44E-10
+10,780,6.41E-10
+10,781,6.37E-10
+10,782,6.34E-10
+10,783,6.31E-10
+10,784,6.28E-10
+10,785,6.25E-10
+10,786,6.21E-10
+10,787,6.18E-10
+10,788,6.15E-10
+10,789,6.12E-10
+10,790,6.09E-10
+10,791,6.06E-10
+10,792,6.03E-10
+10,793,6.00E-10
+10,794,5.97E-10
+10,795,5.94E-10
+10,796,5.91E-10
+10,797,5.88E-10
+10,798,5.85E-10
+10,799,5.82E-10
+10,800,5.79E-10
+10,801,5.76E-10
+10,802,5.73E-10
+10,803,5.70E-10
+10,804,5.67E-10
+10,805,5.64E-10
+10,806,5.62E-10
+10,807,5.59E-10
+10,808,5.56E-10
+10,809,5.53E-10
+10,810,5.50E-10
+10,811,5.48E-10
+10,812,5.45E-10
+10,813,5.42E-10
+10,814,5.39E-10
+10,815,5.37E-10
+10,816,5.34E-10
+10,817,5.31E-10
+10,818,5.28E-10
+10,819,5.26E-10
+10,820,5.23E-10
+10,821,5.21E-10
+10,822,5.18E-10
+10,823,5.15E-10
+10,824,5.13E-10
+10,825,5.10E-10
+10,826,5.08E-10
+10,827,5.05E-10
+10,828,5.02E-10
+10,829,5.00E-10
+10,830,4.97E-10
+10,831,4.95E-10
+10,832,4.92E-10
+10,833,4.90E-10
+10,834,4.87E-10
+10,835,4.85E-10
+10,836,4.83E-10
+10,837,4.80E-10
+10,838,4.78E-10
+10,839,4.75E-10
+10,840,4.73E-10
+10,841,4.70E-10
+10,842,4.68E-10
+10,843,4.66E-10
+10,844,4.63E-10
+10,845,4.61E-10
+10,846,4.59E-10
+10,847,4.56E-10
+10,848,4.54E-10
+10,849,4.52E-10
+10,850,4.50E-10
+10,851,4.47E-10
+10,852,4.45E-10
+10,853,4.43E-10
+10,854,4.41E-10
+10,855,4.38E-10
+10,856,4.36E-10
+10,857,4.34E-10
+10,858,4.32E-10
+10,859,4.30E-10
+10,860,4.27E-10
+10,861,4.25E-10
+10,862,4.23E-10
+10,863,4.21E-10
+10,864,4.19E-10
+10,865,4.17E-10
+10,866,4.15E-10
+10,867,4.12E-10
+10,868,4.10E-10
+10,869,4.08E-10
+10,870,4.06E-10
+10,871,4.04E-10
+10,872,4.02E-10
+10,873,4.00E-10
+10,874,3.98E-10
+10,875,3.96E-10
+10,876,3.94E-10
+10,877,3.92E-10
+10,878,3.90E-10
+10,879,3.88E-10
+10,880,3.86E-10
+10,881,3.84E-10
+10,882,3.82E-10
+10,883,3.80E-10
+10,884,3.78E-10
+10,885,3.77E-10
+10,886,3.75E-10
+10,887,3.73E-10
+10,888,3.71E-10
+10,889,3.69E-10
+10,890,3.67E-10
+10,891,3.65E-10
+10,892,3.63E-10
+10,893,3.62E-10
+10,894,3.60E-10
+10,895,3.58E-10
+10,896,3.56E-10
+10,897,3.54E-10
+10,898,3.53E-10
+10,899,3.51E-10
+10,900,3.49E-10
+10,901,3.47E-10
+10,902,3.46E-10
+10,903,3.44E-10
+10,904,3.42E-10
+10,905,3.40E-10
+10,906,3.39E-10
+10,907,3.37E-10
+10,908,3.35E-10
+10,909,3.34E-10
+10,910,3.32E-10
+10,911,3.30E-10
+10,912,3.29E-10
+10,913,3.27E-10
+10,914,3.25E-10
+10,915,3.24E-10
+10,916,3.22E-10
+10,917,3.20E-10
+10,918,3.19E-10
+10,919,3.17E-10
+10,920,3.15E-10
+10,921,3.14E-10
+10,922,3.12E-10
+10,923,3.11E-10
+10,924,3.09E-10
+10,925,3.08E-10
+10,926,3.06E-10
+10,927,3.05E-10
+10,928,3.03E-10
+10,929,3.01E-10
+10,930,3.00E-10
+10,931,2.98E-10
+10,932,2.97E-10
+10,933,2.95E-10
+10,934,2.94E-10
+10,935,2.92E-10
+10,936,2.91E-10
+10,937,2.89E-10
+10,938,2.88E-10
+10,939,2.87E-10
+10,940,2.85E-10
+10,941,2.84E-10
+10,942,2.82E-10
+10,943,2.81E-10
+10,944,2.79E-10
+10,945,2.78E-10
+10,946,2.77E-10
+10,947,2.75E-10
+10,948,2.74E-10
+10,949,2.72E-10
+10,950,2.71E-10
+10,951,2.70E-10
+10,952,2.68E-10
+10,953,2.67E-10
+10,954,2.66E-10
+10,955,2.64E-10
+10,956,2.63E-10
+10,957,2.62E-10
+10,958,2.60E-10
+10,959,2.59E-10
+10,960,2.58E-10
+10,961,2.56E-10
+10,962,2.55E-10
+10,963,2.54E-10
+10,964,2.53E-10
+10,965,2.51E-10
+10,966,2.50E-10
+10,967,2.49E-10
+10,968,2.47E-10
+10,969,2.46E-10
+10,970,2.45E-10
+10,971,2.44E-10
+10,972,2.43E-10
+10,973,2.41E-10
+10,974,2.40E-10
+10,975,2.39E-10
+10,976,2.38E-10
+10,977,2.36E-10
+10,978,2.35E-10
+10,979,2.34E-10
+10,980,2.33E-10
+10,981,2.32E-10
+10,982,2.31E-10
+10,983,2.29E-10
+10,984,2.28E-10
+10,985,2.27E-10
+10,986,2.26E-10
+10,987,2.25E-10
+10,988,2.24E-10
+10,989,2.23E-10
+10,990,2.21E-10
+10,991,2.20E-10
+10,992,2.19E-10
+10,993,2.18E-10
+10,994,2.17E-10
+10,995,2.16E-10
+10,996,2.15E-10
+10,997,2.14E-10
+10,998,2.13E-10
+10,999,2.12E-10
+10,1000,2.10E-10
+10,1001,2.09E-10
+10,1002,2.08E-10
+10,1003,2.07E-10
+10,1004,2.06E-10
+10,1005,2.05E-10
+10,1006,2.04E-10
+10,1007,2.03E-10
+10,1008,2.02E-10
+10,1009,2.01E-10
+10,1010,2.00E-10
+10,1011,1.99E-10
+10,1012,1.98E-10
+10,1013,1.97E-10
+10,1014,1.96E-10
+10,1015,1.95E-10
+10,1016,1.94E-10
+10,1017,1.93E-10
+10,1018,1.92E-10
+10,1019,1.91E-10
+10,1020,1.90E-10
+10,1021,1.89E-10
+10,1022,1.88E-10
+10,1023,1.87E-10
+10,1024,1.86E-10
+10,1025,1.85E-10
+10,1026,1.85E-10
+10,1027,1.84E-10
+10,1028,1.83E-10
+10,1029,1.82E-10
+10,1030,1.81E-10
+10,1031,1.80E-10
+10,1032,1.79E-10
+10,1033,1.78E-10
+10,1034,1.77E-10
+10,1035,1.76E-10
+10,1036,1.75E-10
+10,1037,1.75E-10
+10,1038,1.74E-10
+10,1039,1.73E-10
+10,1040,1.72E-10
+10,1041,1.71E-10
+10,1042,1.70E-10
+10,1043,1.69E-10
+10,1044,1.68E-10
+10,1045,1.68E-10
+10,1046,1.67E-10
+10,1047,1.66E-10
+10,1048,1.65E-10
+10,1049,1.64E-10
+10,1050,1.63E-10
+10,1051,1.63E-10
+10,1052,1.62E-10
+10,1053,1.61E-10
+10,1054,1.60E-10
+10,1055,1.59E-10
+10,1056,1.59E-10
+10,1057,1.58E-10
+10,1058,1.57E-10
+10,1059,1.56E-10
+10,1060,1.55E-10
+10,1061,1.55E-10
+10,1062,1.54E-10
+10,1063,1.53E-10
+10,1064,1.52E-10
+10,1065,1.52E-10
+10,1066,1.51E-10
+10,1067,1.50E-10
+10,1068,1.49E-10
+10,1069,1.48E-10
+10,1070,1.48E-10
+10,1071,1.47E-10
+10,1072,1.46E-10
+10,1073,1.45E-10
+10,1074,1.45E-10
+10,1075,1.44E-10
+10,1076,1.43E-10
+10,1077,1.43E-10
+10,1078,1.42E-10
+10,1079,1.41E-10
+10,1080,1.40E-10
+10,1081,1.40E-10
+10,1082,1.39E-10
+10,1083,1.38E-10
+10,1084,1.38E-10
+10,1085,1.37E-10
+10,1086,1.36E-10
+10,1087,1.36E-10
+10,1088,1.35E-10
+10,1089,1.34E-10
+10,1090,1.34E-10
+10,1091,1.33E-10
+10,1092,1.32E-10
+10,1093,1.31E-10
+10,1094,1.31E-10
+10,1095,1.30E-10
+10,1096,1.30E-10
+10,1097,1.29E-10
+10,1098,1.28E-10
+10,1099,1.28E-10
+10,1100,1.27E-10
+10,1101,1.26E-10
+10,1102,1.26E-10
+10,1103,1.25E-10
+10,1104,1.24E-10
+10,1105,1.24E-10
+10,1106,1.23E-10
+10,1107,1.23E-10
+10,1108,1.22E-10
+10,1109,1.21E-10
+10,1110,1.21E-10
+10,1111,1.20E-10
+10,1112,1.19E-10
+10,1113,1.19E-10
+10,1114,1.18E-10
+10,1115,1.18E-10
+10,1116,1.17E-10
+10,1117,1.16E-10
+10,1118,1.16E-10
+10,1119,1.15E-10
+10,1120,1.15E-10
+10,1121,1.14E-10
+10,1122,1.14E-10
+10,1123,1.13E-10
+10,1124,1.12E-10
+10,1125,1.12E-10
+10,1126,1.11E-10
+10,1127,1.11E-10
+10,1128,1.10E-10
+10,1129,1.10E-10
+10,1130,1.09E-10
+10,1131,1.09E-10
+10,1132,1.08E-10
+10,1133,1.07E-10
+10,1134,1.07E-10
+10,1135,1.06E-10
+10,1136,1.06E-10
+10,1137,1.05E-10
+10,1138,1.05E-10
+10,1139,1.04E-10
+10,1140,1.04E-10
+10,1141,1.03E-10
+10,1142,1.03E-10
+10,1143,1.02E-10
+10,1144,1.02E-10
+10,1145,1.01E-10
+10,1146,1.01E-10
+10,1147,1.00E-10
+10,1148,9.96E-11
+10,1149,9.91E-11
+10,1150,9.86E-11
+10,1151,9.81E-11
+10,1152,9.76E-11
+10,1153,9.71E-11
+10,1154,9.66E-11
+10,1155,9.61E-11
+10,1156,9.56E-11
+10,1157,9.51E-11
+10,1158,9.47E-11
+10,1159,9.42E-11
+10,1160,9.37E-11
+10,1161,9.32E-11
+10,1162,9.28E-11
+10,1163,9.23E-11
+10,1164,9.18E-11
+10,1165,9.14E-11
+10,1166,9.09E-11
+10,1167,9.04E-11
+10,1168,9.00E-11
+10,1169,8.95E-11
+10,1170,8.91E-11
+10,1171,8.86E-11
+10,1172,8.82E-11
+10,1173,8.77E-11
+10,1174,8.73E-11
+10,1175,8.69E-11
+10,1176,8.64E-11
+10,1177,8.60E-11
+10,1178,8.55E-11
+10,1179,8.51E-11
+10,1180,8.47E-11
+10,1181,8.43E-11
+10,1182,8.38E-11
+10,1183,8.34E-11
+10,1184,8.30E-11
+10,1185,8.26E-11
+10,1186,8.22E-11
+10,1187,8.17E-11
+10,1188,8.13E-11
+10,1189,8.09E-11
+10,1190,8.05E-11
+10,1191,8.01E-11
+10,1192,7.97E-11
+10,1193,7.93E-11
+10,1194,7.89E-11
+10,1195,7.85E-11
+10,1196,7.81E-11
+10,1197,7.77E-11
+10,1198,7.73E-11
+10,1199,7.69E-11
+10,1200,7.65E-11
+10,1201,7.62E-11
+10,1202,7.58E-11
+10,1203,7.54E-11
+10,1204,7.50E-11
+10,1205,7.46E-11
+10,1206,7.42E-11
+10,1207,7.39E-11
+10,1208,7.35E-11
+10,1209,7.31E-11
+10,1210,7.28E-11
+10,1211,7.24E-11
+10,1212,7.20E-11
+10,1213,7.17E-11
+10,1214,7.13E-11
+10,1215,7.09E-11
+10,1216,7.06E-11
+10,1217,7.02E-11
+10,1218,6.99E-11
+10,1219,6.95E-11
+10,1220,6.92E-11
+10,1221,6.88E-11
+10,1222,6.85E-11
+10,1223,6.81E-11
+10,1224,6.78E-11
+10,1225,6.74E-11
+10,1226,6.71E-11
+10,1227,6.68E-11
+10,1228,6.64E-11
+10,1229,6.61E-11
+10,1230,6.58E-11
+10,1231,6.54E-11
+10,1232,6.51E-11
+10,1233,6.48E-11
+10,1234,6.44E-11
+10,1235,6.41E-11
+10,1236,6.38E-11
+10,1237,6.35E-11
+10,1238,6.32E-11
+10,1239,6.28E-11
+10,1240,6.25E-11
+10,1241,6.22E-11
+10,1242,6.19E-11
+10,1243,6.16E-11
+10,1244,6.13E-11
+10,1245,6.10E-11
+10,1246,6.06E-11
+10,1247,6.03E-11
+10,1248,6.00E-11
+10,1249,5.97E-11
+10,1250,5.94E-11
+10,1251,5.91E-11
+10,1252,5.88E-11
+10,1253,5.85E-11
+10,1254,5.82E-11
+10,1255,5.79E-11
+10,1256,5.77E-11
+10,1257,5.74E-11
+10,1258,5.71E-11
+10,1259,5.68E-11
+10,1260,5.65E-11
+10,1261,5.62E-11
+10,1262,5.59E-11
+10,1263,5.57E-11
+10,1264,5.54E-11
+10,1265,5.51E-11
+10,1266,5.48E-11
+10,1267,5.45E-11
+10,1268,5.43E-11
+10,1269,5.40E-11
+10,1270,5.37E-11
+10,1271,5.34E-11
+10,1272,5.32E-11
+10,1273,5.29E-11
+10,1274,5.26E-11
+10,1275,5.24E-11
+10,1276,5.21E-11
+10,1277,5.18E-11
+10,1278,5.16E-11
+10,1279,5.13E-11
+10,1280,5.11E-11
+10,1281,5.08E-11
+10,1282,5.06E-11
+10,1283,5.03E-11
+10,1284,5.00E-11
+10,1285,4.98E-11
+10,1286,4.95E-11
+10,1287,4.93E-11
+10,1288,4.90E-11
+10,1289,4.88E-11
+10,1290,4.85E-11
+10,1291,4.83E-11
+10,1292,4.81E-11
+10,1293,4.78E-11
+10,1294,4.76E-11
+10,1295,4.73E-11
+10,1296,4.71E-11
+10,1297,4.69E-11
+10,1298,4.66E-11
+10,1299,4.64E-11
+10,1300,4.62E-11
+10,1301,4.59E-11
+10,1302,4.57E-11
+10,1303,4.55E-11
+10,1304,4.52E-11
+10,1305,4.50E-11
+10,1306,4.48E-11
+10,1307,4.45E-11
+10,1308,4.43E-11
+10,1309,4.41E-11
+10,1310,4.39E-11
+10,1311,4.37E-11
+10,1312,4.34E-11
+10,1313,4.32E-11
+10,1314,4.30E-11
+10,1315,4.28E-11
+10,1316,4.26E-11
+10,1317,4.23E-11
+10,1318,4.21E-11
+10,1319,4.19E-11
+10,1320,4.17E-11
+10,1321,4.15E-11
+10,1322,4.13E-11
+10,1323,4.11E-11
+10,1324,4.09E-11
+10,1325,4.07E-11
+10,1326,4.05E-11
+10,1327,4.03E-11
+10,1328,4.01E-11
+10,1329,3.99E-11
+10,1330,3.97E-11
+10,1331,3.95E-11
+10,1332,3.93E-11
+10,1333,3.91E-11
+10,1334,3.89E-11
+10,1335,3.87E-11
+10,1336,3.85E-11
+10,1337,3.83E-11
+10,1338,3.81E-11
+10,1339,3.79E-11
+10,1340,3.77E-11
+10,1341,3.75E-11
+10,1342,3.73E-11
+10,1343,3.71E-11
+10,1344,3.69E-11
+10,1345,3.68E-11
+10,1346,3.66E-11
+10,1347,3.64E-11
+10,1348,3.62E-11
+10,1349,3.60E-11
+10,1350,3.58E-11
+10,1351,3.57E-11
+10,1352,3.55E-11
+10,1353,3.53E-11
+10,1354,3.51E-11
+10,1355,3.49E-11
+10,1356,3.48E-11
+10,1357,3.46E-11
+10,1358,3.44E-11
+10,1359,3.42E-11
+10,1360,3.41E-11
+10,1361,3.39E-11
+10,1362,3.37E-11
+10,1363,3.36E-11
+10,1364,3.34E-11
+10,1365,3.32E-11
+10,1366,3.31E-11
+10,1367,3.29E-11
+10,1368,3.27E-11
+10,1369,3.26E-11
+10,1370,3.24E-11
+10,1371,3.22E-11
+10,1372,3.21E-11
+10,1373,3.19E-11
+10,1374,3.17E-11
+10,1375,3.16E-11
+10,1376,3.14E-11
+10,1377,3.13E-11
+10,1378,3.11E-11
+10,1379,3.09E-11
+10,1380,3.08E-11
+10,1381,3.06E-11
+10,1382,3.05E-11
+10,1383,3.03E-11
+10,1384,3.02E-11
+10,1385,3.00E-11
+10,1386,2.99E-11
+10,1387,2.97E-11
+10,1388,2.96E-11
+10,1389,2.94E-11
+10,1390,2.93E-11
+10,1391,2.91E-11
+10,1392,2.90E-11
+10,1393,2.88E-11
+10,1394,2.87E-11
+10,1395,2.85E-11
+10,1396,2.84E-11
+10,1397,2.83E-11
+10,1398,2.81E-11
+10,1399,2.80E-11
+10,1400,2.78E-11
+10,1401,2.77E-11
+10,1402,2.75E-11
+10,1403,2.74E-11
+10,1404,2.73E-11
+10,1405,2.71E-11
+10,1406,2.70E-11
+10,1407,2.69E-11
+10,1408,2.67E-11
+10,1409,2.66E-11
+10,1410,2.65E-11
+10,1411,2.63E-11
+10,1412,2.62E-11
+10,1413,2.61E-11
+10,1414,2.59E-11
+10,1415,2.58E-11
+10,1416,2.57E-11
+10,1417,2.55E-11
+10,1418,2.54E-11
+10,1419,2.53E-11
+10,1420,2.52E-11
+10,1421,2.50E-11
+10,1422,2.49E-11
+10,1423,2.48E-11
+10,1424,2.46E-11
+10,1425,2.45E-11
+10,1426,2.44E-11
+10,1427,2.43E-11
+10,1428,2.42E-11
+10,1429,2.40E-11
+10,1430,2.39E-11
+10,1431,2.38E-11
+10,1432,2.37E-11
+10,1433,2.36E-11
+10,1434,2.34E-11
+10,1435,2.33E-11
+10,1436,2.32E-11
+10,1437,2.31E-11
+10,1438,2.30E-11
+10,1439,2.28E-11
+10,1440,2.27E-11
+10,1441,2.26E-11
+10,1442,2.25E-11
+10,1443,2.24E-11
+10,1444,2.23E-11
+10,1445,2.22E-11
+10,1446,2.21E-11
+10,1447,2.19E-11
+10,1448,2.18E-11
+10,1449,2.17E-11
+10,1450,2.16E-11
+10,1451,2.15E-11
+10,1452,2.14E-11
+10,1453,2.13E-11
+10,1454,2.12E-11
+10,1455,2.11E-11
+10,1456,2.10E-11
+10,1457,2.09E-11
+10,1458,2.08E-11
+10,1459,2.06E-11
+10,1460,2.05E-11
+10,1461,2.04E-11
+10,1462,2.03E-11
+10,1463,2.02E-11
+10,1464,2.01E-11
+10,1465,2.00E-11
+10,1466,1.99E-11
+10,1467,1.98E-11
+10,1468,1.97E-11
+10,1469,1.96E-11
+10,1470,1.95E-11
+10,1471,1.94E-11
+10,1472,1.93E-11
+10,1473,1.92E-11
+10,1474,1.91E-11
+10,1475,1.90E-11
+10,1476,1.89E-11
+10,1477,1.89E-11
+10,1478,1.88E-11
+10,1479,1.87E-11
+10,1480,1.86E-11
+10,1481,1.85E-11
+10,1482,1.84E-11
+10,1483,1.83E-11
+10,1484,1.82E-11
+10,1485,1.81E-11
+10,1486,1.80E-11
+10,1487,1.79E-11
+10,1488,1.78E-11
+10,1489,1.77E-11
+10,1490,1.77E-11
+10,1491,1.76E-11
+10,1492,1.75E-11
+10,1493,1.74E-11
+10,1494,1.73E-11
+10,1495,1.72E-11
+10,1496,1.71E-11
+10,1497,1.70E-11
+10,1498,1.70E-11
+10,1499,1.69E-11
+10,1500,1.68E-11
+10,1501,1.67E-11
+10,1502,1.66E-11
+10,1503,1.65E-11
+10,1504,1.64E-11
+10,1505,1.64E-11
+10,1506,1.63E-11
+10,1507,1.62E-11
+10,1508,1.61E-11
+10,1509,1.60E-11
+10,1510,1.60E-11
+10,1511,1.59E-11
+10,1512,1.58E-11
+10,1513,1.57E-11
+10,1514,1.56E-11
+10,1515,1.56E-11
+10,1516,1.55E-11
+10,1517,1.54E-11
+10,1518,1.53E-11
+10,1519,1.52E-11
+10,1520,1.52E-11
+10,1521,1.51E-11
+10,1522,1.50E-11
+10,1523,1.49E-11
+10,1524,1.49E-11
+10,1525,1.48E-11
+10,1526,1.47E-11
+10,1527,1.46E-11
+10,1528,1.46E-11
+10,1529,1.45E-11
+10,1530,1.44E-11
+10,1531,1.43E-11
+10,1532,1.43E-11
+10,1533,1.42E-11
+10,1534,1.41E-11
+10,1535,1.41E-11
+10,1536,1.40E-11
+10,1537,1.39E-11
+10,1538,1.38E-11
+10,1539,1.38E-11
+10,1540,1.37E-11
+10,1541,1.36E-11
+10,1542,1.36E-11
+10,1543,1.35E-11
+10,1544,1.34E-11
+10,1545,1.34E-11
+10,1546,1.33E-11
+10,1547,1.32E-11
+10,1548,1.32E-11
+10,1549,1.31E-11
+10,1550,1.30E-11
+10,1551,1.30E-11
+10,1552,1.29E-11
+10,1553,1.28E-11
+10,1554,1.28E-11
+10,1555,1.27E-11
+10,1556,1.26E-11
+10,1557,1.26E-11
+10,1558,1.25E-11
+10,1559,1.25E-11
+10,1560,1.24E-11
+10,1561,1.23E-11
+10,1562,1.23E-11
+10,1563,1.22E-11
+10,1564,1.21E-11
+10,1565,1.21E-11
+10,1566,1.20E-11
+10,1567,1.20E-11
+10,1568,1.19E-11
+10,1569,1.18E-11
+10,1570,1.18E-11
+10,1571,1.17E-11
+10,1572,1.17E-11
+10,1573,1.16E-11
+10,1574,1.15E-11
+10,1575,1.15E-11
+10,1576,1.14E-11
+10,1577,1.14E-11
+10,1578,1.13E-11
+10,1579,1.13E-11
+10,1580,1.12E-11
+10,1581,1.11E-11
+10,1582,1.11E-11
+10,1583,1.10E-11
+10,1584,1.10E-11
+10,1585,1.09E-11
+10,1586,1.09E-11
+10,1587,1.08E-11
+10,1588,1.08E-11
+10,1589,1.07E-11
+10,1590,1.06E-11
+10,1591,1.06E-11
+10,1592,1.05E-11
+10,1593,1.05E-11
+10,1594,1.04E-11
+10,1595,1.04E-11
+10,1596,1.03E-11
+10,1597,1.03E-11
+10,1598,1.02E-11
+10,1599,1.02E-11
+10,1600,1.01E-11
+10,1601,1.01E-11
+10,1602,1.00E-11
+10,1603,9.97E-12
+10,1604,9.92E-12
+10,1605,9.87E-12
+10,1606,9.82E-12
+10,1607,9.77E-12
+10,1608,9.72E-12
+10,1609,9.67E-12
+10,1610,9.62E-12
+10,1611,9.57E-12
+10,1612,9.52E-12
+10,1613,9.48E-12
+10,1614,9.43E-12
+10,1615,9.38E-12
+10,1616,9.33E-12
+10,1617,9.29E-12
+10,1618,9.24E-12
+10,1619,9.19E-12
+10,1620,9.15E-12
+10,1621,9.10E-12
+10,1622,9.05E-12
+10,1623,9.01E-12
+10,1624,8.96E-12
+10,1625,8.92E-12
+10,1626,8.87E-12
+10,1627,8.83E-12
+10,1628,8.78E-12
+10,1629,8.74E-12
+10,1630,8.69E-12
+10,1631,8.65E-12
+10,1632,8.61E-12
+10,1633,8.56E-12
+10,1634,8.52E-12
+10,1635,8.48E-12
+10,1636,8.43E-12
+10,1637,8.39E-12
+10,1638,8.35E-12
+10,1639,8.31E-12
+10,1640,8.27E-12
+10,1641,8.22E-12
+10,1642,8.18E-12
+10,1643,8.14E-12
+10,1644,8.10E-12
+10,1645,8.06E-12
+10,1646,8.02E-12
+10,1647,7.98E-12
+10,1648,7.94E-12
+10,1649,7.90E-12
+10,1650,7.86E-12
+10,1651,7.82E-12
+10,1652,7.78E-12
+10,1653,7.74E-12
+10,1654,7.70E-12
+10,1655,7.66E-12
+10,1656,7.62E-12
+10,1657,7.58E-12
+10,1658,7.55E-12
+10,1659,7.51E-12
+10,1660,7.47E-12
+10,1661,7.43E-12
+10,1662,7.40E-12
+10,1663,7.36E-12
+10,1664,7.32E-12
+10,1665,7.28E-12
+10,1666,7.25E-12
+10,1667,7.21E-12
+10,1668,7.17E-12
+10,1669,7.14E-12
+10,1670,7.10E-12
+10,1671,7.07E-12
+10,1672,7.03E-12
+10,1673,7.00E-12
+10,1674,6.96E-12
+10,1675,6.92E-12
+10,1676,6.89E-12
+10,1677,6.85E-12
+10,1678,6.82E-12
+10,1679,6.79E-12
+10,1680,6.75E-12
+10,1681,6.72E-12
+10,1682,6.68E-12
+10,1683,6.65E-12
+10,1684,6.62E-12
+10,1685,6.58E-12
+10,1686,6.55E-12
+10,1687,6.52E-12
+10,1688,6.48E-12
+10,1689,6.45E-12
+10,1690,6.42E-12
+10,1691,6.39E-12
+10,1692,6.35E-12
+10,1693,6.32E-12
+10,1694,6.29E-12
+10,1695,6.26E-12
+10,1696,6.23E-12
+10,1697,6.20E-12
+10,1698,6.16E-12
+10,1699,6.13E-12
+10,1700,6.10E-12
+10,1701,6.07E-12
+10,1702,6.04E-12
+10,1703,6.01E-12
+10,1704,5.98E-12
+10,1705,5.95E-12
+10,1706,5.92E-12
+10,1707,5.89E-12
+10,1708,5.86E-12
+10,1709,5.83E-12
+10,1710,5.80E-12
+10,1711,5.77E-12
+10,1712,5.74E-12
+10,1713,5.71E-12
+10,1714,5.68E-12
+10,1715,5.66E-12
+10,1716,5.63E-12
+10,1717,5.60E-12
+10,1718,5.57E-12
+10,1719,5.54E-12
+10,1720,5.51E-12
+10,1721,5.49E-12
+10,1722,5.46E-12
+10,1723,5.43E-12
+10,1724,5.40E-12
+10,1725,5.38E-12
+10,1726,5.35E-12
+10,1727,5.32E-12
+10,1728,5.30E-12
+10,1729,5.27E-12
+10,1730,5.24E-12
+10,1731,5.22E-12
+10,1732,5.19E-12
+10,1733,5.16E-12
+10,1734,5.14E-12
+10,1735,5.11E-12
+10,1736,5.09E-12
+10,1737,5.06E-12
+10,1738,5.03E-12
+10,1739,5.01E-12
+10,1740,4.98E-12
+10,1741,4.96E-12
+10,1742,4.93E-12
+10,1743,4.91E-12
+10,1744,4.88E-12
+10,1745,4.86E-12
+10,1746,4.84E-12
+10,1747,4.81E-12
+10,1748,4.79E-12
+10,1749,4.76E-12
+10,1750,4.74E-12
+10,1751,4.71E-12
+10,1752,4.69E-12
+10,1753,4.67E-12
+10,1754,4.64E-12
+10,1755,4.62E-12
+10,1756,4.60E-12
+10,1757,4.57E-12
+10,1758,4.55E-12
+10,1759,4.53E-12
+10,1760,4.50E-12
+10,1761,4.48E-12
+10,1762,4.46E-12
+10,1763,4.44E-12
+10,1764,4.41E-12
+10,1765,4.39E-12
+10,1766,4.37E-12
+10,1767,4.35E-12
+10,1768,4.33E-12
+10,1769,4.30E-12
+10,1770,4.28E-12
+10,1771,4.26E-12
+10,1772,4.24E-12
+10,1773,4.22E-12
+10,1774,4.20E-12
+10,1775,4.18E-12
+10,1776,4.15E-12
+10,1777,4.13E-12
+10,1778,4.11E-12
+10,1779,4.09E-12
+10,1780,4.07E-12
+10,1781,4.05E-12
+10,1782,4.03E-12
+10,1783,4.01E-12
+10,1784,3.99E-12
+10,1785,3.97E-12
+10,1786,3.95E-12
+10,1787,3.93E-12
+10,1788,3.91E-12
+10,1789,3.89E-12
+10,1790,3.87E-12
+10,1791,3.85E-12
+10,1792,3.83E-12
+10,1793,3.81E-12
+10,1794,3.79E-12
+10,1795,3.77E-12
+10,1796,3.75E-12
+10,1797,3.74E-12
+10,1798,3.72E-12
+10,1799,3.70E-12
+10,1800,3.68E-12
+10,1801,3.66E-12
+10,1802,3.64E-12
+10,1803,3.62E-12
+10,1804,3.61E-12
+10,1805,3.59E-12
+10,1806,3.57E-12
+10,1807,3.55E-12
+10,1808,3.53E-12
+10,1809,3.52E-12
+10,1810,3.50E-12
+10,1811,3.48E-12
+10,1812,3.46E-12
+10,1813,3.45E-12
+10,1814,3.43E-12
+10,1815,3.41E-12
+10,1816,3.39E-12
+10,1817,3.38E-12
+10,1818,3.36E-12
+10,1819,3.34E-12
+10,1820,3.33E-12
+10,1821,3.31E-12
+10,1822,3.29E-12
+10,1823,3.28E-12
+10,1824,3.26E-12
+10,1825,3.24E-12
+10,1826,3.23E-12
+10,1827,3.21E-12
+10,1828,3.19E-12
+10,1829,3.18E-12
+10,1830,3.16E-12
+10,1831,3.15E-12
+10,1832,3.13E-12
+10,1833,3.11E-12
+10,1834,3.10E-12
+10,1835,3.08E-12
+10,1836,3.07E-12
+10,1837,3.05E-12
+10,1838,3.04E-12
+10,1839,3.02E-12
+10,1840,3.01E-12
+10,1841,2.99E-12
+10,1842,2.98E-12
+10,1843,2.96E-12
+10,1844,2.95E-12
+10,1845,2.93E-12
+10,1846,2.92E-12
+10,1847,2.90E-12
+10,1848,2.89E-12
+10,1849,2.87E-12
+10,1850,2.86E-12
+10,1851,2.84E-12
+10,1852,2.83E-12
+10,1853,2.81E-12
+10,1854,2.80E-12
+10,1855,2.79E-12
+10,1856,2.77E-12
+10,1857,2.76E-12
+10,1858,2.74E-12
+10,1859,2.73E-12
+10,1860,2.72E-12
+10,1861,2.70E-12
+10,1862,2.69E-12
+10,1863,2.68E-12
+10,1864,2.66E-12
+10,1865,2.65E-12
+10,1866,2.64E-12
+10,1867,2.62E-12
+10,1868,2.61E-12
+10,1869,2.60E-12
+10,1870,2.58E-12
+10,1871,2.57E-12
+10,1872,2.56E-12
+10,1873,2.54E-12
+10,1874,2.53E-12
+10,1875,2.52E-12
+10,1876,2.51E-12
+10,1877,2.49E-12
+10,1878,2.48E-12
+10,1879,2.47E-12
+10,1880,2.46E-12
+10,1881,2.44E-12
+10,1882,2.43E-12
+10,1883,2.42E-12
+10,1884,2.41E-12
+10,1885,2.39E-12
+10,1886,2.38E-12
+10,1887,2.37E-12
+10,1888,2.36E-12
+10,1889,2.35E-12
+10,1890,2.33E-12
+10,1891,2.32E-12
+10,1892,2.31E-12
+10,1893,2.30E-12
+10,1894,2.29E-12
+10,1895,2.28E-12
+10,1896,2.26E-12
+10,1897,2.25E-12
+10,1898,2.24E-12
+10,1899,2.23E-12
+10,1900,2.22E-12
+10,1901,2.21E-12
+10,1902,2.20E-12
+10,1903,2.19E-12
+10,1904,2.17E-12
+10,1905,2.16E-12
+10,1906,2.15E-12
+10,1907,2.14E-12
+10,1908,2.13E-12
+10,1909,2.12E-12
+10,1910,2.11E-12
+10,1911,2.10E-12
+10,1912,2.09E-12
+10,1913,2.08E-12
+10,1914,2.07E-12
+10,1915,2.06E-12
+10,1916,2.05E-12
+10,1917,2.04E-12
+10,1918,2.03E-12
+10,1919,2.02E-12
+10,1920,2.01E-12
+10,1921,2.00E-12
+10,1922,1.99E-12
+10,1923,1.98E-12
+10,1924,1.97E-12
+10,1925,1.96E-12
+10,1926,1.95E-12
+10,1927,1.94E-12
+10,1928,1.93E-12
+10,1929,1.92E-12
+10,1930,1.91E-12
+10,1931,1.90E-12
+10,1932,1.89E-12
+10,1933,1.88E-12
+10,1934,1.87E-12
+10,1935,1.86E-12
+10,1936,1.85E-12
+10,1937,1.84E-12
+10,1938,1.83E-12
+10,1939,1.82E-12
+10,1940,1.81E-12
+10,1941,1.80E-12
+10,1942,1.79E-12
+10,1943,1.79E-12
+10,1944,1.78E-12
+10,1945,1.77E-12
+10,1946,1.76E-12
+10,1947,1.75E-12
+10,1948,1.74E-12
+10,1949,1.73E-12
+10,1950,1.72E-12
+10,1951,1.71E-12
+10,1952,1.71E-12
+10,1953,1.70E-12
+10,1954,1.69E-12
+10,1955,1.68E-12
+10,1956,1.67E-12
+10,1957,1.66E-12
+10,1958,1.65E-12
+10,1959,1.65E-12
+10,1960,1.64E-12
+10,1961,1.63E-12
+10,1962,1.62E-12
+10,1963,1.61E-12
+10,1964,1.61E-12
+10,1965,1.60E-12
+10,1966,1.59E-12
+10,1967,1.58E-12
+10,1968,1.57E-12
+10,1969,1.57E-12
+10,1970,1.56E-12
+10,1971,1.55E-12
+10,1972,1.54E-12
+10,1973,1.53E-12
+10,1974,1.53E-12
+10,1975,1.52E-12
+10,1976,1.51E-12
+10,1977,1.50E-12
+10,1978,1.50E-12
+10,1979,1.49E-12
+10,1980,1.48E-12
+10,1981,1.47E-12
+10,1982,1.47E-12
+10,1983,1.46E-12
+10,1984,1.45E-12
+10,1985,1.44E-12
+10,1986,1.44E-12
+10,1987,1.43E-12
+10,1988,1.42E-12
+10,1989,1.41E-12
+10,1990,1.41E-12
+10,1991,1.40E-12
+10,1992,1.39E-12
+10,1993,1.39E-12
+10,1994,1.38E-12
+10,1995,1.37E-12
+10,1996,1.37E-12
+10,1997,1.36E-12
+10,1998,1.35E-12
+10,1999,1.34E-12
+10,2000,1.34E-12
+11,1,3.10E-07
+11,2,3.05E-07
+11,3,3.00E-07
+11,4,2.96E-07
+11,5,2.91E-07
+11,6,2.87E-07
+11,7,2.82E-07
+11,8,2.78E-07
+11,9,2.74E-07
+11,10,2.69E-07
+11,11,2.65E-07
+11,12,2.61E-07
+11,13,2.57E-07
+11,14,2.53E-07
+11,15,2.49E-07
+11,16,2.45E-07
+11,17,2.42E-07
+11,18,2.38E-07
+11,19,2.34E-07
+11,20,2.31E-07
+11,21,2.27E-07
+11,22,2.24E-07
+11,23,2.20E-07
+11,24,2.17E-07
+11,25,2.13E-07
+11,26,2.10E-07
+11,27,2.07E-07
+11,28,2.04E-07
+11,29,2.01E-07
+11,30,1.98E-07
+11,31,1.95E-07
+11,32,1.92E-07
+11,33,1.89E-07
+11,34,1.86E-07
+11,35,1.83E-07
+11,36,1.80E-07
+11,37,1.78E-07
+11,38,1.75E-07
+11,39,1.72E-07
+11,40,1.70E-07
+11,41,1.67E-07
+11,42,1.65E-07
+11,43,1.62E-07
+11,44,1.60E-07
+11,45,1.58E-07
+11,46,1.55E-07
+11,47,1.53E-07
+11,48,1.51E-07
+11,49,1.48E-07
+11,50,1.46E-07
+11,51,1.44E-07
+11,52,1.42E-07
+11,53,1.40E-07
+11,54,1.38E-07
+11,55,1.36E-07
+11,56,1.34E-07
+11,57,1.32E-07
+11,58,1.30E-07
+11,59,1.28E-07
+11,60,1.27E-07
+11,61,1.25E-07
+11,62,1.23E-07
+11,63,1.21E-07
+11,64,1.20E-07
+11,65,1.18E-07
+11,66,1.16E-07
+11,67,1.15E-07
+11,68,1.13E-07
+11,69,1.12E-07
+11,70,1.10E-07
+11,71,1.08E-07
+11,72,1.07E-07
+11,73,1.06E-07
+11,74,1.04E-07
+11,75,1.03E-07
+11,76,1.01E-07
+11,77,9.99E-08
+11,78,9.86E-08
+11,79,9.72E-08
+11,80,9.59E-08
+11,81,9.47E-08
+11,82,9.34E-08
+11,83,9.22E-08
+11,84,9.09E-08
+11,85,8.97E-08
+11,86,8.86E-08
+11,87,8.74E-08
+11,88,8.63E-08
+11,89,8.51E-08
+11,90,8.40E-08
+11,91,8.29E-08
+11,92,8.19E-08
+11,93,8.08E-08
+11,94,7.98E-08
+11,95,7.88E-08
+11,96,7.77E-08
+11,97,7.68E-08
+11,98,7.58E-08
+11,99,7.48E-08
+11,100,7.39E-08
+11,101,7.30E-08
+11,102,7.20E-08
+11,103,7.11E-08
+11,104,7.03E-08
+11,105,6.94E-08
+11,106,6.85E-08
+11,107,6.77E-08
+11,108,6.68E-08
+11,109,6.60E-08
+11,110,6.52E-08
+11,111,6.44E-08
+11,112,6.36E-08
+11,113,6.29E-08
+11,114,6.21E-08
+11,115,6.14E-08
+11,116,6.06E-08
+11,117,5.99E-08
+11,118,5.92E-08
+11,119,5.85E-08
+11,120,5.78E-08
+11,121,5.71E-08
+11,122,5.64E-08
+11,123,5.58E-08
+11,124,5.51E-08
+11,125,5.45E-08
+11,126,5.38E-08
+11,127,5.32E-08
+11,128,5.26E-08
+11,129,5.20E-08
+11,130,5.14E-08
+11,131,5.08E-08
+11,132,5.02E-08
+11,133,4.96E-08
+11,134,4.91E-08
+11,135,4.85E-08
+11,136,4.80E-08
+11,137,4.74E-08
+11,138,4.69E-08
+11,139,4.64E-08
+11,140,4.58E-08
+11,141,4.53E-08
+11,142,4.48E-08
+11,143,4.43E-08
+11,144,4.38E-08
+11,145,4.34E-08
+11,146,4.29E-08
+11,147,4.24E-08
+11,148,4.19E-08
+11,149,4.15E-08
+11,150,4.10E-08
+11,151,4.06E-08
+11,152,4.02E-08
+11,153,3.97E-08
+11,154,3.93E-08
+11,155,3.89E-08
+11,156,3.85E-08
+11,157,3.81E-08
+11,158,3.77E-08
+11,159,3.73E-08
+11,160,3.69E-08
+11,161,3.65E-08
+11,162,3.61E-08
+11,163,3.57E-08
+11,164,3.53E-08
+11,165,3.50E-08
+11,166,3.46E-08
+11,167,3.43E-08
+11,168,3.39E-08
+11,169,3.36E-08
+11,170,3.32E-08
+11,171,3.29E-08
+11,172,3.26E-08
+11,173,3.22E-08
+11,174,3.19E-08
+11,175,3.16E-08
+11,176,3.13E-08
+11,177,3.09E-08
+11,178,3.06E-08
+11,179,3.03E-08
+11,180,3.00E-08
+11,181,2.97E-08
+11,182,2.94E-08
+11,183,2.92E-08
+11,184,2.89E-08
+11,185,2.86E-08
+11,186,2.83E-08
+11,187,2.80E-08
+11,188,2.78E-08
+11,189,2.75E-08
+11,190,2.72E-08
+11,191,2.70E-08
+11,192,2.67E-08
+11,193,2.65E-08
+11,194,2.62E-08
+11,195,2.60E-08
+11,196,2.57E-08
+11,197,2.55E-08
+11,198,2.52E-08
+11,199,2.50E-08
+11,200,2.48E-08
+11,201,2.45E-08
+11,202,2.43E-08
+11,203,2.41E-08
+11,204,2.39E-08
+11,205,2.37E-08
+11,206,2.34E-08
+11,207,2.32E-08
+11,208,2.30E-08
+11,209,2.28E-08
+11,210,2.26E-08
+11,211,2.24E-08
+11,212,2.22E-08
+11,213,2.20E-08
+11,214,2.18E-08
+11,215,2.16E-08
+11,216,2.14E-08
+11,217,2.12E-08
+11,218,2.10E-08
+11,219,2.08E-08
+11,220,2.07E-08
+11,221,2.05E-08
+11,222,2.03E-08
+11,223,2.01E-08
+11,224,2.00E-08
+11,225,1.98E-08
+11,226,1.96E-08
+11,227,1.94E-08
+11,228,1.93E-08
+11,229,1.91E-08
+11,230,1.90E-08
+11,231,1.88E-08
+11,232,1.86E-08
+11,233,1.85E-08
+11,234,1.83E-08
+11,235,1.82E-08
+11,236,1.80E-08
+11,237,1.79E-08
+11,238,1.77E-08
+11,239,1.76E-08
+11,240,1.74E-08
+11,241,1.73E-08
+11,242,1.71E-08
+11,243,1.70E-08
+11,244,1.69E-08
+11,245,1.67E-08
+11,246,1.66E-08
+11,247,1.65E-08
+11,248,1.63E-08
+11,249,1.62E-08
+11,250,1.61E-08
+11,251,1.59E-08
+11,252,1.58E-08
+11,253,1.57E-08
+11,254,1.56E-08
+11,255,1.54E-08
+11,256,1.53E-08
+11,257,1.52E-08
+11,258,1.51E-08
+11,259,1.50E-08
+11,260,1.48E-08
+11,261,1.47E-08
+11,262,1.46E-08
+11,263,1.45E-08
+11,264,1.44E-08
+11,265,1.43E-08
+11,266,1.42E-08
+11,267,1.41E-08
+11,268,1.40E-08
+11,269,1.38E-08
+11,270,1.37E-08
+11,271,1.36E-08
+11,272,1.35E-08
+11,273,1.34E-08
+11,274,1.33E-08
+11,275,1.32E-08
+11,276,1.31E-08
+11,277,1.30E-08
+11,278,1.29E-08
+11,279,1.28E-08
+11,280,1.28E-08
+11,281,1.27E-08
+11,282,1.26E-08
+11,283,1.25E-08
+11,284,1.24E-08
+11,285,1.23E-08
+11,286,1.22E-08
+11,287,1.21E-08
+11,288,1.20E-08
+11,289,1.19E-08
+11,290,1.19E-08
+11,291,1.18E-08
+11,292,1.17E-08
+11,293,1.16E-08
+11,294,1.15E-08
+11,295,1.14E-08
+11,296,1.14E-08
+11,297,1.13E-08
+11,298,1.12E-08
+11,299,1.11E-08
+11,300,1.11E-08
+11,301,1.10E-08
+11,302,1.09E-08
+11,303,1.08E-08
+11,304,1.07E-08
+11,305,1.07E-08
+11,306,1.06E-08
+11,307,1.05E-08
+11,308,1.05E-08
+11,309,1.04E-08
+11,310,1.03E-08
+11,311,1.02E-08
+11,312,1.02E-08
+11,313,1.01E-08
+11,314,1.00E-08
+11,315,9.98E-09
+11,316,9.91E-09
+11,317,9.84E-09
+11,318,9.78E-09
+11,319,9.71E-09
+11,320,9.65E-09
+11,321,9.59E-09
+11,322,9.52E-09
+11,323,9.46E-09
+11,324,9.40E-09
+11,325,9.34E-09
+11,326,9.28E-09
+11,327,9.22E-09
+11,328,9.16E-09
+11,329,9.10E-09
+11,330,9.04E-09
+11,331,8.98E-09
+11,332,8.93E-09
+11,333,8.87E-09
+11,334,8.81E-09
+11,335,8.76E-09
+11,336,8.70E-09
+11,337,8.65E-09
+11,338,8.59E-09
+11,339,8.54E-09
+11,340,8.48E-09
+11,341,8.43E-09
+11,342,8.38E-09
+11,343,8.33E-09
+11,344,8.28E-09
+11,345,8.22E-09
+11,346,8.17E-09
+11,347,8.12E-09
+11,348,8.07E-09
+11,349,8.02E-09
+11,350,7.97E-09
+11,351,7.93E-09
+11,352,7.88E-09
+11,353,7.83E-09
+11,354,7.78E-09
+11,355,7.74E-09
+11,356,7.69E-09
+11,357,7.64E-09
+11,358,7.60E-09
+11,359,7.55E-09
+11,360,7.51E-09
+11,361,7.46E-09
+11,362,7.42E-09
+11,363,7.37E-09
+11,364,7.33E-09
+11,365,7.29E-09
+11,366,7.24E-09
+11,367,7.20E-09
+11,368,7.16E-09
+11,369,7.12E-09
+11,370,7.07E-09
+11,371,7.03E-09
+11,372,6.99E-09
+11,373,6.95E-09
+11,374,6.91E-09
+11,375,6.87E-09
+11,376,6.83E-09
+11,377,6.79E-09
+11,378,6.75E-09
+11,379,6.71E-09
+11,380,6.68E-09
+11,381,6.64E-09
+11,382,6.60E-09
+11,383,6.56E-09
+11,384,6.52E-09
+11,385,6.49E-09
+11,386,6.45E-09
+11,387,6.41E-09
+11,388,6.38E-09
+11,389,6.34E-09
+11,390,6.31E-09
+11,391,6.27E-09
+11,392,6.24E-09
+11,393,6.20E-09
+11,394,6.17E-09
+11,395,6.13E-09
+11,396,6.10E-09
+11,397,6.06E-09
+11,398,6.03E-09
+11,399,6.00E-09
+11,400,5.96E-09
+11,401,5.93E-09
+11,402,5.90E-09
+11,403,5.87E-09
+11,404,5.83E-09
+11,405,5.80E-09
+11,406,5.77E-09
+11,407,5.74E-09
+11,408,5.71E-09
+11,409,5.68E-09
+11,410,5.65E-09
+11,411,5.61E-09
+11,412,5.58E-09
+11,413,5.55E-09
+11,414,5.52E-09
+11,415,5.49E-09
+11,416,5.46E-09
+11,417,5.44E-09
+11,418,5.41E-09
+11,419,5.38E-09
+11,420,5.35E-09
+11,421,5.32E-09
+11,422,5.29E-09
+11,423,5.26E-09
+11,424,5.24E-09
+11,425,5.21E-09
+11,426,5.18E-09
+11,427,5.15E-09
+11,428,5.12E-09
+11,429,5.10E-09
+11,430,5.07E-09
+11,431,5.04E-09
+11,432,5.02E-09
+11,433,4.99E-09
+11,434,4.96E-09
+11,435,4.94E-09
+11,436,4.91E-09
+11,437,4.89E-09
+11,438,4.86E-09
+11,439,4.84E-09
+11,440,4.81E-09
+11,441,4.79E-09
+11,442,4.76E-09
+11,443,4.74E-09
+11,444,4.71E-09
+11,445,4.69E-09
+11,446,4.66E-09
+11,447,4.64E-09
+11,448,4.61E-09
+11,449,4.59E-09
+11,450,4.57E-09
+11,451,4.54E-09
+11,452,4.52E-09
+11,453,4.50E-09
+11,454,4.47E-09
+11,455,4.45E-09
+11,456,4.43E-09
+11,457,4.41E-09
+11,458,4.38E-09
+11,459,4.36E-09
+11,460,4.34E-09
+11,461,4.32E-09
+11,462,4.29E-09
+11,463,4.27E-09
+11,464,4.25E-09
+11,465,4.23E-09
+11,466,4.21E-09
+11,467,4.18E-09
+11,468,4.16E-09
+11,469,4.14E-09
+11,470,4.12E-09
+11,471,4.10E-09
+11,472,4.08E-09
+11,473,4.06E-09
+11,474,4.04E-09
+11,475,4.02E-09
+11,476,4.00E-09
+11,477,3.98E-09
+11,478,3.96E-09
+11,479,3.94E-09
+11,480,3.92E-09
+11,481,3.90E-09
+11,482,3.88E-09
+11,483,3.86E-09
+11,484,3.84E-09
+11,485,3.82E-09
+11,486,3.80E-09
+11,487,3.78E-09
+11,488,3.76E-09
+11,489,3.74E-09
+11,490,3.72E-09
+11,491,3.70E-09
+11,492,3.69E-09
+11,493,3.67E-09
+11,494,3.65E-09
+11,495,3.63E-09
+11,496,3.61E-09
+11,497,3.59E-09
+11,498,3.58E-09
+11,499,3.56E-09
+11,500,3.54E-09
+11,501,3.52E-09
+11,502,3.50E-09
+11,503,3.49E-09
+11,504,3.47E-09
+11,505,3.45E-09
+11,506,3.43E-09
+11,507,3.42E-09
+11,508,3.40E-09
+11,509,3.38E-09
+11,510,3.36E-09
+11,511,3.35E-09
+11,512,3.33E-09
+11,513,3.31E-09
+11,514,3.30E-09
+11,515,3.28E-09
+11,516,3.26E-09
+11,517,3.25E-09
+11,518,3.23E-09
+11,519,3.22E-09
+11,520,3.20E-09
+11,521,3.18E-09
+11,522,3.17E-09
+11,523,3.15E-09
+11,524,3.13E-09
+11,525,3.12E-09
+11,526,3.10E-09
+11,527,3.09E-09
+11,528,3.07E-09
+11,529,3.06E-09
+11,530,3.04E-09
+11,531,3.03E-09
+11,532,3.01E-09
+11,533,3.00E-09
+11,534,2.98E-09
+11,535,2.97E-09
+11,536,2.95E-09
+11,537,2.94E-09
+11,538,2.92E-09
+11,539,2.91E-09
+11,540,2.89E-09
+11,541,2.88E-09
+11,542,2.86E-09
+11,543,2.85E-09
+11,544,2.83E-09
+11,545,2.82E-09
+11,546,2.80E-09
+11,547,2.79E-09
+11,548,2.78E-09
+11,549,2.76E-09
+11,550,2.75E-09
+11,551,2.73E-09
+11,552,2.72E-09
+11,553,2.71E-09
+11,554,2.69E-09
+11,555,2.68E-09
+11,556,2.67E-09
+11,557,2.65E-09
+11,558,2.64E-09
+11,559,2.63E-09
+11,560,2.61E-09
+11,561,2.60E-09
+11,562,2.59E-09
+11,563,2.57E-09
+11,564,2.56E-09
+11,565,2.55E-09
+11,566,2.53E-09
+11,567,2.52E-09
+11,568,2.51E-09
+11,569,2.50E-09
+11,570,2.48E-09
+11,571,2.47E-09
+11,572,2.46E-09
+11,573,2.45E-09
+11,574,2.43E-09
+11,575,2.42E-09
+11,576,2.41E-09
+11,577,2.40E-09
+11,578,2.39E-09
+11,579,2.37E-09
+11,580,2.36E-09
+11,581,2.35E-09
+11,582,2.34E-09
+11,583,2.33E-09
+11,584,2.31E-09
+11,585,2.30E-09
+11,586,2.29E-09
+11,587,2.28E-09
+11,588,2.27E-09
+11,589,2.26E-09
+11,590,2.25E-09
+11,591,2.23E-09
+11,592,2.22E-09
+11,593,2.21E-09
+11,594,2.20E-09
+11,595,2.19E-09
+11,596,2.18E-09
+11,597,2.17E-09
+11,598,2.16E-09
+11,599,2.15E-09
+11,600,2.13E-09
+11,601,2.12E-09
+11,602,2.11E-09
+11,603,2.10E-09
+11,604,2.09E-09
+11,605,2.08E-09
+11,606,2.07E-09
+11,607,2.06E-09
+11,608,2.05E-09
+11,609,2.04E-09
+11,610,2.03E-09
+11,611,2.02E-09
+11,612,2.01E-09
+11,613,2.00E-09
+11,614,1.99E-09
+11,615,1.98E-09
+11,616,1.97E-09
+11,617,1.96E-09
+11,618,1.95E-09
+11,619,1.94E-09
+11,620,1.93E-09
+11,621,1.92E-09
+11,622,1.91E-09
+11,623,1.90E-09
+11,624,1.89E-09
+11,625,1.88E-09
+11,626,1.87E-09
+11,627,1.86E-09
+11,628,1.85E-09
+11,629,1.84E-09
+11,630,1.83E-09
+11,631,1.82E-09
+11,632,1.82E-09
+11,633,1.81E-09
+11,634,1.80E-09
+11,635,1.79E-09
+11,636,1.78E-09
+11,637,1.77E-09
+11,638,1.76E-09
+11,639,1.75E-09
+11,640,1.74E-09
+11,641,1.73E-09
+11,642,1.73E-09
+11,643,1.72E-09
+11,644,1.71E-09
+11,645,1.70E-09
+11,646,1.69E-09
+11,647,1.68E-09
+11,648,1.67E-09
+11,649,1.67E-09
+11,650,1.66E-09
+11,651,1.65E-09
+11,652,1.64E-09
+11,653,1.63E-09
+11,654,1.62E-09
+11,655,1.62E-09
+11,656,1.61E-09
+11,657,1.60E-09
+11,658,1.59E-09
+11,659,1.58E-09
+11,660,1.58E-09
+11,661,1.57E-09
+11,662,1.56E-09
+11,663,1.55E-09
+11,664,1.54E-09
+11,665,1.54E-09
+11,666,1.53E-09
+11,667,1.52E-09
+11,668,1.51E-09
+11,669,1.51E-09
+11,670,1.50E-09
+11,671,1.49E-09
+11,672,1.48E-09
+11,673,1.48E-09
+11,674,1.47E-09
+11,675,1.46E-09
+11,676,1.45E-09
+11,677,1.45E-09
+11,678,1.44E-09
+11,679,1.43E-09
+11,680,1.42E-09
+11,681,1.42E-09
+11,682,1.41E-09
+11,683,1.40E-09
+11,684,1.40E-09
+11,685,1.39E-09
+11,686,1.38E-09
+11,687,1.37E-09
+11,688,1.37E-09
+11,689,1.36E-09
+11,690,1.35E-09
+11,691,1.35E-09
+11,692,1.34E-09
+11,693,1.33E-09
+11,694,1.33E-09
+11,695,1.32E-09
+11,696,1.31E-09
+11,697,1.31E-09
+11,698,1.30E-09
+11,699,1.29E-09
+11,700,1.29E-09
+11,701,1.28E-09
+11,702,1.27E-09
+11,703,1.27E-09
+11,704,1.26E-09
+11,705,1.25E-09
+11,706,1.25E-09
+11,707,1.24E-09
+11,708,1.24E-09
+11,709,1.23E-09
+11,710,1.22E-09
+11,711,1.22E-09
+11,712,1.21E-09
+11,713,1.21E-09
+11,714,1.20E-09
+11,715,1.19E-09
+11,716,1.19E-09
+11,717,1.18E-09
+11,718,1.18E-09
+11,719,1.17E-09
+11,720,1.16E-09
+11,721,1.16E-09
+11,722,1.15E-09
+11,723,1.15E-09
+11,724,1.14E-09
+11,725,1.13E-09
+11,726,1.13E-09
+11,727,1.12E-09
+11,728,1.12E-09
+11,729,1.11E-09
+11,730,1.11E-09
+11,731,1.10E-09
+11,732,1.09E-09
+11,733,1.09E-09
+11,734,1.08E-09
+11,735,1.08E-09
+11,736,1.07E-09
+11,737,1.07E-09
+11,738,1.06E-09
+11,739,1.06E-09
+11,740,1.05E-09
+11,741,1.05E-09
+11,742,1.04E-09
+11,743,1.04E-09
+11,744,1.03E-09
+11,745,1.03E-09
+11,746,1.02E-09
+11,747,1.01E-09
+11,748,1.01E-09
+11,749,1.00E-09
+11,750,9.99E-10
+11,751,9.94E-10
+11,752,9.89E-10
+11,753,9.84E-10
+11,754,9.79E-10
+11,755,9.74E-10
+11,756,9.70E-10
+11,757,9.65E-10
+11,758,9.60E-10
+11,759,9.55E-10
+11,760,9.50E-10
+11,761,9.45E-10
+11,762,9.41E-10
+11,763,9.36E-10
+11,764,9.31E-10
+11,765,9.26E-10
+11,766,9.22E-10
+11,767,9.17E-10
+11,768,9.12E-10
+11,769,9.08E-10
+11,770,9.03E-10
+11,771,8.99E-10
+11,772,8.94E-10
+11,773,8.90E-10
+11,774,8.85E-10
+11,775,8.81E-10
+11,776,8.76E-10
+11,777,8.72E-10
+11,778,8.67E-10
+11,779,8.63E-10
+11,780,8.59E-10
+11,781,8.54E-10
+11,782,8.50E-10
+11,783,8.46E-10
+11,784,8.42E-10
+11,785,8.37E-10
+11,786,8.33E-10
+11,787,8.29E-10
+11,788,8.25E-10
+11,789,8.20E-10
+11,790,8.16E-10
+11,791,8.12E-10
+11,792,8.08E-10
+11,793,8.04E-10
+11,794,8.00E-10
+11,795,7.96E-10
+11,796,7.92E-10
+11,797,7.88E-10
+11,798,7.84E-10
+11,799,7.80E-10
+11,800,7.76E-10
+11,801,7.72E-10
+11,802,7.68E-10
+11,803,7.64E-10
+11,804,7.61E-10
+11,805,7.57E-10
+11,806,7.53E-10
+11,807,7.49E-10
+11,808,7.45E-10
+11,809,7.42E-10
+11,810,7.38E-10
+11,811,7.34E-10
+11,812,7.30E-10
+11,813,7.27E-10
+11,814,7.23E-10
+11,815,7.19E-10
+11,816,7.16E-10
+11,817,7.12E-10
+11,818,7.09E-10
+11,819,7.05E-10
+11,820,7.01E-10
+11,821,6.98E-10
+11,822,6.94E-10
+11,823,6.91E-10
+11,824,6.87E-10
+11,825,6.84E-10
+11,826,6.80E-10
+11,827,6.77E-10
+11,828,6.74E-10
+11,829,6.70E-10
+11,830,6.67E-10
+11,831,6.63E-10
+11,832,6.60E-10
+11,833,6.57E-10
+11,834,6.53E-10
+11,835,6.50E-10
+11,836,6.47E-10
+11,837,6.44E-10
+11,838,6.40E-10
+11,839,6.37E-10
+11,840,6.34E-10
+11,841,6.31E-10
+11,842,6.28E-10
+11,843,6.24E-10
+11,844,6.21E-10
+11,845,6.18E-10
+11,846,6.15E-10
+11,847,6.12E-10
+11,848,6.09E-10
+11,849,6.06E-10
+11,850,6.03E-10
+11,851,6.00E-10
+11,852,5.97E-10
+11,853,5.94E-10
+11,854,5.91E-10
+11,855,5.88E-10
+11,856,5.85E-10
+11,857,5.82E-10
+11,858,5.79E-10
+11,859,5.76E-10
+11,860,5.73E-10
+11,861,5.70E-10
+11,862,5.67E-10
+11,863,5.64E-10
+11,864,5.61E-10
+11,865,5.59E-10
+11,866,5.56E-10
+11,867,5.53E-10
+11,868,5.50E-10
+11,869,5.47E-10
+11,870,5.45E-10
+11,871,5.42E-10
+11,872,5.39E-10
+11,873,5.36E-10
+11,874,5.34E-10
+11,875,5.31E-10
+11,876,5.28E-10
+11,877,5.26E-10
+11,878,5.23E-10
+11,879,5.20E-10
+11,880,5.18E-10
+11,881,5.15E-10
+11,882,5.13E-10
+11,883,5.10E-10
+11,884,5.07E-10
+11,885,5.05E-10
+11,886,5.02E-10
+11,887,5.00E-10
+11,888,4.97E-10
+11,889,4.95E-10
+11,890,4.92E-10
+11,891,4.90E-10
+11,892,4.87E-10
+11,893,4.85E-10
+11,894,4.82E-10
+11,895,4.80E-10
+11,896,4.78E-10
+11,897,4.75E-10
+11,898,4.73E-10
+11,899,4.70E-10
+11,900,4.68E-10
+11,901,4.66E-10
+11,902,4.63E-10
+11,903,4.61E-10
+11,904,4.59E-10
+11,905,4.56E-10
+11,906,4.54E-10
+11,907,4.52E-10
+11,908,4.49E-10
+11,909,4.47E-10
+11,910,4.45E-10
+11,911,4.43E-10
+11,912,4.40E-10
+11,913,4.38E-10
+11,914,4.36E-10
+11,915,4.34E-10
+11,916,4.32E-10
+11,917,4.29E-10
+11,918,4.27E-10
+11,919,4.25E-10
+11,920,4.23E-10
+11,921,4.21E-10
+11,922,4.19E-10
+11,923,4.17E-10
+11,924,4.14E-10
+11,925,4.12E-10
+11,926,4.10E-10
+11,927,4.08E-10
+11,928,4.06E-10
+11,929,4.04E-10
+11,930,4.02E-10
+11,931,4.00E-10
+11,932,3.98E-10
+11,933,3.96E-10
+11,934,3.94E-10
+11,935,3.92E-10
+11,936,3.90E-10
+11,937,3.88E-10
+11,938,3.86E-10
+11,939,3.84E-10
+11,940,3.82E-10
+11,941,3.80E-10
+11,942,3.78E-10
+11,943,3.77E-10
+11,944,3.75E-10
+11,945,3.73E-10
+11,946,3.71E-10
+11,947,3.69E-10
+11,948,3.67E-10
+11,949,3.65E-10
+11,950,3.63E-10
+11,951,3.62E-10
+11,952,3.60E-10
+11,953,3.58E-10
+11,954,3.56E-10
+11,955,3.54E-10
+11,956,3.53E-10
+11,957,3.51E-10
+11,958,3.49E-10
+11,959,3.47E-10
+11,960,3.45E-10
+11,961,3.44E-10
+11,962,3.42E-10
+11,963,3.40E-10
+11,964,3.39E-10
+11,965,3.37E-10
+11,966,3.35E-10
+11,967,3.33E-10
+11,968,3.32E-10
+11,969,3.30E-10
+11,970,3.28E-10
+11,971,3.27E-10
+11,972,3.25E-10
+11,973,3.23E-10
+11,974,3.22E-10
+11,975,3.20E-10
+11,976,3.19E-10
+11,977,3.17E-10
+11,978,3.15E-10
+11,979,3.14E-10
+11,980,3.12E-10
+11,981,3.11E-10
+11,982,3.09E-10
+11,983,3.08E-10
+11,984,3.06E-10
+11,985,3.04E-10
+11,986,3.03E-10
+11,987,3.01E-10
+11,988,3.00E-10
+11,989,2.98E-10
+11,990,2.97E-10
+11,991,2.95E-10
+11,992,2.94E-10
+11,993,2.92E-10
+11,994,2.91E-10
+11,995,2.89E-10
+11,996,2.88E-10
+11,997,2.87E-10
+11,998,2.85E-10
+11,999,2.84E-10
+11,1000,2.82E-10
+11,1001,2.81E-10
+11,1002,2.79E-10
+11,1003,2.78E-10
+11,1004,2.77E-10
+11,1005,2.75E-10
+11,1006,2.74E-10
+11,1007,2.72E-10
+11,1008,2.71E-10
+11,1009,2.70E-10
+11,1010,2.68E-10
+11,1011,2.67E-10
+11,1012,2.66E-10
+11,1013,2.64E-10
+11,1014,2.63E-10
+11,1015,2.62E-10
+11,1016,2.60E-10
+11,1017,2.59E-10
+11,1018,2.58E-10
+11,1019,2.56E-10
+11,1020,2.55E-10
+11,1021,2.54E-10
+11,1022,2.52E-10
+11,1023,2.51E-10
+11,1024,2.50E-10
+11,1025,2.49E-10
+11,1026,2.47E-10
+11,1027,2.46E-10
+11,1028,2.45E-10
+11,1029,2.44E-10
+11,1030,2.42E-10
+11,1031,2.41E-10
+11,1032,2.40E-10
+11,1033,2.39E-10
+11,1034,2.38E-10
+11,1035,2.36E-10
+11,1036,2.35E-10
+11,1037,2.34E-10
+11,1038,2.33E-10
+11,1039,2.32E-10
+11,1040,2.31E-10
+11,1041,2.29E-10
+11,1042,2.28E-10
+11,1043,2.27E-10
+11,1044,2.26E-10
+11,1045,2.25E-10
+11,1046,2.24E-10
+11,1047,2.22E-10
+11,1048,2.21E-10
+11,1049,2.20E-10
+11,1050,2.19E-10
+11,1051,2.18E-10
+11,1052,2.17E-10
+11,1053,2.16E-10
+11,1054,2.15E-10
+11,1055,2.14E-10
+11,1056,2.13E-10
+11,1057,2.12E-10
+11,1058,2.10E-10
+11,1059,2.09E-10
+11,1060,2.08E-10
+11,1061,2.07E-10
+11,1062,2.06E-10
+11,1063,2.05E-10
+11,1064,2.04E-10
+11,1065,2.03E-10
+11,1066,2.02E-10
+11,1067,2.01E-10
+11,1068,2.00E-10
+11,1069,1.99E-10
+11,1070,1.98E-10
+11,1071,1.97E-10
+11,1072,1.96E-10
+11,1073,1.95E-10
+11,1074,1.94E-10
+11,1075,1.93E-10
+11,1076,1.92E-10
+11,1077,1.91E-10
+11,1078,1.90E-10
+11,1079,1.89E-10
+11,1080,1.88E-10
+11,1081,1.87E-10
+11,1082,1.86E-10
+11,1083,1.85E-10
+11,1084,1.85E-10
+11,1085,1.84E-10
+11,1086,1.83E-10
+11,1087,1.82E-10
+11,1088,1.81E-10
+11,1089,1.80E-10
+11,1090,1.79E-10
+11,1091,1.78E-10
+11,1092,1.77E-10
+11,1093,1.76E-10
+11,1094,1.75E-10
+11,1095,1.75E-10
+11,1096,1.74E-10
+11,1097,1.73E-10
+11,1098,1.72E-10
+11,1099,1.71E-10
+11,1100,1.70E-10
+11,1101,1.69E-10
+11,1102,1.68E-10
+11,1103,1.68E-10
+11,1104,1.67E-10
+11,1105,1.66E-10
+11,1106,1.65E-10
+11,1107,1.64E-10
+11,1108,1.63E-10
+11,1109,1.63E-10
+11,1110,1.62E-10
+11,1111,1.61E-10
+11,1112,1.60E-10
+11,1113,1.59E-10
+11,1114,1.59E-10
+11,1115,1.58E-10
+11,1116,1.57E-10
+11,1117,1.56E-10
+11,1118,1.55E-10
+11,1119,1.55E-10
+11,1120,1.54E-10
+11,1121,1.53E-10
+11,1122,1.52E-10
+11,1123,1.51E-10
+11,1124,1.51E-10
+11,1125,1.50E-10
+11,1126,1.49E-10
+11,1127,1.48E-10
+11,1128,1.48E-10
+11,1129,1.47E-10
+11,1130,1.46E-10
+11,1131,1.45E-10
+11,1132,1.45E-10
+11,1133,1.44E-10
+11,1134,1.43E-10
+11,1135,1.43E-10
+11,1136,1.42E-10
+11,1137,1.41E-10
+11,1138,1.40E-10
+11,1139,1.40E-10
+11,1140,1.39E-10
+11,1141,1.38E-10
+11,1142,1.38E-10
+11,1143,1.37E-10
+11,1144,1.36E-10
+11,1145,1.36E-10
+11,1146,1.35E-10
+11,1147,1.34E-10
+11,1148,1.33E-10
+11,1149,1.33E-10
+11,1150,1.32E-10
+11,1151,1.31E-10
+11,1152,1.31E-10
+11,1153,1.30E-10
+11,1154,1.29E-10
+11,1155,1.29E-10
+11,1156,1.28E-10
+11,1157,1.28E-10
+11,1158,1.27E-10
+11,1159,1.26E-10
+11,1160,1.26E-10
+11,1161,1.25E-10
+11,1162,1.24E-10
+11,1163,1.24E-10
+11,1164,1.23E-10
+11,1165,1.22E-10
+11,1166,1.22E-10
+11,1167,1.21E-10
+11,1168,1.21E-10
+11,1169,1.20E-10
+11,1170,1.19E-10
+11,1171,1.19E-10
+11,1172,1.18E-10
+11,1173,1.18E-10
+11,1174,1.17E-10
+11,1175,1.16E-10
+11,1176,1.16E-10
+11,1177,1.15E-10
+11,1178,1.15E-10
+11,1179,1.14E-10
+11,1180,1.14E-10
+11,1181,1.13E-10
+11,1182,1.12E-10
+11,1183,1.12E-10
+11,1184,1.11E-10
+11,1185,1.11E-10
+11,1186,1.10E-10
+11,1187,1.10E-10
+11,1188,1.09E-10
+11,1189,1.08E-10
+11,1190,1.08E-10
+11,1191,1.07E-10
+11,1192,1.07E-10
+11,1193,1.06E-10
+11,1194,1.06E-10
+11,1195,1.05E-10
+11,1196,1.05E-10
+11,1197,1.04E-10
+11,1198,1.04E-10
+11,1199,1.03E-10
+11,1200,1.03E-10
+11,1201,1.02E-10
+11,1202,1.02E-10
+11,1203,1.01E-10
+11,1204,1.01E-10
+11,1205,1.00E-10
+11,1206,9.95E-11
+11,1207,9.90E-11
+11,1208,9.85E-11
+11,1209,9.80E-11
+11,1210,9.76E-11
+11,1211,9.71E-11
+11,1212,9.66E-11
+11,1213,9.61E-11
+11,1214,9.56E-11
+11,1215,9.51E-11
+11,1216,9.46E-11
+11,1217,9.42E-11
+11,1218,9.37E-11
+11,1219,9.32E-11
+11,1220,9.27E-11
+11,1221,9.23E-11
+11,1222,9.18E-11
+11,1223,9.13E-11
+11,1224,9.09E-11
+11,1225,9.04E-11
+11,1226,9.00E-11
+11,1227,8.95E-11
+11,1228,8.91E-11
+11,1229,8.86E-11
+11,1230,8.82E-11
+11,1231,8.77E-11
+11,1232,8.73E-11
+11,1233,8.68E-11
+11,1234,8.64E-11
+11,1235,8.60E-11
+11,1236,8.55E-11
+11,1237,8.51E-11
+11,1238,8.47E-11
+11,1239,8.42E-11
+11,1240,8.38E-11
+11,1241,8.34E-11
+11,1242,8.30E-11
+11,1243,8.26E-11
+11,1244,8.21E-11
+11,1245,8.17E-11
+11,1246,8.13E-11
+11,1247,8.09E-11
+11,1248,8.05E-11
+11,1249,8.01E-11
+11,1250,7.97E-11
+11,1251,7.93E-11
+11,1252,7.89E-11
+11,1253,7.85E-11
+11,1254,7.81E-11
+11,1255,7.77E-11
+11,1256,7.73E-11
+11,1257,7.69E-11
+11,1258,7.65E-11
+11,1259,7.61E-11
+11,1260,7.58E-11
+11,1261,7.54E-11
+11,1262,7.50E-11
+11,1263,7.46E-11
+11,1264,7.42E-11
+11,1265,7.39E-11
+11,1266,7.35E-11
+11,1267,7.31E-11
+11,1268,7.27E-11
+11,1269,7.24E-11
+11,1270,7.20E-11
+11,1271,7.17E-11
+11,1272,7.13E-11
+11,1273,7.09E-11
+11,1274,7.06E-11
+11,1275,7.02E-11
+11,1276,6.99E-11
+11,1277,6.95E-11
+11,1278,6.92E-11
+11,1279,6.88E-11
+11,1280,6.85E-11
+11,1281,6.81E-11
+11,1282,6.78E-11
+11,1283,6.74E-11
+11,1284,6.71E-11
+11,1285,6.68E-11
+11,1286,6.64E-11
+11,1287,6.61E-11
+11,1288,6.57E-11
+11,1289,6.54E-11
+11,1290,6.51E-11
+11,1291,6.48E-11
+11,1292,6.44E-11
+11,1293,6.41E-11
+11,1294,6.38E-11
+11,1295,6.35E-11
+11,1296,6.31E-11
+11,1297,6.28E-11
+11,1298,6.25E-11
+11,1299,6.22E-11
+11,1300,6.19E-11
+11,1301,6.16E-11
+11,1302,6.13E-11
+11,1303,6.09E-11
+11,1304,6.06E-11
+11,1305,6.03E-11
+11,1306,6.00E-11
+11,1307,5.97E-11
+11,1308,5.94E-11
+11,1309,5.91E-11
+11,1310,5.88E-11
+11,1311,5.85E-11
+11,1312,5.82E-11
+11,1313,5.79E-11
+11,1314,5.76E-11
+11,1315,5.74E-11
+11,1316,5.71E-11
+11,1317,5.68E-11
+11,1318,5.65E-11
+11,1319,5.62E-11
+11,1320,5.59E-11
+11,1321,5.56E-11
+11,1322,5.54E-11
+11,1323,5.51E-11
+11,1324,5.48E-11
+11,1325,5.45E-11
+11,1326,5.43E-11
+11,1327,5.40E-11
+11,1328,5.37E-11
+11,1329,5.34E-11
+11,1330,5.32E-11
+11,1331,5.29E-11
+11,1332,5.26E-11
+11,1333,5.24E-11
+11,1334,5.21E-11
+11,1335,5.18E-11
+11,1336,5.16E-11
+11,1337,5.13E-11
+11,1338,5.11E-11
+11,1339,5.08E-11
+11,1340,5.05E-11
+11,1341,5.03E-11
+11,1342,5.00E-11
+11,1343,4.98E-11
+11,1344,4.95E-11
+11,1345,4.93E-11
+11,1346,4.90E-11
+11,1347,4.88E-11
+11,1348,4.85E-11
+11,1349,4.83E-11
+11,1350,4.80E-11
+11,1351,4.78E-11
+11,1352,4.76E-11
+11,1353,4.73E-11
+11,1354,4.71E-11
+11,1355,4.68E-11
+11,1356,4.66E-11
+11,1357,4.64E-11
+11,1358,4.61E-11
+11,1359,4.59E-11
+11,1360,4.57E-11
+11,1361,4.54E-11
+11,1362,4.52E-11
+11,1363,4.50E-11
+11,1364,4.48E-11
+11,1365,4.45E-11
+11,1366,4.43E-11
+11,1367,4.41E-11
+11,1368,4.39E-11
+11,1369,4.36E-11
+11,1370,4.34E-11
+11,1371,4.32E-11
+11,1372,4.30E-11
+11,1373,4.28E-11
+11,1374,4.26E-11
+11,1375,4.23E-11
+11,1376,4.21E-11
+11,1377,4.19E-11
+11,1378,4.17E-11
+11,1379,4.15E-11
+11,1380,4.13E-11
+11,1381,4.11E-11
+11,1382,4.09E-11
+11,1383,4.07E-11
+11,1384,4.05E-11
+11,1385,4.03E-11
+11,1386,4.00E-11
+11,1387,3.98E-11
+11,1388,3.96E-11
+11,1389,3.94E-11
+11,1390,3.92E-11
+11,1391,3.90E-11
+11,1392,3.89E-11
+11,1393,3.87E-11
+11,1394,3.85E-11
+11,1395,3.83E-11
+11,1396,3.81E-11
+11,1397,3.79E-11
+11,1398,3.77E-11
+11,1399,3.75E-11
+11,1400,3.73E-11
+11,1401,3.71E-11
+11,1402,3.69E-11
+11,1403,3.67E-11
+11,1404,3.66E-11
+11,1405,3.64E-11
+11,1406,3.62E-11
+11,1407,3.60E-11
+11,1408,3.58E-11
+11,1409,3.57E-11
+11,1410,3.55E-11
+11,1411,3.53E-11
+11,1412,3.51E-11
+11,1413,3.49E-11
+11,1414,3.48E-11
+11,1415,3.46E-11
+11,1416,3.44E-11
+11,1417,3.42E-11
+11,1418,3.41E-11
+11,1419,3.39E-11
+11,1420,3.37E-11
+11,1421,3.36E-11
+11,1422,3.34E-11
+11,1423,3.32E-11
+11,1424,3.30E-11
+11,1425,3.29E-11
+11,1426,3.27E-11
+11,1427,3.25E-11
+11,1428,3.24E-11
+11,1429,3.22E-11
+11,1430,3.21E-11
+11,1431,3.19E-11
+11,1432,3.17E-11
+11,1433,3.16E-11
+11,1434,3.14E-11
+11,1435,3.13E-11
+11,1436,3.11E-11
+11,1437,3.09E-11
+11,1438,3.08E-11
+11,1439,3.06E-11
+11,1440,3.05E-11
+11,1441,3.03E-11
+11,1442,3.02E-11
+11,1443,3.00E-11
+11,1444,2.99E-11
+11,1445,2.97E-11
+11,1446,2.96E-11
+11,1447,2.94E-11
+11,1448,2.93E-11
+11,1449,2.91E-11
+11,1450,2.90E-11
+11,1451,2.88E-11
+11,1452,2.87E-11
+11,1453,2.85E-11
+11,1454,2.84E-11
+11,1455,2.82E-11
+11,1456,2.81E-11
+11,1457,2.80E-11
+11,1458,2.78E-11
+11,1459,2.77E-11
+11,1460,2.75E-11
+11,1461,2.74E-11
+11,1462,2.73E-11
+11,1463,2.71E-11
+11,1464,2.70E-11
+11,1465,2.69E-11
+11,1466,2.67E-11
+11,1467,2.66E-11
+11,1468,2.65E-11
+11,1469,2.63E-11
+11,1470,2.62E-11
+11,1471,2.61E-11
+11,1472,2.59E-11
+11,1473,2.58E-11
+11,1474,2.57E-11
+11,1475,2.55E-11
+11,1476,2.54E-11
+11,1477,2.53E-11
+11,1478,2.51E-11
+11,1479,2.50E-11
+11,1480,2.49E-11
+11,1481,2.48E-11
+11,1482,2.46E-11
+11,1483,2.45E-11
+11,1484,2.44E-11
+11,1485,2.43E-11
+11,1486,2.41E-11
+11,1487,2.40E-11
+11,1488,2.39E-11
+11,1489,2.38E-11
+11,1490,2.37E-11
+11,1491,2.35E-11
+11,1492,2.34E-11
+11,1493,2.33E-11
+11,1494,2.32E-11
+11,1495,2.31E-11
+11,1496,2.30E-11
+11,1497,2.28E-11
+11,1498,2.27E-11
+11,1499,2.26E-11
+11,1500,2.25E-11
+11,1501,2.24E-11
+11,1502,2.23E-11
+11,1503,2.22E-11
+11,1504,2.20E-11
+11,1505,2.19E-11
+11,1506,2.18E-11
+11,1507,2.17E-11
+11,1508,2.16E-11
+11,1509,2.15E-11
+11,1510,2.14E-11
+11,1511,2.13E-11
+11,1512,2.12E-11
+11,1513,2.11E-11
+11,1514,2.10E-11
+11,1515,2.09E-11
+11,1516,2.07E-11
+11,1517,2.06E-11
+11,1518,2.05E-11
+11,1519,2.04E-11
+11,1520,2.03E-11
+11,1521,2.02E-11
+11,1522,2.01E-11
+11,1523,2.00E-11
+11,1524,1.99E-11
+11,1525,1.98E-11
+11,1526,1.97E-11
+11,1527,1.96E-11
+11,1528,1.95E-11
+11,1529,1.94E-11
+11,1530,1.93E-11
+11,1531,1.92E-11
+11,1532,1.91E-11
+11,1533,1.90E-11
+11,1534,1.89E-11
+11,1535,1.88E-11
+11,1536,1.88E-11
+11,1537,1.87E-11
+11,1538,1.86E-11
+11,1539,1.85E-11
+11,1540,1.84E-11
+11,1541,1.83E-11
+11,1542,1.82E-11
+11,1543,1.81E-11
+11,1544,1.80E-11
+11,1545,1.79E-11
+11,1546,1.78E-11
+11,1547,1.77E-11
+11,1548,1.76E-11
+11,1549,1.76E-11
+11,1550,1.75E-11
+11,1551,1.74E-11
+11,1552,1.73E-11
+11,1553,1.72E-11
+11,1554,1.71E-11
+11,1555,1.70E-11
+11,1556,1.69E-11
+11,1557,1.69E-11
+11,1558,1.68E-11
+11,1559,1.67E-11
+11,1560,1.66E-11
+11,1561,1.65E-11
+11,1562,1.64E-11
+11,1563,1.64E-11
+11,1564,1.63E-11
+11,1565,1.62E-11
+11,1566,1.61E-11
+11,1567,1.60E-11
+11,1568,1.60E-11
+11,1569,1.59E-11
+11,1570,1.58E-11
+11,1571,1.57E-11
+11,1572,1.56E-11
+11,1573,1.56E-11
+11,1574,1.55E-11
+11,1575,1.54E-11
+11,1576,1.53E-11
+11,1577,1.52E-11
+11,1578,1.52E-11
+11,1579,1.51E-11
+11,1580,1.50E-11
+11,1581,1.49E-11
+11,1582,1.49E-11
+11,1583,1.48E-11
+11,1584,1.47E-11
+11,1585,1.46E-11
+11,1586,1.46E-11
+11,1587,1.45E-11
+11,1588,1.44E-11
+11,1589,1.43E-11
+11,1590,1.43E-11
+11,1591,1.42E-11
+11,1592,1.41E-11
+11,1593,1.41E-11
+11,1594,1.40E-11
+11,1595,1.39E-11
+11,1596,1.38E-11
+11,1597,1.38E-11
+11,1598,1.37E-11
+11,1599,1.36E-11
+11,1600,1.36E-11
+11,1601,1.35E-11
+11,1602,1.34E-11
+11,1603,1.34E-11
+11,1604,1.33E-11
+11,1605,1.32E-11
+11,1606,1.32E-11
+11,1607,1.31E-11
+11,1608,1.30E-11
+11,1609,1.30E-11
+11,1610,1.29E-11
+11,1611,1.28E-11
+11,1612,1.28E-11
+11,1613,1.27E-11
+11,1614,1.26E-11
+11,1615,1.26E-11
+11,1616,1.25E-11
+11,1617,1.24E-11
+11,1618,1.24E-11
+11,1619,1.23E-11
+11,1620,1.23E-11
+11,1621,1.22E-11
+11,1622,1.21E-11
+11,1623,1.21E-11
+11,1624,1.20E-11
+11,1625,1.20E-11
+11,1626,1.19E-11
+11,1627,1.18E-11
+11,1628,1.18E-11
+11,1629,1.17E-11
+11,1630,1.17E-11
+11,1631,1.16E-11
+11,1632,1.15E-11
+11,1633,1.15E-11
+11,1634,1.14E-11
+11,1635,1.14E-11
+11,1636,1.13E-11
+11,1637,1.13E-11
+11,1638,1.12E-11
+11,1639,1.11E-11
+11,1640,1.11E-11
+11,1641,1.10E-11
+11,1642,1.10E-11
+11,1643,1.09E-11
+11,1644,1.09E-11
+11,1645,1.08E-11
+11,1646,1.08E-11
+11,1647,1.07E-11
+11,1648,1.06E-11
+11,1649,1.06E-11
+11,1650,1.05E-11
+11,1651,1.05E-11
+11,1652,1.04E-11
+11,1653,1.04E-11
+11,1654,1.03E-11
+11,1655,1.03E-11
+11,1656,1.02E-11
+11,1657,1.02E-11
+11,1658,1.01E-11
+11,1659,1.01E-11
+11,1660,1.00E-11
+11,1661,9.96E-12
+11,1662,9.91E-12
+11,1663,9.86E-12
+11,1664,9.81E-12
+11,1665,9.77E-12
+11,1666,9.72E-12
+11,1667,9.67E-12
+11,1668,9.62E-12
+11,1669,9.57E-12
+11,1670,9.52E-12
+11,1671,9.47E-12
+11,1672,9.43E-12
+11,1673,9.38E-12
+11,1674,9.33E-12
+11,1675,9.28E-12
+11,1676,9.24E-12
+11,1677,9.19E-12
+11,1678,9.14E-12
+11,1679,9.10E-12
+11,1680,9.05E-12
+11,1681,9.01E-12
+11,1682,8.96E-12
+11,1683,8.92E-12
+11,1684,8.87E-12
+11,1685,8.83E-12
+11,1686,8.78E-12
+11,1687,8.74E-12
+11,1688,8.69E-12
+11,1689,8.65E-12
+11,1690,8.61E-12
+11,1691,8.56E-12
+11,1692,8.52E-12
+11,1693,8.48E-12
+11,1694,8.43E-12
+11,1695,8.39E-12
+11,1696,8.35E-12
+11,1697,8.31E-12
+11,1698,8.26E-12
+11,1699,8.22E-12
+11,1700,8.18E-12
+11,1701,8.14E-12
+11,1702,8.10E-12
+11,1703,8.06E-12
+11,1704,8.02E-12
+11,1705,7.98E-12
+11,1706,7.94E-12
+11,1707,7.90E-12
+11,1708,7.86E-12
+11,1709,7.82E-12
+11,1710,7.78E-12
+11,1711,7.74E-12
+11,1712,7.70E-12
+11,1713,7.66E-12
+11,1714,7.62E-12
+11,1715,7.58E-12
+11,1716,7.54E-12
+11,1717,7.51E-12
+11,1718,7.47E-12
+11,1719,7.43E-12
+11,1720,7.39E-12
+11,1721,7.36E-12
+11,1722,7.32E-12
+11,1723,7.28E-12
+11,1724,7.25E-12
+11,1725,7.21E-12
+11,1726,7.17E-12
+11,1727,7.14E-12
+11,1728,7.10E-12
+11,1729,7.06E-12
+11,1730,7.03E-12
+11,1731,6.99E-12
+11,1732,6.96E-12
+11,1733,6.92E-12
+11,1734,6.89E-12
+11,1735,6.85E-12
+11,1736,6.82E-12
+11,1737,6.78E-12
+11,1738,6.75E-12
+11,1739,6.72E-12
+11,1740,6.68E-12
+11,1741,6.65E-12
+11,1742,6.62E-12
+11,1743,6.58E-12
+11,1744,6.55E-12
+11,1745,6.52E-12
+11,1746,6.48E-12
+11,1747,6.45E-12
+11,1748,6.42E-12
+11,1749,6.38E-12
+11,1750,6.35E-12
+11,1751,6.32E-12
+11,1752,6.29E-12
+11,1753,6.26E-12
+11,1754,6.23E-12
+11,1755,6.19E-12
+11,1756,6.16E-12
+11,1757,6.13E-12
+11,1758,6.10E-12
+11,1759,6.07E-12
+11,1760,6.04E-12
+11,1761,6.01E-12
+11,1762,5.98E-12
+11,1763,5.95E-12
+11,1764,5.92E-12
+11,1765,5.89E-12
+11,1766,5.86E-12
+11,1767,5.83E-12
+11,1768,5.80E-12
+11,1769,5.77E-12
+11,1770,5.74E-12
+11,1771,5.71E-12
+11,1772,5.68E-12
+11,1773,5.66E-12
+11,1774,5.63E-12
+11,1775,5.60E-12
+11,1776,5.57E-12
+11,1777,5.54E-12
+11,1778,5.51E-12
+11,1779,5.49E-12
+11,1780,5.46E-12
+11,1781,5.43E-12
+11,1782,5.40E-12
+11,1783,5.38E-12
+11,1784,5.35E-12
+11,1785,5.32E-12
+11,1786,5.30E-12
+11,1787,5.27E-12
+11,1788,5.24E-12
+11,1789,5.22E-12
+11,1790,5.19E-12
+11,1791,5.16E-12
+11,1792,5.14E-12
+11,1793,5.11E-12
+11,1794,5.09E-12
+11,1795,5.06E-12
+11,1796,5.03E-12
+11,1797,5.01E-12
+11,1798,4.98E-12
+11,1799,4.96E-12
+11,1800,4.93E-12
+11,1801,4.91E-12
+11,1802,4.88E-12
+11,1803,4.86E-12
+11,1804,4.83E-12
+11,1805,4.81E-12
+11,1806,4.79E-12
+11,1807,4.76E-12
+11,1808,4.74E-12
+11,1809,4.71E-12
+11,1810,4.69E-12
+11,1811,4.67E-12
+11,1812,4.64E-12
+11,1813,4.62E-12
+11,1814,4.60E-12
+11,1815,4.57E-12
+11,1816,4.55E-12
+11,1817,4.53E-12
+11,1818,4.50E-12
+11,1819,4.48E-12
+11,1820,4.46E-12
+11,1821,4.44E-12
+11,1822,4.41E-12
+11,1823,4.39E-12
+11,1824,4.37E-12
+11,1825,4.35E-12
+11,1826,4.33E-12
+11,1827,4.30E-12
+11,1828,4.28E-12
+11,1829,4.26E-12
+11,1830,4.24E-12
+11,1831,4.22E-12
+11,1832,4.20E-12
+11,1833,4.17E-12
+11,1834,4.15E-12
+11,1835,4.13E-12
+11,1836,4.11E-12
+11,1837,4.09E-12
+11,1838,4.07E-12
+11,1839,4.05E-12
+11,1840,4.03E-12
+11,1841,4.01E-12
+11,1842,3.99E-12
+11,1843,3.97E-12
+11,1844,3.95E-12
+11,1845,3.93E-12
+11,1846,3.91E-12
+11,1847,3.89E-12
+11,1848,3.87E-12
+11,1849,3.85E-12
+11,1850,3.83E-12
+11,1851,3.81E-12
+11,1852,3.79E-12
+11,1853,3.77E-12
+11,1854,3.75E-12
+11,1855,3.74E-12
+11,1856,3.72E-12
+11,1857,3.70E-12
+11,1858,3.68E-12
+11,1859,3.66E-12
+11,1860,3.64E-12
+11,1861,3.62E-12
+11,1862,3.61E-12
+11,1863,3.59E-12
+11,1864,3.57E-12
+11,1865,3.55E-12
+11,1866,3.53E-12
+11,1867,3.52E-12
+11,1868,3.50E-12
+11,1869,3.48E-12
+11,1870,3.46E-12
+11,1871,3.44E-12
+11,1872,3.43E-12
+11,1873,3.41E-12
+11,1874,3.39E-12
+11,1875,3.38E-12
+11,1876,3.36E-12
+11,1877,3.34E-12
+11,1878,3.32E-12
+11,1879,3.31E-12
+11,1880,3.29E-12
+11,1881,3.27E-12
+11,1882,3.26E-12
+11,1883,3.24E-12
+11,1884,3.23E-12
+11,1885,3.21E-12
+11,1886,3.19E-12
+11,1887,3.18E-12
+11,1888,3.16E-12
+11,1889,3.14E-12
+11,1890,3.13E-12
+11,1891,3.11E-12
+11,1892,3.10E-12
+11,1893,3.08E-12
+11,1894,3.07E-12
+11,1895,3.05E-12
+11,1896,3.04E-12
+11,1897,3.02E-12
+11,1898,3.00E-12
+11,1899,2.99E-12
+11,1900,2.97E-12
+11,1901,2.96E-12
+11,1902,2.94E-12
+11,1903,2.93E-12
+11,1904,2.92E-12
+11,1905,2.90E-12
+11,1906,2.89E-12
+11,1907,2.87E-12
+11,1908,2.86E-12
+11,1909,2.84E-12
+11,1910,2.83E-12
+11,1911,2.81E-12
+11,1912,2.80E-12
+11,1913,2.79E-12
+11,1914,2.77E-12
+11,1915,2.76E-12
+11,1916,2.74E-12
+11,1917,2.73E-12
+11,1918,2.72E-12
+11,1919,2.70E-12
+11,1920,2.69E-12
+11,1921,2.67E-12
+11,1922,2.66E-12
+11,1923,2.65E-12
+11,1924,2.63E-12
+11,1925,2.62E-12
+11,1926,2.61E-12
+11,1927,2.59E-12
+11,1928,2.58E-12
+11,1929,2.57E-12
+11,1930,2.56E-12
+11,1931,2.54E-12
+11,1932,2.53E-12
+11,1933,2.52E-12
+11,1934,2.50E-12
+11,1935,2.49E-12
+11,1936,2.48E-12
+11,1937,2.47E-12
+11,1938,2.45E-12
+11,1939,2.44E-12
+11,1940,2.43E-12
+11,1941,2.42E-12
+11,1942,2.41E-12
+11,1943,2.39E-12
+11,1944,2.38E-12
+11,1945,2.37E-12
+11,1946,2.36E-12
+11,1947,2.35E-12
+11,1948,2.33E-12
+11,1949,2.32E-12
+11,1950,2.31E-12
+11,1951,2.30E-12
+11,1952,2.29E-12
+11,1953,2.28E-12
+11,1954,2.26E-12
+11,1955,2.25E-12
+11,1956,2.24E-12
+11,1957,2.23E-12
+11,1958,2.22E-12
+11,1959,2.21E-12
+11,1960,2.20E-12
+11,1961,2.18E-12
+11,1962,2.17E-12
+11,1963,2.16E-12
+11,1964,2.15E-12
+11,1965,2.14E-12
+11,1966,2.13E-12
+11,1967,2.12E-12
+11,1968,2.11E-12
+11,1969,2.10E-12
+11,1970,2.09E-12
+11,1971,2.08E-12
+11,1972,2.07E-12
+11,1973,2.06E-12
+11,1974,2.05E-12
+11,1975,2.04E-12
+11,1976,2.03E-12
+11,1977,2.02E-12
+11,1978,2.00E-12
+11,1979,1.99E-12
+11,1980,1.98E-12
+11,1981,1.97E-12
+11,1982,1.96E-12
+11,1983,1.95E-12
+11,1984,1.94E-12
+11,1985,1.94E-12
+11,1986,1.93E-12
+11,1987,1.92E-12
+11,1988,1.91E-12
+11,1989,1.90E-12
+11,1990,1.89E-12
+11,1991,1.88E-12
+11,1992,1.87E-12
+11,1993,1.86E-12
+11,1994,1.85E-12
+11,1995,1.84E-12
+11,1996,1.83E-12
+11,1997,1.82E-12
+11,1998,1.81E-12
+11,1999,1.80E-12
+11,2000,1.79E-12
+12,1,4.02E-07
+12,2,3.96E-07
+12,3,3.90E-07
+12,4,3.84E-07
+12,5,3.78E-07
+12,6,3.72E-07
+12,7,3.66E-07
+12,8,3.61E-07
+12,9,3.55E-07
+12,10,3.49E-07
+12,11,3.44E-07
+12,12,3.39E-07
+12,13,3.34E-07
+12,14,3.28E-07
+12,15,3.23E-07
+12,16,3.18E-07
+12,17,3.13E-07
+12,18,3.09E-07
+12,19,3.04E-07
+12,20,2.99E-07
+12,21,2.95E-07
+12,22,2.90E-07
+12,23,2.86E-07
+12,24,2.81E-07
+12,25,2.77E-07
+12,26,2.73E-07
+12,27,2.69E-07
+12,28,2.64E-07
+12,29,2.60E-07
+12,30,2.56E-07
+12,31,2.53E-07
+12,32,2.49E-07
+12,33,2.45E-07
+12,34,2.41E-07
+12,35,2.38E-07
+12,36,2.34E-07
+12,37,2.30E-07
+12,38,2.27E-07
+12,39,2.24E-07
+12,40,2.20E-07
+12,41,2.17E-07
+12,42,2.14E-07
+12,43,2.11E-07
+12,44,2.07E-07
+12,45,2.04E-07
+12,46,2.01E-07
+12,47,1.98E-07
+12,48,1.95E-07
+12,49,1.93E-07
+12,50,1.90E-07
+12,51,1.87E-07
+12,52,1.84E-07
+12,53,1.82E-07
+12,54,1.79E-07
+12,55,1.76E-07
+12,56,1.74E-07
+12,57,1.71E-07
+12,58,1.69E-07
+12,59,1.67E-07
+12,60,1.64E-07
+12,61,1.62E-07
+12,62,1.60E-07
+12,63,1.57E-07
+12,64,1.55E-07
+12,65,1.53E-07
+12,66,1.51E-07
+12,67,1.49E-07
+12,68,1.47E-07
+12,69,1.45E-07
+12,70,1.43E-07
+12,71,1.41E-07
+12,72,1.39E-07
+12,73,1.37E-07
+12,74,1.35E-07
+12,75,1.33E-07
+12,76,1.31E-07
+12,77,1.30E-07
+12,78,1.28E-07
+12,79,1.26E-07
+12,80,1.24E-07
+12,81,1.23E-07
+12,82,1.21E-07
+12,83,1.20E-07
+12,84,1.18E-07
+12,85,1.16E-07
+12,86,1.15E-07
+12,87,1.13E-07
+12,88,1.12E-07
+12,89,1.10E-07
+12,90,1.09E-07
+12,91,1.08E-07
+12,92,1.06E-07
+12,93,1.05E-07
+12,94,1.03E-07
+12,95,1.02E-07
+12,96,1.01E-07
+12,97,9.96E-08
+12,98,9.83E-08
+12,99,9.71E-08
+12,100,9.58E-08
+12,101,9.46E-08
+12,102,9.34E-08
+12,103,9.23E-08
+12,104,9.11E-08
+12,105,9.00E-08
+12,106,8.89E-08
+12,107,8.78E-08
+12,108,8.67E-08
+12,109,8.56E-08
+12,110,8.46E-08
+12,111,8.36E-08
+12,112,8.25E-08
+12,113,8.15E-08
+12,114,8.06E-08
+12,115,7.96E-08
+12,116,7.86E-08
+12,117,7.77E-08
+12,118,7.68E-08
+12,119,7.58E-08
+12,120,7.49E-08
+12,121,7.41E-08
+12,122,7.32E-08
+12,123,7.23E-08
+12,124,7.15E-08
+12,125,7.06E-08
+12,126,6.98E-08
+12,127,6.90E-08
+12,128,6.82E-08
+12,129,6.74E-08
+12,130,6.66E-08
+12,131,6.59E-08
+12,132,6.51E-08
+12,133,6.44E-08
+12,134,6.36E-08
+12,135,6.29E-08
+12,136,6.22E-08
+12,137,6.15E-08
+12,138,6.08E-08
+12,139,6.01E-08
+12,140,5.95E-08
+12,141,5.88E-08
+12,142,5.81E-08
+12,143,5.75E-08
+12,144,5.69E-08
+12,145,5.62E-08
+12,146,5.56E-08
+12,147,5.50E-08
+12,148,5.44E-08
+12,149,5.38E-08
+12,150,5.32E-08
+12,151,5.27E-08
+12,152,5.21E-08
+12,153,5.15E-08
+12,154,5.10E-08
+12,155,5.04E-08
+12,156,4.99E-08
+12,157,4.94E-08
+12,158,4.88E-08
+12,159,4.83E-08
+12,160,4.78E-08
+12,161,4.73E-08
+12,162,4.68E-08
+12,163,4.63E-08
+12,164,4.59E-08
+12,165,4.54E-08
+12,166,4.49E-08
+12,167,4.44E-08
+12,168,4.40E-08
+12,169,4.35E-08
+12,170,4.31E-08
+12,171,4.27E-08
+12,172,4.22E-08
+12,173,4.18E-08
+12,174,4.14E-08
+12,175,4.10E-08
+12,176,4.06E-08
+12,177,4.01E-08
+12,178,3.97E-08
+12,179,3.94E-08
+12,180,3.90E-08
+12,181,3.86E-08
+12,182,3.82E-08
+12,183,3.78E-08
+12,184,3.75E-08
+12,185,3.71E-08
+12,186,3.67E-08
+12,187,3.64E-08
+12,188,3.60E-08
+12,189,3.57E-08
+12,190,3.53E-08
+12,191,3.50E-08
+12,192,3.47E-08
+12,193,3.43E-08
+12,194,3.40E-08
+12,195,3.37E-08
+12,196,3.34E-08
+12,197,3.31E-08
+12,198,3.27E-08
+12,199,3.24E-08
+12,200,3.21E-08
+12,201,3.18E-08
+12,202,3.15E-08
+12,203,3.13E-08
+12,204,3.10E-08
+12,205,3.07E-08
+12,206,3.04E-08
+12,207,3.01E-08
+12,208,2.98E-08
+12,209,2.96E-08
+12,210,2.93E-08
+12,211,2.90E-08
+12,212,2.88E-08
+12,213,2.85E-08
+12,214,2.83E-08
+12,215,2.80E-08
+12,216,2.78E-08
+12,217,2.75E-08
+12,218,2.73E-08
+12,219,2.70E-08
+12,220,2.68E-08
+12,221,2.66E-08
+12,222,2.63E-08
+12,223,2.61E-08
+12,224,2.59E-08
+12,225,2.57E-08
+12,226,2.54E-08
+12,227,2.52E-08
+12,228,2.50E-08
+12,229,2.48E-08
+12,230,2.46E-08
+12,231,2.44E-08
+12,232,2.42E-08
+12,233,2.40E-08
+12,234,2.38E-08
+12,235,2.36E-08
+12,236,2.34E-08
+12,237,2.32E-08
+12,238,2.30E-08
+12,239,2.28E-08
+12,240,2.26E-08
+12,241,2.24E-08
+12,242,2.22E-08
+12,243,2.21E-08
+12,244,2.19E-08
+12,245,2.17E-08
+12,246,2.15E-08
+12,247,2.13E-08
+12,248,2.12E-08
+12,249,2.10E-08
+12,250,2.08E-08
+12,251,2.07E-08
+12,252,2.05E-08
+12,253,2.03E-08
+12,254,2.02E-08
+12,255,2.00E-08
+12,256,1.99E-08
+12,257,1.97E-08
+12,258,1.96E-08
+12,259,1.94E-08
+12,260,1.92E-08
+12,261,1.91E-08
+12,262,1.90E-08
+12,263,1.88E-08
+12,264,1.87E-08
+12,265,1.85E-08
+12,266,1.84E-08
+12,267,1.82E-08
+12,268,1.81E-08
+12,269,1.80E-08
+12,270,1.78E-08
+12,271,1.77E-08
+12,272,1.76E-08
+12,273,1.74E-08
+12,274,1.73E-08
+12,275,1.72E-08
+12,276,1.70E-08
+12,277,1.69E-08
+12,278,1.68E-08
+12,279,1.67E-08
+12,280,1.65E-08
+12,281,1.64E-08
+12,282,1.63E-08
+12,283,1.62E-08
+12,284,1.61E-08
+12,285,1.59E-08
+12,286,1.58E-08
+12,287,1.57E-08
+12,288,1.56E-08
+12,289,1.55E-08
+12,290,1.54E-08
+12,291,1.53E-08
+12,292,1.52E-08
+12,293,1.51E-08
+12,294,1.50E-08
+12,295,1.48E-08
+12,296,1.47E-08
+12,297,1.46E-08
+12,298,1.45E-08
+12,299,1.44E-08
+12,300,1.43E-08
+12,301,1.42E-08
+12,302,1.41E-08
+12,303,1.40E-08
+12,304,1.39E-08
+12,305,1.38E-08
+12,306,1.38E-08
+12,307,1.37E-08
+12,308,1.36E-08
+12,309,1.35E-08
+12,310,1.34E-08
+12,311,1.33E-08
+12,312,1.32E-08
+12,313,1.31E-08
+12,314,1.30E-08
+12,315,1.29E-08
+12,316,1.29E-08
+12,317,1.28E-08
+12,318,1.27E-08
+12,319,1.26E-08
+12,320,1.25E-08
+12,321,1.24E-08
+12,322,1.24E-08
+12,323,1.23E-08
+12,324,1.22E-08
+12,325,1.21E-08
+12,326,1.20E-08
+12,327,1.20E-08
+12,328,1.19E-08
+12,329,1.18E-08
+12,330,1.17E-08
+12,331,1.17E-08
+12,332,1.16E-08
+12,333,1.15E-08
+12,334,1.14E-08
+12,335,1.14E-08
+12,336,1.13E-08
+12,337,1.12E-08
+12,338,1.11E-08
+12,339,1.11E-08
+12,340,1.10E-08
+12,341,1.09E-08
+12,342,1.09E-08
+12,343,1.08E-08
+12,344,1.07E-08
+12,345,1.07E-08
+12,346,1.06E-08
+12,347,1.05E-08
+12,348,1.05E-08
+12,349,1.04E-08
+12,350,1.03E-08
+12,351,1.03E-08
+12,352,1.02E-08
+12,353,1.02E-08
+12,354,1.01E-08
+12,355,1.00E-08
+12,356,9.97E-09
+12,357,9.91E-09
+12,358,9.85E-09
+12,359,9.79E-09
+12,360,9.74E-09
+12,361,9.68E-09
+12,362,9.62E-09
+12,363,9.56E-09
+12,364,9.51E-09
+12,365,9.45E-09
+12,366,9.39E-09
+12,367,9.34E-09
+12,368,9.28E-09
+12,369,9.23E-09
+12,370,9.18E-09
+12,371,9.12E-09
+12,372,9.07E-09
+12,373,9.02E-09
+12,374,8.96E-09
+12,375,8.91E-09
+12,376,8.86E-09
+12,377,8.81E-09
+12,378,8.76E-09
+12,379,8.71E-09
+12,380,8.66E-09
+12,381,8.61E-09
+12,382,8.56E-09
+12,383,8.51E-09
+12,384,8.46E-09
+12,385,8.41E-09
+12,386,8.37E-09
+12,387,8.32E-09
+12,388,8.27E-09
+12,389,8.23E-09
+12,390,8.18E-09
+12,391,8.13E-09
+12,392,8.09E-09
+12,393,8.04E-09
+12,394,8.00E-09
+12,395,7.95E-09
+12,396,7.91E-09
+12,397,7.87E-09
+12,398,7.82E-09
+12,399,7.78E-09
+12,400,7.74E-09
+12,401,7.69E-09
+12,402,7.65E-09
+12,403,7.61E-09
+12,404,7.57E-09
+12,405,7.53E-09
+12,406,7.48E-09
+12,407,7.44E-09
+12,408,7.40E-09
+12,409,7.36E-09
+12,410,7.32E-09
+12,411,7.28E-09
+12,412,7.24E-09
+12,413,7.20E-09
+12,414,7.17E-09
+12,415,7.13E-09
+12,416,7.09E-09
+12,417,7.05E-09
+12,418,7.01E-09
+12,419,6.97E-09
+12,420,6.94E-09
+12,421,6.90E-09
+12,422,6.86E-09
+12,423,6.83E-09
+12,424,6.79E-09
+12,425,6.75E-09
+12,426,6.72E-09
+12,427,6.68E-09
+12,428,6.65E-09
+12,429,6.61E-09
+12,430,6.58E-09
+12,431,6.54E-09
+12,432,6.51E-09
+12,433,6.47E-09
+12,434,6.44E-09
+12,435,6.41E-09
+12,436,6.37E-09
+12,437,6.34E-09
+12,438,6.31E-09
+12,439,6.27E-09
+12,440,6.24E-09
+12,441,6.21E-09
+12,442,6.18E-09
+12,443,6.14E-09
+12,444,6.11E-09
+12,445,6.08E-09
+12,446,6.05E-09
+12,447,6.02E-09
+12,448,5.99E-09
+12,449,5.96E-09
+12,450,5.92E-09
+12,451,5.89E-09
+12,452,5.86E-09
+12,453,5.83E-09
+12,454,5.80E-09
+12,455,5.77E-09
+12,456,5.74E-09
+12,457,5.71E-09
+12,458,5.68E-09
+12,459,5.66E-09
+12,460,5.63E-09
+12,461,5.60E-09
+12,462,5.57E-09
+12,463,5.54E-09
+12,464,5.51E-09
+12,465,5.48E-09
+12,466,5.46E-09
+12,467,5.43E-09
+12,468,5.40E-09
+12,469,5.37E-09
+12,470,5.35E-09
+12,471,5.32E-09
+12,472,5.29E-09
+12,473,5.26E-09
+12,474,5.24E-09
+12,475,5.21E-09
+12,476,5.19E-09
+12,477,5.16E-09
+12,478,5.13E-09
+12,479,5.11E-09
+12,480,5.08E-09
+12,481,5.06E-09
+12,482,5.03E-09
+12,483,5.00E-09
+12,484,4.98E-09
+12,485,4.95E-09
+12,486,4.93E-09
+12,487,4.90E-09
+12,488,4.88E-09
+12,489,4.85E-09
+12,490,4.83E-09
+12,491,4.81E-09
+12,492,4.78E-09
+12,493,4.76E-09
+12,494,4.73E-09
+12,495,4.71E-09
+12,496,4.69E-09
+12,497,4.66E-09
+12,498,4.64E-09
+12,499,4.61E-09
+12,500,4.59E-09
+12,501,4.57E-09
+12,502,4.55E-09
+12,503,4.52E-09
+12,504,4.50E-09
+12,505,4.48E-09
+12,506,4.45E-09
+12,507,4.43E-09
+12,508,4.41E-09
+12,509,4.39E-09
+12,510,4.36E-09
+12,511,4.34E-09
+12,512,4.32E-09
+12,513,4.30E-09
+12,514,4.28E-09
+12,515,4.26E-09
+12,516,4.23E-09
+12,517,4.21E-09
+12,518,4.19E-09
+12,519,4.17E-09
+12,520,4.15E-09
+12,521,4.13E-09
+12,522,4.11E-09
+12,523,4.09E-09
+12,524,4.07E-09
+12,525,4.05E-09
+12,526,4.03E-09
+12,527,4.01E-09
+12,528,3.99E-09
+12,529,3.96E-09
+12,530,3.94E-09
+12,531,3.92E-09
+12,532,3.91E-09
+12,533,3.89E-09
+12,534,3.87E-09
+12,535,3.85E-09
+12,536,3.83E-09
+12,537,3.81E-09
+12,538,3.79E-09
+12,539,3.77E-09
+12,540,3.75E-09
+12,541,3.73E-09
+12,542,3.71E-09
+12,543,3.69E-09
+12,544,3.68E-09
+12,545,3.66E-09
+12,546,3.64E-09
+12,547,3.62E-09
+12,548,3.60E-09
+12,549,3.58E-09
+12,550,3.57E-09
+12,551,3.55E-09
+12,552,3.53E-09
+12,553,3.51E-09
+12,554,3.49E-09
+12,555,3.48E-09
+12,556,3.46E-09
+12,557,3.44E-09
+12,558,3.42E-09
+12,559,3.41E-09
+12,560,3.39E-09
+12,561,3.37E-09
+12,562,3.36E-09
+12,563,3.34E-09
+12,564,3.32E-09
+12,565,3.30E-09
+12,566,3.29E-09
+12,567,3.27E-09
+12,568,3.26E-09
+12,569,3.24E-09
+12,570,3.22E-09
+12,571,3.21E-09
+12,572,3.19E-09
+12,573,3.17E-09
+12,574,3.16E-09
+12,575,3.14E-09
+12,576,3.13E-09
+12,577,3.11E-09
+12,578,3.09E-09
+12,579,3.08E-09
+12,580,3.06E-09
+12,581,3.05E-09
+12,582,3.03E-09
+12,583,3.02E-09
+12,584,3.00E-09
+12,585,2.99E-09
+12,586,2.97E-09
+12,587,2.96E-09
+12,588,2.94E-09
+12,589,2.93E-09
+12,590,2.91E-09
+12,591,2.90E-09
+12,592,2.88E-09
+12,593,2.87E-09
+12,594,2.85E-09
+12,595,2.84E-09
+12,596,2.83E-09
+12,597,2.81E-09
+12,598,2.80E-09
+12,599,2.78E-09
+12,600,2.77E-09
+12,601,2.75E-09
+12,602,2.74E-09
+12,603,2.73E-09
+12,604,2.71E-09
+12,605,2.70E-09
+12,606,2.69E-09
+12,607,2.67E-09
+12,608,2.66E-09
+12,609,2.65E-09
+12,610,2.63E-09
+12,611,2.62E-09
+12,612,2.61E-09
+12,613,2.59E-09
+12,614,2.58E-09
+12,615,2.57E-09
+12,616,2.55E-09
+12,617,2.54E-09
+12,618,2.53E-09
+12,619,2.51E-09
+12,620,2.50E-09
+12,621,2.49E-09
+12,622,2.48E-09
+12,623,2.46E-09
+12,624,2.45E-09
+12,625,2.44E-09
+12,626,2.43E-09
+12,627,2.42E-09
+12,628,2.40E-09
+12,629,2.39E-09
+12,630,2.38E-09
+12,631,2.37E-09
+12,632,2.35E-09
+12,633,2.34E-09
+12,634,2.33E-09
+12,635,2.32E-09
+12,636,2.31E-09
+12,637,2.30E-09
+12,638,2.28E-09
+12,639,2.27E-09
+12,640,2.26E-09
+12,641,2.25E-09
+12,642,2.24E-09
+12,643,2.23E-09
+12,644,2.22E-09
+12,645,2.20E-09
+12,646,2.19E-09
+12,647,2.18E-09
+12,648,2.17E-09
+12,649,2.16E-09
+12,650,2.15E-09
+12,651,2.14E-09
+12,652,2.13E-09
+12,653,2.12E-09
+12,654,2.11E-09
+12,655,2.10E-09
+12,656,2.09E-09
+12,657,2.08E-09
+12,658,2.06E-09
+12,659,2.05E-09
+12,660,2.04E-09
+12,661,2.03E-09
+12,662,2.02E-09
+12,663,2.01E-09
+12,664,2.00E-09
+12,665,1.99E-09
+12,666,1.98E-09
+12,667,1.97E-09
+12,668,1.96E-09
+12,669,1.95E-09
+12,670,1.94E-09
+12,671,1.93E-09
+12,672,1.92E-09
+12,673,1.91E-09
+12,674,1.90E-09
+12,675,1.89E-09
+12,676,1.88E-09
+12,677,1.88E-09
+12,678,1.87E-09
+12,679,1.86E-09
+12,680,1.85E-09
+12,681,1.84E-09
+12,682,1.83E-09
+12,683,1.82E-09
+12,684,1.81E-09
+12,685,1.80E-09
+12,686,1.79E-09
+12,687,1.78E-09
+12,688,1.77E-09
+12,689,1.77E-09
+12,690,1.76E-09
+12,691,1.75E-09
+12,692,1.74E-09
+12,693,1.73E-09
+12,694,1.72E-09
+12,695,1.71E-09
+12,696,1.70E-09
+12,697,1.70E-09
+12,698,1.69E-09
+12,699,1.68E-09
+12,700,1.67E-09
+12,701,1.66E-09
+12,702,1.65E-09
+12,703,1.64E-09
+12,704,1.64E-09
+12,705,1.63E-09
+12,706,1.62E-09
+12,707,1.61E-09
+12,708,1.60E-09
+12,709,1.60E-09
+12,710,1.59E-09
+12,711,1.58E-09
+12,712,1.57E-09
+12,713,1.56E-09
+12,714,1.56E-09
+12,715,1.55E-09
+12,716,1.54E-09
+12,717,1.53E-09
+12,718,1.52E-09
+12,719,1.52E-09
+12,720,1.51E-09
+12,721,1.50E-09
+12,722,1.49E-09
+12,723,1.49E-09
+12,724,1.48E-09
+12,725,1.47E-09
+12,726,1.46E-09
+12,727,1.46E-09
+12,728,1.45E-09
+12,729,1.44E-09
+12,730,1.43E-09
+12,731,1.43E-09
+12,732,1.42E-09
+12,733,1.41E-09
+12,734,1.41E-09
+12,735,1.40E-09
+12,736,1.39E-09
+12,737,1.38E-09
+12,738,1.38E-09
+12,739,1.37E-09
+12,740,1.36E-09
+12,741,1.36E-09
+12,742,1.35E-09
+12,743,1.34E-09
+12,744,1.34E-09
+12,745,1.33E-09
+12,746,1.32E-09
+12,747,1.32E-09
+12,748,1.31E-09
+12,749,1.30E-09
+12,750,1.30E-09
+12,751,1.29E-09
+12,752,1.28E-09
+12,753,1.28E-09
+12,754,1.27E-09
+12,755,1.26E-09
+12,756,1.26E-09
+12,757,1.25E-09
+12,758,1.24E-09
+12,759,1.24E-09
+12,760,1.23E-09
+12,761,1.23E-09
+12,762,1.22E-09
+12,763,1.21E-09
+12,764,1.21E-09
+12,765,1.20E-09
+12,766,1.20E-09
+12,767,1.19E-09
+12,768,1.18E-09
+12,769,1.18E-09
+12,770,1.17E-09
+12,771,1.17E-09
+12,772,1.16E-09
+12,773,1.15E-09
+12,774,1.15E-09
+12,775,1.14E-09
+12,776,1.14E-09
+12,777,1.13E-09
+12,778,1.13E-09
+12,779,1.12E-09
+12,780,1.11E-09
+12,781,1.11E-09
+12,782,1.10E-09
+12,783,1.10E-09
+12,784,1.09E-09
+12,785,1.09E-09
+12,786,1.08E-09
+12,787,1.08E-09
+12,788,1.07E-09
+12,789,1.06E-09
+12,790,1.06E-09
+12,791,1.05E-09
+12,792,1.05E-09
+12,793,1.04E-09
+12,794,1.04E-09
+12,795,1.03E-09
+12,796,1.03E-09
+12,797,1.02E-09
+12,798,1.02E-09
+12,799,1.01E-09
+12,800,1.01E-09
+12,801,1.00E-09
+12,802,9.97E-10
+12,803,9.92E-10
+12,804,9.87E-10
+12,805,9.82E-10
+12,806,9.77E-10
+12,807,9.72E-10
+12,808,9.67E-10
+12,809,9.62E-10
+12,810,9.57E-10
+12,811,9.52E-10
+12,812,9.47E-10
+12,813,9.43E-10
+12,814,9.38E-10
+12,815,9.33E-10
+12,816,9.28E-10
+12,817,9.24E-10
+12,818,9.19E-10
+12,819,9.14E-10
+12,820,9.10E-10
+12,821,9.05E-10
+12,822,9.01E-10
+12,823,8.96E-10
+12,824,8.92E-10
+12,825,8.87E-10
+12,826,8.83E-10
+12,827,8.78E-10
+12,828,8.74E-10
+12,829,8.69E-10
+12,830,8.65E-10
+12,831,8.61E-10
+12,832,8.56E-10
+12,833,8.52E-10
+12,834,8.48E-10
+12,835,8.43E-10
+12,836,8.39E-10
+12,837,8.35E-10
+12,838,8.31E-10
+12,839,8.26E-10
+12,840,8.22E-10
+12,841,8.18E-10
+12,842,8.14E-10
+12,843,8.10E-10
+12,844,8.06E-10
+12,845,8.02E-10
+12,846,7.98E-10
+12,847,7.94E-10
+12,848,7.90E-10
+12,849,7.86E-10
+12,850,7.82E-10
+12,851,7.78E-10
+12,852,7.74E-10
+12,853,7.70E-10
+12,854,7.66E-10
+12,855,7.62E-10
+12,856,7.58E-10
+12,857,7.55E-10
+12,858,7.51E-10
+12,859,7.47E-10
+12,860,7.43E-10
+12,861,7.39E-10
+12,862,7.36E-10
+12,863,7.32E-10
+12,864,7.28E-10
+12,865,7.25E-10
+12,866,7.21E-10
+12,867,7.17E-10
+12,868,7.14E-10
+12,869,7.10E-10
+12,870,7.07E-10
+12,871,7.03E-10
+12,872,6.99E-10
+12,873,6.96E-10
+12,874,6.92E-10
+12,875,6.89E-10
+12,876,6.85E-10
+12,877,6.82E-10
+12,878,6.79E-10
+12,879,6.75E-10
+12,880,6.72E-10
+12,881,6.68E-10
+12,882,6.65E-10
+12,883,6.62E-10
+12,884,6.58E-10
+12,885,6.55E-10
+12,886,6.52E-10
+12,887,6.48E-10
+12,888,6.45E-10
+12,889,6.42E-10
+12,890,6.39E-10
+12,891,6.35E-10
+12,892,6.32E-10
+12,893,6.29E-10
+12,894,6.26E-10
+12,895,6.23E-10
+12,896,6.19E-10
+12,897,6.16E-10
+12,898,6.13E-10
+12,899,6.10E-10
+12,900,6.07E-10
+12,901,6.04E-10
+12,902,6.01E-10
+12,903,5.98E-10
+12,904,5.95E-10
+12,905,5.92E-10
+12,906,5.89E-10
+12,907,5.86E-10
+12,908,5.83E-10
+12,909,5.80E-10
+12,910,5.77E-10
+12,911,5.74E-10
+12,912,5.71E-10
+12,913,5.68E-10
+12,914,5.66E-10
+12,915,5.63E-10
+12,916,5.60E-10
+12,917,5.57E-10
+12,918,5.54E-10
+12,919,5.51E-10
+12,920,5.49E-10
+12,921,5.46E-10
+12,922,5.43E-10
+12,923,5.40E-10
+12,924,5.38E-10
+12,925,5.35E-10
+12,926,5.32E-10
+12,927,5.30E-10
+12,928,5.27E-10
+12,929,5.24E-10
+12,930,5.22E-10
+12,931,5.19E-10
+12,932,5.16E-10
+12,933,5.14E-10
+12,934,5.11E-10
+12,935,5.09E-10
+12,936,5.06E-10
+12,937,5.03E-10
+12,938,5.01E-10
+12,939,4.98E-10
+12,940,4.96E-10
+12,941,4.93E-10
+12,942,4.91E-10
+12,943,4.88E-10
+12,944,4.86E-10
+12,945,4.83E-10
+12,946,4.81E-10
+12,947,4.79E-10
+12,948,4.76E-10
+12,949,4.74E-10
+12,950,4.71E-10
+12,951,4.69E-10
+12,952,4.67E-10
+12,953,4.64E-10
+12,954,4.62E-10
+12,955,4.60E-10
+12,956,4.57E-10
+12,957,4.55E-10
+12,958,4.53E-10
+12,959,4.50E-10
+12,960,4.48E-10
+12,961,4.46E-10
+12,962,4.44E-10
+12,963,4.41E-10
+12,964,4.39E-10
+12,965,4.37E-10
+12,966,4.35E-10
+12,967,4.33E-10
+12,968,4.30E-10
+12,969,4.28E-10
+12,970,4.26E-10
+12,971,4.24E-10
+12,972,4.22E-10
+12,973,4.20E-10
+12,974,4.18E-10
+12,975,4.15E-10
+12,976,4.13E-10
+12,977,4.11E-10
+12,978,4.09E-10
+12,979,4.07E-10
+12,980,4.05E-10
+12,981,4.03E-10
+12,982,4.01E-10
+12,983,3.99E-10
+12,984,3.97E-10
+12,985,3.95E-10
+12,986,3.93E-10
+12,987,3.91E-10
+12,988,3.89E-10
+12,989,3.87E-10
+12,990,3.85E-10
+12,991,3.83E-10
+12,992,3.81E-10
+12,993,3.79E-10
+12,994,3.77E-10
+12,995,3.75E-10
+12,996,3.74E-10
+12,997,3.72E-10
+12,998,3.70E-10
+12,999,3.68E-10
+12,1000,3.66E-10
+12,1001,3.64E-10
+12,1002,3.62E-10
+12,1003,3.61E-10
+12,1004,3.59E-10
+12,1005,3.57E-10
+12,1006,3.55E-10
+12,1007,3.53E-10
+12,1008,3.52E-10
+12,1009,3.50E-10
+12,1010,3.48E-10
+12,1011,3.46E-10
+12,1012,3.44E-10
+12,1013,3.43E-10
+12,1014,3.41E-10
+12,1015,3.39E-10
+12,1016,3.38E-10
+12,1017,3.36E-10
+12,1018,3.34E-10
+12,1019,3.33E-10
+12,1020,3.31E-10
+12,1021,3.29E-10
+12,1022,3.28E-10
+12,1023,3.26E-10
+12,1024,3.24E-10
+12,1025,3.23E-10
+12,1026,3.21E-10
+12,1027,3.19E-10
+12,1028,3.18E-10
+12,1029,3.16E-10
+12,1030,3.15E-10
+12,1031,3.13E-10
+12,1032,3.11E-10
+12,1033,3.10E-10
+12,1034,3.08E-10
+12,1035,3.07E-10
+12,1036,3.05E-10
+12,1037,3.04E-10
+12,1038,3.02E-10
+12,1039,3.01E-10
+12,1040,2.99E-10
+12,1041,2.97E-10
+12,1042,2.96E-10
+12,1043,2.94E-10
+12,1044,2.93E-10
+12,1045,2.92E-10
+12,1046,2.90E-10
+12,1047,2.89E-10
+12,1048,2.87E-10
+12,1049,2.86E-10
+12,1050,2.84E-10
+12,1051,2.83E-10
+12,1052,2.81E-10
+12,1053,2.80E-10
+12,1054,2.79E-10
+12,1055,2.77E-10
+12,1056,2.76E-10
+12,1057,2.74E-10
+12,1058,2.73E-10
+12,1059,2.72E-10
+12,1060,2.70E-10
+12,1061,2.69E-10
+12,1062,2.68E-10
+12,1063,2.66E-10
+12,1064,2.65E-10
+12,1065,2.63E-10
+12,1066,2.62E-10
+12,1067,2.61E-10
+12,1068,2.60E-10
+12,1069,2.58E-10
+12,1070,2.57E-10
+12,1071,2.56E-10
+12,1072,2.54E-10
+12,1073,2.53E-10
+12,1074,2.52E-10
+12,1075,2.50E-10
+12,1076,2.49E-10
+12,1077,2.48E-10
+12,1078,2.47E-10
+12,1079,2.45E-10
+12,1080,2.44E-10
+12,1081,2.43E-10
+12,1082,2.42E-10
+12,1083,2.41E-10
+12,1084,2.39E-10
+12,1085,2.38E-10
+12,1086,2.37E-10
+12,1087,2.36E-10
+12,1088,2.35E-10
+12,1089,2.33E-10
+12,1090,2.32E-10
+12,1091,2.31E-10
+12,1092,2.30E-10
+12,1093,2.29E-10
+12,1094,2.28E-10
+12,1095,2.26E-10
+12,1096,2.25E-10
+12,1097,2.24E-10
+12,1098,2.23E-10
+12,1099,2.22E-10
+12,1100,2.21E-10
+12,1101,2.20E-10
+12,1102,2.19E-10
+12,1103,2.17E-10
+12,1104,2.16E-10
+12,1105,2.15E-10
+12,1106,2.14E-10
+12,1107,2.13E-10
+12,1108,2.12E-10
+12,1109,2.11E-10
+12,1110,2.10E-10
+12,1111,2.09E-10
+12,1112,2.08E-10
+12,1113,2.07E-10
+12,1114,2.06E-10
+12,1115,2.05E-10
+12,1116,2.04E-10
+12,1117,2.03E-10
+12,1118,2.02E-10
+12,1119,2.01E-10
+12,1120,1.99E-10
+12,1121,1.98E-10
+12,1122,1.97E-10
+12,1123,1.96E-10
+12,1124,1.95E-10
+12,1125,1.95E-10
+12,1126,1.94E-10
+12,1127,1.93E-10
+12,1128,1.92E-10
+12,1129,1.91E-10
+12,1130,1.90E-10
+12,1131,1.89E-10
+12,1132,1.88E-10
+12,1133,1.87E-10
+12,1134,1.86E-10
+12,1135,1.85E-10
+12,1136,1.84E-10
+12,1137,1.83E-10
+12,1138,1.82E-10
+12,1139,1.81E-10
+12,1140,1.80E-10
+12,1141,1.79E-10
+12,1142,1.78E-10
+12,1143,1.78E-10
+12,1144,1.77E-10
+12,1145,1.76E-10
+12,1146,1.75E-10
+12,1147,1.74E-10
+12,1148,1.73E-10
+12,1149,1.72E-10
+12,1150,1.71E-10
+12,1151,1.71E-10
+12,1152,1.70E-10
+12,1153,1.69E-10
+12,1154,1.68E-10
+12,1155,1.67E-10
+12,1156,1.66E-10
+12,1157,1.65E-10
+12,1158,1.65E-10
+12,1159,1.64E-10
+12,1160,1.63E-10
+12,1161,1.62E-10
+12,1162,1.61E-10
+12,1163,1.60E-10
+12,1164,1.60E-10
+12,1165,1.59E-10
+12,1166,1.58E-10
+12,1167,1.57E-10
+12,1168,1.56E-10
+12,1169,1.56E-10
+12,1170,1.55E-10
+12,1171,1.54E-10
+12,1172,1.53E-10
+12,1173,1.53E-10
+12,1174,1.52E-10
+12,1175,1.51E-10
+12,1176,1.50E-10
+12,1177,1.50E-10
+12,1178,1.49E-10
+12,1179,1.48E-10
+12,1180,1.47E-10
+12,1181,1.47E-10
+12,1182,1.46E-10
+12,1183,1.45E-10
+12,1184,1.44E-10
+12,1185,1.44E-10
+12,1186,1.43E-10
+12,1187,1.42E-10
+12,1188,1.41E-10
+12,1189,1.41E-10
+12,1190,1.40E-10
+12,1191,1.39E-10
+12,1192,1.39E-10
+12,1193,1.38E-10
+12,1194,1.37E-10
+12,1195,1.37E-10
+12,1196,1.36E-10
+12,1197,1.35E-10
+12,1198,1.34E-10
+12,1199,1.34E-10
+12,1200,1.33E-10
+12,1201,1.32E-10
+12,1202,1.32E-10
+12,1203,1.31E-10
+12,1204,1.30E-10
+12,1205,1.30E-10
+12,1206,1.29E-10
+12,1207,1.28E-10
+12,1208,1.28E-10
+12,1209,1.27E-10
+12,1210,1.27E-10
+12,1211,1.26E-10
+12,1212,1.25E-10
+12,1213,1.25E-10
+12,1214,1.24E-10
+12,1215,1.23E-10
+12,1216,1.23E-10
+12,1217,1.22E-10
+12,1218,1.22E-10
+12,1219,1.21E-10
+12,1220,1.20E-10
+12,1221,1.20E-10
+12,1222,1.19E-10
+12,1223,1.18E-10
+12,1224,1.18E-10
+12,1225,1.17E-10
+12,1226,1.17E-10
+12,1227,1.16E-10
+12,1228,1.16E-10
+12,1229,1.15E-10
+12,1230,1.14E-10
+12,1231,1.14E-10
+12,1232,1.13E-10
+12,1233,1.13E-10
+12,1234,1.12E-10
+12,1235,1.12E-10
+12,1236,1.11E-10
+12,1237,1.10E-10
+12,1238,1.10E-10
+12,1239,1.09E-10
+12,1240,1.09E-10
+12,1241,1.08E-10
+12,1242,1.08E-10
+12,1243,1.07E-10
+12,1244,1.07E-10
+12,1245,1.06E-10
+12,1246,1.05E-10
+12,1247,1.05E-10
+12,1248,1.04E-10
+12,1249,1.04E-10
+12,1250,1.03E-10
+12,1251,1.03E-10
+12,1252,1.02E-10
+12,1253,1.02E-10
+12,1254,1.01E-10
+12,1255,1.01E-10
+12,1256,1.00E-10
+12,1257,9.98E-11
+12,1258,9.93E-11
+12,1259,9.88E-11
+12,1260,9.83E-11
+12,1261,9.78E-11
+12,1262,9.73E-11
+12,1263,9.68E-11
+12,1264,9.63E-11
+12,1265,9.58E-11
+12,1266,9.53E-11
+12,1267,9.48E-11
+12,1268,9.44E-11
+12,1269,9.39E-11
+12,1270,9.34E-11
+12,1271,9.29E-11
+12,1272,9.25E-11
+12,1273,9.20E-11
+12,1274,9.15E-11
+12,1275,9.11E-11
+12,1276,9.06E-11
+12,1277,9.02E-11
+12,1278,8.97E-11
+12,1279,8.93E-11
+12,1280,8.88E-11
+12,1281,8.84E-11
+12,1282,8.79E-11
+12,1283,8.75E-11
+12,1284,8.70E-11
+12,1285,8.66E-11
+12,1286,8.62E-11
+12,1287,8.57E-11
+12,1288,8.53E-11
+12,1289,8.49E-11
+12,1290,8.44E-11
+12,1291,8.40E-11
+12,1292,8.36E-11
+12,1293,8.32E-11
+12,1294,8.27E-11
+12,1295,8.23E-11
+12,1296,8.19E-11
+12,1297,8.15E-11
+12,1298,8.11E-11
+12,1299,8.07E-11
+12,1300,8.03E-11
+12,1301,7.99E-11
+12,1302,7.95E-11
+12,1303,7.91E-11
+12,1304,7.87E-11
+12,1305,7.83E-11
+12,1306,7.79E-11
+12,1307,7.75E-11
+12,1308,7.71E-11
+12,1309,7.67E-11
+12,1310,7.63E-11
+12,1311,7.59E-11
+12,1312,7.55E-11
+12,1313,7.52E-11
+12,1314,7.48E-11
+12,1315,7.44E-11
+12,1316,7.40E-11
+12,1317,7.36E-11
+12,1318,7.33E-11
+12,1319,7.29E-11
+12,1320,7.25E-11
+12,1321,7.22E-11
+12,1322,7.18E-11
+12,1323,7.14E-11
+12,1324,7.11E-11
+12,1325,7.07E-11
+12,1326,7.04E-11
+12,1327,7.00E-11
+12,1328,6.97E-11
+12,1329,6.93E-11
+12,1330,6.90E-11
+12,1331,6.86E-11
+12,1332,6.83E-11
+12,1333,6.79E-11
+12,1334,6.76E-11
+12,1335,6.72E-11
+12,1336,6.69E-11
+12,1337,6.66E-11
+12,1338,6.62E-11
+12,1339,6.59E-11
+12,1340,6.56E-11
+12,1341,6.52E-11
+12,1342,6.49E-11
+12,1343,6.46E-11
+12,1344,6.42E-11
+12,1345,6.39E-11
+12,1346,6.36E-11
+12,1347,6.33E-11
+12,1348,6.30E-11
+12,1349,6.26E-11
+12,1350,6.23E-11
+12,1351,6.20E-11
+12,1352,6.17E-11
+12,1353,6.14E-11
+12,1354,6.11E-11
+12,1355,6.08E-11
+12,1356,6.05E-11
+12,1357,6.02E-11
+12,1358,5.99E-11
+12,1359,5.96E-11
+12,1360,5.93E-11
+12,1361,5.90E-11
+12,1362,5.87E-11
+12,1363,5.84E-11
+12,1364,5.81E-11
+12,1365,5.78E-11
+12,1366,5.75E-11
+12,1367,5.72E-11
+12,1368,5.69E-11
+12,1369,5.66E-11
+12,1370,5.63E-11
+12,1371,5.60E-11
+12,1372,5.58E-11
+12,1373,5.55E-11
+12,1374,5.52E-11
+12,1375,5.49E-11
+12,1376,5.46E-11
+12,1377,5.44E-11
+12,1378,5.41E-11
+12,1379,5.38E-11
+12,1380,5.36E-11
+12,1381,5.33E-11
+12,1382,5.30E-11
+12,1383,5.27E-11
+12,1384,5.25E-11
+12,1385,5.22E-11
+12,1386,5.19E-11
+12,1387,5.17E-11
+12,1388,5.14E-11
+12,1389,5.12E-11
+12,1390,5.09E-11
+12,1391,5.07E-11
+12,1392,5.04E-11
+12,1393,5.01E-11
+12,1394,4.99E-11
+12,1395,4.96E-11
+12,1396,4.94E-11
+12,1397,4.91E-11
+12,1398,4.89E-11
+12,1399,4.86E-11
+12,1400,4.84E-11
+12,1401,4.82E-11
+12,1402,4.79E-11
+12,1403,4.77E-11
+12,1404,4.74E-11
+12,1405,4.72E-11
+12,1406,4.70E-11
+12,1407,4.67E-11
+12,1408,4.65E-11
+12,1409,4.62E-11
+12,1410,4.60E-11
+12,1411,4.58E-11
+12,1412,4.55E-11
+12,1413,4.53E-11
+12,1414,4.51E-11
+12,1415,4.49E-11
+12,1416,4.46E-11
+12,1417,4.44E-11
+12,1418,4.42E-11
+12,1419,4.40E-11
+12,1420,4.37E-11
+12,1421,4.35E-11
+12,1422,4.33E-11
+12,1423,4.31E-11
+12,1424,4.29E-11
+12,1425,4.26E-11
+12,1426,4.24E-11
+12,1427,4.22E-11
+12,1428,4.20E-11
+12,1429,4.18E-11
+12,1430,4.16E-11
+12,1431,4.14E-11
+12,1432,4.12E-11
+12,1433,4.10E-11
+12,1434,4.08E-11
+12,1435,4.05E-11
+12,1436,4.03E-11
+12,1437,4.01E-11
+12,1438,3.99E-11
+12,1439,3.97E-11
+12,1440,3.95E-11
+12,1441,3.93E-11
+12,1442,3.91E-11
+12,1443,3.89E-11
+12,1444,3.87E-11
+12,1445,3.85E-11
+12,1446,3.84E-11
+12,1447,3.82E-11
+12,1448,3.80E-11
+12,1449,3.78E-11
+12,1450,3.76E-11
+12,1451,3.74E-11
+12,1452,3.72E-11
+12,1453,3.70E-11
+12,1454,3.68E-11
+12,1455,3.66E-11
+12,1456,3.65E-11
+12,1457,3.63E-11
+12,1458,3.61E-11
+12,1459,3.59E-11
+12,1460,3.57E-11
+12,1461,3.55E-11
+12,1462,3.54E-11
+12,1463,3.52E-11
+12,1464,3.50E-11
+12,1465,3.48E-11
+12,1466,3.47E-11
+12,1467,3.45E-11
+12,1468,3.43E-11
+12,1469,3.41E-11
+12,1470,3.40E-11
+12,1471,3.38E-11
+12,1472,3.36E-11
+12,1473,3.35E-11
+12,1474,3.33E-11
+12,1475,3.31E-11
+12,1476,3.30E-11
+12,1477,3.28E-11
+12,1478,3.26E-11
+12,1479,3.25E-11
+12,1480,3.23E-11
+12,1481,3.21E-11
+12,1482,3.20E-11
+12,1483,3.18E-11
+12,1484,3.16E-11
+12,1485,3.15E-11
+12,1486,3.13E-11
+12,1487,3.12E-11
+12,1488,3.10E-11
+12,1489,3.09E-11
+12,1490,3.07E-11
+12,1491,3.05E-11
+12,1492,3.04E-11
+12,1493,3.02E-11
+12,1494,3.01E-11
+12,1495,2.99E-11
+12,1496,2.98E-11
+12,1497,2.96E-11
+12,1498,2.95E-11
+12,1499,2.93E-11
+12,1500,2.92E-11
+12,1501,2.90E-11
+12,1502,2.89E-11
+12,1503,2.87E-11
+12,1504,2.86E-11
+12,1505,2.85E-11
+12,1506,2.83E-11
+12,1507,2.82E-11
+12,1508,2.80E-11
+12,1509,2.79E-11
+12,1510,2.77E-11
+12,1511,2.76E-11
+12,1512,2.75E-11
+12,1513,2.73E-11
+12,1514,2.72E-11
+12,1515,2.71E-11
+12,1516,2.69E-11
+12,1517,2.68E-11
+12,1518,2.66E-11
+12,1519,2.65E-11
+12,1520,2.64E-11
+12,1521,2.62E-11
+12,1522,2.61E-11
+12,1523,2.60E-11
+12,1524,2.58E-11
+12,1525,2.57E-11
+12,1526,2.56E-11
+12,1527,2.55E-11
+12,1528,2.53E-11
+12,1529,2.52E-11
+12,1530,2.51E-11
+12,1531,2.49E-11
+12,1532,2.48E-11
+12,1533,2.47E-11
+12,1534,2.46E-11
+12,1535,2.44E-11
+12,1536,2.43E-11
+12,1537,2.42E-11
+12,1538,2.41E-11
+12,1539,2.40E-11
+12,1540,2.38E-11
+12,1541,2.37E-11
+12,1542,2.36E-11
+12,1543,2.35E-11
+12,1544,2.34E-11
+12,1545,2.32E-11
+12,1546,2.31E-11
+12,1547,2.30E-11
+12,1548,2.29E-11
+12,1549,2.28E-11
+12,1550,2.27E-11
+12,1551,2.25E-11
+12,1552,2.24E-11
+12,1553,2.23E-11
+12,1554,2.22E-11
+12,1555,2.21E-11
+12,1556,2.20E-11
+12,1557,2.19E-11
+12,1558,2.18E-11
+12,1559,2.17E-11
+12,1560,2.15E-11
+12,1561,2.14E-11
+12,1562,2.13E-11
+12,1563,2.12E-11
+12,1564,2.11E-11
+12,1565,2.10E-11
+12,1566,2.09E-11
+12,1567,2.08E-11
+12,1568,2.07E-11
+12,1569,2.06E-11
+12,1570,2.05E-11
+12,1571,2.04E-11
+12,1572,2.03E-11
+12,1573,2.02E-11
+12,1574,2.01E-11
+12,1575,2.00E-11
+12,1576,1.99E-11
+12,1577,1.98E-11
+12,1578,1.97E-11
+12,1579,1.96E-11
+12,1580,1.95E-11
+12,1581,1.94E-11
+12,1582,1.93E-11
+12,1583,1.92E-11
+12,1584,1.91E-11
+12,1585,1.90E-11
+12,1586,1.89E-11
+12,1587,1.88E-11
+12,1588,1.87E-11
+12,1589,1.86E-11
+12,1590,1.85E-11
+12,1591,1.84E-11
+12,1592,1.83E-11
+12,1593,1.82E-11
+12,1594,1.81E-11
+12,1595,1.80E-11
+12,1596,1.80E-11
+12,1597,1.79E-11
+12,1598,1.78E-11
+12,1599,1.77E-11
+12,1600,1.76E-11
+12,1601,1.75E-11
+12,1602,1.74E-11
+12,1603,1.73E-11
+12,1604,1.72E-11
+12,1605,1.72E-11
+12,1606,1.71E-11
+12,1607,1.70E-11
+12,1608,1.69E-11
+12,1609,1.68E-11
+12,1610,1.67E-11
+12,1611,1.66E-11
+12,1612,1.66E-11
+12,1613,1.65E-11
+12,1614,1.64E-11
+12,1615,1.63E-11
+12,1616,1.62E-11
+12,1617,1.61E-11
+12,1618,1.61E-11
+12,1619,1.60E-11
+12,1620,1.59E-11
+12,1621,1.58E-11
+12,1622,1.57E-11
+12,1623,1.57E-11
+12,1624,1.56E-11
+12,1625,1.55E-11
+12,1626,1.54E-11
+12,1627,1.54E-11
+12,1628,1.53E-11
+12,1629,1.52E-11
+12,1630,1.51E-11
+12,1631,1.50E-11
+12,1632,1.50E-11
+12,1633,1.49E-11
+12,1634,1.48E-11
+12,1635,1.47E-11
+12,1636,1.47E-11
+12,1637,1.46E-11
+12,1638,1.45E-11
+12,1639,1.44E-11
+12,1640,1.44E-11
+12,1641,1.43E-11
+12,1642,1.42E-11
+12,1643,1.42E-11
+12,1644,1.41E-11
+12,1645,1.40E-11
+12,1646,1.39E-11
+12,1647,1.39E-11
+12,1648,1.38E-11
+12,1649,1.37E-11
+12,1650,1.37E-11
+12,1651,1.36E-11
+12,1652,1.35E-11
+12,1653,1.35E-11
+12,1654,1.34E-11
+12,1655,1.33E-11
+12,1656,1.33E-11
+12,1657,1.32E-11
+12,1658,1.31E-11
+12,1659,1.31E-11
+12,1660,1.30E-11
+12,1661,1.29E-11
+12,1662,1.29E-11
+12,1663,1.28E-11
+12,1664,1.27E-11
+12,1665,1.27E-11
+12,1666,1.26E-11
+12,1667,1.25E-11
+12,1668,1.25E-11
+12,1669,1.24E-11
+12,1670,1.24E-11
+12,1671,1.23E-11
+12,1672,1.22E-11
+12,1673,1.22E-11
+12,1674,1.21E-11
+12,1675,1.20E-11
+12,1676,1.20E-11
+12,1677,1.19E-11
+12,1678,1.19E-11
+12,1679,1.18E-11
+12,1680,1.17E-11
+12,1681,1.17E-11
+12,1682,1.16E-11
+12,1683,1.16E-11
+12,1684,1.15E-11
+12,1685,1.14E-11
+12,1686,1.14E-11
+12,1687,1.13E-11
+12,1688,1.13E-11
+12,1689,1.12E-11
+12,1690,1.12E-11
+12,1691,1.11E-11
+12,1692,1.11E-11
+12,1693,1.10E-11
+12,1694,1.09E-11
+12,1695,1.09E-11
+12,1696,1.08E-11
+12,1697,1.08E-11
+12,1698,1.07E-11
+12,1699,1.07E-11
+12,1700,1.06E-11
+12,1701,1.06E-11
+12,1702,1.05E-11
+12,1703,1.05E-11
+12,1704,1.04E-11
+12,1705,1.03E-11
+12,1706,1.03E-11
+12,1707,1.02E-11
+12,1708,1.02E-11
+12,1709,1.01E-11
+12,1710,1.01E-11
+12,1711,1.00E-11
+12,1712,9.99E-12
+12,1713,9.94E-12
+12,1714,9.89E-12
+12,1715,9.84E-12
+12,1716,9.79E-12
+12,1717,9.74E-12
+12,1718,9.69E-12
+12,1719,9.64E-12
+12,1720,9.59E-12
+12,1721,9.54E-12
+12,1722,9.49E-12
+12,1723,9.45E-12
+12,1724,9.40E-12
+12,1725,9.35E-12
+12,1726,9.30E-12
+12,1727,9.26E-12
+12,1728,9.21E-12
+12,1729,9.16E-12
+12,1730,9.12E-12
+12,1731,9.07E-12
+12,1732,9.03E-12
+12,1733,8.98E-12
+12,1734,8.94E-12
+12,1735,8.89E-12
+12,1736,8.85E-12
+12,1737,8.80E-12
+12,1738,8.76E-12
+12,1739,8.71E-12
+12,1740,8.67E-12
+12,1741,8.62E-12
+12,1742,8.58E-12
+12,1743,8.54E-12
+12,1744,8.49E-12
+12,1745,8.45E-12
+12,1746,8.41E-12
+12,1747,8.37E-12
+12,1748,8.32E-12
+12,1749,8.28E-12
+12,1750,8.24E-12
+12,1751,8.20E-12
+12,1752,8.16E-12
+12,1753,8.12E-12
+12,1754,8.08E-12
+12,1755,8.03E-12
+12,1756,7.99E-12
+12,1757,7.95E-12
+12,1758,7.91E-12
+12,1759,7.87E-12
+12,1760,7.83E-12
+12,1761,7.79E-12
+12,1762,7.76E-12
+12,1763,7.72E-12
+12,1764,7.68E-12
+12,1765,7.64E-12
+12,1766,7.60E-12
+12,1767,7.56E-12
+12,1768,7.52E-12
+12,1769,7.49E-12
+12,1770,7.45E-12
+12,1771,7.41E-12
+12,1772,7.37E-12
+12,1773,7.34E-12
+12,1774,7.30E-12
+12,1775,7.26E-12
+12,1776,7.22E-12
+12,1777,7.19E-12
+12,1778,7.15E-12
+12,1779,7.12E-12
+12,1780,7.08E-12
+12,1781,7.04E-12
+12,1782,7.01E-12
+12,1783,6.97E-12
+12,1784,6.94E-12
+12,1785,6.90E-12
+12,1786,6.87E-12
+12,1787,6.83E-12
+12,1788,6.80E-12
+12,1789,6.77E-12
+12,1790,6.73E-12
+12,1791,6.70E-12
+12,1792,6.66E-12
+12,1793,6.63E-12
+12,1794,6.60E-12
+12,1795,6.56E-12
+12,1796,6.53E-12
+12,1797,6.50E-12
+12,1798,6.46E-12
+12,1799,6.43E-12
+12,1800,6.40E-12
+12,1801,6.37E-12
+12,1802,6.33E-12
+12,1803,6.30E-12
+12,1804,6.27E-12
+12,1805,6.24E-12
+12,1806,6.21E-12
+12,1807,6.18E-12
+12,1808,6.15E-12
+12,1809,6.11E-12
+12,1810,6.08E-12
+12,1811,6.05E-12
+12,1812,6.02E-12
+12,1813,5.99E-12
+12,1814,5.96E-12
+12,1815,5.93E-12
+12,1816,5.90E-12
+12,1817,5.87E-12
+12,1818,5.84E-12
+12,1819,5.81E-12
+12,1820,5.78E-12
+12,1821,5.75E-12
+12,1822,5.73E-12
+12,1823,5.70E-12
+12,1824,5.67E-12
+12,1825,5.64E-12
+12,1826,5.61E-12
+12,1827,5.58E-12
+12,1828,5.55E-12
+12,1829,5.53E-12
+12,1830,5.50E-12
+12,1831,5.47E-12
+12,1832,5.44E-12
+12,1833,5.42E-12
+12,1834,5.39E-12
+12,1835,5.36E-12
+12,1836,5.33E-12
+12,1837,5.31E-12
+12,1838,5.28E-12
+12,1839,5.25E-12
+12,1840,5.23E-12
+12,1841,5.20E-12
+12,1842,5.17E-12
+12,1843,5.15E-12
+12,1844,5.12E-12
+12,1845,5.10E-12
+12,1846,5.07E-12
+12,1847,5.05E-12
+12,1848,5.02E-12
+12,1849,4.99E-12
+12,1850,4.97E-12
+12,1851,4.94E-12
+12,1852,4.92E-12
+12,1853,4.89E-12
+12,1854,4.87E-12
+12,1855,4.84E-12
+12,1856,4.82E-12
+12,1857,4.80E-12
+12,1858,4.77E-12
+12,1859,4.75E-12
+12,1860,4.72E-12
+12,1861,4.70E-12
+12,1862,4.68E-12
+12,1863,4.65E-12
+12,1864,4.63E-12
+12,1865,4.61E-12
+12,1866,4.58E-12
+12,1867,4.56E-12
+12,1868,4.54E-12
+12,1869,4.51E-12
+12,1870,4.49E-12
+12,1871,4.47E-12
+12,1872,4.45E-12
+12,1873,4.42E-12
+12,1874,4.40E-12
+12,1875,4.38E-12
+12,1876,4.36E-12
+12,1877,4.33E-12
+12,1878,4.31E-12
+12,1879,4.29E-12
+12,1880,4.27E-12
+12,1881,4.25E-12
+12,1882,4.23E-12
+12,1883,4.21E-12
+12,1884,4.18E-12
+12,1885,4.16E-12
+12,1886,4.14E-12
+12,1887,4.12E-12
+12,1888,4.10E-12
+12,1889,4.08E-12
+12,1890,4.06E-12
+12,1891,4.04E-12
+12,1892,4.02E-12
+12,1893,4.00E-12
+12,1894,3.98E-12
+12,1895,3.96E-12
+12,1896,3.94E-12
+12,1897,3.92E-12
+12,1898,3.90E-12
+12,1899,3.88E-12
+12,1900,3.86E-12
+12,1901,3.84E-12
+12,1902,3.82E-12
+12,1903,3.80E-12
+12,1904,3.78E-12
+12,1905,3.76E-12
+12,1906,3.74E-12
+12,1907,3.72E-12
+12,1908,3.71E-12
+12,1909,3.69E-12
+12,1910,3.67E-12
+12,1911,3.65E-12
+12,1912,3.63E-12
+12,1913,3.61E-12
+12,1914,3.59E-12
+12,1915,3.58E-12
+12,1916,3.56E-12
+12,1917,3.54E-12
+12,1918,3.52E-12
+12,1919,3.51E-12
+12,1920,3.49E-12
+12,1921,3.47E-12
+12,1922,3.45E-12
+12,1923,3.43E-12
+12,1924,3.42E-12
+12,1925,3.40E-12
+12,1926,3.38E-12
+12,1927,3.37E-12
+12,1928,3.35E-12
+12,1929,3.33E-12
+12,1930,3.32E-12
+12,1931,3.30E-12
+12,1932,3.28E-12
+12,1933,3.27E-12
+12,1934,3.25E-12
+12,1935,3.23E-12
+12,1936,3.22E-12
+12,1937,3.20E-12
+12,1938,3.18E-12
+12,1939,3.17E-12
+12,1940,3.15E-12
+12,1941,3.14E-12
+12,1942,3.12E-12
+12,1943,3.10E-12
+12,1944,3.09E-12
+12,1945,3.07E-12
+12,1946,3.06E-12
+12,1947,3.04E-12
+12,1948,3.03E-12
+12,1949,3.01E-12
+12,1950,3.00E-12
+12,1951,2.98E-12
+12,1952,2.97E-12
+12,1953,2.95E-12
+12,1954,2.94E-12
+12,1955,2.92E-12
+12,1956,2.91E-12
+12,1957,2.89E-12
+12,1958,2.88E-12
+12,1959,2.86E-12
+12,1960,2.85E-12
+12,1961,2.83E-12
+12,1962,2.82E-12
+12,1963,2.81E-12
+12,1964,2.79E-12
+12,1965,2.78E-12
+12,1966,2.76E-12
+12,1967,2.75E-12
+12,1968,2.74E-12
+12,1969,2.72E-12
+12,1970,2.71E-12
+12,1971,2.69E-12
+12,1972,2.68E-12
+12,1973,2.67E-12
+12,1974,2.65E-12
+12,1975,2.64E-12
+12,1976,2.63E-12
+12,1977,2.61E-12
+12,1978,2.60E-12
+12,1979,2.59E-12
+12,1980,2.57E-12
+12,1981,2.56E-12
+12,1982,2.55E-12
+12,1983,2.54E-12
+12,1984,2.52E-12
+12,1985,2.51E-12
+12,1986,2.50E-12
+12,1987,2.48E-12
+12,1988,2.47E-12
+12,1989,2.46E-12
+12,1990,2.45E-12
+12,1991,2.44E-12
+12,1992,2.42E-12
+12,1993,2.41E-12
+12,1994,2.40E-12
+12,1995,2.39E-12
+12,1996,2.37E-12
+12,1997,2.36E-12
+12,1998,2.35E-12
+12,1999,2.34E-12
+12,2000,2.33E-12
+13,1,5.21E-07
+13,2,5.13E-07
+13,3,5.05E-07
+13,4,4.98E-07
+13,5,4.90E-07
+13,6,4.82E-07
+13,7,4.75E-07
+13,8,4.68E-07
+13,9,4.60E-07
+13,10,4.53E-07
+13,11,4.46E-07
+13,12,4.39E-07
+13,13,4.33E-07
+13,14,4.26E-07
+13,15,4.19E-07
+13,16,4.13E-07
+13,17,4.07E-07
+13,18,4.00E-07
+13,19,3.94E-07
+13,20,3.88E-07
+13,21,3.82E-07
+13,22,3.76E-07
+13,23,3.70E-07
+13,24,3.65E-07
+13,25,3.59E-07
+13,26,3.54E-07
+13,27,3.48E-07
+13,28,3.43E-07
+13,29,3.38E-07
+13,30,3.33E-07
+13,31,3.28E-07
+13,32,3.23E-07
+13,33,3.18E-07
+13,34,3.13E-07
+13,35,3.08E-07
+13,36,3.04E-07
+13,37,2.99E-07
+13,38,2.94E-07
+13,39,2.90E-07
+13,40,2.86E-07
+13,41,2.81E-07
+13,42,2.77E-07
+13,43,2.73E-07
+13,44,2.69E-07
+13,45,2.65E-07
+13,46,2.61E-07
+13,47,2.57E-07
+13,48,2.54E-07
+13,49,2.50E-07
+13,50,2.46E-07
+13,51,2.43E-07
+13,52,2.39E-07
+13,53,2.36E-07
+13,54,2.32E-07
+13,55,2.29E-07
+13,56,2.26E-07
+13,57,2.22E-07
+13,58,2.19E-07
+13,59,2.16E-07
+13,60,2.13E-07
+13,61,2.10E-07
+13,62,2.07E-07
+13,63,2.04E-07
+13,64,2.01E-07
+13,65,1.98E-07
+13,66,1.96E-07
+13,67,1.93E-07
+13,68,1.90E-07
+13,69,1.88E-07
+13,70,1.85E-07
+13,71,1.82E-07
+13,72,1.80E-07
+13,73,1.78E-07
+13,74,1.75E-07
+13,75,1.73E-07
+13,76,1.70E-07
+13,77,1.68E-07
+13,78,1.66E-07
+13,79,1.64E-07
+13,80,1.61E-07
+13,81,1.59E-07
+13,82,1.57E-07
+13,83,1.55E-07
+13,84,1.53E-07
+13,85,1.51E-07
+13,86,1.49E-07
+13,87,1.47E-07
+13,88,1.45E-07
+13,89,1.43E-07
+13,90,1.41E-07
+13,91,1.40E-07
+13,92,1.38E-07
+13,93,1.36E-07
+13,94,1.34E-07
+13,95,1.33E-07
+13,96,1.31E-07
+13,97,1.29E-07
+13,98,1.28E-07
+13,99,1.26E-07
+13,100,1.24E-07
+13,101,1.23E-07
+13,102,1.21E-07
+13,103,1.20E-07
+13,104,1.18E-07
+13,105,1.17E-07
+13,106,1.15E-07
+13,107,1.14E-07
+13,108,1.12E-07
+13,109,1.11E-07
+13,110,1.10E-07
+13,111,1.08E-07
+13,112,1.07E-07
+13,113,1.06E-07
+13,114,1.04E-07
+13,115,1.03E-07
+13,116,1.02E-07
+13,117,1.01E-07
+13,118,9.96E-08
+13,119,9.84E-08
+13,120,9.72E-08
+13,121,9.61E-08
+13,122,9.49E-08
+13,123,9.38E-08
+13,124,9.27E-08
+13,125,9.16E-08
+13,126,9.06E-08
+13,127,8.95E-08
+13,128,8.85E-08
+13,129,8.74E-08
+13,130,8.64E-08
+13,131,8.54E-08
+13,132,8.45E-08
+13,133,8.35E-08
+13,134,8.25E-08
+13,135,8.16E-08
+13,136,8.07E-08
+13,137,7.98E-08
+13,138,7.89E-08
+13,139,7.80E-08
+13,140,7.71E-08
+13,141,7.63E-08
+13,142,7.54E-08
+13,143,7.46E-08
+13,144,7.38E-08
+13,145,7.29E-08
+13,146,7.21E-08
+13,147,7.14E-08
+13,148,7.06E-08
+13,149,6.98E-08
+13,150,6.90E-08
+13,151,6.83E-08
+13,152,6.76E-08
+13,153,6.68E-08
+13,154,6.61E-08
+13,155,6.54E-08
+13,156,6.47E-08
+13,157,6.40E-08
+13,158,6.34E-08
+13,159,6.27E-08
+13,160,6.20E-08
+13,161,6.14E-08
+13,162,6.07E-08
+13,163,6.01E-08
+13,164,5.95E-08
+13,165,5.89E-08
+13,166,5.83E-08
+13,167,5.77E-08
+13,168,5.71E-08
+13,169,5.65E-08
+13,170,5.59E-08
+13,171,5.53E-08
+13,172,5.48E-08
+13,173,5.42E-08
+13,174,5.37E-08
+13,175,5.31E-08
+13,176,5.26E-08
+13,177,5.21E-08
+13,178,5.16E-08
+13,179,5.10E-08
+13,180,5.05E-08
+13,181,5.00E-08
+13,182,4.95E-08
+13,183,4.91E-08
+13,184,4.86E-08
+13,185,4.81E-08
+13,186,4.76E-08
+13,187,4.72E-08
+13,188,4.67E-08
+13,189,4.63E-08
+13,190,4.58E-08
+13,191,4.54E-08
+13,192,4.50E-08
+13,193,4.45E-08
+13,194,4.41E-08
+13,195,4.37E-08
+13,196,4.33E-08
+13,197,4.29E-08
+13,198,4.25E-08
+13,199,4.21E-08
+13,200,4.17E-08
+13,201,4.13E-08
+13,202,4.09E-08
+13,203,4.05E-08
+13,204,4.02E-08
+13,205,3.98E-08
+13,206,3.94E-08
+13,207,3.91E-08
+13,208,3.87E-08
+13,209,3.84E-08
+13,210,3.80E-08
+13,211,3.77E-08
+13,212,3.73E-08
+13,213,3.70E-08
+13,214,3.67E-08
+13,215,3.63E-08
+13,216,3.60E-08
+13,217,3.57E-08
+13,218,3.54E-08
+13,219,3.51E-08
+13,220,3.48E-08
+13,221,3.45E-08
+13,222,3.42E-08
+13,223,3.39E-08
+13,224,3.36E-08
+13,225,3.33E-08
+13,226,3.30E-08
+13,227,3.27E-08
+13,228,3.24E-08
+13,229,3.22E-08
+13,230,3.19E-08
+13,231,3.16E-08
+13,232,3.14E-08
+13,233,3.11E-08
+13,234,3.08E-08
+13,235,3.06E-08
+13,236,3.03E-08
+13,237,3.01E-08
+13,238,2.98E-08
+13,239,2.96E-08
+13,240,2.93E-08
+13,241,2.91E-08
+13,242,2.88E-08
+13,243,2.86E-08
+13,244,2.84E-08
+13,245,2.81E-08
+13,246,2.79E-08
+13,247,2.77E-08
+13,248,2.75E-08
+13,249,2.72E-08
+13,250,2.70E-08
+13,251,2.68E-08
+13,252,2.66E-08
+13,253,2.64E-08
+13,254,2.62E-08
+13,255,2.60E-08
+13,256,2.58E-08
+13,257,2.56E-08
+13,258,2.54E-08
+13,259,2.52E-08
+13,260,2.50E-08
+13,261,2.48E-08
+13,262,2.46E-08
+13,263,2.44E-08
+13,264,2.42E-08
+13,265,2.40E-08
+13,266,2.38E-08
+13,267,2.37E-08
+13,268,2.35E-08
+13,269,2.33E-08
+13,270,2.31E-08
+13,271,2.29E-08
+13,272,2.28E-08
+13,273,2.26E-08
+13,274,2.24E-08
+13,275,2.23E-08
+13,276,2.21E-08
+13,277,2.19E-08
+13,278,2.18E-08
+13,279,2.16E-08
+13,280,2.15E-08
+13,281,2.13E-08
+13,282,2.11E-08
+13,283,2.10E-08
+13,284,2.08E-08
+13,285,2.07E-08
+13,286,2.05E-08
+13,287,2.04E-08
+13,288,2.02E-08
+13,289,2.01E-08
+13,290,2.00E-08
+13,291,1.98E-08
+13,292,1.97E-08
+13,293,1.95E-08
+13,294,1.94E-08
+13,295,1.93E-08
+13,296,1.91E-08
+13,297,1.90E-08
+13,298,1.89E-08
+13,299,1.87E-08
+13,300,1.86E-08
+13,301,1.85E-08
+13,302,1.83E-08
+13,303,1.82E-08
+13,304,1.81E-08
+13,305,1.80E-08
+13,306,1.78E-08
+13,307,1.77E-08
+13,308,1.76E-08
+13,309,1.75E-08
+13,310,1.74E-08
+13,311,1.72E-08
+13,312,1.71E-08
+13,313,1.70E-08
+13,314,1.69E-08
+13,315,1.68E-08
+13,316,1.67E-08
+13,317,1.66E-08
+13,318,1.65E-08
+13,319,1.63E-08
+13,320,1.62E-08
+13,321,1.61E-08
+13,322,1.60E-08
+13,323,1.59E-08
+13,324,1.58E-08
+13,325,1.57E-08
+13,326,1.56E-08
+13,327,1.55E-08
+13,328,1.54E-08
+13,329,1.53E-08
+13,330,1.52E-08
+13,331,1.51E-08
+13,332,1.50E-08
+13,333,1.49E-08
+13,334,1.48E-08
+13,335,1.47E-08
+13,336,1.46E-08
+13,337,1.45E-08
+13,338,1.45E-08
+13,339,1.44E-08
+13,340,1.43E-08
+13,341,1.42E-08
+13,342,1.41E-08
+13,343,1.40E-08
+13,344,1.39E-08
+13,345,1.38E-08
+13,346,1.38E-08
+13,347,1.37E-08
+13,348,1.36E-08
+13,349,1.35E-08
+13,350,1.34E-08
+13,351,1.33E-08
+13,352,1.33E-08
+13,353,1.32E-08
+13,354,1.31E-08
+13,355,1.30E-08
+13,356,1.29E-08
+13,357,1.29E-08
+13,358,1.28E-08
+13,359,1.27E-08
+13,360,1.26E-08
+13,361,1.26E-08
+13,362,1.25E-08
+13,363,1.24E-08
+13,364,1.23E-08
+13,365,1.23E-08
+13,366,1.22E-08
+13,367,1.21E-08
+13,368,1.20E-08
+13,369,1.20E-08
+13,370,1.19E-08
+13,371,1.18E-08
+13,372,1.18E-08
+13,373,1.17E-08
+13,374,1.16E-08
+13,375,1.16E-08
+13,376,1.15E-08
+13,377,1.14E-08
+13,378,1.14E-08
+13,379,1.13E-08
+13,380,1.12E-08
+13,381,1.12E-08
+13,382,1.11E-08
+13,383,1.10E-08
+13,384,1.10E-08
+13,385,1.09E-08
+13,386,1.09E-08
+13,387,1.08E-08
+13,388,1.07E-08
+13,389,1.07E-08
+13,390,1.06E-08
+13,391,1.06E-08
+13,392,1.05E-08
+13,393,1.04E-08
+13,394,1.04E-08
+13,395,1.03E-08
+13,396,1.03E-08
+13,397,1.02E-08
+13,398,1.01E-08
+13,399,1.01E-08
+13,400,1.00E-08
+13,401,9.98E-09
+13,402,9.92E-09
+13,403,9.87E-09
+13,404,9.82E-09
+13,405,9.76E-09
+13,406,9.71E-09
+13,407,9.66E-09
+13,408,9.60E-09
+13,409,9.55E-09
+13,410,9.50E-09
+13,411,9.45E-09
+13,412,9.40E-09
+13,413,9.35E-09
+13,414,9.29E-09
+13,415,9.24E-09
+13,416,9.19E-09
+13,417,9.15E-09
+13,418,9.10E-09
+13,419,9.05E-09
+13,420,9.00E-09
+13,421,8.95E-09
+13,422,8.90E-09
+13,423,8.86E-09
+13,424,8.81E-09
+13,425,8.76E-09
+13,426,8.72E-09
+13,427,8.67E-09
+13,428,8.62E-09
+13,429,8.58E-09
+13,430,8.53E-09
+13,431,8.49E-09
+13,432,8.44E-09
+13,433,8.40E-09
+13,434,8.35E-09
+13,435,8.31E-09
+13,436,8.27E-09
+13,437,8.22E-09
+13,438,8.18E-09
+13,439,8.14E-09
+13,440,8.10E-09
+13,441,8.05E-09
+13,442,8.01E-09
+13,443,7.97E-09
+13,444,7.93E-09
+13,445,7.89E-09
+13,446,7.85E-09
+13,447,7.81E-09
+13,448,7.76E-09
+13,449,7.72E-09
+13,450,7.68E-09
+13,451,7.65E-09
+13,452,7.61E-09
+13,453,7.57E-09
+13,454,7.53E-09
+13,455,7.49E-09
+13,456,7.45E-09
+13,457,7.41E-09
+13,458,7.37E-09
+13,459,7.34E-09
+13,460,7.30E-09
+13,461,7.26E-09
+13,462,7.22E-09
+13,463,7.19E-09
+13,464,7.15E-09
+13,465,7.11E-09
+13,466,7.08E-09
+13,467,7.04E-09
+13,468,7.01E-09
+13,469,6.97E-09
+13,470,6.93E-09
+13,471,6.90E-09
+13,472,6.86E-09
+13,473,6.83E-09
+13,474,6.79E-09
+13,475,6.76E-09
+13,476,6.73E-09
+13,477,6.69E-09
+13,478,6.66E-09
+13,479,6.62E-09
+13,480,6.59E-09
+13,481,6.56E-09
+13,482,6.52E-09
+13,483,6.49E-09
+13,484,6.46E-09
+13,485,6.43E-09
+13,486,6.39E-09
+13,487,6.36E-09
+13,488,6.33E-09
+13,489,6.30E-09
+13,490,6.26E-09
+13,491,6.23E-09
+13,492,6.20E-09
+13,493,6.17E-09
+13,494,6.14E-09
+13,495,6.11E-09
+13,496,6.08E-09
+13,497,6.05E-09
+13,498,6.02E-09
+13,499,5.99E-09
+13,500,5.96E-09
+13,501,5.93E-09
+13,502,5.90E-09
+13,503,5.87E-09
+13,504,5.84E-09
+13,505,5.81E-09
+13,506,5.78E-09
+13,507,5.75E-09
+13,508,5.72E-09
+13,509,5.69E-09
+13,510,5.66E-09
+13,511,5.63E-09
+13,512,5.60E-09
+13,513,5.58E-09
+13,514,5.55E-09
+13,515,5.52E-09
+13,516,5.49E-09
+13,517,5.46E-09
+13,518,5.44E-09
+13,519,5.41E-09
+13,520,5.38E-09
+13,521,5.36E-09
+13,522,5.33E-09
+13,523,5.30E-09
+13,524,5.27E-09
+13,525,5.25E-09
+13,526,5.22E-09
+13,527,5.20E-09
+13,528,5.17E-09
+13,529,5.14E-09
+13,530,5.12E-09
+13,531,5.09E-09
+13,532,5.07E-09
+13,533,5.04E-09
+13,534,5.01E-09
+13,535,4.99E-09
+13,536,4.96E-09
+13,537,4.94E-09
+13,538,4.91E-09
+13,539,4.89E-09
+13,540,4.86E-09
+13,541,4.84E-09
+13,542,4.82E-09
+13,543,4.79E-09
+13,544,4.77E-09
+13,545,4.74E-09
+13,546,4.72E-09
+13,547,4.70E-09
+13,548,4.67E-09
+13,549,4.65E-09
+13,550,4.62E-09
+13,551,4.60E-09
+13,552,4.58E-09
+13,553,4.56E-09
+13,554,4.53E-09
+13,555,4.51E-09
+13,556,4.49E-09
+13,557,4.46E-09
+13,558,4.44E-09
+13,559,4.42E-09
+13,560,4.40E-09
+13,561,4.37E-09
+13,562,4.35E-09
+13,563,4.33E-09
+13,564,4.31E-09
+13,565,4.29E-09
+13,566,4.27E-09
+13,567,4.24E-09
+13,568,4.22E-09
+13,569,4.20E-09
+13,570,4.18E-09
+13,571,4.16E-09
+13,572,4.14E-09
+13,573,4.12E-09
+13,574,4.10E-09
+13,575,4.08E-09
+13,576,4.05E-09
+13,577,4.03E-09
+13,578,4.01E-09
+13,579,3.99E-09
+13,580,3.97E-09
+13,581,3.95E-09
+13,582,3.93E-09
+13,583,3.91E-09
+13,584,3.89E-09
+13,585,3.87E-09
+13,586,3.85E-09
+13,587,3.84E-09
+13,588,3.82E-09
+13,589,3.80E-09
+13,590,3.78E-09
+13,591,3.76E-09
+13,592,3.74E-09
+13,593,3.72E-09
+13,594,3.70E-09
+13,595,3.68E-09
+13,596,3.66E-09
+13,597,3.65E-09
+13,598,3.63E-09
+13,599,3.61E-09
+13,600,3.59E-09
+13,601,3.57E-09
+13,602,3.56E-09
+13,603,3.54E-09
+13,604,3.52E-09
+13,605,3.50E-09
+13,606,3.48E-09
+13,607,3.47E-09
+13,608,3.45E-09
+13,609,3.43E-09
+13,610,3.41E-09
+13,611,3.40E-09
+13,612,3.38E-09
+13,613,3.36E-09
+13,614,3.35E-09
+13,615,3.33E-09
+13,616,3.31E-09
+13,617,3.30E-09
+13,618,3.28E-09
+13,619,3.26E-09
+13,620,3.25E-09
+13,621,3.23E-09
+13,622,3.21E-09
+13,623,3.20E-09
+13,624,3.18E-09
+13,625,3.16E-09
+13,626,3.15E-09
+13,627,3.13E-09
+13,628,3.12E-09
+13,629,3.10E-09
+13,630,3.09E-09
+13,631,3.07E-09
+13,632,3.05E-09
+13,633,3.04E-09
+13,634,3.02E-09
+13,635,3.01E-09
+13,636,2.99E-09
+13,637,2.98E-09
+13,638,2.96E-09
+13,639,2.95E-09
+13,640,2.93E-09
+13,641,2.92E-09
+13,642,2.90E-09
+13,643,2.89E-09
+13,644,2.87E-09
+13,645,2.86E-09
+13,646,2.85E-09
+13,647,2.83E-09
+13,648,2.82E-09
+13,649,2.80E-09
+13,650,2.79E-09
+13,651,2.77E-09
+13,652,2.76E-09
+13,653,2.75E-09
+13,654,2.73E-09
+13,655,2.72E-09
+13,656,2.71E-09
+13,657,2.69E-09
+13,658,2.68E-09
+13,659,2.66E-09
+13,660,2.65E-09
+13,661,2.64E-09
+13,662,2.62E-09
+13,663,2.61E-09
+13,664,2.60E-09
+13,665,2.58E-09
+13,666,2.57E-09
+13,667,2.56E-09
+13,668,2.55E-09
+13,669,2.53E-09
+13,670,2.52E-09
+13,671,2.51E-09
+13,672,2.50E-09
+13,673,2.48E-09
+13,674,2.47E-09
+13,675,2.46E-09
+13,676,2.45E-09
+13,677,2.43E-09
+13,678,2.42E-09
+13,679,2.41E-09
+13,680,2.40E-09
+13,681,2.38E-09
+13,682,2.37E-09
+13,683,2.36E-09
+13,684,2.35E-09
+13,685,2.34E-09
+13,686,2.32E-09
+13,687,2.31E-09
+13,688,2.30E-09
+13,689,2.29E-09
+13,690,2.28E-09
+13,691,2.27E-09
+13,692,2.26E-09
+13,693,2.24E-09
+13,694,2.23E-09
+13,695,2.22E-09
+13,696,2.21E-09
+13,697,2.20E-09
+13,698,2.19E-09
+13,699,2.18E-09
+13,700,2.17E-09
+13,701,2.15E-09
+13,702,2.14E-09
+13,703,2.13E-09
+13,704,2.12E-09
+13,705,2.11E-09
+13,706,2.10E-09
+13,707,2.09E-09
+13,708,2.08E-09
+13,709,2.07E-09
+13,710,2.06E-09
+13,711,2.05E-09
+13,712,2.04E-09
+13,713,2.03E-09
+13,714,2.02E-09
+13,715,2.01E-09
+13,716,2.00E-09
+13,717,1.99E-09
+13,718,1.98E-09
+13,719,1.97E-09
+13,720,1.96E-09
+13,721,1.95E-09
+13,722,1.94E-09
+13,723,1.93E-09
+13,724,1.92E-09
+13,725,1.91E-09
+13,726,1.90E-09
+13,727,1.89E-09
+13,728,1.88E-09
+13,729,1.87E-09
+13,730,1.86E-09
+13,731,1.85E-09
+13,732,1.84E-09
+13,733,1.83E-09
+13,734,1.82E-09
+13,735,1.81E-09
+13,736,1.81E-09
+13,737,1.80E-09
+13,738,1.79E-09
+13,739,1.78E-09
+13,740,1.77E-09
+13,741,1.76E-09
+13,742,1.75E-09
+13,743,1.74E-09
+13,744,1.73E-09
+13,745,1.72E-09
+13,746,1.72E-09
+13,747,1.71E-09
+13,748,1.70E-09
+13,749,1.69E-09
+13,750,1.68E-09
+13,751,1.67E-09
+13,752,1.66E-09
+13,753,1.66E-09
+13,754,1.65E-09
+13,755,1.64E-09
+13,756,1.63E-09
+13,757,1.62E-09
+13,758,1.61E-09
+13,759,1.61E-09
+13,760,1.60E-09
+13,761,1.59E-09
+13,762,1.58E-09
+13,763,1.57E-09
+13,764,1.57E-09
+13,765,1.56E-09
+13,766,1.55E-09
+13,767,1.54E-09
+13,768,1.54E-09
+13,769,1.53E-09
+13,770,1.52E-09
+13,771,1.51E-09
+13,772,1.50E-09
+13,773,1.50E-09
+13,774,1.49E-09
+13,775,1.48E-09
+13,776,1.47E-09
+13,777,1.47E-09
+13,778,1.46E-09
+13,779,1.45E-09
+13,780,1.44E-09
+13,781,1.44E-09
+13,782,1.43E-09
+13,783,1.42E-09
+13,784,1.42E-09
+13,785,1.41E-09
+13,786,1.40E-09
+13,787,1.39E-09
+13,788,1.39E-09
+13,789,1.38E-09
+13,790,1.37E-09
+13,791,1.37E-09
+13,792,1.36E-09
+13,793,1.35E-09
+13,794,1.35E-09
+13,795,1.34E-09
+13,796,1.33E-09
+13,797,1.33E-09
+13,798,1.32E-09
+13,799,1.31E-09
+13,800,1.31E-09
+13,801,1.30E-09
+13,802,1.29E-09
+13,803,1.29E-09
+13,804,1.28E-09
+13,805,1.27E-09
+13,806,1.27E-09
+13,807,1.26E-09
+13,808,1.25E-09
+13,809,1.25E-09
+13,810,1.24E-09
+13,811,1.24E-09
+13,812,1.23E-09
+13,813,1.22E-09
+13,814,1.22E-09
+13,815,1.21E-09
+13,816,1.20E-09
+13,817,1.20E-09
+13,818,1.19E-09
+13,819,1.19E-09
+13,820,1.18E-09
+13,821,1.17E-09
+13,822,1.17E-09
+13,823,1.16E-09
+13,824,1.16E-09
+13,825,1.15E-09
+13,826,1.14E-09
+13,827,1.14E-09
+13,828,1.13E-09
+13,829,1.13E-09
+13,830,1.12E-09
+13,831,1.12E-09
+13,832,1.11E-09
+13,833,1.11E-09
+13,834,1.10E-09
+13,835,1.09E-09
+13,836,1.09E-09
+13,837,1.08E-09
+13,838,1.08E-09
+13,839,1.07E-09
+13,840,1.07E-09
+13,841,1.06E-09
+13,842,1.06E-09
+13,843,1.05E-09
+13,844,1.05E-09
+13,845,1.04E-09
+13,846,1.03E-09
+13,847,1.03E-09
+13,848,1.02E-09
+13,849,1.02E-09
+13,850,1.01E-09
+13,851,1.01E-09
+13,852,1.00E-09
+13,853,9.99E-10
+13,854,9.94E-10
+13,855,9.89E-10
+13,856,9.84E-10
+13,857,9.79E-10
+13,858,9.74E-10
+13,859,9.69E-10
+13,860,9.64E-10
+13,861,9.59E-10
+13,862,9.54E-10
+13,863,9.50E-10
+13,864,9.45E-10
+13,865,9.40E-10
+13,866,9.35E-10
+13,867,9.30E-10
+13,868,9.26E-10
+13,869,9.21E-10
+13,870,9.16E-10
+13,871,9.12E-10
+13,872,9.07E-10
+13,873,9.03E-10
+13,874,8.98E-10
+13,875,8.94E-10
+13,876,8.89E-10
+13,877,8.85E-10
+13,878,8.80E-10
+13,879,8.76E-10
+13,880,8.71E-10
+13,881,8.67E-10
+13,882,8.62E-10
+13,883,8.58E-10
+13,884,8.54E-10
+13,885,8.50E-10
+13,886,8.45E-10
+13,887,8.41E-10
+13,888,8.37E-10
+13,889,8.32E-10
+13,890,8.28E-10
+13,891,8.24E-10
+13,892,8.20E-10
+13,893,8.16E-10
+13,894,8.12E-10
+13,895,8.08E-10
+13,896,8.04E-10
+13,897,7.99E-10
+13,898,7.95E-10
+13,899,7.91E-10
+13,900,7.87E-10
+13,901,7.83E-10
+13,902,7.80E-10
+13,903,7.76E-10
+13,904,7.72E-10
+13,905,7.68E-10
+13,906,7.64E-10
+13,907,7.60E-10
+13,908,7.56E-10
+13,909,7.52E-10
+13,910,7.49E-10
+13,911,7.45E-10
+13,912,7.41E-10
+13,913,7.37E-10
+13,914,7.34E-10
+13,915,7.30E-10
+13,916,7.26E-10
+13,917,7.23E-10
+13,918,7.19E-10
+13,919,7.15E-10
+13,920,7.12E-10
+13,921,7.08E-10
+13,922,7.05E-10
+13,923,7.01E-10
+13,924,6.97E-10
+13,925,6.94E-10
+13,926,6.90E-10
+13,927,6.87E-10
+13,928,6.83E-10
+13,929,6.80E-10
+13,930,6.77E-10
+13,931,6.73E-10
+13,932,6.70E-10
+13,933,6.66E-10
+13,934,6.63E-10
+13,935,6.60E-10
+13,936,6.56E-10
+13,937,6.53E-10
+13,938,6.50E-10
+13,939,6.46E-10
+13,940,6.43E-10
+13,941,6.40E-10
+13,942,6.37E-10
+13,943,6.34E-10
+13,944,6.30E-10
+13,945,6.27E-10
+13,946,6.24E-10
+13,947,6.21E-10
+13,948,6.18E-10
+13,949,6.15E-10
+13,950,6.11E-10
+13,951,6.08E-10
+13,952,6.05E-10
+13,953,6.02E-10
+13,954,5.99E-10
+13,955,5.96E-10
+13,956,5.93E-10
+13,957,5.90E-10
+13,958,5.87E-10
+13,959,5.84E-10
+13,960,5.81E-10
+13,961,5.78E-10
+13,962,5.75E-10
+13,963,5.73E-10
+13,964,5.70E-10
+13,965,5.67E-10
+13,966,5.64E-10
+13,967,5.61E-10
+13,968,5.58E-10
+13,969,5.55E-10
+13,970,5.53E-10
+13,971,5.50E-10
+13,972,5.47E-10
+13,973,5.44E-10
+13,974,5.42E-10
+13,975,5.39E-10
+13,976,5.36E-10
+13,977,5.33E-10
+13,978,5.31E-10
+13,979,5.28E-10
+13,980,5.25E-10
+13,981,5.23E-10
+13,982,5.20E-10
+13,983,5.17E-10
+13,984,5.15E-10
+13,985,5.12E-10
+13,986,5.10E-10
+13,987,5.07E-10
+13,988,5.05E-10
+13,989,5.02E-10
+13,990,4.99E-10
+13,991,4.97E-10
+13,992,4.94E-10
+13,993,4.92E-10
+13,994,4.89E-10
+13,995,4.87E-10
+13,996,4.85E-10
+13,997,4.82E-10
+13,998,4.80E-10
+13,999,4.77E-10
+13,1000,4.75E-10
+13,1001,4.72E-10
+13,1002,4.70E-10
+13,1003,4.68E-10
+13,1004,4.65E-10
+13,1005,4.63E-10
+13,1006,4.61E-10
+13,1007,4.58E-10
+13,1008,4.56E-10
+13,1009,4.54E-10
+13,1010,4.51E-10
+13,1011,4.49E-10
+13,1012,4.47E-10
+13,1013,4.45E-10
+13,1014,4.42E-10
+13,1015,4.40E-10
+13,1016,4.38E-10
+13,1017,4.36E-10
+13,1018,4.34E-10
+13,1019,4.31E-10
+13,1020,4.29E-10
+13,1021,4.27E-10
+13,1022,4.25E-10
+13,1023,4.23E-10
+13,1024,4.21E-10
+13,1025,4.18E-10
+13,1026,4.16E-10
+13,1027,4.14E-10
+13,1028,4.12E-10
+13,1029,4.10E-10
+13,1030,4.08E-10
+13,1031,4.06E-10
+13,1032,4.04E-10
+13,1033,4.02E-10
+13,1034,4.00E-10
+13,1035,3.98E-10
+13,1036,3.96E-10
+13,1037,3.94E-10
+13,1038,3.92E-10
+13,1039,3.90E-10
+13,1040,3.88E-10
+13,1041,3.86E-10
+13,1042,3.84E-10
+13,1043,3.82E-10
+13,1044,3.80E-10
+13,1045,3.78E-10
+13,1046,3.76E-10
+13,1047,3.74E-10
+13,1048,3.72E-10
+13,1049,3.71E-10
+13,1050,3.69E-10
+13,1051,3.67E-10
+13,1052,3.65E-10
+13,1053,3.63E-10
+13,1054,3.61E-10
+13,1055,3.60E-10
+13,1056,3.58E-10
+13,1057,3.56E-10
+13,1058,3.54E-10
+13,1059,3.52E-10
+13,1060,3.51E-10
+13,1061,3.49E-10
+13,1062,3.47E-10
+13,1063,3.45E-10
+13,1064,3.44E-10
+13,1065,3.42E-10
+13,1066,3.40E-10
+13,1067,3.38E-10
+13,1068,3.37E-10
+13,1069,3.35E-10
+13,1070,3.33E-10
+13,1071,3.32E-10
+13,1072,3.30E-10
+13,1073,3.28E-10
+13,1074,3.27E-10
+13,1075,3.25E-10
+13,1076,3.23E-10
+13,1077,3.22E-10
+13,1078,3.20E-10
+13,1079,3.18E-10
+13,1080,3.17E-10
+13,1081,3.15E-10
+13,1082,3.14E-10
+13,1083,3.12E-10
+13,1084,3.10E-10
+13,1085,3.09E-10
+13,1086,3.07E-10
+13,1087,3.06E-10
+13,1088,3.04E-10
+13,1089,3.03E-10
+13,1090,3.01E-10
+13,1091,3.00E-10
+13,1092,2.98E-10
+13,1093,2.97E-10
+13,1094,2.95E-10
+13,1095,2.94E-10
+13,1096,2.92E-10
+13,1097,2.91E-10
+13,1098,2.89E-10
+13,1099,2.88E-10
+13,1100,2.86E-10
+13,1101,2.85E-10
+13,1102,2.83E-10
+13,1103,2.82E-10
+13,1104,2.81E-10
+13,1105,2.79E-10
+13,1106,2.78E-10
+13,1107,2.76E-10
+13,1108,2.75E-10
+13,1109,2.74E-10
+13,1110,2.72E-10
+13,1111,2.71E-10
+13,1112,2.69E-10
+13,1113,2.68E-10
+13,1114,2.67E-10
+13,1115,2.65E-10
+13,1116,2.64E-10
+13,1117,2.63E-10
+13,1118,2.61E-10
+13,1119,2.60E-10
+13,1120,2.59E-10
+13,1121,2.57E-10
+13,1122,2.56E-10
+13,1123,2.55E-10
+13,1124,2.54E-10
+13,1125,2.52E-10
+13,1126,2.51E-10
+13,1127,2.50E-10
+13,1128,2.49E-10
+13,1129,2.47E-10
+13,1130,2.46E-10
+13,1131,2.45E-10
+13,1132,2.44E-10
+13,1133,2.42E-10
+13,1134,2.41E-10
+13,1135,2.40E-10
+13,1136,2.39E-10
+13,1137,2.37E-10
+13,1138,2.36E-10
+13,1139,2.35E-10
+13,1140,2.34E-10
+13,1141,2.33E-10
+13,1142,2.32E-10
+13,1143,2.30E-10
+13,1144,2.29E-10
+13,1145,2.28E-10
+13,1146,2.27E-10
+13,1147,2.26E-10
+13,1148,2.25E-10
+13,1149,2.23E-10
+13,1150,2.22E-10
+13,1151,2.21E-10
+13,1152,2.20E-10
+13,1153,2.19E-10
+13,1154,2.18E-10
+13,1155,2.17E-10
+13,1156,2.16E-10
+13,1157,2.15E-10
+13,1158,2.14E-10
+13,1159,2.12E-10
+13,1160,2.11E-10
+13,1161,2.10E-10
+13,1162,2.09E-10
+13,1163,2.08E-10
+13,1164,2.07E-10
+13,1165,2.06E-10
+13,1166,2.05E-10
+13,1167,2.04E-10
+13,1168,2.03E-10
+13,1169,2.02E-10
+13,1170,2.01E-10
+13,1171,2.00E-10
+13,1172,1.99E-10
+13,1173,1.98E-10
+13,1174,1.97E-10
+13,1175,1.96E-10
+13,1176,1.95E-10
+13,1177,1.94E-10
+13,1178,1.93E-10
+13,1179,1.92E-10
+13,1180,1.91E-10
+13,1181,1.90E-10
+13,1182,1.89E-10
+13,1183,1.88E-10
+13,1184,1.87E-10
+13,1185,1.86E-10
+13,1186,1.85E-10
+13,1187,1.84E-10
+13,1188,1.83E-10
+13,1189,1.83E-10
+13,1190,1.82E-10
+13,1191,1.81E-10
+13,1192,1.80E-10
+13,1193,1.79E-10
+13,1194,1.78E-10
+13,1195,1.77E-10
+13,1196,1.76E-10
+13,1197,1.75E-10
+13,1198,1.74E-10
+13,1199,1.74E-10
+13,1200,1.73E-10
+13,1201,1.72E-10
+13,1202,1.71E-10
+13,1203,1.70E-10
+13,1204,1.69E-10
+13,1205,1.68E-10
+13,1206,1.67E-10
+13,1207,1.67E-10
+13,1208,1.66E-10
+13,1209,1.65E-10
+13,1210,1.64E-10
+13,1211,1.63E-10
+13,1212,1.62E-10
+13,1213,1.62E-10
+13,1214,1.61E-10
+13,1215,1.60E-10
+13,1216,1.59E-10
+13,1217,1.58E-10
+13,1218,1.58E-10
+13,1219,1.57E-10
+13,1220,1.56E-10
+13,1221,1.55E-10
+13,1222,1.54E-10
+13,1223,1.54E-10
+13,1224,1.53E-10
+13,1225,1.52E-10
+13,1226,1.51E-10
+13,1227,1.51E-10
+13,1228,1.50E-10
+13,1229,1.49E-10
+13,1230,1.48E-10
+13,1231,1.48E-10
+13,1232,1.47E-10
+13,1233,1.46E-10
+13,1234,1.45E-10
+13,1235,1.45E-10
+13,1236,1.44E-10
+13,1237,1.43E-10
+13,1238,1.42E-10
+13,1239,1.42E-10
+13,1240,1.41E-10
+13,1241,1.40E-10
+13,1242,1.40E-10
+13,1243,1.39E-10
+13,1244,1.38E-10
+13,1245,1.38E-10
+13,1246,1.37E-10
+13,1247,1.36E-10
+13,1248,1.35E-10
+13,1249,1.35E-10
+13,1250,1.34E-10
+13,1251,1.33E-10
+13,1252,1.33E-10
+13,1253,1.32E-10
+13,1254,1.31E-10
+13,1255,1.31E-10
+13,1256,1.30E-10
+13,1257,1.29E-10
+13,1258,1.29E-10
+13,1259,1.28E-10
+13,1260,1.27E-10
+13,1261,1.27E-10
+13,1262,1.26E-10
+13,1263,1.26E-10
+13,1264,1.25E-10
+13,1265,1.24E-10
+13,1266,1.24E-10
+13,1267,1.23E-10
+13,1268,1.22E-10
+13,1269,1.22E-10
+13,1270,1.21E-10
+13,1271,1.21E-10
+13,1272,1.20E-10
+13,1273,1.19E-10
+13,1274,1.19E-10
+13,1275,1.18E-10
+13,1276,1.18E-10
+13,1277,1.17E-10
+13,1278,1.16E-10
+13,1279,1.16E-10
+13,1280,1.15E-10
+13,1281,1.15E-10
+13,1282,1.14E-10
+13,1283,1.13E-10
+13,1284,1.13E-10
+13,1285,1.12E-10
+13,1286,1.12E-10
+13,1287,1.11E-10
+13,1288,1.11E-10
+13,1289,1.10E-10
+13,1290,1.10E-10
+13,1291,1.09E-10
+13,1292,1.08E-10
+13,1293,1.08E-10
+13,1294,1.07E-10
+13,1295,1.07E-10
+13,1296,1.06E-10
+13,1297,1.06E-10
+13,1298,1.05E-10
+13,1299,1.05E-10
+13,1300,1.04E-10
+13,1301,1.04E-10
+13,1302,1.03E-10
+13,1303,1.03E-10
+13,1304,1.02E-10
+13,1305,1.02E-10
+13,1306,1.01E-10
+13,1307,1.00E-10
+13,1308,1.00E-10
+13,1309,9.95E-11
+13,1310,9.90E-11
+13,1311,9.85E-11
+13,1312,9.80E-11
+13,1313,9.75E-11
+13,1314,9.70E-11
+13,1315,9.65E-11
+13,1316,9.60E-11
+13,1317,9.55E-11
+13,1318,9.51E-11
+13,1319,9.46E-11
+13,1320,9.41E-11
+13,1321,9.36E-11
+13,1322,9.31E-11
+13,1323,9.27E-11
+13,1324,9.22E-11
+13,1325,9.17E-11
+13,1326,9.13E-11
+13,1327,9.08E-11
+13,1328,9.04E-11
+13,1329,8.99E-11
+13,1330,8.95E-11
+13,1331,8.90E-11
+13,1332,8.86E-11
+13,1333,8.81E-11
+13,1334,8.77E-11
+13,1335,8.72E-11
+13,1336,8.68E-11
+13,1337,8.63E-11
+13,1338,8.59E-11
+13,1339,8.55E-11
+13,1340,8.50E-11
+13,1341,8.46E-11
+13,1342,8.42E-11
+13,1343,8.38E-11
+13,1344,8.33E-11
+13,1345,8.29E-11
+13,1346,8.25E-11
+13,1347,8.21E-11
+13,1348,8.17E-11
+13,1349,8.13E-11
+13,1350,8.08E-11
+13,1351,8.04E-11
+13,1352,8.00E-11
+13,1353,7.96E-11
+13,1354,7.92E-11
+13,1355,7.88E-11
+13,1356,7.84E-11
+13,1357,7.80E-11
+13,1358,7.76E-11
+13,1359,7.72E-11
+13,1360,7.69E-11
+13,1361,7.65E-11
+13,1362,7.61E-11
+13,1363,7.57E-11
+13,1364,7.53E-11
+13,1365,7.49E-11
+13,1366,7.46E-11
+13,1367,7.42E-11
+13,1368,7.38E-11
+13,1369,7.34E-11
+13,1370,7.31E-11
+13,1371,7.27E-11
+13,1372,7.23E-11
+13,1373,7.20E-11
+13,1374,7.16E-11
+13,1375,7.12E-11
+13,1376,7.09E-11
+13,1377,7.05E-11
+13,1378,7.02E-11
+13,1379,6.98E-11
+13,1380,6.95E-11
+13,1381,6.91E-11
+13,1382,6.88E-11
+13,1383,6.84E-11
+13,1384,6.81E-11
+13,1385,6.77E-11
+13,1386,6.74E-11
+13,1387,6.70E-11
+13,1388,6.67E-11
+13,1389,6.64E-11
+13,1390,6.60E-11
+13,1391,6.57E-11
+13,1392,6.54E-11
+13,1393,6.50E-11
+13,1394,6.47E-11
+13,1395,6.44E-11
+13,1396,6.41E-11
+13,1397,6.37E-11
+13,1398,6.34E-11
+13,1399,6.31E-11
+13,1400,6.28E-11
+13,1401,6.25E-11
+13,1402,6.21E-11
+13,1403,6.18E-11
+13,1404,6.15E-11
+13,1405,6.12E-11
+13,1406,6.09E-11
+13,1407,6.06E-11
+13,1408,6.03E-11
+13,1409,6.00E-11
+13,1410,5.97E-11
+13,1411,5.94E-11
+13,1412,5.91E-11
+13,1413,5.88E-11
+13,1414,5.85E-11
+13,1415,5.82E-11
+13,1416,5.79E-11
+13,1417,5.76E-11
+13,1418,5.73E-11
+13,1419,5.70E-11
+13,1420,5.67E-11
+13,1421,5.65E-11
+13,1422,5.62E-11
+13,1423,5.59E-11
+13,1424,5.56E-11
+13,1425,5.53E-11
+13,1426,5.50E-11
+13,1427,5.48E-11
+13,1428,5.45E-11
+13,1429,5.42E-11
+13,1430,5.39E-11
+13,1431,5.37E-11
+13,1432,5.34E-11
+13,1433,5.31E-11
+13,1434,5.29E-11
+13,1435,5.26E-11
+13,1436,5.23E-11
+13,1437,5.21E-11
+13,1438,5.18E-11
+13,1439,5.15E-11
+13,1440,5.13E-11
+13,1441,5.10E-11
+13,1442,5.08E-11
+13,1443,5.05E-11
+13,1444,5.03E-11
+13,1445,5.00E-11
+13,1446,4.97E-11
+13,1447,4.95E-11
+13,1448,4.92E-11
+13,1449,4.90E-11
+13,1450,4.88E-11
+13,1451,4.85E-11
+13,1452,4.83E-11
+13,1453,4.80E-11
+13,1454,4.78E-11
+13,1455,4.75E-11
+13,1456,4.73E-11
+13,1457,4.71E-11
+13,1458,4.68E-11
+13,1459,4.66E-11
+13,1460,4.63E-11
+13,1461,4.61E-11
+13,1462,4.59E-11
+13,1463,4.56E-11
+13,1464,4.54E-11
+13,1465,4.52E-11
+13,1466,4.50E-11
+13,1467,4.47E-11
+13,1468,4.45E-11
+13,1469,4.43E-11
+13,1470,4.41E-11
+13,1471,4.38E-11
+13,1472,4.36E-11
+13,1473,4.34E-11
+13,1474,4.32E-11
+13,1475,4.30E-11
+13,1476,4.27E-11
+13,1477,4.25E-11
+13,1478,4.23E-11
+13,1479,4.21E-11
+13,1480,4.19E-11
+13,1481,4.17E-11
+13,1482,4.15E-11
+13,1483,4.13E-11
+13,1484,4.10E-11
+13,1485,4.08E-11
+13,1486,4.06E-11
+13,1487,4.04E-11
+13,1488,4.02E-11
+13,1489,4.00E-11
+13,1490,3.98E-11
+13,1491,3.96E-11
+13,1492,3.94E-11
+13,1493,3.92E-11
+13,1494,3.90E-11
+13,1495,3.88E-11
+13,1496,3.86E-11
+13,1497,3.84E-11
+13,1498,3.82E-11
+13,1499,3.80E-11
+13,1500,3.79E-11
+13,1501,3.77E-11
+13,1502,3.75E-11
+13,1503,3.73E-11
+13,1504,3.71E-11
+13,1505,3.69E-11
+13,1506,3.67E-11
+13,1507,3.65E-11
+13,1508,3.64E-11
+13,1509,3.62E-11
+13,1510,3.60E-11
+13,1511,3.58E-11
+13,1512,3.56E-11
+13,1513,3.54E-11
+13,1514,3.53E-11
+13,1515,3.51E-11
+13,1516,3.49E-11
+13,1517,3.47E-11
+13,1518,3.46E-11
+13,1519,3.44E-11
+13,1520,3.42E-11
+13,1521,3.40E-11
+13,1522,3.39E-11
+13,1523,3.37E-11
+13,1524,3.35E-11
+13,1525,3.34E-11
+13,1526,3.32E-11
+13,1527,3.30E-11
+13,1528,3.29E-11
+13,1529,3.27E-11
+13,1530,3.25E-11
+13,1531,3.24E-11
+13,1532,3.22E-11
+13,1533,3.20E-11
+13,1534,3.19E-11
+13,1535,3.17E-11
+13,1536,3.16E-11
+13,1537,3.14E-11
+13,1538,3.12E-11
+13,1539,3.11E-11
+13,1540,3.09E-11
+13,1541,3.08E-11
+13,1542,3.06E-11
+13,1543,3.05E-11
+13,1544,3.03E-11
+13,1545,3.01E-11
+13,1546,3.00E-11
+13,1547,2.98E-11
+13,1548,2.97E-11
+13,1549,2.95E-11
+13,1550,2.94E-11
+13,1551,2.92E-11
+13,1552,2.91E-11
+13,1553,2.90E-11
+13,1554,2.88E-11
+13,1555,2.87E-11
+13,1556,2.85E-11
+13,1557,2.84E-11
+13,1558,2.82E-11
+13,1559,2.81E-11
+13,1560,2.79E-11
+13,1561,2.78E-11
+13,1562,2.77E-11
+13,1563,2.75E-11
+13,1564,2.74E-11
+13,1565,2.72E-11
+13,1566,2.71E-11
+13,1567,2.70E-11
+13,1568,2.68E-11
+13,1569,2.67E-11
+13,1570,2.66E-11
+13,1571,2.64E-11
+13,1572,2.63E-11
+13,1573,2.62E-11
+13,1574,2.60E-11
+13,1575,2.59E-11
+13,1576,2.58E-11
+13,1577,2.56E-11
+13,1578,2.55E-11
+13,1579,2.54E-11
+13,1580,2.53E-11
+13,1581,2.51E-11
+13,1582,2.50E-11
+13,1583,2.49E-11
+13,1584,2.48E-11
+13,1585,2.46E-11
+13,1586,2.45E-11
+13,1587,2.44E-11
+13,1588,2.43E-11
+13,1589,2.41E-11
+13,1590,2.40E-11
+13,1591,2.39E-11
+13,1592,2.38E-11
+13,1593,2.37E-11
+13,1594,2.35E-11
+13,1595,2.34E-11
+13,1596,2.33E-11
+13,1597,2.32E-11
+13,1598,2.31E-11
+13,1599,2.29E-11
+13,1600,2.28E-11
+13,1601,2.27E-11
+13,1602,2.26E-11
+13,1603,2.25E-11
+13,1604,2.24E-11
+13,1605,2.23E-11
+13,1606,2.21E-11
+13,1607,2.20E-11
+13,1608,2.19E-11
+13,1609,2.18E-11
+13,1610,2.17E-11
+13,1611,2.16E-11
+13,1612,2.15E-11
+13,1613,2.14E-11
+13,1614,2.13E-11
+13,1615,2.12E-11
+13,1616,2.11E-11
+13,1617,2.09E-11
+13,1618,2.08E-11
+13,1619,2.07E-11
+13,1620,2.06E-11
+13,1621,2.05E-11
+13,1622,2.04E-11
+13,1623,2.03E-11
+13,1624,2.02E-11
+13,1625,2.01E-11
+13,1626,2.00E-11
+13,1627,1.99E-11
+13,1628,1.98E-11
+13,1629,1.97E-11
+13,1630,1.96E-11
+13,1631,1.95E-11
+13,1632,1.94E-11
+13,1633,1.93E-11
+13,1634,1.92E-11
+13,1635,1.91E-11
+13,1636,1.90E-11
+13,1637,1.89E-11
+13,1638,1.88E-11
+13,1639,1.87E-11
+13,1640,1.86E-11
+13,1641,1.86E-11
+13,1642,1.85E-11
+13,1643,1.84E-11
+13,1644,1.83E-11
+13,1645,1.82E-11
+13,1646,1.81E-11
+13,1647,1.80E-11
+13,1648,1.79E-11
+13,1649,1.78E-11
+13,1650,1.77E-11
+13,1651,1.76E-11
+13,1652,1.75E-11
+13,1653,1.75E-11
+13,1654,1.74E-11
+13,1655,1.73E-11
+13,1656,1.72E-11
+13,1657,1.71E-11
+13,1658,1.70E-11
+13,1659,1.69E-11
+13,1660,1.69E-11
+13,1661,1.68E-11
+13,1662,1.67E-11
+13,1663,1.66E-11
+13,1664,1.65E-11
+13,1665,1.64E-11
+13,1666,1.63E-11
+13,1667,1.63E-11
+13,1668,1.62E-11
+13,1669,1.61E-11
+13,1670,1.60E-11
+13,1671,1.59E-11
+13,1672,1.59E-11
+13,1673,1.58E-11
+13,1674,1.57E-11
+13,1675,1.56E-11
+13,1676,1.55E-11
+13,1677,1.55E-11
+13,1678,1.54E-11
+13,1679,1.53E-11
+13,1680,1.52E-11
+13,1681,1.52E-11
+13,1682,1.51E-11
+13,1683,1.50E-11
+13,1684,1.49E-11
+13,1685,1.49E-11
+13,1686,1.48E-11
+13,1687,1.47E-11
+13,1688,1.46E-11
+13,1689,1.46E-11
+13,1690,1.45E-11
+13,1691,1.44E-11
+13,1692,1.43E-11
+13,1693,1.43E-11
+13,1694,1.42E-11
+13,1695,1.41E-11
+13,1696,1.40E-11
+13,1697,1.40E-11
+13,1698,1.39E-11
+13,1699,1.38E-11
+13,1700,1.38E-11
+13,1701,1.37E-11
+13,1702,1.36E-11
+13,1703,1.36E-11
+13,1704,1.35E-11
+13,1705,1.34E-11
+13,1706,1.34E-11
+13,1707,1.33E-11
+13,1708,1.32E-11
+13,1709,1.32E-11
+13,1710,1.31E-11
+13,1711,1.30E-11
+13,1712,1.30E-11
+13,1713,1.29E-11
+13,1714,1.28E-11
+13,1715,1.28E-11
+13,1716,1.27E-11
+13,1717,1.26E-11
+13,1718,1.26E-11
+13,1719,1.25E-11
+13,1720,1.24E-11
+13,1721,1.24E-11
+13,1722,1.23E-11
+13,1723,1.23E-11
+13,1724,1.22E-11
+13,1725,1.21E-11
+13,1726,1.21E-11
+13,1727,1.20E-11
+13,1728,1.19E-11
+13,1729,1.19E-11
+13,1730,1.18E-11
+13,1731,1.18E-11
+13,1732,1.17E-11
+13,1733,1.16E-11
+13,1734,1.16E-11
+13,1735,1.15E-11
+13,1736,1.15E-11
+13,1737,1.14E-11
+13,1738,1.14E-11
+13,1739,1.13E-11
+13,1740,1.12E-11
+13,1741,1.12E-11
+13,1742,1.11E-11
+13,1743,1.11E-11
+13,1744,1.10E-11
+13,1745,1.10E-11
+13,1746,1.09E-11
+13,1747,1.09E-11
+13,1748,1.08E-11
+13,1749,1.07E-11
+13,1750,1.07E-11
+13,1751,1.06E-11
+13,1752,1.06E-11
+13,1753,1.05E-11
+13,1754,1.05E-11
+13,1755,1.04E-11
+13,1756,1.04E-11
+13,1757,1.03E-11
+13,1758,1.03E-11
+13,1759,1.02E-11
+13,1760,1.02E-11
+13,1761,1.01E-11
+13,1762,1.01E-11
+13,1763,1.00E-11
+13,1764,9.96E-12
+13,1765,9.91E-12
+13,1766,9.86E-12
+13,1767,9.81E-12
+13,1768,9.76E-12
+13,1769,9.71E-12
+13,1770,9.66E-12
+13,1771,9.61E-12
+13,1772,9.56E-12
+13,1773,9.52E-12
+13,1774,9.47E-12
+13,1775,9.42E-12
+13,1776,9.37E-12
+13,1777,9.32E-12
+13,1778,9.28E-12
+13,1779,9.23E-12
+13,1780,9.18E-12
+13,1781,9.14E-12
+13,1782,9.09E-12
+13,1783,9.05E-12
+13,1784,9.00E-12
+13,1785,8.95E-12
+13,1786,8.91E-12
+13,1787,8.86E-12
+13,1788,8.82E-12
+13,1789,8.78E-12
+13,1790,8.73E-12
+13,1791,8.69E-12
+13,1792,8.64E-12
+13,1793,8.60E-12
+13,1794,8.56E-12
+13,1795,8.51E-12
+13,1796,8.47E-12
+13,1797,8.43E-12
+13,1798,8.38E-12
+13,1799,8.34E-12
+13,1800,8.30E-12
+13,1801,8.26E-12
+13,1802,8.22E-12
+13,1803,8.18E-12
+13,1804,8.13E-12
+13,1805,8.09E-12
+13,1806,8.05E-12
+13,1807,8.01E-12
+13,1808,7.97E-12
+13,1809,7.93E-12
+13,1810,7.89E-12
+13,1811,7.85E-12
+13,1812,7.81E-12
+13,1813,7.77E-12
+13,1814,7.73E-12
+13,1815,7.69E-12
+13,1816,7.66E-12
+13,1817,7.62E-12
+13,1818,7.58E-12
+13,1819,7.54E-12
+13,1820,7.50E-12
+13,1821,7.46E-12
+13,1822,7.43E-12
+13,1823,7.39E-12
+13,1824,7.35E-12
+13,1825,7.31E-12
+13,1826,7.28E-12
+13,1827,7.24E-12
+13,1828,7.20E-12
+13,1829,7.17E-12
+13,1830,7.13E-12
+13,1831,7.10E-12
+13,1832,7.06E-12
+13,1833,7.02E-12
+13,1834,6.99E-12
+13,1835,6.95E-12
+13,1836,6.92E-12
+13,1837,6.88E-12
+13,1838,6.85E-12
+13,1839,6.81E-12
+13,1840,6.78E-12
+13,1841,6.75E-12
+13,1842,6.71E-12
+13,1843,6.68E-12
+13,1844,6.64E-12
+13,1845,6.61E-12
+13,1846,6.58E-12
+13,1847,6.54E-12
+13,1848,6.51E-12
+13,1849,6.48E-12
+13,1850,6.45E-12
+13,1851,6.41E-12
+13,1852,6.38E-12
+13,1853,6.35E-12
+13,1854,6.32E-12
+13,1855,6.28E-12
+13,1856,6.25E-12
+13,1857,6.22E-12
+13,1858,6.19E-12
+13,1859,6.16E-12
+13,1860,6.13E-12
+13,1861,6.10E-12
+13,1862,6.07E-12
+13,1863,6.04E-12
+13,1864,6.00E-12
+13,1865,5.97E-12
+13,1866,5.94E-12
+13,1867,5.91E-12
+13,1868,5.88E-12
+13,1869,5.86E-12
+13,1870,5.83E-12
+13,1871,5.80E-12
+13,1872,5.77E-12
+13,1873,5.74E-12
+13,1874,5.71E-12
+13,1875,5.68E-12
+13,1876,5.65E-12
+13,1877,5.62E-12
+13,1878,5.59E-12
+13,1879,5.57E-12
+13,1880,5.54E-12
+13,1881,5.51E-12
+13,1882,5.48E-12
+13,1883,5.45E-12
+13,1884,5.43E-12
+13,1885,5.40E-12
+13,1886,5.37E-12
+13,1887,5.35E-12
+13,1888,5.32E-12
+13,1889,5.29E-12
+13,1890,5.26E-12
+13,1891,5.24E-12
+13,1892,5.21E-12
+13,1893,5.19E-12
+13,1894,5.16E-12
+13,1895,5.13E-12
+13,1896,5.11E-12
+13,1897,5.08E-12
+13,1898,5.06E-12
+13,1899,5.03E-12
+13,1900,5.01E-12
+13,1901,4.98E-12
+13,1902,4.95E-12
+13,1903,4.93E-12
+13,1904,4.91E-12
+13,1905,4.88E-12
+13,1906,4.86E-12
+13,1907,4.83E-12
+13,1908,4.81E-12
+13,1909,4.78E-12
+13,1910,4.76E-12
+13,1911,4.73E-12
+13,1912,4.71E-12
+13,1913,4.69E-12
+13,1914,4.66E-12
+13,1915,4.64E-12
+13,1916,4.62E-12
+13,1917,4.59E-12
+13,1918,4.57E-12
+13,1919,4.55E-12
+13,1920,4.52E-12
+13,1921,4.50E-12
+13,1922,4.48E-12
+13,1923,4.46E-12
+13,1924,4.43E-12
+13,1925,4.41E-12
+13,1926,4.39E-12
+13,1927,4.37E-12
+13,1928,4.34E-12
+13,1929,4.32E-12
+13,1930,4.30E-12
+13,1931,4.28E-12
+13,1932,4.26E-12
+13,1933,4.24E-12
+13,1934,4.21E-12
+13,1935,4.19E-12
+13,1936,4.17E-12
+13,1937,4.15E-12
+13,1938,4.13E-12
+13,1939,4.11E-12
+13,1940,4.09E-12
+13,1941,4.07E-12
+13,1942,4.05E-12
+13,1943,4.03E-12
+13,1944,4.01E-12
+13,1945,3.99E-12
+13,1946,3.97E-12
+13,1947,3.95E-12
+13,1948,3.93E-12
+13,1949,3.91E-12
+13,1950,3.89E-12
+13,1951,3.87E-12
+13,1952,3.85E-12
+13,1953,3.83E-12
+13,1954,3.81E-12
+13,1955,3.79E-12
+13,1956,3.77E-12
+13,1957,3.75E-12
+13,1958,3.73E-12
+13,1959,3.71E-12
+13,1960,3.70E-12
+13,1961,3.68E-12
+13,1962,3.66E-12
+13,1963,3.64E-12
+13,1964,3.62E-12
+13,1965,3.60E-12
+13,1966,3.58E-12
+13,1967,3.57E-12
+13,1968,3.55E-12
+13,1969,3.53E-12
+13,1970,3.51E-12
+13,1971,3.50E-12
+13,1972,3.48E-12
+13,1973,3.46E-12
+13,1974,3.44E-12
+13,1975,3.43E-12
+13,1976,3.41E-12
+13,1977,3.39E-12
+13,1978,3.37E-12
+13,1979,3.36E-12
+13,1980,3.34E-12
+13,1981,3.32E-12
+13,1982,3.31E-12
+13,1983,3.29E-12
+13,1984,3.27E-12
+13,1985,3.26E-12
+13,1986,3.24E-12
+13,1987,3.22E-12
+13,1988,3.21E-12
+13,1989,3.19E-12
+13,1990,3.17E-12
+13,1991,3.16E-12
+13,1992,3.14E-12
+13,1993,3.13E-12
+13,1994,3.11E-12
+13,1995,3.10E-12
+13,1996,3.08E-12
+13,1997,3.06E-12
+13,1998,3.05E-12
+13,1999,3.03E-12
+13,2000,3.02E-12
+14,1,6.76E-07
+14,2,6.66E-07
+14,3,6.56E-07
+14,4,6.46E-07
+14,5,6.36E-07
+14,6,6.26E-07
+14,7,6.16E-07
+14,8,6.07E-07
+14,9,5.97E-07
+14,10,5.88E-07
+14,11,5.79E-07
+14,12,5.70E-07
+14,13,5.61E-07
+14,14,5.53E-07
+14,15,5.44E-07
+14,16,5.36E-07
+14,17,5.27E-07
+14,18,5.19E-07
+14,19,5.11E-07
+14,20,5.03E-07
+14,21,4.96E-07
+14,22,4.88E-07
+14,23,4.81E-07
+14,24,4.73E-07
+14,25,4.66E-07
+14,26,4.59E-07
+14,27,4.52E-07
+14,28,4.45E-07
+14,29,4.38E-07
+14,30,4.31E-07
+14,31,4.25E-07
+14,32,4.18E-07
+14,33,4.12E-07
+14,34,4.06E-07
+14,35,4.00E-07
+14,36,3.94E-07
+14,37,3.88E-07
+14,38,3.82E-07
+14,39,3.76E-07
+14,40,3.71E-07
+14,41,3.65E-07
+14,42,3.60E-07
+14,43,3.54E-07
+14,44,3.49E-07
+14,45,3.44E-07
+14,46,3.39E-07
+14,47,3.34E-07
+14,48,3.29E-07
+14,49,3.24E-07
+14,50,3.19E-07
+14,51,3.15E-07
+14,52,3.10E-07
+14,53,3.06E-07
+14,54,3.01E-07
+14,55,2.97E-07
+14,56,2.93E-07
+14,57,2.88E-07
+14,58,2.84E-07
+14,59,2.80E-07
+14,60,2.76E-07
+14,61,2.72E-07
+14,62,2.69E-07
+14,63,2.65E-07
+14,64,2.61E-07
+14,65,2.57E-07
+14,66,2.54E-07
+14,67,2.50E-07
+14,68,2.47E-07
+14,69,2.43E-07
+14,70,2.40E-07
+14,71,2.37E-07
+14,72,2.33E-07
+14,73,2.30E-07
+14,74,2.27E-07
+14,75,2.24E-07
+14,76,2.21E-07
+14,77,2.18E-07
+14,78,2.15E-07
+14,79,2.12E-07
+14,80,2.09E-07
+14,81,2.07E-07
+14,82,2.04E-07
+14,83,2.01E-07
+14,84,1.98E-07
+14,85,1.96E-07
+14,86,1.93E-07
+14,87,1.91E-07
+14,88,1.88E-07
+14,89,1.86E-07
+14,90,1.83E-07
+14,91,1.81E-07
+14,92,1.79E-07
+14,93,1.76E-07
+14,94,1.74E-07
+14,95,1.72E-07
+14,96,1.70E-07
+14,97,1.68E-07
+14,98,1.65E-07
+14,99,1.63E-07
+14,100,1.61E-07
+14,101,1.59E-07
+14,102,1.57E-07
+14,103,1.55E-07
+14,104,1.53E-07
+14,105,1.51E-07
+14,106,1.50E-07
+14,107,1.48E-07
+14,108,1.46E-07
+14,109,1.44E-07
+14,110,1.42E-07
+14,111,1.41E-07
+14,112,1.39E-07
+14,113,1.37E-07
+14,114,1.36E-07
+14,115,1.34E-07
+14,116,1.32E-07
+14,117,1.31E-07
+14,118,1.29E-07
+14,119,1.28E-07
+14,120,1.26E-07
+14,121,1.25E-07
+14,122,1.23E-07
+14,123,1.22E-07
+14,124,1.20E-07
+14,125,1.19E-07
+14,126,1.17E-07
+14,127,1.16E-07
+14,128,1.15E-07
+14,129,1.13E-07
+14,130,1.12E-07
+14,131,1.11E-07
+14,132,1.10E-07
+14,133,1.08E-07
+14,134,1.07E-07
+14,135,1.06E-07
+14,136,1.05E-07
+14,137,1.03E-07
+14,138,1.02E-07
+14,139,1.01E-07
+14,140,1.00E-07
+14,141,9.89E-08
+14,142,9.78E-08
+14,143,9.67E-08
+14,144,9.57E-08
+14,145,9.46E-08
+14,146,9.36E-08
+14,147,9.26E-08
+14,148,9.15E-08
+14,149,9.06E-08
+14,150,8.96E-08
+14,151,8.86E-08
+14,152,8.76E-08
+14,153,8.67E-08
+14,154,8.58E-08
+14,155,8.49E-08
+14,156,8.40E-08
+14,157,8.31E-08
+14,158,8.22E-08
+14,159,8.13E-08
+14,160,8.05E-08
+14,161,7.96E-08
+14,162,7.88E-08
+14,163,7.80E-08
+14,164,7.72E-08
+14,165,7.64E-08
+14,166,7.56E-08
+14,167,7.48E-08
+14,168,7.40E-08
+14,169,7.33E-08
+14,170,7.25E-08
+14,171,7.18E-08
+14,172,7.10E-08
+14,173,7.03E-08
+14,174,6.96E-08
+14,175,6.89E-08
+14,176,6.82E-08
+14,177,6.75E-08
+14,178,6.69E-08
+14,179,6.62E-08
+14,180,6.56E-08
+14,181,6.49E-08
+14,182,6.43E-08
+14,183,6.36E-08
+14,184,6.30E-08
+14,185,6.24E-08
+14,186,6.18E-08
+14,187,6.12E-08
+14,188,6.06E-08
+14,189,6.00E-08
+14,190,5.94E-08
+14,191,5.89E-08
+14,192,5.83E-08
+14,193,5.78E-08
+14,194,5.72E-08
+14,195,5.67E-08
+14,196,5.61E-08
+14,197,5.56E-08
+14,198,5.51E-08
+14,199,5.46E-08
+14,200,5.41E-08
+14,201,5.36E-08
+14,202,5.31E-08
+14,203,5.26E-08
+14,204,5.21E-08
+14,205,5.16E-08
+14,206,5.11E-08
+14,207,5.07E-08
+14,208,5.02E-08
+14,209,4.98E-08
+14,210,4.93E-08
+14,211,4.89E-08
+14,212,4.84E-08
+14,213,4.80E-08
+14,214,4.76E-08
+14,215,4.71E-08
+14,216,4.67E-08
+14,217,4.63E-08
+14,218,4.59E-08
+14,219,4.55E-08
+14,220,4.51E-08
+14,221,4.47E-08
+14,222,4.43E-08
+14,223,4.39E-08
+14,224,4.36E-08
+14,225,4.32E-08
+14,226,4.28E-08
+14,227,4.24E-08
+14,228,4.21E-08
+14,229,4.17E-08
+14,230,4.14E-08
+14,231,4.10E-08
+14,232,4.07E-08
+14,233,4.03E-08
+14,234,4.00E-08
+14,235,3.97E-08
+14,236,3.93E-08
+14,237,3.90E-08
+14,238,3.87E-08
+14,239,3.83E-08
+14,240,3.80E-08
+14,241,3.77E-08
+14,242,3.74E-08
+14,243,3.71E-08
+14,244,3.68E-08
+14,245,3.65E-08
+14,246,3.62E-08
+14,247,3.59E-08
+14,248,3.56E-08
+14,249,3.53E-08
+14,250,3.51E-08
+14,251,3.48E-08
+14,252,3.45E-08
+14,253,3.42E-08
+14,254,3.40E-08
+14,255,3.37E-08
+14,256,3.34E-08
+14,257,3.32E-08
+14,258,3.29E-08
+14,259,3.26E-08
+14,260,3.24E-08
+14,261,3.21E-08
+14,262,3.19E-08
+14,263,3.16E-08
+14,264,3.14E-08
+14,265,3.12E-08
+14,266,3.09E-08
+14,267,3.07E-08
+14,268,3.05E-08
+14,269,3.02E-08
+14,270,3.00E-08
+14,271,2.98E-08
+14,272,2.95E-08
+14,273,2.93E-08
+14,274,2.91E-08
+14,275,2.89E-08
+14,276,2.87E-08
+14,277,2.85E-08
+14,278,2.82E-08
+14,279,2.80E-08
+14,280,2.78E-08
+14,281,2.76E-08
+14,282,2.74E-08
+14,283,2.72E-08
+14,284,2.70E-08
+14,285,2.68E-08
+14,286,2.66E-08
+14,287,2.64E-08
+14,288,2.63E-08
+14,289,2.61E-08
+14,290,2.59E-08
+14,291,2.57E-08
+14,292,2.55E-08
+14,293,2.53E-08
+14,294,2.52E-08
+14,295,2.50E-08
+14,296,2.48E-08
+14,297,2.46E-08
+14,298,2.45E-08
+14,299,2.43E-08
+14,300,2.41E-08
+14,301,2.40E-08
+14,302,2.38E-08
+14,303,2.36E-08
+14,304,2.35E-08
+14,305,2.33E-08
+14,306,2.31E-08
+14,307,2.30E-08
+14,308,2.28E-08
+14,309,2.27E-08
+14,310,2.25E-08
+14,311,2.24E-08
+14,312,2.22E-08
+14,313,2.21E-08
+14,314,2.19E-08
+14,315,2.18E-08
+14,316,2.16E-08
+14,317,2.15E-08
+14,318,2.13E-08
+14,319,2.12E-08
+14,320,2.11E-08
+14,321,2.09E-08
+14,322,2.08E-08
+14,323,2.07E-08
+14,324,2.05E-08
+14,325,2.04E-08
+14,326,2.03E-08
+14,327,2.01E-08
+14,328,2.00E-08
+14,329,1.99E-08
+14,330,1.97E-08
+14,331,1.96E-08
+14,332,1.95E-08
+14,333,1.94E-08
+14,334,1.92E-08
+14,335,1.91E-08
+14,336,1.90E-08
+14,337,1.89E-08
+14,338,1.88E-08
+14,339,1.86E-08
+14,340,1.85E-08
+14,341,1.84E-08
+14,342,1.83E-08
+14,343,1.82E-08
+14,344,1.81E-08
+14,345,1.80E-08
+14,346,1.78E-08
+14,347,1.77E-08
+14,348,1.76E-08
+14,349,1.75E-08
+14,350,1.74E-08
+14,351,1.73E-08
+14,352,1.72E-08
+14,353,1.71E-08
+14,354,1.70E-08
+14,355,1.69E-08
+14,356,1.68E-08
+14,357,1.67E-08
+14,358,1.66E-08
+14,359,1.65E-08
+14,360,1.64E-08
+14,361,1.63E-08
+14,362,1.62E-08
+14,363,1.61E-08
+14,364,1.60E-08
+14,365,1.59E-08
+14,366,1.58E-08
+14,367,1.57E-08
+14,368,1.56E-08
+14,369,1.55E-08
+14,370,1.54E-08
+14,371,1.53E-08
+14,372,1.53E-08
+14,373,1.52E-08
+14,374,1.51E-08
+14,375,1.50E-08
+14,376,1.49E-08
+14,377,1.48E-08
+14,378,1.47E-08
+14,379,1.47E-08
+14,380,1.46E-08
+14,381,1.45E-08
+14,382,1.44E-08
+14,383,1.43E-08
+14,384,1.42E-08
+14,385,1.42E-08
+14,386,1.41E-08
+14,387,1.40E-08
+14,388,1.39E-08
+14,389,1.38E-08
+14,390,1.38E-08
+14,391,1.37E-08
+14,392,1.36E-08
+14,393,1.35E-08
+14,394,1.35E-08
+14,395,1.34E-08
+14,396,1.33E-08
+14,397,1.32E-08
+14,398,1.32E-08
+14,399,1.31E-08
+14,400,1.30E-08
+14,401,1.29E-08
+14,402,1.29E-08
+14,403,1.28E-08
+14,404,1.27E-08
+14,405,1.27E-08
+14,406,1.26E-08
+14,407,1.25E-08
+14,408,1.25E-08
+14,409,1.24E-08
+14,410,1.23E-08
+14,411,1.23E-08
+14,412,1.22E-08
+14,413,1.21E-08
+14,414,1.21E-08
+14,415,1.20E-08
+14,416,1.19E-08
+14,417,1.19E-08
+14,418,1.18E-08
+14,419,1.17E-08
+14,420,1.17E-08
+14,421,1.16E-08
+14,422,1.15E-08
+14,423,1.15E-08
+14,424,1.14E-08
+14,425,1.14E-08
+14,426,1.13E-08
+14,427,1.12E-08
+14,428,1.12E-08
+14,429,1.11E-08
+14,430,1.11E-08
+14,431,1.10E-08
+14,432,1.10E-08
+14,433,1.09E-08
+14,434,1.08E-08
+14,435,1.08E-08
+14,436,1.07E-08
+14,437,1.07E-08
+14,438,1.06E-08
+14,439,1.06E-08
+14,440,1.05E-08
+14,441,1.04E-08
+14,442,1.04E-08
+14,443,1.03E-08
+14,444,1.03E-08
+14,445,1.02E-08
+14,446,1.02E-08
+14,447,1.01E-08
+14,448,1.01E-08
+14,449,1.00E-08
+14,450,9.97E-09
+14,451,9.92E-09
+14,452,9.87E-09
+14,453,9.81E-09
+14,454,9.76E-09
+14,455,9.71E-09
+14,456,9.66E-09
+14,457,9.61E-09
+14,458,9.57E-09
+14,459,9.52E-09
+14,460,9.47E-09
+14,461,9.42E-09
+14,462,9.37E-09
+14,463,9.32E-09
+14,464,9.28E-09
+14,465,9.23E-09
+14,466,9.18E-09
+14,467,9.13E-09
+14,468,9.09E-09
+14,469,9.04E-09
+14,470,9.00E-09
+14,471,8.95E-09
+14,472,8.90E-09
+14,473,8.86E-09
+14,474,8.81E-09
+14,475,8.77E-09
+14,476,8.72E-09
+14,477,8.68E-09
+14,478,8.64E-09
+14,479,8.59E-09
+14,480,8.55E-09
+14,481,8.51E-09
+14,482,8.46E-09
+14,483,8.42E-09
+14,484,8.38E-09
+14,485,8.33E-09
+14,486,8.29E-09
+14,487,8.25E-09
+14,488,8.21E-09
+14,489,8.17E-09
+14,490,8.13E-09
+14,491,8.09E-09
+14,492,8.04E-09
+14,493,8.00E-09
+14,494,7.96E-09
+14,495,7.92E-09
+14,496,7.88E-09
+14,497,7.84E-09
+14,498,7.80E-09
+14,499,7.76E-09
+14,500,7.73E-09
+14,501,7.69E-09
+14,502,7.65E-09
+14,503,7.61E-09
+14,504,7.57E-09
+14,505,7.53E-09
+14,506,7.49E-09
+14,507,7.46E-09
+14,508,7.42E-09
+14,509,7.38E-09
+14,510,7.34E-09
+14,511,7.31E-09
+14,512,7.27E-09
+14,513,7.23E-09
+14,514,7.20E-09
+14,515,7.16E-09
+14,516,7.12E-09
+14,517,7.09E-09
+14,518,7.05E-09
+14,519,7.02E-09
+14,520,6.98E-09
+14,521,6.95E-09
+14,522,6.91E-09
+14,523,6.88E-09
+14,524,6.84E-09
+14,525,6.81E-09
+14,526,6.77E-09
+14,527,6.74E-09
+14,528,6.71E-09
+14,529,6.67E-09
+14,530,6.64E-09
+14,531,6.60E-09
+14,532,6.57E-09
+14,533,6.54E-09
+14,534,6.50E-09
+14,535,6.47E-09
+14,536,6.44E-09
+14,537,6.41E-09
+14,538,6.37E-09
+14,539,6.34E-09
+14,540,6.31E-09
+14,541,6.28E-09
+14,542,6.25E-09
+14,543,6.22E-09
+14,544,6.18E-09
+14,545,6.15E-09
+14,546,6.12E-09
+14,547,6.09E-09
+14,548,6.06E-09
+14,549,6.03E-09
+14,550,6.00E-09
+14,551,5.97E-09
+14,552,5.94E-09
+14,553,5.91E-09
+14,554,5.88E-09
+14,555,5.85E-09
+14,556,5.82E-09
+14,557,5.79E-09
+14,558,5.76E-09
+14,559,5.73E-09
+14,560,5.70E-09
+14,561,5.67E-09
+14,562,5.65E-09
+14,563,5.62E-09
+14,564,5.59E-09
+14,565,5.56E-09
+14,566,5.53E-09
+14,567,5.50E-09
+14,568,5.48E-09
+14,569,5.45E-09
+14,570,5.42E-09
+14,571,5.39E-09
+14,572,5.37E-09
+14,573,5.34E-09
+14,574,5.31E-09
+14,575,5.29E-09
+14,576,5.26E-09
+14,577,5.23E-09
+14,578,5.21E-09
+14,579,5.18E-09
+14,580,5.15E-09
+14,581,5.13E-09
+14,582,5.10E-09
+14,583,5.08E-09
+14,584,5.05E-09
+14,585,5.03E-09
+14,586,5.00E-09
+14,587,4.98E-09
+14,588,4.95E-09
+14,589,4.93E-09
+14,590,4.90E-09
+14,591,4.88E-09
+14,592,4.85E-09
+14,593,4.83E-09
+14,594,4.80E-09
+14,595,4.78E-09
+14,596,4.75E-09
+14,597,4.73E-09
+14,598,4.71E-09
+14,599,4.68E-09
+14,600,4.66E-09
+14,601,4.63E-09
+14,602,4.61E-09
+14,603,4.59E-09
+14,604,4.57E-09
+14,605,4.54E-09
+14,606,4.52E-09
+14,607,4.50E-09
+14,608,4.47E-09
+14,609,4.45E-09
+14,610,4.43E-09
+14,611,4.41E-09
+14,612,4.38E-09
+14,613,4.36E-09
+14,614,4.34E-09
+14,615,4.32E-09
+14,616,4.30E-09
+14,617,4.27E-09
+14,618,4.25E-09
+14,619,4.23E-09
+14,620,4.21E-09
+14,621,4.19E-09
+14,622,4.17E-09
+14,623,4.15E-09
+14,624,4.13E-09
+14,625,4.11E-09
+14,626,4.08E-09
+14,627,4.06E-09
+14,628,4.04E-09
+14,629,4.02E-09
+14,630,4.00E-09
+14,631,3.98E-09
+14,632,3.96E-09
+14,633,3.94E-09
+14,634,3.92E-09
+14,635,3.90E-09
+14,636,3.88E-09
+14,637,3.86E-09
+14,638,3.84E-09
+14,639,3.82E-09
+14,640,3.81E-09
+14,641,3.79E-09
+14,642,3.77E-09
+14,643,3.75E-09
+14,644,3.73E-09
+14,645,3.71E-09
+14,646,3.69E-09
+14,647,3.67E-09
+14,648,3.65E-09
+14,649,3.64E-09
+14,650,3.62E-09
+14,651,3.60E-09
+14,652,3.58E-09
+14,653,3.56E-09
+14,654,3.54E-09
+14,655,3.53E-09
+14,656,3.51E-09
+14,657,3.49E-09
+14,658,3.47E-09
+14,659,3.46E-09
+14,660,3.44E-09
+14,661,3.42E-09
+14,662,3.40E-09
+14,663,3.39E-09
+14,664,3.37E-09
+14,665,3.35E-09
+14,666,3.34E-09
+14,667,3.32E-09
+14,668,3.30E-09
+14,669,3.29E-09
+14,670,3.27E-09
+14,671,3.25E-09
+14,672,3.24E-09
+14,673,3.22E-09
+14,674,3.20E-09
+14,675,3.19E-09
+14,676,3.17E-09
+14,677,3.16E-09
+14,678,3.14E-09
+14,679,3.12E-09
+14,680,3.11E-09
+14,681,3.09E-09
+14,682,3.08E-09
+14,683,3.06E-09
+14,684,3.05E-09
+14,685,3.03E-09
+14,686,3.02E-09
+14,687,3.00E-09
+14,688,2.98E-09
+14,689,2.97E-09
+14,690,2.95E-09
+14,691,2.94E-09
+14,692,2.93E-09
+14,693,2.91E-09
+14,694,2.90E-09
+14,695,2.88E-09
+14,696,2.87E-09
+14,697,2.85E-09
+14,698,2.84E-09
+14,699,2.82E-09
+14,700,2.81E-09
+14,701,2.79E-09
+14,702,2.78E-09
+14,703,2.77E-09
+14,704,2.75E-09
+14,705,2.74E-09
+14,706,2.73E-09
+14,707,2.71E-09
+14,708,2.70E-09
+14,709,2.68E-09
+14,710,2.67E-09
+14,711,2.66E-09
+14,712,2.64E-09
+14,713,2.63E-09
+14,714,2.62E-09
+14,715,2.60E-09
+14,716,2.59E-09
+14,717,2.58E-09
+14,718,2.56E-09
+14,719,2.55E-09
+14,720,2.54E-09
+14,721,2.53E-09
+14,722,2.51E-09
+14,723,2.50E-09
+14,724,2.49E-09
+14,725,2.48E-09
+14,726,2.46E-09
+14,727,2.45E-09
+14,728,2.44E-09
+14,729,2.43E-09
+14,730,2.41E-09
+14,731,2.40E-09
+14,732,2.39E-09
+14,733,2.38E-09
+14,734,2.37E-09
+14,735,2.35E-09
+14,736,2.34E-09
+14,737,2.33E-09
+14,738,2.32E-09
+14,739,2.31E-09
+14,740,2.29E-09
+14,741,2.28E-09
+14,742,2.27E-09
+14,743,2.26E-09
+14,744,2.25E-09
+14,745,2.24E-09
+14,746,2.23E-09
+14,747,2.21E-09
+14,748,2.20E-09
+14,749,2.19E-09
+14,750,2.18E-09
+14,751,2.17E-09
+14,752,2.16E-09
+14,753,2.15E-09
+14,754,2.14E-09
+14,755,2.13E-09
+14,756,2.12E-09
+14,757,2.11E-09
+14,758,2.09E-09
+14,759,2.08E-09
+14,760,2.07E-09
+14,761,2.06E-09
+14,762,2.05E-09
+14,763,2.04E-09
+14,764,2.03E-09
+14,765,2.02E-09
+14,766,2.01E-09
+14,767,2.00E-09
+14,768,1.99E-09
+14,769,1.98E-09
+14,770,1.97E-09
+14,771,1.96E-09
+14,772,1.95E-09
+14,773,1.94E-09
+14,774,1.93E-09
+14,775,1.92E-09
+14,776,1.91E-09
+14,777,1.90E-09
+14,778,1.89E-09
+14,779,1.88E-09
+14,780,1.87E-09
+14,781,1.86E-09
+14,782,1.86E-09
+14,783,1.85E-09
+14,784,1.84E-09
+14,785,1.83E-09
+14,786,1.82E-09
+14,787,1.81E-09
+14,788,1.80E-09
+14,789,1.79E-09
+14,790,1.78E-09
+14,791,1.77E-09
+14,792,1.76E-09
+14,793,1.75E-09
+14,794,1.75E-09
+14,795,1.74E-09
+14,796,1.73E-09
+14,797,1.72E-09
+14,798,1.71E-09
+14,799,1.70E-09
+14,800,1.69E-09
+14,801,1.69E-09
+14,802,1.68E-09
+14,803,1.67E-09
+14,804,1.66E-09
+14,805,1.65E-09
+14,806,1.64E-09
+14,807,1.63E-09
+14,808,1.63E-09
+14,809,1.62E-09
+14,810,1.61E-09
+14,811,1.60E-09
+14,812,1.59E-09
+14,813,1.59E-09
+14,814,1.58E-09
+14,815,1.57E-09
+14,816,1.56E-09
+14,817,1.55E-09
+14,818,1.55E-09
+14,819,1.54E-09
+14,820,1.53E-09
+14,821,1.52E-09
+14,822,1.52E-09
+14,823,1.51E-09
+14,824,1.50E-09
+14,825,1.49E-09
+14,826,1.49E-09
+14,827,1.48E-09
+14,828,1.47E-09
+14,829,1.46E-09
+14,830,1.46E-09
+14,831,1.45E-09
+14,832,1.44E-09
+14,833,1.43E-09
+14,834,1.43E-09
+14,835,1.42E-09
+14,836,1.41E-09
+14,837,1.40E-09
+14,838,1.40E-09
+14,839,1.39E-09
+14,840,1.38E-09
+14,841,1.38E-09
+14,842,1.37E-09
+14,843,1.36E-09
+14,844,1.36E-09
+14,845,1.35E-09
+14,846,1.34E-09
+14,847,1.34E-09
+14,848,1.33E-09
+14,849,1.32E-09
+14,850,1.32E-09
+14,851,1.31E-09
+14,852,1.30E-09
+14,853,1.30E-09
+14,854,1.29E-09
+14,855,1.28E-09
+14,856,1.28E-09
+14,857,1.27E-09
+14,858,1.26E-09
+14,859,1.26E-09
+14,860,1.25E-09
+14,861,1.24E-09
+14,862,1.24E-09
+14,863,1.23E-09
+14,864,1.23E-09
+14,865,1.22E-09
+14,866,1.21E-09
+14,867,1.21E-09
+14,868,1.20E-09
+14,869,1.19E-09
+14,870,1.19E-09
+14,871,1.18E-09
+14,872,1.18E-09
+14,873,1.17E-09
+14,874,1.16E-09
+14,875,1.16E-09
+14,876,1.15E-09
+14,877,1.15E-09
+14,878,1.14E-09
+14,879,1.14E-09
+14,880,1.13E-09
+14,881,1.12E-09
+14,882,1.12E-09
+14,883,1.11E-09
+14,884,1.11E-09
+14,885,1.10E-09
+14,886,1.10E-09
+14,887,1.09E-09
+14,888,1.09E-09
+14,889,1.08E-09
+14,890,1.07E-09
+14,891,1.07E-09
+14,892,1.06E-09
+14,893,1.06E-09
+14,894,1.05E-09
+14,895,1.05E-09
+14,896,1.04E-09
+14,897,1.04E-09
+14,898,1.03E-09
+14,899,1.03E-09
+14,900,1.02E-09
+14,901,1.02E-09
+14,902,1.01E-09
+14,903,1.01E-09
+14,904,1.00E-09
+14,905,9.96E-10
+14,906,9.91E-10
+14,907,9.86E-10
+14,908,9.81E-10
+14,909,9.76E-10
+14,910,9.71E-10
+14,911,9.66E-10
+14,912,9.61E-10
+14,913,9.56E-10
+14,914,9.52E-10
+14,915,9.47E-10
+14,916,9.42E-10
+14,917,9.37E-10
+14,918,9.33E-10
+14,919,9.28E-10
+14,920,9.23E-10
+14,921,9.18E-10
+14,922,9.14E-10
+14,923,9.09E-10
+14,924,9.05E-10
+14,925,9.00E-10
+14,926,8.96E-10
+14,927,8.91E-10
+14,928,8.87E-10
+14,929,8.82E-10
+14,930,8.78E-10
+14,931,8.73E-10
+14,932,8.69E-10
+14,933,8.64E-10
+14,934,8.60E-10
+14,935,8.56E-10
+14,936,8.51E-10
+14,937,8.47E-10
+14,938,8.43E-10
+14,939,8.39E-10
+14,940,8.34E-10
+14,941,8.30E-10
+14,942,8.26E-10
+14,943,8.22E-10
+14,944,8.18E-10
+14,945,8.13E-10
+14,946,8.09E-10
+14,947,8.05E-10
+14,948,8.01E-10
+14,949,7.97E-10
+14,950,7.93E-10
+14,951,7.89E-10
+14,952,7.85E-10
+14,953,7.81E-10
+14,954,7.77E-10
+14,955,7.73E-10
+14,956,7.69E-10
+14,957,7.66E-10
+14,958,7.62E-10
+14,959,7.58E-10
+14,960,7.54E-10
+14,961,7.50E-10
+14,962,7.46E-10
+14,963,7.43E-10
+14,964,7.39E-10
+14,965,7.35E-10
+14,966,7.32E-10
+14,967,7.28E-10
+14,968,7.24E-10
+14,969,7.20E-10
+14,970,7.17E-10
+14,971,7.13E-10
+14,972,7.10E-10
+14,973,7.06E-10
+14,974,7.02E-10
+14,975,6.99E-10
+14,976,6.95E-10
+14,977,6.92E-10
+14,978,6.88E-10
+14,979,6.85E-10
+14,980,6.81E-10
+14,981,6.78E-10
+14,982,6.75E-10
+14,983,6.71E-10
+14,984,6.68E-10
+14,985,6.64E-10
+14,986,6.61E-10
+14,987,6.58E-10
+14,988,6.54E-10
+14,989,6.51E-10
+14,990,6.48E-10
+14,991,6.45E-10
+14,992,6.41E-10
+14,993,6.38E-10
+14,994,6.35E-10
+14,995,6.32E-10
+14,996,6.29E-10
+14,997,6.25E-10
+14,998,6.22E-10
+14,999,6.19E-10
+14,1000,6.16E-10
+14,1001,6.13E-10
+14,1002,6.10E-10
+14,1003,6.07E-10
+14,1004,6.04E-10
+14,1005,6.01E-10
+14,1006,5.98E-10
+14,1007,5.94E-10
+14,1008,5.91E-10
+14,1009,5.89E-10
+14,1010,5.86E-10
+14,1011,5.83E-10
+14,1012,5.80E-10
+14,1013,5.77E-10
+14,1014,5.74E-10
+14,1015,5.71E-10
+14,1016,5.68E-10
+14,1017,5.65E-10
+14,1018,5.62E-10
+14,1019,5.59E-10
+14,1020,5.57E-10
+14,1021,5.54E-10
+14,1022,5.51E-10
+14,1023,5.48E-10
+14,1024,5.46E-10
+14,1025,5.43E-10
+14,1026,5.40E-10
+14,1027,5.37E-10
+14,1028,5.35E-10
+14,1029,5.32E-10
+14,1030,5.29E-10
+14,1031,5.27E-10
+14,1032,5.24E-10
+14,1033,5.21E-10
+14,1034,5.19E-10
+14,1035,5.16E-10
+14,1036,5.13E-10
+14,1037,5.11E-10
+14,1038,5.08E-10
+14,1039,5.06E-10
+14,1040,5.03E-10
+14,1041,5.01E-10
+14,1042,4.98E-10
+14,1043,4.96E-10
+14,1044,4.93E-10
+14,1045,4.91E-10
+14,1046,4.88E-10
+14,1047,4.86E-10
+14,1048,4.83E-10
+14,1049,4.81E-10
+14,1050,4.78E-10
+14,1051,4.76E-10
+14,1052,4.73E-10
+14,1053,4.71E-10
+14,1054,4.69E-10
+14,1055,4.66E-10
+14,1056,4.64E-10
+14,1057,4.62E-10
+14,1058,4.59E-10
+14,1059,4.57E-10
+14,1060,4.55E-10
+14,1061,4.52E-10
+14,1062,4.50E-10
+14,1063,4.48E-10
+14,1064,4.46E-10
+14,1065,4.43E-10
+14,1066,4.41E-10
+14,1067,4.39E-10
+14,1068,4.37E-10
+14,1069,4.34E-10
+14,1070,4.32E-10
+14,1071,4.30E-10
+14,1072,4.28E-10
+14,1073,4.26E-10
+14,1074,4.24E-10
+14,1075,4.21E-10
+14,1076,4.19E-10
+14,1077,4.17E-10
+14,1078,4.15E-10
+14,1079,4.13E-10
+14,1080,4.11E-10
+14,1081,4.09E-10
+14,1082,4.07E-10
+14,1083,4.05E-10
+14,1084,4.03E-10
+14,1085,4.01E-10
+14,1086,3.99E-10
+14,1087,3.97E-10
+14,1088,3.95E-10
+14,1089,3.93E-10
+14,1090,3.91E-10
+14,1091,3.89E-10
+14,1092,3.87E-10
+14,1093,3.85E-10
+14,1094,3.83E-10
+14,1095,3.81E-10
+14,1096,3.79E-10
+14,1097,3.77E-10
+14,1098,3.75E-10
+14,1099,3.73E-10
+14,1100,3.71E-10
+14,1101,3.70E-10
+14,1102,3.68E-10
+14,1103,3.66E-10
+14,1104,3.64E-10
+14,1105,3.62E-10
+14,1106,3.60E-10
+14,1107,3.58E-10
+14,1108,3.57E-10
+14,1109,3.55E-10
+14,1110,3.53E-10
+14,1111,3.51E-10
+14,1112,3.50E-10
+14,1113,3.48E-10
+14,1114,3.46E-10
+14,1115,3.44E-10
+14,1116,3.43E-10
+14,1117,3.41E-10
+14,1118,3.39E-10
+14,1119,3.37E-10
+14,1120,3.36E-10
+14,1121,3.34E-10
+14,1122,3.32E-10
+14,1123,3.31E-10
+14,1124,3.29E-10
+14,1125,3.27E-10
+14,1126,3.26E-10
+14,1127,3.24E-10
+14,1128,3.22E-10
+14,1129,3.21E-10
+14,1130,3.19E-10
+14,1131,3.18E-10
+14,1132,3.16E-10
+14,1133,3.14E-10
+14,1134,3.13E-10
+14,1135,3.11E-10
+14,1136,3.10E-10
+14,1137,3.08E-10
+14,1138,3.06E-10
+14,1139,3.05E-10
+14,1140,3.03E-10
+14,1141,3.02E-10
+14,1142,3.00E-10
+14,1143,2.99E-10
+14,1144,2.97E-10
+14,1145,2.96E-10
+14,1146,2.94E-10
+14,1147,2.93E-10
+14,1148,2.91E-10
+14,1149,2.90E-10
+14,1150,2.88E-10
+14,1151,2.87E-10
+14,1152,2.86E-10
+14,1153,2.84E-10
+14,1154,2.83E-10
+14,1155,2.81E-10
+14,1156,2.80E-10
+14,1157,2.78E-10
+14,1158,2.77E-10
+14,1159,2.76E-10
+14,1160,2.74E-10
+14,1161,2.73E-10
+14,1162,2.71E-10
+14,1163,2.70E-10
+14,1164,2.69E-10
+14,1165,2.67E-10
+14,1166,2.66E-10
+14,1167,2.65E-10
+14,1168,2.63E-10
+14,1169,2.62E-10
+14,1170,2.61E-10
+14,1171,2.59E-10
+14,1172,2.58E-10
+14,1173,2.57E-10
+14,1174,2.55E-10
+14,1175,2.54E-10
+14,1176,2.53E-10
+14,1177,2.52E-10
+14,1178,2.50E-10
+14,1179,2.49E-10
+14,1180,2.48E-10
+14,1181,2.47E-10
+14,1182,2.45E-10
+14,1183,2.44E-10
+14,1184,2.43E-10
+14,1185,2.42E-10
+14,1186,2.40E-10
+14,1187,2.39E-10
+14,1188,2.38E-10
+14,1189,2.37E-10
+14,1190,2.36E-10
+14,1191,2.34E-10
+14,1192,2.33E-10
+14,1193,2.32E-10
+14,1194,2.31E-10
+14,1195,2.30E-10
+14,1196,2.29E-10
+14,1197,2.27E-10
+14,1198,2.26E-10
+14,1199,2.25E-10
+14,1200,2.24E-10
+14,1201,2.23E-10
+14,1202,2.22E-10
+14,1203,2.21E-10
+14,1204,2.19E-10
+14,1205,2.18E-10
+14,1206,2.17E-10
+14,1207,2.16E-10
+14,1208,2.15E-10
+14,1209,2.14E-10
+14,1210,2.13E-10
+14,1211,2.12E-10
+14,1212,2.11E-10
+14,1213,2.10E-10
+14,1214,2.09E-10
+14,1215,2.08E-10
+14,1216,2.07E-10
+14,1217,2.06E-10
+14,1218,2.04E-10
+14,1219,2.03E-10
+14,1220,2.02E-10
+14,1221,2.01E-10
+14,1222,2.00E-10
+14,1223,1.99E-10
+14,1224,1.98E-10
+14,1225,1.97E-10
+14,1226,1.96E-10
+14,1227,1.95E-10
+14,1228,1.94E-10
+14,1229,1.93E-10
+14,1230,1.92E-10
+14,1231,1.91E-10
+14,1232,1.90E-10
+14,1233,1.90E-10
+14,1234,1.89E-10
+14,1235,1.88E-10
+14,1236,1.87E-10
+14,1237,1.86E-10
+14,1238,1.85E-10
+14,1239,1.84E-10
+14,1240,1.83E-10
+14,1241,1.82E-10
+14,1242,1.81E-10
+14,1243,1.80E-10
+14,1244,1.79E-10
+14,1245,1.78E-10
+14,1246,1.77E-10
+14,1247,1.77E-10
+14,1248,1.76E-10
+14,1249,1.75E-10
+14,1250,1.74E-10
+14,1251,1.73E-10
+14,1252,1.72E-10
+14,1253,1.71E-10
+14,1254,1.70E-10
+14,1255,1.70E-10
+14,1256,1.69E-10
+14,1257,1.68E-10
+14,1258,1.67E-10
+14,1259,1.66E-10
+14,1260,1.65E-10
+14,1261,1.64E-10
+14,1262,1.64E-10
+14,1263,1.63E-10
+14,1264,1.62E-10
+14,1265,1.61E-10
+14,1266,1.60E-10
+14,1267,1.60E-10
+14,1268,1.59E-10
+14,1269,1.58E-10
+14,1270,1.57E-10
+14,1271,1.56E-10
+14,1272,1.56E-10
+14,1273,1.55E-10
+14,1274,1.54E-10
+14,1275,1.53E-10
+14,1276,1.52E-10
+14,1277,1.52E-10
+14,1278,1.51E-10
+14,1279,1.50E-10
+14,1280,1.49E-10
+14,1281,1.49E-10
+14,1282,1.48E-10
+14,1283,1.47E-10
+14,1284,1.46E-10
+14,1285,1.46E-10
+14,1286,1.45E-10
+14,1287,1.44E-10
+14,1288,1.44E-10
+14,1289,1.43E-10
+14,1290,1.42E-10
+14,1291,1.41E-10
+14,1292,1.41E-10
+14,1293,1.40E-10
+14,1294,1.39E-10
+14,1295,1.39E-10
+14,1296,1.38E-10
+14,1297,1.37E-10
+14,1298,1.36E-10
+14,1299,1.36E-10
+14,1300,1.35E-10
+14,1301,1.34E-10
+14,1302,1.34E-10
+14,1303,1.33E-10
+14,1304,1.32E-10
+14,1305,1.32E-10
+14,1306,1.31E-10
+14,1307,1.30E-10
+14,1308,1.30E-10
+14,1309,1.29E-10
+14,1310,1.28E-10
+14,1311,1.28E-10
+14,1312,1.27E-10
+14,1313,1.26E-10
+14,1314,1.26E-10
+14,1315,1.25E-10
+14,1316,1.25E-10
+14,1317,1.24E-10
+14,1318,1.23E-10
+14,1319,1.23E-10
+14,1320,1.22E-10
+14,1321,1.21E-10
+14,1322,1.21E-10
+14,1323,1.20E-10
+14,1324,1.20E-10
+14,1325,1.19E-10
+14,1326,1.18E-10
+14,1327,1.18E-10
+14,1328,1.17E-10
+14,1329,1.17E-10
+14,1330,1.16E-10
+14,1331,1.15E-10
+14,1332,1.15E-10
+14,1333,1.14E-10
+14,1334,1.14E-10
+14,1335,1.13E-10
+14,1336,1.13E-10
+14,1337,1.12E-10
+14,1338,1.11E-10
+14,1339,1.11E-10
+14,1340,1.10E-10
+14,1341,1.10E-10
+14,1342,1.09E-10
+14,1343,1.09E-10
+14,1344,1.08E-10
+14,1345,1.08E-10
+14,1346,1.07E-10
+14,1347,1.06E-10
+14,1348,1.06E-10
+14,1349,1.05E-10
+14,1350,1.05E-10
+14,1351,1.04E-10
+14,1352,1.04E-10
+14,1353,1.03E-10
+14,1354,1.03E-10
+14,1355,1.02E-10
+14,1356,1.02E-10
+14,1357,1.01E-10
+14,1358,1.01E-10
+14,1359,1.00E-10
+14,1360,9.97E-11
+14,1361,9.92E-11
+14,1362,9.87E-11
+14,1363,9.82E-11
+14,1364,9.77E-11
+14,1365,9.72E-11
+14,1366,9.67E-11
+14,1367,9.62E-11
+14,1368,9.57E-11
+14,1369,9.53E-11
+14,1370,9.48E-11
+14,1371,9.43E-11
+14,1372,9.38E-11
+14,1373,9.34E-11
+14,1374,9.29E-11
+14,1375,9.24E-11
+14,1376,9.19E-11
+14,1377,9.15E-11
+14,1378,9.10E-11
+14,1379,9.06E-11
+14,1380,9.01E-11
+14,1381,8.97E-11
+14,1382,8.92E-11
+14,1383,8.87E-11
+14,1384,8.83E-11
+14,1385,8.79E-11
+14,1386,8.74E-11
+14,1387,8.70E-11
+14,1388,8.65E-11
+14,1389,8.61E-11
+14,1390,8.57E-11
+14,1391,8.52E-11
+14,1392,8.48E-11
+14,1393,8.44E-11
+14,1394,8.39E-11
+14,1395,8.35E-11
+14,1396,8.31E-11
+14,1397,8.27E-11
+14,1398,8.23E-11
+14,1399,8.18E-11
+14,1400,8.14E-11
+14,1401,8.10E-11
+14,1402,8.06E-11
+14,1403,8.02E-11
+14,1404,7.98E-11
+14,1405,7.94E-11
+14,1406,7.90E-11
+14,1407,7.86E-11
+14,1408,7.82E-11
+14,1409,7.78E-11
+14,1410,7.74E-11
+14,1411,7.70E-11
+14,1412,7.66E-11
+14,1413,7.63E-11
+14,1414,7.59E-11
+14,1415,7.55E-11
+14,1416,7.51E-11
+14,1417,7.47E-11
+14,1418,7.43E-11
+14,1419,7.40E-11
+14,1420,7.36E-11
+14,1421,7.32E-11
+14,1422,7.29E-11
+14,1423,7.25E-11
+14,1424,7.21E-11
+14,1425,7.18E-11
+14,1426,7.14E-11
+14,1427,7.10E-11
+14,1428,7.07E-11
+14,1429,7.03E-11
+14,1430,7.00E-11
+14,1431,6.96E-11
+14,1432,6.93E-11
+14,1433,6.89E-11
+14,1434,6.86E-11
+14,1435,6.82E-11
+14,1436,6.79E-11
+14,1437,6.75E-11
+14,1438,6.72E-11
+14,1439,6.69E-11
+14,1440,6.65E-11
+14,1441,6.62E-11
+14,1442,6.58E-11
+14,1443,6.55E-11
+14,1444,6.52E-11
+14,1445,6.49E-11
+14,1446,6.45E-11
+14,1447,6.42E-11
+14,1448,6.39E-11
+14,1449,6.36E-11
+14,1450,6.32E-11
+14,1451,6.29E-11
+14,1452,6.26E-11
+14,1453,6.23E-11
+14,1454,6.20E-11
+14,1455,6.17E-11
+14,1456,6.13E-11
+14,1457,6.10E-11
+14,1458,6.07E-11
+14,1459,6.04E-11
+14,1460,6.01E-11
+14,1461,5.98E-11
+14,1462,5.95E-11
+14,1463,5.92E-11
+14,1464,5.89E-11
+14,1465,5.86E-11
+14,1466,5.83E-11
+14,1467,5.80E-11
+14,1468,5.77E-11
+14,1469,5.74E-11
+14,1470,5.72E-11
+14,1471,5.69E-11
+14,1472,5.66E-11
+14,1473,5.63E-11
+14,1474,5.60E-11
+14,1475,5.57E-11
+14,1476,5.54E-11
+14,1477,5.52E-11
+14,1478,5.49E-11
+14,1479,5.46E-11
+14,1480,5.43E-11
+14,1481,5.41E-11
+14,1482,5.38E-11
+14,1483,5.35E-11
+14,1484,5.32E-11
+14,1485,5.30E-11
+14,1486,5.27E-11
+14,1487,5.24E-11
+14,1488,5.22E-11
+14,1489,5.19E-11
+14,1490,5.17E-11
+14,1491,5.14E-11
+14,1492,5.11E-11
+14,1493,5.09E-11
+14,1494,5.06E-11
+14,1495,5.04E-11
+14,1496,5.01E-11
+14,1497,4.99E-11
+14,1498,4.96E-11
+14,1499,4.94E-11
+14,1500,4.91E-11
+14,1501,4.89E-11
+14,1502,4.86E-11
+14,1503,4.84E-11
+14,1504,4.81E-11
+14,1505,4.79E-11
+14,1506,4.76E-11
+14,1507,4.74E-11
+14,1508,4.72E-11
+14,1509,4.69E-11
+14,1510,4.67E-11
+14,1511,4.64E-11
+14,1512,4.62E-11
+14,1513,4.60E-11
+14,1514,4.57E-11
+14,1515,4.55E-11
+14,1516,4.53E-11
+14,1517,4.51E-11
+14,1518,4.48E-11
+14,1519,4.46E-11
+14,1520,4.44E-11
+14,1521,4.42E-11
+14,1522,4.39E-11
+14,1523,4.37E-11
+14,1524,4.35E-11
+14,1525,4.33E-11
+14,1526,4.31E-11
+14,1527,4.28E-11
+14,1528,4.26E-11
+14,1529,4.24E-11
+14,1530,4.22E-11
+14,1531,4.20E-11
+14,1532,4.18E-11
+14,1533,4.16E-11
+14,1534,4.13E-11
+14,1535,4.11E-11
+14,1536,4.09E-11
+14,1537,4.07E-11
+14,1538,4.05E-11
+14,1539,4.03E-11
+14,1540,4.01E-11
+14,1541,3.99E-11
+14,1542,3.97E-11
+14,1543,3.95E-11
+14,1544,3.93E-11
+14,1545,3.91E-11
+14,1546,3.89E-11
+14,1547,3.87E-11
+14,1548,3.85E-11
+14,1549,3.83E-11
+14,1550,3.81E-11
+14,1551,3.79E-11
+14,1552,3.77E-11
+14,1553,3.76E-11
+14,1554,3.74E-11
+14,1555,3.72E-11
+14,1556,3.70E-11
+14,1557,3.68E-11
+14,1558,3.66E-11
+14,1559,3.64E-11
+14,1560,3.63E-11
+14,1561,3.61E-11
+14,1562,3.59E-11
+14,1563,3.57E-11
+14,1564,3.55E-11
+14,1565,3.53E-11
+14,1566,3.52E-11
+14,1567,3.50E-11
+14,1568,3.48E-11
+14,1569,3.46E-11
+14,1570,3.45E-11
+14,1571,3.43E-11
+14,1572,3.41E-11
+14,1573,3.39E-11
+14,1574,3.38E-11
+14,1575,3.36E-11
+14,1576,3.34E-11
+14,1577,3.33E-11
+14,1578,3.31E-11
+14,1579,3.29E-11
+14,1580,3.28E-11
+14,1581,3.26E-11
+14,1582,3.24E-11
+14,1583,3.23E-11
+14,1584,3.21E-11
+14,1585,3.19E-11
+14,1586,3.18E-11
+14,1587,3.16E-11
+14,1588,3.15E-11
+14,1589,3.13E-11
+14,1590,3.11E-11
+14,1591,3.10E-11
+14,1592,3.08E-11
+14,1593,3.07E-11
+14,1594,3.05E-11
+14,1595,3.04E-11
+14,1596,3.02E-11
+14,1597,3.01E-11
+14,1598,2.99E-11
+14,1599,2.98E-11
+14,1600,2.96E-11
+14,1601,2.95E-11
+14,1602,2.93E-11
+14,1603,2.92E-11
+14,1604,2.90E-11
+14,1605,2.89E-11
+14,1606,2.87E-11
+14,1607,2.86E-11
+14,1608,2.84E-11
+14,1609,2.83E-11
+14,1610,2.82E-11
+14,1611,2.80E-11
+14,1612,2.79E-11
+14,1613,2.77E-11
+14,1614,2.76E-11
+14,1615,2.74E-11
+14,1616,2.73E-11
+14,1617,2.72E-11
+14,1618,2.70E-11
+14,1619,2.69E-11
+14,1620,2.68E-11
+14,1621,2.66E-11
+14,1622,2.65E-11
+14,1623,2.64E-11
+14,1624,2.62E-11
+14,1625,2.61E-11
+14,1626,2.60E-11
+14,1627,2.58E-11
+14,1628,2.57E-11
+14,1629,2.56E-11
+14,1630,2.54E-11
+14,1631,2.53E-11
+14,1632,2.52E-11
+14,1633,2.51E-11
+14,1634,2.49E-11
+14,1635,2.48E-11
+14,1636,2.47E-11
+14,1637,2.46E-11
+14,1638,2.44E-11
+14,1639,2.43E-11
+14,1640,2.42E-11
+14,1641,2.41E-11
+14,1642,2.39E-11
+14,1643,2.38E-11
+14,1644,2.37E-11
+14,1645,2.36E-11
+14,1646,2.35E-11
+14,1647,2.33E-11
+14,1648,2.32E-11
+14,1649,2.31E-11
+14,1650,2.30E-11
+14,1651,2.29E-11
+14,1652,2.28E-11
+14,1653,2.26E-11
+14,1654,2.25E-11
+14,1655,2.24E-11
+14,1656,2.23E-11
+14,1657,2.22E-11
+14,1658,2.21E-11
+14,1659,2.20E-11
+14,1660,2.19E-11
+14,1661,2.17E-11
+14,1662,2.16E-11
+14,1663,2.15E-11
+14,1664,2.14E-11
+14,1665,2.13E-11
+14,1666,2.12E-11
+14,1667,2.11E-11
+14,1668,2.10E-11
+14,1669,2.09E-11
+14,1670,2.08E-11
+14,1671,2.07E-11
+14,1672,2.06E-11
+14,1673,2.05E-11
+14,1674,2.04E-11
+14,1675,2.03E-11
+14,1676,2.02E-11
+14,1677,2.01E-11
+14,1678,2.00E-11
+14,1679,1.99E-11
+14,1680,1.98E-11
+14,1681,1.97E-11
+14,1682,1.96E-11
+14,1683,1.95E-11
+14,1684,1.94E-11
+14,1685,1.93E-11
+14,1686,1.92E-11
+14,1687,1.91E-11
+14,1688,1.90E-11
+14,1689,1.89E-11
+14,1690,1.88E-11
+14,1691,1.87E-11
+14,1692,1.86E-11
+14,1693,1.85E-11
+14,1694,1.84E-11
+14,1695,1.83E-11
+14,1696,1.82E-11
+14,1697,1.81E-11
+14,1698,1.80E-11
+14,1699,1.79E-11
+14,1700,1.79E-11
+14,1701,1.78E-11
+14,1702,1.77E-11
+14,1703,1.76E-11
+14,1704,1.75E-11
+14,1705,1.74E-11
+14,1706,1.73E-11
+14,1707,1.72E-11
+14,1708,1.71E-11
+14,1709,1.71E-11
+14,1710,1.70E-11
+14,1711,1.69E-11
+14,1712,1.68E-11
+14,1713,1.67E-11
+14,1714,1.66E-11
+14,1715,1.66E-11
+14,1716,1.65E-11
+14,1717,1.64E-11
+14,1718,1.63E-11
+14,1719,1.62E-11
+14,1720,1.61E-11
+14,1721,1.61E-11
+14,1722,1.60E-11
+14,1723,1.59E-11
+14,1724,1.58E-11
+14,1725,1.57E-11
+14,1726,1.57E-11
+14,1727,1.56E-11
+14,1728,1.55E-11
+14,1729,1.54E-11
+14,1730,1.53E-11
+14,1731,1.53E-11
+14,1732,1.52E-11
+14,1733,1.51E-11
+14,1734,1.50E-11
+14,1735,1.50E-11
+14,1736,1.49E-11
+14,1737,1.48E-11
+14,1738,1.47E-11
+14,1739,1.47E-11
+14,1740,1.46E-11
+14,1741,1.45E-11
+14,1742,1.44E-11
+14,1743,1.44E-11
+14,1744,1.43E-11
+14,1745,1.42E-11
+14,1746,1.41E-11
+14,1747,1.41E-11
+14,1748,1.40E-11
+14,1749,1.39E-11
+14,1750,1.39E-11
+14,1751,1.38E-11
+14,1752,1.37E-11
+14,1753,1.37E-11
+14,1754,1.36E-11
+14,1755,1.35E-11
+14,1756,1.35E-11
+14,1757,1.34E-11
+14,1758,1.33E-11
+14,1759,1.32E-11
+14,1760,1.32E-11
+14,1761,1.31E-11
+14,1762,1.30E-11
+14,1763,1.30E-11
+14,1764,1.29E-11
+14,1765,1.29E-11
+14,1766,1.28E-11
+14,1767,1.27E-11
+14,1768,1.27E-11
+14,1769,1.26E-11
+14,1770,1.25E-11
+14,1771,1.25E-11
+14,1772,1.24E-11
+14,1773,1.23E-11
+14,1774,1.23E-11
+14,1775,1.22E-11
+14,1776,1.22E-11
+14,1777,1.21E-11
+14,1778,1.20E-11
+14,1779,1.20E-11
+14,1780,1.19E-11
+14,1781,1.19E-11
+14,1782,1.18E-11
+14,1783,1.17E-11
+14,1784,1.17E-11
+14,1785,1.16E-11
+14,1786,1.16E-11
+14,1787,1.15E-11
+14,1788,1.14E-11
+14,1789,1.14E-11
+14,1790,1.13E-11
+14,1791,1.13E-11
+14,1792,1.12E-11
+14,1793,1.12E-11
+14,1794,1.11E-11
+14,1795,1.10E-11
+14,1796,1.10E-11
+14,1797,1.09E-11
+14,1798,1.09E-11
+14,1799,1.08E-11
+14,1800,1.08E-11
+14,1801,1.07E-11
+14,1802,1.07E-11
+14,1803,1.06E-11
+14,1804,1.06E-11
+14,1805,1.05E-11
+14,1806,1.04E-11
+14,1807,1.04E-11
+14,1808,1.03E-11
+14,1809,1.03E-11
+14,1810,1.02E-11
+14,1811,1.02E-11
+14,1812,1.01E-11
+14,1813,1.01E-11
+14,1814,1.00E-11
+14,1815,9.98E-12
+14,1816,9.93E-12
+14,1817,9.88E-12
+14,1818,9.83E-12
+14,1819,9.78E-12
+14,1820,9.73E-12
+14,1821,9.68E-12
+14,1822,9.63E-12
+14,1823,9.58E-12
+14,1824,9.54E-12
+14,1825,9.49E-12
+14,1826,9.44E-12
+14,1827,9.39E-12
+14,1828,9.35E-12
+14,1829,9.30E-12
+14,1830,9.25E-12
+14,1831,9.20E-12
+14,1832,9.16E-12
+14,1833,9.11E-12
+14,1834,9.07E-12
+14,1835,9.02E-12
+14,1836,8.97E-12
+14,1837,8.93E-12
+14,1838,8.88E-12
+14,1839,8.84E-12
+14,1840,8.79E-12
+14,1841,8.75E-12
+14,1842,8.71E-12
+14,1843,8.66E-12
+14,1844,8.62E-12
+14,1845,8.58E-12
+14,1846,8.53E-12
+14,1847,8.49E-12
+14,1848,8.45E-12
+14,1849,8.40E-12
+14,1850,8.36E-12
+14,1851,8.32E-12
+14,1852,8.28E-12
+14,1853,8.24E-12
+14,1854,8.19E-12
+14,1855,8.15E-12
+14,1856,8.11E-12
+14,1857,8.07E-12
+14,1858,8.03E-12
+14,1859,7.99E-12
+14,1860,7.95E-12
+14,1861,7.91E-12
+14,1862,7.87E-12
+14,1863,7.83E-12
+14,1864,7.79E-12
+14,1865,7.75E-12
+14,1866,7.71E-12
+14,1867,7.67E-12
+14,1868,7.63E-12
+14,1869,7.59E-12
+14,1870,7.56E-12
+14,1871,7.52E-12
+14,1872,7.48E-12
+14,1873,7.44E-12
+14,1874,7.41E-12
+14,1875,7.37E-12
+14,1876,7.33E-12
+14,1877,7.29E-12
+14,1878,7.26E-12
+14,1879,7.22E-12
+14,1880,7.18E-12
+14,1881,7.15E-12
+14,1882,7.11E-12
+14,1883,7.08E-12
+14,1884,7.04E-12
+14,1885,7.00E-12
+14,1886,6.97E-12
+14,1887,6.93E-12
+14,1888,6.90E-12
+14,1889,6.86E-12
+14,1890,6.83E-12
+14,1891,6.79E-12
+14,1892,6.76E-12
+14,1893,6.73E-12
+14,1894,6.69E-12
+14,1895,6.66E-12
+14,1896,6.63E-12
+14,1897,6.59E-12
+14,1898,6.56E-12
+14,1899,6.53E-12
+14,1900,6.49E-12
+14,1901,6.46E-12
+14,1902,6.43E-12
+14,1903,6.39E-12
+14,1904,6.36E-12
+14,1905,6.33E-12
+14,1906,6.30E-12
+14,1907,6.27E-12
+14,1908,6.24E-12
+14,1909,6.20E-12
+14,1910,6.17E-12
+14,1911,6.14E-12
+14,1912,6.11E-12
+14,1913,6.08E-12
+14,1914,6.05E-12
+14,1915,6.02E-12
+14,1916,5.99E-12
+14,1917,5.96E-12
+14,1918,5.93E-12
+14,1919,5.90E-12
+14,1920,5.87E-12
+14,1921,5.84E-12
+14,1922,5.81E-12
+14,1923,5.78E-12
+14,1924,5.75E-12
+14,1925,5.72E-12
+14,1926,5.69E-12
+14,1927,5.66E-12
+14,1928,5.64E-12
+14,1929,5.61E-12
+14,1930,5.58E-12
+14,1931,5.55E-12
+14,1932,5.52E-12
+14,1933,5.49E-12
+14,1934,5.47E-12
+14,1935,5.44E-12
+14,1936,5.41E-12
+14,1937,5.38E-12
+14,1938,5.36E-12
+14,1939,5.33E-12
+14,1940,5.30E-12
+14,1941,5.28E-12
+14,1942,5.25E-12
+14,1943,5.22E-12
+14,1944,5.20E-12
+14,1945,5.17E-12
+14,1946,5.14E-12
+14,1947,5.12E-12
+14,1948,5.09E-12
+14,1949,5.07E-12
+14,1950,5.04E-12
+14,1951,5.02E-12
+14,1952,4.99E-12
+14,1953,4.97E-12
+14,1954,4.94E-12
+14,1955,4.92E-12
+14,1956,4.89E-12
+14,1957,4.87E-12
+14,1958,4.84E-12
+14,1959,4.82E-12
+14,1960,4.79E-12
+14,1961,4.77E-12
+14,1962,4.74E-12
+14,1963,4.72E-12
+14,1964,4.70E-12
+14,1965,4.67E-12
+14,1966,4.65E-12
+14,1967,4.63E-12
+14,1968,4.60E-12
+14,1969,4.58E-12
+14,1970,4.56E-12
+14,1971,4.53E-12
+14,1972,4.51E-12
+14,1973,4.49E-12
+14,1974,4.47E-12
+14,1975,4.44E-12
+14,1976,4.42E-12
+14,1977,4.40E-12
+14,1978,4.38E-12
+14,1979,4.35E-12
+14,1980,4.33E-12
+14,1981,4.31E-12
+14,1982,4.29E-12
+14,1983,4.27E-12
+14,1984,4.25E-12
+14,1985,4.22E-12
+14,1986,4.20E-12
+14,1987,4.18E-12
+14,1988,4.16E-12
+14,1989,4.14E-12
+14,1990,4.12E-12
+14,1991,4.10E-12
+14,1992,4.08E-12
+14,1993,4.06E-12
+14,1994,4.04E-12
+14,1995,4.02E-12
+14,1996,4.00E-12
+14,1997,3.97E-12
+14,1998,3.95E-12
+14,1999,3.93E-12
+14,2000,3.92E-12
+15,1,8.77E-07
+15,2,8.64E-07
+15,3,8.50E-07
+15,4,8.37E-07
+15,5,8.24E-07
+15,6,8.12E-07
+15,7,7.99E-07
+15,8,7.87E-07
+15,9,7.75E-07
+15,10,7.63E-07
+15,11,7.51E-07
+15,12,7.39E-07
+15,13,7.28E-07
+15,14,7.17E-07
+15,15,7.06E-07
+15,16,6.95E-07
+15,17,6.84E-07
+15,18,6.74E-07
+15,19,6.63E-07
+15,20,6.53E-07
+15,21,6.43E-07
+15,22,6.33E-07
+15,23,6.23E-07
+15,24,6.14E-07
+15,25,6.04E-07
+15,26,5.95E-07
+15,27,5.86E-07
+15,28,5.77E-07
+15,29,5.68E-07
+15,30,5.60E-07
+15,31,5.51E-07
+15,32,5.43E-07
+15,33,5.35E-07
+15,34,5.26E-07
+15,35,5.19E-07
+15,36,5.11E-07
+15,37,5.03E-07
+15,38,4.95E-07
+15,39,4.88E-07
+15,40,4.81E-07
+15,41,4.74E-07
+15,42,4.66E-07
+15,43,4.60E-07
+15,44,4.53E-07
+15,45,4.46E-07
+15,46,4.39E-07
+15,47,4.33E-07
+15,48,4.27E-07
+15,49,4.20E-07
+15,50,4.14E-07
+15,51,4.08E-07
+15,52,4.02E-07
+15,53,3.96E-07
+15,54,3.91E-07
+15,55,3.85E-07
+15,56,3.80E-07
+15,57,3.74E-07
+15,58,3.69E-07
+15,59,3.64E-07
+15,60,3.58E-07
+15,61,3.53E-07
+15,62,3.48E-07
+15,63,3.43E-07
+15,64,3.39E-07
+15,65,3.34E-07
+15,66,3.29E-07
+15,67,3.25E-07
+15,68,3.20E-07
+15,69,3.16E-07
+15,70,3.11E-07
+15,71,3.07E-07
+15,72,3.03E-07
+15,73,2.99E-07
+15,74,2.95E-07
+15,75,2.91E-07
+15,76,2.87E-07
+15,77,2.83E-07
+15,78,2.79E-07
+15,79,2.75E-07
+15,80,2.72E-07
+15,81,2.68E-07
+15,82,2.64E-07
+15,83,2.61E-07
+15,84,2.57E-07
+15,85,2.54E-07
+15,86,2.51E-07
+15,87,2.47E-07
+15,88,2.44E-07
+15,89,2.41E-07
+15,90,2.38E-07
+15,91,2.35E-07
+15,92,2.32E-07
+15,93,2.29E-07
+15,94,2.26E-07
+15,95,2.23E-07
+15,96,2.20E-07
+15,97,2.17E-07
+15,98,2.15E-07
+15,99,2.12E-07
+15,100,2.09E-07
+15,101,2.07E-07
+15,102,2.04E-07
+15,103,2.01E-07
+15,104,1.99E-07
+15,105,1.96E-07
+15,106,1.94E-07
+15,107,1.92E-07
+15,108,1.89E-07
+15,109,1.87E-07
+15,110,1.85E-07
+15,111,1.82E-07
+15,112,1.80E-07
+15,113,1.78E-07
+15,114,1.76E-07
+15,115,1.74E-07
+15,116,1.72E-07
+15,117,1.70E-07
+15,118,1.68E-07
+15,119,1.66E-07
+15,120,1.64E-07
+15,121,1.62E-07
+15,122,1.60E-07
+15,123,1.58E-07
+15,124,1.56E-07
+15,125,1.54E-07
+15,126,1.52E-07
+15,127,1.51E-07
+15,128,1.49E-07
+15,129,1.47E-07
+15,130,1.45E-07
+15,131,1.44E-07
+15,132,1.42E-07
+15,133,1.40E-07
+15,134,1.39E-07
+15,135,1.37E-07
+15,136,1.36E-07
+15,137,1.34E-07
+15,138,1.33E-07
+15,139,1.31E-07
+15,140,1.30E-07
+15,141,1.28E-07
+15,142,1.27E-07
+15,143,1.25E-07
+15,144,1.24E-07
+15,145,1.23E-07
+15,146,1.21E-07
+15,147,1.20E-07
+15,148,1.19E-07
+15,149,1.17E-07
+15,150,1.16E-07
+15,151,1.15E-07
+15,152,1.14E-07
+15,153,1.12E-07
+15,154,1.11E-07
+15,155,1.10E-07
+15,156,1.09E-07
+15,157,1.08E-07
+15,158,1.07E-07
+15,159,1.05E-07
+15,160,1.04E-07
+15,161,1.03E-07
+15,162,1.02E-07
+15,163,1.01E-07
+15,164,1.00E-07
+15,165,9.90E-08
+15,166,9.80E-08
+15,167,9.70E-08
+15,168,9.60E-08
+15,169,9.50E-08
+15,170,9.41E-08
+15,171,9.31E-08
+15,172,9.22E-08
+15,173,9.12E-08
+15,174,9.03E-08
+15,175,8.94E-08
+15,176,8.85E-08
+15,177,8.76E-08
+15,178,8.67E-08
+15,179,8.59E-08
+15,180,8.50E-08
+15,181,8.42E-08
+15,182,8.34E-08
+15,183,8.26E-08
+15,184,8.17E-08
+15,185,8.09E-08
+15,186,8.02E-08
+15,187,7.94E-08
+15,188,7.86E-08
+15,189,7.79E-08
+15,190,7.71E-08
+15,191,7.64E-08
+15,192,7.56E-08
+15,193,7.49E-08
+15,194,7.42E-08
+15,195,7.35E-08
+15,196,7.28E-08
+15,197,7.21E-08
+15,198,7.15E-08
+15,199,7.08E-08
+15,200,7.01E-08
+15,201,6.95E-08
+15,202,6.88E-08
+15,203,6.82E-08
+15,204,6.76E-08
+15,205,6.70E-08
+15,206,6.63E-08
+15,207,6.57E-08
+15,208,6.51E-08
+15,209,6.46E-08
+15,210,6.40E-08
+15,211,6.34E-08
+15,212,6.28E-08
+15,213,6.23E-08
+15,214,6.17E-08
+15,215,6.12E-08
+15,216,6.06E-08
+15,217,6.01E-08
+15,218,5.96E-08
+15,219,5.90E-08
+15,220,5.85E-08
+15,221,5.80E-08
+15,222,5.75E-08
+15,223,5.70E-08
+15,224,5.65E-08
+15,225,5.60E-08
+15,226,5.55E-08
+15,227,5.51E-08
+15,228,5.46E-08
+15,229,5.41E-08
+15,230,5.37E-08
+15,231,5.32E-08
+15,232,5.28E-08
+15,233,5.23E-08
+15,234,5.19E-08
+15,235,5.14E-08
+15,236,5.10E-08
+15,237,5.06E-08
+15,238,5.02E-08
+15,239,4.97E-08
+15,240,4.93E-08
+15,241,4.89E-08
+15,242,4.85E-08
+15,243,4.81E-08
+15,244,4.77E-08
+15,245,4.73E-08
+15,246,4.70E-08
+15,247,4.66E-08
+15,248,4.62E-08
+15,249,4.58E-08
+15,250,4.55E-08
+15,251,4.51E-08
+15,252,4.47E-08
+15,253,4.44E-08
+15,254,4.40E-08
+15,255,4.37E-08
+15,256,4.34E-08
+15,257,4.30E-08
+15,258,4.27E-08
+15,259,4.23E-08
+15,260,4.20E-08
+15,261,4.17E-08
+15,262,4.14E-08
+15,263,4.10E-08
+15,264,4.07E-08
+15,265,4.04E-08
+15,266,4.01E-08
+15,267,3.98E-08
+15,268,3.95E-08
+15,269,3.92E-08
+15,270,3.89E-08
+15,271,3.86E-08
+15,272,3.83E-08
+15,273,3.80E-08
+15,274,3.77E-08
+15,275,3.75E-08
+15,276,3.72E-08
+15,277,3.69E-08
+15,278,3.66E-08
+15,279,3.64E-08
+15,280,3.61E-08
+15,281,3.58E-08
+15,282,3.56E-08
+15,283,3.53E-08
+15,284,3.51E-08
+15,285,3.48E-08
+15,286,3.46E-08
+15,287,3.43E-08
+15,288,3.41E-08
+15,289,3.38E-08
+15,290,3.36E-08
+15,291,3.33E-08
+15,292,3.31E-08
+15,293,3.29E-08
+15,294,3.26E-08
+15,295,3.24E-08
+15,296,3.22E-08
+15,297,3.20E-08
+15,298,3.17E-08
+15,299,3.15E-08
+15,300,3.13E-08
+15,301,3.11E-08
+15,302,3.09E-08
+15,303,3.06E-08
+15,304,3.04E-08
+15,305,3.02E-08
+15,306,3.00E-08
+15,307,2.98E-08
+15,308,2.96E-08
+15,309,2.94E-08
+15,310,2.92E-08
+15,311,2.90E-08
+15,312,2.88E-08
+15,313,2.86E-08
+15,314,2.84E-08
+15,315,2.82E-08
+15,316,2.81E-08
+15,317,2.79E-08
+15,318,2.77E-08
+15,319,2.75E-08
+15,320,2.73E-08
+15,321,2.71E-08
+15,322,2.70E-08
+15,323,2.68E-08
+15,324,2.66E-08
+15,325,2.64E-08
+15,326,2.63E-08
+15,327,2.61E-08
+15,328,2.59E-08
+15,329,2.58E-08
+15,330,2.56E-08
+15,331,2.54E-08
+15,332,2.53E-08
+15,333,2.51E-08
+15,334,2.50E-08
+15,335,2.48E-08
+15,336,2.46E-08
+15,337,2.45E-08
+15,338,2.43E-08
+15,339,2.42E-08
+15,340,2.40E-08
+15,341,2.39E-08
+15,342,2.37E-08
+15,343,2.36E-08
+15,344,2.34E-08
+15,345,2.33E-08
+15,346,2.31E-08
+15,347,2.30E-08
+15,348,2.29E-08
+15,349,2.27E-08
+15,350,2.26E-08
+15,351,2.24E-08
+15,352,2.23E-08
+15,353,2.22E-08
+15,354,2.20E-08
+15,355,2.19E-08
+15,356,2.18E-08
+15,357,2.16E-08
+15,358,2.15E-08
+15,359,2.14E-08
+15,360,2.13E-08
+15,361,2.11E-08
+15,362,2.10E-08
+15,363,2.09E-08
+15,364,2.07E-08
+15,365,2.06E-08
+15,366,2.05E-08
+15,367,2.04E-08
+15,368,2.03E-08
+15,369,2.01E-08
+15,370,2.00E-08
+15,371,1.99E-08
+15,372,1.98E-08
+15,373,1.97E-08
+15,374,1.96E-08
+15,375,1.95E-08
+15,376,1.93E-08
+15,377,1.92E-08
+15,378,1.91E-08
+15,379,1.90E-08
+15,380,1.89E-08
+15,381,1.88E-08
+15,382,1.87E-08
+15,383,1.86E-08
+15,384,1.85E-08
+15,385,1.84E-08
+15,386,1.83E-08
+15,387,1.82E-08
+15,388,1.81E-08
+15,389,1.80E-08
+15,390,1.79E-08
+15,391,1.78E-08
+15,392,1.77E-08
+15,393,1.76E-08
+15,394,1.75E-08
+15,395,1.74E-08
+15,396,1.73E-08
+15,397,1.72E-08
+15,398,1.71E-08
+15,399,1.70E-08
+15,400,1.69E-08
+15,401,1.68E-08
+15,402,1.67E-08
+15,403,1.66E-08
+15,404,1.65E-08
+15,405,1.64E-08
+15,406,1.63E-08
+15,407,1.62E-08
+15,408,1.62E-08
+15,409,1.61E-08
+15,410,1.60E-08
+15,411,1.59E-08
+15,412,1.58E-08
+15,413,1.57E-08
+15,414,1.56E-08
+15,415,1.56E-08
+15,416,1.55E-08
+15,417,1.54E-08
+15,418,1.53E-08
+15,419,1.52E-08
+15,420,1.51E-08
+15,421,1.51E-08
+15,422,1.50E-08
+15,423,1.49E-08
+15,424,1.48E-08
+15,425,1.47E-08
+15,426,1.47E-08
+15,427,1.46E-08
+15,428,1.45E-08
+15,429,1.44E-08
+15,430,1.44E-08
+15,431,1.43E-08
+15,432,1.42E-08
+15,433,1.41E-08
+15,434,1.41E-08
+15,435,1.40E-08
+15,436,1.39E-08
+15,437,1.38E-08
+15,438,1.38E-08
+15,439,1.37E-08
+15,440,1.36E-08
+15,441,1.35E-08
+15,442,1.35E-08
+15,443,1.34E-08
+15,444,1.33E-08
+15,445,1.33E-08
+15,446,1.32E-08
+15,447,1.31E-08
+15,448,1.31E-08
+15,449,1.30E-08
+15,450,1.29E-08
+15,451,1.29E-08
+15,452,1.28E-08
+15,453,1.27E-08
+15,454,1.27E-08
+15,455,1.26E-08
+15,456,1.25E-08
+15,457,1.25E-08
+15,458,1.24E-08
+15,459,1.23E-08
+15,460,1.23E-08
+15,461,1.22E-08
+15,462,1.22E-08
+15,463,1.21E-08
+15,464,1.20E-08
+15,465,1.20E-08
+15,466,1.19E-08
+15,467,1.18E-08
+15,468,1.18E-08
+15,469,1.17E-08
+15,470,1.17E-08
+15,471,1.16E-08
+15,472,1.15E-08
+15,473,1.15E-08
+15,474,1.14E-08
+15,475,1.14E-08
+15,476,1.13E-08
+15,477,1.13E-08
+15,478,1.12E-08
+15,479,1.11E-08
+15,480,1.11E-08
+15,481,1.10E-08
+15,482,1.10E-08
+15,483,1.09E-08
+15,484,1.09E-08
+15,485,1.08E-08
+15,486,1.08E-08
+15,487,1.07E-08
+15,488,1.06E-08
+15,489,1.06E-08
+15,490,1.05E-08
+15,491,1.05E-08
+15,492,1.04E-08
+15,493,1.04E-08
+15,494,1.03E-08
+15,495,1.03E-08
+15,496,1.02E-08
+15,497,1.02E-08
+15,498,1.01E-08
+15,499,1.01E-08
+15,500,1.00E-08
+15,501,9.97E-09
+15,502,9.92E-09
+15,503,9.87E-09
+15,504,9.82E-09
+15,505,9.77E-09
+15,506,9.72E-09
+15,507,9.67E-09
+15,508,9.62E-09
+15,509,9.58E-09
+15,510,9.53E-09
+15,511,9.48E-09
+15,512,9.43E-09
+15,513,9.38E-09
+15,514,9.34E-09
+15,515,9.29E-09
+15,516,9.24E-09
+15,517,9.20E-09
+15,518,9.15E-09
+15,519,9.10E-09
+15,520,9.06E-09
+15,521,9.01E-09
+15,522,8.97E-09
+15,523,8.92E-09
+15,524,8.88E-09
+15,525,8.83E-09
+15,526,8.79E-09
+15,527,8.74E-09
+15,528,8.70E-09
+15,529,8.65E-09
+15,530,8.61E-09
+15,531,8.57E-09
+15,532,8.52E-09
+15,533,8.48E-09
+15,534,8.44E-09
+15,535,8.40E-09
+15,536,8.35E-09
+15,537,8.31E-09
+15,538,8.27E-09
+15,539,8.23E-09
+15,540,8.19E-09
+15,541,8.14E-09
+15,542,8.10E-09
+15,543,8.06E-09
+15,544,8.02E-09
+15,545,7.98E-09
+15,546,7.94E-09
+15,547,7.90E-09
+15,548,7.86E-09
+15,549,7.82E-09
+15,550,7.78E-09
+15,551,7.74E-09
+15,552,7.70E-09
+15,553,7.66E-09
+15,554,7.63E-09
+15,555,7.59E-09
+15,556,7.55E-09
+15,557,7.51E-09
+15,558,7.47E-09
+15,559,7.44E-09
+15,560,7.40E-09
+15,561,7.36E-09
+15,562,7.32E-09
+15,563,7.29E-09
+15,564,7.25E-09
+15,565,7.21E-09
+15,566,7.18E-09
+15,567,7.14E-09
+15,568,7.10E-09
+15,569,7.07E-09
+15,570,7.03E-09
+15,571,7.00E-09
+15,572,6.96E-09
+15,573,6.93E-09
+15,574,6.89E-09
+15,575,6.86E-09
+15,576,6.82E-09
+15,577,6.79E-09
+15,578,6.75E-09
+15,579,6.72E-09
+15,580,6.69E-09
+15,581,6.65E-09
+15,582,6.62E-09
+15,583,6.59E-09
+15,584,6.55E-09
+15,585,6.52E-09
+15,586,6.49E-09
+15,587,6.45E-09
+15,588,6.42E-09
+15,589,6.39E-09
+15,590,6.36E-09
+15,591,6.32E-09
+15,592,6.29E-09
+15,593,6.26E-09
+15,594,6.23E-09
+15,595,6.20E-09
+15,596,6.17E-09
+15,597,6.14E-09
+15,598,6.10E-09
+15,599,6.07E-09
+15,600,6.04E-09
+15,601,6.01E-09
+15,602,5.98E-09
+15,603,5.95E-09
+15,604,5.92E-09
+15,605,5.89E-09
+15,606,5.86E-09
+15,607,5.83E-09
+15,608,5.80E-09
+15,609,5.77E-09
+15,610,5.74E-09
+15,611,5.72E-09
+15,612,5.69E-09
+15,613,5.66E-09
+15,614,5.63E-09
+15,615,5.60E-09
+15,616,5.57E-09
+15,617,5.54E-09
+15,618,5.52E-09
+15,619,5.49E-09
+15,620,5.46E-09
+15,621,5.43E-09
+15,622,5.41E-09
+15,623,5.38E-09
+15,624,5.35E-09
+15,625,5.32E-09
+15,626,5.30E-09
+15,627,5.27E-09
+15,628,5.24E-09
+15,629,5.22E-09
+15,630,5.19E-09
+15,631,5.17E-09
+15,632,5.14E-09
+15,633,5.11E-09
+15,634,5.09E-09
+15,635,5.06E-09
+15,636,5.04E-09
+15,637,5.01E-09
+15,638,4.99E-09
+15,639,4.96E-09
+15,640,4.94E-09
+15,641,4.91E-09
+15,642,4.89E-09
+15,643,4.86E-09
+15,644,4.84E-09
+15,645,4.81E-09
+15,646,4.79E-09
+15,647,4.76E-09
+15,648,4.74E-09
+15,649,4.72E-09
+15,650,4.69E-09
+15,651,4.67E-09
+15,652,4.65E-09
+15,653,4.62E-09
+15,654,4.60E-09
+15,655,4.58E-09
+15,656,4.55E-09
+15,657,4.53E-09
+15,658,4.51E-09
+15,659,4.48E-09
+15,660,4.46E-09
+15,661,4.44E-09
+15,662,4.42E-09
+15,663,4.39E-09
+15,664,4.37E-09
+15,665,4.35E-09
+15,666,4.33E-09
+15,667,4.31E-09
+15,668,4.28E-09
+15,669,4.26E-09
+15,670,4.24E-09
+15,671,4.22E-09
+15,672,4.20E-09
+15,673,4.18E-09
+15,674,4.16E-09
+15,675,4.13E-09
+15,676,4.11E-09
+15,677,4.09E-09
+15,678,4.07E-09
+15,679,4.05E-09
+15,680,4.03E-09
+15,681,4.01E-09
+15,682,3.99E-09
+15,683,3.97E-09
+15,684,3.95E-09
+15,685,3.93E-09
+15,686,3.91E-09
+15,687,3.89E-09
+15,688,3.87E-09
+15,689,3.85E-09
+15,690,3.83E-09
+15,691,3.81E-09
+15,692,3.79E-09
+15,693,3.78E-09
+15,694,3.76E-09
+15,695,3.74E-09
+15,696,3.72E-09
+15,697,3.70E-09
+15,698,3.68E-09
+15,699,3.66E-09
+15,700,3.64E-09
+15,701,3.63E-09
+15,702,3.61E-09
+15,703,3.59E-09
+15,704,3.57E-09
+15,705,3.55E-09
+15,706,3.53E-09
+15,707,3.52E-09
+15,708,3.50E-09
+15,709,3.48E-09
+15,710,3.46E-09
+15,711,3.45E-09
+15,712,3.43E-09
+15,713,3.41E-09
+15,714,3.39E-09
+15,715,3.38E-09
+15,716,3.36E-09
+15,717,3.34E-09
+15,718,3.33E-09
+15,719,3.31E-09
+15,720,3.29E-09
+15,721,3.28E-09
+15,722,3.26E-09
+15,723,3.24E-09
+15,724,3.23E-09
+15,725,3.21E-09
+15,726,3.19E-09
+15,727,3.18E-09
+15,728,3.16E-09
+15,729,3.15E-09
+15,730,3.13E-09
+15,731,3.11E-09
+15,732,3.10E-09
+15,733,3.08E-09
+15,734,3.07E-09
+15,735,3.05E-09
+15,736,3.04E-09
+15,737,3.02E-09
+15,738,3.01E-09
+15,739,2.99E-09
+15,740,2.98E-09
+15,741,2.96E-09
+15,742,2.95E-09
+15,743,2.93E-09
+15,744,2.92E-09
+15,745,2.90E-09
+15,746,2.89E-09
+15,747,2.87E-09
+15,748,2.86E-09
+15,749,2.84E-09
+15,750,2.83E-09
+15,751,2.82E-09
+15,752,2.80E-09
+15,753,2.79E-09
+15,754,2.77E-09
+15,755,2.76E-09
+15,756,2.74E-09
+15,757,2.73E-09
+15,758,2.72E-09
+15,759,2.70E-09
+15,760,2.69E-09
+15,761,2.68E-09
+15,762,2.66E-09
+15,763,2.65E-09
+15,764,2.64E-09
+15,765,2.62E-09
+15,766,2.61E-09
+15,767,2.60E-09
+15,768,2.58E-09
+15,769,2.57E-09
+15,770,2.56E-09
+15,771,2.54E-09
+15,772,2.53E-09
+15,773,2.52E-09
+15,774,2.51E-09
+15,775,2.49E-09
+15,776,2.48E-09
+15,777,2.47E-09
+15,778,2.46E-09
+15,779,2.44E-09
+15,780,2.43E-09
+15,781,2.42E-09
+15,782,2.41E-09
+15,783,2.39E-09
+15,784,2.38E-09
+15,785,2.37E-09
+15,786,2.36E-09
+15,787,2.35E-09
+15,788,2.33E-09
+15,789,2.32E-09
+15,790,2.31E-09
+15,791,2.30E-09
+15,792,2.29E-09
+15,793,2.28E-09
+15,794,2.26E-09
+15,795,2.25E-09
+15,796,2.24E-09
+15,797,2.23E-09
+15,798,2.22E-09
+15,799,2.21E-09
+15,800,2.20E-09
+15,801,2.19E-09
+15,802,2.18E-09
+15,803,2.16E-09
+15,804,2.15E-09
+15,805,2.14E-09
+15,806,2.13E-09
+15,807,2.12E-09
+15,808,2.11E-09
+15,809,2.10E-09
+15,810,2.09E-09
+15,811,2.08E-09
+15,812,2.07E-09
+15,813,2.06E-09
+15,814,2.05E-09
+15,815,2.04E-09
+15,816,2.03E-09
+15,817,2.02E-09
+15,818,2.01E-09
+15,819,2.00E-09
+15,820,1.99E-09
+15,821,1.98E-09
+15,822,1.97E-09
+15,823,1.96E-09
+15,824,1.95E-09
+15,825,1.94E-09
+15,826,1.93E-09
+15,827,1.92E-09
+15,828,1.91E-09
+15,829,1.90E-09
+15,830,1.89E-09
+15,831,1.88E-09
+15,832,1.87E-09
+15,833,1.86E-09
+15,834,1.85E-09
+15,835,1.84E-09
+15,836,1.83E-09
+15,837,1.82E-09
+15,838,1.81E-09
+15,839,1.80E-09
+15,840,1.79E-09
+15,841,1.79E-09
+15,842,1.78E-09
+15,843,1.77E-09
+15,844,1.76E-09
+15,845,1.75E-09
+15,846,1.74E-09
+15,847,1.73E-09
+15,848,1.72E-09
+15,849,1.71E-09
+15,850,1.71E-09
+15,851,1.70E-09
+15,852,1.69E-09
+15,853,1.68E-09
+15,854,1.67E-09
+15,855,1.66E-09
+15,856,1.66E-09
+15,857,1.65E-09
+15,858,1.64E-09
+15,859,1.63E-09
+15,860,1.62E-09
+15,861,1.61E-09
+15,862,1.61E-09
+15,863,1.60E-09
+15,864,1.59E-09
+15,865,1.58E-09
+15,866,1.57E-09
+15,867,1.57E-09
+15,868,1.56E-09
+15,869,1.55E-09
+15,870,1.54E-09
+15,871,1.53E-09
+15,872,1.53E-09
+15,873,1.52E-09
+15,874,1.51E-09
+15,875,1.50E-09
+15,876,1.50E-09
+15,877,1.49E-09
+15,878,1.48E-09
+15,879,1.47E-09
+15,880,1.47E-09
+15,881,1.46E-09
+15,882,1.45E-09
+15,883,1.44E-09
+15,884,1.44E-09
+15,885,1.43E-09
+15,886,1.42E-09
+15,887,1.41E-09
+15,888,1.41E-09
+15,889,1.40E-09
+15,890,1.39E-09
+15,891,1.39E-09
+15,892,1.38E-09
+15,893,1.37E-09
+15,894,1.37E-09
+15,895,1.36E-09
+15,896,1.35E-09
+15,897,1.35E-09
+15,898,1.34E-09
+15,899,1.33E-09
+15,900,1.32E-09
+15,901,1.32E-09
+15,902,1.31E-09
+15,903,1.30E-09
+15,904,1.30E-09
+15,905,1.29E-09
+15,906,1.29E-09
+15,907,1.28E-09
+15,908,1.27E-09
+15,909,1.27E-09
+15,910,1.26E-09
+15,911,1.25E-09
+15,912,1.25E-09
+15,913,1.24E-09
+15,914,1.23E-09
+15,915,1.23E-09
+15,916,1.22E-09
+15,917,1.22E-09
+15,918,1.21E-09
+15,919,1.20E-09
+15,920,1.20E-09
+15,921,1.19E-09
+15,922,1.19E-09
+15,923,1.18E-09
+15,924,1.17E-09
+15,925,1.17E-09
+15,926,1.16E-09
+15,927,1.16E-09
+15,928,1.15E-09
+15,929,1.14E-09
+15,930,1.14E-09
+15,931,1.13E-09
+15,932,1.13E-09
+15,933,1.12E-09
+15,934,1.12E-09
+15,935,1.11E-09
+15,936,1.10E-09
+15,937,1.10E-09
+15,938,1.09E-09
+15,939,1.09E-09
+15,940,1.08E-09
+15,941,1.08E-09
+15,942,1.07E-09
+15,943,1.07E-09
+15,944,1.06E-09
+15,945,1.06E-09
+15,946,1.05E-09
+15,947,1.04E-09
+15,948,1.04E-09
+15,949,1.03E-09
+15,950,1.03E-09
+15,951,1.02E-09
+15,952,1.02E-09
+15,953,1.01E-09
+15,954,1.01E-09
+15,955,1.00E-09
+15,956,9.98E-10
+15,957,9.93E-10
+15,958,9.88E-10
+15,959,9.83E-10
+15,960,9.78E-10
+15,961,9.73E-10
+15,962,9.68E-10
+15,963,9.63E-10
+15,964,9.59E-10
+15,965,9.54E-10
+15,966,9.49E-10
+15,967,9.44E-10
+15,968,9.39E-10
+15,969,9.35E-10
+15,970,9.30E-10
+15,971,9.25E-10
+15,972,9.21E-10
+15,973,9.16E-10
+15,974,9.11E-10
+15,975,9.07E-10
+15,976,9.02E-10
+15,977,8.98E-10
+15,978,8.93E-10
+15,979,8.88E-10
+15,980,8.84E-10
+15,981,8.80E-10
+15,982,8.75E-10
+15,983,8.71E-10
+15,984,8.66E-10
+15,985,8.62E-10
+15,986,8.58E-10
+15,987,8.53E-10
+15,988,8.49E-10
+15,989,8.45E-10
+15,990,8.40E-10
+15,991,8.36E-10
+15,992,8.32E-10
+15,993,8.28E-10
+15,994,8.24E-10
+15,995,8.19E-10
+15,996,8.15E-10
+15,997,8.11E-10
+15,998,8.07E-10
+15,999,8.03E-10
+15,1000,7.99E-10
+15,1001,7.95E-10
+15,1002,7.91E-10
+15,1003,7.87E-10
+15,1004,7.83E-10
+15,1005,7.79E-10
+15,1006,7.75E-10
+15,1007,7.71E-10
+15,1008,7.67E-10
+15,1009,7.63E-10
+15,1010,7.60E-10
+15,1011,7.56E-10
+15,1012,7.52E-10
+15,1013,7.48E-10
+15,1014,7.44E-10
+15,1015,7.41E-10
+15,1016,7.37E-10
+15,1017,7.33E-10
+15,1018,7.29E-10
+15,1019,7.26E-10
+15,1020,7.22E-10
+15,1021,7.18E-10
+15,1022,7.15E-10
+15,1023,7.11E-10
+15,1024,7.08E-10
+15,1025,7.04E-10
+15,1026,7.00E-10
+15,1027,6.97E-10
+15,1028,6.93E-10
+15,1029,6.90E-10
+15,1030,6.86E-10
+15,1031,6.83E-10
+15,1032,6.80E-10
+15,1033,6.76E-10
+15,1034,6.73E-10
+15,1035,6.69E-10
+15,1036,6.66E-10
+15,1037,6.63E-10
+15,1038,6.59E-10
+15,1039,6.56E-10
+15,1040,6.53E-10
+15,1041,6.49E-10
+15,1042,6.46E-10
+15,1043,6.43E-10
+15,1044,6.40E-10
+15,1045,6.36E-10
+15,1046,6.33E-10
+15,1047,6.30E-10
+15,1048,6.27E-10
+15,1049,6.24E-10
+15,1050,6.20E-10
+15,1051,6.17E-10
+15,1052,6.14E-10
+15,1053,6.11E-10
+15,1054,6.08E-10
+15,1055,6.05E-10
+15,1056,6.02E-10
+15,1057,5.99E-10
+15,1058,5.96E-10
+15,1059,5.93E-10
+15,1060,5.90E-10
+15,1061,5.87E-10
+15,1062,5.84E-10
+15,1063,5.81E-10
+15,1064,5.78E-10
+15,1065,5.75E-10
+15,1066,5.72E-10
+15,1067,5.69E-10
+15,1068,5.66E-10
+15,1069,5.64E-10
+15,1070,5.61E-10
+15,1071,5.58E-10
+15,1072,5.55E-10
+15,1073,5.52E-10
+15,1074,5.49E-10
+15,1075,5.47E-10
+15,1076,5.44E-10
+15,1077,5.41E-10
+15,1078,5.38E-10
+15,1079,5.36E-10
+15,1080,5.33E-10
+15,1081,5.30E-10
+15,1082,5.28E-10
+15,1083,5.25E-10
+15,1084,5.22E-10
+15,1085,5.20E-10
+15,1086,5.17E-10
+15,1087,5.15E-10
+15,1088,5.12E-10
+15,1089,5.09E-10
+15,1090,5.07E-10
+15,1091,5.04E-10
+15,1092,5.02E-10
+15,1093,4.99E-10
+15,1094,4.97E-10
+15,1095,4.94E-10
+15,1096,4.92E-10
+15,1097,4.89E-10
+15,1098,4.87E-10
+15,1099,4.84E-10
+15,1100,4.82E-10
+15,1101,4.79E-10
+15,1102,4.77E-10
+15,1103,4.75E-10
+15,1104,4.72E-10
+15,1105,4.70E-10
+15,1106,4.67E-10
+15,1107,4.65E-10
+15,1108,4.63E-10
+15,1109,4.60E-10
+15,1110,4.58E-10
+15,1111,4.56E-10
+15,1112,4.53E-10
+15,1113,4.51E-10
+15,1114,4.49E-10
+15,1115,4.47E-10
+15,1116,4.44E-10
+15,1117,4.42E-10
+15,1118,4.40E-10
+15,1119,4.38E-10
+15,1120,4.35E-10
+15,1121,4.33E-10
+15,1122,4.31E-10
+15,1123,4.29E-10
+15,1124,4.27E-10
+15,1125,4.25E-10
+15,1126,4.22E-10
+15,1127,4.20E-10
+15,1128,4.18E-10
+15,1129,4.16E-10
+15,1130,4.14E-10
+15,1131,4.12E-10
+15,1132,4.10E-10
+15,1133,4.08E-10
+15,1134,4.06E-10
+15,1135,4.04E-10
+15,1136,4.02E-10
+15,1137,4.00E-10
+15,1138,3.98E-10
+15,1139,3.96E-10
+15,1140,3.94E-10
+15,1141,3.92E-10
+15,1142,3.90E-10
+15,1143,3.88E-10
+15,1144,3.86E-10
+15,1145,3.84E-10
+15,1146,3.82E-10
+15,1147,3.80E-10
+15,1148,3.78E-10
+15,1149,3.76E-10
+15,1150,3.74E-10
+15,1151,3.72E-10
+15,1152,3.70E-10
+15,1153,3.68E-10
+15,1154,3.67E-10
+15,1155,3.65E-10
+15,1156,3.63E-10
+15,1157,3.61E-10
+15,1158,3.59E-10
+15,1159,3.57E-10
+15,1160,3.56E-10
+15,1161,3.54E-10
+15,1162,3.52E-10
+15,1163,3.50E-10
+15,1164,3.49E-10
+15,1165,3.47E-10
+15,1166,3.45E-10
+15,1167,3.43E-10
+15,1168,3.42E-10
+15,1169,3.40E-10
+15,1170,3.38E-10
+15,1171,3.36E-10
+15,1172,3.35E-10
+15,1173,3.33E-10
+15,1174,3.31E-10
+15,1175,3.30E-10
+15,1176,3.28E-10
+15,1177,3.26E-10
+15,1178,3.25E-10
+15,1179,3.23E-10
+15,1180,3.21E-10
+15,1181,3.20E-10
+15,1182,3.18E-10
+15,1183,3.17E-10
+15,1184,3.15E-10
+15,1185,3.13E-10
+15,1186,3.12E-10
+15,1187,3.10E-10
+15,1188,3.09E-10
+15,1189,3.07E-10
+15,1190,3.06E-10
+15,1191,3.04E-10
+15,1192,3.03E-10
+15,1193,3.01E-10
+15,1194,2.99E-10
+15,1195,2.98E-10
+15,1196,2.96E-10
+15,1197,2.95E-10
+15,1198,2.93E-10
+15,1199,2.92E-10
+15,1200,2.91E-10
+15,1201,2.89E-10
+15,1202,2.88E-10
+15,1203,2.86E-10
+15,1204,2.85E-10
+15,1205,2.83E-10
+15,1206,2.82E-10
+15,1207,2.80E-10
+15,1208,2.79E-10
+15,1209,2.78E-10
+15,1210,2.76E-10
+15,1211,2.75E-10
+15,1212,2.73E-10
+15,1213,2.72E-10
+15,1214,2.71E-10
+15,1215,2.69E-10
+15,1216,2.68E-10
+15,1217,2.67E-10
+15,1218,2.65E-10
+15,1219,2.64E-10
+15,1220,2.63E-10
+15,1221,2.61E-10
+15,1222,2.60E-10
+15,1223,2.59E-10
+15,1224,2.57E-10
+15,1225,2.56E-10
+15,1226,2.55E-10
+15,1227,2.53E-10
+15,1228,2.52E-10
+15,1229,2.51E-10
+15,1230,2.50E-10
+15,1231,2.48E-10
+15,1232,2.47E-10
+15,1233,2.46E-10
+15,1234,2.45E-10
+15,1235,2.43E-10
+15,1236,2.42E-10
+15,1237,2.41E-10
+15,1238,2.40E-10
+15,1239,2.38E-10
+15,1240,2.37E-10
+15,1241,2.36E-10
+15,1242,2.35E-10
+15,1243,2.34E-10
+15,1244,2.33E-10
+15,1245,2.31E-10
+15,1246,2.30E-10
+15,1247,2.29E-10
+15,1248,2.28E-10
+15,1249,2.27E-10
+15,1250,2.26E-10
+15,1251,2.24E-10
+15,1252,2.23E-10
+15,1253,2.22E-10
+15,1254,2.21E-10
+15,1255,2.20E-10
+15,1256,2.19E-10
+15,1257,2.18E-10
+15,1258,2.17E-10
+15,1259,2.16E-10
+15,1260,2.14E-10
+15,1261,2.13E-10
+15,1262,2.12E-10
+15,1263,2.11E-10
+15,1264,2.10E-10
+15,1265,2.09E-10
+15,1266,2.08E-10
+15,1267,2.07E-10
+15,1268,2.06E-10
+15,1269,2.05E-10
+15,1270,2.04E-10
+15,1271,2.03E-10
+15,1272,2.02E-10
+15,1273,2.01E-10
+15,1274,2.00E-10
+15,1275,1.99E-10
+15,1276,1.98E-10
+15,1277,1.97E-10
+15,1278,1.96E-10
+15,1279,1.95E-10
+15,1280,1.94E-10
+15,1281,1.93E-10
+15,1282,1.92E-10
+15,1283,1.91E-10
+15,1284,1.90E-10
+15,1285,1.89E-10
+15,1286,1.88E-10
+15,1287,1.87E-10
+15,1288,1.86E-10
+15,1289,1.85E-10
+15,1290,1.84E-10
+15,1291,1.83E-10
+15,1292,1.82E-10
+15,1293,1.81E-10
+15,1294,1.81E-10
+15,1295,1.80E-10
+15,1296,1.79E-10
+15,1297,1.78E-10
+15,1298,1.77E-10
+15,1299,1.76E-10
+15,1300,1.75E-10
+15,1301,1.74E-10
+15,1302,1.73E-10
+15,1303,1.73E-10
+15,1304,1.72E-10
+15,1305,1.71E-10
+15,1306,1.70E-10
+15,1307,1.69E-10
+15,1308,1.68E-10
+15,1309,1.67E-10
+15,1310,1.67E-10
+15,1311,1.66E-10
+15,1312,1.65E-10
+15,1313,1.64E-10
+15,1314,1.63E-10
+15,1315,1.62E-10
+15,1316,1.62E-10
+15,1317,1.61E-10
+15,1318,1.60E-10
+15,1319,1.59E-10
+15,1320,1.58E-10
+15,1321,1.58E-10
+15,1322,1.57E-10
+15,1323,1.56E-10
+15,1324,1.55E-10
+15,1325,1.54E-10
+15,1326,1.54E-10
+15,1327,1.53E-10
+15,1328,1.52E-10
+15,1329,1.51E-10
+15,1330,1.51E-10
+15,1331,1.50E-10
+15,1332,1.49E-10
+15,1333,1.48E-10
+15,1334,1.47E-10
+15,1335,1.47E-10
+15,1336,1.46E-10
+15,1337,1.45E-10
+15,1338,1.45E-10
+15,1339,1.44E-10
+15,1340,1.43E-10
+15,1341,1.42E-10
+15,1342,1.42E-10
+15,1343,1.41E-10
+15,1344,1.40E-10
+15,1345,1.40E-10
+15,1346,1.39E-10
+15,1347,1.38E-10
+15,1348,1.37E-10
+15,1349,1.37E-10
+15,1350,1.36E-10
+15,1351,1.35E-10
+15,1352,1.35E-10
+15,1353,1.34E-10
+15,1354,1.33E-10
+15,1355,1.33E-10
+15,1356,1.32E-10
+15,1357,1.31E-10
+15,1358,1.31E-10
+15,1359,1.30E-10
+15,1360,1.29E-10
+15,1361,1.29E-10
+15,1362,1.28E-10
+15,1363,1.27E-10
+15,1364,1.27E-10
+15,1365,1.26E-10
+15,1366,1.25E-10
+15,1367,1.25E-10
+15,1368,1.24E-10
+15,1369,1.24E-10
+15,1370,1.23E-10
+15,1371,1.22E-10
+15,1372,1.22E-10
+15,1373,1.21E-10
+15,1374,1.20E-10
+15,1375,1.20E-10
+15,1376,1.19E-10
+15,1377,1.19E-10
+15,1378,1.18E-10
+15,1379,1.17E-10
+15,1380,1.17E-10
+15,1381,1.16E-10
+15,1382,1.16E-10
+15,1383,1.15E-10
+15,1384,1.15E-10
+15,1385,1.14E-10
+15,1386,1.13E-10
+15,1387,1.13E-10
+15,1388,1.12E-10
+15,1389,1.12E-10
+15,1390,1.11E-10
+15,1391,1.11E-10
+15,1392,1.10E-10
+15,1393,1.09E-10
+15,1394,1.09E-10
+15,1395,1.08E-10
+15,1396,1.08E-10
+15,1397,1.07E-10
+15,1398,1.07E-10
+15,1399,1.06E-10
+15,1400,1.06E-10
+15,1401,1.05E-10
+15,1402,1.05E-10
+15,1403,1.04E-10
+15,1404,1.04E-10
+15,1405,1.03E-10
+15,1406,1.02E-10
+15,1407,1.02E-10
+15,1408,1.01E-10
+15,1409,1.01E-10
+15,1410,1.00E-10
+15,1411,9.99E-11
+15,1412,9.94E-11
+15,1413,9.89E-11
+15,1414,9.84E-11
+15,1415,9.79E-11
+15,1416,9.74E-11
+15,1417,9.69E-11
+15,1418,9.64E-11
+15,1419,9.60E-11
+15,1420,9.55E-11
+15,1421,9.50E-11
+15,1422,9.45E-11
+15,1423,9.40E-11
+15,1424,9.36E-11
+15,1425,9.31E-11
+15,1426,9.26E-11
+15,1427,9.21E-11
+15,1428,9.17E-11
+15,1429,9.12E-11
+15,1430,9.08E-11
+15,1431,9.03E-11
+15,1432,8.98E-11
+15,1433,8.94E-11
+15,1434,8.89E-11
+15,1435,8.85E-11
+15,1436,8.80E-11
+15,1437,8.76E-11
+15,1438,8.72E-11
+15,1439,8.67E-11
+15,1440,8.63E-11
+15,1441,8.58E-11
+15,1442,8.54E-11
+15,1443,8.50E-11
+15,1444,8.46E-11
+15,1445,8.41E-11
+15,1446,8.37E-11
+15,1447,8.33E-11
+15,1448,8.29E-11
+15,1449,8.24E-11
+15,1450,8.20E-11
+15,1451,8.16E-11
+15,1452,8.12E-11
+15,1453,8.08E-11
+15,1454,8.04E-11
+15,1455,8.00E-11
+15,1456,7.96E-11
+15,1457,7.92E-11
+15,1458,7.88E-11
+15,1459,7.84E-11
+15,1460,7.80E-11
+15,1461,7.76E-11
+15,1462,7.72E-11
+15,1463,7.68E-11
+15,1464,7.64E-11
+15,1465,7.60E-11
+15,1466,7.57E-11
+15,1467,7.53E-11
+15,1468,7.49E-11
+15,1469,7.45E-11
+15,1470,7.41E-11
+15,1471,7.38E-11
+15,1472,7.34E-11
+15,1473,7.30E-11
+15,1474,7.27E-11
+15,1475,7.23E-11
+15,1476,7.19E-11
+15,1477,7.16E-11
+15,1478,7.12E-11
+15,1479,7.08E-11
+15,1480,7.05E-11
+15,1481,7.01E-11
+15,1482,6.98E-11
+15,1483,6.94E-11
+15,1484,6.91E-11
+15,1485,6.87E-11
+15,1486,6.84E-11
+15,1487,6.80E-11
+15,1488,6.77E-11
+15,1489,6.73E-11
+15,1490,6.70E-11
+15,1491,6.67E-11
+15,1492,6.63E-11
+15,1493,6.60E-11
+15,1494,6.57E-11
+15,1495,6.53E-11
+15,1496,6.50E-11
+15,1497,6.47E-11
+15,1498,6.43E-11
+15,1499,6.40E-11
+15,1500,6.37E-11
+15,1501,6.34E-11
+15,1502,6.31E-11
+15,1503,6.27E-11
+15,1504,6.24E-11
+15,1505,6.21E-11
+15,1506,6.18E-11
+15,1507,6.15E-11
+15,1508,6.12E-11
+15,1509,6.09E-11
+15,1510,6.06E-11
+15,1511,6.03E-11
+15,1512,5.99E-11
+15,1513,5.96E-11
+15,1514,5.93E-11
+15,1515,5.90E-11
+15,1516,5.87E-11
+15,1517,5.84E-11
+15,1518,5.82E-11
+15,1519,5.79E-11
+15,1520,5.76E-11
+15,1521,5.73E-11
+15,1522,5.70E-11
+15,1523,5.67E-11
+15,1524,5.64E-11
+15,1525,5.61E-11
+15,1526,5.58E-11
+15,1527,5.56E-11
+15,1528,5.53E-11
+15,1529,5.50E-11
+15,1530,5.47E-11
+15,1531,5.45E-11
+15,1532,5.42E-11
+15,1533,5.39E-11
+15,1534,5.36E-11
+15,1535,5.34E-11
+15,1536,5.31E-11
+15,1537,5.28E-11
+15,1538,5.26E-11
+15,1539,5.23E-11
+15,1540,5.20E-11
+15,1541,5.18E-11
+15,1542,5.15E-11
+15,1543,5.12E-11
+15,1544,5.10E-11
+15,1545,5.07E-11
+15,1546,5.05E-11
+15,1547,5.02E-11
+15,1548,5.00E-11
+15,1549,4.97E-11
+15,1550,4.95E-11
+15,1551,4.92E-11
+15,1552,4.90E-11
+15,1553,4.87E-11
+15,1554,4.85E-11
+15,1555,4.82E-11
+15,1556,4.80E-11
+15,1557,4.77E-11
+15,1558,4.75E-11
+15,1559,4.73E-11
+15,1560,4.70E-11
+15,1561,4.68E-11
+15,1562,4.66E-11
+15,1563,4.63E-11
+15,1564,4.61E-11
+15,1565,4.58E-11
+15,1566,4.56E-11
+15,1567,4.54E-11
+15,1568,4.52E-11
+15,1569,4.49E-11
+15,1570,4.47E-11
+15,1571,4.45E-11
+15,1572,4.43E-11
+15,1573,4.40E-11
+15,1574,4.38E-11
+15,1575,4.36E-11
+15,1576,4.34E-11
+15,1577,4.31E-11
+15,1578,4.29E-11
+15,1579,4.27E-11
+15,1580,4.25E-11
+15,1581,4.23E-11
+15,1582,4.21E-11
+15,1583,4.19E-11
+15,1584,4.16E-11
+15,1585,4.14E-11
+15,1586,4.12E-11
+15,1587,4.10E-11
+15,1588,4.08E-11
+15,1589,4.06E-11
+15,1590,4.04E-11
+15,1591,4.02E-11
+15,1592,4.00E-11
+15,1593,3.98E-11
+15,1594,3.96E-11
+15,1595,3.94E-11
+15,1596,3.92E-11
+15,1597,3.90E-11
+15,1598,3.88E-11
+15,1599,3.86E-11
+15,1600,3.84E-11
+15,1601,3.82E-11
+15,1602,3.80E-11
+15,1603,3.78E-11
+15,1604,3.76E-11
+15,1605,3.75E-11
+15,1606,3.73E-11
+15,1607,3.71E-11
+15,1608,3.69E-11
+15,1609,3.67E-11
+15,1610,3.65E-11
+15,1611,3.63E-11
+15,1612,3.61E-11
+15,1613,3.60E-11
+15,1614,3.58E-11
+15,1615,3.56E-11
+15,1616,3.54E-11
+15,1617,3.52E-11
+15,1618,3.51E-11
+15,1619,3.49E-11
+15,1620,3.47E-11
+15,1621,3.45E-11
+15,1622,3.44E-11
+15,1623,3.42E-11
+15,1624,3.40E-11
+15,1625,3.38E-11
+15,1626,3.37E-11
+15,1627,3.35E-11
+15,1628,3.33E-11
+15,1629,3.32E-11
+15,1630,3.30E-11
+15,1631,3.28E-11
+15,1632,3.27E-11
+15,1633,3.25E-11
+15,1634,3.23E-11
+15,1635,3.22E-11
+15,1636,3.20E-11
+15,1637,3.19E-11
+15,1638,3.17E-11
+15,1639,3.15E-11
+15,1640,3.14E-11
+15,1641,3.12E-11
+15,1642,3.11E-11
+15,1643,3.09E-11
+15,1644,3.07E-11
+15,1645,3.06E-11
+15,1646,3.04E-11
+15,1647,3.03E-11
+15,1648,3.01E-11
+15,1649,3.00E-11
+15,1650,2.98E-11
+15,1651,2.97E-11
+15,1652,2.95E-11
+15,1653,2.94E-11
+15,1654,2.92E-11
+15,1655,2.91E-11
+15,1656,2.89E-11
+15,1657,2.88E-11
+15,1658,2.86E-11
+15,1659,2.85E-11
+15,1660,2.84E-11
+15,1661,2.82E-11
+15,1662,2.81E-11
+15,1663,2.79E-11
+15,1664,2.78E-11
+15,1665,2.76E-11
+15,1666,2.75E-11
+15,1667,2.74E-11
+15,1668,2.72E-11
+15,1669,2.71E-11
+15,1670,2.70E-11
+15,1671,2.68E-11
+15,1672,2.67E-11
+15,1673,2.66E-11
+15,1674,2.64E-11
+15,1675,2.63E-11
+15,1676,2.62E-11
+15,1677,2.60E-11
+15,1678,2.59E-11
+15,1679,2.58E-11
+15,1680,2.56E-11
+15,1681,2.55E-11
+15,1682,2.54E-11
+15,1683,2.52E-11
+15,1684,2.51E-11
+15,1685,2.50E-11
+15,1686,2.49E-11
+15,1687,2.47E-11
+15,1688,2.46E-11
+15,1689,2.45E-11
+15,1690,2.44E-11
+15,1691,2.42E-11
+15,1692,2.41E-11
+15,1693,2.40E-11
+15,1694,2.39E-11
+15,1695,2.38E-11
+15,1696,2.36E-11
+15,1697,2.35E-11
+15,1698,2.34E-11
+15,1699,2.33E-11
+15,1700,2.32E-11
+15,1701,2.30E-11
+15,1702,2.29E-11
+15,1703,2.28E-11
+15,1704,2.27E-11
+15,1705,2.26E-11
+15,1706,2.25E-11
+15,1707,2.24E-11
+15,1708,2.22E-11
+15,1709,2.21E-11
+15,1710,2.20E-11
+15,1711,2.19E-11
+15,1712,2.18E-11
+15,1713,2.17E-11
+15,1714,2.16E-11
+15,1715,2.15E-11
+15,1716,2.14E-11
+15,1717,2.13E-11
+15,1718,2.11E-11
+15,1719,2.10E-11
+15,1720,2.09E-11
+15,1721,2.08E-11
+15,1722,2.07E-11
+15,1723,2.06E-11
+15,1724,2.05E-11
+15,1725,2.04E-11
+15,1726,2.03E-11
+15,1727,2.02E-11
+15,1728,2.01E-11
+15,1729,2.00E-11
+15,1730,1.99E-11
+15,1731,1.98E-11
+15,1732,1.97E-11
+15,1733,1.96E-11
+15,1734,1.95E-11
+15,1735,1.94E-11
+15,1736,1.93E-11
+15,1737,1.92E-11
+15,1738,1.91E-11
+15,1739,1.90E-11
+15,1740,1.89E-11
+15,1741,1.88E-11
+15,1742,1.87E-11
+15,1743,1.86E-11
+15,1744,1.85E-11
+15,1745,1.84E-11
+15,1746,1.84E-11
+15,1747,1.83E-11
+15,1748,1.82E-11
+15,1749,1.81E-11
+15,1750,1.80E-11
+15,1751,1.79E-11
+15,1752,1.78E-11
+15,1753,1.77E-11
+15,1754,1.76E-11
+15,1755,1.75E-11
+15,1756,1.74E-11
+15,1757,1.74E-11
+15,1758,1.73E-11
+15,1759,1.72E-11
+15,1760,1.71E-11
+15,1761,1.70E-11
+15,1762,1.69E-11
+15,1763,1.68E-11
+15,1764,1.68E-11
+15,1765,1.67E-11
+15,1766,1.66E-11
+15,1767,1.65E-11
+15,1768,1.64E-11
+15,1769,1.63E-11
+15,1770,1.63E-11
+15,1771,1.62E-11
+15,1772,1.61E-11
+15,1773,1.60E-11
+15,1774,1.59E-11
+15,1775,1.58E-11
+15,1776,1.58E-11
+15,1777,1.57E-11
+15,1778,1.56E-11
+15,1779,1.55E-11
+15,1780,1.55E-11
+15,1781,1.54E-11
+15,1782,1.53E-11
+15,1783,1.52E-11
+15,1784,1.51E-11
+15,1785,1.51E-11
+15,1786,1.50E-11
+15,1787,1.49E-11
+15,1788,1.48E-11
+15,1789,1.48E-11
+15,1790,1.47E-11
+15,1791,1.46E-11
+15,1792,1.45E-11
+15,1793,1.45E-11
+15,1794,1.44E-11
+15,1795,1.43E-11
+15,1796,1.43E-11
+15,1797,1.42E-11
+15,1798,1.41E-11
+15,1799,1.40E-11
+15,1800,1.40E-11
+15,1801,1.39E-11
+15,1802,1.38E-11
+15,1803,1.38E-11
+15,1804,1.37E-11
+15,1805,1.36E-11
+15,1806,1.35E-11
+15,1807,1.35E-11
+15,1808,1.34E-11
+15,1809,1.33E-11
+15,1810,1.33E-11
+15,1811,1.32E-11
+15,1812,1.31E-11
+15,1813,1.31E-11
+15,1814,1.30E-11
+15,1815,1.29E-11
+15,1816,1.29E-11
+15,1817,1.28E-11
+15,1818,1.28E-11
+15,1819,1.27E-11
+15,1820,1.26E-11
+15,1821,1.26E-11
+15,1822,1.25E-11
+15,1823,1.24E-11
+15,1824,1.24E-11
+15,1825,1.23E-11
+15,1826,1.22E-11
+15,1827,1.22E-11
+15,1828,1.21E-11
+15,1829,1.21E-11
+15,1830,1.20E-11
+15,1831,1.19E-11
+15,1832,1.19E-11
+15,1833,1.18E-11
+15,1834,1.18E-11
+15,1835,1.17E-11
+15,1836,1.16E-11
+15,1837,1.16E-11
+15,1838,1.15E-11
+15,1839,1.15E-11
+15,1840,1.14E-11
+15,1841,1.14E-11
+15,1842,1.13E-11
+15,1843,1.12E-11
+15,1844,1.12E-11
+15,1845,1.11E-11
+15,1846,1.11E-11
+15,1847,1.10E-11
+15,1848,1.10E-11
+15,1849,1.09E-11
+15,1850,1.08E-11
+15,1851,1.08E-11
+15,1852,1.07E-11
+15,1853,1.07E-11
+15,1854,1.06E-11
+15,1855,1.06E-11
+15,1856,1.05E-11
+15,1857,1.05E-11
+15,1858,1.04E-11
+15,1859,1.04E-11
+15,1860,1.03E-11
+15,1861,1.03E-11
+15,1862,1.02E-11
+15,1863,1.02E-11
+15,1864,1.01E-11
+15,1865,1.01E-11
+15,1866,1.00E-11
+15,1867,9.95E-12
+15,1868,9.90E-12
+15,1869,9.85E-12
+15,1870,9.80E-12
+15,1871,9.75E-12
+15,1872,9.70E-12
+15,1873,9.65E-12
+15,1874,9.61E-12
+15,1875,9.56E-12
+15,1876,9.51E-12
+15,1877,9.46E-12
+15,1878,9.41E-12
+15,1879,9.37E-12
+15,1880,9.32E-12
+15,1881,9.27E-12
+15,1882,9.22E-12
+15,1883,9.18E-12
+15,1884,9.13E-12
+15,1885,9.09E-12
+15,1886,9.04E-12
+15,1887,8.99E-12
+15,1888,8.95E-12
+15,1889,8.90E-12
+15,1890,8.86E-12
+15,1891,8.81E-12
+15,1892,8.77E-12
+15,1893,8.73E-12
+15,1894,8.68E-12
+15,1895,8.64E-12
+15,1896,8.59E-12
+15,1897,8.55E-12
+15,1898,8.51E-12
+15,1899,8.46E-12
+15,1900,8.42E-12
+15,1901,8.38E-12
+15,1902,8.34E-12
+15,1903,8.30E-12
+15,1904,8.25E-12
+15,1905,8.21E-12
+15,1906,8.17E-12
+15,1907,8.13E-12
+15,1908,8.09E-12
+15,1909,8.05E-12
+15,1910,8.01E-12
+15,1911,7.97E-12
+15,1912,7.93E-12
+15,1913,7.89E-12
+15,1914,7.85E-12
+15,1915,7.81E-12
+15,1916,7.77E-12
+15,1917,7.73E-12
+15,1918,7.69E-12
+15,1919,7.65E-12
+15,1920,7.61E-12
+15,1921,7.57E-12
+15,1922,7.53E-12
+15,1923,7.50E-12
+15,1924,7.46E-12
+15,1925,7.42E-12
+15,1926,7.38E-12
+15,1927,7.35E-12
+15,1928,7.31E-12
+15,1929,7.27E-12
+15,1930,7.24E-12
+15,1931,7.20E-12
+15,1932,7.16E-12
+15,1933,7.13E-12
+15,1934,7.09E-12
+15,1935,7.06E-12
+15,1936,7.02E-12
+15,1937,6.98E-12
+15,1938,6.95E-12
+15,1939,6.91E-12
+15,1940,6.88E-12
+15,1941,6.84E-12
+15,1942,6.81E-12
+15,1943,6.78E-12
+15,1944,6.74E-12
+15,1945,6.71E-12
+15,1946,6.67E-12
+15,1947,6.64E-12
+15,1948,6.61E-12
+15,1949,6.57E-12
+15,1950,6.54E-12
+15,1951,6.51E-12
+15,1952,6.47E-12
+15,1953,6.44E-12
+15,1954,6.41E-12
+15,1955,6.38E-12
+15,1956,6.34E-12
+15,1957,6.31E-12
+15,1958,6.28E-12
+15,1959,6.25E-12
+15,1960,6.22E-12
+15,1961,6.19E-12
+15,1962,6.15E-12
+15,1963,6.12E-12
+15,1964,6.09E-12
+15,1965,6.06E-12
+15,1966,6.03E-12
+15,1967,6.00E-12
+15,1968,5.97E-12
+15,1969,5.94E-12
+15,1970,5.91E-12
+15,1971,5.88E-12
+15,1972,5.85E-12
+15,1973,5.82E-12
+15,1974,5.79E-12
+15,1975,5.76E-12
+15,1976,5.73E-12
+15,1977,5.71E-12
+15,1978,5.68E-12
+15,1979,5.65E-12
+15,1980,5.62E-12
+15,1981,5.59E-12
+15,1982,5.56E-12
+15,1983,5.53E-12
+15,1984,5.51E-12
+15,1985,5.48E-12
+15,1986,5.45E-12
+15,1987,5.42E-12
+15,1988,5.40E-12
+15,1989,5.37E-12
+15,1990,5.34E-12
+15,1991,5.31E-12
+15,1992,5.29E-12
+15,1993,5.26E-12
+15,1994,5.23E-12
+15,1995,5.21E-12
+15,1996,5.18E-12
+15,1997,5.16E-12
+15,1998,5.13E-12
+15,1999,5.10E-12
+15,2000,5.08E-12
From 4d88b5ccadfe9889462cdb304e5ca017062ab9bf Mon Sep 17 00:00:00 2001
From: kevin99111 <156483708+kevin99111@users.noreply.github.com>
Date: Mon, 27 Oct 2025 09:33:01 -0500
Subject: [PATCH 44/47] change name of file
---
efmcalculator2/data/{new_gam (1).csv => gam_df_new} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename efmcalculator2/data/{new_gam (1).csv => gam_df_new} (100%)
diff --git a/efmcalculator2/data/new_gam (1).csv b/efmcalculator2/data/gam_df_new
similarity index 100%
rename from efmcalculator2/data/new_gam (1).csv
rename to efmcalculator2/data/gam_df_new
From 9587b0b35ef6c6527b6a1406977052e04ab4a5dd Mon Sep 17 00:00:00 2001
From: kevin99111 <156483708+kevin99111@users.noreply.github.com>
Date: Mon, 27 Oct 2025 09:33:39 -0500
Subject: [PATCH 45/47] change name of file
---
efmcalculator2/data/{gam_df_new => gam_df_new.csv} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename efmcalculator2/data/{gam_df_new => gam_df_new.csv} (100%)
diff --git a/efmcalculator2/data/gam_df_new b/efmcalculator2/data/gam_df_new.csv
similarity index 100%
rename from efmcalculator2/data/gam_df_new
rename to efmcalculator2/data/gam_df_new.csv
From 1966c3e04485752045e7b450285703386e20c2b6 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Mon, 27 Oct 2025 09:38:55 -0500
Subject: [PATCH 46/47] fix column names of gam_df_new
---
efmcalculator2/data/gam_df_new.csv | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efmcalculator2/data/gam_df_new.csv b/efmcalculator2/data/gam_df_new.csv
index 0994a0c..7980eee 100644
--- a/efmcalculator2/data/gam_df_new.csv
+++ b/efmcalculator2/data/gam_df_new.csv
@@ -1,4 +1,4 @@
-RBP_Length,TBD_length,Prediction
+repeat_len,distance,mutation_rate
5,1,1.72E-09
5,2,1.70E-09
5,3,1.67E-09
From 8e283a94dc827598d04bbf757d534e22b3af8f31 Mon Sep 17 00:00:00 2001
From: kevin99111
Date: Mon, 27 Oct 2025 09:41:05 -0500
Subject: [PATCH 47/47] change code to use new gam mut rates
---
efmcalculator2/pipeline/mutation_rates.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/efmcalculator2/pipeline/mutation_rates.py b/efmcalculator2/pipeline/mutation_rates.py
index 073c15b..ebd015b 100644
--- a/efmcalculator2/pipeline/mutation_rates.py
+++ b/efmcalculator2/pipeline/mutation_rates.py
@@ -4,7 +4,7 @@
from ..constants import SUB_RATE
try:
- gam_result_filepath = filepath = os.path.dirname(sys.modules['efmcalculator2'].__file__)+'/data/gam_df.csv'
+ gam_result_filepath = filepath = os.path.dirname(sys.modules['efmcalculator2'].__file__)+'/data/gam_df_new.csv'
except e:
print("Error while loading gam results")
exit(1)