Compare commits

...

No commits in common. "main" and "pages" have entirely different histories.
main ... pages

3157 changed files with 10789 additions and 1900399 deletions

10
.gitignore vendored
View file

@ -1,10 +0,0 @@
__pycache__
.backups
optifik.egg-info
*.bak
*.pyc
.ipynb_checkpoints
.venv
build/
_build/
dist/

1
.venv Normal file
View file

@ -0,0 +1 @@
victor

View file

@ -1,4 +0,0 @@
# x.x.x
First version

83
ProminenceFunction.txt Normal file
View file

@ -0,0 +1,83 @@
def Prominence_from_fft(lambdas, intensities, refractive_index, num_half_space=None, plot=True):
if num_half_space is None:
num_half_space = len(lambdas)
# # # 1. Spectre original
# if plot:
# plt.figure(figsize=(10, 6), dpi=150)
# plt.plot(1/lambdas, intensities, label='Spectre original')
# plt.xlabel('1/Longueur d\'onde (nm-1)')
# plt.ylabel('Intensité')
# plt.legend()
# plt.show()
# 2. Conversion lambda → k = n(λ) / λ
k_vals = refractive_index / lambdas
f_interp = interp1d(k_vals, intensities, kind='linear', fill_value="extrapolate")
# 3. Axe k uniforme + interpolation
k_linspace = np.linspace(k_vals[0], k_vals[-1], 2 * num_half_space)
intensities_k = f_interp(k_linspace)
# 4. FFT
delta_k = (k_vals[-1] - k_vals[0]) / (2 * num_half_space)
fft_vals = fft(intensities_k)
freqs = fftfreq(2 * num_half_space, delta_k)
# 5. Pic FFT
freqs_pos = freqs[freqs > 0]
abs_fft_pos = np.abs(fft_vals[freqs > 0])
idx_max = np.argmax(abs_fft_pos)
F_max = freqs_pos[idx_max]
if plot:
plt.figure(figsize=(10, 6), dpi=150)
plt.plot(freqs_pos, abs_fft_pos, label='|FFT|')
plt.axvline(F_max, color='r', linestyle='--', label='Pic principal')
plt.xlabel('Distance optique [nm]')
plt.ylabel(r'FFT($I^*$)')
plt.xscale('log')
plt.yscale('log')
plt.legend()
plt.show()
# 6. Filtrage (garde hautes fréquences)
cutoff_HF = 2*F_max
mask_HF = np.abs(freqs) >= cutoff_HF
fft_filtered_HF = np.zeros_like(fft_vals, dtype=complex)
fft_filtered_HF[mask_HF] = fft_vals[mask_HF]
# 7. Filtrage (garde basses fréquences)
cutoff_BF = 10*F_max
mask_BF = np.abs(freqs) <= cutoff_BF
fft_filtered_BF = np.zeros_like(fft_vals, dtype=complex)
fft_filtered_BF[mask_BF] = fft_vals[mask_BF]
# 8. Reconstruction
signal_filtered_HF = np.real(ifft(fft_filtered_HF))
signal_filtered_BF = np.real(ifft(fft_filtered_BF))
lambda_reconstructed = np.interp(k_linspace, k_vals[::-1], lambdas[::-1])
# Masque dans la plage [550, 700] nm
mask_Cam_Sensitivity = (lambda_reconstructed >= 550) & (lambda_reconstructed <= 700)
# 9. Affichage reconstruction
if plot:
plt.figure(figsize=(10, 6), dpi=150)
plt.plot(lambda_reconstructed, intensities_k, '--', label='Original interpolé')
plt.plot(lambda_reconstructed, signal_filtered_HF,'--',color='gray')
plt.plot(lambda_reconstructed[mask_Cam_Sensitivity], signal_filtered_HF[mask_Cam_Sensitivity],color='orange', label='Spectre filtré HF')
plt.plot(lambda_reconstructed, signal_filtered_BF, label='Spectre filtré BF')
plt.xlabel('Longueur d\'onde (nm)')
plt.ylabel('Intensité')
plt.legend()
plt.show()
max_amplitude = np.max(np.abs(signal_filtered_HF[mask_Cam_Sensitivity]))
return max_amplitude,signal_filtered_BF,lambda_reconstructed

View file

@ -1,56 +0,0 @@
# Optifik
TODO: write a paragraph here...
This library replaces oospectro.
## Installation
The use of pip must be limited to virtualenv
* From PyPI
```
pip install optifik
```
* From tarball
```
pip install /path/to/optifik-0.1.0.tar.gz
```
* From the source code
```
pip install .
```
## For contributors
* Install an editable version
```
pip install -e .
```
* Install dev tools
```
pip install -e ".[dev]"
```
* Install doc tools
```
pip install -e ".[docs]"
```
* Build the doc
```
cd docs
make html
```
## Licence
The source code is released under the GNU General Public License v3.0.
See LICENSE for details.

View file

@ -1,32 +0,0 @@
# Step by step release process
* Write changelog
* Push version
```
bumpver update --major # MAJOR (breaking changes) 1.0.0 → 2.0.0
bumpver update --minor # MINOR (nouvelles fonctionnalités) 1.0.0 → 1.1.0
bumpver update --patch # PATCH (correctifs) 1.0.0 → 1.0.1
bumpver update --pre alpha # Version alpha (1.0.0a1) 1.0.0 → 1.0.0a1
bumpver update --pre beta # Version beta (1.0.0b1) 1.0.0 → 1.0.0b1
bumpver update --pre rc # Version release candidate (1.0.0rc1) 1.0.0 → 1.0.0rc1
```
* Build
```
python -m build
```
* Check
```
twine check dist/*
```
* Push to pipy
```
twine upload dist/*
```

View file

@ -1,9 +0,0 @@
# Matplotlib
* nom de fonction à introduire
* Unités
* * en \star

104
_modules/index.html Normal file
View file

@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en" data-content_root="../">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Overview: module code &#8212; optifik documentation</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=5ecbeea2" />
<link rel="stylesheet" type="text/css" href="../_static/basic.css?v=b08954a9" />
<link rel="stylesheet" type="text/css" href="../_static/alabaster.css?v=27fed22d" />
<script src="../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../_static/doctools.js?v=9bcbadda"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="stylesheet" href="../_static/custom.css" type="text/css" />
</head><body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>All modules for which code is available</h1>
<ul><li><a href="optifik/fft.html">optifik.fft</a></li>
<li><a href="optifik/io.html">optifik.io</a></li>
<li><a href="optifik/minmax.html">optifik.minmax</a></li>
<li><a href="optifik/scheludko.html">optifik.scheludko</a></li>
</ul>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="../index.html">optifik</a></h1>
<search id="searchbox" style="display: none" role="search">
<div class="searchformwrapper">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script><h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Documentation</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../installation.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../api_reference.html">API Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../examples.html">Examples</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../index.html">Documentation overview</a><ul>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
&#169;2025, F. Boulogne et al..
|
Powered by <a href="https://www.sphinx-doc.org/">Sphinx 8.2.3</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 1.0.0</a>
</div>
</body>
</html>

184
_modules/optifik/fft.html Normal file
View file

@ -0,0 +1,184 @@
<!DOCTYPE html>
<html lang="en" data-content_root="../../">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>optifik.fft &#8212; optifik documentation</title>
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=5ecbeea2" />
<link rel="stylesheet" type="text/css" href="../../_static/basic.css?v=b08954a9" />
<link rel="stylesheet" type="text/css" href="../../_static/alabaster.css?v=27fed22d" />
<script src="../../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../../_static/doctools.js?v=9bcbadda"></script>
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
</head><body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>Source code for optifik.fft</h1><div class="highlight"><pre>
<span></span><span class="kn">import</span><span class="w"> </span><span class="nn">numpy</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">np</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">scipy.interpolate</span><span class="w"> </span><span class="kn">import</span> <span class="n">interp1d</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">scipy.fftpack</span><span class="w"> </span><span class="kn">import</span> <span class="n">fft</span><span class="p">,</span> <span class="n">ifft</span><span class="p">,</span> <span class="n">fftfreq</span>
<span class="kn">import</span><span class="w"> </span><span class="nn">matplotlib.pyplot</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">plt</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">.utils</span><span class="w"> </span><span class="kn">import</span> <span class="n">OptimizeResult</span><span class="p">,</span> <span class="n">setup_matplotlib</span>
<div class="viewcode-block" id="thickness_from_fft">
<a class="viewcode-back" href="../../api_reference.html#optifik.fft.thickness_from_fft">[docs]</a>
<span class="k">def</span><span class="w"> </span><span class="nf">thickness_from_fft</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span> <span class="n">intensities</span><span class="p">,</span>
<span class="n">refractive_index</span><span class="p">,</span>
<span class="n">num_half_space</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">plot</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Determine the tickness by Fast Fourier Transform.</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> wavelengths : array</span>
<span class="sd"> Wavelength values in nm.</span>
<span class="sd"> intensities : array</span>
<span class="sd"> Intensity values.</span>
<span class="sd"> refractive_index : scalar, optional</span>
<span class="sd"> Value of the refractive index of the medium.</span>
<span class="sd"> num_half_space : scalar, optional</span>
<span class="sd"> Number of points to compute FFT&#39;s half space.</span>
<span class="sd"> If `None`, default corresponds to `10*len(wavelengths)`.</span>
<span class="sd"> plot : boolean, optional</span>
<span class="sd"> Show plot of the transformed signal and the peak detection.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> results : Instance of `OptimizeResult` class.</span>
<span class="sd"> The attribute `thickness` gives the thickness value in nm.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">setup_matplotlib</span><span class="p">()</span>
<span class="k">if</span> <span class="n">num_half_space</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="n">num_half_space</span> <span class="o">=</span> <span class="mi">10</span> <span class="o">*</span> <span class="nb">len</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">)</span>
<span class="c1"># FFT requires evenly spaced data.</span>
<span class="c1"># So, we interpolate the signal.</span>
<span class="c1"># Interpolate to get a linear increase of 1 / wavelengths.</span>
<span class="n">inverse_wavelengths_times_n</span> <span class="o">=</span> <span class="n">refractive_index</span> <span class="o">/</span> <span class="n">wavelengths</span>
<span class="n">f</span> <span class="o">=</span> <span class="n">interp1d</span><span class="p">(</span><span class="n">inverse_wavelengths_times_n</span><span class="p">,</span> <span class="n">intensities</span><span class="p">)</span>
<span class="n">inverse_wavelengths_linspace</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">linspace</span><span class="p">(</span><span class="n">inverse_wavelengths_times_n</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span>
<span class="n">inverse_wavelengths_times_n</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">],</span>
<span class="mi">2</span><span class="o">*</span><span class="n">num_half_space</span><span class="p">)</span>
<span class="n">intensities_linspace</span> <span class="o">=</span> <span class="n">f</span><span class="p">(</span><span class="n">inverse_wavelengths_linspace</span><span class="p">)</span>
<span class="c1"># Perform FFT</span>
<span class="n">density</span> <span class="o">=</span> <span class="p">(</span><span class="n">inverse_wavelengths_times_n</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span><span class="o">-</span><span class="n">inverse_wavelengths_times_n</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span> <span class="o">/</span> <span class="p">(</span><span class="mi">2</span><span class="o">*</span><span class="n">num_half_space</span><span class="p">)</span>
<span class="n">inverse_wavelengths_fft</span> <span class="o">=</span> <span class="n">fftfreq</span><span class="p">(</span><span class="mi">2</span><span class="o">*</span><span class="n">num_half_space</span><span class="p">,</span> <span class="n">density</span><span class="p">)</span>
<span class="n">intensities_fft</span> <span class="o">=</span> <span class="n">fft</span><span class="p">(</span><span class="n">intensities_linspace</span><span class="p">)</span>
<span class="c1"># The FFT is symetrical over [0:N] and [N:2N].</span>
<span class="c1"># Keep over [N:2N], ie for positive freq.</span>
<span class="n">intensities_fft</span> <span class="o">=</span> <span class="n">intensities_fft</span><span class="p">[</span><span class="n">num_half_space</span><span class="p">:</span><span class="mi">2</span><span class="o">*</span><span class="n">num_half_space</span><span class="p">]</span>
<span class="n">inverse_wavelengths_fft</span> <span class="o">=</span> <span class="n">inverse_wavelengths_fft</span><span class="p">[</span><span class="n">num_half_space</span><span class="p">:</span><span class="mi">2</span><span class="o">*</span><span class="n">num_half_space</span><span class="p">]</span>
<span class="n">idx_max_fft</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">argmax</span><span class="p">(</span><span class="nb">abs</span><span class="p">(</span><span class="n">intensities_fft</span><span class="p">))</span>
<span class="n">freq_max</span> <span class="o">=</span> <span class="n">inverse_wavelengths_fft</span><span class="p">[</span><span class="n">idx_max_fft</span><span class="p">]</span>
<span class="n">thickness_fft</span> <span class="o">=</span> <span class="n">freq_max</span> <span class="o">/</span> <span class="mf">2.</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">plt</span><span class="o">.</span><span class="n">figure</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">loglog</span><span class="p">(</span><span class="n">inverse_wavelengths_fft</span><span class="p">,</span> <span class="n">np</span><span class="o">.</span><span class="n">abs</span><span class="p">(</span><span class="n">intensities_fft</span><span class="p">))</span>
<span class="n">plt</span><span class="o">.</span><span class="n">loglog</span><span class="p">(</span><span class="n">freq_max</span><span class="p">,</span> <span class="n">np</span><span class="o">.</span><span class="n">abs</span><span class="p">(</span><span class="n">intensities_fft</span><span class="p">[</span><span class="n">idx_max_fft</span><span class="p">]),</span> <span class="s1">&#39;o&#39;</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">xlabel</span><span class="p">(</span><span class="s1">&#39;Frequency&#39;</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">ylabel</span><span class="p">(</span><span class="sa">r</span><span class="s1">&#39;FFT($I^*$)&#39;</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">title</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Thickness=</span><span class="si">{</span><span class="n">thickness_fft</span><span class="si">:</span><span class="s1">.2f</span><span class="si">}</span><span class="s1">&#39;</span><span class="p">)</span>
<span class="k">return</span> <span class="n">OptimizeResult</span><span class="p">(</span><span class="n">thickness</span><span class="o">=</span><span class="n">thickness_fft</span><span class="p">,)</span></div>
</pre></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="../../index.html">optifik</a></h1>
<search id="searchbox" style="display: none" role="search">
<div class="searchformwrapper">
<form class="search" action="../../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script><h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Documentation</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../installation.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../api_reference.html">API Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../examples.html">Examples</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../index.html">Documentation overview</a><ul>
<li><a href="../index.html">Module code</a><ul>
</ul></li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
&#169;2025, F. Boulogne et al..
|
Powered by <a href="https://www.sphinx-doc.org/">Sphinx 8.2.3</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 1.0.0</a>
</div>
</body>
</html>

139
_modules/optifik/io.html Normal file
View file

@ -0,0 +1,139 @@
<!DOCTYPE html>
<html lang="en" data-content_root="../../">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>optifik.io &#8212; optifik documentation</title>
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=5ecbeea2" />
<link rel="stylesheet" type="text/css" href="../../_static/basic.css?v=b08954a9" />
<link rel="stylesheet" type="text/css" href="../../_static/alabaster.css?v=27fed22d" />
<script src="../../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../../_static/doctools.js?v=9bcbadda"></script>
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
</head><body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>Source code for optifik.io</h1><div class="highlight"><pre>
<span></span><span class="kn">import</span><span class="w"> </span><span class="nn">numpy</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">np</span>
<div class="viewcode-block" id="load_spectrum">
<a class="viewcode-back" href="../../api_reference.html#optifik.io.load_spectrum">[docs]</a>
<span class="k">def</span><span class="w"> </span><span class="nf">load_spectrum</span><span class="p">(</span><span class="n">spectrum_path</span><span class="p">,</span>
<span class="n">wavelength_min</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span>
<span class="n">wavelength_max</span><span class="o">=</span><span class="n">np</span><span class="o">.</span><span class="n">inf</span><span class="p">,</span>
<span class="n">delimiter</span><span class="o">=</span><span class="s1">&#39;,&#39;</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Load a spectrum file.</span>
<span class="sd"> TODO : describe expected format</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> spectrum_path : string</span>
<span class="sd"> File path.</span>
<span class="sd"> wavelength_min : scalar, optional</span>
<span class="sd"> Cut the data at this minimum wavelength (included).</span>
<span class="sd"> wavelength_max : scalar, optional</span>
<span class="sd"> Cut the data at this maximum wavelength (included).</span>
<span class="sd"> delimiter : string, optional</span>
<span class="sd"> Delimiter between columns in the datafile.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> values : arrays</span>
<span class="sd"> (lamdbas, intensities)</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="n">data</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">loadtxt</span><span class="p">(</span><span class="n">spectrum_path</span><span class="p">,</span> <span class="n">delimiter</span><span class="o">=</span><span class="n">delimiter</span><span class="p">)</span>
<span class="n">lambdas</span><span class="p">,</span> <span class="n">intensities</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">column_stack</span><span class="p">(</span><span class="n">data</span><span class="p">)</span>
<span class="n">mask</span> <span class="o">=</span> <span class="p">(</span><span class="n">lambdas</span> <span class="o">&gt;=</span> <span class="n">wavelength_min</span><span class="p">)</span> <span class="o">&amp;</span> <span class="p">(</span><span class="n">lambdas</span> <span class="o">&lt;=</span> <span class="n">wavelength_max</span><span class="p">)</span>
<span class="k">return</span> <span class="n">lambdas</span><span class="p">[</span><span class="n">mask</span><span class="p">],</span> <span class="n">intensities</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span></div>
</pre></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="../../index.html">optifik</a></h1>
<search id="searchbox" style="display: none" role="search">
<div class="searchformwrapper">
<form class="search" action="../../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script><h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Documentation</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../installation.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../api_reference.html">API Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../examples.html">Examples</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../index.html">Documentation overview</a><ul>
<li><a href="../index.html">Module code</a><ul>
</ul></li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
&#169;2025, F. Boulogne et al..
|
Powered by <a href="https://www.sphinx-doc.org/">Sphinx 8.2.3</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 1.0.0</a>
</div>
</body>
</html>

View file

@ -0,0 +1,258 @@
<!DOCTYPE html>
<html lang="en" data-content_root="../../">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>optifik.minmax &#8212; optifik documentation</title>
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=5ecbeea2" />
<link rel="stylesheet" type="text/css" href="../../_static/basic.css?v=b08954a9" />
<link rel="stylesheet" type="text/css" href="../../_static/alabaster.css?v=27fed22d" />
<script src="../../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../../_static/doctools.js?v=9bcbadda"></script>
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
</head><body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>Source code for optifik.minmax</h1><div class="highlight"><pre>
<span></span><span class="kn">import</span><span class="w"> </span><span class="nn">numpy</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">np</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">scipy</span><span class="w"> </span><span class="kn">import</span> <span class="n">stats</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">skimage.measure</span><span class="w"> </span><span class="kn">import</span> <span class="n">ransac</span><span class="p">,</span> <span class="n">LineModelND</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">scipy.signal</span><span class="w"> </span><span class="kn">import</span> <span class="n">find_peaks</span>
<span class="kn">import</span><span class="w"> </span><span class="nn">matplotlib.pyplot</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">plt</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">.utils</span><span class="w"> </span><span class="kn">import</span> <span class="n">OptimizeResult</span><span class="p">,</span> <span class="n">setup_matplotlib</span>
<div class="viewcode-block" id="thickness_from_minmax">
<a class="viewcode-back" href="../../api_reference.html#optifik.minmax.thickness_from_minmax">[docs]</a>
<span class="k">def</span><span class="w"> </span><span class="nf">thickness_from_minmax</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span>
<span class="n">intensities</span><span class="p">,</span>
<span class="n">refractive_index</span><span class="p">,</span>
<span class="n">min_peak_prominence</span><span class="p">,</span>
<span class="n">min_peak_distance</span><span class="o">=</span><span class="mi">10</span><span class="p">,</span>
<span class="n">method</span><span class="o">=</span><span class="s1">&#39;linreg&#39;</span><span class="p">,</span>
<span class="n">plot</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Return the thickness from a min-max detection.</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> wavelengths : array</span>
<span class="sd"> Wavelength values in nm.</span>
<span class="sd"> intensities : array</span>
<span class="sd"> Intensity values.</span>
<span class="sd"> refractive_index : scalar, optional</span>
<span class="sd"> Value of the refractive index of the medium.</span>
<span class="sd"> min_peak_prominence : scalar, optional</span>
<span class="sd"> Required prominence of peaks.</span>
<span class="sd"> min_peak_distance : scalar, optional</span>
<span class="sd"> Minimum distance between peaks.</span>
<span class="sd"> method : string, optional</span>
<span class="sd"> Either &#39;linreg&#39; for linear regression or &#39;ransac&#39;</span>
<span class="sd"> for Randon Sampling Consensus.</span>
<span class="sd"> plot : boolean, optional</span>
<span class="sd"> Show plots of peak detection and lin regression.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> results : Instance of `OptimizeResult` class.</span>
<span class="sd"> The attribute `thickness` gives the thickness value in nm.</span>
<span class="sd"> Notes</span>
<span class="sd"> -----</span>
<span class="sd"> For more details about `min_peak_prominence` and `min_peak_distance`,</span>
<span class="sd"> see the documentation of `scipy.signal.find_peaks`. This function</span>
<span class="sd"> is used to find extrema.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">setup_matplotlib</span><span class="p">()</span>
<span class="n">peaks_max</span><span class="p">,</span> <span class="n">_</span> <span class="o">=</span> <span class="n">find_peaks</span><span class="p">(</span><span class="n">intensities</span><span class="p">,</span> <span class="n">prominence</span><span class="o">=</span><span class="n">min_peak_prominence</span><span class="p">,</span> <span class="n">distance</span><span class="o">=</span><span class="n">min_peak_distance</span><span class="p">)</span>
<span class="n">peaks_min</span><span class="p">,</span> <span class="n">_</span> <span class="o">=</span> <span class="n">find_peaks</span><span class="p">(</span><span class="o">-</span><span class="n">intensities</span><span class="p">,</span> <span class="n">prominence</span><span class="o">=</span><span class="n">min_peak_prominence</span><span class="p">,</span> <span class="n">distance</span><span class="o">=</span><span class="n">min_peak_distance</span><span class="p">)</span>
<span class="n">peaks</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">concatenate</span><span class="p">((</span><span class="n">peaks_min</span><span class="p">,</span> <span class="n">peaks_max</span><span class="p">))</span>
<span class="n">peaks</span><span class="o">.</span><span class="n">sort</span><span class="p">()</span>
<span class="n">k_values</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">arange</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">peaks</span><span class="p">))</span>
<span class="k">if</span> <span class="n">k_values</span><span class="o">.</span><span class="n">size</span> <span class="o">&lt;</span> <span class="mi">2</span><span class="p">:</span>
<span class="c1"># Can&#39;t fit if less than two points.</span>
<span class="k">return</span> <span class="n">OptimizeResult</span><span class="p">(</span><span class="n">thickness</span><span class="o">=</span><span class="n">np</span><span class="o">.</span><span class="n">nan</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">isinstance</span><span class="p">(</span><span class="n">refractive_index</span><span class="p">,</span> <span class="n">np</span><span class="o">.</span><span class="n">ndarray</span><span class="p">):</span>
<span class="c1">#refractive_index = refractive_index[peaks][::-1]</span>
<span class="n">n_over_lambda</span> <span class="o">=</span> <span class="n">refractive_index</span><span class="p">[</span><span class="n">peaks</span><span class="p">][::</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">/</span> <span class="n">wavelengths</span><span class="p">[</span><span class="n">peaks</span><span class="p">][::</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">n_over_lambda</span> <span class="o">=</span> <span class="n">refractive_index</span> <span class="o">/</span> <span class="n">wavelengths</span><span class="p">[</span><span class="n">peaks</span><span class="p">][::</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span>
<span class="k">if</span> <span class="n">method</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="o">==</span> <span class="s1">&#39;ransac&#39;</span><span class="p">:</span>
<span class="n">residual_threshold</span> <span class="o">=</span> <span class="mf">4e-5</span>
<span class="n">min_samples</span> <span class="o">=</span> <span class="mi">2</span>
<span class="c1"># Scikit-image</span>
<span class="n">data</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">column_stack</span><span class="p">([</span><span class="n">k_values</span><span class="p">,</span> <span class="n">n_over_lambda</span><span class="p">])</span>
<span class="n">model_robust</span><span class="p">,</span> <span class="n">inliers</span> <span class="o">=</span> <span class="n">ransac</span><span class="p">(</span><span class="n">data</span><span class="p">,</span> <span class="n">LineModelND</span><span class="p">,</span>
<span class="n">min_samples</span><span class="o">=</span><span class="n">min_samples</span><span class="p">,</span>
<span class="n">residual_threshold</span><span class="o">=</span><span class="n">residual_threshold</span><span class="p">,</span>
<span class="n">max_trials</span><span class="o">=</span><span class="mi">100</span><span class="p">)</span>
<span class="n">slope</span> <span class="o">=</span> <span class="n">model_robust</span><span class="o">.</span><span class="n">params</span><span class="p">[</span><span class="mi">1</span><span class="p">][</span><span class="mi">1</span><span class="p">]</span>
<span class="n">thickness_minmax</span> <span class="o">=</span> <span class="mi">1</span> <span class="o">/</span> <span class="n">slope</span> <span class="o">/</span> <span class="mi">4</span>
<span class="c1"># Scikit-learn</span>
<span class="c1">#X, y = k_values.reshape(-1, 1), 1/wavelengths[peaks][::-1]</span>
<span class="c1">## Fit line using all data</span>
<span class="c1">#lr = linear_model.LinearRegression()</span>
<span class="c1">#lr.fit(X, y)</span>
<span class="c1">#slransac = linear_model.RANSACRegressor(min_samples=min_samples,</span>
<span class="c1"># residual_threshold=residual_threshold)</span>
<span class="c1">#slransac.fit(X, y)</span>
<span class="c1">#inlier_mask = slransac.inlier_mask_</span>
<span class="c1">#outlier_mask = np.logical_not(inlier_mask)</span>
<span class="c1">## Predict data of estimated models</span>
<span class="c1">#line_X = np.arange(X.min(), X.max())[:, np.newaxis]</span>
<span class="c1">#line_y = lr.predict(line_X)</span>
<span class="c1">#line_y_ransac = slransac.predict(line_X)</span>
<span class="c1">#slope = slransac.estimator_.coef_[0]</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">fig</span><span class="p">,</span> <span class="n">ax</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">subplots</span><span class="p">()</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_xlabel</span><span class="p">(</span><span class="s1">&#39;extremum n°&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_ylabel</span><span class="p">(</span><span class="s1">&#39;$n$($\lambda$) / $\lambda$&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">data</span><span class="p">[</span><span class="n">inliers</span><span class="p">,</span> <span class="mi">0</span><span class="p">],</span> <span class="n">data</span><span class="p">[</span><span class="n">inliers</span><span class="p">,</span> <span class="mi">1</span><span class="p">],</span> <span class="s1">&#39;xb&#39;</span><span class="p">,</span> <span class="n">alpha</span><span class="o">=</span><span class="mf">0.6</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="s1">&#39;Inliers&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">data</span><span class="p">[</span><span class="o">~</span><span class="n">inliers</span><span class="p">,</span> <span class="mi">0</span><span class="p">],</span> <span class="n">data</span><span class="p">[</span><span class="o">~</span><span class="n">inliers</span><span class="p">,</span> <span class="mi">1</span><span class="p">],</span> <span class="s1">&#39;+r&#39;</span><span class="p">,</span> <span class="n">alpha</span><span class="o">=</span><span class="mf">0.6</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="s1">&#39;Outliers&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">k_values</span><span class="p">,</span> <span class="n">model_robust</span><span class="o">.</span><span class="n">predict_y</span><span class="p">(</span><span class="n">k_values</span><span class="p">),</span> <span class="s1">&#39;-g&#39;</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="s1">&#39;Fit&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_title</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Thickness = </span><span class="si">{</span><span class="n">thickness_minmax</span><span class="si">:</span><span class="s1">.2f</span><span class="si">}</span><span class="s1"> nm&#39;</span><span class="p">)</span>
<span class="kn">import</span><span class="w"> </span><span class="nn">inspect</span>
<span class="n">plt</span><span class="o">.</span><span class="n">title</span><span class="p">(</span><span class="n">inspect</span><span class="o">.</span><span class="n">currentframe</span><span class="p">()</span><span class="o">.</span><span class="n">f_code</span><span class="o">.</span><span class="n">co_name</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">tight_layout</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">show</span><span class="p">()</span>
<span class="k">return</span> <span class="n">OptimizeResult</span><span class="p">(</span><span class="n">thickness</span><span class="o">=</span><span class="n">thickness_minmax</span><span class="p">,</span>
<span class="n">num_inliers</span><span class="o">=</span><span class="n">inliers</span><span class="o">.</span><span class="n">sum</span><span class="p">(),</span>
<span class="n">num_outliers</span><span class="o">=</span><span class="p">(</span><span class="o">~</span><span class="n">inliers</span><span class="p">)</span><span class="o">.</span><span class="n">sum</span><span class="p">(),</span>
<span class="n">peaks_max</span><span class="o">=</span><span class="n">peaks_max</span><span class="p">,</span>
<span class="n">peaks_min</span><span class="o">=</span><span class="n">peaks_min</span><span class="p">)</span>
<span class="k">elif</span> <span class="n">method</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="o">==</span> <span class="s1">&#39;linreg&#39;</span><span class="p">:</span>
<span class="n">slope</span><span class="p">,</span> <span class="n">intercept</span><span class="p">,</span> <span class="n">r_value</span><span class="p">,</span> <span class="n">p_value</span><span class="p">,</span> <span class="n">std_err</span> <span class="o">=</span> <span class="n">stats</span><span class="o">.</span><span class="n">linregress</span><span class="p">(</span><span class="n">k_values</span><span class="p">,</span> <span class="n">n_over_lambda</span><span class="p">)</span>
<span class="c1">#mean_n = np.mean(refractive_index)</span>
<span class="n">thickness_minmax</span> <span class="o">=</span> <span class="mi">1</span> <span class="o">/</span> <span class="n">slope</span> <span class="o">/</span> <span class="mi">4</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">fig</span><span class="p">,</span> <span class="n">ax</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">subplots</span><span class="p">()</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_xlabel</span><span class="p">(</span><span class="s1">&#39;extremum n°&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_ylabel</span><span class="p">(</span><span class="s1">&#39;$n$($\lambda$) / $\lambda$&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">k_values</span><span class="p">,</span> <span class="n">n_over_lambda</span><span class="p">,</span> <span class="s1">&#39;s&#39;</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="s1">&#39;Extrema&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">k_values</span><span class="p">,</span> <span class="n">intercept</span> <span class="o">+</span> <span class="n">k_values</span> <span class="o">*</span> <span class="n">slope</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="s1">&#39;Fit&#39;</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_title</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Thickness = </span><span class="si">{</span><span class="n">thickness_minmax</span><span class="si">:</span><span class="s1">.2f</span><span class="si">}</span><span class="s1"> nm&#39;</span><span class="p">)</span>
<span class="kn">import</span><span class="w"> </span><span class="nn">inspect</span>
<span class="n">plt</span><span class="o">.</span><span class="n">title</span><span class="p">(</span><span class="n">inspect</span><span class="o">.</span><span class="n">currentframe</span><span class="p">()</span><span class="o">.</span><span class="n">f_code</span><span class="o">.</span><span class="n">co_name</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">tight_layout</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">show</span><span class="p">()</span>
<span class="k">return</span> <span class="n">OptimizeResult</span><span class="p">(</span><span class="n">thickness</span><span class="o">=</span><span class="n">thickness_minmax</span><span class="p">,</span>
<span class="n">peaks_max</span><span class="o">=</span><span class="n">peaks_max</span><span class="p">,</span>
<span class="n">peaks_min</span><span class="o">=</span><span class="n">peaks_min</span><span class="p">,</span>
<span class="n">stderr</span><span class="o">=</span><span class="n">std_err</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s1">&#39;Wrong method&#39;</span><span class="p">)</span></div>
</pre></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="../../index.html">optifik</a></h1>
<search id="searchbox" style="display: none" role="search">
<div class="searchformwrapper">
<form class="search" action="../../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script><h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Documentation</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../installation.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../api_reference.html">API Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../examples.html">Examples</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../index.html">Documentation overview</a><ul>
<li><a href="../index.html">Module code</a><ul>
</ul></li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
&#169;2025, F. Boulogne et al..
|
Powered by <a href="https://www.sphinx-doc.org/">Sphinx 8.2.3</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 1.0.0</a>
</div>
</body>
</html>

View file

@ -0,0 +1,471 @@
<!DOCTYPE html>
<html lang="en" data-content_root="../../">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>optifik.scheludko &#8212; optifik documentation</title>
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=5ecbeea2" />
<link rel="stylesheet" type="text/css" href="../../_static/basic.css?v=b08954a9" />
<link rel="stylesheet" type="text/css" href="../../_static/alabaster.css?v=27fed22d" />
<script src="../../_static/documentation_options.js?v=5929fcd5"></script>
<script src="../../_static/doctools.js?v=9bcbadda"></script>
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="stylesheet" href="../../_static/custom.css" type="text/css" />
</head><body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<h1>Source code for optifik.scheludko</h1><div class="highlight"><pre>
<span></span><span class="kn">import</span><span class="w"> </span><span class="nn">numpy</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">np</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">scipy.optimize</span><span class="w"> </span><span class="kn">import</span> <span class="n">curve_fit</span>
<span class="kn">import</span><span class="w"> </span><span class="nn">matplotlib.pyplot</span><span class="w"> </span><span class="k">as</span><span class="w"> </span><span class="nn">plt</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">.io</span><span class="w"> </span><span class="kn">import</span> <span class="n">load_spectrum</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">.utils</span><span class="w"> </span><span class="kn">import</span> <span class="n">OptimizeResult</span><span class="p">,</span> <span class="n">setup_matplotlib</span>
<span class="kn">from</span><span class="w"> </span><span class="nn">.analysis</span><span class="w"> </span><span class="kn">import</span> <span class="n">finds_peak</span>
<span class="k">def</span><span class="w"> </span><span class="nf">_thicknesses_scheludko_at_order</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span>
<span class="n">intensities</span><span class="p">,</span>
<span class="n">interference_order</span><span class="p">,</span>
<span class="n">refractive_index</span><span class="p">,</span>
<span class="n">intensities_void</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Compute thicknesses vs wavelength for a given interference order.</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> wavelengths : array</span>
<span class="sd"> Wavelength values in nm.</span>
<span class="sd"> intensities : array</span>
<span class="sd"> Intensity values.</span>
<span class="sd"> interference_order : int</span>
<span class="sd"> Interference order.</span>
<span class="sd"> refractive_index : array_like (or float)</span>
<span class="sd"> Refractive index.</span>
<span class="sd"> intensities_void : array, optional</span>
<span class="sd"> Intensities of void.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> thicknesses : array</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="k">if</span> <span class="n">intensities_void</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="n">Imin</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">min</span><span class="p">(</span><span class="n">intensities</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">Imin</span> <span class="o">=</span> <span class="n">intensities_void</span>
<span class="n">n</span> <span class="o">=</span> <span class="n">refractive_index</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">interference_order</span>
<span class="n">I_norm</span> <span class="o">=</span> <span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">asarray</span><span class="p">(</span><span class="n">intensities</span><span class="p">)</span> <span class="o">-</span> <span class="n">Imin</span><span class="p">)</span> <span class="o">/</span> <span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">max</span><span class="p">(</span><span class="n">intensities</span><span class="p">)</span> <span class="o">-</span> <span class="n">Imin</span><span class="p">)</span>
<span class="n">prefactor</span> <span class="o">=</span> <span class="n">wavelengths</span> <span class="o">/</span> <span class="p">(</span><span class="mi">2</span> <span class="o">*</span> <span class="n">np</span><span class="o">.</span><span class="n">pi</span> <span class="o">*</span> <span class="n">n</span><span class="p">)</span>
<span class="n">argument</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">sqrt</span><span class="p">(</span><span class="n">I_norm</span> <span class="o">/</span> <span class="p">(</span><span class="mi">1</span> <span class="o">+</span> <span class="p">(</span><span class="mi">1</span> <span class="o">-</span> <span class="n">I_norm</span><span class="p">)</span> <span class="o">*</span> <span class="p">(</span><span class="n">n</span><span class="o">**</span><span class="mi">2</span> <span class="o">-</span> <span class="mi">1</span><span class="p">)</span><span class="o">**</span><span class="mi">2</span> <span class="o">/</span> <span class="p">(</span><span class="mi">4</span> <span class="o">*</span> <span class="n">n</span><span class="o">**</span><span class="mi">2</span><span class="p">)))</span>
<span class="k">if</span> <span class="n">m</span> <span class="o">%</span> <span class="mi">2</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">term1</span> <span class="o">=</span> <span class="p">(</span><span class="n">m</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">*</span> <span class="n">np</span><span class="o">.</span><span class="n">pi</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">term1</span> <span class="o">=</span> <span class="p">((</span><span class="n">m</span><span class="o">+</span><span class="mi">1</span><span class="p">)</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">*</span> <span class="n">np</span><span class="o">.</span><span class="n">pi</span>
<span class="n">term2</span> <span class="o">=</span> <span class="p">(</span><span class="o">-</span><span class="mi">1</span><span class="p">)</span><span class="o">**</span><span class="n">m</span> <span class="o">*</span> <span class="n">np</span><span class="o">.</span><span class="n">arcsin</span><span class="p">(</span><span class="n">argument</span><span class="p">)</span>
<span class="k">return</span> <span class="n">prefactor</span> <span class="o">*</span> <span class="p">(</span><span class="n">term1</span> <span class="o">+</span> <span class="n">term2</span><span class="p">)</span>
<span class="k">def</span><span class="w"> </span><span class="nf">_Delta</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span> <span class="n">thickness</span><span class="p">,</span> <span class="n">interference_order</span><span class="p">,</span> <span class="n">refractive_index</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Compute the Delta values.</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> wavelengths : array</span>
<span class="sd"> Wavelength values in nm.</span>
<span class="sd"> thickness : array_like (or float)</span>
<span class="sd"> Film thickness.</span>
<span class="sd"> interference_order : int</span>
<span class="sd"> Interference order.</span>
<span class="sd"> refractive_index : array_like (or float)</span>
<span class="sd"> Refractive index.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> ndarray</span>
<span class="sd"> Delta values.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="c1"># ensure that the entries are numpy arrays</span>
<span class="n">wavelengths</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">asarray</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">)</span>
<span class="n">h</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">asarray</span><span class="p">(</span><span class="n">thickness</span><span class="p">)</span>
<span class="n">n</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">asarray</span><span class="p">(</span><span class="n">refractive_index</span><span class="p">)</span>
<span class="n">m</span> <span class="o">=</span> <span class="n">interference_order</span>
<span class="c1"># Calculation of p as a function of the parity of m</span>
<span class="k">if</span> <span class="n">m</span> <span class="o">%</span> <span class="mi">2</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">p</span> <span class="o">=</span> <span class="n">m</span> <span class="o">/</span> <span class="mi">2</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">p</span> <span class="o">=</span> <span class="p">(</span><span class="n">m</span> <span class="o">+</span> <span class="mi">1</span><span class="p">)</span> <span class="o">/</span> <span class="mi">2</span>
<span class="c1"># Calculation of alpha</span>
<span class="n">alpha</span> <span class="o">=</span> <span class="p">((</span><span class="n">n</span><span class="o">**</span><span class="mi">2</span> <span class="o">-</span> <span class="mi">1</span><span class="p">)</span><span class="o">**</span><span class="mi">2</span><span class="p">)</span> <span class="o">/</span> <span class="p">(</span><span class="mi">4</span> <span class="o">*</span> <span class="n">n</span><span class="o">**</span><span class="mi">2</span><span class="p">)</span>
<span class="c1"># Argument of sinus</span>
<span class="n">angle</span> <span class="o">=</span> <span class="p">(</span><span class="mi">2</span> <span class="o">*</span> <span class="n">np</span><span class="o">.</span><span class="n">pi</span> <span class="o">*</span> <span class="n">n</span> <span class="o">*</span> <span class="n">h</span> <span class="o">/</span> <span class="n">wavelengths</span><span class="p">)</span> <span class="o">-</span> <span class="n">p</span> <span class="o">*</span> <span class="n">np</span><span class="o">.</span><span class="n">pi</span>
<span class="c1"># A = sin²(argument)</span>
<span class="n">A</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">sin</span><span class="p">(</span><span class="n">angle</span><span class="p">)</span><span class="o">**</span><span class="mi">2</span>
<span class="c1"># Final calcuation of Delta</span>
<span class="k">return</span> <span class="p">(</span><span class="n">A</span> <span class="o">*</span> <span class="p">(</span><span class="mi">1</span> <span class="o">+</span> <span class="n">alpha</span><span class="p">))</span> <span class="o">/</span> <span class="p">(</span><span class="mi">1</span> <span class="o">+</span> <span class="n">A</span> <span class="o">*</span> <span class="n">alpha</span><span class="p">)</span>
<span class="k">def</span><span class="w"> </span><span class="nf">_Delta_fit</span><span class="p">(</span><span class="n">xdata</span><span class="p">,</span> <span class="n">thickness</span><span class="p">,</span> <span class="n">interference_order</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Wrapper on Delta() for curve_fit.</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> xdata : tuple</span>
<span class="sd"> (wavelengths, refractive_index)</span>
<span class="sd"> thickness : array_like (or float)</span>
<span class="sd"> Film thickness.</span>
<span class="sd"> interference_order : int</span>
<span class="sd"> Interference order.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> ndarray</span>
<span class="sd"> Delta values.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="n">lambdas</span><span class="p">,</span> <span class="n">r_index</span> <span class="o">=</span> <span class="n">xdata</span>
<span class="k">return</span> <span class="n">_Delta</span><span class="p">(</span><span class="n">lambdas</span><span class="p">,</span> <span class="n">thickness</span><span class="p">,</span> <span class="n">interference_order</span><span class="p">,</span> <span class="n">r_index</span><span class="p">)</span>
<div class="viewcode-block" id="get_default_start_stop_wavelengths">
<a class="viewcode-back" href="../../api_reference.html#optifik.scheludko.get_default_start_stop_wavelengths">[docs]</a>
<span class="k">def</span><span class="w"> </span><span class="nf">get_default_start_stop_wavelengths</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span>
<span class="n">intensities</span><span class="p">,</span>
<span class="n">refractive_index</span><span class="p">,</span>
<span class="n">min_peak_prominence</span><span class="p">,</span>
<span class="n">plot</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Returns the start and stop wavelength values of the last monotonic branch.</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> wavelengths : array</span>
<span class="sd"> Wavelength values in nm.</span>
<span class="sd"> intensities : array</span>
<span class="sd"> Intensity values.</span>
<span class="sd"> refractive_index : scalar, optional</span>
<span class="sd"> Value of the refractive index of the medium.</span>
<span class="sd"> min_peak_prominence : scalar</span>
<span class="sd"> Required prominence of peaks.</span>
<span class="sd"> plot : bool, optional</span>
<span class="sd"> Display a curve, useful for checking or debuging. The default is None.</span>
<span class="sd"> Raises</span>
<span class="sd"> ------</span>
<span class="sd"> RuntimeError</span>
<span class="sd"> if at least one maximum and one minimum are not detected.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> wavelength_start : scalar</span>
<span class="sd"> wavelength_stop : scalar</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="c1"># idx_min idx max</span>
<span class="n">idx_peaks_min</span><span class="p">,</span> <span class="n">idx_peaks_max</span> <span class="o">=</span> <span class="n">finds_peak</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span> <span class="n">intensities</span><span class="p">,</span>
<span class="n">min_peak_prominence</span><span class="o">=</span><span class="n">min_peak_prominence</span><span class="p">,</span>
<span class="n">plot</span><span class="o">=</span><span class="n">plot</span><span class="p">)</span>
<span class="n">failure</span><span class="p">,</span> <span class="n">message</span> <span class="o">=</span> <span class="kc">False</span><span class="p">,</span> <span class="s1">&#39;&#39;</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">idx_peaks_min</span><span class="p">)</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">message</span> <span class="o">+=</span> <span class="s1">&#39;Failed to detect at least one minimum. &#39;</span>
<span class="n">failure</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">idx_peaks_max</span><span class="p">)</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">message</span> <span class="o">+=</span> <span class="s1">&#39;Failed to detect at least one maximum. &#39;</span>
<span class="n">failure</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">if</span> <span class="n">failure</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">RuntimeError</span><span class="p">(</span><span class="n">message</span><span class="p">)</span>
<span class="c1"># Get the last oscillation peaks</span>
<span class="n">lambda_min</span> <span class="o">=</span> <span class="n">wavelengths</span><span class="p">[</span><span class="n">idx_peaks_min</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]]</span>
<span class="n">lambda_max</span> <span class="o">=</span> <span class="n">wavelengths</span><span class="p">[</span><span class="n">idx_peaks_max</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]]</span>
<span class="c1"># Order them</span>
<span class="n">wavelength_start</span> <span class="o">=</span> <span class="nb">min</span><span class="p">(</span><span class="n">lambda_min</span><span class="p">,</span> <span class="n">lambda_max</span><span class="p">)</span>
<span class="n">wavelength_stop</span> <span class="o">=</span> <span class="nb">max</span><span class="p">(</span><span class="n">lambda_min</span><span class="p">,</span> <span class="n">lambda_max</span><span class="p">)</span>
<span class="k">return</span> <span class="n">wavelength_start</span><span class="p">,</span> <span class="n">wavelength_stop</span></div>
<div class="viewcode-block" id="thickness_from_scheludko">
<a class="viewcode-back" href="../../api_reference.html#optifik.scheludko.thickness_from_scheludko">[docs]</a>
<span class="k">def</span><span class="w"> </span><span class="nf">thickness_from_scheludko</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span>
<span class="n">intensities</span><span class="p">,</span>
<span class="n">refractive_index</span><span class="p">,</span>
<span class="n">wavelength_start</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">wavelength_stop</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">interference_order</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">intensities_void</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
<span class="n">plot</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;</span>
<span class="sd"> Compute the film thickness based on Scheludko method.</span>
<span class="sd"> Parameters</span>
<span class="sd"> ----------</span>
<span class="sd"> wavelengths : array</span>
<span class="sd"> Wavelength values in nm.</span>
<span class="sd"> intensities : array</span>
<span class="sd"> Intensity values.</span>
<span class="sd"> refractive_index : scalar, optional</span>
<span class="sd"> Value of the refractive index of the medium.</span>
<span class="sd"> wavelength_start : scalar, optional</span>
<span class="sd"> Starting value of a monotonic branch.</span>
<span class="sd"> Mandatory if interference_order != 0.</span>
<span class="sd"> wavelength_stop : scalar, optional</span>
<span class="sd"> Stoping value of a monotonic branch.</span>
<span class="sd"> Mandatory if interference_order != 0.</span>
<span class="sd"> interference_order : scalar, optional</span>
<span class="sd"> Interference order, zero or positive integer.</span>
<span class="sd"> If set to None, the value is guessed.</span>
<span class="sd"> intensities_void : array, optional</span>
<span class="sd"> Intensity in absence of a film.</span>
<span class="sd"> Mandatory if interference_order == 0.</span>
<span class="sd"> plot : bool, optional</span>
<span class="sd"> Display a curve, useful for checking or debuging. The default is None.</span>
<span class="sd"> Returns</span>
<span class="sd"> -------</span>
<span class="sd"> results : Instance of `OptimizeResult` class.</span>
<span class="sd"> The attribute `thickness` gives the thickness value in nm.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">setup_matplotlib</span><span class="p">()</span>
<span class="k">if</span> <span class="n">interference_order</span> <span class="ow">is</span> <span class="kc">None</span> <span class="ow">or</span> <span class="n">interference_order</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">:</span>
<span class="k">if</span> <span class="n">wavelength_stop</span> <span class="ow">is</span> <span class="kc">None</span> <span class="ow">or</span> <span class="n">wavelength_start</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s1">&#39;wavelength_start and wavelength_stop must be passed for interference_order != 0.&#39;</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">if</span> <span class="n">wavelength_start</span> <span class="o">&gt;</span> <span class="n">wavelength_stop</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s1">&#39;wavelength_start and wavelength_stop are swapped.&#39;</span><span class="p">)</span>
<span class="n">r_index</span> <span class="o">=</span> <span class="n">refractive_index</span>
<span class="c1"># Handle the interference order</span>
<span class="k">if</span> <span class="n">interference_order</span> <span class="ow">is</span> <span class="kc">None</span><span class="p">:</span>
<span class="c1"># A bit extreme...</span>
<span class="n">max_tested_order</span> <span class="o">=</span> <span class="mi">12</span>
<span class="c1"># mask input data</span>
<span class="n">mask</span> <span class="o">=</span> <span class="p">(</span><span class="n">wavelengths</span> <span class="o">&gt;=</span> <span class="n">wavelength_start</span><span class="p">)</span> <span class="o">&amp;</span> <span class="p">(</span><span class="n">wavelengths</span> <span class="o">&lt;=</span> <span class="n">wavelength_stop</span><span class="p">)</span>
<span class="n">wavelengths_masked</span> <span class="o">=</span> <span class="n">wavelengths</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span>
<span class="n">r_index_masked</span> <span class="o">=</span> <span class="n">r_index</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span>
<span class="n">intensities_masked</span> <span class="o">=</span> <span class="n">intensities</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span>
<span class="n">min_difference</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">inf</span>
<span class="n">thickness_values</span> <span class="o">=</span> <span class="kc">None</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">plt</span><span class="o">.</span><span class="n">figure</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">ylabel</span><span class="p">(</span><span class="sa">r</span><span class="s1">&#39;$h$ ($\mathrm{{nm}}$)&#39;</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">xlabel</span><span class="p">(</span><span class="sa">r</span><span class="s1">&#39;$\lambda$ ($ \mathrm</span><span class="si">{nm}</span><span class="s1"> $)&#39;</span><span class="p">)</span>
<span class="k">for</span> <span class="n">_order</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="n">max_tested_order</span><span class="o">+</span><span class="mi">1</span><span class="p">):</span>
<span class="n">h_values</span> <span class="o">=</span> <span class="n">_thicknesses_scheludko_at_order</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span>
<span class="n">intensities_masked</span><span class="p">,</span>
<span class="n">_order</span><span class="p">,</span>
<span class="n">r_index_masked</span><span class="p">)</span>
<span class="n">difference</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">max</span><span class="p">(</span><span class="n">h_values</span><span class="p">)</span> <span class="o">-</span> <span class="n">np</span><span class="o">.</span><span class="n">min</span><span class="p">(</span><span class="n">h_values</span><span class="p">)</span>
<span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s2">&quot;h-difference for m=</span><span class="si">{</span><span class="n">_order</span><span class="si">}</span><span class="s2">: </span><span class="si">{</span><span class="n">difference</span><span class="si">:</span><span class="s2">.1f</span><span class="si">}</span><span class="s2"> nm&quot;</span><span class="p">)</span>
<span class="k">if</span> <span class="n">difference</span> <span class="o">&lt;</span> <span class="n">min_difference</span><span class="p">:</span>
<span class="n">min_difference</span> <span class="o">=</span> <span class="n">difference</span>
<span class="n">interference_order</span> <span class="o">=</span> <span class="n">_order</span>
<span class="n">thickness_values</span> <span class="o">=</span> <span class="n">h_values</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span> <span class="n">h_values</span><span class="p">,</span> <span class="s1">&#39;.&#39;</span><span class="p">,</span>
<span class="n">markersize</span><span class="o">=</span><span class="mi">3</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="sa">f</span><span class="s2">&quot;Order=</span><span class="si">{</span><span class="n">_order</span><span class="si">}</span><span class="s2">&quot;</span><span class="p">)</span>
<span class="k">elif</span> <span class="n">interference_order</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">min_peak_prominence</span> <span class="o">=</span> <span class="mf">0.02</span>
<span class="n">peaks_min</span><span class="p">,</span> <span class="n">peaks_max</span> <span class="o">=</span> <span class="n">finds_peak</span><span class="p">(</span><span class="n">wavelengths</span><span class="p">,</span> <span class="n">intensities</span><span class="p">,</span>
<span class="n">min_peak_prominence</span><span class="o">=</span><span class="n">min_peak_prominence</span><span class="p">,</span>
<span class="n">plot</span><span class="o">=</span><span class="n">plot</span><span class="p">)</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">peaks_max</span><span class="p">)</span> <span class="o">!=</span> <span class="mi">1</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">RuntimeError</span><span class="p">(</span><span class="s1">&#39;Failed to detect a single maximum peak.&#39;</span><span class="p">)</span>
<span class="n">lambda_unique</span> <span class="o">=</span> <span class="n">wavelengths</span><span class="p">[</span><span class="n">peaks_max</span><span class="p">[</span><span class="mi">0</span><span class="p">]]</span>
<span class="c1"># keep rhs from the maximum</span>
<span class="n">mask</span> <span class="o">=</span> <span class="n">wavelengths</span> <span class="o">&gt;=</span> <span class="n">lambda_unique</span>
<span class="n">wavelengths_masked</span> <span class="o">=</span> <span class="n">wavelengths</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span>
<span class="n">r_index_masked</span> <span class="o">=</span> <span class="n">r_index</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span>
<span class="n">intensities_masked</span> <span class="o">=</span> <span class="n">intensities</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span>
<span class="n">intensities_void_masked</span> <span class="o">=</span> <span class="n">intensities_void</span><span class="p">[</span><span class="n">mask</span><span class="p">]</span>
<span class="n">interference_order</span> <span class="o">=</span> <span class="mi">0</span>
<span class="n">thickness_values</span> <span class="o">=</span> <span class="n">_thicknesses_scheludko_at_order</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span>
<span class="n">intensities_masked</span><span class="p">,</span>
<span class="n">interference_order</span><span class="p">,</span>
<span class="n">r_index_masked</span><span class="p">,</span>
<span class="n">intensities_void</span><span class="o">=</span><span class="n">intensities_void_masked</span><span class="p">)</span>
<span class="k">elif</span> <span class="n">interference_order</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">h_values</span> <span class="o">=</span> <span class="n">_thicknesses_scheludko_at_order</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span>
<span class="n">intensities_masked</span><span class="p">,</span>
<span class="n">interference_order</span><span class="p">,</span>
<span class="n">r_index_masked</span><span class="p">)</span>
<span class="n">thickness_values</span> <span class="o">=</span> <span class="n">h_values</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s1">&#39;interference_order must be &gt;= 0.&#39;</span><span class="p">)</span>
<span class="c1"># Compute the thickness for the selected order</span>
<span class="c1"># Delta</span>
<span class="k">if</span> <span class="n">interference_order</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span>
<span class="n">num</span> <span class="o">=</span> <span class="n">intensities_masked</span> <span class="o">-</span> <span class="n">np</span><span class="o">.</span><span class="n">min</span><span class="p">(</span><span class="n">intensities_void_masked</span><span class="p">)</span>
<span class="n">denom</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">max</span><span class="p">(</span><span class="n">intensities_masked</span><span class="p">)</span> <span class="o">-</span> <span class="n">np</span><span class="o">.</span><span class="n">min</span><span class="p">(</span><span class="n">intensities_void_masked</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="n">num</span> <span class="o">=</span> <span class="n">intensities_masked</span> <span class="o">-</span> <span class="n">np</span><span class="o">.</span><span class="n">min</span><span class="p">(</span><span class="n">intensities_masked</span><span class="p">)</span>
<span class="n">denom</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">max</span><span class="p">(</span><span class="n">intensities_masked</span><span class="p">)</span> <span class="o">-</span> <span class="n">np</span><span class="o">.</span><span class="n">min</span><span class="p">(</span><span class="n">intensities_masked</span><span class="p">)</span>
<span class="n">Delta_from_data</span> <span class="o">=</span> <span class="n">num</span> <span class="o">/</span> <span class="n">denom</span>
<span class="c1"># Delta_from_data = (intensities_masked -np.min(intensities_masked))/(np.max(intensities_masked) -np.min(intensities_masked))</span>
<span class="c1"># Delta_from_data = (intensities_raw_masked -np.min(intensities_raw_masked))/(np.max(intensities_raw_masked) -np.min(intensities_raw_masked))</span>
<span class="n">DeltaScheludko</span> <span class="o">=</span> <span class="n">_Delta</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span>
<span class="n">np</span><span class="o">.</span><span class="n">mean</span><span class="p">(</span><span class="n">thickness_values</span><span class="p">),</span>
<span class="n">interference_order</span><span class="p">,</span>
<span class="n">r_index_masked</span><span class="p">)</span>
<span class="n">xdata</span> <span class="o">=</span> <span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span> <span class="n">r_index_masked</span><span class="p">)</span>
<span class="n">popt</span><span class="p">,</span> <span class="n">pcov</span> <span class="o">=</span> <span class="n">curve_fit</span><span class="p">(</span><span class="k">lambda</span> <span class="n">x</span><span class="p">,</span> <span class="n">h</span><span class="p">:</span> <span class="n">_Delta_fit</span><span class="p">(</span><span class="n">x</span><span class="p">,</span> <span class="n">h</span><span class="p">,</span> <span class="n">interference_order</span><span class="p">),</span> <span class="n">xdata</span><span class="p">,</span> <span class="n">Delta_from_data</span><span class="p">,</span> <span class="n">p0</span><span class="o">=</span><span class="p">[</span><span class="n">np</span><span class="o">.</span><span class="n">mean</span><span class="p">(</span><span class="n">thickness_values</span><span class="p">)])</span>
<span class="n">fitted_h</span> <span class="o">=</span> <span class="n">popt</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
<span class="n">std_err</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">sqrt</span><span class="p">(</span><span class="n">pcov</span><span class="p">[</span><span class="mi">0</span><span class="p">][</span><span class="mi">0</span><span class="p">])</span>
<span class="k">if</span> <span class="n">plot</span><span class="p">:</span>
<span class="n">Delta_values</span> <span class="o">=</span> <span class="n">_Delta</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span> <span class="n">fitted_h</span><span class="p">,</span> <span class="n">interference_order</span><span class="p">,</span> <span class="n">r_index_masked</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">figure</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span> <span class="n">Delta_from_data</span><span class="p">,</span>
<span class="s1">&#39;bo-&#39;</span><span class="p">,</span> <span class="n">markersize</span><span class="o">=</span><span class="mi">2</span><span class="p">,</span>
<span class="n">label</span><span class="o">=</span><span class="sa">r</span><span class="s1">&#39;$\mathrm{{Smoothed}}\ \mathrm{{Data}}$&#39;</span><span class="p">)</span>
<span class="c1"># Scheludko</span>
<span class="n">label</span> <span class="o">=</span> <span class="sa">rf</span><span class="s1">&#39;$\mathrm</span><span class="se">{{</span><span class="s1">Scheludko</span><span class="se">}}</span><span class="s1">\ (h = </span><span class="si">{</span><span class="n">np</span><span class="o">.</span><span class="n">mean</span><span class="p">(</span><span class="n">thickness_values</span><span class="p">)</span><span class="si">:</span><span class="s1">.1f</span><span class="si">}</span><span class="s1"> \pm </span><span class="si">{</span><span class="n">np</span><span class="o">.</span><span class="n">std</span><span class="p">(</span><span class="n">thickness_values</span><span class="p">)</span><span class="si">:</span><span class="s1">.1f</span><span class="si">}</span><span class="s1">\ \mathrm</span><span class="se">{{</span><span class="s1">nm</span><span class="se">}}</span><span class="s1">)$&#39;</span>
<span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span> <span class="n">DeltaScheludko</span><span class="p">,</span>
<span class="s1">&#39;go-&#39;</span><span class="p">,</span> <span class="n">markersize</span><span class="o">=</span><span class="mi">2</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="n">label</span><span class="p">)</span>
<span class="c1"># Fit</span>
<span class="n">label</span> <span class="o">=</span> <span class="sa">rf</span><span class="s1">&#39;$\mathrm</span><span class="se">{{</span><span class="s1">Fit</span><span class="se">}}</span><span class="s1">\ (h = </span><span class="si">{</span><span class="n">fitted_h</span><span class="si">:</span><span class="s1">.1f</span><span class="si">}</span><span class="s1">\pm </span><span class="si">{</span><span class="n">std_err</span><span class="si">:</span><span class="s1">.1f</span><span class="si">}</span><span class="s1"> \ \mathrm</span><span class="se">{{</span><span class="s1">nm</span><span class="se">}}</span><span class="s1">)$&#39;</span>
<span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">wavelengths_masked</span><span class="p">,</span> <span class="n">Delta_values</span><span class="p">,</span>
<span class="s1">&#39;ro-&#39;</span><span class="p">,</span> <span class="n">markersize</span><span class="o">=</span><span class="mi">2</span><span class="p">,</span>
<span class="n">label</span><span class="o">=</span><span class="n">label</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">ylabel</span><span class="p">(</span><span class="sa">r</span><span class="s1">&#39;$\Delta$&#39;</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">xlabel</span><span class="p">(</span><span class="sa">r</span><span class="s1">&#39;$\lambda$ ($ \mathrm</span><span class="si">{nm}</span><span class="s1"> $)&#39;</span><span class="p">)</span>
<span class="kn">import</span><span class="w"> </span><span class="nn">inspect</span>
<span class="n">plt</span><span class="o">.</span><span class="n">title</span><span class="p">(</span><span class="n">inspect</span><span class="o">.</span><span class="n">currentframe</span><span class="p">()</span><span class="o">.</span><span class="n">f_code</span><span class="o">.</span><span class="n">co_name</span><span class="p">)</span>
<span class="k">return</span> <span class="n">OptimizeResult</span><span class="p">(</span><span class="n">thickness</span><span class="o">=</span><span class="n">fitted_h</span><span class="p">,</span> <span class="n">stderr</span><span class="o">=</span><span class="n">std_err</span><span class="p">)</span></div>
</pre></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="../../index.html">optifik</a></h1>
<search id="searchbox" style="display: none" role="search">
<div class="searchformwrapper">
<form class="search" action="../../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script><h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Documentation</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../installation.html">Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../api_reference.html">API Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../examples.html">Examples</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../index.html">Documentation overview</a><ul>
<li><a href="../index.html">Module code</a><ul>
</ul></li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
&#169;2025, F. Boulogne et al..
|
Powered by <a href="https://www.sphinx-doc.org/">Sphinx 8.2.3</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 1.0.0</a>
</div>
</body>
</html>

663
_static/alabaster.css Normal file
View file

@ -0,0 +1,663 @@
/* -- page layout ----------------------------------------------------------- */
body {
font-family: Georgia, serif;
font-size: 17px;
background-color: #fff;
color: #000;
margin: 0;
padding: 0;
}
div.document {
width: 940px;
margin: 30px auto 0 auto;
}
div.documentwrapper {
float: left;
width: 100%;
}
div.bodywrapper {
margin: 0 0 0 220px;
}
div.sphinxsidebar {
width: 220px;
font-size: 14px;
line-height: 1.5;
}
hr {
border: 1px solid #B1B4B6;
}
div.body {
background-color: #fff;
color: #3E4349;
padding: 0 30px 0 30px;
}
div.body > .section {
text-align: left;
}
div.footer {
width: 940px;
margin: 20px auto 30px auto;
font-size: 14px;
color: #888;
text-align: right;
}
div.footer a {
color: #888;
}
p.caption {
font-family: inherit;
font-size: inherit;
}
div.relations {
display: none;
}
div.sphinxsidebar {
max-height: 100%;
overflow-y: auto;
}
div.sphinxsidebar a {
color: #444;
text-decoration: none;
border-bottom: 1px dotted #999;
}
div.sphinxsidebar a:hover {
border-bottom: 1px solid #999;
}
div.sphinxsidebarwrapper {
padding: 18px 10px;
}
div.sphinxsidebarwrapper p.logo {
padding: 0;
margin: -10px 0 0 0px;
text-align: center;
}
div.sphinxsidebarwrapper h1.logo {
margin-top: -10px;
text-align: center;
margin-bottom: 5px;
text-align: left;
}
div.sphinxsidebarwrapper h1.logo-name {
margin-top: 0px;
}
div.sphinxsidebarwrapper p.blurb {
margin-top: 0;
font-style: normal;
}
div.sphinxsidebar h3,
div.sphinxsidebar h4 {
font-family: Georgia, serif;
color: #444;
font-size: 24px;
font-weight: normal;
margin: 0 0 5px 0;
padding: 0;
}
div.sphinxsidebar h4 {
font-size: 20px;
}
div.sphinxsidebar h3 a {
color: #444;
}
div.sphinxsidebar p.logo a,
div.sphinxsidebar h3 a,
div.sphinxsidebar p.logo a:hover,
div.sphinxsidebar h3 a:hover {
border: none;
}
div.sphinxsidebar p {
color: #555;
margin: 10px 0;
}
div.sphinxsidebar ul {
margin: 10px 0;
padding: 0;
color: #000;
}
div.sphinxsidebar ul li.toctree-l1 > a {
font-size: 120%;
}
div.sphinxsidebar ul li.toctree-l2 > a {
font-size: 110%;
}
div.sphinxsidebar input {
border: 1px solid #CCC;
font-family: Georgia, serif;
font-size: 1em;
}
div.sphinxsidebar #searchbox {
margin: 1em 0;
}
div.sphinxsidebar .search > div {
display: table-cell;
}
div.sphinxsidebar hr {
border: none;
height: 1px;
color: #AAA;
background: #AAA;
text-align: left;
margin-left: 0;
width: 50%;
}
div.sphinxsidebar .badge {
border-bottom: none;
}
div.sphinxsidebar .badge:hover {
border-bottom: none;
}
/* To address an issue with donation coming after search */
div.sphinxsidebar h3.donation {
margin-top: 10px;
}
/* -- body styles ----------------------------------------------------------- */
a {
color: #004B6B;
text-decoration: underline;
}
a:hover {
color: #6D4100;
text-decoration: underline;
}
div.body h1,
div.body h2,
div.body h3,
div.body h4,
div.body h5,
div.body h6 {
font-family: Georgia, serif;
font-weight: normal;
margin: 30px 0px 10px 0px;
padding: 0;
}
div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; }
div.body h2 { font-size: 180%; }
div.body h3 { font-size: 150%; }
div.body h4 { font-size: 130%; }
div.body h5 { font-size: 100%; }
div.body h6 { font-size: 100%; }
a.headerlink {
color: #DDD;
padding: 0 4px;
text-decoration: none;
}
a.headerlink:hover {
color: #444;
background: #EAEAEA;
}
div.body p, div.body dd, div.body li {
line-height: 1.4em;
}
div.admonition {
margin: 20px 0px;
padding: 10px 30px;
background-color: #EEE;
border: 1px solid #CCC;
}
div.admonition tt.xref, div.admonition code.xref, div.admonition a tt {
background-color: #FBFBFB;
border-bottom: 1px solid #fafafa;
}
div.admonition p.admonition-title {
font-family: Georgia, serif;
font-weight: normal;
font-size: 24px;
margin: 0 0 10px 0;
padding: 0;
line-height: 1;
}
div.admonition p.last {
margin-bottom: 0;
}
dt:target, .highlight {
background: #FAF3E8;
}
div.warning {
background-color: #FCC;
border: 1px solid #FAA;
}
div.danger {
background-color: #FCC;
border: 1px solid #FAA;
-moz-box-shadow: 2px 2px 4px #D52C2C;
-webkit-box-shadow: 2px 2px 4px #D52C2C;
box-shadow: 2px 2px 4px #D52C2C;
}
div.error {
background-color: #FCC;
border: 1px solid #FAA;
-moz-box-shadow: 2px 2px 4px #D52C2C;
-webkit-box-shadow: 2px 2px 4px #D52C2C;
box-shadow: 2px 2px 4px #D52C2C;
}
div.caution {
background-color: #FCC;
border: 1px solid #FAA;
}
div.attention {
background-color: #FCC;
border: 1px solid #FAA;
}
div.important {
background-color: #EEE;
border: 1px solid #CCC;
}
div.note {
background-color: #EEE;
border: 1px solid #CCC;
}
div.tip {
background-color: #EEE;
border: 1px solid #CCC;
}
div.hint {
background-color: #EEE;
border: 1px solid #CCC;
}
div.seealso {
background-color: #EEE;
border: 1px solid #CCC;
}
div.topic {
background-color: #EEE;
}
p.admonition-title {
display: inline;
}
p.admonition-title:after {
content: ":";
}
pre, tt, code {
font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
font-size: 0.9em;
}
.hll {
background-color: #FFC;
margin: 0 -12px;
padding: 0 12px;
display: block;
}
img.screenshot {
}
tt.descname, tt.descclassname, code.descname, code.descclassname {
font-size: 0.95em;
}
tt.descname, code.descname {
padding-right: 0.08em;
}
img.screenshot {
-moz-box-shadow: 2px 2px 4px #EEE;
-webkit-box-shadow: 2px 2px 4px #EEE;
box-shadow: 2px 2px 4px #EEE;
}
table.docutils {
border: 1px solid #888;
-moz-box-shadow: 2px 2px 4px #EEE;
-webkit-box-shadow: 2px 2px 4px #EEE;
box-shadow: 2px 2px 4px #EEE;
}
table.docutils td, table.docutils th {
border: 1px solid #888;
padding: 0.25em 0.7em;
}
table.field-list, table.footnote {
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
table.footnote {
margin: 15px 0;
width: 100%;
border: 1px solid #EEE;
background: #FDFDFD;
font-size: 0.9em;
}
table.footnote + table.footnote {
margin-top: -15px;
border-top: none;
}
table.field-list th {
padding: 0 0.8em 0 0;
}
table.field-list td {
padding: 0;
}
table.field-list p {
margin-bottom: 0.8em;
}
/* Cloned from
* https://github.com/sphinx-doc/sphinx/commit/ef60dbfce09286b20b7385333d63a60321784e68
*/
.field-name {
-moz-hyphens: manual;
-ms-hyphens: manual;
-webkit-hyphens: manual;
hyphens: manual;
}
table.footnote td.label {
width: .1px;
padding: 0.3em 0 0.3em 0.5em;
}
table.footnote td {
padding: 0.3em 0.5em;
}
dl {
margin-left: 0;
margin-right: 0;
margin-top: 0;
padding: 0;
}
dl dd {
margin-left: 30px;
}
blockquote {
margin: 0 0 0 30px;
padding: 0;
}
ul, ol {
/* Matches the 30px from the narrow-screen "li > ul" selector below */
margin: 10px 0 10px 30px;
padding: 0;
}
pre {
background: unset;
padding: 7px 30px;
margin: 15px 0px;
line-height: 1.3em;
}
div.viewcode-block:target {
background: #ffd;
}
dl pre, blockquote pre, li pre {
margin-left: 0;
padding-left: 30px;
}
tt, code {
background-color: #ecf0f3;
color: #222;
/* padding: 1px 2px; */
}
tt.xref, code.xref, a tt {
background-color: #FBFBFB;
border-bottom: 1px solid #fff;
}
a.reference {
text-decoration: none;
border-bottom: 1px dotted #004B6B;
}
a.reference:hover {
border-bottom: 1px solid #6D4100;
}
/* Don't put an underline on images */
a.image-reference, a.image-reference:hover {
border-bottom: none;
}
a.footnote-reference {
text-decoration: none;
font-size: 0.7em;
vertical-align: top;
border-bottom: 1px dotted #004B6B;
}
a.footnote-reference:hover {
border-bottom: 1px solid #6D4100;
}
a:hover tt, a:hover code {
background: #EEE;
}
@media screen and (max-width: 940px) {
body {
margin: 0;
padding: 20px 30px;
}
div.documentwrapper {
float: none;
background: #fff;
margin-left: 0;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
}
div.sphinxsidebar {
display: block;
float: none;
width: unset;
margin: 50px -30px -20px -30px;
padding: 10px 20px;
background: #333;
color: #FFF;
}
div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p,
div.sphinxsidebar h3 a {
color: #fff;
}
div.sphinxsidebar a {
color: #AAA;
}
div.sphinxsidebar p.logo {
display: none;
}
div.document {
width: 100%;
margin: 0;
}
div.footer {
display: none;
}
div.bodywrapper {
margin: 0;
}
div.body {
min-height: 0;
min-width: auto; /* fixes width on small screens, breaks .hll */
padding: 0;
}
.hll {
/* "fixes" the breakage */
width: max-content;
}
.rtd_doc_footer {
display: none;
}
.document {
width: auto;
}
.footer {
width: auto;
}
.github {
display: none;
}
ul {
margin-left: 0;
}
li > ul {
/* Matches the 30px from the "ul, ol" selector above */
margin-left: 30px;
}
}
/* misc. */
.revsys-inline {
display: none!important;
}
/* Hide ugly table cell borders in ..bibliography:: directive output */
table.docutils.citation, table.docutils.citation td, table.docutils.citation th {
border: none;
/* Below needed in some edge cases; if not applied, bottom shadows appear */
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
/* relbar */
.related {
line-height: 30px;
width: 100%;
font-size: 0.9rem;
}
.related.top {
border-bottom: 1px solid #EEE;
margin-bottom: 20px;
}
.related.bottom {
border-top: 1px solid #EEE;
}
.related ul {
padding: 0;
margin: 0;
list-style: none;
}
.related li {
display: inline;
}
nav#rellinks {
float: right;
}
nav#rellinks li+li:before {
content: "|";
}
nav#breadcrumbs li+li:before {
content: "\00BB";
}
/* Hide certain items when printing */
@media print {
div.related {
display: none;
}
}
img.github {
position: absolute;
top: 0;
border: 0;
right: 0;
}

906
_static/basic.css Normal file
View file

@ -0,0 +1,906 @@
/*
* Sphinx stylesheet -- basic theme.
*/
/* -- main layout ----------------------------------------------------------- */
div.clearer {
clear: both;
}
div.section::after {
display: block;
content: '';
clear: left;
}
/* -- relbar ---------------------------------------------------------------- */
div.related {
width: 100%;
font-size: 90%;
}
div.related h3 {
display: none;
}
div.related ul {
margin: 0;
padding: 0 0 0 10px;
list-style: none;
}
div.related li {
display: inline;
}
div.related li.right {
float: right;
margin-right: 5px;
}
/* -- sidebar --------------------------------------------------------------- */
div.sphinxsidebarwrapper {
padding: 10px 5px 0 10px;
}
div.sphinxsidebar {
float: left;
width: 230px;
margin-left: -100%;
font-size: 90%;
word-wrap: break-word;
overflow-wrap : break-word;
}
div.sphinxsidebar ul {
list-style: none;
}
div.sphinxsidebar ul ul,
div.sphinxsidebar ul.want-points {
margin-left: 20px;
list-style: square;
}
div.sphinxsidebar ul ul {
margin-top: 0;
margin-bottom: 0;
}
div.sphinxsidebar form {
margin-top: 10px;
}
div.sphinxsidebar input {
border: 1px solid #98dbcc;
font-family: sans-serif;
font-size: 1em;
}
div.sphinxsidebar #searchbox form.search {
overflow: hidden;
}
div.sphinxsidebar #searchbox input[type="text"] {
float: left;
width: 80%;
padding: 0.25em;
box-sizing: border-box;
}
div.sphinxsidebar #searchbox input[type="submit"] {
float: left;
width: 20%;
border-left: none;
padding: 0.25em;
box-sizing: border-box;
}
img {
border: 0;
max-width: 100%;
}
/* -- search page ----------------------------------------------------------- */
ul.search {
margin-top: 10px;
}
ul.search li {
padding: 5px 0;
}
ul.search li a {
font-weight: bold;
}
ul.search li p.context {
color: #888;
margin: 2px 0 0 30px;
text-align: left;
}
ul.keywordmatches li.goodmatch a {
font-weight: bold;
}
/* -- index page ------------------------------------------------------------ */
table.contentstable {
width: 90%;
margin-left: auto;
margin-right: auto;
}
table.contentstable p.biglink {
line-height: 150%;
}
a.biglink {
font-size: 1.3em;
}
span.linkdescr {
font-style: italic;
padding-top: 5px;
font-size: 90%;
}
/* -- general index --------------------------------------------------------- */
table.indextable {
width: 100%;
}
table.indextable td {
text-align: left;
vertical-align: top;
}
table.indextable ul {
margin-top: 0;
margin-bottom: 0;
list-style-type: none;
}
table.indextable > tbody > tr > td > ul {
padding-left: 0em;
}
table.indextable tr.pcap {
height: 10px;
}
table.indextable tr.cap {
margin-top: 10px;
background-color: #f2f2f2;
}
img.toggler {
margin-right: 3px;
margin-top: 3px;
cursor: pointer;
}
div.modindex-jumpbox {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
margin: 1em 0 1em 0;
padding: 0.4em;
}
div.genindex-jumpbox {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
margin: 1em 0 1em 0;
padding: 0.4em;
}
/* -- domain module index --------------------------------------------------- */
table.modindextable td {
padding: 2px;
border-collapse: collapse;
}
/* -- general body styles --------------------------------------------------- */
div.body {
min-width: inherit;
max-width: 800px;
}
div.body p, div.body dd, div.body li, div.body blockquote {
-moz-hyphens: auto;
-ms-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
a.headerlink {
visibility: hidden;
}
a:visited {
color: #551A8B;
}
h1:hover > a.headerlink,
h2:hover > a.headerlink,
h3:hover > a.headerlink,
h4:hover > a.headerlink,
h5:hover > a.headerlink,
h6:hover > a.headerlink,
dt:hover > a.headerlink,
caption:hover > a.headerlink,
p.caption:hover > a.headerlink,
div.code-block-caption:hover > a.headerlink {
visibility: visible;
}
div.body p.caption {
text-align: inherit;
}
div.body td {
text-align: left;
}
.first {
margin-top: 0 !important;
}
p.rubric {
margin-top: 30px;
font-weight: bold;
}
img.align-left, figure.align-left, .figure.align-left, object.align-left {
clear: left;
float: left;
margin-right: 1em;
}
img.align-right, figure.align-right, .figure.align-right, object.align-right {
clear: right;
float: right;
margin-left: 1em;
}
img.align-center, figure.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
img.align-default, figure.align-default, .figure.align-default {
display: block;
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left;
}
.align-center {
text-align: center;
}
.align-default {
text-align: center;
}
.align-right {
text-align: right;
}
/* -- sidebars -------------------------------------------------------------- */
div.sidebar,
aside.sidebar {
margin: 0 0 0.5em 1em;
border: 1px solid #ddb;
padding: 7px;
background-color: #ffe;
width: 40%;
float: right;
clear: right;
overflow-x: auto;
}
p.sidebar-title {
font-weight: bold;
}
nav.contents,
aside.topic,
div.admonition, div.topic, blockquote {
clear: left;
}
/* -- topics ---------------------------------------------------------------- */
nav.contents,
aside.topic,
div.topic {
border: 1px solid #ccc;
padding: 7px;
margin: 10px 0 10px 0;
}
p.topic-title {
font-size: 1.1em;
font-weight: bold;
margin-top: 10px;
}
/* -- admonitions ----------------------------------------------------------- */
div.admonition {
margin-top: 10px;
margin-bottom: 10px;
padding: 7px;
}
div.admonition dt {
font-weight: bold;
}
p.admonition-title {
margin: 0px 10px 5px 0px;
font-weight: bold;
}
div.body p.centered {
text-align: center;
margin-top: 25px;
}
/* -- content of sidebars/topics/admonitions -------------------------------- */
div.sidebar > :last-child,
aside.sidebar > :last-child,
nav.contents > :last-child,
aside.topic > :last-child,
div.topic > :last-child,
div.admonition > :last-child {
margin-bottom: 0;
}
div.sidebar::after,
aside.sidebar::after,
nav.contents::after,
aside.topic::after,
div.topic::after,
div.admonition::after,
blockquote::after {
display: block;
content: '';
clear: both;
}
/* -- tables ---------------------------------------------------------------- */
table.docutils {
margin-top: 10px;
margin-bottom: 10px;
border: 0;
border-collapse: collapse;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
table.align-default {
margin-left: auto;
margin-right: auto;
}
table caption span.caption-number {
font-style: italic;
}
table caption span.caption-text {
}
table.docutils td, table.docutils th {
padding: 1px 8px 1px 5px;
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: 1px solid #aaa;
}
th {
text-align: left;
padding-right: 5px;
}
table.citation {
border-left: solid 1px gray;
margin-left: 1px;
}
table.citation td {
border-bottom: none;
}
th > :first-child,
td > :first-child {
margin-top: 0px;
}
th > :last-child,
td > :last-child {
margin-bottom: 0px;
}
/* -- figures --------------------------------------------------------------- */
div.figure, figure {
margin: 0.5em;
padding: 0.5em;
}
div.figure p.caption, figcaption {
padding: 0.3em;
}
div.figure p.caption span.caption-number,
figcaption span.caption-number {
font-style: italic;
}
div.figure p.caption span.caption-text,
figcaption span.caption-text {
}
/* -- field list styles ----------------------------------------------------- */
table.field-list td, table.field-list th {
border: 0 !important;
}
.field-list ul {
margin: 0;
padding-left: 1em;
}
.field-list p {
margin: 0;
}
.field-name {
-moz-hyphens: manual;
-ms-hyphens: manual;
-webkit-hyphens: manual;
hyphens: manual;
}
/* -- hlist styles ---------------------------------------------------------- */
table.hlist {
margin: 1em 0;
}
table.hlist td {
vertical-align: top;
}
/* -- object description styles --------------------------------------------- */
.sig {
font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
}
.sig-name, code.descname {
background-color: transparent;
font-weight: bold;
}
.sig-name {
font-size: 1.1em;
}
code.descname {
font-size: 1.2em;
}
.sig-prename, code.descclassname {
background-color: transparent;
}
.optional {
font-size: 1.3em;
}
.sig-paren {
font-size: larger;
}
.sig-param.n {
font-style: italic;
}
/* C++ specific styling */
.sig-inline.c-texpr,
.sig-inline.cpp-texpr {
font-family: unset;
}
.sig.c .k, .sig.c .kt,
.sig.cpp .k, .sig.cpp .kt {
color: #0033B3;
}
.sig.c .m,
.sig.cpp .m {
color: #1750EB;
}
.sig.c .s, .sig.c .sc,
.sig.cpp .s, .sig.cpp .sc {
color: #067D17;
}
/* -- other body styles ----------------------------------------------------- */
ol.arabic {
list-style: decimal;
}
ol.loweralpha {
list-style: lower-alpha;
}
ol.upperalpha {
list-style: upper-alpha;
}
ol.lowerroman {
list-style: lower-roman;
}
ol.upperroman {
list-style: upper-roman;
}
:not(li) > ol > li:first-child > :first-child,
:not(li) > ul > li:first-child > :first-child {
margin-top: 0px;
}
:not(li) > ol > li:last-child > :last-child,
:not(li) > ul > li:last-child > :last-child {
margin-bottom: 0px;
}
ol.simple ol p,
ol.simple ul p,
ul.simple ol p,
ul.simple ul p {
margin-top: 0;
}
ol.simple > li:not(:first-child) > p,
ul.simple > li:not(:first-child) > p {
margin-top: 0;
}
ol.simple p,
ul.simple p {
margin-bottom: 0;
}
aside.footnote > span,
div.citation > span {
float: left;
}
aside.footnote > span:last-of-type,
div.citation > span:last-of-type {
padding-right: 0.5em;
}
aside.footnote > p {
margin-left: 2em;
}
div.citation > p {
margin-left: 4em;
}
aside.footnote > p:last-of-type,
div.citation > p:last-of-type {
margin-bottom: 0em;
}
aside.footnote > p:last-of-type:after,
div.citation > p:last-of-type:after {
content: "";
clear: both;
}
dl.field-list {
display: grid;
grid-template-columns: fit-content(30%) auto;
}
dl.field-list > dt {
font-weight: bold;
word-break: break-word;
padding-left: 0.5em;
padding-right: 5px;
}
dl.field-list > dd {
padding-left: 0.5em;
margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
}
dl {
margin-bottom: 15px;
}
dd > :first-child {
margin-top: 0px;
}
dd ul, dd table {
margin-bottom: 10px;
}
dd {
margin-top: 3px;
margin-bottom: 10px;
margin-left: 30px;
}
.sig dd {
margin-top: 0px;
margin-bottom: 0px;
}
.sig dl {
margin-top: 0px;
margin-bottom: 0px;
}
dl > dd:last-child,
dl > dd:last-child > :last-child {
margin-bottom: 0;
}
dt:target, span.highlighted {
background-color: #fbe54e;
}
rect.highlighted {
fill: #fbe54e;
}
dl.glossary dt {
font-weight: bold;
font-size: 1.1em;
}
.versionmodified {
font-style: italic;
}
.system-message {
background-color: #fda;
padding: 5px;
border: 3px solid red;
}
.footnote:target {
background-color: #ffa;
}
.line-block {
display: block;
margin-top: 1em;
margin-bottom: 1em;
}
.line-block .line-block {
margin-top: 0;
margin-bottom: 0;
margin-left: 1.5em;
}
.guilabel, .menuselection {
font-family: sans-serif;
}
.accelerator {
text-decoration: underline;
}
.classifier {
font-style: oblique;
}
.classifier:before {
font-style: normal;
margin: 0 0.5em;
content: ":";
display: inline-block;
}
abbr, acronym {
border-bottom: dotted 1px;
cursor: help;
}
/* -- code displays --------------------------------------------------------- */
pre {
overflow: auto;
overflow-y: hidden; /* fixes display issues on Chrome browsers */
}
pre, div[class*="highlight-"] {
clear: both;
}
span.pre {
-moz-hyphens: none;
-ms-hyphens: none;
-webkit-hyphens: none;
hyphens: none;
white-space: nowrap;
}
div[class*="highlight-"] {
margin: 1em 0;
}
td.linenos pre {
border: 0;
background-color: transparent;
color: #aaa;
}
table.highlighttable {
display: block;
}
table.highlighttable tbody {
display: block;
}
table.highlighttable tr {
display: flex;
}
table.highlighttable td {
margin: 0;
padding: 0;
}
table.highlighttable td.linenos {
padding-right: 0.5em;
}
table.highlighttable td.code {
flex: 1;
overflow: hidden;
}
.highlight .hll {
display: block;
}
div.highlight pre,
table.highlighttable pre {
margin: 0;
}
div.code-block-caption + div {
margin-top: 0;
}
div.code-block-caption {
margin-top: 1em;
padding: 2px 5px;
font-size: small;
}
div.code-block-caption code {
background-color: transparent;
}
table.highlighttable td.linenos,
span.linenos,
div.highlight span.gp { /* gp: Generic.Prompt */
user-select: none;
-webkit-user-select: text; /* Safari fallback only */
-webkit-user-select: none; /* Chrome/Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+ */
}
div.code-block-caption span.caption-number {
padding: 0.1em 0.3em;
font-style: italic;
}
div.code-block-caption span.caption-text {
}
div.literal-block-wrapper {
margin: 1em 0;
}
code.xref, a code {
background-color: transparent;
font-weight: bold;
}
h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
background-color: transparent;
}
.viewcode-link {
float: right;
}
.viewcode-back {
float: right;
font-family: sans-serif;
}
div.viewcode-block:target {
margin: -1px -10px;
padding: 0 10px;
}
/* -- math display ---------------------------------------------------------- */
img.math {
vertical-align: middle;
}
div.body div.math p {
text-align: center;
}
span.eqno {
float: right;
}
span.eqno a.headerlink {
position: absolute;
z-index: 1;
}
div.math:hover a.headerlink {
visibility: visible;
}
/* -- printout stylesheet --------------------------------------------------- */
@media print {
div.document,
div.documentwrapper,
div.bodywrapper {
margin: 0 !important;
width: 100%;
}
div.sphinxsidebar,
div.related,
div.footer,
#top-link {
display: none;
}
}

1
_static/custom.css Normal file
View file

@ -0,0 +1 @@
/* This file intentionally left blank. */

149
_static/doctools.js Normal file
View file

@ -0,0 +1,149 @@
/*
* Base JavaScript utilities for all Sphinx HTML documentation.
*/
"use strict";
const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([
"TEXTAREA",
"INPUT",
"SELECT",
"BUTTON",
]);
const _ready = (callback) => {
if (document.readyState !== "loading") {
callback();
} else {
document.addEventListener("DOMContentLoaded", callback);
}
};
/**
* Small JavaScript module for the documentation.
*/
const Documentation = {
init: () => {
Documentation.initDomainIndexTable();
Documentation.initOnKeyListeners();
},
/**
* i18n support
*/
TRANSLATIONS: {},
PLURAL_EXPR: (n) => (n === 1 ? 0 : 1),
LOCALE: "unknown",
// gettext and ngettext don't access this so that the functions
// can safely bound to a different name (_ = Documentation.gettext)
gettext: (string) => {
const translated = Documentation.TRANSLATIONS[string];
switch (typeof translated) {
case "undefined":
return string; // no translation
case "string":
return translated; // translation exists
default:
return translated[0]; // (singular, plural) translation tuple exists
}
},
ngettext: (singular, plural, n) => {
const translated = Documentation.TRANSLATIONS[singular];
if (typeof translated !== "undefined")
return translated[Documentation.PLURAL_EXPR(n)];
return n === 1 ? singular : plural;
},
addTranslations: (catalog) => {
Object.assign(Documentation.TRANSLATIONS, catalog.messages);
Documentation.PLURAL_EXPR = new Function(
"n",
`return (${catalog.plural_expr})`
);
Documentation.LOCALE = catalog.locale;
},
/**
* helper function to focus on search bar
*/
focusSearchBar: () => {
document.querySelectorAll("input[name=q]")[0]?.focus();
},
/**
* Initialise the domain index toggle buttons
*/
initDomainIndexTable: () => {
const toggler = (el) => {
const idNumber = el.id.substr(7);
const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`);
if (el.src.substr(-9) === "minus.png") {
el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`;
toggledRows.forEach((el) => (el.style.display = "none"));
} else {
el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`;
toggledRows.forEach((el) => (el.style.display = ""));
}
};
const togglerElements = document.querySelectorAll("img.toggler");
togglerElements.forEach((el) =>
el.addEventListener("click", (event) => toggler(event.currentTarget))
);
togglerElements.forEach((el) => (el.style.display = ""));
if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler);
},
initOnKeyListeners: () => {
// only install a listener if it is really needed
if (
!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS &&
!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS
)
return;
document.addEventListener("keydown", (event) => {
// bail for input elements
if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
// bail with special keys
if (event.altKey || event.ctrlKey || event.metaKey) return;
if (!event.shiftKey) {
switch (event.key) {
case "ArrowLeft":
if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
const prevLink = document.querySelector('link[rel="prev"]');
if (prevLink && prevLink.href) {
window.location.href = prevLink.href;
event.preventDefault();
}
break;
case "ArrowRight":
if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break;
const nextLink = document.querySelector('link[rel="next"]');
if (nextLink && nextLink.href) {
window.location.href = nextLink.href;
event.preventDefault();
}
break;
}
}
// some keyboard layouts may need Shift to get /
switch (event.key) {
case "/":
if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break;
Documentation.focusSearchBar();
event.preventDefault();
}
});
},
};
// quick alias for translations
const _ = Documentation.gettext;
_ready(Documentation.init);

View file

@ -0,0 +1,13 @@
const DOCUMENTATION_OPTIONS = {
VERSION: '',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
FILE_SUFFIX: '.html',
LINK_SUFFIX: '.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt',
NAVIGATION_WITH_KEYS: false,
SHOW_SEARCH_SUMMARY: true,
ENABLE_SEARCH_SHORTCUTS: true,
};

BIN
_static/file.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

View file

@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 250 250" fill="#fff">
<path d="M0 0l115 115h15l12 27 108 108V0z" fill="#151513"/>
<path d="M128 109c-15-9-9-19-9-19 3-7 2-11 2-11-1-7 3-2 3-2 4 5 2 11 2 11-3 10 5 15 9 16"/>
<path d="M115 115s4 2 5 0l14-14c3-2 6-3 8-3-8-11-15-24 2-41 5-5 10-7 16-7 1-2 3-7 12-11 0 0 5 3 7 16 4 2 8 5 12 9s7 8 9 12c14 3 17 7 17 7-4 8-9 11-11 11 0 6-2 11-7 16-16 16-30 10-41 2 0 3-1 7-5 11l-12 11c-1 1 1 5 1 5z"/>
</svg>

After

Width:  |  Height:  |  Size: 490 B

192
_static/language_data.js Normal file
View file

@ -0,0 +1,192 @@
/*
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
*/
var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
/* Non-minified version is copied as a separate JS file, if available */
/**
* Porter Stemmer
*/
var Stemmer = function() {
var step2list = {
ational: 'ate',
tional: 'tion',
enci: 'ence',
anci: 'ance',
izer: 'ize',
bli: 'ble',
alli: 'al',
entli: 'ent',
eli: 'e',
ousli: 'ous',
ization: 'ize',
ation: 'ate',
ator: 'ate',
alism: 'al',
iveness: 'ive',
fulness: 'ful',
ousness: 'ous',
aliti: 'al',
iviti: 'ive',
biliti: 'ble',
logi: 'log'
};
var step3list = {
icate: 'ic',
ative: '',
alize: 'al',
iciti: 'ic',
ical: 'ic',
ful: '',
ness: ''
};
var c = "[^aeiou]"; // consonant
var v = "[aeiouy]"; // vowel
var C = c + "[^aeiouy]*"; // consonant sequence
var V = v + "[aeiou]*"; // vowel sequence
var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0
var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1
var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1
var s_v = "^(" + C + ")?" + v; // vowel in stem
this.stemWord = function (w) {
var stem;
var suffix;
var firstch;
var origword = w;
if (w.length < 3)
return w;
var re;
var re2;
var re3;
var re4;
firstch = w.substr(0,1);
if (firstch == "y")
w = firstch.toUpperCase() + w.substr(1);
// Step 1a
re = /^(.+?)(ss|i)es$/;
re2 = /^(.+?)([^s])s$/;
if (re.test(w))
w = w.replace(re,"$1$2");
else if (re2.test(w))
w = w.replace(re2,"$1$2");
// Step 1b
re = /^(.+?)eed$/;
re2 = /^(.+?)(ed|ing)$/;
if (re.test(w)) {
var fp = re.exec(w);
re = new RegExp(mgr0);
if (re.test(fp[1])) {
re = /.$/;
w = w.replace(re,"");
}
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1];
re2 = new RegExp(s_v);
if (re2.test(stem)) {
w = stem;
re2 = /(at|bl|iz)$/;
re3 = new RegExp("([^aeiouylsz])\\1$");
re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re2.test(w))
w = w + "e";
else if (re3.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
else if (re4.test(w))
w = w + "e";
}
}
// Step 1c
re = /^(.+?)y$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(s_v);
if (re.test(stem))
w = stem + "i";
}
// Step 2
re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step2list[suffix];
}
// Step 3
re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = new RegExp(mgr0);
if (re.test(stem))
w = stem + step3list[suffix];
}
// Step 4
re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
re2 = /^(.+?)(s|t)(ion)$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
if (re.test(stem))
w = stem;
}
else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1] + fp[2];
re2 = new RegExp(mgr1);
if (re2.test(stem))
w = stem;
}
// Step 5
re = /^(.+?)e$/;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = new RegExp(mgr1);
re2 = new RegExp(meq1);
re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
w = stem;
}
re = /ll$/;
re2 = new RegExp(mgr1);
if (re.test(w) && re2.test(w)) {
re = /.$/;
w = w.replace(re,"");
}
// and turn initial Y back to y
if (firstch == "y")
w = firstch.toLowerCase() + w.substr(1);
return w;
}
}

BIN
_static/minus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 B

BIN
_static/plus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 B

84
_static/pygments.css Normal file
View file

@ -0,0 +1,84 @@
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #8F5902; font-style: italic } /* Comment */
.highlight .err { color: #A40000; border: 1px solid #EF2929 } /* Error */
.highlight .g { color: #000 } /* Generic */
.highlight .k { color: #004461; font-weight: bold } /* Keyword */
.highlight .l { color: #000 } /* Literal */
.highlight .n { color: #000 } /* Name */
.highlight .o { color: #582800 } /* Operator */
.highlight .x { color: #000 } /* Other */
.highlight .p { color: #000; font-weight: bold } /* Punctuation */
.highlight .ch { color: #8F5902; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #8F5902; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #8F5902 } /* Comment.Preproc */
.highlight .cpf { color: #8F5902; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #8F5902; font-style: italic } /* Comment.Single */
.highlight .cs { color: #8F5902; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A40000 } /* Generic.Deleted */
.highlight .ge { color: #000; font-style: italic } /* Generic.Emph */
.highlight .ges { color: #000 } /* Generic.EmphStrong */
.highlight .gr { color: #EF2929 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .go { color: #888 } /* Generic.Output */
.highlight .gp { color: #745334 } /* Generic.Prompt */
.highlight .gs { color: #000; font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #A40000; font-weight: bold } /* Generic.Traceback */
.highlight .kc { color: #004461; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #004461; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #004461; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #004461; font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { color: #004461; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #004461; font-weight: bold } /* Keyword.Type */
.highlight .ld { color: #000 } /* Literal.Date */
.highlight .m { color: #900 } /* Literal.Number */
.highlight .s { color: #4E9A06 } /* Literal.String */
.highlight .na { color: #C4A000 } /* Name.Attribute */
.highlight .nb { color: #004461 } /* Name.Builtin */
.highlight .nc { color: #000 } /* Name.Class */
.highlight .no { color: #000 } /* Name.Constant */
.highlight .nd { color: #888 } /* Name.Decorator */
.highlight .ni { color: #CE5C00 } /* Name.Entity */
.highlight .ne { color: #C00; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #000 } /* Name.Function */
.highlight .nl { color: #F57900 } /* Name.Label */
.highlight .nn { color: #000 } /* Name.Namespace */
.highlight .nx { color: #000 } /* Name.Other */
.highlight .py { color: #000 } /* Name.Property */
.highlight .nt { color: #004461; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #000 } /* Name.Variable */
.highlight .ow { color: #004461; font-weight: bold } /* Operator.Word */
.highlight .pm { color: #000; font-weight: bold } /* Punctuation.Marker */
.highlight .w { color: #F8F8F8 } /* Text.Whitespace */
.highlight .mb { color: #900 } /* Literal.Number.Bin */
.highlight .mf { color: #900 } /* Literal.Number.Float */
.highlight .mh { color: #900 } /* Literal.Number.Hex */
.highlight .mi { color: #900 } /* Literal.Number.Integer */
.highlight .mo { color: #900 } /* Literal.Number.Oct */
.highlight .sa { color: #4E9A06 } /* Literal.String.Affix */
.highlight .sb { color: #4E9A06 } /* Literal.String.Backtick */
.highlight .sc { color: #4E9A06 } /* Literal.String.Char */
.highlight .dl { color: #4E9A06 } /* Literal.String.Delimiter */
.highlight .sd { color: #8F5902; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #4E9A06 } /* Literal.String.Double */
.highlight .se { color: #4E9A06 } /* Literal.String.Escape */
.highlight .sh { color: #4E9A06 } /* Literal.String.Heredoc */
.highlight .si { color: #4E9A06 } /* Literal.String.Interpol */
.highlight .sx { color: #4E9A06 } /* Literal.String.Other */
.highlight .sr { color: #4E9A06 } /* Literal.String.Regex */
.highlight .s1 { color: #4E9A06 } /* Literal.String.Single */
.highlight .ss { color: #4E9A06 } /* Literal.String.Symbol */
.highlight .bp { color: #3465A4 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #000 } /* Name.Function.Magic */
.highlight .vc { color: #000 } /* Name.Variable.Class */
.highlight .vg { color: #000 } /* Name.Variable.Global */
.highlight .vi { color: #000 } /* Name.Variable.Instance */
.highlight .vm { color: #000 } /* Name.Variable.Magic */
.highlight .il { color: #900 } /* Literal.Number.Integer.Long */

635
_static/searchtools.js Normal file
View file

@ -0,0 +1,635 @@
/*
* Sphinx JavaScript utilities for the full-text search.
*/
"use strict";
/**
* Simple result scoring code.
*/
if (typeof Scorer === "undefined") {
var Scorer = {
// Implement the following function to further tweak the score for each result
// The function takes a result array [docname, title, anchor, descr, score, filename]
// and returns the new score.
/*
score: result => {
const [docname, title, anchor, descr, score, filename, kind] = result
return score
},
*/
// query matches the full name of an object
objNameMatch: 11,
// or matches in the last dotted part of the object name
objPartialMatch: 6,
// Additive scores depending on the priority of the object
objPrio: {
0: 15, // used to be importantResults
1: 5, // used to be objectResults
2: -5, // used to be unimportantResults
},
// Used when the priority is not in the mapping.
objPrioDefault: 0,
// query found in title
title: 15,
partialTitle: 7,
// query found in terms
term: 5,
partialTerm: 2,
};
}
// Global search result kind enum, used by themes to style search results.
class SearchResultKind {
static get index() { return "index"; }
static get object() { return "object"; }
static get text() { return "text"; }
static get title() { return "title"; }
}
const _removeChildren = (element) => {
while (element && element.lastChild) element.removeChild(element.lastChild);
};
/**
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#escaping
*/
const _escapeRegExp = (string) =>
string.replace(/[.*+\-?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
const _displayItem = (item, searchTerms, highlightTerms) => {
const docBuilder = DOCUMENTATION_OPTIONS.BUILDER;
const docFileSuffix = DOCUMENTATION_OPTIONS.FILE_SUFFIX;
const docLinkSuffix = DOCUMENTATION_OPTIONS.LINK_SUFFIX;
const showSearchSummary = DOCUMENTATION_OPTIONS.SHOW_SEARCH_SUMMARY;
const contentRoot = document.documentElement.dataset.content_root;
const [docName, title, anchor, descr, score, _filename, kind] = item;
let listItem = document.createElement("li");
// Add a class representing the item's type:
// can be used by a theme's CSS selector for styling
// See SearchResultKind for the class names.
listItem.classList.add(`kind-${kind}`);
let requestUrl;
let linkUrl;
if (docBuilder === "dirhtml") {
// dirhtml builder
let dirname = docName + "/";
if (dirname.match(/\/index\/$/))
dirname = dirname.substring(0, dirname.length - 6);
else if (dirname === "index/") dirname = "";
requestUrl = contentRoot + dirname;
linkUrl = requestUrl;
} else {
// normal html builders
requestUrl = contentRoot + docName + docFileSuffix;
linkUrl = docName + docLinkSuffix;
}
let linkEl = listItem.appendChild(document.createElement("a"));
linkEl.href = linkUrl + anchor;
linkEl.dataset.score = score;
linkEl.innerHTML = title;
if (descr) {
listItem.appendChild(document.createElement("span")).innerHTML =
" (" + descr + ")";
// highlight search terms in the description
if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
}
else if (showSearchSummary)
fetch(requestUrl)
.then((responseData) => responseData.text())
.then((data) => {
if (data)
listItem.appendChild(
Search.makeSearchSummary(data, searchTerms, anchor)
);
// highlight search terms in the summary
if (SPHINX_HIGHLIGHT_ENABLED) // set in sphinx_highlight.js
highlightTerms.forEach((term) => _highlightText(listItem, term, "highlighted"));
});
Search.output.appendChild(listItem);
};
const _finishSearch = (resultCount) => {
Search.stopPulse();
Search.title.innerText = _("Search Results");
if (!resultCount)
Search.status.innerText = Documentation.gettext(
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories."
);
else
Search.status.innerText = Documentation.ngettext(
"Search finished, found one page matching the search query.",
"Search finished, found ${resultCount} pages matching the search query.",
resultCount,
).replace('${resultCount}', resultCount);
};
const _displayNextItem = (
results,
resultCount,
searchTerms,
highlightTerms,
) => {
// results left, load the summary and display it
// this is intended to be dynamic (don't sub resultsCount)
if (results.length) {
_displayItem(results.pop(), searchTerms, highlightTerms);
setTimeout(
() => _displayNextItem(results, resultCount, searchTerms, highlightTerms),
5
);
}
// search finished, update title and status message
else _finishSearch(resultCount);
};
// Helper function used by query() to order search results.
// Each input is an array of [docname, title, anchor, descr, score, filename, kind].
// Order the results by score (in opposite order of appearance, since the
// `_displayNextItem` function uses pop() to retrieve items) and then alphabetically.
const _orderResultsByScoreThenName = (a, b) => {
const leftScore = a[4];
const rightScore = b[4];
if (leftScore === rightScore) {
// same score: sort alphabetically
const leftTitle = a[1].toLowerCase();
const rightTitle = b[1].toLowerCase();
if (leftTitle === rightTitle) return 0;
return leftTitle > rightTitle ? -1 : 1; // inverted is intentional
}
return leftScore > rightScore ? 1 : -1;
};
/**
* Default splitQuery function. Can be overridden in ``sphinx.search`` with a
* custom function per language.
*
* The regular expression works by splitting the string on consecutive characters
* that are not Unicode letters, numbers, underscores, or emoji characters.
* This is the same as ``\W+`` in Python, preserving the surrogate pair area.
*/
if (typeof splitQuery === "undefined") {
var splitQuery = (query) => query
.split(/[^\p{Letter}\p{Number}_\p{Emoji_Presentation}]+/gu)
.filter(term => term) // remove remaining empty strings
}
/**
* Search Module
*/
const Search = {
_index: null,
_queued_query: null,
_pulse_status: -1,
htmlToText: (htmlString, anchor) => {
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
for (const removalQuery of [".headerlink", "script", "style"]) {
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
}
if (anchor) {
const anchorContent = htmlElement.querySelector(`[role="main"] ${anchor}`);
if (anchorContent) return anchorContent.textContent;
console.warn(
`Anchored content block not found. Sphinx search tries to obtain it via DOM query '[role=main] ${anchor}'. Check your theme or template.`
);
}
// if anchor not specified or not found, fall back to main content
const docContent = htmlElement.querySelector('[role="main"]');
if (docContent) return docContent.textContent;
console.warn(
"Content block not found. Sphinx search tries to obtain it via DOM query '[role=main]'. Check your theme or template."
);
return "";
},
init: () => {
const query = new URLSearchParams(window.location.search).get("q");
document
.querySelectorAll('input[name="q"]')
.forEach((el) => (el.value = query));
if (query) Search.performSearch(query);
},
loadIndex: (url) =>
(document.body.appendChild(document.createElement("script")).src = url),
setIndex: (index) => {
Search._index = index;
if (Search._queued_query !== null) {
const query = Search._queued_query;
Search._queued_query = null;
Search.query(query);
}
},
hasIndex: () => Search._index !== null,
deferQuery: (query) => (Search._queued_query = query),
stopPulse: () => (Search._pulse_status = -1),
startPulse: () => {
if (Search._pulse_status >= 0) return;
const pulse = () => {
Search._pulse_status = (Search._pulse_status + 1) % 4;
Search.dots.innerText = ".".repeat(Search._pulse_status);
if (Search._pulse_status >= 0) window.setTimeout(pulse, 500);
};
pulse();
},
/**
* perform a search for something (or wait until index is loaded)
*/
performSearch: (query) => {
// create the required interface elements
const searchText = document.createElement("h2");
searchText.textContent = _("Searching");
const searchSummary = document.createElement("p");
searchSummary.classList.add("search-summary");
searchSummary.innerText = "";
const searchList = document.createElement("ul");
searchList.setAttribute("role", "list");
searchList.classList.add("search");
const out = document.getElementById("search-results");
Search.title = out.appendChild(searchText);
Search.dots = Search.title.appendChild(document.createElement("span"));
Search.status = out.appendChild(searchSummary);
Search.output = out.appendChild(searchList);
const searchProgress = document.getElementById("search-progress");
// Some themes don't use the search progress node
if (searchProgress) {
searchProgress.innerText = _("Preparing search...");
}
Search.startPulse();
// index already loaded, the browser was quick!
if (Search.hasIndex()) Search.query(query);
else Search.deferQuery(query);
},
_parseQuery: (query) => {
// stem the search terms and add them to the correct list
const stemmer = new Stemmer();
const searchTerms = new Set();
const excludedTerms = new Set();
const highlightTerms = new Set();
const objectTerms = new Set(splitQuery(query.toLowerCase().trim()));
splitQuery(query.trim()).forEach((queryTerm) => {
const queryTermLower = queryTerm.toLowerCase();
// maybe skip this "word"
// stopwords array is from language_data.js
if (
stopwords.indexOf(queryTermLower) !== -1 ||
queryTerm.match(/^\d+$/)
)
return;
// stem the word
let word = stemmer.stemWord(queryTermLower);
// select the correct list
if (word[0] === "-") excludedTerms.add(word.substr(1));
else {
searchTerms.add(word);
highlightTerms.add(queryTermLower);
}
});
if (SPHINX_HIGHLIGHT_ENABLED) { // set in sphinx_highlight.js
localStorage.setItem("sphinx_highlight_terms", [...highlightTerms].join(" "))
}
// console.debug("SEARCH: searching for:");
// console.info("required: ", [...searchTerms]);
// console.info("excluded: ", [...excludedTerms]);
return [query, searchTerms, excludedTerms, highlightTerms, objectTerms];
},
/**
* execute search (requires search index to be loaded)
*/
_performSearch: (query, searchTerms, excludedTerms, highlightTerms, objectTerms) => {
const filenames = Search._index.filenames;
const docNames = Search._index.docnames;
const titles = Search._index.titles;
const allTitles = Search._index.alltitles;
const indexEntries = Search._index.indexentries;
// Collect multiple result groups to be sorted separately and then ordered.
// Each is an array of [docname, title, anchor, descr, score, filename, kind].
const normalResults = [];
const nonMainIndexResults = [];
_removeChildren(document.getElementById("search-progress"));
const queryLower = query.toLowerCase().trim();
for (const [title, foundTitles] of Object.entries(allTitles)) {
if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
for (const [file, id] of foundTitles) {
const score = Math.round(Scorer.title * queryLower.length / title.length);
const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
normalResults.push([
docNames[file],
titles[file] !== title ? `${titles[file]} > ${title}` : title,
id !== null ? "#" + id : "",
null,
score + boost,
filenames[file],
SearchResultKind.title,
]);
}
}
}
// search for explicit entries in index directives
for (const [entry, foundEntries] of Object.entries(indexEntries)) {
if (entry.includes(queryLower) && (queryLower.length >= entry.length/2)) {
for (const [file, id, isMain] of foundEntries) {
const score = Math.round(100 * queryLower.length / entry.length);
const result = [
docNames[file],
titles[file],
id ? "#" + id : "",
null,
score,
filenames[file],
SearchResultKind.index,
];
if (isMain) {
normalResults.push(result);
} else {
nonMainIndexResults.push(result);
}
}
}
}
// lookup as object
objectTerms.forEach((term) =>
normalResults.push(...Search.performObjectSearch(term, objectTerms))
);
// lookup as search terms in fulltext
normalResults.push(...Search.performTermsSearch(searchTerms, excludedTerms));
// let the scorer override scores with a custom scoring function
if (Scorer.score) {
normalResults.forEach((item) => (item[4] = Scorer.score(item)));
nonMainIndexResults.forEach((item) => (item[4] = Scorer.score(item)));
}
// Sort each group of results by score and then alphabetically by name.
normalResults.sort(_orderResultsByScoreThenName);
nonMainIndexResults.sort(_orderResultsByScoreThenName);
// Combine the result groups in (reverse) order.
// Non-main index entries are typically arbitrary cross-references,
// so display them after other results.
let results = [...nonMainIndexResults, ...normalResults];
// remove duplicate search results
// note the reversing of results, so that in the case of duplicates, the highest-scoring entry is kept
let seen = new Set();
results = results.reverse().reduce((acc, result) => {
let resultStr = result.slice(0, 4).concat([result[5]]).map(v => String(v)).join(',');
if (!seen.has(resultStr)) {
acc.push(result);
seen.add(resultStr);
}
return acc;
}, []);
return results.reverse();
},
query: (query) => {
const [searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms] = Search._parseQuery(query);
const results = Search._performSearch(searchQuery, searchTerms, excludedTerms, highlightTerms, objectTerms);
// for debugging
//Search.lastresults = results.slice(); // a copy
// console.info("search results:", Search.lastresults);
// print the results
_displayNextItem(results, results.length, searchTerms, highlightTerms);
},
/**
* search for object names
*/
performObjectSearch: (object, objectTerms) => {
const filenames = Search._index.filenames;
const docNames = Search._index.docnames;
const objects = Search._index.objects;
const objNames = Search._index.objnames;
const titles = Search._index.titles;
const results = [];
const objectSearchCallback = (prefix, match) => {
const name = match[4]
const fullname = (prefix ? prefix + "." : "") + name;
const fullnameLower = fullname.toLowerCase();
if (fullnameLower.indexOf(object) < 0) return;
let score = 0;
const parts = fullnameLower.split(".");
// check for different match types: exact matches of full name or
// "last name" (i.e. last dotted part)
if (fullnameLower === object || parts.slice(-1)[0] === object)
score += Scorer.objNameMatch;
else if (parts.slice(-1)[0].indexOf(object) > -1)
score += Scorer.objPartialMatch; // matches in last name
const objName = objNames[match[1]][2];
const title = titles[match[0]];
// If more than one term searched for, we require other words to be
// found in the name/title/description
const otherTerms = new Set(objectTerms);
otherTerms.delete(object);
if (otherTerms.size > 0) {
const haystack = `${prefix} ${name} ${objName} ${title}`.toLowerCase();
if (
[...otherTerms].some((otherTerm) => haystack.indexOf(otherTerm) < 0)
)
return;
}
let anchor = match[3];
if (anchor === "") anchor = fullname;
else if (anchor === "-") anchor = objNames[match[1]][1] + "-" + fullname;
const descr = objName + _(", in ") + title;
// add custom score for some objects according to scorer
if (Scorer.objPrio.hasOwnProperty(match[2]))
score += Scorer.objPrio[match[2]];
else score += Scorer.objPrioDefault;
results.push([
docNames[match[0]],
fullname,
"#" + anchor,
descr,
score,
filenames[match[0]],
SearchResultKind.object,
]);
};
Object.keys(objects).forEach((prefix) =>
objects[prefix].forEach((array) =>
objectSearchCallback(prefix, array)
)
);
return results;
},
/**
* search for full-text terms in the index
*/
performTermsSearch: (searchTerms, excludedTerms) => {
// prepare search
const terms = Search._index.terms;
const titleTerms = Search._index.titleterms;
const filenames = Search._index.filenames;
const docNames = Search._index.docnames;
const titles = Search._index.titles;
const scoreMap = new Map();
const fileMap = new Map();
// perform the search on the required terms
searchTerms.forEach((word) => {
const files = [];
// find documents, if any, containing the query word in their text/title term indices
// use Object.hasOwnProperty to avoid mismatching against prototype properties
const arr = [
{ files: terms.hasOwnProperty(word) ? terms[word] : undefined, score: Scorer.term },
{ files: titleTerms.hasOwnProperty(word) ? titleTerms[word] : undefined, score: Scorer.title },
];
// add support for partial matches
if (word.length > 2) {
const escapedWord = _escapeRegExp(word);
if (!terms.hasOwnProperty(word)) {
Object.keys(terms).forEach((term) => {
if (term.match(escapedWord))
arr.push({ files: terms[term], score: Scorer.partialTerm });
});
}
if (!titleTerms.hasOwnProperty(word)) {
Object.keys(titleTerms).forEach((term) => {
if (term.match(escapedWord))
arr.push({ files: titleTerms[term], score: Scorer.partialTitle });
});
}
}
// no match but word was a required one
if (arr.every((record) => record.files === undefined)) return;
// found search word in contents
arr.forEach((record) => {
if (record.files === undefined) return;
let recordFiles = record.files;
if (recordFiles.length === undefined) recordFiles = [recordFiles];
files.push(...recordFiles);
// set score for the word in each file
recordFiles.forEach((file) => {
if (!scoreMap.has(file)) scoreMap.set(file, new Map());
const fileScores = scoreMap.get(file);
fileScores.set(word, record.score);
});
});
// create the mapping
files.forEach((file) => {
if (!fileMap.has(file)) fileMap.set(file, [word]);
else if (fileMap.get(file).indexOf(word) === -1) fileMap.get(file).push(word);
});
});
// now check if the files don't contain excluded terms
const results = [];
for (const [file, wordList] of fileMap) {
// check if all requirements are matched
// as search terms with length < 3 are discarded
const filteredTermCount = [...searchTerms].filter(
(term) => term.length > 2
).length;
if (
wordList.length !== searchTerms.size &&
wordList.length !== filteredTermCount
)
continue;
// ensure that none of the excluded terms is in the search result
if (
[...excludedTerms].some(
(term) =>
terms[term] === file ||
titleTerms[term] === file ||
(terms[term] || []).includes(file) ||
(titleTerms[term] || []).includes(file)
)
)
break;
// select one (max) score for the file.
const score = Math.max(...wordList.map((w) => scoreMap.get(file).get(w)));
// add result to the result list
results.push([
docNames[file],
titles[file],
"",
null,
score,
filenames[file],
SearchResultKind.text,
]);
}
return results;
},
/**
* helper function to return a node containing the
* search summary for a given text. keywords is a list
* of stemmed words.
*/
makeSearchSummary: (htmlText, keywords, anchor) => {
const text = Search.htmlToText(htmlText, anchor);
if (text === "") return null;
const textLower = text.toLowerCase();
const actualStartPosition = [...keywords]
.map((k) => textLower.indexOf(k.toLowerCase()))
.filter((i) => i > -1)
.slice(-1)[0];
const startWithContext = Math.max(actualStartPosition - 120, 0);
const top = startWithContext === 0 ? "" : "...";
const tail = startWithContext + 240 < text.length ? "..." : "";
let summary = document.createElement("p");
summary.classList.add("context");
summary.textContent = top + text.substr(startWithContext, 240).trim() + tail;
return summary;
},
};
_ready(Search.init);

154
_static/sphinx_highlight.js Normal file
View file

@ -0,0 +1,154 @@
/* Highlighting utilities for Sphinx HTML documentation. */
"use strict";
const SPHINX_HIGHLIGHT_ENABLED = true
/**
* highlight a given string on a node by wrapping it in
* span elements with the given class name.
*/
const _highlight = (node, addItems, text, className) => {
if (node.nodeType === Node.TEXT_NODE) {
const val = node.nodeValue;
const parent = node.parentNode;
const pos = val.toLowerCase().indexOf(text);
if (
pos >= 0 &&
!parent.classList.contains(className) &&
!parent.classList.contains("nohighlight")
) {
let span;
const closestNode = parent.closest("body, svg, foreignObject");
const isInSVG = closestNode && closestNode.matches("svg");
if (isInSVG) {
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
} else {
span = document.createElement("span");
span.classList.add(className);
}
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
const rest = document.createTextNode(val.substr(pos + text.length));
parent.insertBefore(
span,
parent.insertBefore(
rest,
node.nextSibling
)
);
node.nodeValue = val.substr(0, pos);
/* There may be more occurrences of search term in this node. So call this
* function recursively on the remaining fragment.
*/
_highlight(rest, addItems, text, className);
if (isInSVG) {
const rect = document.createElementNS(
"http://www.w3.org/2000/svg",
"rect"
);
const bbox = parent.getBBox();
rect.x.baseVal.value = bbox.x;
rect.y.baseVal.value = bbox.y;
rect.width.baseVal.value = bbox.width;
rect.height.baseVal.value = bbox.height;
rect.setAttribute("class", className);
addItems.push({ parent: parent, target: rect });
}
}
} else if (node.matches && !node.matches("button, select, textarea")) {
node.childNodes.forEach((el) => _highlight(el, addItems, text, className));
}
};
const _highlightText = (thisNode, text, className) => {
let addItems = [];
_highlight(thisNode, addItems, text, className);
addItems.forEach((obj) =>
obj.parent.insertAdjacentElement("beforebegin", obj.target)
);
};
/**
* Small JavaScript module for the documentation.
*/
const SphinxHighlight = {
/**
* highlight the search words provided in localstorage in the text
*/
highlightSearchWords: () => {
if (!SPHINX_HIGHLIGHT_ENABLED) return; // bail if no highlight
// get and clear terms from localstorage
const url = new URL(window.location);
const highlight =
localStorage.getItem("sphinx_highlight_terms")
|| url.searchParams.get("highlight")
|| "";
localStorage.removeItem("sphinx_highlight_terms")
url.searchParams.delete("highlight");
window.history.replaceState({}, "", url);
// get individual terms from highlight string
const terms = highlight.toLowerCase().split(/\s+/).filter(x => x);
if (terms.length === 0) return; // nothing to do
// There should never be more than one element matching "div.body"
const divBody = document.querySelectorAll("div.body");
const body = divBody.length ? divBody[0] : document.querySelector("body");
window.setTimeout(() => {
terms.forEach((term) => _highlightText(body, term, "highlighted"));
}, 10);
const searchBox = document.getElementById("searchbox");
if (searchBox === null) return;
searchBox.appendChild(
document
.createRange()
.createContextualFragment(
'<p class="highlight-link">' +
'<a href="javascript:SphinxHighlight.hideSearchWords()">' +
_("Hide Search Matches") +
"</a></p>"
)
);
},
/**
* helper function to hide the search marks again
*/
hideSearchWords: () => {
document
.querySelectorAll("#searchbox .highlight-link")
.forEach((el) => el.remove());
document
.querySelectorAll("span.highlighted")
.forEach((el) => el.classList.remove("highlighted"));
localStorage.removeItem("sphinx_highlight_terms")
},
initEscapeListener: () => {
// only install a listener if it is really needed
if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) return;
document.addEventListener("keydown", (event) => {
// bail for input elements
if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return;
// bail with special keys
if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) return;
if (DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS && (event.key === "Escape")) {
SphinxHighlight.hideSearchWords();
event.preventDefault();
}
});
},
};
_ready(() => {
/* Do not call highlightSearchWords() when we are on the search page.
* It will highlight words from the *previous* search query.
*/
if (typeof Search === "undefined") SphinxHighlight.highlightSearchWords();
SphinxHighlight.initEscapeListener();
});

294
api_reference.html Normal file
View file

@ -0,0 +1,294 @@
<!DOCTYPE html>
<html lang="en" data-content_root="./">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>API Reference &#8212; optifik documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=5ecbeea2" />
<link rel="stylesheet" type="text/css" href="_static/basic.css?v=b08954a9" />
<link rel="stylesheet" type="text/css" href="_static/alabaster.css?v=27fed22d" />
<script src="_static/documentation_options.js?v=5929fcd5"></script>
<script src="_static/doctools.js?v=9bcbadda"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="Examples" href="examples.html" />
<link rel="prev" title="Installation" href="installation.html" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
</head><body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<section id="api-reference">
<h1>API Reference<a class="headerlink" href="#api-reference" title="Link to this heading"></a></h1>
<p>Below is the complete reference for Optifiks public API.</p>
<section id="module-optifik.io">
<span id="io"></span><h2>io<a class="headerlink" href="#module-optifik.io" title="Link to this heading"></a></h2>
<dl class="py function">
<dt class="sig sig-object py" id="optifik.io.load_spectrum">
<span class="sig-prename descclassname"><span class="pre">optifik.io.</span></span><span class="sig-name descname"><span class="pre">load_spectrum</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">spectrum_path</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">wavelength_min</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">0</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">wavelength_max</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">inf</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">delimiter</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">','</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/optifik/io.html#load_spectrum"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#optifik.io.load_spectrum" title="Link to this definition"></a></dt>
<dd><p>Load a spectrum file.</p>
<p>TODO : describe expected format</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><dl class="simple">
<dt><strong>spectrum_path</strong><span class="classifier">string</span></dt><dd><p>File path.</p>
</dd>
<dt><strong>wavelength_min</strong><span class="classifier">scalar, optional</span></dt><dd><p>Cut the data at this minimum wavelength (included).</p>
</dd>
<dt><strong>wavelength_max</strong><span class="classifier">scalar, optional</span></dt><dd><p>Cut the data at this maximum wavelength (included).</p>
</dd>
<dt><strong>delimiter</strong><span class="classifier">string, optional</span></dt><dd><p>Delimiter between columns in the datafile.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><dl class="simple">
<dt><strong>values</strong><span class="classifier">arrays</span></dt><dd><p>(lamdbas, intensities)</p>
</dd>
</dl>
</dd>
</dl>
</dd></dl>
</section>
<section id="module-optifik.fft">
<span id="fft"></span><h2>fft<a class="headerlink" href="#module-optifik.fft" title="Link to this heading"></a></h2>
<dl class="py function">
<dt class="sig sig-object py" id="optifik.fft.thickness_from_fft">
<span class="sig-prename descclassname"><span class="pre">optifik.fft.</span></span><span class="sig-name descname"><span class="pre">thickness_from_fft</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">wavelengths</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">intensities</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">refractive_index</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">num_half_space</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">plot</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/optifik/fft.html#thickness_from_fft"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#optifik.fft.thickness_from_fft" title="Link to this definition"></a></dt>
<dd><p>Determine the tickness by Fast Fourier Transform.</p>
<dl class="field-list">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><dl class="simple">
<dt><strong>wavelengths</strong><span class="classifier">array</span></dt><dd><p>Wavelength values in nm.</p>
</dd>
<dt><strong>intensities</strong><span class="classifier">array</span></dt><dd><p>Intensity values.</p>
</dd>
<dt><strong>refractive_index</strong><span class="classifier">scalar, optional</span></dt><dd><p>Value of the refractive index of the medium.</p>
</dd>
<dt><strong>num_half_space</strong><span class="classifier">scalar, optional</span></dt><dd><p>Number of points to compute FFTs half space.
If <cite>None</cite>, default corresponds to <cite>10*len(wavelengths)</cite>.</p>
</dd>
<dt><strong>plot</strong><span class="classifier">boolean, optional</span></dt><dd><p>Show plot of the transformed signal and the peak detection.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><dl>
<dt><strong>results</strong><span class="classifier">Instance of <cite>OptimizeResult</cite> class.</span></dt><dd><p>The attribute <cite>thickness</cite> gives the thickness value in nm.</p>
</dd>
</dl>
</dd>
</dl>
</dd></dl>
</section>
<section id="module-optifik.minmax">
<span id="minmax"></span><h2>minmax<a class="headerlink" href="#module-optifik.minmax" title="Link to this heading"></a></h2>
<dl class="py function">
<dt class="sig sig-object py" id="optifik.minmax.thickness_from_minmax">
<span class="sig-prename descclassname"><span class="pre">optifik.minmax.</span></span><span class="sig-name descname"><span class="pre">thickness_from_minmax</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">wavelengths</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">intensities</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">refractive_index</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">min_peak_prominence</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">min_peak_distance</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">10</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">method</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">'linreg'</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">plot</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/optifik/minmax.html#thickness_from_minmax"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#optifik.minmax.thickness_from_minmax" title="Link to this definition"></a></dt>
<dd><p>Return the thickness from a min-max detection.</p>
<dl class="field-list">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><dl class="simple">
<dt><strong>wavelengths</strong><span class="classifier">array</span></dt><dd><p>Wavelength values in nm.</p>
</dd>
<dt><strong>intensities</strong><span class="classifier">array</span></dt><dd><p>Intensity values.</p>
</dd>
<dt><strong>refractive_index</strong><span class="classifier">scalar, optional</span></dt><dd><p>Value of the refractive index of the medium.</p>
</dd>
<dt><strong>min_peak_prominence</strong><span class="classifier">scalar, optional</span></dt><dd><p>Required prominence of peaks.</p>
</dd>
<dt><strong>min_peak_distance</strong><span class="classifier">scalar, optional</span></dt><dd><p>Minimum distance between peaks.</p>
</dd>
<dt><strong>method</strong><span class="classifier">string, optional</span></dt><dd><p>Either linreg for linear regression or ransac
for Randon Sampling Consensus.</p>
</dd>
<dt><strong>plot</strong><span class="classifier">boolean, optional</span></dt><dd><p>Show plots of peak detection and lin regression.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><dl>
<dt><strong>results</strong><span class="classifier">Instance of <cite>OptimizeResult</cite> class.</span></dt><dd><p>The attribute <cite>thickness</cite> gives the thickness value in nm.</p>
</dd>
</dl>
</dd>
</dl>
<p class="rubric">Notes</p>
<p>For more details about <cite>min_peak_prominence</cite> and <cite>min_peak_distance</cite>,
see the documentation of <cite>scipy.signal.find_peaks</cite>. This function
is used to find extrema.</p>
</dd></dl>
</section>
<section id="module-optifik.scheludko">
<span id="scheludko"></span><h2>scheludko<a class="headerlink" href="#module-optifik.scheludko" title="Link to this heading"></a></h2>
<dl class="py function">
<dt class="sig sig-object py" id="optifik.scheludko.get_default_start_stop_wavelengths">
<span class="sig-prename descclassname"><span class="pre">optifik.scheludko.</span></span><span class="sig-name descname"><span class="pre">get_default_start_stop_wavelengths</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">wavelengths</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">intensities</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">refractive_index</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">min_peak_prominence</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">plot</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/optifik/scheludko.html#get_default_start_stop_wavelengths"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#optifik.scheludko.get_default_start_stop_wavelengths" title="Link to this definition"></a></dt>
<dd><p>Returns the start and stop wavelength values of the last monotonic branch.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><dl class="simple">
<dt><strong>wavelengths</strong><span class="classifier">array</span></dt><dd><p>Wavelength values in nm.</p>
</dd>
<dt><strong>intensities</strong><span class="classifier">array</span></dt><dd><p>Intensity values.</p>
</dd>
<dt><strong>refractive_index</strong><span class="classifier">scalar, optional</span></dt><dd><p>Value of the refractive index of the medium.</p>
</dd>
<dt><strong>min_peak_prominence</strong><span class="classifier">scalar</span></dt><dd><p>Required prominence of peaks.</p>
</dd>
<dt><strong>plot</strong><span class="classifier">bool, optional</span></dt><dd><p>Display a curve, useful for checking or debuging. The default is None.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><dl class="simple">
<dt><strong>wavelength_start</strong><span class="classifier">scalar</span></dt><dd></dd>
<dt><strong>wavelength_stop</strong><span class="classifier">scalar</span></dt><dd></dd>
</dl>
</dd>
<dt class="field-odd">Raises<span class="colon">:</span></dt>
<dd class="field-odd"><dl class="simple">
<dt>RuntimeError</dt><dd><p>if at least one maximum and one minimum are not detected.</p>
</dd>
</dl>
</dd>
</dl>
</dd></dl>
<dl class="py function">
<dt class="sig sig-object py" id="optifik.scheludko.thickness_from_scheludko">
<span class="sig-prename descclassname"><span class="pre">optifik.scheludko.</span></span><span class="sig-name descname"><span class="pre">thickness_from_scheludko</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">wavelengths</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">intensities</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">refractive_index</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">wavelength_start</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">wavelength_stop</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">interference_order</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">intensities_void</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">plot</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/optifik/scheludko.html#thickness_from_scheludko"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#optifik.scheludko.thickness_from_scheludko" title="Link to this definition"></a></dt>
<dd><p>Compute the film thickness based on Scheludko method.</p>
<dl class="field-list">
<dt class="field-odd">Parameters<span class="colon">:</span></dt>
<dd class="field-odd"><dl class="simple">
<dt><strong>wavelengths</strong><span class="classifier">array</span></dt><dd><p>Wavelength values in nm.</p>
</dd>
<dt><strong>intensities</strong><span class="classifier">array</span></dt><dd><p>Intensity values.</p>
</dd>
<dt><strong>refractive_index</strong><span class="classifier">scalar, optional</span></dt><dd><p>Value of the refractive index of the medium.</p>
</dd>
<dt><strong>wavelength_start</strong><span class="classifier">scalar, optional</span></dt><dd><p>Starting value of a monotonic branch.
Mandatory if interference_order != 0.</p>
</dd>
<dt><strong>wavelength_stop</strong><span class="classifier">scalar, optional</span></dt><dd><p>Stoping value of a monotonic branch.
Mandatory if interference_order != 0.</p>
</dd>
<dt><strong>interference_order</strong><span class="classifier">scalar, optional</span></dt><dd><p>Interference order, zero or positive integer.
If set to None, the value is guessed.</p>
</dd>
<dt><strong>intensities_void</strong><span class="classifier">array, optional</span></dt><dd><p>Intensity in absence of a film.
Mandatory if interference_order == 0.</p>
</dd>
<dt><strong>plot</strong><span class="classifier">bool, optional</span></dt><dd><p>Display a curve, useful for checking or debuging. The default is None.</p>
</dd>
</dl>
</dd>
<dt class="field-even">Returns<span class="colon">:</span></dt>
<dd class="field-even"><dl>
<dt><strong>results</strong><span class="classifier">Instance of <cite>OptimizeResult</cite> class.</span></dt><dd><p>The attribute <cite>thickness</cite> gives the thickness value in nm.</p>
</dd>
</dl>
</dd>
</dl>
</dd></dl>
</section>
</section>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">optifik</a></h1>
<search id="searchbox" style="display: none" role="search">
<div class="searchformwrapper">
<form class="search" action="search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" placeholder="Search"/>
<input type="submit" value="Go" />
</form>
</div>
</search>
<script>document.getElementById('searchbox').style.display = "block"</script><h3>Navigation</h3>
<p class="caption" role="heading"><span class="caption-text">Documentation</span></p>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">API Reference</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#module-optifik.io">io</a></li>
<li class="toctree-l2"><a class="reference internal" href="#module-optifik.fft">fft</a></li>
<li class="toctree-l2"><a class="reference internal" href="#module-optifik.minmax">minmax</a></li>
<li class="toctree-l2"><a class="reference internal" href="#module-optifik.scheludko">scheludko</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="examples.html">Examples</a></li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="index.html">Documentation overview</a><ul>
<li>Previous: <a href="installation.html" title="previous chapter">Installation</a></li>
<li>Next: <a href="examples.html" title="next chapter">Examples</a></li>
</ul></li>
</ul>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
&#169;2025, F. Boulogne et al..
|
Powered by <a href="https://www.sphinx-doc.org/">Sphinx 8.2.3</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 1.0.0</a>
|
<a href="_sources/api_reference.rst.txt"
rel="nofollow">Page source</a>
</div>
</body>
</html>

234
check.py
View file

@ -1,234 +0,0 @@
import os
import matplotlib.pyplot as plt
from optifik.analysis import *
from optifik import io
plt.rc('text', usetex=True)
plt.rcParams.update({
'axes.labelsize': 26,
'xtick.labelsize': 32,
'ytick.labelsize': 32,
'legend.fontsize': 23,
})
def minmax():
##### Chemin du dossier contenant le spectre #####
from optifik.scheludko import thickness_from_scheludko
from optifik.scheludko import get_default_start_stop_wavelengths
DATA_FOLDER = os.path.abspath(os.path.join(os.path.curdir, 'tests', 'basic'))
#SAVE_FOLDER = DATA_FOLDER
# FILE_NAME = '003582.xy' #FFT Exemple -> FFT 3524.51
# FILE_NAME = '000004310.xy' #OOspectro Exemple -> minmax 1338.35
# FILE_NAME = '000005253.xy'#Scheludko 4 pics Exemple -> scheludko ²
# FILE_NAME = '000006544.xy'#Scheludko 2 pics Exemple -> ombre ## Diviser prominence FFT par 2
# FILE_NAME = '000018918.xy' #Scheludko 1 pic max Exemple -> ombre ## Diviser prominence FFT par 2
FILE_NAME = '000004310.xy' #TEST#
spectrum_file = os.path.join(DATA_FOLDER, FILE_NAME)
lambdas, intensities = io.load_spectrum(spectrum_file)
plot_spectrum(lambdas, intensities, title='Raw')
lambdas, intensities = io.load_spectrum(spectrum_file, wavelength_min=450)
plot_spectrum(lambdas, intensities, title='Raw, cropped')
smoothed_intensities = smooth_intensities(intensities)
plot_spectrum(lambdas, smoothed_intensities, title='Smoothed')
refractive_index = 1.324188 + 3102.060378 / (lambdas**2)
prominence = 0.025
peaks_min, peaks_max = finds_peak(lambdas, smoothed_intensities,
min_peak_prominence=prominence,
plot=True)
def play_order1():
##### Chemin du dossier contenant le spectre #####
from optifik.scheludko import thickness_from_scheludko
from optifik.scheludko import get_default_start_stop_wavelengths
DATA_FOLDER = os.path.abspath(os.path.join(os.path.curdir, 'tests', 'basic'))
#SAVE_FOLDER = DATA_FOLDER
# FILE_NAME = '003582.xy' #FFT Exemple -> FFT 3524.51
# FILE_NAME = '000004310.xy' #OOspectro Exemple -> minmax 1338.35
# FILE_NAME = '000005253.xy'#Scheludko 4 pics Exemple -> scheludko ²
# FILE_NAME = '000006544.xy'#Scheludko 2 pics Exemple -> ombre ## Diviser prominence FFT par 2
# FILE_NAME = '000018918.xy' #Scheludko 1 pic max Exemple -> ombre ## Diviser prominence FFT par 2
FILE_NAME = '000004310.xy' #TEST#
spectrum_file = os.path.join(DATA_FOLDER, FILE_NAME)
spectrum_file = 'tests/spectraVictor2/order5/T5817.xy' #TEST#
lambdas, intensities = io.load_spectrum(spectrum_file)
plot_spectrum(lambdas, intensities, title='Raw')
lambdas, intensities = io.load_spectrum(spectrum_file, wavelength_min=450)
plot_spectrum(lambdas, intensities, title='Raw, cropped')
smoothed_intensities = smooth_intensities(intensities)
plot_spectrum(lambdas, smoothed_intensities, title='Smoothed')
refractive_index = 1.324188 + 3102.060378 / (lambdas**2)
prominence = 0.025
peaks_min, peaks_max = finds_peak(lambdas, smoothed_intensities,
min_peak_prominence=prominence,
plot=True)
w_start, w_stop = get_default_start_stop_wavelengths(lambdas,
smoothed_intensities,
refractive_index,
min_peak_prominence=prominence,
plot=True)
result = thickness_from_scheludko(lambdas,
smoothed_intensities,
refractive_index=refractive_index,
wavelength_start=w_start,
wavelength_stop=w_stop,
interference_order=None,
plot=True)
def play_order0():
##### Chemin du dossier contenant le spectre #####
from optifik.scheludko import thickness_for_order0
DATA_FOLDER = os.path.abspath(os.path.join(os.path.curdir, 'tests', 'basic'))
#SAVE_FOLDER = DATA_FOLDER
# FILE_NAME = '003582.xy' #FFT Exemple -> FFT 3524.51
# FILE_NAME = '000004310.xy' #OOspectro Exemple -> minmax 1338.35
# FILE_NAME = '000005253.xy'#Scheludko 4 pics Exemple -> scheludko ²
# FILE_NAME = '000006544.xy'#Scheludko 2 pics Exemple -> ombre ## Diviser prominence FFT par 2
# FILE_NAME = '000018918.xy' #Scheludko 1 pic max Exemple -> ombre ## Diviser prominence FFT par 2
FILE_NAME = '000004310.xy' #TEST#
spectrum_file = os.path.join(DATA_FOLDER, FILE_NAME)
spectrum_file = 'tests/spectraVictor2/order0/T16053.xy' #TEST#
lambdas, intensities = io.load_spectrum(spectrum_file)
plot_spectrum(lambdas, intensities, title='Raw')
lambdas, intensities = io.load_spectrum(spectrum_file, wavelength_min=450)
plot_spectrum(lambdas, intensities, title='Raw, cropped')
smoothed_intensities = smooth_intensities(intensities)
plot_spectrum(lambdas, smoothed_intensities, title='Smoothed')
refractive_index = 1.324188 + 3102.060378 / (lambdas**2)
prominence = .02
peaks_min, peaks_max = finds_peak(lambdas, smoothed_intensities,
min_peak_prominence=prominence,
plot=True)
result = thickness_for_order0(lambdas, smoothed_intensities,
refractive_index=refractive_index,
min_peak_prominence=prominence,
plot=True)
def check_basic():
##### Chemin du dossier contenant le spectre #####
DATA_FOLDER = os.path.abspath(os.path.join(os.path.curdir, 'tests', 'basic'))
#SAVE_FOLDER = DATA_FOLDER
# FILE_NAME = '003582.xy' #FFT Exemple -> FFT 3524.51
# FILE_NAME = '000004310.xy' #OOspectro Exemple -> minmax 1338.35
# FILE_NAME = '000005253.xy'#Scheludko 4 pics Exemple -> scheludko ²
# FILE_NAME = '000006544.xy'#Scheludko 2 pics Exemple -> ombre ## Diviser prominence FFT par 2
# FILE_NAME = '000018918.xy' #Scheludko 1 pic max Exemple -> ombre ## Diviser prominence FFT par 2
FILE_NAME = '000004310.xy' #TEST#
spectrum_file = os.path.join(DATA_FOLDER, FILE_NAME)
auto(spectrum_file, plot=False)
def check_SV1():
DATA_FOLDER = os.path.join('tests', 'spectraVictor1')
import yaml
yaml_file = os.path.join(DATA_FOLDER, 'known_value.yaml')
with open(yaml_file, "r") as yaml_file:
thickness_dict = yaml.safe_load(yaml_file)
for fn, val in thickness_dict.items():
#auto(DATA_FOLDER, fn)
spectre_file = os.path.join(DATA_FOLDER, fn)
lambdas, raw_intensities = load_spectrum(spectre_file, wavelength_min=450)
##### Affichage du spectre lissé #####
#smoothed_intensities, intensities, lambdas = Data_Smoothed(spectre_file)
smoothed_intensities = smooth_intensities(raw_intensities)
# smoothed_intensities, intensities, lambdas = Data_Smoothed(spectre_file)
##### Indice Optique en fonction de Lambda #####
indice = 1.324188 + 3102.060378 / (lambdas**2)
prominence = 0.02
##### Find Peak #####
peaks_min, peaks_max = finds_peak(lambdas, smoothed_intensities,
min_peak_prominence=prominence,
plot=False)
result = thickness_from_minmax(lambdas,
smoothed_intensities,
refractive_index=indice,
min_peak_prominence=prominence)
print(f'thickness: {result.thickness:.2f} nm')
print(f'expected: {val}')
print('#-' * 10)
if __name__ == '__main__':
from optifik.utils import is_latex_installed
print(is_latex_installed())
#check_basic()
#check_SV1()
#play()
play_order1()

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.9001
407,0.0000
408,0.0000
409,1.0000
410,0.2108
411,0.2567
412,0.3338
413,0.3487
414,0.5724
415,0.6228
416,0.8050
417,0.8143
418,0.8926
419,0.8689
420,0.9658
421,0.8737
422,0.7347
423,0.6758
424,0.5118
425,0.4176
426,0.3646
427,0.3179
428,0.2689
429,0.1901
430,0.3030
431,0.3010
432,0.3917
433,0.4348
434,0.5296
435,0.6200
436,0.6368
437,0.6736
438,0.6803
439,0.6555
440,0.6710
441,0.6186
442,0.5242
443,0.4401
444,0.3825
445,0.3215
446,0.2335
447,0.1807
448,0.1670
449,0.1669
450,0.1519
451,0.1878
452,0.2091
453,0.2271
454,0.2550
455,0.2705
456,0.2848
457,0.3088
458,0.3176
459,0.3269
460,0.3062
461,0.3054
462,0.2828
463,0.2595
464,0.2096
465,0.1858
466,0.1671
467,0.1401
468,0.1105
469,0.0944
470,0.0897
471,0.0847
472,0.0874
473,0.1012
474,0.1190
475,0.1364
476,0.1532
477,0.1630
478,0.1807
479,0.1913
480,0.2034
481,0.2055
482,0.2071
483,0.2012
484,0.1951
485,0.1843
486,0.1661
487,0.1455
488,0.1292
489,0.1130
490,0.0934
491,0.0786
492,0.0654
493,0.0581
494,0.0495
495,0.0473
496,0.0475
497,0.0550
498,0.0637
499,0.0752
500,0.0830
501,0.0942
502,0.1071
503,0.1162
504,0.1276
505,0.1360
506,0.1424
507,0.1438
508,0.1454
509,0.1415
510,0.1403
511,0.1339
512,0.1223
513,0.1121
514,0.0998
515,0.0826
516,0.0706
517,0.0599
518,0.0528
519,0.0435
520,0.0387
521,0.0360
522,0.0355
523,0.0353
524,0.0407
525,0.0489
526,0.0540
527,0.0619
528,0.0728
529,0.0868
530,0.0984
531,0.1073
532,0.1169
533,0.1313
534,0.1413
535,0.1435
536,0.1493
537,0.1555
538,0.1542
539,0.1550
540,0.1479
541,0.1418
542,0.1332
543,0.1217
544,0.1124
545,0.1017
546,0.0928
547,0.0797
548,0.0697
549,0.0590
550,0.0518
551,0.0505
552,0.0486
553,0.0500
554,0.0525
555,0.0590
556,0.0669
557,0.0806
558,0.0958
559,0.1113
560,0.1266
561,0.1395
562,0.1565
563,0.1703
564,0.1841
565,0.1977
566,0.2036
567,0.2114
568,0.2144
569,0.2161
570,0.2156
571,0.2091
572,0.2064
573,0.1950
574,0.1822
575,0.1726
576,0.1569
577,0.1428
578,0.1327
579,0.1140
580,0.0982
581,0.0858
582,0.0742
583,0.0659
584,0.0612
585,0.0526
586,0.0497
587,0.0511
588,0.0554
589,0.0593
590,0.0671
591,0.0805
592,0.0948
593,0.1102
594,0.1315
595,0.1500
596,0.1694
597,0.1894
598,0.2111
599,0.2319
600,0.2506
601,0.2702
602,0.2810
603,0.2912
604,0.3009
605,0.3066
606,0.3107
607,0.3102
608,0.2992
609,0.2965
610,0.2870
611,0.2702
612,0.2540
613,0.2329
614,0.2108
615,0.1917
616,0.1703
617,0.1508
618,0.1325
619,0.1155
620,0.0965
621,0.0834
622,0.0722
623,0.0626
624,0.0568
625,0.0564
626,0.0577
627,0.0603
628,0.0653
629,0.0761
630,0.0866
631,0.1003
632,0.1208
633,0.1332
634,0.1489
635,0.1690
636,0.1916
637,0.2093
638,0.2304
639,0.2510
640,0.2711
641,0.2888
642,0.2993
643,0.3110
644,0.3235
645,0.3329
646,0.3380
647,0.3387
648,0.3393
649,0.3384
650,0.3332
651,0.3254
652,0.3107
653,0.3030
654,0.2869
655,0.2717
656,0.2537
657,0.2312
658,0.2090
659,0.1885
660,0.1665
661,0.1473
662,0.1282
663,0.1115
664,0.0970
665,0.0883
666,0.0744
667,0.0658
668,0.0600
669,0.0565
670,0.0563
671,0.0571
672,0.0628
673,0.0700
674,0.0808
675,0.0936
676,0.1070
677,0.1222
678,0.1402
679,0.1540
680,0.1708
681,0.1910
682,0.2088
683,0.2269
684,0.2416
685,0.2614
686,0.2763
687,0.2881
688,0.3032
689,0.3125
690,0.3203
691,0.3269
692,0.3316
693,0.3328
694,0.3349
695,0.3326
696,0.3269
697,0.3225
698,0.3173
699,0.3081
700,0.2992
701,0.2869
702,0.2755
703,0.2624
704,0.2419
705,0.2245
706,0.2107
707,0.1922
708,0.1771
709,0.1563
710,0.1423
711,0.1241
712,0.1100
713,0.0941
714,0.0837
715,0.0715
716,0.0638
717,0.0558
718,0.0482
719,0.0433
720,0.0404
721,0.0418
722,0.0411
723,0.0439
724,0.0499
725,0.0572
726,0.0647
727,0.0735
728,0.0876
729,0.0994
730,0.1120
731,0.1271
732,0.1420
733,0.1585
734,0.1721
735,0.1879
736,0.2049
737,0.2159
738,0.2332
739,0.2420
740,0.2574
741,0.2659
742,0.2743
743,0.2861
744,0.2891
745,0.2940
746,0.3018
747,0.2999
748,0.3002
749,0.3021
750,0.2997
751,0.2916
752,0.2909
753,0.2796
754,0.2759
755,0.2680
756,0.2589
757,0.2445
758,0.2317
759,0.2198
760,0.2061
761,0.1920
762,0.1775
763,0.1658
764,0.1520
765,0.1390
766,0.1253
767,0.1128
768,0.1020
769,0.0906
770,0.0816
771,0.0710
772,0.0620
773,0.0544
774,0.0450
775,0.0416
776,0.0361
777,0.0323
778,0.0293
779,0.0268
780,0.0260
781,0.0258
782,0.0284
783,0.0291
784,0.0326
785,0.0369
786,0.0410
787,0.0453
788,0.0526
789,0.0600
790,0.0664
791,0.0746
792,0.0840
793,0.0947
794,0.1027
795,0.1120
796,0.1267
797,0.1328
798,0.1426
799,0.1530
800,0.1636
801,0.1723
802,0.1837
803,0.1908
804,0.2017
805,0.2075
806,0.2135
807,0.2203
808,0.2198
809,0.2258
810,0.2272
811,0.2290
812,0.2286
813,0.2318
814,0.2285
815,0.2301
816,0.2237
817,0.2201
818,0.2166
819,0.2115
820,0.2062
821,0.2020
822,0.1920
823,0.1854
824,0.1794
825,0.1702
826,0.1632
827,0.1519
828,0.1432
829,0.1335
830,0.1245
831,0.1176
832,0.1087
833,0.0989
834,0.0920
835,0.0831
836,0.0746
837,0.0661
838,0.0600
839,0.0548
840,0.0465
841,0.0427
842,0.0366
843,0.0311
844,0.0276
845,0.0238
846,0.0207
847,0.0179
848,0.0167
849,0.0152
850,0.0136
851,0.0146
852,0.0154
853,0.0152
854,0.0173
855,0.0183
856,0.0208
857,0.0230
858,0.0260
859,0.0292
860,0.0332
861,0.0353
862,0.0392
863,0.0439
864,0.0470
865,0.0534
866,0.0550
867,0.0603
868,0.0640
869,0.0667
870,0.0702
871,0.0737
872,0.0772
873,0.0795
874,0.0821
875,0.0855
876,0.0877
877,0.0934
878,0.0946
879,0.0995
880,0.1014
881,0.1038
882,0.1088
883,0.1140
884,0.1151
885,0.1195
886,0.1219
887,0.1275
888,0.1269
889,0.1292
890,0.1297
891,0.1315
892,0.1315
893,0.1316
894,0.1288
895,0.1269
896,0.1259
897,0.1230
898,0.1204
899,0.1182
900,0.1164
901,0.1142
902,0.1097
903,0.1041
904,0.0999
905,0.0948
906,0.0924
907,0.0864
908,0.0816
909,0.0774
910,0.0735
911,0.0683
912,0.0631
913,0.0596
914,0.0542
915,0.0520
916,0.0463
917,0.0420
918,0.0377
919,0.0339
920,0.0296
921,0.0276
922,0.0250
923,0.0226
924,0.0196
925,0.0165
926,0.0150
927,0.0124
928,0.0112
929,0.0081
930,0.0073
931,0.0068
932,0.0047
933,0.0045
934,0.0047
935,0.0047
936,0.0030
937,0.0027
938,0.0025
939,0.0018
940,0.0033
941,0.0017
942,0.0012

File diff suppressed because it is too large Load diff

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.3375
402,0.0000
403,0.0000
404,1.0000
405,0.2250
406,0.3600
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0253
436,0.0000
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0018
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0002
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0017
467,0.0000
468,0.0000
469,0.0000
470,0.0000
471,0.0018
472,0.0000
473,0.0000
474,0.0000
475,0.0000
476,0.0000
477,0.0000
478,0.0000
479,0.0010
480,0.0000
481,0.0000
482,0.0000
483,0.0002
484,0.0000
485,0.0000
486,0.0000
487,0.0000
488,0.0005
489,0.0000
490,0.0000
491,0.0000
492,0.0000
493,0.0000
494,0.0000
495,0.0000
496,0.0000
497,0.0003
498,0.0011
499,0.0012
500,0.0000
501,0.0012
502,0.0000
503,0.0000
504,0.0002
505,0.0003
506,0.0002
507,0.0000
508,0.0000
509,0.0005
510,0.0000
511,0.0011
512,0.0003
513,0.0000
514,0.0006
515,0.0010
516,0.0005
517,0.0010
518,0.0002
519,0.0000
520,0.0008
521,0.0003
522,0.0010
523,0.0000
524,0.0000
525,0.0000
526,0.0000
527,0.0011
528,0.0000
529,0.0006
530,0.0000
531,0.0011
532,0.0000
533,0.0000
534,0.0000
535,0.0000
536,0.0000
537,0.0001
538,0.0003
539,0.0007
540,0.0017
541,0.0008
542,0.0000
543,0.0001
544,0.0028
545,0.0019
546,0.0030
547,0.0028
548,0.0007
549,0.0005
550,0.0003
551,0.0001
552,0.0013
553,0.0003
554,0.0011
555,0.0001
556,0.0006
557,0.0005
558,0.0009
559,0.0018
560,0.0012
561,0.0010
562,0.0006
563,0.0014
564,0.0004
565,0.0000
566,0.0006
567,0.0005
568,0.0005
569,0.0009
570,0.0008
571,0.0009
572,0.0007
573,0.0000
574,0.0011
575,0.0001
576,0.0009
577,0.0009
578,0.0015
579,0.0013
580,0.0002
581,0.0009
582,0.0012
583,0.0000
584,0.0020
585,0.0004
586,0.0004
587,0.0007
588,0.0008
589,0.0000
590,0.0012
591,0.0005
592,0.0014
593,0.0017
594,0.0009
595,0.0004
596,0.0005
597,0.0005
598,0.0002
599,0.0007
600,0.0014
601,0.0000
602,0.0005
603,0.0014
604,0.0004
605,0.0000
606,0.0002
607,0.0013
608,0.0008
609,0.0002
610,0.0016
611,0.0008
612,0.0000
613,0.0008
614,0.0000
615,0.0009
616,0.0002
617,0.0000
618,0.0001
619,0.0000
620,0.0000
621,0.0000
622,0.0000
623,0.0003
624,0.0000
625,0.0000
626,0.0002
627,0.0000
628,0.0000
629,0.0002
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0001
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0001
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0002
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0004
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,1.0000
402,0.0000
403,0.0000
404,0.3001
405,0.6750
406,0.2000
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0218
436,0.0039
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0010
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0010
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0000
468,0.0000
469,0.0000
470,0.0000
471,0.0000
472,0.0000
473,0.0000
474,0.0000
475,0.0000
476,0.0000
477,0.0000
478,0.0000
479,0.0008
480,0.0015
481,0.0000
482,0.0000
483,0.0000
484,0.0000
485,0.0000
486,0.0002
487,0.0000
488,0.0000
489,0.0000
490,0.0000
491,0.0003
492,0.0000
493,0.0000
494,0.0001
495,0.0010
496,0.0000
497,0.0012
498,0.0000
499,0.0004
500,0.0008
501,0.0001
502,0.0000
503,0.0000
504,0.0006
505,0.0004
506,0.0000
507,0.0000
508,0.0004
509,0.0009
510,0.0000
511,0.0000
512,0.0000
513,0.0000
514,0.0007
515,0.0002
516,0.0005
517,0.0007
518,0.0007
519,0.0001
520,0.0001
521,0.0003
522,0.0004
523,0.0000
524,0.0005
525,0.0000
526,0.0002
527,0.0004
528,0.0000
529,0.0004
530,0.0001
531,0.0000
532,0.0000
533,0.0000
534,0.0000
535,0.0001
536,0.0004
537,0.0000
538,0.0000
539,0.0000
540,0.0002
541,0.0007
542,0.0005
543,0.0004
544,0.0018
545,0.0023
546,0.0023
547,0.0026
548,0.0004
549,0.0000
550,0.0006
551,0.0001
552,0.0007
553,0.0011
554,0.0007
555,0.0012
556,0.0000
557,0.0014
558,0.0007
559,0.0017
560,0.0010
561,0.0003
562,0.0008
563,0.0012
564,0.0002
565,0.0004
566,0.0010
567,0.0008
568,0.0004
569,0.0010
570,0.0006
571,0.0005
572,0.0007
573,0.0005
574,0.0007
575,0.0003
576,0.0006
577,0.0015
578,0.0010
579,0.0006
580,0.0006
581,0.0004
582,0.0014
583,0.0007
584,0.0010
585,0.0002
586,0.0004
587,0.0005
588,0.0004
589,0.0000
590,0.0001
591,0.0007
592,0.0015
593,0.0006
594,0.0004
595,0.0005
596,0.0001
597,0.0004
598,0.0003
599,0.0007
600,0.0009
601,0.0000
602,0.0005
603,0.0012
604,0.0002
605,0.0002
606,0.0000
607,0.0008
608,0.0001
609,0.0000
610,0.0007
611,0.0004
612,0.0008
613,0.0008
614,0.0001
615,0.0000
616,0.0000
617,0.0006
618,0.0002
619,0.0000
620,0.0000
621,0.0000
622,0.0001
623,0.0002
624,0.0000
625,0.0006
626,0.0000
627,0.0000
628,0.0000
629,0.0000
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0005
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0001
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0002
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,1.0000
402,0.2000
403,0.0000
404,0.4501
405,0.0000
406,0.4600
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0120
436,0.0000
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0007
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0036
468,0.0000
469,0.0000
470,0.0000
471,0.0017
472,0.0000
473,0.0000
474,0.0007
475,0.0000
476,0.0000
477,0.0000
478,0.0000
479,0.0005
480,0.0015
481,0.0000
482,0.0000
483,0.0000
484,0.0000
485,0.0002
486,0.0004
487,0.0000
488,0.0006
489,0.0000
490,0.0000
491,0.0000
492,0.0000
493,0.0000
494,0.0001
495,0.0001
496,0.0000
497,0.0000
498,0.0001
499,0.0000
500,0.0000
501,0.0000
502,0.0003
503,0.0000
504,0.0003
505,0.0000
506,0.0007
507,0.0000
508,0.0000
509,0.0000
510,0.0004
511,0.0000
512,0.0000
513,0.0000
514,0.0000
515,0.0002
516,0.0001
517,0.0000
518,0.0004
519,0.0000
520,0.0000
521,0.0004
522,0.0000
523,0.0000
524,0.0004
525,0.0000
526,0.0015
527,0.0004
528,0.0000
529,0.0004
530,0.0000
531,0.0002
532,0.0000
533,0.0001
534,0.0000
535,0.0000
536,0.0000
537,0.0000
538,0.0004
539,0.0000
540,0.0006
541,0.0000
542,0.0000
543,0.0001
544,0.0016
545,0.0019
546,0.0020
547,0.0014
548,0.0013
549,0.0002
550,0.0003
551,0.0001
552,0.0008
553,0.0005
554,0.0000
555,0.0006
556,0.0000
557,0.0008
558,0.0006
559,0.0014
560,0.0012
561,0.0003
562,0.0008
563,0.0011
564,0.0000
565,0.0001
566,0.0015
567,0.0000
568,0.0001
569,0.0000
570,0.0002
571,0.0010
572,0.0011
573,0.0000
574,0.0005
575,0.0002
576,0.0011
577,0.0000
578,0.0015
579,0.0008
580,0.0002
581,0.0000
582,0.0009
583,0.0000
584,0.0008
585,0.0000
586,0.0001
587,0.0007
588,0.0003
589,0.0000
590,0.0010
591,0.0005
592,0.0008
593,0.0002
594,0.0004
595,0.0000
596,0.0008
597,0.0007
598,0.0002
599,0.0001
600,0.0011
601,0.0000
602,0.0000
603,0.0011
604,0.0000
605,0.0002
606,0.0004
607,0.0003
608,0.0003
609,0.0000
610,0.0003
611,0.0000
612,0.0002
613,0.0004
614,0.0000
615,0.0001
616,0.0000
617,0.0000
618,0.0000
619,0.0000
620,0.0000
621,0.0002
622,0.0004
623,0.0000
624,0.0000
625,0.0002
626,0.0005
627,0.0000
628,0.0000
629,0.0000
630,0.0000
631,0.0000
632,0.0001
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0004
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0001
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.5625
402,0.1001
403,0.0000
404,1.0000
405,0.0000
406,0.0000
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0011
436,0.0000
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0000
468,0.0000
469,0.0005
470,0.0000
471,0.0013
472,0.0000
473,0.0000
474,0.0034
475,0.0000
476,0.0000
477,0.0017
478,0.0000
479,0.0008
480,0.0000
481,0.0000
482,0.0000
483,0.0000
484,0.0003
485,0.0008
486,0.0000
487,0.0000
488,0.0000
489,0.0004
490,0.0000
491,0.0000
492,0.0000
493,0.0003
494,0.0000
495,0.0000
496,0.0000
497,0.0000
498,0.0001
499,0.0000
500,0.0012
501,0.0004
502,0.0000
503,0.0000
504,0.0000
505,0.0000
506,0.0009
507,0.0000
508,0.0001
509,0.0004
510,0.0000
511,0.0007
512,0.0000
513,0.0000
514,0.0000
515,0.0005
516,0.0012
517,0.0007
518,0.0001
519,0.0000
520,0.0000
521,0.0007
522,0.0005
523,0.0000
524,0.0001
525,0.0000
526,0.0008
527,0.0004
528,0.0000
529,0.0002
530,0.0002
531,0.0001
532,0.0000
533,0.0000
534,0.0004
535,0.0000
536,0.0000
537,0.0003
538,0.0004
539,0.0004
540,0.0006
541,0.0001
542,0.0000
543,0.0001
544,0.0022
545,0.0023
546,0.0017
547,0.0013
548,0.0007
549,0.0005
550,0.0009
551,0.0011
552,0.0011
553,0.0005
554,0.0009
555,0.0002
556,0.0000
557,0.0002
558,0.0006
559,0.0019
560,0.0009
561,0.0004
562,0.0006
563,0.0015
564,0.0000
565,0.0002
566,0.0006
567,0.0003
568,0.0003
569,0.0009
570,0.0000
571,0.0005
572,0.0008
573,0.0007
574,0.0005
575,0.0005
576,0.0011
577,0.0000
578,0.0004
579,0.0000
580,0.0000
581,0.0003
582,0.0005
583,0.0008
584,0.0017
585,0.0005
586,0.0002
587,0.0000
588,0.0001
589,0.0000
590,0.0008
591,0.0007
592,0.0009
593,0.0003
594,0.0000
595,0.0000
596,0.0001
597,0.0000
598,0.0005
599,0.0000
600,0.0001
601,0.0000
602,0.0000
603,0.0011
604,0.0000
605,0.0000
606,0.0001
607,0.0000
608,0.0000
609,0.0000
610,0.0001
611,0.0000
612,0.0004
613,0.0003
614,0.0000
615,0.0000
616,0.0000
617,0.0000
618,0.0000
619,0.0002
620,0.0000
621,0.0000
622,0.0002
623,0.0000
624,0.0000
625,0.0001
626,0.0000
627,0.0000
628,0.0000
629,0.0000
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.9000
402,0.4500
403,1.0000
404,1.0000
405,0.5250
406,0.0000
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0306
436,0.0083
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0070
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0001
463,0.0000
464,0.0000
465,0.0000
466,0.0011
467,0.0000
468,0.0000
469,0.0000
470,0.0044
471,0.0009
472,0.0000
473,0.0000
474,0.0000
475,0.0000
476,0.0000
477,0.0015
478,0.0000
479,0.0000
480,0.0000
481,0.0000
482,0.0000
483,0.0000
484,0.0000
485,0.0006
486,0.0000
487,0.0000
488,0.0000
489,0.0000
490,0.0000
491,0.0000
492,0.0000
493,0.0002
494,0.0006
495,0.0006
496,0.0000
497,0.0015
498,0.0008
499,0.0006
500,0.0010
501,0.0000
502,0.0002
503,0.0000
504,0.0000
505,0.0000
506,0.0003
507,0.0000
508,0.0001
509,0.0005
510,0.0000
511,0.0009
512,0.0005
513,0.0000
514,0.0000
515,0.0010
516,0.0007
517,0.0000
518,0.0000
519,0.0000
520,0.0000
521,0.0007
522,0.0005
523,0.0000
524,0.0000
525,0.0000
526,0.0000
527,0.0009
528,0.0000
529,0.0003
530,0.0000
531,0.0001
532,0.0000
533,0.0000
534,0.0000
535,0.0000
536,0.0000
537,0.0000
538,0.0000
539,0.0004
540,0.0004
541,0.0000
542,0.0000
543,0.0000
544,0.0017
545,0.0021
546,0.0024
547,0.0015
548,0.0007
549,0.0000
550,0.0000
551,0.0000
552,0.0012
553,0.0004
554,0.0011
555,0.0008
556,0.0003
557,0.0010
558,0.0008
559,0.0010
560,0.0012
561,0.0001
562,0.0008
563,0.0009
564,0.0000
565,0.0000
566,0.0011
567,0.0009
568,0.0005
569,0.0011
570,0.0000
571,0.0003
572,0.0013
573,0.0003
574,0.0012
575,0.0000
576,0.0006
577,0.0011
578,0.0007
579,0.0008
580,0.0003
581,0.0005
582,0.0005
583,0.0006
584,0.0008
585,0.0005
586,0.0007
587,0.0005
588,0.0012
589,0.0000
590,0.0000
591,0.0002
592,0.0013
593,0.0002
594,0.0011
595,0.0008
596,0.0005
597,0.0003
598,0.0000
599,0.0000
600,0.0004
601,0.0000
602,0.0000
603,0.0011
604,0.0000
605,0.0000
606,0.0000
607,0.0000
608,0.0006
609,0.0000
610,0.0007
611,0.0000
612,0.0000
613,0.0000
614,0.0000
615,0.0000
616,0.0000
617,0.0001
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0000
623,0.0000
624,0.0000
625,0.0001
626,0.0000
627,0.0000
628,0.0000
629,0.0000
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0003
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.8625
402,0.1001
403,0.0000
404,1.0000
405,0.9750
406,0.9400
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0186
436,0.0000
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0031
468,0.0000
469,0.0000
470,0.0000
471,0.0014
472,0.0000
473,0.0000
474,0.0010
475,0.0000
476,0.0000
477,0.0006
478,0.0000
479,0.0013
480,0.0023
481,0.0000
482,0.0000
483,0.0011
484,0.0000
485,0.0000
486,0.0000
487,0.0000
488,0.0000
489,0.0000
490,0.0000
491,0.0018
492,0.0000
493,0.0000
494,0.0000
495,0.0000
496,0.0000
497,0.0000
498,0.0005
499,0.0000
500,0.0012
501,0.0005
502,0.0000
503,0.0000
504,0.0004
505,0.0000
506,0.0008
507,0.0000
508,0.0004
509,0.0000
510,0.0000
511,0.0003
512,0.0000
513,0.0003
514,0.0000
515,0.0000
516,0.0004
517,0.0005
518,0.0007
519,0.0000
520,0.0000
521,0.0004
522,0.0007
523,0.0000
524,0.0005
525,0.0000
526,0.0000
527,0.0002
528,0.0000
529,0.0004
530,0.0005
531,0.0001
532,0.0002
533,0.0000
534,0.0000
535,0.0001
536,0.0000
537,0.0001
538,0.0000
539,0.0003
540,0.0000
541,0.0001
542,0.0000
543,0.0000
544,0.0029
545,0.0023
546,0.0022
547,0.0017
548,0.0007
549,0.0000
550,0.0000
551,0.0001
552,0.0010
553,0.0008
554,0.0010
555,0.0001
556,0.0007
557,0.0008
558,0.0002
559,0.0010
560,0.0010
561,0.0002
562,0.0000
563,0.0006
564,0.0008
565,0.0000
566,0.0006
567,0.0007
568,0.0003
569,0.0008
570,0.0007
571,0.0003
572,0.0002
573,0.0003
574,0.0010
575,0.0000
576,0.0009
577,0.0000
578,0.0011
579,0.0004
580,0.0008
581,0.0005
582,0.0005
583,0.0000
584,0.0015
585,0.0002
586,0.0000
587,0.0008
588,0.0005
589,0.0000
590,0.0000
591,0.0005
592,0.0009
593,0.0003
594,0.0011
595,0.0006
596,0.0007
597,0.0010
598,0.0000
599,0.0002
600,0.0008
601,0.0000
602,0.0000
603,0.0007
604,0.0003
605,0.0003
606,0.0000
607,0.0000
608,0.0005
609,0.0001
610,0.0000
611,0.0001
612,0.0000
613,0.0004
614,0.0000
615,0.0000
616,0.0000
617,0.0005
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0000
623,0.0001
624,0.0000
625,0.0002
626,0.0000
627,0.0000
628,0.0000
629,0.0002
630,0.0000
631,0.0000
632,0.0000
633,0.0003
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.3000
402,0.0000
403,0.0000
404,1.0000
405,0.9750
406,0.3600
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0194
436,0.0118
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0071
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0009
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0000
468,0.0001
469,0.0000
470,0.0000
471,0.0022
472,0.0000
473,0.0000
474,0.0000
475,0.0000
476,0.0000
477,0.0017
478,0.0000
479,0.0018
480,0.0000
481,0.0000
482,0.0000
483,0.0000
484,0.0000
485,0.0000
486,0.0000
487,0.0006
488,0.0011
489,0.0000
490,0.0000
491,0.0008
492,0.0001
493,0.0000
494,0.0000
495,0.0000
496,0.0000
497,0.0000
498,0.0000
499,0.0000
500,0.0002
501,0.0000
502,0.0004
503,0.0000
504,0.0000
505,0.0004
506,0.0003
507,0.0000
508,0.0000
509,0.0000
510,0.0000
511,0.0006
512,0.0000
513,0.0000
514,0.0000
515,0.0007
516,0.0005
517,0.0003
518,0.0004
519,0.0000
520,0.0000
521,0.0006
522,0.0006
523,0.0000
524,0.0000
525,0.0000
526,0.0002
527,0.0007
528,0.0001
529,0.0013
530,0.0008
531,0.0005
532,0.0000
533,0.0000
534,0.0000
535,0.0000
536,0.0000
537,0.0002
538,0.0005
539,0.0004
540,0.0015
541,0.0000
542,0.0001
543,0.0000
544,0.0027
545,0.0018
546,0.0023
547,0.0017
548,0.0007
549,0.0005
550,0.0000
551,0.0005
552,0.0004
553,0.0001
554,0.0005
555,0.0007
556,0.0000
557,0.0010
558,0.0000
559,0.0017
560,0.0018
561,0.0005
562,0.0003
563,0.0004
564,0.0006
565,0.0006
566,0.0007
567,0.0013
568,0.0010
569,0.0009
570,0.0008
571,0.0006
572,0.0010
573,0.0000
574,0.0008
575,0.0002
576,0.0011
577,0.0003
578,0.0005
579,0.0005
580,0.0001
581,0.0004
582,0.0009
583,0.0002
584,0.0013
585,0.0006
586,0.0006
587,0.0000
588,0.0003
589,0.0000
590,0.0000
591,0.0005
592,0.0014
593,0.0003
594,0.0004
595,0.0003
596,0.0011
597,0.0002
598,0.0009
599,0.0000
600,0.0005
601,0.0000
602,0.0000
603,0.0007
604,0.0000
605,0.0000
606,0.0000
607,0.0005
608,0.0000
609,0.0000
610,0.0010
611,0.0008
612,0.0000
613,0.0004
614,0.0000
615,0.0003
616,0.0000
617,0.0003
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0000
623,0.0000
624,0.0000
625,0.0000
626,0.0008
627,0.0000
628,0.0000
629,0.0000
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,0.1000
403,0.0000
404,1.0000
405,0.0000
406,0.1000
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0222
436,0.0000
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0017
467,0.0000
468,0.0000
469,0.0011
470,0.0000
471,0.0009
472,0.0000
473,0.0000
474,0.0000
475,0.0000
476,0.0000
477,0.0000
478,0.0000
479,0.0000
480,0.0008
481,0.0000
482,0.0000
483,0.0009
484,0.0006
485,0.0000
486,0.0006
487,0.0000
488,0.0003
489,0.0000
490,0.0000
491,0.0005
492,0.0000
493,0.0000
494,0.0000
495,0.0000
496,0.0000
497,0.0000
498,0.0009
499,0.0000
500,0.0003
501,0.0007
502,0.0000
503,0.0000
504,0.0000
505,0.0003
506,0.0000
507,0.0000
508,0.0003
509,0.0004
510,0.0000
511,0.0000
512,0.0000
513,0.0000
514,0.0000
515,0.0009
516,0.0006
517,0.0010
518,0.0006
519,0.0000
520,0.0000
521,0.0013
522,0.0002
523,0.0000
524,0.0000
525,0.0001
526,0.0004
527,0.0002
528,0.0000
529,0.0010
530,0.0000
531,0.0001
532,0.0000
533,0.0000
534,0.0000
535,0.0000
536,0.0000
537,0.0000
538,0.0001
539,0.0011
540,0.0010
541,0.0006
542,0.0002
543,0.0000
544,0.0016
545,0.0018
546,0.0026
547,0.0023
548,0.0008
549,0.0005
550,0.0006
551,0.0000
552,0.0011
553,0.0006
554,0.0007
555,0.0008
556,0.0000
557,0.0011
558,0.0003
559,0.0017
560,0.0017
561,0.0005
562,0.0006
563,0.0012
564,0.0002
565,0.0000
566,0.0011
567,0.0011
568,0.0005
569,0.0009
570,0.0004
571,0.0009
572,0.0012
573,0.0009
574,0.0004
575,0.0007
576,0.0008
577,0.0001
578,0.0014
579,0.0005
580,0.0000
581,0.0005
582,0.0011
583,0.0006
584,0.0007
585,0.0000
586,0.0007
587,0.0008
588,0.0009
589,0.0000
590,0.0006
591,0.0006
592,0.0007
593,0.0002
594,0.0001
595,0.0002
596,0.0012
597,0.0008
598,0.0004
599,0.0002
600,0.0006
601,0.0000
602,0.0005
603,0.0012
604,0.0003
605,0.0000
606,0.0000
607,0.0005
608,0.0000
609,0.0000
610,0.0010
611,0.0000
612,0.0000
613,0.0000
614,0.0000
615,0.0002
616,0.0000
617,0.0000
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0000
623,0.0000
624,0.0000
625,0.0003
626,0.0000
627,0.0000
628,0.0000
629,0.0002
630,0.0000
631,0.0000
632,0.0000
633,0.0001
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,1.0000
402,0.0000
403,1.0000
404,1.0000
405,0.3750
406,0.7400
407,1.0000
408,0.7500
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0433
436,0.0192
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0000
468,0.0000
469,0.0005
470,0.0000
471,0.0009
472,0.0000
473,0.0000
474,0.0000
475,0.0000
476,0.0000
477,0.0018
478,0.0000
479,0.0000
480,0.0015
481,0.0000
482,0.0000
483,0.0000
484,0.0000
485,0.0015
486,0.0000
487,0.0000
488,0.0000
489,0.0004
490,0.0000
491,0.0000
492,0.0000
493,0.0006
494,0.0000
495,0.0000
496,0.0000
497,0.0014
498,0.0011
499,0.0000
500,0.0013
501,0.0000
502,0.0000
503,0.0000
504,0.0000
505,0.0002
506,0.0008
507,0.0000
508,0.0000
509,0.0002
510,0.0000
511,0.0002
512,0.0000
513,0.0000
514,0.0006
515,0.0007
516,0.0009
517,0.0003
518,0.0008
519,0.0000
520,0.0002
521,0.0016
522,0.0010
523,0.0000
524,0.0000
525,0.0000
526,0.0003
527,0.0002
528,0.0000
529,0.0003
530,0.0000
531,0.0002
532,0.0000
533,0.0000
534,0.0000
535,0.0000
536,0.0008
537,0.0001
538,0.0000
539,0.0000
540,0.0006
541,0.0002
542,0.0000
543,0.0000
544,0.0023
545,0.0026
546,0.0019
547,0.0018
548,0.0009
549,0.0005
550,0.0005
551,0.0000
552,0.0005
553,0.0002
554,0.0008
555,0.0000
556,0.0000
557,0.0005
558,0.0003
559,0.0015
560,0.0016
561,0.0004
562,0.0000
563,0.0008
564,0.0007
565,0.0001
566,0.0008
567,0.0002
568,0.0000
569,0.0012
570,0.0003
571,0.0005
572,0.0005
573,0.0002
574,0.0009
575,0.0006
576,0.0014
577,0.0011
578,0.0016
579,0.0007
580,0.0006
581,0.0001
582,0.0000
583,0.0010
584,0.0012
585,0.0002
586,0.0005
587,0.0005
588,0.0008
589,0.0000
590,0.0004
591,0.0005
592,0.0012
593,0.0006
594,0.0007
595,0.0006
596,0.0000
597,0.0005
598,0.0004
599,0.0001
600,0.0008
601,0.0000
602,0.0000
603,0.0011
604,0.0000
605,0.0000
606,0.0000
607,0.0000
608,0.0002
609,0.0000
610,0.0004
611,0.0001
612,0.0000
613,0.0004
614,0.0000
615,0.0005
616,0.0000
617,0.0005
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0000
623,0.0000
624,0.0000
625,0.0001
626,0.0001
627,0.0000
628,0.0000
629,0.0000
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,1.0000
402,0.0000
403,0.0000
404,1.0000
405,0.8250
406,0.6200
407,1.0000
408,0.9000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0035
436,0.0000
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0014
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0000
468,0.0000
469,0.0000
470,0.0000
471,0.0005
472,0.0000
473,0.0000
474,0.0003
475,0.0000
476,0.0000
477,0.0000
478,0.0000
479,0.0018
480,0.0000
481,0.0000
482,0.0009
483,0.0000
484,0.0000
485,0.0000
486,0.0000
487,0.0000
488,0.0003
489,0.0000
490,0.0000
491,0.0013
492,0.0000
493,0.0000
494,0.0000
495,0.0000
496,0.0000
497,0.0003
498,0.0012
499,0.0002
500,0.0015
501,0.0006
502,0.0001
503,0.0000
504,0.0003
505,0.0002
506,0.0000
507,0.0000
508,0.0000
509,0.0003
510,0.0000
511,0.0004
512,0.0005
513,0.0000
514,0.0001
515,0.0008
516,0.0000
517,0.0010
518,0.0000
519,0.0000
520,0.0000
521,0.0008
522,0.0007
523,0.0000
524,0.0004
525,0.0000
526,0.0006
527,0.0002
528,0.0000
529,0.0010
530,0.0000
531,0.0000
532,0.0000
533,0.0000
534,0.0000
535,0.0000
536,0.0000
537,0.0000
538,0.0000
539,0.0000
540,0.0006
541,0.0000
542,0.0000
543,0.0006
544,0.0019
545,0.0014
546,0.0016
547,0.0022
548,0.0009
549,0.0000
550,0.0006
551,0.0002
552,0.0005
553,0.0000
554,0.0002
555,0.0007
556,0.0000
557,0.0005
558,0.0007
559,0.0012
560,0.0007
561,0.0001
562,0.0006
563,0.0005
564,0.0004
565,0.0005
566,0.0011
567,0.0006
568,0.0002
569,0.0007
570,0.0005
571,0.0003
572,0.0008
573,0.0005
574,0.0007
575,0.0004
576,0.0007
577,0.0005
578,0.0015
579,0.0008
580,0.0004
581,0.0000
582,0.0004
583,0.0000
584,0.0011
585,0.0001
586,0.0001
587,0.0005
588,0.0000
589,0.0000
590,0.0003
591,0.0011
592,0.0011
593,0.0001
594,0.0002
595,0.0000
596,0.0010
597,0.0001
598,0.0000
599,0.0000
600,0.0006
601,0.0000
602,0.0000
603,0.0012
604,0.0000
605,0.0000
606,0.0000
607,0.0005
608,0.0000
609,0.0000
610,0.0000
611,0.0000
612,0.0000
613,0.0005
614,0.0000
615,0.0001
616,0.0000
617,0.0000
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0001
623,0.0000
624,0.0000
625,0.0006
626,0.0000
627,0.0000
628,0.0000
629,0.0008
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0001
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.1875
402,1.0000
403,0.0000
404,1.0000
405,0.0000
406,0.4400
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0116
436,0.0000
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0002
449,0.0013
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0000
468,0.0000
469,0.0000
470,0.0000
471,0.0000
472,0.0000
473,0.0000
474,0.0014
475,0.0000
476,0.0009
477,0.0000
478,0.0000
479,0.0020
480,0.0004
481,0.0000
482,0.0000
483,0.0000
484,0.0000
485,0.0000
486,0.0000
487,0.0016
488,0.0011
489,0.0002
490,0.0000
491,0.0003
492,0.0000
493,0.0000
494,0.0003
495,0.0003
496,0.0000
497,0.0002
498,0.0010
499,0.0000
500,0.0015
501,0.0007
502,0.0005
503,0.0000
504,0.0003
505,0.0000
506,0.0006
507,0.0000
508,0.0001
509,0.0000
510,0.0000
511,0.0006
512,0.0000
513,0.0007
514,0.0000
515,0.0010
516,0.0006
517,0.0003
518,0.0001
519,0.0000
520,0.0000
521,0.0004
522,0.0008
523,0.0000
524,0.0005
525,0.0000
526,0.0002
527,0.0000
528,0.0000
529,0.0012
530,0.0000
531,0.0000
532,0.0007
533,0.0000
534,0.0000
535,0.0000
536,0.0000
537,0.0002
538,0.0004
539,0.0005
540,0.0018
541,0.0006
542,0.0000
543,0.0010
544,0.0023
545,0.0026
546,0.0025
547,0.0022
548,0.0001
549,0.0003
550,0.0000
551,0.0000
552,0.0014
553,0.0010
554,0.0002
555,0.0003
556,0.0005
557,0.0014
558,0.0007
559,0.0015
560,0.0014
561,0.0007
562,0.0005
563,0.0016
564,0.0005
565,0.0001
566,0.0015
567,0.0011
568,0.0007
569,0.0014
570,0.0007
571,0.0017
572,0.0007
573,0.0010
574,0.0005
575,0.0000
576,0.0005
577,0.0017
578,0.0012
579,0.0012
580,0.0006
581,0.0003
582,0.0012
583,0.0010
584,0.0020
585,0.0000
586,0.0003
587,0.0007
588,0.0007
589,0.0000
590,0.0014
591,0.0007
592,0.0021
593,0.0001
594,0.0006
595,0.0000
596,0.0003
597,0.0005
598,0.0002
599,0.0005
600,0.0008
601,0.0000
602,0.0000
603,0.0008
604,0.0000
605,0.0003
606,0.0003
607,0.0002
608,0.0001
609,0.0000
610,0.0002
611,0.0004
612,0.0000
613,0.0000
614,0.0001
615,0.0004
616,0.0000
617,0.0001
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0000
623,0.0000
624,0.0000
625,0.0001
626,0.0005
627,0.0000
628,0.0000
629,0.0000
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,0.5500
403,0.0000
404,1.0000
405,0.5000
406,0.2200
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0425
436,0.0004
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0020
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0021
468,0.0000
469,0.0000
470,0.0000
471,0.0030
472,0.0000
473,0.0000
474,0.0004
475,0.0000
476,0.0000
477,0.0000
478,0.0000
479,0.0000
480,0.0000
481,0.0000
482,0.0000
483,0.0000
484,0.0010
485,0.0008
486,0.0006
487,0.0004
488,0.0006
489,0.0000
490,0.0000
491,0.0000
492,0.0000
493,0.0010
494,0.0015
495,0.0007
496,0.0000
497,0.0013
498,0.0016
499,0.0011
500,0.0008
501,0.0000
502,0.0000
503,0.0000
504,0.0009
505,0.0003
506,0.0010
507,0.0000
508,0.0011
509,0.0006
510,0.0000
511,0.0009
512,0.0004
513,0.0000
514,0.0000
515,0.0006
516,0.0005
517,0.0003
518,0.0012
519,0.0006
520,0.0002
521,0.0009
522,0.0005
523,0.0008
524,0.0002
525,0.0000
526,0.0009
527,0.0000
528,0.0000
529,0.0010
530,0.0002
531,0.0000
532,0.0002
533,0.0000
534,0.0002
535,0.0000
536,0.0004
537,0.0000
538,0.0002
539,0.0007
540,0.0009
541,0.0004
542,0.0002
543,0.0010
544,0.0031
545,0.0034
546,0.0034
547,0.0024
548,0.0010
549,0.0014
550,0.0018
551,0.0011
552,0.0014
553,0.0015
554,0.0011
555,0.0010
556,0.0014
557,0.0013
558,0.0007
559,0.0023
560,0.0021
561,0.0017
562,0.0009
563,0.0010
564,0.0007
565,0.0000
566,0.0014
567,0.0006
568,0.0004
569,0.0012
570,0.0011
571,0.0014
572,0.0013
573,0.0008
574,0.0014
575,0.0009
576,0.0016
577,0.0016
578,0.0024
579,0.0008
580,0.0010
581,0.0014
582,0.0010
583,0.0008
584,0.0014
585,0.0010
586,0.0007
587,0.0011
588,0.0011
589,0.0000
590,0.0010
591,0.0006
592,0.0017
593,0.0008
594,0.0004
595,0.0004
596,0.0012
597,0.0008
598,0.0000
599,0.0011
600,0.0011
601,0.0000
602,0.0000
603,0.0011
604,0.0005
605,0.0006
606,0.0005
607,0.0005
608,0.0007
609,0.0000
610,0.0009
611,0.0009
612,0.0005
613,0.0006
614,0.0000
615,0.0003
616,0.0000
617,0.0014
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0007
623,0.0002
624,0.0000
625,0.0008
626,0.0005
627,0.0000
628,0.0000
629,0.0006
630,0.0000
631,0.0000
632,0.0001
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0001
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0002
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.3000
402,0.0000
403,0.0000
404,0.4501
405,0.9750
406,0.0000
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0206
435,0.0532
436,0.0508
437,0.0016
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0016
446,0.0000
447,0.0000
448,0.0000
449,0.0039
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0051
456,0.0000
457,0.0012
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0044
464,0.0000
465,0.0000
466,0.0040
467,0.0000
468,0.0008
469,0.0024
470,0.0004
471,0.0030
472,0.0006
473,0.0000
474,0.0010
475,0.0000
476,0.0013
477,0.0000
478,0.0000
479,0.0018
480,0.0000
481,0.0002
482,0.0014
483,0.0002
484,0.0020
485,0.0015
486,0.0010
487,0.0012
488,0.0008
489,0.0000
490,0.0000
491,0.0021
492,0.0000
493,0.0002
494,0.0007
495,0.0013
496,0.0000
497,0.0005
498,0.0019
499,0.0000
500,0.0008
501,0.0011
502,0.0009
503,0.0001
504,0.0019
505,0.0005
506,0.0020
507,0.0000
508,0.0009
509,0.0007
510,0.0011
511,0.0011
512,0.0008
513,0.0007
514,0.0007
515,0.0008
516,0.0016
517,0.0008
518,0.0010
519,0.0003
520,0.0000
521,0.0013
522,0.0013
523,0.0002
524,0.0004
525,0.0000
526,0.0000
527,0.0014
528,0.0000
529,0.0009
530,0.0010
531,0.0010
532,0.0000
533,0.0001
534,0.0007
535,0.0006
536,0.0011
537,0.0008
538,0.0008
539,0.0016
540,0.0021
541,0.0015
542,0.0005
543,0.0010
544,0.0032
545,0.0043
546,0.0054
547,0.0048
548,0.0023
549,0.0008
550,0.0024
551,0.0011
552,0.0026
553,0.0022
554,0.0021
555,0.0016
556,0.0021
557,0.0019
558,0.0019
559,0.0031
560,0.0025
561,0.0023
562,0.0018
563,0.0028
564,0.0023
565,0.0012
566,0.0020
567,0.0020
568,0.0024
569,0.0026
570,0.0020
571,0.0018
572,0.0023
573,0.0021
574,0.0027
575,0.0019
576,0.0022
577,0.0023
578,0.0037
579,0.0026
580,0.0020
581,0.0020
582,0.0026
583,0.0015
584,0.0024
585,0.0012
586,0.0018
587,0.0017
588,0.0020
589,0.0009
590,0.0011
591,0.0018
592,0.0025
593,0.0027
594,0.0021
595,0.0022
596,0.0026
597,0.0024
598,0.0014
599,0.0015
600,0.0017
601,0.0005
602,0.0016
603,0.0022
604,0.0011
605,0.0014
606,0.0011
607,0.0011
608,0.0014
609,0.0007
610,0.0013
611,0.0017
612,0.0012
613,0.0010
614,0.0007
615,0.0008
616,0.0008
617,0.0009
618,0.0010
619,0.0006
620,0.0000
621,0.0002
622,0.0008
623,0.0007
624,0.0000
625,0.0006
626,0.0011
627,0.0006
628,0.0000
629,0.0002
630,0.0000
631,0.0000
632,0.0004
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0002
640,0.0000
641,0.0000
642,0.0001
643,0.0000
644,0.0002
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.2250
402,0.0000
403,0.0000
404,1.0000
405,0.4500
406,0.0000
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0345
436,0.0472
437,0.0000
438,0.0090
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0000
446,0.0049
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0033
452,0.0000
453,0.0000
454,0.0000
455,0.0034
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0000
467,0.0000
468,0.0000
469,0.0000
470,0.0017
471,0.0030
472,0.0000
473,0.0011
474,0.0007
475,0.0000
476,0.0000
477,0.0006
478,0.0000
479,0.0023
480,0.0027
481,0.0000
482,0.0002
483,0.0000
484,0.0000
485,0.0004
486,0.0010
487,0.0000
488,0.0011
489,0.0000
490,0.0000
491,0.0021
492,0.0000
493,0.0000
494,0.0000
495,0.0003
496,0.0000
497,0.0005
498,0.0017
499,0.0001
500,0.0012
501,0.0007
502,0.0000
503,0.0003
504,0.0004
505,0.0004
506,0.0009
507,0.0000
508,0.0009
509,0.0009
510,0.0006
511,0.0010
512,0.0001
513,0.0006
514,0.0002
515,0.0003
516,0.0003
517,0.0000
518,0.0000
519,0.0005
520,0.0000
521,0.0012
522,0.0004
523,0.0000
524,0.0005
525,0.0000
526,0.0002
527,0.0007
528,0.0001
529,0.0013
530,0.0000
531,0.0000
532,0.0004
533,0.0000
534,0.0002
535,0.0000
536,0.0003
537,0.0004
538,0.0008
539,0.0001
540,0.0016
541,0.0006
542,0.0008
543,0.0004
544,0.0028
545,0.0035
546,0.0033
547,0.0022
548,0.0012
549,0.0003
550,0.0000
551,0.0008
552,0.0013
553,0.0013
554,0.0018
555,0.0007
556,0.0003
557,0.0019
558,0.0012
559,0.0025
560,0.0009
561,0.0004
562,0.0010
563,0.0017
564,0.0010
565,0.0005
566,0.0009
567,0.0012
568,0.0014
569,0.0020
570,0.0002
571,0.0018
572,0.0016
573,0.0008
574,0.0008
575,0.0012
576,0.0016
577,0.0011
578,0.0017
579,0.0011
580,0.0001
581,0.0003
582,0.0005
583,0.0016
584,0.0024
585,0.0010
586,0.0005
587,0.0004
588,0.0011
589,0.0001
590,0.0014
591,0.0009
592,0.0009
593,0.0008
594,0.0011
595,0.0008
596,0.0012
597,0.0011
598,0.0004
599,0.0010
600,0.0011
601,0.0005
602,0.0003
603,0.0009
604,0.0000
605,0.0000
606,0.0005
607,0.0011
608,0.0013
609,0.0008
610,0.0009
611,0.0007
612,0.0008
613,0.0000
614,0.0000
615,0.0006
616,0.0001
617,0.0005
618,0.0000
619,0.0000
620,0.0001
621,0.0000
622,0.0004
623,0.0001
624,0.0000
625,0.0000
626,0.0001
627,0.0002
628,0.0000
629,0.0005
630,0.0000
631,0.0000
632,0.0000
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0001
644,0.0001
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0000
658,0.0000
659,0.0000
660,0.0000
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,1.0000
402,0.0000
403,0.0000
404,1.0000
405,0.2500
406,0.4000
407,1.0000
408,1.0000
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0001
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0299
436,0.0234
437,0.0000
438,0.0000
439,0.0000
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0052
446,0.0000
447,0.0000
448,0.0000
449,0.0000
450,0.0000
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0000
458,0.0000
459,0.0000
460,0.0000
461,0.0000
462,0.0000
463,0.0000
464,0.0000
465,0.0000
466,0.0039
467,0.0000
468,0.0000
469,0.0000
470,0.0000
471,0.0030
472,0.0000
473,0.0000
474,0.0007
475,0.0000
476,0.0000
477,0.0011
478,0.0000
479,0.0023
480,0.0000
481,0.0000
482,0.0000
483,0.0011
484,0.0000
485,0.0011
486,0.0000
487,0.0006
488,0.0008
489,0.0004
490,0.0000
491,0.0013
492,0.0000
493,0.0013
494,0.0007
495,0.0009
496,0.0000
497,0.0002
498,0.0006
499,0.0007
500,0.0020
501,0.0011
502,0.0004
503,0.0001
504,0.0006
505,0.0007
506,0.0006
507,0.0000
508,0.0000
509,0.0011
510,0.0000
511,0.0012
512,0.0009
513,0.0000
514,0.0007
515,0.0013
516,0.0009
517,0.0010
518,0.0008
519,0.0000
520,0.0000
521,0.0016
522,0.0010
523,0.0000
524,0.0001
525,0.0000
526,0.0008
527,0.0012
528,0.0000
529,0.0013
530,0.0000
531,0.0006
532,0.0001
533,0.0000
534,0.0003
535,0.0002
536,0.0010
537,0.0006
538,0.0006
539,0.0012
540,0.0006
541,0.0005
542,0.0005
543,0.0007
544,0.0034
545,0.0044
546,0.0038
547,0.0028
548,0.0006
549,0.0009
550,0.0010
551,0.0011
552,0.0007
553,0.0011
554,0.0019
555,0.0014
556,0.0014
557,0.0010
558,0.0008
559,0.0018
560,0.0016
561,0.0010
562,0.0012
563,0.0024
564,0.0018
565,0.0009
566,0.0025
567,0.0011
568,0.0008
569,0.0014
570,0.0010
571,0.0007
572,0.0016
573,0.0014
574,0.0020
575,0.0012
576,0.0013
577,0.0020
578,0.0026
579,0.0012
580,0.0006
581,0.0009
582,0.0016
583,0.0015
584,0.0025
585,0.0005
586,0.0011
587,0.0013
588,0.0008
589,0.0002
590,0.0009
591,0.0010
592,0.0014
593,0.0014
594,0.0018
595,0.0005
596,0.0017
597,0.0010
598,0.0007
599,0.0005
600,0.0014
601,0.0000
602,0.0005
603,0.0018
604,0.0003
605,0.0005
606,0.0003
607,0.0005
608,0.0010
609,0.0009
610,0.0007
611,0.0008
612,0.0001
613,0.0005
614,0.0001
615,0.0006
616,0.0000
617,0.0007
618,0.0000
619,0.0000
620,0.0000
621,0.0000
622,0.0009
623,0.0000
624,0.0000
625,0.0007
626,0.0000
627,0.0004
628,0.0000
629,0.0005
630,0.0000
631,0.0000
632,0.0001
633,0.0000
634,0.0000
635,0.0000
636,0.0000
637,0.0000
638,0.0000
639,0.0000
640,0.0000
641,0.0000
642,0.0000
643,0.0000
644,0.0000
645,0.0000
646,0.0000
647,0.0000
648,0.0000
649,0.0000
650,0.0000
651,0.0000
652,0.0000
653,0.0000
654,0.0000
655,0.0000
656,0.0000
657,0.0003
658,0.0000
659,0.0000
660,0.0001
661,0.0000
662,0.0000
663,0.0000
664,0.0000
665,0.0000
666,0.0000
667,0.0000
668,0.0000
669,0.0000
670,0.0000
671,0.0000
672,0.0000
673,0.0000
674,0.0000
675,0.0000
676,0.0000
677,0.0000
678,0.0000
679,0.0000
680,0.0000
681,0.0000
682,0.0000
683,0.0000
684,0.0000
685,0.0000
686,0.0000
687,0.0000
688,0.0000
689,0.0000
690,0.0000
691,0.0000
692,0.0000
693,0.0000
694,0.0000
695,0.0000
696,0.0000
697,0.0000
698,0.0000
699,0.0000
700,0.0000
701,0.0000
702,0.0000
703,0.0000
704,0.0000
705,0.0000
706,0.0000
707,0.0000
708,0.0000
709,0.0000
710,0.0000
711,0.0000
712,0.0000
713,0.0000
714,0.0000
715,0.0000
716,0.0000
717,0.0000
718,0.0000
719,0.0000
720,0.0000
721,0.0000
722,0.0000
723,0.0000
724,0.0000
725,0.0000
726,0.0000
727,0.0000
728,0.0000
729,0.0000
730,0.0000
731,0.0000
732,0.0000
733,0.0000
734,0.0000
735,0.0000
736,0.0000
737,0.0000
738,0.0000
739,0.0000
740,0.0000
741,0.0000
742,0.0000
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0000
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0000
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,0.0000
403,0.0000
404,0.0000
405,0.0000
406,0.1200
407,1.0000
408,0.9500
409,0.0000
410,0.0000
411,0.0000
412,0.0000
413,0.0000
414,0.0000
415,0.0000
416,0.0000
417,0.0000
418,0.0000
419,0.0000
420,0.0000
421,0.0000
422,0.0000
423,0.0000
424,0.0000
425,0.0000
426,0.0000
427,0.0000
428,0.0000
429,0.0000
430,0.0000
431,0.0000
432,0.0000
433,0.0000
434,0.0000
435,0.0358
436,0.0509
437,0.0119
438,0.0000
439,0.0110
440,0.0000
441,0.0000
442,0.0000
443,0.0000
444,0.0000
445,0.0070
446,0.0032
447,0.0000
448,0.0029
449,0.0000
450,0.0018
451,0.0000
452,0.0000
453,0.0000
454,0.0000
455,0.0000
456,0.0000
457,0.0011
458,0.0000
459,0.0000
460,0.0000
461,0.0010
462,0.0000
463,0.0006
464,0.0001
465,0.0000
466,0.0005
467,0.0016
468,0.0016
469,0.0020
470,0.0022
471,0.0043
472,0.0006
473,0.0015
474,0.0017
475,0.0010
476,0.0000
477,0.0023
478,0.0000
479,0.0046
480,0.0015
481,0.0009
482,0.0023
483,0.0006
484,0.0010
485,0.0015
486,0.0031
487,0.0032
488,0.0034
489,0.0010
490,0.0025
491,0.0034
492,0.0018
493,0.0021
494,0.0024
495,0.0013
496,0.0000
497,0.0032
498,0.0027
499,0.0036
500,0.0038
501,0.0035
502,0.0024
503,0.0004
504,0.0018
505,0.0012
506,0.0020
507,0.0009
508,0.0019
509,0.0011
510,0.0011
511,0.0021
512,0.0022
513,0.0017
514,0.0016
515,0.0024
516,0.0021
517,0.0019
518,0.0018
519,0.0011
520,0.0002
521,0.0017
522,0.0020
523,0.0017
524,0.0015
525,0.0014
526,0.0017
527,0.0020
528,0.0016
529,0.0025
530,0.0017
531,0.0017
532,0.0005
533,0.0008
534,0.0014
535,0.0016
536,0.0017
537,0.0023
538,0.0021
539,0.0026
540,0.0022
541,0.0020
542,0.0023
543,0.0028
544,0.0045
545,0.0052
546,0.0056
547,0.0045
548,0.0035
549,0.0023
550,0.0028
551,0.0026
552,0.0034
553,0.0030
554,0.0030
555,0.0041
556,0.0019
557,0.0026
558,0.0031
559,0.0042
560,0.0026
561,0.0023
562,0.0029
563,0.0031
564,0.0032
565,0.0031
566,0.0026
567,0.0027
568,0.0026
569,0.0032
570,0.0026
571,0.0024
572,0.0025
573,0.0018
574,0.0025
575,0.0026
576,0.0032
577,0.0036
578,0.0038
579,0.0032
580,0.0029
581,0.0020
582,0.0032
583,0.0027
584,0.0032
585,0.0030
586,0.0025
587,0.0027
588,0.0024
589,0.0014
590,0.0031
591,0.0024
592,0.0029
593,0.0026
594,0.0022
595,0.0023
596,0.0030
597,0.0028
598,0.0028
599,0.0023
600,0.0033
601,0.0019
602,0.0019
603,0.0031
604,0.0017
605,0.0023
606,0.0023
607,0.0029
608,0.0021
609,0.0029
610,0.0027
611,0.0019
612,0.0021
613,0.0022
614,0.0019
615,0.0023
616,0.0012
617,0.0015
618,0.0017
619,0.0010
620,0.0005
621,0.0015
622,0.0018
623,0.0019
624,0.0011
625,0.0021
626,0.0014
627,0.0010
628,0.0008
629,0.0020
630,0.0014
631,0.0008
632,0.0017
633,0.0015
634,0.0012
635,0.0009
636,0.0018
637,0.0007
638,0.0017
639,0.0012
640,0.0019
641,0.0015
642,0.0014
643,0.0008
644,0.0020
645,0.0008
646,0.0014
647,0.0003
648,0.0014
649,0.0008
650,0.0011
651,0.0009
652,0.0001
653,0.0005
654,0.0009
655,0.0008
656,0.0005
657,0.0020
658,0.0002
659,0.0010
660,0.0008
661,0.0011
662,0.0005
663,0.0005
664,0.0000
665,0.0017
666,0.0007
667,0.0005
668,0.0005
669,0.0010
670,0.0013
671,0.0008
672,0.0000
673,0.0002
674,0.0008
675,0.0005
676,0.0000
677,0.0000
678,0.0013
679,0.0000
680,0.0005
681,0.0009
682,0.0003
683,0.0000
684,0.0000
685,0.0002
686,0.0013
687,0.0001
688,0.0002
689,0.0001
690,0.0001
691,0.0001
692,0.0000
693,0.0000
694,0.0004
695,0.0005
696,0.0000
697,0.0000
698,0.0000
699,0.0001
700,0.0000
701,0.0001
702,0.0009
703,0.0003
704,0.0000
705,0.0002
706,0.0000
707,0.0000
708,0.0002
709,0.0000
710,0.0006
711,0.0000
712,0.0003
713,0.0000
714,0.0000
715,0.0000
716,0.0002
717,0.0013
718,0.0000
719,0.0000
720,0.0000
721,0.0007
722,0.0000
723,0.0000
724,0.0000
725,0.0007
726,0.0000
727,0.0000
728,0.0002
729,0.0001
730,0.0000
731,0.0000
732,0.0003
733,0.0000
734,0.0003
735,0.0000
736,0.0000
737,0.0000
738,0.0007
739,0.0004
740,0.0000
741,0.0000
742,0.0001
743,0.0000
744,0.0000
745,0.0000
746,0.0000
747,0.0000
748,0.0000
749,0.0000
750,0.0000
751,0.0000
752,0.0000
753,0.0000
754,0.0000
755,0.0000
756,0.0000
757,0.0000
758,0.0000
759,0.0000
760,0.0000
761,0.0000
762,0.0000
763,0.0000
764,0.0000
765,0.0000
766,0.0000
767,0.0000
768,0.0000
769,0.0000
770,0.0000
771,0.0000
772,0.0000
773,0.0000
774,0.0000
775,0.0000
776,0.0000
777,0.0000
778,0.0000
779,0.0000
780,0.0000
781,0.0000
782,0.0000
783,0.0000
784,0.0000
785,0.0000
786,0.0000
787,0.0000
788,0.0000
789,0.0000
790,0.0000
791,0.0000
792,0.0000
793,0.0000
794,0.0001
795,0.0000
796,0.0000
797,0.0000
798,0.0000
799,0.0000
800,0.0000
801,0.0000
802,0.0000
803,0.0000
804,0.0000
805,0.0000
806,0.0000
807,0.0000
808,0.0000
809,0.0000
810,0.0000
811,0.0000
812,0.0000
813,0.0000
814,0.0000
815,0.0000
816,0.0000
817,0.0000
818,0.0000
819,0.0000
820,0.0000
821,0.0000
822,0.0000
823,0.0000
824,0.0001
825,0.0000
826,0.0000
827,0.0000
828,0.0000
829,0.0000
830,0.0000
831,0.0000
832,0.0000
833,0.0000
834,0.0000
835,0.0000
836,0.0000
837,0.0000
838,0.0000
839,0.0000
840,0.0000
841,0.0000
842,0.0000
843,0.0000
844,0.0000
845,0.0000
846,0.0000
847,0.0000
848,0.0000
849,0.0000
850,0.0000
851,0.0000
852,0.0000
853,0.0000
854,0.0000
855,0.0000
856,0.0000
857,0.0000
858,0.0000
859,0.0000
860,0.0000
861,0.0000
862,0.0000
863,0.0000
864,0.0000
865,0.0000
866,0.0000
867,0.0000
868,0.0000
869,0.0000
870,0.0000
871,0.0000
872,0.0000
873,0.0000
874,0.0000
875,0.0000
876,0.0000
877,0.0000
878,0.0000
879,0.0000
880,0.0000
881,0.0000
882,0.0000
883,0.0000
884,0.0000
885,0.0000
886,0.0000
887,0.0000
888,0.0000
889,0.0000
890,0.0000
891,0.0000
892,0.0000
893,0.0000
894,0.0000
895,0.0000
896,0.0000
897,0.0000
898,0.0000
899,0.0000
900,0.0000
901,0.0000
902,0.0000
903,0.0000
904,0.0000
905,0.0000
906,0.0000
907,0.0000
908,0.0000
909,0.0000
910,0.0000
911,0.0000
912,0.0000
913,0.0000
914,0.0000
915,0.0000
916,0.0000
917,0.0000
918,0.0000
919,0.0000
920,0.0000
921,0.0000
922,0.0000
923,0.0000
924,0.0000
925,0.0000
926,0.0000
927,0.0000
928,0.0000
929,0.0000
930,0.0000
931,0.0000
932,0.0000
933,0.0000
934,0.0000
935,0.0000
936,0.0000
937,0.0000
938,0.0000
939,0.0000
940,0.0000
941,0.0000
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.6750
402,0.1500
403,1.0000
404,0.1500
405,1.0000
406,1.0000
407,0.1500
408,0.6000
409,0.0000
410,0.0000
411,0.0033
412,0.1097
413,0.0433
414,0.0527
415,0.0194
416,0.0793
417,0.0838
418,0.1223
419,0.0600
420,0.0488
421,0.0254
422,0.0822
423,0.0839
424,0.0089
425,0.1020
426,0.0210
427,0.1458
428,0.1056
429,0.0221
430,0.0803
431,0.0514
432,0.1055
433,0.0491
434,0.0689
435,0.1671
436,0.1362
437,0.1447
438,0.0987
439,0.0943
440,0.0996
441,0.0736
442,0.0917
443,0.1001
444,0.0872
445,0.0963
446,0.0976
447,0.0700
448,0.0711
449,0.0801
450,0.0667
451,0.0628
452,0.0566
453,0.0516
454,0.0441
455,0.0564
456,0.0440
457,0.0565
458,0.0498
459,0.0457
460,0.0440
461,0.0452
462,0.0526
463,0.0453
464,0.0449
465,0.0405
466,0.0541
467,0.0532
468,0.0486
469,0.0477
470,0.0434
471,0.0475
472,0.0393
473,0.0362
474,0.0441
475,0.0374
476,0.0364
477,0.0368
478,0.0336
479,0.0370
480,0.0383
481,0.0328
482,0.0326
483,0.0331
484,0.0349
485,0.0336
486,0.0304
487,0.0329
488,0.0332
489,0.0315
490,0.0312
491,0.0300
492,0.0311
493,0.0311
494,0.0308
495,0.0292
496,0.0258
497,0.0269
498,0.0270
499,0.0287
500,0.0262
501,0.0246
502,0.0244
503,0.0225
504,0.0252
505,0.0239
506,0.0238
507,0.0221
508,0.0236
509,0.0233
510,0.0221
511,0.0226
512,0.0227
513,0.0212
514,0.0216
515,0.0220
516,0.0214
517,0.0215
518,0.0201
519,0.0196
520,0.0194
521,0.0209
522,0.0211
523,0.0203
524,0.0205
525,0.0213
526,0.0211
527,0.0216
528,0.0207
529,0.0216
530,0.0209
531,0.0209
532,0.0216
533,0.0223
534,0.0226
535,0.0227
536,0.0236
537,0.0239
538,0.0236
539,0.0254
540,0.0256
541,0.0261
542,0.0265
543,0.0267
544,0.0294
545,0.0286
546,0.0319
547,0.0312
548,0.0297
549,0.0297
550,0.0279
551,0.0302
552,0.0302
553,0.0290
554,0.0293
555,0.0298
556,0.0303
557,0.0308
558,0.0297
559,0.0305
560,0.0294
561,0.0303
562,0.0301
563,0.0299
564,0.0291
565,0.0290
566,0.0297
567,0.0289
568,0.0279
569,0.0294
570,0.0296
571,0.0295
572,0.0300
573,0.0290
574,0.0291
575,0.0289
576,0.0315
577,0.0310
578,0.0320
579,0.0309
580,0.0300
581,0.0310
582,0.0304
583,0.0313
584,0.0324
585,0.0318
586,0.0326
587,0.0329
588,0.0320
589,0.0318
590,0.0331
591,0.0354
592,0.0339
593,0.0347
594,0.0338
595,0.0349
596,0.0349
597,0.0358
598,0.0354
599,0.0361
600,0.0359
601,0.0351
602,0.0347
603,0.0367
604,0.0354
605,0.0351
606,0.0341
607,0.0353
608,0.0357
609,0.0352
610,0.0367
611,0.0355
612,0.0346
613,0.0346
614,0.0344
615,0.0354
616,0.0331
617,0.0336
618,0.0348
619,0.0334
620,0.0334
621,0.0338
622,0.0332
623,0.0336
624,0.0318
625,0.0327
626,0.0330
627,0.0331
628,0.0321
629,0.0336
630,0.0326
631,0.0316
632,0.0325
633,0.0330
634,0.0328
635,0.0317
636,0.0330
637,0.0330
638,0.0333
639,0.0324
640,0.0337
641,0.0338
642,0.0326
643,0.0327
644,0.0325
645,0.0334
646,0.0333
647,0.0325
648,0.0337
649,0.0342
650,0.0329
651,0.0353
652,0.0340
653,0.0346
654,0.0336
655,0.0332
656,0.0328
657,0.0335
658,0.0328
659,0.0330
660,0.0332
661,0.0319
662,0.0322
663,0.0325
664,0.0308
665,0.0330
666,0.0314
667,0.0324
668,0.0310
669,0.0309
670,0.0317
671,0.0304
672,0.0303
673,0.0303
674,0.0302
675,0.0305
676,0.0298
677,0.0290
678,0.0294
679,0.0277
680,0.0273
681,0.0294
682,0.0283
683,0.0277
684,0.0283
685,0.0279
686,0.0280
687,0.0257
688,0.0282
689,0.0259
690,0.0274
691,0.0271
692,0.0265
693,0.0267
694,0.0271
695,0.0273
696,0.0256
697,0.0259
698,0.0253
699,0.0260
700,0.0257
701,0.0260
702,0.0262
703,0.0258
704,0.0244
705,0.0251
706,0.0260
707,0.0245
708,0.0259
709,0.0262
710,0.0255
711,0.0243
712,0.0257
713,0.0258
714,0.0255
715,0.0246
716,0.0247
717,0.0251
718,0.0229
719,0.0236
720,0.0225
721,0.0229
722,0.0223
723,0.0224
724,0.0226
725,0.0233
726,0.0225
727,0.0221
728,0.0227
729,0.0227
730,0.0211
731,0.0213
732,0.0222
733,0.0233
734,0.0226
735,0.0213
736,0.0207
737,0.0214
738,0.0224
739,0.0215
740,0.0213
741,0.0205
742,0.0204
743,0.0196
744,0.0190
745,0.0197
746,0.0200
747,0.0192
748,0.0188
749,0.0192
750,0.0189
751,0.0178
752,0.0187
753,0.0176
754,0.0183
755,0.0184
756,0.0178
757,0.0163
758,0.0173
759,0.0173
760,0.0174
761,0.0161
762,0.0165
763,0.0159
764,0.0176
765,0.0155
766,0.0161
767,0.0158
768,0.0155
769,0.0157
770,0.0161
771,0.0158
772,0.0150
773,0.0137
774,0.0143
775,0.0161
776,0.0146
777,0.0152
778,0.0151
779,0.0153
780,0.0143
781,0.0128
782,0.0149
783,0.0142
784,0.0131
785,0.0141
786,0.0143
787,0.0128
788,0.0134
789,0.0140
790,0.0127
791,0.0133
792,0.0133
793,0.0128
794,0.0139
795,0.0136
796,0.0140
797,0.0128
798,0.0135
799,0.0133
800,0.0139
801,0.0143
802,0.0141
803,0.0142
804,0.0133
805,0.0140
806,0.0143
807,0.0134
808,0.0137
809,0.0124
810,0.0128
811,0.0129
812,0.0138
813,0.0129
814,0.0125
815,0.0117
816,0.0122
817,0.0120
818,0.0129
819,0.0122
820,0.0111
821,0.0123
822,0.0126
823,0.0125
824,0.0126
825,0.0105
826,0.0112
827,0.0122
828,0.0102
829,0.0107
830,0.0108
831,0.0104
832,0.0112
833,0.0101
834,0.0095
835,0.0098
836,0.0098
837,0.0098
838,0.0089
839,0.0109
840,0.0089
841,0.0098
842,0.0093
843,0.0092
844,0.0092
845,0.0084
846,0.0083
847,0.0089
848,0.0074
849,0.0081
850,0.0079
851,0.0075
852,0.0075
853,0.0085
854,0.0081
855,0.0079
856,0.0085
857,0.0069
858,0.0068
859,0.0076
860,0.0063
861,0.0068
862,0.0076
863,0.0071
864,0.0068
865,0.0065
866,0.0058
867,0.0064
868,0.0056
869,0.0057
870,0.0055
871,0.0049
872,0.0053
873,0.0051
874,0.0054
875,0.0059
876,0.0045
877,0.0053
878,0.0045
879,0.0041
880,0.0054
881,0.0058
882,0.0049
883,0.0057
884,0.0048
885,0.0049
886,0.0057
887,0.0051
888,0.0059
889,0.0052
890,0.0062
891,0.0058
892,0.0058
893,0.0062
894,0.0060
895,0.0053
896,0.0055
897,0.0058
898,0.0064
899,0.0053
900,0.0051
901,0.0053
902,0.0054
903,0.0056
904,0.0057
905,0.0050
906,0.0066
907,0.0057
908,0.0055
909,0.0053
910,0.0055
911,0.0053
912,0.0042
913,0.0045
914,0.0047
915,0.0048
916,0.0043
917,0.0029
918,0.0049
919,0.0038
920,0.0033
921,0.0044
922,0.0038
923,0.0045
924,0.0033
925,0.0035
926,0.0038
927,0.0041
928,0.0037
929,0.0023
930,0.0033
931,0.0032
932,0.0023
933,0.0018
934,0.0027
935,0.0028
936,0.0013
937,0.0014
938,0.0005
939,0.0000
940,0.0008
941,0.0002
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.7001
407,0.0000
408,0.0000
409,1.0000
410,0.7482
411,0.7579
412,0.8038
413,0.6985
414,0.6652
415,0.7790
416,0.8328
417,0.7046
418,0.8508
419,0.8063
420,0.8185
421,0.8384
422,0.7640
423,0.7329
424,0.7153
425,0.6956
426,0.7779
427,0.7449
428,0.7290
429,0.6206
430,0.6993
431,0.6696
432,0.6223
433,0.6035
434,0.5749
435,0.6035
436,0.5746
437,0.6285
438,0.5708
439,0.5693
440,0.6143
441,0.5776
442,0.5817
443,0.6271
444,0.5713
445,0.5548
446,0.5275
447,0.4807
448,0.4862
449,0.4323
450,0.4059
451,0.3802
452,0.3585
453,0.3246
454,0.3088
455,0.3037
456,0.2891
457,0.2777
458,0.2745
459,0.2660
460,0.2644
461,0.2672
462,0.2604
463,0.2670
464,0.2651
465,0.2592
466,0.2613
467,0.2532
468,0.2506
469,0.2417
470,0.2383
471,0.2374
472,0.2231
473,0.2192
474,0.2015
475,0.1997
476,0.1931
477,0.1835
478,0.1797
479,0.1721
480,0.1791
481,0.1682
482,0.1671
483,0.1630
484,0.1653
485,0.1588
486,0.1601
487,0.1583
488,0.1556
489,0.1521
490,0.1504
491,0.1438
492,0.1372
493,0.1377
494,0.1299
495,0.1267
496,0.1228
497,0.1207
498,0.1131
499,0.1176
500,0.1103
501,0.1056
502,0.1088
503,0.1045
504,0.1043
505,0.1065
506,0.1046
507,0.1039
508,0.1039
509,0.1033
510,0.1038
511,0.1041
512,0.1022
513,0.1018
514,0.0983
515,0.0942
516,0.0924
517,0.0891
518,0.0894
519,0.0880
520,0.0870
521,0.0895
522,0.0874
523,0.0859
524,0.0863
525,0.0871
526,0.0891
527,0.0875
528,0.0877
529,0.0899
530,0.0890
531,0.0904
532,0.0918
533,0.0933
534,0.0946
535,0.0940
536,0.0981
537,0.0984
538,0.0981
539,0.1018
540,0.1035
541,0.1019
542,0.1018
543,0.1039
544,0.1059
545,0.1098
546,0.1090
547,0.1088
548,0.1107
549,0.1114
550,0.1133
551,0.1130
552,0.1144
553,0.1184
554,0.1188
555,0.1190
556,0.1192
557,0.1224
558,0.1212
559,0.1239
560,0.1226
561,0.1233
562,0.1246
563,0.1231
564,0.1231
565,0.1248
566,0.1213
567,0.1208
568,0.1216
569,0.1221
570,0.1205
571,0.1182
572,0.1191
573,0.1175
574,0.1163
575,0.1172
576,0.1178
577,0.1159
578,0.1153
579,0.1156
580,0.1162
581,0.1162
582,0.1160
583,0.1159
584,0.1197
585,0.1185
586,0.1195
587,0.1200
588,0.1249
589,0.1244
590,0.1281
591,0.1292
592,0.1307
593,0.1333
594,0.1341
595,0.1390
596,0.1403
597,0.1445
598,0.1440
599,0.1462
600,0.1470
601,0.1493
602,0.1491
603,0.1512
604,0.1522
605,0.1530
606,0.1518
607,0.1517
608,0.1500
609,0.1508
610,0.1507
611,0.1488
612,0.1475
613,0.1455
614,0.1433
615,0.1432
616,0.1447
617,0.1427
618,0.1401
619,0.1408
620,0.1385
621,0.1386
622,0.1385
623,0.1392
624,0.1384
625,0.1379
626,0.1383
627,0.1383
628,0.1391
629,0.1409
630,0.1409
631,0.1425
632,0.1437
633,0.1431
634,0.1433
635,0.1425
636,0.1485
637,0.1462
638,0.1477
639,0.1502
640,0.1484
641,0.1502
642,0.1487
643,0.1475
644,0.1501
645,0.1509
646,0.1461
647,0.1487
648,0.1475
649,0.1477
650,0.1480
651,0.1474
652,0.1480
653,0.1459
654,0.1453
655,0.1445
656,0.1457
657,0.1452
658,0.1442
659,0.1439
660,0.1447
661,0.1430
662,0.1445
663,0.1449
664,0.1432
665,0.1469
666,0.1480
667,0.1464
668,0.1474
669,0.1487
670,0.1483
671,0.1453
672,0.1460
673,0.1485
674,0.1474
675,0.1487
676,0.1469
677,0.1464
678,0.1462
679,0.1448
680,0.1454
681,0.1449
682,0.1455
683,0.1424
684,0.1414
685,0.1416
686,0.1436
687,0.1385
688,0.1394
689,0.1360
690,0.1365
691,0.1352
692,0.1330
693,0.1325
694,0.1301
695,0.1286
696,0.1259
697,0.1255
698,0.1252
699,0.1227
700,0.1236
701,0.1220
702,0.1244
703,0.1211
704,0.1187
705,0.1189
706,0.1191
707,0.1188
708,0.1183
709,0.1173
710,0.1172
711,0.1172
712,0.1175
713,0.1200
714,0.1194
715,0.1194
716,0.1178
717,0.1211
718,0.1203
719,0.1190
720,0.1168
721,0.1183
722,0.1191
723,0.1174
724,0.1185
725,0.1197
726,0.1211
727,0.1200
728,0.1212
729,0.1242
730,0.1193
731,0.1223
732,0.1242
733,0.1240
734,0.1245
735,0.1216
736,0.1230
737,0.1223
738,0.1201
739,0.1199
740,0.1206
741,0.1173
742,0.1172
743,0.1162
744,0.1134
745,0.1107
746,0.1127
747,0.1094
748,0.1072
749,0.1061
750,0.1042
751,0.1011
752,0.1025
753,0.1004
754,0.0986
755,0.0969
756,0.0957
757,0.0930
758,0.0912
759,0.0915
760,0.0902
761,0.0886
762,0.0898
763,0.0881
764,0.0868
765,0.0870
766,0.0862
767,0.0864
768,0.0878
769,0.0834
770,0.0849
771,0.0862
772,0.0857
773,0.0834
774,0.0835
775,0.0846
776,0.0861
777,0.0817
778,0.0837
779,0.0842
780,0.0841
781,0.0828
782,0.0836
783,0.0833
784,0.0845
785,0.0842
786,0.0843
787,0.0822
788,0.0829
789,0.0825
790,0.0845
791,0.0818
792,0.0827
793,0.0855
794,0.0862
795,0.0849
796,0.0847
797,0.0854
798,0.0858
799,0.0853
800,0.0862
801,0.0879
802,0.0859
803,0.0848
804,0.0840
805,0.0841
806,0.0836
807,0.0819
808,0.0823
809,0.0810
810,0.0804
811,0.0785
812,0.0776
813,0.0767
814,0.0769
815,0.0750
816,0.0728
817,0.0719
818,0.0721
819,0.0699
820,0.0695
821,0.0700
822,0.0681
823,0.0680
824,0.0664
825,0.0664
826,0.0666
827,0.0648
828,0.0641
829,0.0629
830,0.0632
831,0.0636
832,0.0630
833,0.0618
834,0.0598
835,0.0618
836,0.0610
837,0.0621
838,0.0605
839,0.0602
840,0.0586
841,0.0581
842,0.0590
843,0.0592
844,0.0603
845,0.0582
846,0.0586
847,0.0573
848,0.0560
849,0.0564
850,0.0569
851,0.0561
852,0.0550
853,0.0558
854,0.0555
855,0.0543
856,0.0544
857,0.0539
858,0.0537
859,0.0535
860,0.0533
861,0.0509
862,0.0505
863,0.0512
864,0.0501
865,0.0494
866,0.0491
867,0.0482
868,0.0479
869,0.0471
870,0.0468
871,0.0441
872,0.0432
873,0.0421
874,0.0417
875,0.0409
876,0.0405
877,0.0416
878,0.0385
879,0.0381
880,0.0391
881,0.0397
882,0.0386
883,0.0398
884,0.0383
885,0.0390
886,0.0403
887,0.0401
888,0.0406
889,0.0405
890,0.0411
891,0.0419
892,0.0405
893,0.0402
894,0.0403
895,0.0395
896,0.0388
897,0.0392
898,0.0390
899,0.0399
900,0.0380
901,0.0398
902,0.0374
903,0.0381
904,0.0376
905,0.0373
906,0.0369
907,0.0359
908,0.0361
909,0.0365
910,0.0365
911,0.0349
912,0.0342
913,0.0347
914,0.0344
915,0.0341
916,0.0343
917,0.0326
918,0.0330
919,0.0314
920,0.0308
921,0.0331
922,0.0337
923,0.0329
924,0.0319
925,0.0321
926,0.0312
927,0.0311
928,0.0307
929,0.0284
930,0.0288
931,0.0273
932,0.0259
933,0.0254
934,0.0228
935,0.0210
936,0.0171
937,0.0159
938,0.0133
939,0.0110
940,0.0101
941,0.0094
942,0.0089

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.9001
407,0.0000
408,0.0000
409,1.0000
410,0.2108
411,0.2567
412,0.3338
413,0.3487
414,0.5724
415,0.6228
416,0.8050
417,0.8143
418,0.8926
419,0.8689
420,0.9658
421,0.8737
422,0.7347
423,0.6758
424,0.5118
425,0.4176
426,0.3646
427,0.3179
428,0.2689
429,0.1901
430,0.3030
431,0.3010
432,0.3917
433,0.4348
434,0.5296
435,0.6200
436,0.6368
437,0.6736
438,0.6803
439,0.6555
440,0.6710
441,0.6186
442,0.5242
443,0.4401
444,0.3825
445,0.3215
446,0.2335
447,0.1807
448,0.1670
449,0.1669
450,0.1519
451,0.1878
452,0.2091
453,0.2271
454,0.2550
455,0.2705
456,0.2848
457,0.3088
458,0.3176
459,0.3269
460,0.3062
461,0.3054
462,0.2828
463,0.2595
464,0.2096
465,0.1858
466,0.1671
467,0.1401
468,0.1105
469,0.0944
470,0.0897
471,0.0847
472,0.0874
473,0.1012
474,0.1190
475,0.1364
476,0.1532
477,0.1630
478,0.1807
479,0.1913
480,0.2034
481,0.2055
482,0.2071
483,0.2012
484,0.1951
485,0.1843
486,0.1661
487,0.1455
488,0.1292
489,0.1130
490,0.0934
491,0.0786
492,0.0654
493,0.0581
494,0.0495
495,0.0473
496,0.0475
497,0.0550
498,0.0637
499,0.0752
500,0.0830
501,0.0942
502,0.1071
503,0.1162
504,0.1276
505,0.1360
506,0.1424
507,0.1438
508,0.1454
509,0.1415
510,0.1403
511,0.1339
512,0.1223
513,0.1121
514,0.0998
515,0.0826
516,0.0706
517,0.0599
518,0.0528
519,0.0435
520,0.0387
521,0.0360
522,0.0355
523,0.0353
524,0.0407
525,0.0489
526,0.0540
527,0.0619
528,0.0728
529,0.0868
530,0.0984
531,0.1073
532,0.1169
533,0.1313
534,0.1413
535,0.1435
536,0.1493
537,0.1555
538,0.1542
539,0.1550
540,0.1479
541,0.1418
542,0.1332
543,0.1217
544,0.1124
545,0.1017
546,0.0928
547,0.0797
548,0.0697
549,0.0590
550,0.0518
551,0.0505
552,0.0486
553,0.0500
554,0.0525
555,0.0590
556,0.0669
557,0.0806
558,0.0958
559,0.1113
560,0.1266
561,0.1395
562,0.1565
563,0.1703
564,0.1841
565,0.1977
566,0.2036
567,0.2114
568,0.2144
569,0.2161
570,0.2156
571,0.2091
572,0.2064
573,0.1950
574,0.1822
575,0.1726
576,0.1569
577,0.1428
578,0.1327
579,0.1140
580,0.0982
581,0.0858
582,0.0742
583,0.0659
584,0.0612
585,0.0526
586,0.0497
587,0.0511
588,0.0554
589,0.0593
590,0.0671
591,0.0805
592,0.0948
593,0.1102
594,0.1315
595,0.1500
596,0.1694
597,0.1894
598,0.2111
599,0.2319
600,0.2506
601,0.2702
602,0.2810
603,0.2912
604,0.3009
605,0.3066
606,0.3107
607,0.3102
608,0.2992
609,0.2965
610,0.2870
611,0.2702
612,0.2540
613,0.2329
614,0.2108
615,0.1917
616,0.1703
617,0.1508
618,0.1325
619,0.1155
620,0.0965
621,0.0834
622,0.0722
623,0.0626
624,0.0568
625,0.0564
626,0.0577
627,0.0603
628,0.0653
629,0.0761
630,0.0866
631,0.1003
632,0.1208
633,0.1332
634,0.1489
635,0.1690
636,0.1916
637,0.2093
638,0.2304
639,0.2510
640,0.2711
641,0.2888
642,0.2993
643,0.3110
644,0.3235
645,0.3329
646,0.3380
647,0.3387
648,0.3393
649,0.3384
650,0.3332
651,0.3254
652,0.3107
653,0.3030
654,0.2869
655,0.2717
656,0.2537
657,0.2312
658,0.2090
659,0.1885
660,0.1665
661,0.1473
662,0.1282
663,0.1115
664,0.0970
665,0.0883
666,0.0744
667,0.0658
668,0.0600
669,0.0565
670,0.0563
671,0.0571
672,0.0628
673,0.0700
674,0.0808
675,0.0936
676,0.1070
677,0.1222
678,0.1402
679,0.1540
680,0.1708
681,0.1910
682,0.2088
683,0.2269
684,0.2416
685,0.2614
686,0.2763
687,0.2881
688,0.3032
689,0.3125
690,0.3203
691,0.3269
692,0.3316
693,0.3328
694,0.3349
695,0.3326
696,0.3269
697,0.3225
698,0.3173
699,0.3081
700,0.2992
701,0.2869
702,0.2755
703,0.2624
704,0.2419
705,0.2245
706,0.2107
707,0.1922
708,0.1771
709,0.1563
710,0.1423
711,0.1241
712,0.1100
713,0.0941
714,0.0837
715,0.0715
716,0.0638
717,0.0558
718,0.0482
719,0.0433
720,0.0404
721,0.0418
722,0.0411
723,0.0439
724,0.0499
725,0.0572
726,0.0647
727,0.0735
728,0.0876
729,0.0994
730,0.1120
731,0.1271
732,0.1420
733,0.1585
734,0.1721
735,0.1879
736,0.2049
737,0.2159
738,0.2332
739,0.2420
740,0.2574
741,0.2659
742,0.2743
743,0.2861
744,0.2891
745,0.2940
746,0.3018
747,0.2999
748,0.3002
749,0.3021
750,0.2997
751,0.2916
752,0.2909
753,0.2796
754,0.2759
755,0.2680
756,0.2589
757,0.2445
758,0.2317
759,0.2198
760,0.2061
761,0.1920
762,0.1775
763,0.1658
764,0.1520
765,0.1390
766,0.1253
767,0.1128
768,0.1020
769,0.0906
770,0.0816
771,0.0710
772,0.0620
773,0.0544
774,0.0450
775,0.0416
776,0.0361
777,0.0323
778,0.0293
779,0.0268
780,0.0260
781,0.0258
782,0.0284
783,0.0291
784,0.0326
785,0.0369
786,0.0410
787,0.0453
788,0.0526
789,0.0600
790,0.0664
791,0.0746
792,0.0840
793,0.0947
794,0.1027
795,0.1120
796,0.1267
797,0.1328
798,0.1426
799,0.1530
800,0.1636
801,0.1723
802,0.1837
803,0.1908
804,0.2017
805,0.2075
806,0.2135
807,0.2203
808,0.2198
809,0.2258
810,0.2272
811,0.2290
812,0.2286
813,0.2318
814,0.2285
815,0.2301
816,0.2237
817,0.2201
818,0.2166
819,0.2115
820,0.2062
821,0.2020
822,0.1920
823,0.1854
824,0.1794
825,0.1702
826,0.1632
827,0.1519
828,0.1432
829,0.1335
830,0.1245
831,0.1176
832,0.1087
833,0.0989
834,0.0920
835,0.0831
836,0.0746
837,0.0661
838,0.0600
839,0.0548
840,0.0465
841,0.0427
842,0.0366
843,0.0311
844,0.0276
845,0.0238
846,0.0207
847,0.0179
848,0.0167
849,0.0152
850,0.0136
851,0.0146
852,0.0154
853,0.0152
854,0.0173
855,0.0183
856,0.0208
857,0.0230
858,0.0260
859,0.0292
860,0.0332
861,0.0353
862,0.0392
863,0.0439
864,0.0470
865,0.0534
866,0.0550
867,0.0603
868,0.0640
869,0.0667
870,0.0702
871,0.0737
872,0.0772
873,0.0795
874,0.0821
875,0.0855
876,0.0877
877,0.0934
878,0.0946
879,0.0995
880,0.1014
881,0.1038
882,0.1088
883,0.1140
884,0.1151
885,0.1195
886,0.1219
887,0.1275
888,0.1269
889,0.1292
890,0.1297
891,0.1315
892,0.1315
893,0.1316
894,0.1288
895,0.1269
896,0.1259
897,0.1230
898,0.1204
899,0.1182
900,0.1164
901,0.1142
902,0.1097
903,0.1041
904,0.0999
905,0.0948
906,0.0924
907,0.0864
908,0.0816
909,0.0774
910,0.0735
911,0.0683
912,0.0631
913,0.0596
914,0.0542
915,0.0520
916,0.0463
917,0.0420
918,0.0377
919,0.0339
920,0.0296
921,0.0276
922,0.0250
923,0.0226
924,0.0196
925,0.0165
926,0.0150
927,0.0124
928,0.0112
929,0.0081
930,0.0073
931,0.0068
932,0.0047
933,0.0045
934,0.0047
935,0.0047
936,0.0030
937,0.0027
938,0.0025
939,0.0018
940,0.0033
941,0.0017
942,0.0012

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.8801
407,0.0000
408,0.0000
409,1.0000
410,0.6859
411,0.5967
412,0.5155
413,0.4393
414,0.4092
415,0.3176
416,0.3846
417,0.3162
418,0.4007
419,0.3796
420,0.5729
421,0.5369
422,0.6130
423,0.6973
424,0.7340
425,0.7122
426,0.8063
427,0.7290
428,0.7096
429,0.5402
430,0.5590
431,0.4710
432,0.3807
433,0.3417
434,0.3307
435,0.3143
436,0.2983
437,0.3236
438,0.3423
439,0.3650
440,0.4050
441,0.4169
442,0.4897
443,0.5169
444,0.5194
445,0.5756
446,0.5402
447,0.5057
448,0.4605
449,0.4114
450,0.3631
451,0.3223
452,0.2677
453,0.2252
454,0.1765
455,0.1612
456,0.1433
457,0.1406
458,0.1354
459,0.1536
460,0.1531
461,0.1577
462,0.1787
463,0.1946
464,0.2154
465,0.2271
466,0.2522
467,0.2526
468,0.2526
469,0.2536
470,0.2460
471,0.2408
472,0.2213
473,0.2053
474,0.1785
475,0.1588
476,0.1423
477,0.1256
478,0.1070
479,0.0982
480,0.0975
481,0.0894
482,0.0856
483,0.0873
484,0.0927
485,0.0997
486,0.1095
487,0.1218
488,0.1255
489,0.1376
490,0.1440
491,0.1518
492,0.1498
493,0.1563
494,0.1514
495,0.1491
496,0.1381
497,0.1369
498,0.1243
499,0.1191
500,0.1067
501,0.0969
502,0.0877
503,0.0768
504,0.0731
505,0.0656
506,0.0603
507,0.0538
508,0.0547
509,0.0553
510,0.0555
511,0.0636
512,0.0679
513,0.0733
514,0.0806
515,0.0870
516,0.0938
517,0.0958
518,0.1024
519,0.1101
520,0.1147
521,0.1192
522,0.1205
523,0.1187
524,0.1195
525,0.1163
526,0.1102
527,0.1068
528,0.0998
529,0.0960
530,0.0884
531,0.0826
532,0.0751
533,0.0675
534,0.0626
535,0.0588
536,0.0556
537,0.0549
538,0.0555
539,0.0582
540,0.0621
541,0.0669
542,0.0752
543,0.0826
544,0.0985
545,0.1073
546,0.1158
547,0.1295
548,0.1422
549,0.1526
550,0.1615
551,0.1717
552,0.1807
553,0.1882
554,0.1886
555,0.1876
556,0.1862
557,0.1858
558,0.1788
559,0.1708
560,0.1596
561,0.1513
562,0.1396
563,0.1258
564,0.1136
565,0.1019
566,0.0917
567,0.0832
568,0.0768
569,0.0699
570,0.0657
571,0.0643
572,0.0668
573,0.0686
574,0.0748
575,0.0816
576,0.0921
577,0.1011
578,0.1130
579,0.1202
580,0.1369
581,0.1509
582,0.1653
583,0.1745
584,0.1883
585,0.1952
586,0.2023
587,0.2123
588,0.2207
589,0.2267
590,0.2283
591,0.2309
592,0.2275
593,0.2248
594,0.2219
595,0.2111
596,0.2076
597,0.1979
598,0.1854
599,0.1726
600,0.1591
601,0.1460
602,0.1331
603,0.1244
604,0.1103
605,0.1021
606,0.0922
607,0.0865
608,0.0820
609,0.0822
610,0.0858
611,0.0888
612,0.0949
613,0.1052
614,0.1158
615,0.1293
616,0.1425
617,0.1575
618,0.1708
619,0.1861
620,0.2037
621,0.2220
622,0.2342
623,0.2469
624,0.2578
625,0.2701
626,0.2743
627,0.2859
628,0.2900
629,0.2885
630,0.2875
631,0.2878
632,0.2870
633,0.2830
634,0.2759
635,0.2672
636,0.2580
637,0.2447
638,0.2274
639,0.2182
640,0.2004
641,0.1888
642,0.1752
643,0.1630
644,0.1461
645,0.1356
646,0.1219
647,0.1108
648,0.1019
649,0.0946
650,0.0884
651,0.0861
652,0.0842
653,0.0868
654,0.0889
655,0.0945
656,0.1027
657,0.1123
658,0.1253
659,0.1374
660,0.1549
661,0.1696
662,0.1888
663,0.2046
664,0.2180
665,0.2363
666,0.2532
667,0.2685
668,0.2882
669,0.2995
670,0.3085
671,0.3173
672,0.3266
673,0.3322
674,0.3338
675,0.3410
676,0.3353
677,0.3329
678,0.3273
679,0.3252
680,0.3165
681,0.3068
682,0.2926
683,0.2797
684,0.2653
685,0.2542
686,0.2410
687,0.2205
688,0.2082
689,0.1932
690,0.1768
691,0.1598
692,0.1508
693,0.1331
694,0.1216
695,0.1100
696,0.0977
697,0.0915
698,0.0836
699,0.0788
700,0.0757
701,0.0723
702,0.0742
703,0.0722
704,0.0750
705,0.0799
706,0.0854
707,0.0916
708,0.1014
709,0.1097
710,0.1217
711,0.1316
712,0.1452
713,0.1563
714,0.1693
715,0.1815
716,0.1935
717,0.2089
718,0.2176
719,0.2276
720,0.2350
721,0.2479
722,0.2547
723,0.2615
724,0.2681
725,0.2735
726,0.2824
727,0.2839
728,0.2873
729,0.2933
730,0.2912
731,0.2927
732,0.2881
733,0.2878
734,0.2821
735,0.2768
736,0.2715
737,0.2635
738,0.2548
739,0.2434
740,0.2330
741,0.2221
742,0.2090
743,0.1977
744,0.1821
745,0.1706
746,0.1593
747,0.1466
748,0.1366
749,0.1232
750,0.1112
751,0.1012
752,0.0913
753,0.0831
754,0.0762
755,0.0707
756,0.0650
757,0.0612
758,0.0577
759,0.0551
760,0.0539
761,0.0537
762,0.0550
763,0.0572
764,0.0602
765,0.0641
766,0.0680
767,0.0746
768,0.0806
769,0.0849
770,0.0901
771,0.0978
772,0.1067
773,0.1132
774,0.1210
775,0.1298
776,0.1370
777,0.1411
778,0.1485
779,0.1581
780,0.1638
781,0.1685
782,0.1734
783,0.1807
784,0.1892
785,0.1910
786,0.1969
787,0.1978
788,0.1985
789,0.2043
790,0.2047
791,0.2051
792,0.2072
793,0.2075
794,0.2068
795,0.2055
796,0.2097
797,0.2045
798,0.2023
799,0.2027
800,0.1988
801,0.1974
802,0.1903
803,0.1859
804,0.1787
805,0.1744
806,0.1676
807,0.1607
808,0.1496
809,0.1422
810,0.1361
811,0.1286
812,0.1193
813,0.1093
814,0.1036
815,0.0970
816,0.0896
817,0.0812
818,0.0750
819,0.0691
820,0.0652
821,0.0593
822,0.0549
823,0.0506
824,0.0478
825,0.0430
826,0.0414
827,0.0403
828,0.0381
829,0.0379
830,0.0382
831,0.0382
832,0.0395
833,0.0394
834,0.0423
835,0.0440
836,0.0485
837,0.0514
838,0.0533
839,0.0580
840,0.0598
841,0.0648
842,0.0699
843,0.0734
844,0.0780
845,0.0811
846,0.0854
847,0.0883
848,0.0924
849,0.0976
850,0.1002
851,0.1054
852,0.1078
853,0.1099
854,0.1116
855,0.1158
856,0.1174
857,0.1187
858,0.1225
859,0.1239
860,0.1236
861,0.1252
862,0.1228
863,0.1277
864,0.1271
865,0.1272
866,0.1267
867,0.1246
868,0.1219
869,0.1201
870,0.1166
871,0.1145
872,0.1127
873,0.1083
874,0.1061
875,0.1028
876,0.0991
877,0.0985
878,0.0953
879,0.0949
880,0.0931
881,0.0914
882,0.0877
883,0.0891
884,0.0849
885,0.0828
886,0.0809
887,0.0792
888,0.0748
889,0.0728
890,0.0691
891,0.0667
892,0.0642
893,0.0612
894,0.0578
895,0.0549
896,0.0507
897,0.0464
898,0.0446
899,0.0416
900,0.0382
901,0.0357
902,0.0348
903,0.0321
904,0.0302
905,0.0272
906,0.0268
907,0.0245
908,0.0232
909,0.0224
910,0.0233
911,0.0215
912,0.0205
913,0.0197
914,0.0200
915,0.0211
916,0.0222
917,0.0207
918,0.0222
919,0.0218
920,0.0239
921,0.0252
922,0.0262
923,0.0274
924,0.0294
925,0.0296
926,0.0321
927,0.0321
928,0.0340
929,0.0335
930,0.0353
931,0.0351
932,0.0345
933,0.0347
934,0.0338
935,0.0311
936,0.0283
937,0.0257
938,0.0225
939,0.0194
940,0.0189
941,0.0175
942,0.0164

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.5601
407,0.0000
408,0.0000
409,1.0000
410,0.5646
411,0.5323
412,0.7544
413,0.5392
414,0.7107
415,0.5781
416,0.7729
417,0.5408
418,0.5238
419,0.4754
420,0.5226
421,0.4451
422,0.4963
423,0.4805
424,0.4792
425,0.4989
426,0.5230
427,0.5606
428,0.6182
429,0.4984
430,0.5819
431,0.5143
432,0.4895
433,0.4433
434,0.4633
435,0.4190
436,0.4309
437,0.4180
438,0.4112
439,0.3806
440,0.4350
441,0.3970
442,0.4317
443,0.4165
444,0.4247
445,0.4434
446,0.4444
447,0.3994
448,0.3686
449,0.3589
450,0.3373
451,0.3007
452,0.2891
453,0.2390
454,0.2122
455,0.2043
456,0.2012
457,0.1786
458,0.1756
459,0.1831
460,0.1806
461,0.1888
462,0.2026
463,0.2053
464,0.2083
465,0.2020
466,0.2343
467,0.2148
468,0.2187
469,0.2085
470,0.2061
471,0.1900
472,0.1809
473,0.1641
474,0.1561
475,0.1489
476,0.1436
477,0.1293
478,0.1204
479,0.1227
480,0.1264
481,0.1249
482,0.1246
483,0.1288
484,0.1276
485,0.1322
486,0.1343
487,0.1387
488,0.1371
489,0.1372
490,0.1367
491,0.1255
492,0.1232
493,0.1226
494,0.1147
495,0.1094
496,0.0972
497,0.0993
498,0.0937
499,0.0917
500,0.0867
501,0.0851
502,0.0867
503,0.0845
504,0.0896
505,0.0899
506,0.0922
507,0.0940
508,0.0970
509,0.0975
510,0.0988
511,0.1010
512,0.1021
513,0.0991
514,0.0955
515,0.0949
516,0.0900
517,0.0867
518,0.0848
519,0.0806
520,0.0789
521,0.0789
522,0.0762
523,0.0742
524,0.0756
525,0.0755
526,0.0767
527,0.0760
528,0.0773
529,0.0826
530,0.0852
531,0.0881
532,0.0917
533,0.0957
534,0.1001
535,0.1022
536,0.1073
537,0.1101
538,0.1135
539,0.1149
540,0.1148
541,0.1168
542,0.1160
543,0.1131
544,0.1158
545,0.1124
546,0.1121
547,0.1092
548,0.1044
549,0.1036
550,0.1022
551,0.1023
552,0.1020
553,0.1045
554,0.1052
555,0.1073
556,0.1113
557,0.1176
558,0.1231
559,0.1301
560,0.1335
561,0.1393
562,0.1455
563,0.1500
564,0.1561
565,0.1609
566,0.1630
567,0.1637
568,0.1651
569,0.1649
570,0.1616
571,0.1573
572,0.1567
573,0.1530
574,0.1431
575,0.1391
576,0.1339
577,0.1266
578,0.1239
579,0.1177
580,0.1140
581,0.1099
582,0.1075
583,0.1036
584,0.1043
585,0.1039
586,0.1030
587,0.1087
588,0.1143
589,0.1203
590,0.1251
591,0.1340
592,0.1452
593,0.1571
594,0.1661
595,0.1801
596,0.1893
597,0.2012
598,0.2114
599,0.2234
600,0.2313
601,0.2387
602,0.2416
603,0.2431
604,0.2445
605,0.2433
606,0.2400
607,0.2372
608,0.2269
609,0.2199
610,0.2131
611,0.2018
612,0.1909
613,0.1787
614,0.1658
615,0.1552
616,0.1439
617,0.1348
618,0.1317
619,0.1248
620,0.1179
621,0.1169
622,0.1187
623,0.1172
624,0.1190
625,0.1250
626,0.1316
627,0.1389
628,0.1473
629,0.1580
630,0.1650
631,0.1798
632,0.1931
633,0.2036
634,0.2132
635,0.2239
636,0.2367
637,0.2434
638,0.2587
639,0.2674
640,0.2760
641,0.2766
642,0.2782
643,0.2825
644,0.2842
645,0.2815
646,0.2744
647,0.2695
648,0.2619
649,0.2560
650,0.2404
651,0.2327
652,0.2181
653,0.2067
654,0.1959
655,0.1850
656,0.1741
657,0.1611
658,0.1503
659,0.1384
660,0.1313
661,0.1237
662,0.1193
663,0.1168
664,0.1121
665,0.1145
666,0.1158
667,0.1189
668,0.1273
669,0.1352
670,0.1420
671,0.1523
672,0.1641
673,0.1747
674,0.1892
675,0.2020
676,0.2146
677,0.2276
678,0.2394
679,0.2491
680,0.2592
681,0.2695
682,0.2777
683,0.2855
684,0.2936
685,0.2976
686,0.3004
687,0.2956
688,0.2996
689,0.2978
690,0.2935
691,0.2914
692,0.2865
693,0.2742
694,0.2654
695,0.2557
696,0.2408
697,0.2296
698,0.2209
699,0.2080
700,0.1989
701,0.1889
702,0.1750
703,0.1620
704,0.1469
705,0.1377
706,0.1258
707,0.1168
708,0.1078
709,0.1025
710,0.0959
711,0.0886
712,0.0880
713,0.0865
714,0.0858
715,0.0848
716,0.0901
717,0.0932
718,0.0980
719,0.1043
720,0.1084
721,0.1193
722,0.1259
723,0.1347
724,0.1453
725,0.1573
726,0.1694
727,0.1791
728,0.1940
729,0.2076
730,0.2175
731,0.2284
732,0.2353
733,0.2482
734,0.2548
735,0.2646
736,0.2694
737,0.2767
738,0.2786
739,0.2803
740,0.2802
741,0.2826
742,0.2775
743,0.2775
744,0.2713
745,0.2637
746,0.2593
747,0.2507
748,0.2455
749,0.2320
750,0.2246
751,0.2126
752,0.2053
753,0.1904
754,0.1816
755,0.1693
756,0.1599
757,0.1474
758,0.1352
759,0.1276
760,0.1142
761,0.1054
762,0.0954
763,0.0879
764,0.0831
765,0.0773
766,0.0701
767,0.0676
768,0.0633
769,0.0605
770,0.0587
771,0.0588
772,0.0592
773,0.0581
774,0.0591
775,0.0635
776,0.0659
777,0.0700
778,0.0733
779,0.0798
780,0.0860
781,0.0906
782,0.0975
783,0.1036
784,0.1113
785,0.1168
786,0.1260
787,0.1309
788,0.1376
789,0.1457
790,0.1504
791,0.1570
792,0.1651
793,0.1714
794,0.1797
795,0.1867
796,0.1927
797,0.1952
798,0.2000
799,0.2033
800,0.2093
801,0.2093
802,0.2140
803,0.2136
804,0.2129
805,0.2124
806,0.2078
807,0.2065
808,0.2036
809,0.1992
810,0.1952
811,0.1905
812,0.1822
813,0.1757
814,0.1691
815,0.1625
816,0.1555
817,0.1463
818,0.1424
819,0.1342
820,0.1261
821,0.1186
822,0.1108
823,0.1048
824,0.0979
825,0.0908
826,0.0843
827,0.0787
828,0.0721
829,0.0677
830,0.0627
831,0.0577
832,0.0550
833,0.0500
834,0.0478
835,0.0450
836,0.0429
837,0.0418
838,0.0408
839,0.0412
840,0.0404
841,0.0417
842,0.0416
843,0.0428
844,0.0434
845,0.0456
846,0.0479
847,0.0502
848,0.0521
849,0.0558
850,0.0591
851,0.0626
852,0.0662
853,0.0692
854,0.0710
855,0.0752
856,0.0791
857,0.0801
858,0.0855
859,0.0890
860,0.0925
861,0.0931
862,0.0958
863,0.0973
864,0.1009
865,0.1030
866,0.1058
867,0.1070
868,0.1081
869,0.1066
870,0.1090
871,0.1077
872,0.1069
873,0.1029
874,0.1028
875,0.1042
876,0.1030
877,0.1046
878,0.1011
879,0.1026
880,0.1029
881,0.1013
882,0.1031
883,0.1033
884,0.1014
885,0.1013
886,0.1024
887,0.1009
888,0.0989
889,0.0971
890,0.0958
891,0.0924
892,0.0906
893,0.0883
894,0.0842
895,0.0806
896,0.0768
897,0.0734
898,0.0714
899,0.0678
900,0.0642
901,0.0613
902,0.0575
903,0.0543
904,0.0515
905,0.0472
906,0.0467
907,0.0419
908,0.0392
909,0.0373
910,0.0355
911,0.0334
912,0.0308
913,0.0294
914,0.0284
915,0.0265
916,0.0247
917,0.0226
918,0.0238
919,0.0234
920,0.0217
921,0.0228
922,0.0213
923,0.0227
924,0.0232
925,0.0237
926,0.0223
927,0.0249
928,0.0249
929,0.0247
930,0.0266
931,0.0255
932,0.0243
933,0.0249
934,0.0244
935,0.0228
936,0.0213
937,0.0191
938,0.0163
939,0.0145
940,0.0138
941,0.0135
942,0.0131

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.0000
407,0.0000
408,0.0000
409,1.0000
410,0.2716
411,0.3500
412,0.5515
413,0.5524
414,0.7431
415,0.6388
416,0.8708
417,0.7731
418,0.7580
419,0.7330
420,0.7110
421,0.6222
422,0.4716
423,0.4081
424,0.3980
425,0.3746
426,0.3123
427,0.3476
428,0.3577
429,0.3063
430,0.4094
431,0.4394
432,0.4792
433,0.5320
434,0.6141
435,0.6019
436,0.6482
437,0.6058
438,0.5593
439,0.5150
440,0.4981
441,0.4236
442,0.3908
443,0.3667
444,0.2839
445,0.2592
446,0.2397
447,0.2234
448,0.2301
449,0.2510
450,0.2614
451,0.2813
452,0.2727
453,0.2923
454,0.2783
455,0.3098
456,0.3070
457,0.2754
458,0.2856
459,0.2618
460,0.2513
461,0.2280
462,0.2086
463,0.1909
464,0.1599
465,0.1478
466,0.1371
467,0.1185
468,0.1074
469,0.1130
470,0.1177
471,0.1325
472,0.1415
473,0.1504
474,0.1672
475,0.1817
476,0.1836
477,0.1854
478,0.1883
479,0.1910
480,0.1951
481,0.1834
482,0.1744
483,0.1608
484,0.1534
485,0.1397
486,0.1206
487,0.1100
488,0.0946
489,0.0900
490,0.0783
491,0.0688
492,0.0665
493,0.0691
494,0.0704
495,0.0758
496,0.0765
497,0.0868
498,0.0986
499,0.1106
500,0.1117
501,0.1168
502,0.1291
503,0.1309
504,0.1359
505,0.1376
506,0.1348
507,0.1315
508,0.1260
509,0.1188
510,0.1093
511,0.1003
512,0.0895
513,0.0789
514,0.0675
515,0.0578
516,0.0503
517,0.0450
518,0.0433
519,0.0423
520,0.0440
521,0.0482
522,0.0534
523,0.0600
524,0.0700
525,0.0800
526,0.0903
527,0.0970
528,0.1072
529,0.1179
530,0.1245
531,0.1299
532,0.1326
533,0.1375
534,0.1395
535,0.1368
536,0.1368
537,0.1329
538,0.1238
539,0.1167
540,0.1070
541,0.0978
542,0.0861
543,0.0773
544,0.0706
545,0.0633
546,0.0598
547,0.0544
548,0.0537
549,0.0540
550,0.0587
551,0.0665
552,0.0753
553,0.0886
554,0.1030
555,0.1153
556,0.1304
557,0.1455
558,0.1608
559,0.1791
560,0.1882
561,0.1956
562,0.2043
563,0.2099
564,0.2112
565,0.2131
566,0.2091
567,0.2025
568,0.1924
569,0.1840
570,0.1704
571,0.1543
572,0.1437
573,0.1293
574,0.1133
575,0.1002
576,0.0882
577,0.0778
578,0.0704
579,0.0618
580,0.0570
581,0.0562
582,0.0569
583,0.0587
584,0.0669
585,0.0728
586,0.0843
587,0.1019
588,0.1174
589,0.1306
590,0.1474
591,0.1675
592,0.1861
593,0.2048
594,0.2238
595,0.2411
596,0.2545
597,0.2676
598,0.2764
599,0.2869
600,0.2888
601,0.2925
602,0.2885
603,0.2810
604,0.2766
605,0.2630
606,0.2478
607,0.2316
608,0.2134
609,0.1952
610,0.1795
611,0.1572
612,0.1383
613,0.1190
614,0.1002
615,0.0903
616,0.0783
617,0.0719
618,0.0664
619,0.0642
620,0.0651
621,0.0688
622,0.0775
623,0.0869
624,0.0990
625,0.1135
626,0.1290
627,0.1454
628,0.1635
629,0.1858
630,0.2034
631,0.2228
632,0.2454
633,0.2617
634,0.2735
635,0.2875
636,0.3002
637,0.3084
638,0.3208
639,0.3305
640,0.3266
641,0.3290
642,0.3272
643,0.3238
644,0.3149
645,0.3078
646,0.2914
647,0.2742
648,0.2575
649,0.2432
650,0.2205
651,0.2038
652,0.1809
653,0.1664
654,0.1478
655,0.1311
656,0.1135
657,0.1017
658,0.0859
659,0.0789
660,0.0715
661,0.0631
662,0.0619
663,0.0627
664,0.0660
665,0.0723
666,0.0800
667,0.0919
668,0.1065
669,0.1216
670,0.1392
671,0.1571
672,0.1740
673,0.1977
674,0.2170
675,0.2382
676,0.2549
677,0.2710
678,0.2920
679,0.3027
680,0.3133
681,0.3259
682,0.3360
683,0.3385
684,0.3434
685,0.3486
686,0.3509
687,0.3432
688,0.3428
689,0.3333
690,0.3276
691,0.3180
692,0.3041
693,0.2899
694,0.2796
695,0.2578
696,0.2414
697,0.2245
698,0.2093
699,0.1927
700,0.1766
701,0.1620
702,0.1434
703,0.1265
704,0.1102
705,0.0969
706,0.0860
707,0.0736
708,0.0666
709,0.0573
710,0.0522
711,0.0470
712,0.0474
713,0.0484
714,0.0496
715,0.0531
716,0.0601
717,0.0687
718,0.0769
719,0.0867
720,0.0966
721,0.1118
722,0.1233
723,0.1362
724,0.1509
725,0.1679
726,0.1827
727,0.1990
728,0.2160
729,0.2320
730,0.2460
731,0.2602
732,0.2703
733,0.2835
734,0.2943
735,0.3028
736,0.3092
737,0.3148
738,0.3195
739,0.3206
740,0.3183
741,0.3165
742,0.3122
743,0.3071
744,0.3014
745,0.2918
746,0.2835
747,0.2755
748,0.2604
749,0.2507
750,0.2356
751,0.2200
752,0.2089
753,0.1934
754,0.1780
755,0.1660
756,0.1511
757,0.1385
758,0.1235
759,0.1086
760,0.0943
761,0.0823
762,0.0726
763,0.0628
764,0.0562
765,0.0480
766,0.0422
767,0.0381
768,0.0346
769,0.0318
770,0.0305
771,0.0310
772,0.0310
773,0.0313
774,0.0361
775,0.0395
776,0.0448
777,0.0498
778,0.0558
779,0.0636
780,0.0714
781,0.0780
782,0.0865
783,0.0949
784,0.1046
785,0.1129
786,0.1230
787,0.1321
788,0.1400
789,0.1498
790,0.1579
791,0.1669
792,0.1777
793,0.1879
794,0.1930
795,0.2034
796,0.2117
797,0.2154
798,0.2240
799,0.2262
800,0.2325
801,0.2376
802,0.2395
803,0.2381
804,0.2389
805,0.2390
806,0.2399
807,0.2357
808,0.2277
809,0.2253
810,0.2184
811,0.2108
812,0.2044
813,0.1965
814,0.1871
815,0.1795
816,0.1708
817,0.1594
818,0.1542
819,0.1428
820,0.1334
821,0.1241
822,0.1120
823,0.1043
824,0.0973
825,0.0872
826,0.0791
827,0.0722
828,0.0635
829,0.0555
830,0.0486
831,0.0432
832,0.0386
833,0.0324
834,0.0302
835,0.0259
836,0.0232
837,0.0221
838,0.0194
839,0.0193
840,0.0178
841,0.0194
842,0.0200
843,0.0218
844,0.0233
845,0.0266
846,0.0273
847,0.0305
848,0.0342
849,0.0396
850,0.0427
851,0.0471
852,0.0509
853,0.0557
854,0.0607
855,0.0665
856,0.0718
857,0.0742
858,0.0784
859,0.0863
860,0.0876
861,0.0920
862,0.0976
863,0.1004
864,0.1041
865,0.1081
866,0.1121
867,0.1126
868,0.1144
869,0.1161
870,0.1198
871,0.1179
872,0.1175
873,0.1175
874,0.1166
875,0.1168
876,0.1178
877,0.1192
878,0.1158
879,0.1185
880,0.1193
881,0.1176
882,0.1198
883,0.1207
884,0.1176
885,0.1166
886,0.1189
887,0.1177
888,0.1154
889,0.1135
890,0.1120
891,0.1072
892,0.1051
893,0.1024
894,0.0965
895,0.0943
896,0.0896
897,0.0839
898,0.0794
899,0.0767
900,0.0707
901,0.0677
902,0.0620
903,0.0585
904,0.0531
905,0.0466
906,0.0450
907,0.0398
908,0.0358
909,0.0329
910,0.0307
911,0.0267
912,0.0224
913,0.0213
914,0.0186
915,0.0166
916,0.0142
917,0.0114
918,0.0113
919,0.0096
920,0.0087
921,0.0084
922,0.0074
923,0.0084
924,0.0078
925,0.0087
926,0.0086
927,0.0094
928,0.0107
929,0.0103
930,0.0108
931,0.0126
932,0.0130
933,0.0137
934,0.0149
935,0.0136
936,0.0137
937,0.0129
938,0.0119
939,0.0103
940,0.0099
941,0.0102
942,0.0096

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.6781
411,0.5613
412,0.4557
413,0.2592
414,0.3061
415,0.2553
416,0.2409
417,0.2919
418,0.3946
419,0.4503
420,0.5235
421,0.6243
422,0.7159
423,0.7758
424,0.7826
425,0.7588
426,0.7643
427,0.6916
428,0.6744
429,0.4753
430,0.4712
431,0.3783
432,0.2979
433,0.2355
434,0.2555
435,0.2642
436,0.2293
437,0.2692
438,0.3313
439,0.3783
440,0.4813
441,0.4830
442,0.5362
443,0.5788
444,0.6051
445,0.6098
446,0.5564
447,0.4898
448,0.4304
449,0.3812
450,0.3116
451,0.2786
452,0.2201
453,0.1652
454,0.1295
455,0.1319
456,0.1141
457,0.1256
458,0.1309
459,0.1360
460,0.1689
461,0.1828
462,0.2097
463,0.2330
464,0.2519
465,0.2453
466,0.2755
467,0.2721
468,0.2647
469,0.2627
470,0.2469
471,0.2332
472,0.2064
473,0.1793
474,0.1530
475,0.1299
476,0.1050
477,0.0931
478,0.0828
479,0.0775
480,0.0789
481,0.0771
482,0.0823
483,0.0959
484,0.1010
485,0.1177
486,0.1291
487,0.1414
488,0.1499
489,0.1590
490,0.1657
491,0.1671
492,0.1646
493,0.1652
494,0.1569
495,0.1459
496,0.1333
497,0.1243
498,0.1109
499,0.1009
500,0.0891
501,0.0762
502,0.0678
503,0.0603
504,0.0558
505,0.0525
506,0.0518
507,0.0512
508,0.0554
509,0.0606
510,0.0671
511,0.0762
512,0.0826
513,0.0912
514,0.0997
515,0.1059
516,0.1113
517,0.1113
518,0.1163
519,0.1208
520,0.1211
521,0.1230
522,0.1190
523,0.1149
524,0.1103
525,0.1054
526,0.0975
527,0.0907
528,0.0823
529,0.0763
530,0.0688
531,0.0626
532,0.0565
533,0.0532
534,0.0510
535,0.0504
536,0.0510
537,0.0548
538,0.0616
539,0.0701
540,0.0764
541,0.0831
542,0.0944
543,0.1067
544,0.1201
545,0.1311
546,0.1407
547,0.1542
548,0.1639
549,0.1718
550,0.1769
551,0.1840
552,0.1849
553,0.1852
554,0.1831
555,0.1777
556,0.1713
557,0.1637
558,0.1514
559,0.1403
560,0.1266
561,0.1184
562,0.1055
563,0.0943
564,0.0850
565,0.0778
566,0.0735
567,0.0682
568,0.0667
569,0.0700
570,0.0717
571,0.0752
572,0.0811
573,0.0904
574,0.1010
575,0.1132
576,0.1244
577,0.1354
578,0.1475
579,0.1581
580,0.1741
581,0.1828
582,0.1936
583,0.2003
584,0.2070
585,0.2112
586,0.2134
587,0.2163
588,0.2171
589,0.2164
590,0.2156
591,0.2134
592,0.2042
593,0.1945
594,0.1867
595,0.1752
596,0.1648
597,0.1568
598,0.1445
599,0.1324
600,0.1228
601,0.1094
602,0.1012
603,0.0976
604,0.0900
605,0.0903
606,0.0882
607,0.0934
608,0.0977
609,0.1020
610,0.1134
611,0.1260
612,0.1386
613,0.1548
614,0.1702
615,0.1882
616,0.2003
617,0.2135
618,0.2264
619,0.2371
620,0.2533
621,0.2612
622,0.2738
623,0.2790
624,0.2807
625,0.2862
626,0.2877
627,0.2860
628,0.2827
629,0.2777
630,0.2666
631,0.2617
632,0.2518
633,0.2445
634,0.2315
635,0.2178
636,0.2050
637,0.1915
638,0.1790
639,0.1649
640,0.1514
641,0.1391
642,0.1279
643,0.1216
644,0.1114
645,0.1058
646,0.0987
647,0.0964
648,0.0950
649,0.0969
650,0.0981
651,0.1066
652,0.1146
653,0.1210
654,0.1301
655,0.1433
656,0.1596
657,0.1748
658,0.1904
659,0.2060
660,0.2245
661,0.2391
662,0.2570
663,0.2710
664,0.2825
665,0.2940
666,0.3095
667,0.3131
668,0.3257
669,0.3300
670,0.3329
671,0.3335
672,0.3293
673,0.3313
674,0.3286
675,0.3197
676,0.3104
677,0.2991
678,0.2866
679,0.2785
680,0.2676
681,0.2503
682,0.2374
683,0.2179
684,0.2030
685,0.1907
686,0.1750
687,0.1611
688,0.1464
689,0.1354
690,0.1225
691,0.1139
692,0.1037
693,0.0980
694,0.0919
695,0.0886
696,0.0854
697,0.0872
698,0.0855
699,0.0870
700,0.0931
701,0.0966
702,0.1033
703,0.1126
704,0.1193
705,0.1283
706,0.1403
707,0.1505
708,0.1631
709,0.1775
710,0.1900
711,0.2000
712,0.2129
713,0.2226
714,0.2350
715,0.2422
716,0.2524
717,0.2615
718,0.2665
719,0.2726
720,0.2719
721,0.2768
722,0.2738
723,0.2762
724,0.2774
725,0.2783
726,0.2769
727,0.2742
728,0.2721
729,0.2698
730,0.2656
731,0.2566
732,0.2485
733,0.2404
734,0.2314
735,0.2239
736,0.2153
737,0.2011
738,0.1916
739,0.1818
740,0.1653
741,0.1553
742,0.1417
743,0.1314
744,0.1200
745,0.1111
746,0.1034
747,0.0956
748,0.0881
749,0.0816
750,0.0773
751,0.0741
752,0.0698
753,0.0679
754,0.0676
755,0.0681
756,0.0683
757,0.0707
758,0.0737
759,0.0780
760,0.0849
761,0.0895
762,0.0953
763,0.1016
764,0.1064
765,0.1161
766,0.1226
767,0.1272
768,0.1352
769,0.1415
770,0.1499
771,0.1554
772,0.1606
773,0.1676
774,0.1752
775,0.1832
776,0.1835
777,0.1881
778,0.1911
779,0.1979
780,0.1987
781,0.1984
782,0.2007
783,0.1998
784,0.2008
785,0.2000
786,0.2026
787,0.1987
788,0.1980
789,0.1975
790,0.1919
791,0.1896
792,0.1879
793,0.1841
794,0.1795
795,0.1744
796,0.1729
797,0.1686
798,0.1613
799,0.1555
800,0.1512
801,0.1458
802,0.1393
803,0.1330
804,0.1255
805,0.1186
806,0.1127
807,0.1059
808,0.0972
809,0.0906
810,0.0861
811,0.0818
812,0.0739
813,0.0690
814,0.0633
815,0.0604
816,0.0589
817,0.0558
818,0.0539
819,0.0508
820,0.0493
821,0.0489
822,0.0505
823,0.0510
824,0.0519
825,0.0506
826,0.0526
827,0.0580
828,0.0588
829,0.0618
830,0.0655
831,0.0691
832,0.0733
833,0.0770
834,0.0791
835,0.0867
836,0.0896
837,0.0957
838,0.0979
839,0.1029
840,0.1050
841,0.1104
842,0.1145
843,0.1187
844,0.1204
845,0.1244
846,0.1267
847,0.1273
848,0.1312
849,0.1323
850,0.1345
851,0.1374
852,0.1351
853,0.1364
854,0.1363
855,0.1356
856,0.1335
857,0.1325
858,0.1329
859,0.1314
860,0.1302
861,0.1272
862,0.1241
863,0.1233
864,0.1206
865,0.1165
866,0.1155
867,0.1107
868,0.1098
869,0.1038
870,0.0971
871,0.0958
872,0.0885
873,0.0858
874,0.0816
875,0.0766
876,0.0734
877,0.0721
878,0.0672
879,0.0636
880,0.0620
881,0.0594
882,0.0577
883,0.0565
884,0.0520
885,0.0510
886,0.0482
887,0.0464
888,0.0441
889,0.0418
890,0.0408
891,0.0389
892,0.0369
893,0.0351
894,0.0333
895,0.0321
896,0.0302
897,0.0282
898,0.0273
899,0.0278
900,0.0281
901,0.0281
902,0.0287
903,0.0291
904,0.0289
905,0.0296
906,0.0295
907,0.0309
908,0.0308
909,0.0320
910,0.0346
911,0.0354
912,0.0359
913,0.0378
914,0.0406
915,0.0422
916,0.0426
917,0.0438
918,0.0467
919,0.0459
920,0.0491
921,0.0513
922,0.0541
923,0.0545
924,0.0568
925,0.0564
926,0.0591
927,0.0601
928,0.0583
929,0.0562
930,0.0595
931,0.0578
932,0.0550
933,0.0537
934,0.0513
935,0.0464
936,0.0403
937,0.0375
938,0.0302
939,0.0268
940,0.0251
941,0.0220
942,0.0213

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.6201
407,0.0000
408,0.0000
409,1.0000
410,0.6479
411,0.5944
412,0.7265
413,0.6068
414,0.5438
415,0.4124
416,0.5033
417,0.3837
418,0.3871
419,0.3876
420,0.4336
421,0.4109
422,0.5051
423,0.5234
424,0.5221
425,0.5458
426,0.6393
427,0.6570
428,0.6458
429,0.5372
430,0.6152
431,0.5216
432,0.4831
433,0.4617
434,0.4907
435,0.4039
436,0.3880
437,0.3463
438,0.3383
439,0.3187
440,0.3652
441,0.3412
442,0.3560
443,0.3666
444,0.3876
445,0.4382
446,0.4155
447,0.4062
448,0.3989
449,0.3994
450,0.3853
451,0.3479
452,0.3293
453,0.2923
454,0.2452
455,0.2404
456,0.2117
457,0.1844
458,0.1622
459,0.1552
460,0.1469
461,0.1396
462,0.1440
463,0.1450
464,0.1459
465,0.1556
466,0.1744
467,0.1789
468,0.1966
469,0.2026
470,0.2103
471,0.2168
472,0.2177
473,0.2113
474,0.2019
475,0.1922
476,0.1832
477,0.1707
478,0.1546
479,0.1433
480,0.1427
481,0.1213
482,0.1114
483,0.1026
484,0.0956
485,0.0927
486,0.0880
487,0.0873
488,0.0874
489,0.0884
490,0.0909
491,0.0993
492,0.1002
493,0.1085
494,0.1119
495,0.1195
496,0.1202
497,0.1233
498,0.1266
499,0.1308
500,0.1248
501,0.1226
502,0.1233
503,0.1157
504,0.1136
505,0.1105
506,0.1034
507,0.0952
508,0.0920
509,0.0815
510,0.0755
511,0.0706
512,0.0655
513,0.0618
514,0.0572
515,0.0558
516,0.0562
517,0.0559
518,0.0562
519,0.0609
520,0.0648
521,0.0717
522,0.0777
523,0.0835
524,0.0894
525,0.0990
526,0.1049
527,0.1080
528,0.1106
529,0.1198
530,0.1216
531,0.1217
532,0.1208
533,0.1208
534,0.1193
535,0.1152
536,0.1130
537,0.1077
538,0.1009
539,0.0969
540,0.0922
541,0.0846
542,0.0776
543,0.0745
544,0.0718
545,0.0668
546,0.0668
547,0.0673
548,0.0689
549,0.0718
550,0.0748
551,0.0842
552,0.0912
553,0.1010
554,0.1124
555,0.1214
556,0.1338
557,0.1442
558,0.1569
559,0.1668
560,0.1748
561,0.1790
562,0.1869
563,0.1900
564,0.1947
565,0.1919
566,0.1921
567,0.1912
568,0.1818
569,0.1779
570,0.1705
571,0.1583
572,0.1514
573,0.1418
574,0.1270
575,0.1181
576,0.1074
577,0.0984
578,0.0924
579,0.0824
580,0.0774
581,0.0732
582,0.0709
583,0.0695
584,0.0723
585,0.0735
586,0.0792
587,0.0872
588,0.0969
589,0.1053
590,0.1167
591,0.1306
592,0.1462
593,0.1612
594,0.1791
595,0.1952
596,0.2068
597,0.2227
598,0.2358
599,0.2496
600,0.2633
601,0.2698
602,0.2775
603,0.2813
604,0.2821
605,0.2830
606,0.2826
607,0.2767
608,0.2654
609,0.2565
610,0.2464
611,0.2308
612,0.2167
613,0.1991
614,0.1825
615,0.1662
616,0.1477
617,0.1349
618,0.1234
619,0.1091
620,0.0989
621,0.0913
622,0.0830
623,0.0784
624,0.0746
625,0.0783
626,0.0784
627,0.0832
628,0.0889
629,0.0973
630,0.1088
631,0.1199
632,0.1362
633,0.1477
634,0.1613
635,0.1785
636,0.1968
637,0.2101
638,0.2316
639,0.2441
640,0.2623
641,0.2744
642,0.2853
643,0.2973
644,0.3042
645,0.3155
646,0.3212
647,0.3229
648,0.3238
649,0.3280
650,0.3235
651,0.3206
652,0.3093
653,0.3049
654,0.2964
655,0.2810
656,0.2693
657,0.2564
658,0.2359
659,0.2207
660,0.2043
661,0.1842
662,0.1699
663,0.1522
664,0.1366
665,0.1283
666,0.1130
667,0.1014
668,0.0912
669,0.0837
670,0.0784
671,0.0728
672,0.0712
673,0.0731
674,0.0744
675,0.0810
676,0.0854
677,0.0962
678,0.1052
679,0.1124
680,0.1242
681,0.1385
682,0.1514
683,0.1670
684,0.1823
685,0.1997
686,0.2125
687,0.2261
688,0.2426
689,0.2550
690,0.2678
691,0.2799
692,0.2902
693,0.2970
694,0.3055
695,0.3095
696,0.3138
697,0.3170
698,0.3181
699,0.3179
700,0.3120
701,0.3161
702,0.3115
703,0.3069
704,0.2967
705,0.2877
706,0.2808
707,0.2670
708,0.2579
709,0.2423
710,0.2334
711,0.2178
712,0.2055
713,0.1900
714,0.1747
715,0.1596
716,0.1474
717,0.1347
718,0.1193
719,0.1050
720,0.0969
721,0.0874
722,0.0770
723,0.0694
724,0.0651
725,0.0605
726,0.0569
727,0.0571
728,0.0569
729,0.0570
730,0.0574
731,0.0624
732,0.0672
733,0.0755
734,0.0814
735,0.0886
736,0.0982
737,0.1079
738,0.1178
739,0.1301
740,0.1395
741,0.1480
742,0.1655
743,0.1741
744,0.1833
745,0.1951
746,0.2053
747,0.2136
748,0.2230
749,0.2294
750,0.2371
751,0.2455
752,0.2511
753,0.2532
754,0.2588
755,0.2641
756,0.2662
757,0.2662
758,0.2594
759,0.2603
760,0.2597
761,0.2583
762,0.2535
763,0.2473
764,0.2446
765,0.2372
766,0.2253
767,0.2178
768,0.2166
769,0.2058
770,0.1956
771,0.1871
772,0.1764
773,0.1667
774,0.1560
775,0.1492
776,0.1403
777,0.1294
778,0.1217
779,0.1110
780,0.1014
781,0.0919
782,0.0824
783,0.0764
784,0.0695
785,0.0644
786,0.0593
787,0.0538
788,0.0491
789,0.0470
790,0.0432
791,0.0410
792,0.0402
793,0.0375
794,0.0394
795,0.0395
796,0.0420
797,0.0439
798,0.0454
799,0.0493
800,0.0532
801,0.0582
802,0.0617
803,0.0690
804,0.0749
805,0.0815
806,0.0888
807,0.0938
808,0.0993
809,0.1060
810,0.1114
811,0.1204
812,0.1269
813,0.1335
814,0.1407
815,0.1459
816,0.1514
817,0.1556
818,0.1636
819,0.1664
820,0.1724
821,0.1753
822,0.1777
823,0.1821
824,0.1850
825,0.1817
826,0.1850
827,0.1877
828,0.1889
829,0.1890
830,0.1875
831,0.1864
832,0.1831
833,0.1817
834,0.1770
835,0.1750
836,0.1722
837,0.1705
838,0.1654
839,0.1613
840,0.1538
841,0.1509
842,0.1462
843,0.1383
844,0.1346
845,0.1276
846,0.1219
847,0.1156
848,0.1101
849,0.1036
850,0.0983
851,0.0942
852,0.0875
853,0.0820
854,0.0760
855,0.0704
856,0.0670
857,0.0603
858,0.0558
859,0.0524
860,0.0482
861,0.0435
862,0.0408
863,0.0374
864,0.0351
865,0.0320
866,0.0298
867,0.0281
868,0.0263
869,0.0247
870,0.0224
871,0.0213
872,0.0223
873,0.0203
874,0.0209
875,0.0209
876,0.0214
877,0.0235
878,0.0227
879,0.0249
880,0.0263
881,0.0278
882,0.0302
883,0.0337
884,0.0357
885,0.0384
886,0.0404
887,0.0452
888,0.0482
889,0.0515
890,0.0534
891,0.0569
892,0.0610
893,0.0646
894,0.0666
895,0.0691
896,0.0729
897,0.0761
898,0.0791
899,0.0811
900,0.0841
901,0.0869
902,0.0904
903,0.0894
904,0.0915
905,0.0950
906,0.0957
907,0.0951
908,0.0962
909,0.0969
910,0.0984
911,0.0996
912,0.0967
913,0.0980
914,0.0979
915,0.0957
916,0.0964
917,0.0946
918,0.0924
919,0.0904
920,0.0891
921,0.0907
922,0.0908
923,0.0861
924,0.0859
925,0.0841
926,0.0807
927,0.0779
928,0.0740
929,0.0682
930,0.0648
931,0.0628
932,0.0577
933,0.0535
934,0.0488
935,0.0430
936,0.0366
937,0.0313
938,0.0251
939,0.0196
940,0.0182
941,0.0157
942,0.0140

View file

@ -1,543 +0,0 @@
400,1.0000
401,1.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.5401
407,0.0000
408,0.0000
409,1.0000
410,0.5889
411,0.5871
412,0.6080
413,0.5299
414,0.5685
415,0.5010
416,0.5548
417,0.5158
418,0.5127
419,0.4856
420,0.5554
421,0.4909
422,0.4679
423,0.5429
424,0.4826
425,0.5240
426,0.5309
427,0.5768
428,0.5856
429,0.4705
430,0.5404
431,0.5181
432,0.4471
433,0.4441
434,0.4664
435,0.4037
436,0.3923
437,0.3975
438,0.3969
439,0.3767
440,0.3818
441,0.3763
442,0.3827
443,0.4036
444,0.3924
445,0.4020
446,0.4108
447,0.3903
448,0.3756
449,0.3389
450,0.3338
451,0.3197
452,0.2811
453,0.2640
454,0.2274
455,0.2348
456,0.2182
457,0.2005
458,0.1866
459,0.1868
460,0.1744
461,0.1758
462,0.1788
463,0.1737
464,0.1694
465,0.1623
466,0.1868
467,0.1837
468,0.1779
469,0.1878
470,0.1902
471,0.1879
472,0.1856
473,0.1856
474,0.1761
475,0.1705
476,0.1618
477,0.1537
478,0.1457
479,0.1408
480,0.1427
481,0.1332
482,0.1248
483,0.1204
484,0.1172
485,0.1167
486,0.1086
487,0.1076
488,0.1061
489,0.1050
490,0.1009
491,0.1011
492,0.0974
493,0.1034
494,0.1031
495,0.1015
496,0.1021
497,0.1046
498,0.1037
499,0.1050
500,0.1034
501,0.1040
502,0.1052
503,0.1039
504,0.1057
505,0.1043
506,0.1018
507,0.1012
508,0.0998
509,0.0983
510,0.0931
511,0.0914
512,0.0868
513,0.0852
514,0.0778
515,0.0741
516,0.0724
517,0.0673
518,0.0651
519,0.0643
520,0.0643
521,0.0677
522,0.0669
523,0.0679
524,0.0695
525,0.0720
526,0.0762
527,0.0793
528,0.0817
529,0.0881
530,0.0931
531,0.0949
532,0.0997
533,0.1031
534,0.1080
535,0.1109
536,0.1139
537,0.1150
538,0.1185
539,0.1178
540,0.1179
541,0.1175
542,0.1170
543,0.1156
544,0.1170
545,0.1149
546,0.1104
547,0.1088
548,0.1050
549,0.1006
550,0.0997
551,0.0977
552,0.0942
553,0.0938
554,0.0917
555,0.0924
556,0.0923
557,0.0955
558,0.0982
559,0.1019
560,0.1049
561,0.1105
562,0.1183
563,0.1223
564,0.1313
565,0.1373
566,0.1412
567,0.1464
568,0.1519
569,0.1570
570,0.1632
571,0.1612
572,0.1648
573,0.1678
574,0.1684
575,0.1709
576,0.1694
577,0.1663
578,0.1664
579,0.1601
580,0.1607
581,0.1553
582,0.1488
583,0.1456
584,0.1442
585,0.1335
586,0.1278
587,0.1243
588,0.1197
589,0.1168
590,0.1142
591,0.1125
592,0.1108
593,0.1107
594,0.1125
595,0.1142
596,0.1154
597,0.1204
598,0.1230
599,0.1320
600,0.1387
601,0.1478
602,0.1544
603,0.1636
604,0.1729
605,0.1840
606,0.1952
607,0.2069
608,0.2153
609,0.2244
610,0.2296
611,0.2337
612,0.2404
613,0.2449
614,0.2481
615,0.2520
616,0.2474
617,0.2488
618,0.2466
619,0.2405
620,0.2358
621,0.2310
622,0.2264
623,0.2160
624,0.2073
625,0.2027
626,0.1940
627,0.1878
628,0.1757
629,0.1683
630,0.1578
631,0.1517
632,0.1470
633,0.1419
634,0.1365
635,0.1291
636,0.1284
637,0.1244
638,0.1246
639,0.1259
640,0.1257
641,0.1290
642,0.1306
643,0.1339
644,0.1391
645,0.1477
646,0.1561
647,0.1644
648,0.1724
649,0.1821
650,0.1933
651,0.2065
652,0.2146
653,0.2231
654,0.2316
655,0.2410
656,0.2517
657,0.2595
658,0.2689
659,0.2737
660,0.2794
661,0.2850
662,0.2906
663,0.2911
664,0.2918
665,0.2918
666,0.2904
667,0.2875
668,0.2808
669,0.2797
670,0.2697
671,0.2612
672,0.2500
673,0.2439
674,0.2349
675,0.2248
676,0.2107
677,0.2022
678,0.1904
679,0.1832
680,0.1751
681,0.1642
682,0.1572
683,0.1479
684,0.1404
685,0.1347
686,0.1283
687,0.1220
688,0.1211
689,0.1167
690,0.1153
691,0.1151
692,0.1160
693,0.1175
694,0.1215
695,0.1245
696,0.1272
697,0.1320
698,0.1396
699,0.1425
700,0.1483
701,0.1566
702,0.1659
703,0.1728
704,0.1802
705,0.1876
706,0.1969
707,0.2024
708,0.2131
709,0.2194
710,0.2278
711,0.2338
712,0.2406
713,0.2465
714,0.2505
715,0.2522
716,0.2587
717,0.2587
718,0.2566
719,0.2544
720,0.2543
721,0.2527
722,0.2469
723,0.2468
724,0.2421
725,0.2403
726,0.2377
727,0.2304
728,0.2287
729,0.2259
730,0.2156
731,0.2097
732,0.2009
733,0.1964
734,0.1883
735,0.1788
736,0.1718
737,0.1632
738,0.1573
739,0.1500
740,0.1394
741,0.1334
742,0.1250
743,0.1173
744,0.1100
745,0.1073
746,0.1006
747,0.0979
748,0.0953
749,0.0906
750,0.0902
751,0.0863
752,0.0852
753,0.0840
754,0.0851
755,0.0863
756,0.0878
757,0.0900
758,0.0914
759,0.0947
760,0.0998
761,0.1039
762,0.1086
763,0.1128
764,0.1168
765,0.1212
766,0.1287
767,0.1319
768,0.1393
769,0.1430
770,0.1448
771,0.1525
772,0.1557
773,0.1592
774,0.1637
775,0.1697
776,0.1762
777,0.1761
778,0.1779
779,0.1850
780,0.1845
781,0.1861
782,0.1887
783,0.1866
784,0.1880
785,0.1871
786,0.1896
787,0.1880
788,0.1840
789,0.1884
790,0.1844
791,0.1842
792,0.1809
793,0.1800
794,0.1770
795,0.1731
796,0.1733
797,0.1710
798,0.1675
799,0.1620
800,0.1584
801,0.1572
802,0.1502
803,0.1451
804,0.1357
805,0.1345
806,0.1277
807,0.1224
808,0.1159
809,0.1114
810,0.1066
811,0.0986
812,0.0951
813,0.0889
814,0.0836
815,0.0795
816,0.0749
817,0.0713
818,0.0671
819,0.0647
820,0.0624
821,0.0588
822,0.0570
823,0.0548
824,0.0545
825,0.0512
826,0.0513
827,0.0515
828,0.0522
829,0.0519
830,0.0531
831,0.0534
832,0.0559
833,0.0558
834,0.0576
835,0.0610
836,0.0625
837,0.0658
838,0.0686
839,0.0716
840,0.0712
841,0.0765
842,0.0783
843,0.0815
844,0.0843
845,0.0863
846,0.0886
847,0.0922
848,0.0941
849,0.0982
850,0.1020
851,0.1041
852,0.1055
853,0.1075
854,0.1073
855,0.1122
856,0.1126
857,0.1133
858,0.1158
859,0.1168
860,0.1179
861,0.1180
862,0.1137
863,0.1177
864,0.1160
865,0.1164
866,0.1179
867,0.1154
868,0.1128
869,0.1112
870,0.1094
871,0.1087
872,0.1040
873,0.1016
874,0.1000
875,0.0968
876,0.0943
877,0.0945
878,0.0916
879,0.0923
880,0.0915
881,0.0889
882,0.0882
883,0.0875
884,0.0837
885,0.0841
886,0.0818
887,0.0804
888,0.0792
889,0.0761
890,0.0751
891,0.0735
892,0.0720
893,0.0673
894,0.0652
895,0.0621
896,0.0604
897,0.0571
898,0.0541
899,0.0506
900,0.0491
901,0.0479
902,0.0446
903,0.0415
904,0.0400
905,0.0374
906,0.0363
907,0.0329
908,0.0326
909,0.0300
910,0.0290
911,0.0291
912,0.0257
913,0.0263
914,0.0246
915,0.0225
916,0.0234
917,0.0221
918,0.0228
919,0.0225
920,0.0219
921,0.0224
922,0.0227
923,0.0230
924,0.0230
925,0.0233
926,0.0235
927,0.0239
928,0.0245
929,0.0242
930,0.0246
931,0.0246
932,0.0241
933,0.0238
934,0.0240
935,0.0223
936,0.0202
937,0.0182
938,0.0164
939,0.0138
940,0.0137
941,0.0127
942,0.0117

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.3001
407,0.0000
408,0.0000
409,1.0000
410,0.5267
411,0.4437
412,0.5973
413,0.3827
414,0.5836
415,0.5422
416,0.6498
417,0.5700
418,0.5097
419,0.5423
420,0.5488
421,0.5530
422,0.5882
423,0.5490
424,0.5265
425,0.5198
426,0.5508
427,0.5526
428,0.4758
429,0.4077
430,0.4906
431,0.4416
432,0.4305
433,0.4031
434,0.4542
435,0.4152
436,0.4618
437,0.4158
438,0.4269
439,0.4113
440,0.4582
441,0.4134
442,0.4121
443,0.4377
444,0.4194
445,0.4227
446,0.3931
447,0.3699
448,0.3403
449,0.3194
450,0.2983
451,0.2760
452,0.2531
453,0.2327
454,0.2165
455,0.2114
456,0.2061
457,0.1913
458,0.1948
459,0.1989
460,0.1889
461,0.1888
462,0.2019
463,0.1914
464,0.1945
465,0.1849
466,0.2049
467,0.1963
468,0.1891
469,0.1868
470,0.1799
471,0.1790
472,0.1702
473,0.1652
474,0.1584
475,0.1532
476,0.1423
477,0.1355
478,0.1292
479,0.1291
480,0.1279
481,0.1198
482,0.1193
483,0.1173
484,0.1153
485,0.1180
486,0.1193
487,0.1173
488,0.1138
489,0.1203
490,0.1168
491,0.1167
492,0.1144
493,0.1164
494,0.1119
495,0.1122
496,0.1039
497,0.1079
498,0.1021
499,0.1033
500,0.0976
501,0.0933
502,0.0936
503,0.0894
504,0.0897
505,0.0879
506,0.0866
507,0.0847
508,0.0853
509,0.0803
510,0.0817
511,0.0807
512,0.0781
513,0.0777
514,0.0762
515,0.0755
516,0.0766
517,0.0752
518,0.0742
519,0.0761
520,0.0760
521,0.0795
522,0.0806
523,0.0826
524,0.0850
525,0.0874
526,0.0883
527,0.0901
528,0.0890
529,0.0954
530,0.0962
531,0.0968
532,0.0971
533,0.0975
534,0.0988
535,0.0987
536,0.1018
537,0.0997
538,0.0999
539,0.0999
540,0.0997
541,0.0976
542,0.0967
543,0.0965
544,0.0986
545,0.0967
546,0.0953
547,0.0956
548,0.0951
549,0.0950
550,0.0949
551,0.0954
552,0.0981
553,0.0996
554,0.1030
555,0.1065
556,0.1097
557,0.1152
558,0.1204
559,0.1226
560,0.1246
561,0.1293
562,0.1342
563,0.1406
564,0.1418
565,0.1454
566,0.1481
567,0.1511
568,0.1541
569,0.1554
570,0.1565
571,0.1563
572,0.1565
573,0.1545
574,0.1554
575,0.1531
576,0.1524
577,0.1525
578,0.1493
579,0.1458
580,0.1414
581,0.1376
582,0.1343
583,0.1321
584,0.1312
585,0.1254
586,0.1208
587,0.1191
588,0.1186
589,0.1162
590,0.1145
591,0.1135
592,0.1158
593,0.1181
594,0.1176
595,0.1224
596,0.1233
597,0.1267
598,0.1319
599,0.1380
600,0.1444
601,0.1502
602,0.1535
603,0.1626
604,0.1728
605,0.1791
606,0.1873
607,0.1972
608,0.2041
609,0.2087
610,0.2134
611,0.2196
612,0.2231
613,0.2257
614,0.2312
615,0.2291
616,0.2305
617,0.2314
618,0.2312
619,0.2289
620,0.2272
621,0.2254
622,0.2205
623,0.2135
624,0.2088
625,0.2112
626,0.2052
627,0.1994
628,0.1892
629,0.1841
630,0.1737
631,0.1708
632,0.1681
633,0.1638
634,0.1574
635,0.1542
636,0.1515
637,0.1453
638,0.1447
639,0.1418
640,0.1412
641,0.1418
642,0.1396
643,0.1409
644,0.1437
645,0.1459
646,0.1458
647,0.1509
648,0.1530
649,0.1583
650,0.1653
651,0.1718
652,0.1766
653,0.1809
654,0.1882
655,0.1928
656,0.2028
657,0.2108
658,0.2162
659,0.2213
660,0.2327
661,0.2355
662,0.2438
663,0.2492
664,0.2475
665,0.2571
666,0.2555
667,0.2598
668,0.2652
669,0.2658
670,0.2620
671,0.2601
672,0.2576
673,0.2586
674,0.2532
675,0.2526
676,0.2422
677,0.2381
678,0.2332
679,0.2288
680,0.2220
681,0.2148
682,0.2095
683,0.2028
684,0.1923
685,0.1908
686,0.1838
687,0.1754
688,0.1748
689,0.1668
690,0.1619
691,0.1569
692,0.1529
693,0.1484
694,0.1470
695,0.1442
696,0.1391
697,0.1389
698,0.1365
699,0.1356
700,0.1400
701,0.1395
702,0.1409
703,0.1422
704,0.1425
705,0.1457
706,0.1477
707,0.1516
708,0.1544
709,0.1565
710,0.1641
711,0.1670
712,0.1704
713,0.1746
714,0.1787
715,0.1827
716,0.1867
717,0.1926
718,0.1934
719,0.1954
720,0.1956
721,0.2001
722,0.2024
723,0.2027
724,0.2055
725,0.2090
726,0.2128
727,0.2132
728,0.2160
729,0.2158
730,0.2177
731,0.2200
732,0.2193
733,0.2208
734,0.2180
735,0.2183
736,0.2133
737,0.2107
738,0.2106
739,0.2064
740,0.2008
741,0.1950
742,0.1934
743,0.1876
744,0.1843
745,0.1771
746,0.1717
747,0.1665
748,0.1634
749,0.1564
750,0.1523
751,0.1478
752,0.1417
753,0.1365
754,0.1326
755,0.1290
756,0.1250
757,0.1200
758,0.1177
759,0.1153
760,0.1119
761,0.1091
762,0.1049
763,0.1032
764,0.1035
765,0.1024
766,0.1023
767,0.1010
768,0.1021
769,0.1014
770,0.1004
771,0.1024
772,0.1014
773,0.1027
774,0.1052
775,0.1079
776,0.1089
777,0.1089
778,0.1108
779,0.1129
780,0.1162
781,0.1150
782,0.1212
783,0.1202
784,0.1242
785,0.1270
786,0.1307
787,0.1326
788,0.1332
789,0.1375
790,0.1379
791,0.1404
792,0.1426
793,0.1469
794,0.1489
795,0.1517
796,0.1570
797,0.1587
798,0.1585
799,0.1589
800,0.1633
801,0.1641
802,0.1673
803,0.1662
804,0.1662
805,0.1685
806,0.1675
807,0.1661
808,0.1641
809,0.1627
810,0.1616
811,0.1593
812,0.1546
813,0.1534
814,0.1494
815,0.1482
816,0.1428
817,0.1409
818,0.1378
819,0.1330
820,0.1313
821,0.1264
822,0.1232
823,0.1183
824,0.1159
825,0.1102
826,0.1078
827,0.1034
828,0.1012
829,0.0991
830,0.0948
831,0.0911
832,0.0888
833,0.0857
834,0.0838
835,0.0782
836,0.0752
837,0.0758
838,0.0717
839,0.0703
840,0.0655
841,0.0645
842,0.0634
843,0.0623
844,0.0593
845,0.0591
846,0.0577
847,0.0560
848,0.0555
849,0.0557
850,0.0550
851,0.0551
852,0.0548
853,0.0544
854,0.0552
855,0.0553
856,0.0566
857,0.0545
858,0.0573
859,0.0585
860,0.0577
861,0.0579
862,0.0591
863,0.0606
864,0.0601
865,0.0623
866,0.0637
867,0.0648
868,0.0651
869,0.0646
870,0.0662
871,0.0659
872,0.0672
873,0.0662
874,0.0672
875,0.0674
876,0.0680
877,0.0701
878,0.0699
879,0.0726
880,0.0744
881,0.0763
882,0.0788
883,0.0815
884,0.0805
885,0.0854
886,0.0879
887,0.0875
888,0.0903
889,0.0903
890,0.0949
891,0.0941
892,0.0975
893,0.0973
894,0.0980
895,0.0962
896,0.0970
897,0.0970
898,0.0957
899,0.0954
900,0.0954
901,0.0959
902,0.0945
903,0.0918
904,0.0914
905,0.0908
906,0.0861
907,0.0840
908,0.0826
909,0.0828
910,0.0802
911,0.0795
912,0.0756
913,0.0747
914,0.0706
915,0.0696
916,0.0692
917,0.0654
918,0.0637
919,0.0609
920,0.0579
921,0.0581
922,0.0542
923,0.0535
924,0.0511
925,0.0480
926,0.0479
927,0.0442
928,0.0415
929,0.0389
930,0.0370
931,0.0345
932,0.0308
933,0.0296
934,0.0261
935,0.0228
936,0.0188
937,0.0171
938,0.0131
939,0.0107
940,0.0096
941,0.0076
942,0.0072

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.6800
407,0.0000
408,0.0000
409,1.0000
410,0.4342
411,0.5446
412,0.5437
413,0.5173
414,0.6383
415,0.5696
416,0.6527
417,0.6123
418,0.5372
419,0.5498
420,0.6039
421,0.5652
422,0.5063
423,0.5100
424,0.4545
425,0.5168
426,0.5389
427,0.5153
428,0.5207
429,0.4052
430,0.5029
431,0.4443
432,0.4031
433,0.3947
434,0.4091
435,0.4334
436,0.4351
437,0.4328
438,0.4021
439,0.3959
440,0.4516
441,0.3884
442,0.3963
443,0.3994
444,0.3801
445,0.3934
446,0.3676
447,0.3454
448,0.3286
449,0.3193
450,0.2983
451,0.2846
452,0.2613
453,0.2373
454,0.2219
455,0.2156
456,0.2141
457,0.1959
458,0.1934
459,0.1988
460,0.1964
461,0.1878
462,0.1948
463,0.1852
464,0.1808
465,0.1788
466,0.1829
467,0.1800
468,0.1725
469,0.1679
470,0.1644
471,0.1636
472,0.1517
473,0.1539
474,0.1530
475,0.1430
476,0.1395
477,0.1318
478,0.1309
479,0.1321
480,0.1374
481,0.1301
482,0.1301
483,0.1279
484,0.1263
485,0.1322
486,0.1277
487,0.1276
488,0.1240
489,0.1259
490,0.1230
491,0.1200
492,0.1134
493,0.1154
494,0.1082
495,0.1029
496,0.0956
497,0.0958
498,0.0917
499,0.0894
500,0.0846
501,0.0809
502,0.0796
503,0.0780
504,0.0780
505,0.0766
506,0.0783
507,0.0778
508,0.0793
509,0.0786
510,0.0812
511,0.0847
512,0.0858
513,0.0840
514,0.0840
515,0.0846
516,0.0853
517,0.0848
518,0.0853
519,0.0872
520,0.0865
521,0.0896
522,0.0884
523,0.0884
524,0.0908
525,0.0898
526,0.0916
527,0.0900
528,0.0886
529,0.0893
530,0.0878
531,0.0881
532,0.0858
533,0.0864
534,0.0864
535,0.0859
536,0.0851
537,0.0852
538,0.0841
539,0.0839
540,0.0821
541,0.0844
542,0.0843
543,0.0840
544,0.0891
545,0.0893
546,0.0903
547,0.0944
548,0.0958
549,0.1017
550,0.1028
551,0.1061
552,0.1101
553,0.1142
554,0.1199
555,0.1234
556,0.1268
557,0.1304
558,0.1336
559,0.1373
560,0.1396
561,0.1392
562,0.1440
563,0.1445
564,0.1467
565,0.1464
566,0.1476
567,0.1461
568,0.1452
569,0.1451
570,0.1453
571,0.1404
572,0.1404
573,0.1392
574,0.1373
575,0.1345
576,0.1337
577,0.1326
578,0.1313
579,0.1259
580,0.1266
581,0.1238
582,0.1210
583,0.1215
584,0.1220
585,0.1198
586,0.1178
587,0.1195
588,0.1204
589,0.1229
590,0.1238
591,0.1239
592,0.1283
593,0.1288
594,0.1341
595,0.1375
596,0.1403
597,0.1466
598,0.1501
599,0.1555
600,0.1633
601,0.1685
602,0.1712
603,0.1755
604,0.1823
605,0.1859
606,0.1924
607,0.1987
608,0.2001
609,0.2019
610,0.2043
611,0.2072
612,0.2079
613,0.2102
614,0.2102
615,0.2088
616,0.2060
617,0.2043
618,0.2030
619,0.1989
620,0.1954
621,0.1955
622,0.1923
623,0.1884
624,0.1833
625,0.1861
626,0.1809
627,0.1783
628,0.1715
629,0.1695
630,0.1635
631,0.1624
632,0.1629
633,0.1603
634,0.1578
635,0.1578
636,0.1536
637,0.1543
638,0.1562
639,0.1559
640,0.1569
641,0.1599
642,0.1585
643,0.1614
644,0.1648
645,0.1689
646,0.1703
647,0.1720
648,0.1758
649,0.1819
650,0.1859
651,0.1907
652,0.1944
653,0.1967
654,0.2024
655,0.2055
656,0.2108
657,0.2151
658,0.2198
659,0.2250
660,0.2306
661,0.2310
662,0.2356
663,0.2366
664,0.2351
665,0.2421
666,0.2427
667,0.2416
668,0.2460
669,0.2446
670,0.2397
671,0.2365
672,0.2330
673,0.2329
674,0.2298
675,0.2254
676,0.2193
677,0.2134
678,0.2078
679,0.2075
680,0.2010
681,0.1940
682,0.1937
683,0.1871
684,0.1801
685,0.1787
686,0.1718
687,0.1645
688,0.1652
689,0.1578
690,0.1566
691,0.1536
692,0.1524
693,0.1476
694,0.1456
695,0.1438
696,0.1419
697,0.1410
698,0.1396
699,0.1391
700,0.1398
701,0.1409
702,0.1413
703,0.1437
704,0.1425
705,0.1480
706,0.1497
707,0.1551
708,0.1562
709,0.1587
710,0.1632
711,0.1628
712,0.1710
713,0.1730
714,0.1769
715,0.1797
716,0.1833
717,0.1880
718,0.1889
719,0.1941
720,0.1913
721,0.1978
722,0.1968
723,0.2001
724,0.2031
725,0.2048
726,0.2079
727,0.2113
728,0.2149
729,0.2192
730,0.2170
731,0.2206
732,0.2199
733,0.2226
734,0.2209
735,0.2211
736,0.2231
737,0.2187
738,0.2193
739,0.2174
740,0.2128
741,0.2089
742,0.2063
743,0.1999
744,0.1970
745,0.1954
746,0.1894
747,0.1804
748,0.1782
749,0.1732
750,0.1692
751,0.1650
752,0.1583
753,0.1527
754,0.1481
755,0.1424
756,0.1393
757,0.1331
758,0.1271
759,0.1222
760,0.1176
761,0.1145
762,0.1103
763,0.1053
764,0.1022
765,0.1006
766,0.0968
767,0.0954
768,0.0913
769,0.0914
770,0.0891
771,0.0864
772,0.0851
773,0.0828
774,0.0829
775,0.0832
776,0.0837
777,0.0822
778,0.0838
779,0.0844
780,0.0847
781,0.0832
782,0.0869
783,0.0873
784,0.0899
785,0.0919
786,0.0945
787,0.0940
788,0.0953
789,0.0987
790,0.1010
791,0.1032
792,0.1074
793,0.1126
794,0.1177
795,0.1213
796,0.1256
797,0.1280
798,0.1312
799,0.1344
800,0.1404
801,0.1426
802,0.1476
803,0.1513
804,0.1537
805,0.1544
806,0.1595
807,0.1606
808,0.1617
809,0.1616
810,0.1631
811,0.1659
812,0.1669
813,0.1663
814,0.1673
815,0.1671
816,0.1675
817,0.1665
818,0.1648
819,0.1641
820,0.1641
821,0.1626
822,0.1622
823,0.1582
824,0.1580
825,0.1546
826,0.1536
827,0.1495
828,0.1480
829,0.1461
830,0.1427
831,0.1390
832,0.1368
833,0.1303
834,0.1278
835,0.1245
836,0.1224
837,0.1193
838,0.1148
839,0.1123
840,0.1065
841,0.1050
842,0.1016
843,0.0969
844,0.0937
845,0.0894
846,0.0857
847,0.0838
848,0.0787
849,0.0766
850,0.0733
851,0.0707
852,0.0666
853,0.0641
854,0.0601
855,0.0596
856,0.0579
857,0.0535
858,0.0517
859,0.0507
860,0.0471
861,0.0464
862,0.0439
863,0.0422
864,0.0419
865,0.0388
866,0.0391
867,0.0386
868,0.0364
869,0.0361
870,0.0342
871,0.0335
872,0.0321
873,0.0316
874,0.0320
875,0.0316
876,0.0315
877,0.0331
878,0.0311
879,0.0329
880,0.0340
881,0.0344
882,0.0359
883,0.0373
884,0.0377
885,0.0402
886,0.0412
887,0.0431
888,0.0457
889,0.0476
890,0.0496
891,0.0510
892,0.0526
893,0.0549
894,0.0552
895,0.0573
896,0.0580
897,0.0598
898,0.0623
899,0.0632
900,0.0648
901,0.0689
902,0.0706
903,0.0702
904,0.0716
905,0.0728
906,0.0735
907,0.0740
908,0.0743
909,0.0746
910,0.0780
911,0.0782
912,0.0778
913,0.0784
914,0.0778
915,0.0775
916,0.0767
917,0.0775
918,0.0766
919,0.0763
920,0.0752
921,0.0771
922,0.0776
923,0.0782
924,0.0756
925,0.0762
926,0.0766
927,0.0729
928,0.0699
929,0.0674
930,0.0675
931,0.0643
932,0.0597
933,0.0574
934,0.0528
935,0.0466
936,0.0406
937,0.0354
938,0.0301
939,0.0246
940,0.0226
941,0.0192
942,0.0196

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.3749
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.6600
407,0.0000
408,0.0000
409,1.0000
410,0.4916
411,0.4383
412,0.5203
413,0.5063
414,0.5562
415,0.5294
416,0.6162
417,0.5603
418,0.5732
419,0.6028
420,0.6048
421,0.5652
422,0.5304
423,0.5375
424,0.5351
425,0.5115
426,0.5304
427,0.5362
428,0.4651
429,0.4219
430,0.4627
431,0.4073
432,0.4310
433,0.3949
434,0.4034
435,0.3891
436,0.3844
437,0.4246
438,0.3881
439,0.3943
440,0.4218
441,0.4028
442,0.3927
443,0.3998
444,0.3892
445,0.4053
446,0.3852
447,0.3497
448,0.3398
449,0.3153
450,0.2818
451,0.2770
452,0.2610
453,0.2337
454,0.2178
455,0.2218
456,0.2070
457,0.2028
458,0.1896
459,0.1932
460,0.1881
461,0.1838
462,0.1936
463,0.1839
464,0.1820
465,0.1720
466,0.1886
467,0.1791
468,0.1786
469,0.1727
470,0.1703
471,0.1740
472,0.1618
473,0.1576
474,0.1516
475,0.1482
476,0.1391
477,0.1344
478,0.1305
479,0.1293
480,0.1339
481,0.1232
482,0.1202
483,0.1224
484,0.1160
485,0.1239
486,0.1161
487,0.1178
488,0.1136
489,0.1154
490,0.1172
491,0.1110
492,0.1043
493,0.1090
494,0.1062
495,0.1011
496,0.0960
497,0.0981
498,0.0945
499,0.0952
500,0.0922
501,0.0900
502,0.0881
503,0.0878
504,0.0878
505,0.0875
506,0.0859
507,0.0879
508,0.0893
509,0.0869
510,0.0889
511,0.0886
512,0.0857
513,0.0883
514,0.0867
515,0.0850
516,0.0835
517,0.0801
518,0.0802
519,0.0776
520,0.0780
521,0.0789
522,0.0790
523,0.0774
524,0.0767
525,0.0757
526,0.0749
527,0.0736
528,0.0736
529,0.0749
530,0.0735
531,0.0754
532,0.0751
533,0.0768
534,0.0772
535,0.0770
536,0.0799
537,0.0831
538,0.0859
539,0.0873
540,0.0901
541,0.0923
542,0.0950
543,0.1002
544,0.1053
545,0.1083
546,0.1121
547,0.1156
548,0.1179
549,0.1236
550,0.1234
551,0.1280
552,0.1310
553,0.1347
554,0.1376
555,0.1378
556,0.1420
557,0.1428
558,0.1415
559,0.1450
560,0.1426
561,0.1434
562,0.1409
563,0.1380
564,0.1366
565,0.1339
566,0.1297
567,0.1312
568,0.1268
569,0.1239
570,0.1216
571,0.1149
572,0.1130
573,0.1109
574,0.1078
575,0.1063
576,0.1056
577,0.1014
578,0.1017
579,0.0977
580,0.0998
581,0.0979
582,0.1001
583,0.0992
584,0.1018
585,0.1022
586,0.1026
587,0.1042
588,0.1118
589,0.1149
590,0.1190
591,0.1233
592,0.1291
593,0.1338
594,0.1430
595,0.1493
596,0.1540
597,0.1623
598,0.1706
599,0.1768
600,0.1867
601,0.1937
602,0.1987
603,0.2046
604,0.2119
605,0.2161
606,0.2200
607,0.2284
608,0.2316
609,0.2323
610,0.2352
611,0.2366
612,0.2368
613,0.2387
614,0.2349
615,0.2317
616,0.2300
617,0.2306
618,0.2253
619,0.2196
620,0.2106
621,0.2064
622,0.2015
623,0.1948
624,0.1865
625,0.1835
626,0.1756
627,0.1684
628,0.1611
629,0.1554
630,0.1454
631,0.1405
632,0.1363
633,0.1310
634,0.1251
635,0.1205
636,0.1168
637,0.1130
638,0.1126
639,0.1081
640,0.1061
641,0.1061
642,0.1071
643,0.1068
644,0.1065
645,0.1100
646,0.1125
647,0.1145
648,0.1196
649,0.1262
650,0.1304
651,0.1363
652,0.1422
653,0.1460
654,0.1523
655,0.1627
656,0.1705
657,0.1812
658,0.1878
659,0.1995
660,0.2087
661,0.2176
662,0.2253
663,0.2335
664,0.2369
665,0.2483
666,0.2563
667,0.2645
668,0.2677
669,0.2771
670,0.2790
671,0.2813
672,0.2842
673,0.2929
674,0.2904
675,0.2911
676,0.2924
677,0.2922
678,0.2872
679,0.2844
680,0.2823
681,0.2811
682,0.2752
683,0.2688
684,0.2645
685,0.2615
686,0.2543
687,0.2418
688,0.2399
689,0.2316
690,0.2226
691,0.2159
692,0.2077
693,0.1985
694,0.1902
695,0.1801
696,0.1729
697,0.1670
698,0.1582
699,0.1525
700,0.1436
701,0.1387
702,0.1325
703,0.1247
704,0.1154
705,0.1128
706,0.1048
707,0.1010
708,0.0968
709,0.0916
710,0.0905
711,0.0857
712,0.0835
713,0.0821
714,0.0813
715,0.0800
716,0.0792
717,0.0809
718,0.0806
719,0.0801
720,0.0815
721,0.0840
722,0.0864
723,0.0896
724,0.0934
725,0.0979
726,0.1019
727,0.1078
728,0.1136
729,0.1204
730,0.1234
731,0.1335
732,0.1377
733,0.1451
734,0.1520
735,0.1569
736,0.1670
737,0.1727
738,0.1775
739,0.1846
740,0.1894
741,0.1968
742,0.2031
743,0.2063
744,0.2098
745,0.2149
746,0.2193
747,0.2208
748,0.2247
749,0.2267
750,0.2303
751,0.2287
752,0.2338
753,0.2316
754,0.2337
755,0.2344
756,0.2351
757,0.2315
758,0.2300
759,0.2272
760,0.2255
761,0.2230
762,0.2201
763,0.2174
764,0.2129
765,0.2100
766,0.2070
767,0.2039
768,0.1981
769,0.1922
770,0.1896
771,0.1828
772,0.1762
773,0.1712
774,0.1645
775,0.1624
776,0.1560
777,0.1535
778,0.1468
779,0.1405
780,0.1355
781,0.1254
782,0.1213
783,0.1159
784,0.1137
785,0.1071
786,0.1027
787,0.0956
788,0.0908
789,0.0888
790,0.0830
791,0.0801
792,0.0770
793,0.0730
794,0.0693
795,0.0668
796,0.0639
797,0.0618
798,0.0594
799,0.0581
800,0.0552
801,0.0544
802,0.0530
803,0.0513
804,0.0489
805,0.0486
806,0.0494
807,0.0487
808,0.0487
809,0.0477
810,0.0486
811,0.0492
812,0.0501
813,0.0513
814,0.0527
815,0.0529
816,0.0564
817,0.0567
818,0.0584
819,0.0595
820,0.0628
821,0.0660
822,0.0694
823,0.0716
824,0.0748
825,0.0744
826,0.0785
827,0.0790
828,0.0847
829,0.0870
830,0.0902
831,0.0929
832,0.0958
833,0.0973
834,0.0995
835,0.1026
836,0.1065
837,0.1083
838,0.1109
839,0.1108
840,0.1116
841,0.1140
842,0.1166
843,0.1208
844,0.1190
845,0.1194
846,0.1225
847,0.1239
848,0.1232
849,0.1231
850,0.1239
851,0.1259
852,0.1248
853,0.1251
854,0.1251
855,0.1233
856,0.1250
857,0.1235
858,0.1230
859,0.1226
860,0.1204
861,0.1190
862,0.1185
863,0.1164
864,0.1154
865,0.1139
866,0.1119
867,0.1098
868,0.1084
869,0.1048
870,0.1009
871,0.0994
872,0.0975
873,0.0941
874,0.0911
875,0.0867
876,0.0866
877,0.0843
878,0.0825
879,0.0830
880,0.0818
881,0.0800
882,0.0802
883,0.0784
884,0.0768
885,0.0773
886,0.0761
887,0.0742
888,0.0719
889,0.0728
890,0.0703
891,0.0703
892,0.0684
893,0.0640
894,0.0631
895,0.0625
896,0.0607
897,0.0572
898,0.0559
899,0.0537
900,0.0510
901,0.0512
902,0.0490
903,0.0456
904,0.0450
905,0.0422
906,0.0412
907,0.0381
908,0.0361
909,0.0352
910,0.0334
911,0.0335
912,0.0296
913,0.0301
914,0.0286
915,0.0269
916,0.0256
917,0.0245
918,0.0242
919,0.0223
920,0.0220
921,0.0211
922,0.0213
923,0.0221
924,0.0209
925,0.0201
926,0.0194
927,0.0191
928,0.0183
929,0.0183
930,0.0166
931,0.0167
932,0.0159
933,0.0158
934,0.0144
935,0.0140
936,0.0118
937,0.0109
938,0.0088
939,0.0079
940,0.0080
941,0.0064
942,0.0070

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.6749
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.0000
407,0.0000
408,0.0000
409,1.0000
410,0.5204
411,0.4885
412,0.6326
413,0.5063
414,0.6169
415,0.5222
416,0.5655
417,0.5656
418,0.5470
419,0.5691
420,0.6295
421,0.5321
422,0.5300
423,0.4497
424,0.4886
425,0.5074
426,0.4826
427,0.4988
428,0.4395
429,0.3486
430,0.3925
431,0.3925
432,0.3897
433,0.3679
434,0.4152
435,0.4001
436,0.3728
437,0.4377
438,0.4522
439,0.4205
440,0.4782
441,0.4250
442,0.4780
443,0.4777
444,0.4515
445,0.4516
446,0.4157
447,0.3769
448,0.3702
449,0.3350
450,0.3149
451,0.2863
452,0.2650
453,0.2249
454,0.2204
455,0.2054
456,0.1857
457,0.1728
458,0.1584
459,0.1572
460,0.1456
461,0.1446
462,0.1464
463,0.1474
464,0.1472
465,0.1468
466,0.1570
467,0.1521
468,0.1536
469,0.1607
470,0.1622
471,0.1686
472,0.1594
473,0.1655
474,0.1699
475,0.1643
476,0.1586
477,0.1563
478,0.1578
479,0.1569
480,0.1598
481,0.1508
482,0.1482
483,0.1464
484,0.1457
485,0.1437
486,0.1369
487,0.1341
488,0.1301
489,0.1263
490,0.1168
491,0.1136
492,0.1029
493,0.1012
494,0.0931
495,0.0862
496,0.0799
497,0.0765
498,0.0702
499,0.0671
500,0.0641
501,0.0604
502,0.0591
503,0.0583
504,0.0575
505,0.0594
506,0.0623
507,0.0631
508,0.0676
509,0.0679
510,0.0701
511,0.0758
512,0.0787
513,0.0829
514,0.0838
515,0.0860
516,0.0889
517,0.0912
518,0.0923
519,0.0955
520,0.0956
521,0.1021
522,0.1023
523,0.1041
524,0.1052
525,0.1052
526,0.1071
527,0.1044
528,0.1040
529,0.1047
530,0.1030
531,0.1016
532,0.1009
533,0.0969
534,0.0953
535,0.0923
536,0.0919
537,0.0889
538,0.0856
539,0.0830
540,0.0795
541,0.0759
542,0.0723
543,0.0694
544,0.0700
545,0.0664
546,0.0667
547,0.0639
548,0.0628
549,0.0629
550,0.0609
551,0.0634
552,0.0657
553,0.0682
554,0.0709
555,0.0751
556,0.0765
557,0.0842
558,0.0889
559,0.0951
560,0.0978
561,0.1033
562,0.1110
563,0.1186
564,0.1253
565,0.1307
566,0.1371
567,0.1438
568,0.1489
569,0.1553
570,0.1632
571,0.1618
572,0.1696
573,0.1725
574,0.1754
575,0.1807
576,0.1840
577,0.1846
578,0.1875
579,0.1841
580,0.1876
581,0.1860
582,0.1823
583,0.1838
584,0.1805
585,0.1770
586,0.1729
587,0.1665
588,0.1655
589,0.1581
590,0.1579
591,0.1512
592,0.1431
593,0.1370
594,0.1321
595,0.1249
596,0.1188
597,0.1140
598,0.1060
599,0.1011
600,0.0956
601,0.0902
602,0.0865
603,0.0863
604,0.0811
605,0.0797
606,0.0791
607,0.0795
608,0.0777
609,0.0786
610,0.0813
611,0.0835
612,0.0863
613,0.0919
614,0.0978
615,0.1027
616,0.1090
617,0.1153
618,0.1241
619,0.1308
620,0.1376
621,0.1476
622,0.1592
623,0.1655
624,0.1760
625,0.1875
626,0.1941
627,0.2023
628,0.2097
629,0.2208
630,0.2283
631,0.2349
632,0.2430
633,0.2499
634,0.2526
635,0.2590
636,0.2633
637,0.2655
638,0.2733
639,0.2789
640,0.2798
641,0.2816
642,0.2802
643,0.2798
644,0.2796
645,0.2800
646,0.2744
647,0.2721
648,0.2679
649,0.2669
650,0.2613
651,0.2542
652,0.2451
653,0.2371
654,0.2314
655,0.2223
656,0.2125
657,0.2084
658,0.1944
659,0.1864
660,0.1800
661,0.1666
662,0.1590
663,0.1499
664,0.1395
665,0.1340
666,0.1235
667,0.1171
668,0.1084
669,0.1034
670,0.0978
671,0.0906
672,0.0855
673,0.0816
674,0.0805
675,0.0769
676,0.0755
677,0.0741
678,0.0762
679,0.0732
680,0.0758
681,0.0771
682,0.0832
683,0.0847
684,0.0903
685,0.0930
686,0.0998
687,0.1042
688,0.1115
689,0.1145
690,0.1229
691,0.1317
692,0.1391
693,0.1452
694,0.1544
695,0.1605
696,0.1673
697,0.1744
698,0.1833
699,0.1890
700,0.1971
701,0.2048
702,0.2122
703,0.2193
704,0.2235
705,0.2322
706,0.2392
707,0.2457
708,0.2489
709,0.2541
710,0.2606
711,0.2644
712,0.2649
713,0.2719
714,0.2716
715,0.2728
716,0.2732
717,0.2710
718,0.2696
719,0.2659
720,0.2612
721,0.2609
722,0.2575
723,0.2545
724,0.2511
725,0.2462
726,0.2428
727,0.2397
728,0.2344
729,0.2321
730,0.2292
731,0.2224
732,0.2144
733,0.2093
734,0.2012
735,0.1966
736,0.1908
737,0.1843
738,0.1773
739,0.1699
740,0.1580
741,0.1529
742,0.1460
743,0.1361
744,0.1294
745,0.1241
746,0.1182
747,0.1119
748,0.1065
749,0.0994
750,0.0948
751,0.0894
752,0.0833
753,0.0797
754,0.0762
755,0.0726
756,0.0702
757,0.0662
758,0.0639
759,0.0629
760,0.0599
761,0.0585
762,0.0571
763,0.0567
764,0.0563
765,0.0574
766,0.0561
767,0.0581
768,0.0587
769,0.0603
770,0.0605
771,0.0634
772,0.0634
773,0.0668
774,0.0696
775,0.0724
776,0.0749
777,0.0758
778,0.0788
779,0.0833
780,0.0871
781,0.0881
782,0.0916
783,0.0964
784,0.1003
785,0.1012
786,0.1068
787,0.1079
788,0.1124
789,0.1162
790,0.1205
791,0.1228
792,0.1285
793,0.1335
794,0.1370
795,0.1410
796,0.1470
797,0.1473
798,0.1545
799,0.1553
800,0.1591
801,0.1646
802,0.1661
803,0.1697
804,0.1729
805,0.1759
806,0.1781
807,0.1790
808,0.1786
809,0.1801
810,0.1781
811,0.1802
812,0.1776
813,0.1787
814,0.1778
815,0.1774
816,0.1758
817,0.1731
818,0.1725
819,0.1691
820,0.1682
821,0.1663
822,0.1630
823,0.1603
824,0.1573
825,0.1528
826,0.1501
827,0.1491
828,0.1452
829,0.1412
830,0.1384
831,0.1349
832,0.1333
833,0.1261
834,0.1227
835,0.1185
836,0.1140
837,0.1128
838,0.1088
839,0.1059
840,0.1007
841,0.0973
842,0.0937
843,0.0899
844,0.0862
845,0.0831
846,0.0802
847,0.0754
848,0.0733
849,0.0703
850,0.0669
851,0.0646
852,0.0626
853,0.0601
854,0.0564
855,0.0554
856,0.0538
857,0.0499
858,0.0471
859,0.0470
860,0.0431
861,0.0419
862,0.0400
863,0.0395
864,0.0385
865,0.0370
866,0.0361
867,0.0353
868,0.0337
869,0.0334
870,0.0330
871,0.0307
872,0.0307
873,0.0295
874,0.0291
875,0.0293
876,0.0285
877,0.0304
878,0.0283
879,0.0305
880,0.0299
881,0.0314
882,0.0312
883,0.0336
884,0.0323
885,0.0344
886,0.0360
887,0.0368
888,0.0380
889,0.0406
890,0.0413
891,0.0431
892,0.0461
893,0.0453
894,0.0470
895,0.0483
896,0.0486
897,0.0493
898,0.0508
899,0.0511
900,0.0539
901,0.0547
902,0.0557
903,0.0564
904,0.0571
905,0.0590
906,0.0595
907,0.0593
908,0.0605
909,0.0600
910,0.0623
911,0.0635
912,0.0623
913,0.0629
914,0.0637
915,0.0620
916,0.0629
917,0.0633
918,0.0632
919,0.0626
920,0.0624
921,0.0633
922,0.0651
923,0.0657
924,0.0635
925,0.0638
926,0.0646
927,0.0630
928,0.0599
929,0.0569
930,0.0572
931,0.0564
932,0.0519
933,0.0502
934,0.0464
935,0.0425
936,0.0365
937,0.0320
938,0.0258
939,0.0238
940,0.0210
941,0.0184
942,0.0178

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.4128
411,0.4037
412,0.4722
413,0.4618
414,0.3982
415,0.3988
416,0.5305
417,0.5348
418,0.4750
419,0.5632
420,0.6381
421,0.5618
422,0.6131
423,0.6442
424,0.5650
425,0.6316
426,0.6462
427,0.6197
428,0.6287
429,0.4714
430,0.5860
431,0.5039
432,0.4765
433,0.4174
434,0.4244
435,0.4054
436,0.3529
437,0.3525
438,0.3224
439,0.3100
440,0.3154
441,0.2896
442,0.2788
443,0.2956
444,0.2768
445,0.2951
446,0.2845
447,0.2754
448,0.2956
449,0.2773
450,0.2856
451,0.2726
452,0.2640
453,0.2584
454,0.2563
455,0.2557
456,0.2501
457,0.2546
458,0.2432
459,0.2525
460,0.2513
461,0.2461
462,0.2442
463,0.2394
464,0.2262
465,0.2108
466,0.2224
467,0.1974
468,0.1847
469,0.1803
470,0.1663
471,0.1519
472,0.1416
473,0.1240
474,0.1164
475,0.1033
476,0.0937
477,0.0839
478,0.0778
479,0.0815
480,0.0854
481,0.0751
482,0.0786
483,0.0831
484,0.0843
485,0.0940
486,0.0961
487,0.0984
488,0.1050
489,0.1127
490,0.1159
491,0.1208
492,0.1190
493,0.1299
494,0.1285
495,0.1294
496,0.1246
497,0.1304
498,0.1287
499,0.1299
500,0.1217
501,0.1238
502,0.1185
503,0.1151
504,0.1165
505,0.1151
506,0.1088
507,0.1034
508,0.0996
509,0.0941
510,0.0904
511,0.0863
512,0.0820
513,0.0762
514,0.0706
515,0.0648
516,0.0605
517,0.0552
518,0.0505
519,0.0478
520,0.0449
521,0.0453
522,0.0430
523,0.0418
524,0.0414
525,0.0411
526,0.0426
527,0.0440
528,0.0453
529,0.0496
530,0.0522
531,0.0543
532,0.0590
533,0.0647
534,0.0694
535,0.0741
536,0.0809
537,0.0867
538,0.0936
539,0.1020
540,0.1067
541,0.1150
542,0.1206
543,0.1277
544,0.1350
545,0.1422
546,0.1471
547,0.1526
548,0.1573
549,0.1613
550,0.1642
551,0.1637
552,0.1676
553,0.1678
554,0.1678
555,0.1646
556,0.1646
557,0.1595
558,0.1546
559,0.1512
560,0.1481
561,0.1377
562,0.1330
563,0.1261
564,0.1204
565,0.1115
566,0.1056
567,0.1007
568,0.0940
569,0.0899
570,0.0809
571,0.0753
572,0.0732
573,0.0695
574,0.0643
575,0.0615
576,0.0602
577,0.0579
578,0.0563
579,0.0562
580,0.0572
581,0.0584
582,0.0605
583,0.0629
584,0.0683
585,0.0707
586,0.0742
587,0.0799
588,0.0890
589,0.0970
590,0.1007
591,0.1095
592,0.1196
593,0.1284
594,0.1399
595,0.1495
596,0.1598
597,0.1704
598,0.1795
599,0.1939
600,0.2047
601,0.2140
602,0.2233
603,0.2274
604,0.2367
605,0.2435
606,0.2498
607,0.2571
608,0.2586
609,0.2640
610,0.2619
611,0.2642
612,0.2634
613,0.2659
614,0.2592
615,0.2590
616,0.2517
617,0.2474
618,0.2428
619,0.2359
620,0.2276
621,0.2218
622,0.2148
623,0.2038
624,0.1968
625,0.1925
626,0.1817
627,0.1743
628,0.1662
629,0.1560
630,0.1455
631,0.1375
632,0.1343
633,0.1246
634,0.1176
635,0.1123
636,0.1058
637,0.0981
638,0.0928
639,0.0892
640,0.0864
641,0.0817
642,0.0796
643,0.0776
644,0.0752
645,0.0745
646,0.0758
647,0.0742
648,0.0761
649,0.0804
650,0.0838
651,0.0875
652,0.0907
653,0.0958
654,0.1010
655,0.1069
656,0.1155
657,0.1232
658,0.1312
659,0.1374
660,0.1498
661,0.1589
662,0.1685
663,0.1788
664,0.1856
665,0.1945
666,0.2048
667,0.2109
668,0.2264
669,0.2318
670,0.2356
671,0.2443
672,0.2459
673,0.2590
674,0.2647
675,0.2665
676,0.2713
677,0.2767
678,0.2751
679,0.2776
680,0.2781
681,0.2779
682,0.2842
683,0.2743
684,0.2825
685,0.2779
686,0.2782
687,0.2718
688,0.2751
689,0.2649
690,0.2625
691,0.2591
692,0.2590
693,0.2509
694,0.2440
695,0.2375
696,0.2318
697,0.2262
698,0.2189
699,0.2158
700,0.2079
701,0.2009
702,0.1967
703,0.1890
704,0.1782
705,0.1760
706,0.1672
707,0.1584
708,0.1549
709,0.1461
710,0.1417
711,0.1313
712,0.1266
713,0.1213
714,0.1157
715,0.1097
716,0.1035
717,0.1016
718,0.0930
719,0.0899
720,0.0867
721,0.0820
722,0.0778
723,0.0748
724,0.0749
725,0.0732
726,0.0728
727,0.0722
728,0.0736
729,0.0741
730,0.0725
731,0.0757
732,0.0776
733,0.0800
734,0.0794
735,0.0827
736,0.0875
737,0.0895
738,0.0917
739,0.0986
740,0.1002
741,0.1051
742,0.1087
743,0.1130
744,0.1167
745,0.1195
746,0.1242
747,0.1258
748,0.1303
749,0.1380
750,0.1391
751,0.1436
752,0.1485
753,0.1475
754,0.1563
755,0.1579
756,0.1623
757,0.1644
758,0.1666
759,0.1684
760,0.1711
761,0.1771
762,0.1780
763,0.1803
764,0.1806
765,0.1819
766,0.1842
767,0.1832
768,0.1857
769,0.1861
770,0.1866
771,0.1865
772,0.1839
773,0.1845
774,0.1836
775,0.1848
776,0.1868
777,0.1817
778,0.1799
779,0.1808
780,0.1768
781,0.1721
782,0.1726
783,0.1687
784,0.1680
785,0.1640
786,0.1651
787,0.1601
788,0.1546
789,0.1545
790,0.1528
791,0.1501
792,0.1490
793,0.1452
794,0.1433
795,0.1406
796,0.1392
797,0.1375
798,0.1357
799,0.1319
800,0.1290
801,0.1265
802,0.1236
803,0.1186
804,0.1142
805,0.1150
806,0.1097
807,0.1065
808,0.1023
809,0.0991
810,0.0951
811,0.0933
812,0.0873
813,0.0849
814,0.0813
815,0.0788
816,0.0755
817,0.0725
818,0.0707
819,0.0690
820,0.0671
821,0.0647
822,0.0621
823,0.0619
824,0.0604
825,0.0573
826,0.0564
827,0.0556
828,0.0531
829,0.0528
830,0.0527
831,0.0522
832,0.0523
833,0.0504
834,0.0512
835,0.0512
836,0.0500
837,0.0507
838,0.0509
839,0.0530
840,0.0513
841,0.0527
842,0.0545
843,0.0545
844,0.0543
845,0.0564
846,0.0564
847,0.0574
848,0.0579
849,0.0585
850,0.0616
851,0.0621
852,0.0621
853,0.0616
854,0.0647
855,0.0638
856,0.0673
857,0.0665
858,0.0681
859,0.0691
860,0.0686
861,0.0699
862,0.0696
863,0.0728
864,0.0713
865,0.0729
866,0.0734
867,0.0732
868,0.0730
869,0.0739
870,0.0735
871,0.0723
872,0.0717
873,0.0705
874,0.0716
875,0.0722
876,0.0711
877,0.0719
878,0.0725
879,0.0741
880,0.0757
881,0.0762
882,0.0777
883,0.0797
884,0.0798
885,0.0821
886,0.0819
887,0.0846
888,0.0849
889,0.0867
890,0.0880
891,0.0878
892,0.0901
893,0.0902
894,0.0892
895,0.0871
896,0.0880
897,0.0884
898,0.0870
899,0.0855
900,0.0853
901,0.0874
902,0.0864
903,0.0817
904,0.0814
905,0.0812
906,0.0804
907,0.0770
908,0.0769
909,0.0748
910,0.0751
911,0.0748
912,0.0720
913,0.0699
914,0.0685
915,0.0679
916,0.0652
917,0.0631
918,0.0609
919,0.0583
920,0.0572
921,0.0575
922,0.0574
923,0.0545
924,0.0518
925,0.0507
926,0.0504
927,0.0495
928,0.0458
929,0.0413
930,0.0418
931,0.0394
932,0.0360
933,0.0326
934,0.0315
935,0.0267
936,0.0230
937,0.0196
938,0.0161
939,0.0140
940,0.0127
941,0.0102
942,0.0107

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.7124
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.0601
407,0.0000
408,0.0000
409,1.0000
410,0.7117
411,0.7006
412,0.8015
413,0.6985
414,0.8408
415,0.7140
416,0.7914
417,0.6510
418,0.6600
419,0.5926
420,0.5310
421,0.4534
422,0.4375
423,0.3483
424,0.3611
425,0.3326
426,0.3254
427,0.3265
428,0.3132
429,0.2320
430,0.3080
431,0.2815
432,0.3280
433,0.3414
434,0.3880
435,0.4486
436,0.4042
437,0.4968
438,0.5065
439,0.4997
440,0.5613
441,0.4933
442,0.5616
443,0.5447
444,0.5339
445,0.5355
446,0.4940
447,0.4468
448,0.4271
449,0.3850
450,0.3446
451,0.3135
452,0.2763
453,0.2382
454,0.1943
455,0.1879
456,0.1580
457,0.1521
458,0.1428
459,0.1353
460,0.1202
461,0.1155
462,0.1080
463,0.1101
464,0.1078
465,0.0968
466,0.1202
467,0.1231
468,0.1332
469,0.1307
470,0.1412
471,0.1480
472,0.1547
473,0.1522
474,0.1598
475,0.1627
476,0.1568
477,0.1595
478,0.1583
479,0.1630
480,0.1708
481,0.1612
482,0.1662
483,0.1655
484,0.1647
485,0.1643
486,0.1565
487,0.1561
488,0.1450
489,0.1454
490,0.1403
491,0.1299
492,0.1190
493,0.1187
494,0.1056
495,0.0966
496,0.0846
497,0.0835
498,0.0737
499,0.0689
500,0.0625
501,0.0556
502,0.0529
503,0.0482
504,0.0459
505,0.0461
506,0.0463
507,0.0444
508,0.0458
509,0.0476
510,0.0484
511,0.0508
512,0.0528
513,0.0586
514,0.0591
515,0.0636
516,0.0647
517,0.0685
518,0.0731
519,0.0759
520,0.0798
521,0.0858
522,0.0891
523,0.0923
524,0.0968
525,0.1005
526,0.1019
527,0.1032
528,0.1065
529,0.1109
530,0.1127
531,0.1133
532,0.1162
533,0.1157
534,0.1179
535,0.1149
536,0.1204
537,0.1172
538,0.1175
539,0.1150
540,0.1145
541,0.1120
542,0.1080
543,0.1052
544,0.1045
545,0.1011
546,0.0963
547,0.0948
548,0.0888
549,0.0839
550,0.0806
551,0.0757
552,0.0714
553,0.0692
554,0.0651
555,0.0633
556,0.0611
557,0.0591
558,0.0589
559,0.0596
560,0.0598
561,0.0583
562,0.0586
563,0.0613
564,0.0650
565,0.0685
566,0.0708
567,0.0764
568,0.0790
569,0.0853
570,0.0905
571,0.0945
572,0.1013
573,0.1064
574,0.1121
575,0.1210
576,0.1288
577,0.1333
578,0.1424
579,0.1470
580,0.1551
581,0.1588
582,0.1666
583,0.1718
584,0.1756
585,0.1827
586,0.1845
587,0.1907
588,0.1956
589,0.1982
590,0.2014
591,0.2040
592,0.2073
593,0.2095
594,0.2089
595,0.2104
596,0.2109
597,0.2086
598,0.2076
599,0.2041
600,0.2006
601,0.1945
602,0.1880
603,0.1880
604,0.1814
605,0.1755
606,0.1677
607,0.1605
608,0.1516
609,0.1442
610,0.1389
611,0.1325
612,0.1242
613,0.1183
614,0.1086
615,0.1039
616,0.0962
617,0.0952
618,0.0894
619,0.0858
620,0.0823
621,0.0808
622,0.0783
623,0.0785
624,0.0759
625,0.0788
626,0.0796
627,0.0813
628,0.0824
629,0.0846
630,0.0881
631,0.0921
632,0.0973
633,0.1011
634,0.1062
635,0.1108
636,0.1184
637,0.1252
638,0.1319
639,0.1396
640,0.1491
641,0.1580
642,0.1657
643,0.1724
644,0.1804
645,0.1878
646,0.1961
647,0.2023
648,0.2126
649,0.2201
650,0.2298
651,0.2381
652,0.2413
653,0.2486
654,0.2522
655,0.2572
656,0.2644
657,0.2732
658,0.2730
659,0.2773
660,0.2783
661,0.2804
662,0.2829
663,0.2801
664,0.2777
665,0.2789
666,0.2770
667,0.2748
668,0.2732
669,0.2640
670,0.2604
671,0.2528
672,0.2451
673,0.2419
674,0.2356
675,0.2297
676,0.2180
677,0.2104
678,0.2024
679,0.1959
680,0.1878
681,0.1838
682,0.1754
683,0.1636
684,0.1563
685,0.1515
686,0.1444
687,0.1355
688,0.1299
689,0.1262
690,0.1197
691,0.1131
692,0.1102
693,0.1040
694,0.1017
695,0.0977
696,0.0933
697,0.0922
698,0.0915
699,0.0872
700,0.0867
701,0.0870
702,0.0864
703,0.0828
704,0.0848
705,0.0862
706,0.0859
707,0.0875
708,0.0897
709,0.0902
710,0.0945
711,0.0978
712,0.0987
713,0.1042
714,0.1036
715,0.1092
716,0.1141
717,0.1177
718,0.1202
719,0.1215
720,0.1269
721,0.1304
722,0.1361
723,0.1390
724,0.1425
725,0.1483
726,0.1535
727,0.1599
728,0.1650
729,0.1698
730,0.1759
731,0.1798
732,0.1821
733,0.1913
734,0.1923
735,0.1958
736,0.2044
737,0.2028
738,0.2043
739,0.2076
740,0.2091
741,0.2127
742,0.2139
743,0.2140
744,0.2126
745,0.2137
746,0.2157
747,0.2109
748,0.2131
749,0.2099
750,0.2078
751,0.2073
752,0.2038
753,0.2011
754,0.2007
755,0.1980
756,0.1955
757,0.1889
758,0.1883
759,0.1845
760,0.1802
761,0.1768
762,0.1720
763,0.1675
764,0.1649
765,0.1629
766,0.1575
767,0.1536
768,0.1486
769,0.1455
770,0.1402
771,0.1362
772,0.1306
773,0.1257
774,0.1218
775,0.1215
776,0.1180
777,0.1138
778,0.1086
779,0.1052
780,0.1010
781,0.0970
782,0.0941
783,0.0930
784,0.0892
785,0.0856
786,0.0838
787,0.0793
788,0.0772
789,0.0765
790,0.0752
791,0.0732
792,0.0713
793,0.0695
794,0.0708
795,0.0695
796,0.0696
797,0.0675
798,0.0700
799,0.0678
800,0.0698
801,0.0676
802,0.0686
803,0.0678
804,0.0685
805,0.0681
806,0.0693
807,0.0697
808,0.0696
809,0.0696
810,0.0691
811,0.0713
812,0.0713
813,0.0722
814,0.0720
815,0.0752
816,0.0758
817,0.0782
818,0.0790
819,0.0785
820,0.0802
821,0.0825
822,0.0828
823,0.0858
824,0.0862
825,0.0872
826,0.0897
827,0.0912
828,0.0905
829,0.0939
830,0.0945
831,0.0942
832,0.0983
833,0.0954
834,0.0971
835,0.0990
836,0.1017
837,0.1011
838,0.1004
839,0.1018
840,0.1007
841,0.1032
842,0.1031
843,0.1043
844,0.1047
845,0.1057
846,0.1050
847,0.1043
848,0.1031
849,0.1037
850,0.1054
851,0.1044
852,0.1026
853,0.1024
854,0.1008
855,0.1009
856,0.1023
857,0.0991
858,0.0985
859,0.0978
860,0.0975
861,0.0948
862,0.0953
863,0.0930
864,0.0929
865,0.0925
866,0.0892
867,0.0878
868,0.0870
869,0.0857
870,0.0838
871,0.0814
872,0.0793
873,0.0764
874,0.0734
875,0.0726
876,0.0713
877,0.0720
878,0.0694
879,0.0693
880,0.0692
881,0.0696
882,0.0688
883,0.0694
884,0.0679
885,0.0672
886,0.0690
887,0.0691
888,0.0674
889,0.0667
890,0.0679
891,0.0672
892,0.0647
893,0.0651
894,0.0636
895,0.0615
896,0.0611
897,0.0578
898,0.0592
899,0.0571
900,0.0571
901,0.0544
902,0.0545
903,0.0517
904,0.0515
905,0.0496
906,0.0489
907,0.0476
908,0.0442
909,0.0438
910,0.0445
911,0.0434
912,0.0409
913,0.0404
914,0.0382
915,0.0388
916,0.0368
917,0.0361
918,0.0355
919,0.0333
920,0.0323
921,0.0334
922,0.0320
923,0.0317
924,0.0308
925,0.0297
926,0.0294
927,0.0301
928,0.0281
929,0.0263
930,0.0260
931,0.0245
932,0.0238
933,0.0212
934,0.0212
935,0.0195
936,0.0162
937,0.0142
938,0.0111
939,0.0099
940,0.0092
941,0.0078
942,0.0068

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0749
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.8800
407,0.0000
408,0.0000
409,1.0000
410,0.3792
411,0.1873
412,0.4354
413,0.3042
414,0.3839
415,0.3287
416,0.4268
417,0.3738
418,0.4504
419,0.5257
420,0.5071
421,0.5157
422,0.5890
423,0.5839
424,0.6395
425,0.5966
426,0.7302
427,0.6785
428,0.7308
429,0.5711
430,0.6427
431,0.6187
432,0.5848
433,0.5238
434,0.5086
435,0.5133
436,0.4470
437,0.4473
438,0.3701
439,0.3371
440,0.3453
441,0.3083
442,0.2652
443,0.2720
444,0.2514
445,0.2336
446,0.2189
447,0.1625
448,0.2099
449,0.1919
450,0.2018
451,0.1870
452,0.1807
453,0.1930
454,0.1888
455,0.1989
456,0.1945
457,0.2120
458,0.2016
459,0.2210
460,0.2355
461,0.2401
462,0.2477
463,0.2532
464,0.2586
465,0.2532
466,0.2540
467,0.2526
468,0.2527
469,0.2366
470,0.2307
471,0.2186
472,0.1993
473,0.1849
474,0.1676
475,0.1565
476,0.1350
477,0.1245
478,0.1108
479,0.1005
480,0.0975
481,0.0873
482,0.0814
483,0.0742
484,0.0704
485,0.0714
486,0.0653
487,0.0622
488,0.0622
489,0.0641
490,0.0631
491,0.0667
492,0.0663
493,0.0693
494,0.0718
495,0.0745
496,0.0747
497,0.0831
498,0.0834
499,0.0898
500,0.0891
501,0.0912
502,0.0951
503,0.0957
504,0.1024
505,0.1052
506,0.1080
507,0.1090
508,0.1132
509,0.1140
510,0.1141
511,0.1158
512,0.1141
513,0.1140
514,0.1084
515,0.1064
516,0.1041
517,0.0988
518,0.0953
519,0.0922
520,0.0890
521,0.0877
522,0.0849
523,0.0805
524,0.0778
525,0.0736
526,0.0694
527,0.0650
528,0.0615
529,0.0590
530,0.0563
531,0.0541
532,0.0512
533,0.0490
534,0.0468
535,0.0459
536,0.0448
537,0.0458
538,0.0475
539,0.0469
540,0.0465
541,0.0480
542,0.0514
543,0.0539
544,0.0589
545,0.0633
546,0.0658
547,0.0716
548,0.0761
549,0.0817
550,0.0868
551,0.0929
552,0.1012
553,0.1081
554,0.1138
555,0.1210
556,0.1236
557,0.1319
558,0.1393
559,0.1431
560,0.1466
561,0.1491
562,0.1552
563,0.1567
564,0.1618
565,0.1625
566,0.1655
567,0.1658
568,0.1662
569,0.1653
570,0.1665
571,0.1609
572,0.1648
573,0.1629
574,0.1576
575,0.1607
576,0.1574
577,0.1540
578,0.1530
579,0.1458
580,0.1438
581,0.1383
582,0.1359
583,0.1308
584,0.1296
585,0.1226
586,0.1182
587,0.1138
588,0.1101
589,0.1061
590,0.1032
591,0.1002
592,0.0965
593,0.0899
594,0.0889
595,0.0864
596,0.0838
597,0.0850
598,0.0802
599,0.0798
600,0.0792
601,0.0786
602,0.0792
603,0.0796
604,0.0812
605,0.0825
606,0.0858
607,0.0910
608,0.0937
609,0.0944
610,0.1013
611,0.1078
612,0.1108
613,0.1180
614,0.1235
615,0.1316
616,0.1381
617,0.1449
618,0.1497
619,0.1531
620,0.1614
621,0.1671
622,0.1746
623,0.1804
624,0.1854
625,0.1909
626,0.1952
627,0.2009
628,0.2062
629,0.2112
630,0.2135
631,0.2195
632,0.2248
633,0.2269
634,0.2283
635,0.2323
636,0.2321
637,0.2325
638,0.2379
639,0.2362
640,0.2403
641,0.2411
642,0.2374
643,0.2419
644,0.2384
645,0.2373
646,0.2323
647,0.2280
648,0.2270
649,0.2267
650,0.2222
651,0.2192
652,0.2116
653,0.2062
654,0.2027
655,0.1991
656,0.1922
657,0.1869
658,0.1781
659,0.1737
660,0.1669
661,0.1617
662,0.1544
663,0.1459
664,0.1414
665,0.1376
666,0.1324
667,0.1273
668,0.1216
669,0.1176
670,0.1108
671,0.1074
672,0.1033
673,0.1024
674,0.0981
675,0.0967
676,0.0956
677,0.0940
678,0.0934
679,0.0909
680,0.0913
681,0.0919
682,0.0948
683,0.0948
684,0.0957
685,0.1002
686,0.1016
687,0.1023
688,0.1076
689,0.1084
690,0.1128
691,0.1162
692,0.1188
693,0.1222
694,0.1288
695,0.1308
696,0.1364
697,0.1383
698,0.1437
699,0.1470
700,0.1511
701,0.1583
702,0.1656
703,0.1658
704,0.1712
705,0.1769
706,0.1809
707,0.1858
708,0.1901
709,0.1944
710,0.1980
711,0.2012
712,0.2034
713,0.2113
714,0.2111
715,0.2099
716,0.2157
717,0.2172
718,0.2161
719,0.2164
720,0.2147
721,0.2141
722,0.2114
723,0.2105
724,0.2110
725,0.2136
726,0.2137
727,0.2132
728,0.2133
729,0.2132
730,0.2111
731,0.2118
732,0.2096
733,0.2062
734,0.2028
735,0.2005
736,0.1992
737,0.1935
738,0.1920
739,0.1874
740,0.1814
741,0.1760
742,0.1726
743,0.1675
744,0.1635
745,0.1559
746,0.1534
747,0.1463
748,0.1428
749,0.1390
750,0.1336
751,0.1292
752,0.1235
753,0.1204
754,0.1149
755,0.1116
756,0.1083
757,0.1057
758,0.1002
759,0.0966
760,0.0940
761,0.0911
762,0.0883
763,0.0856
764,0.0834
765,0.0812
766,0.0794
767,0.0798
768,0.0761
769,0.0759
770,0.0731
771,0.0728
772,0.0725
773,0.0709
774,0.0688
775,0.0712
776,0.0700
777,0.0697
778,0.0697
779,0.0708
780,0.0714
781,0.0710
782,0.0723
783,0.0710
784,0.0736
785,0.0747
786,0.0767
787,0.0771
788,0.0756
789,0.0807
790,0.0799
791,0.0820
792,0.0846
793,0.0866
794,0.0894
795,0.0918
796,0.0938
797,0.0957
798,0.0979
799,0.0997
800,0.1022
801,0.1061
802,0.1097
803,0.1120
804,0.1109
805,0.1139
806,0.1164
807,0.1183
808,0.1195
809,0.1234
810,0.1221
811,0.1220
812,0.1244
813,0.1256
814,0.1282
815,0.1286
816,0.1297
817,0.1267
818,0.1291
819,0.1294
820,0.1307
821,0.1307
822,0.1282
823,0.1302
824,0.1294
825,0.1285
826,0.1287
827,0.1280
828,0.1283
829,0.1287
830,0.1269
831,0.1270
832,0.1275
833,0.1234
834,0.1232
835,0.1210
836,0.1207
837,0.1187
838,0.1157
839,0.1173
840,0.1116
841,0.1128
842,0.1097
843,0.1094
844,0.1087
845,0.1041
846,0.1034
847,0.1007
848,0.0979
849,0.0971
850,0.0943
851,0.0912
852,0.0897
853,0.0883
854,0.0851
855,0.0837
856,0.0838
857,0.0803
858,0.0775
859,0.0753
860,0.0712
861,0.0716
862,0.0684
863,0.0666
864,0.0649
865,0.0625
866,0.0618
867,0.0600
868,0.0591
869,0.0563
870,0.0532
871,0.0512
872,0.0495
873,0.0468
874,0.0458
875,0.0444
876,0.0428
877,0.0435
878,0.0409
879,0.0419
880,0.0417
881,0.0416
882,0.0397
883,0.0409
884,0.0396
885,0.0390
886,0.0401
887,0.0403
888,0.0394
889,0.0404
890,0.0388
891,0.0418
892,0.0408
893,0.0382
894,0.0391
895,0.0395
896,0.0394
897,0.0391
898,0.0392
899,0.0387
900,0.0374
901,0.0384
902,0.0393
903,0.0377
904,0.0398
905,0.0394
906,0.0382
907,0.0377
908,0.0385
909,0.0368
910,0.0385
911,0.0386
912,0.0384
913,0.0371
914,0.0375
915,0.0376
916,0.0396
917,0.0378
918,0.0381
919,0.0374
920,0.0370
921,0.0389
922,0.0381
923,0.0398
924,0.0381
925,0.0390
926,0.0389
927,0.0393
928,0.0371
929,0.0364
930,0.0378
931,0.0348
932,0.0328
933,0.0314
934,0.0308
935,0.0273
936,0.0238
937,0.0210
938,0.0167
939,0.0159
940,0.0141
941,0.0132
942,0.0107

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.6801
407,0.0000
408,0.0000
409,1.0000
410,0.7375
411,0.6848
412,0.8228
413,0.6749
414,0.8801
415,0.7502
416,0.8873
417,0.6938
418,0.6494
419,0.5729
420,0.6208
421,0.5235
422,0.4919
423,0.4202
424,0.2885
425,0.3574
426,0.3259
427,0.3109
428,0.2842
429,0.2109
430,0.2282
431,0.2223
432,0.2808
433,0.2620
434,0.2975
435,0.3194
436,0.3386
437,0.4091
438,0.3945
439,0.4139
440,0.4582
441,0.4625
442,0.4841
443,0.5433
444,0.5178
445,0.5275
446,0.5179
447,0.4874
448,0.4643
449,0.4233
450,0.4153
451,0.3626
452,0.3463
453,0.3121
454,0.2564
455,0.2425
456,0.2298
457,0.2074
458,0.1844
459,0.1667
460,0.1538
461,0.1547
462,0.1366
463,0.1305
464,0.1162
465,0.1020
466,0.1111
467,0.1022
468,0.0879
469,0.0963
470,0.0946
471,0.1020
472,0.0958
473,0.0978
474,0.1001
475,0.1040
476,0.1045
477,0.1070
478,0.1118
479,0.1182
480,0.1271
481,0.1275
482,0.1302
483,0.1339
484,0.1350
485,0.1445
486,0.1453
487,0.1510
488,0.1505
489,0.1535
490,0.1525
491,0.1516
492,0.1477
493,0.1479
494,0.1403
495,0.1360
496,0.1248
497,0.1251
498,0.1160
499,0.1122
500,0.1037
501,0.0960
502,0.0913
503,0.0846
504,0.0797
505,0.0756
506,0.0730
507,0.0659
508,0.0647
509,0.0590
510,0.0549
511,0.0532
512,0.0494
513,0.0492
514,0.0466
515,0.0437
516,0.0432
517,0.0410
518,0.0403
519,0.0411
520,0.0416
521,0.0458
522,0.0466
523,0.0478
524,0.0504
525,0.0525
526,0.0558
527,0.0567
528,0.0606
529,0.0667
530,0.0701
531,0.0719
532,0.0773
533,0.0813
534,0.0883
535,0.0887
536,0.0963
537,0.1019
538,0.1066
539,0.1133
540,0.1179
541,0.1204
542,0.1231
543,0.1283
544,0.1342
545,0.1366
546,0.1393
547,0.1409
548,0.1446
549,0.1437
550,0.1434
551,0.1441
552,0.1420
553,0.1434
554,0.1401
555,0.1376
556,0.1355
557,0.1313
558,0.1269
559,0.1251
560,0.1185
561,0.1144
562,0.1115
563,0.1059
564,0.1002
565,0.0948
566,0.0931
567,0.0883
568,0.0832
569,0.0798
570,0.0766
571,0.0727
572,0.0733
573,0.0679
574,0.0679
575,0.0656
576,0.0648
577,0.0630
578,0.0654
579,0.0630
580,0.0658
581,0.0665
582,0.0688
583,0.0689
584,0.0739
585,0.0743
586,0.0779
587,0.0799
588,0.0874
589,0.0919
590,0.0961
591,0.1010
592,0.1085
593,0.1152
594,0.1229
595,0.1303
596,0.1368
597,0.1433
598,0.1503
599,0.1601
600,0.1664
601,0.1755
602,0.1805
603,0.1841
604,0.1941
605,0.2000
606,0.2038
607,0.2119
608,0.2162
609,0.2180
610,0.2202
611,0.2235
612,0.2226
613,0.2252
614,0.2245
615,0.2247
616,0.2217
617,0.2220
618,0.2191
619,0.2151
620,0.2133
621,0.2112
622,0.2103
623,0.2026
624,0.1954
625,0.1978
626,0.1915
627,0.1877
628,0.1805
629,0.1766
630,0.1709
631,0.1653
632,0.1630
633,0.1577
634,0.1510
635,0.1474
636,0.1402
637,0.1378
638,0.1355
639,0.1291
640,0.1273
641,0.1228
642,0.1173
643,0.1149
644,0.1125
645,0.1092
646,0.1047
647,0.1032
648,0.1026
649,0.1017
650,0.1005
651,0.0992
652,0.0976
653,0.0977
654,0.0971
655,0.0977
656,0.1010
657,0.1024
658,0.1049
659,0.1080
660,0.1100
661,0.1127
662,0.1178
663,0.1210
664,0.1228
665,0.1291
666,0.1321
667,0.1355
668,0.1433
669,0.1468
670,0.1490
671,0.1556
672,0.1578
673,0.1648
674,0.1716
675,0.1745
676,0.1777
677,0.1813
678,0.1854
679,0.1883
680,0.1890
681,0.1947
682,0.1976
683,0.1981
684,0.2042
685,0.2072
686,0.2088
687,0.2077
688,0.2115
689,0.2120
690,0.2125
691,0.2186
692,0.2177
693,0.2165
694,0.2185
695,0.2162
696,0.2155
697,0.2145
698,0.2147
699,0.2171
700,0.2158
701,0.2130
702,0.2143
703,0.2096
704,0.2093
705,0.2088
706,0.2047
707,0.1989
708,0.2005
709,0.1970
710,0.1947
711,0.1898
712,0.1871
713,0.1839
714,0.1795
715,0.1762
716,0.1721
717,0.1680
718,0.1618
719,0.1581
720,0.1532
721,0.1447
722,0.1428
723,0.1400
724,0.1377
725,0.1313
726,0.1285
727,0.1266
728,0.1216
729,0.1205
730,0.1154
731,0.1142
732,0.1129
733,0.1115
734,0.1055
735,0.1039
736,0.1023
737,0.1017
738,0.1006
739,0.0982
740,0.0914
741,0.0930
742,0.0914
743,0.0901
744,0.0889
745,0.0894
746,0.0894
747,0.0864
748,0.0884
749,0.0863
750,0.0867
751,0.0885
752,0.0877
753,0.0881
754,0.0890
755,0.0903
756,0.0922
757,0.0918
758,0.0933
759,0.0946
760,0.0954
761,0.0975
762,0.0985
763,0.1005
764,0.1016
765,0.1041
766,0.1038
767,0.1048
768,0.1070
769,0.1086
770,0.1115
771,0.1130
772,0.1128
773,0.1131
774,0.1166
775,0.1183
776,0.1192
777,0.1189
778,0.1201
779,0.1224
780,0.1227
781,0.1216
782,0.1254
783,0.1241
784,0.1263
785,0.1283
786,0.1298
787,0.1263
788,0.1279
789,0.1290
790,0.1305
791,0.1302
792,0.1318
793,0.1345
794,0.1354
795,0.1347
796,0.1370
797,0.1358
798,0.1383
799,0.1367
800,0.1386
801,0.1420
802,0.1417
803,0.1416
804,0.1415
805,0.1408
806,0.1410
807,0.1393
808,0.1367
809,0.1378
810,0.1365
811,0.1348
812,0.1323
813,0.1308
814,0.1295
815,0.1269
816,0.1256
817,0.1231
818,0.1211
819,0.1172
820,0.1190
821,0.1156
822,0.1119
823,0.1097
824,0.1090
825,0.1051
826,0.1041
827,0.1002
828,0.0992
829,0.0965
830,0.0929
831,0.0926
832,0.0912
833,0.0857
834,0.0838
835,0.0832
836,0.0800
837,0.0778
838,0.0751
839,0.0752
840,0.0707
841,0.0693
842,0.0675
843,0.0644
844,0.0660
845,0.0626
846,0.0605
847,0.0589
848,0.0571
849,0.0561
850,0.0547
851,0.0530
852,0.0532
853,0.0516
854,0.0499
855,0.0480
856,0.0499
857,0.0471
858,0.0468
859,0.0455
860,0.0445
861,0.0431
862,0.0437
863,0.0428
864,0.0431
865,0.0433
866,0.0421
867,0.0420
868,0.0396
869,0.0391
870,0.0391
871,0.0391
872,0.0388
873,0.0367
874,0.0374
875,0.0377
876,0.0378
877,0.0403
878,0.0382
879,0.0403
880,0.0398
881,0.0411
882,0.0411
883,0.0435
884,0.0438
885,0.0438
886,0.0458
887,0.0462
888,0.0481
889,0.0483
890,0.0499
891,0.0526
892,0.0529
893,0.0535
894,0.0550
895,0.0545
896,0.0553
897,0.0558
898,0.0562
899,0.0569
900,0.0563
901,0.0584
902,0.0582
903,0.0581
904,0.0590
905,0.0586
906,0.0592
907,0.0579
908,0.0589
909,0.0583
910,0.0603
911,0.0602
912,0.0582
913,0.0581
914,0.0573
915,0.0577
916,0.0569
917,0.0570
918,0.0558
919,0.0544
920,0.0547
921,0.0554
922,0.0542
923,0.0553
924,0.0533
925,0.0535
926,0.0537
927,0.0526
928,0.0500
929,0.0490
930,0.0471
931,0.0445
932,0.0418
933,0.0411
934,0.0377
935,0.0343
936,0.0297
937,0.0248
938,0.0215
939,0.0174
940,0.0168
941,0.0140
942,0.0124

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.7499
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.1000
407,0.0000
408,0.0000
409,1.0000
410,0.2808
411,0.2896
412,0.2885
413,0.2806
414,0.3312
415,0.3369
416,0.4069
417,0.3949
418,0.3947
419,0.4867
420,0.5557
421,0.5778
422,0.6177
423,0.6429
424,0.6078
425,0.6776
426,0.7155
427,0.6866
428,0.7177
429,0.6068
430,0.6828
431,0.6470
432,0.5752
433,0.5640
434,0.5782
435,0.5488
436,0.5049
437,0.4814
438,0.4296
439,0.3832
440,0.4085
441,0.3347
442,0.3025
443,0.2987
444,0.2821
445,0.2716
446,0.2174
447,0.2008
448,0.1859
449,0.1708
450,0.1649
451,0.1625
452,0.1418
453,0.1470
454,0.1364
455,0.1641
456,0.1456
457,0.1602
458,0.1681
459,0.1809
460,0.1846
461,0.2069
462,0.2071
463,0.2211
464,0.2184
465,0.2290
466,0.2417
467,0.2437
468,0.2505
469,0.2431
470,0.2370
471,0.2341
472,0.2201
473,0.2120
474,0.2046
475,0.1853
476,0.1728
477,0.1627
478,0.1513
479,0.1437
480,0.1328
481,0.1215
482,0.1207
483,0.1115
484,0.1053
485,0.0968
486,0.0933
487,0.0838
488,0.0804
489,0.0781
490,0.0708
491,0.0665
492,0.0632
493,0.0609
494,0.0591
495,0.0580
496,0.0536
497,0.0551
498,0.0537
499,0.0575
500,0.0577
501,0.0561
502,0.0576
503,0.0595
504,0.0630
505,0.0674
506,0.0701
507,0.0737
508,0.0771
509,0.0795
510,0.0837
511,0.0898
512,0.0900
513,0.0945
514,0.0957
515,0.0933
516,0.0954
517,0.0958
518,0.0958
519,0.0961
520,0.0950
521,0.0987
522,0.0996
523,0.0980
524,0.0990
525,0.0966
526,0.0973
527,0.0958
528,0.0950
529,0.0944
530,0.0946
531,0.0917
532,0.0895
533,0.0894
534,0.0865
535,0.0847
536,0.0837
537,0.0817
538,0.0806
539,0.0795
540,0.0775
541,0.0762
542,0.0733
543,0.0700
544,0.0718
545,0.0694
546,0.0698
547,0.0673
548,0.0650
549,0.0650
550,0.0642
551,0.0640
552,0.0636
553,0.0640
554,0.0658
555,0.0650
556,0.0663
557,0.0687
558,0.0708
559,0.0728
560,0.0762
561,0.0753
562,0.0802
563,0.0828
564,0.0870
565,0.0898
566,0.0915
567,0.0946
568,0.0982
569,0.1049
570,0.1095
571,0.1107
572,0.1150
573,0.1161
574,0.1210
575,0.1248
576,0.1306
577,0.1333
578,0.1392
579,0.1403
580,0.1450
581,0.1484
582,0.1509
583,0.1565
584,0.1560
585,0.1609
586,0.1621
587,0.1631
588,0.1656
589,0.1681
590,0.1700
591,0.1711
592,0.1713
593,0.1722
594,0.1757
595,0.1772
596,0.1724
597,0.1761
598,0.1734
599,0.1718
600,0.1723
601,0.1701
602,0.1648
603,0.1655
604,0.1592
605,0.1562
606,0.1504
607,0.1473
608,0.1425
609,0.1403
610,0.1343
611,0.1300
612,0.1263
613,0.1211
614,0.1160
615,0.1121
616,0.1084
617,0.1050
618,0.1039
619,0.1005
620,0.0982
621,0.0969
622,0.0953
623,0.0959
624,0.0924
625,0.0931
626,0.0924
627,0.0945
628,0.0935
629,0.0952
630,0.0948
631,0.0965
632,0.0979
633,0.1002
634,0.1026
635,0.1044
636,0.1090
637,0.1100
638,0.1169
639,0.1209
640,0.1240
641,0.1300
642,0.1334
643,0.1359
644,0.1413
645,0.1470
646,0.1527
647,0.1564
648,0.1591
649,0.1690
650,0.1733
651,0.1778
652,0.1829
653,0.1887
654,0.1909
655,0.1965
656,0.2009
657,0.2093
658,0.2097
659,0.2159
660,0.2188
661,0.2207
662,0.2258
663,0.2279
664,0.2254
665,0.2323
666,0.2324
667,0.2308
668,0.2352
669,0.2322
670,0.2294
671,0.2279
672,0.2240
673,0.2244
674,0.2224
675,0.2189
676,0.2138
677,0.2104
678,0.2064
679,0.2047
680,0.2002
681,0.1977
682,0.1930
683,0.1858
684,0.1822
685,0.1809
686,0.1745
687,0.1688
688,0.1672
689,0.1608
690,0.1576
691,0.1528
692,0.1503
693,0.1449
694,0.1432
695,0.1389
696,0.1338
697,0.1319
698,0.1283
699,0.1239
700,0.1232
701,0.1208
702,0.1183
703,0.1144
704,0.1129
705,0.1102
706,0.1105
707,0.1070
708,0.1074
709,0.1040
710,0.1041
711,0.1015
712,0.1026
713,0.1021
714,0.1018
715,0.0991
716,0.1018
717,0.1004
718,0.1016
719,0.0999
720,0.1002
721,0.1006
722,0.1001
723,0.1018
724,0.1026
725,0.1039
726,0.1069
727,0.1093
728,0.1118
729,0.1145
730,0.1145
731,0.1185
732,0.1201
733,0.1223
734,0.1239
735,0.1266
736,0.1310
737,0.1313
738,0.1351
739,0.1361
740,0.1393
741,0.1409
742,0.1425
743,0.1432
744,0.1455
745,0.1470
746,0.1467
747,0.1490
748,0.1523
749,0.1533
750,0.1517
751,0.1536
752,0.1543
753,0.1522
754,0.1547
755,0.1557
756,0.1549
757,0.1542
758,0.1524
759,0.1515
760,0.1512
761,0.1547
762,0.1537
763,0.1504
764,0.1540
765,0.1502
766,0.1481
767,0.1488
768,0.1496
769,0.1491
770,0.1457
771,0.1437
772,0.1418
773,0.1414
774,0.1385
775,0.1401
776,0.1396
777,0.1362
778,0.1313
779,0.1319
780,0.1325
781,0.1271
782,0.1273
783,0.1241
784,0.1219
785,0.1207
786,0.1194
787,0.1160
788,0.1141
789,0.1153
790,0.1112
791,0.1089
792,0.1105
793,0.1073
794,0.1060
795,0.1060
796,0.1061
797,0.1048
798,0.1025
799,0.1008
800,0.1017
801,0.1000
802,0.0964
803,0.0960
804,0.0953
805,0.0945
806,0.0934
807,0.0896
808,0.0872
809,0.0862
810,0.0842
811,0.0810
812,0.0813
813,0.0780
814,0.0774
815,0.0770
816,0.0735
817,0.0734
818,0.0713
819,0.0704
820,0.0691
821,0.0695
822,0.0669
823,0.0664
824,0.0661
825,0.0639
826,0.0645
827,0.0638
828,0.0623
829,0.0619
830,0.0606
831,0.0602
832,0.0622
833,0.0603
834,0.0602
835,0.0606
836,0.0619
837,0.0616
838,0.0592
839,0.0601
840,0.0593
841,0.0617
842,0.0602
843,0.0609
844,0.0611
845,0.0611
846,0.0617
847,0.0618
848,0.0594
849,0.0609
850,0.0621
851,0.0627
852,0.0640
853,0.0639
854,0.0638
855,0.0628
856,0.0656
857,0.0635
858,0.0636
859,0.0651
860,0.0659
861,0.0648
862,0.0639
863,0.0632
864,0.0643
865,0.0647
866,0.0641
867,0.0647
868,0.0637
869,0.0629
870,0.0643
871,0.0617
872,0.0612
873,0.0598
874,0.0600
875,0.0605
876,0.0595
877,0.0610
878,0.0610
879,0.0624
880,0.0630
881,0.0623
882,0.0638
883,0.0649
884,0.0650
885,0.0665
886,0.0669
887,0.0705
888,0.0691
889,0.0705
890,0.0721
891,0.0709
892,0.0718
893,0.0733
894,0.0723
895,0.0704
896,0.0719
897,0.0713
898,0.0710
899,0.0708
900,0.0699
901,0.0715
902,0.0711
903,0.0687
904,0.0681
905,0.0669
906,0.0674
907,0.0636
908,0.0638
909,0.0633
910,0.0634
911,0.0629
912,0.0604
913,0.0596
914,0.0582
915,0.0571
916,0.0571
917,0.0550
918,0.0536
919,0.0513
920,0.0497
921,0.0513
922,0.0519
923,0.0500
924,0.0490
925,0.0473
926,0.0464
927,0.0455
928,0.0421
929,0.0409
930,0.0393
931,0.0370
932,0.0348
933,0.0328
934,0.0296
935,0.0270
936,0.0226
937,0.0196
938,0.0155
939,0.0140
940,0.0119
941,0.0102
942,0.0091

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.1124
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.5001
407,0.0000
408,0.0000
409,1.0000
410,0.7603
411,0.7352
412,0.9381
413,0.7770
414,0.8093
415,0.6661
416,0.6970
417,0.7123
418,0.5792
419,0.5776
420,0.4976
421,0.4270
422,0.4227
423,0.4148
424,0.3128
425,0.2852
426,0.2896
427,0.2850
428,0.2671
429,0.2392
430,0.2405
431,0.2403
432,0.2366
433,0.2442
434,0.2674
435,0.3473
436,0.3454
437,0.3574
438,0.3743
439,0.4262
440,0.4649
441,0.4499
442,0.4896
443,0.4934
444,0.5104
445,0.5120
446,0.4971
447,0.4694
448,0.4548
449,0.4245
450,0.3950
451,0.3641
452,0.3349
453,0.3103
454,0.2646
455,0.2680
456,0.2522
457,0.2374
458,0.2023
459,0.1980
460,0.1840
461,0.1698
462,0.1735
463,0.1411
464,0.1365
465,0.1295
466,0.1309
467,0.1163
468,0.1113
469,0.1068
470,0.1011
471,0.0961
472,0.0928
473,0.0850
474,0.0882
475,0.0834
476,0.0873
477,0.0902
478,0.0817
479,0.0934
480,0.0979
481,0.0925
482,0.0992
483,0.1028
484,0.1101
485,0.1139
486,0.1222
487,0.1238
488,0.1232
489,0.1336
490,0.1339
491,0.1350
492,0.1296
493,0.1358
494,0.1324
495,0.1324
496,0.1264
497,0.1290
498,0.1231
499,0.1222
500,0.1144
501,0.1121
502,0.1094
503,0.1006
504,0.1034
505,0.1000
506,0.0952
507,0.0916
508,0.0876
509,0.0831
510,0.0800
511,0.0783
512,0.0744
513,0.0696
514,0.0676
515,0.0629
516,0.0583
517,0.0555
518,0.0530
519,0.0510
520,0.0483
521,0.0488
522,0.0481
523,0.0456
524,0.0442
525,0.0438
526,0.0458
527,0.0454
528,0.0435
529,0.0473
530,0.0469
531,0.0494
532,0.0498
533,0.0515
534,0.0540
535,0.0569
536,0.0594
537,0.0641
538,0.0671
539,0.0722
540,0.0745
541,0.0789
542,0.0814
543,0.0872
544,0.0931
545,0.0989
546,0.1013
547,0.1077
548,0.1133
549,0.1160
550,0.1194
551,0.1233
552,0.1282
553,0.1326
554,0.1358
555,0.1371
556,0.1393
557,0.1416
558,0.1435
559,0.1442
560,0.1426
561,0.1458
562,0.1439
563,0.1400
564,0.1410
565,0.1383
566,0.1361
567,0.1364
568,0.1315
569,0.1305
570,0.1294
571,0.1251
572,0.1259
573,0.1231
574,0.1181
575,0.1167
576,0.1138
577,0.1095
578,0.1116
579,0.1058
580,0.1060
581,0.1012
582,0.0996
583,0.0956
584,0.0975
585,0.0939
586,0.0920
587,0.0901
588,0.0896
589,0.0885
590,0.0880
591,0.0868
592,0.0881
593,0.0856
594,0.0855
595,0.0867
596,0.0887
597,0.0873
598,0.0880
599,0.0908
600,0.0924
601,0.0951
602,0.0956
603,0.0996
604,0.1007
605,0.1038
606,0.1065
607,0.1113
608,0.1149
609,0.1169
610,0.1182
611,0.1236
612,0.1260
613,0.1337
614,0.1339
615,0.1384
616,0.1430
617,0.1451
618,0.1487
619,0.1524
620,0.1545
621,0.1594
622,0.1635
623,0.1668
624,0.1664
625,0.1724
626,0.1738
627,0.1762
628,0.1770
629,0.1811
630,0.1839
631,0.1841
632,0.1886
633,0.1896
634,0.1886
635,0.1903
636,0.1893
637,0.1896
638,0.1963
639,0.1973
640,0.1958
641,0.1998
642,0.1978
643,0.1998
644,0.1983
645,0.1999
646,0.1977
647,0.1960
648,0.1962
649,0.1952
650,0.1933
651,0.1911
652,0.1882
653,0.1852
654,0.1840
655,0.1829
656,0.1798
657,0.1768
658,0.1714
659,0.1717
660,0.1676
661,0.1633
662,0.1580
663,0.1554
664,0.1499
665,0.1502
666,0.1445
667,0.1426
668,0.1384
669,0.1344
670,0.1291
671,0.1276
672,0.1237
673,0.1224
674,0.1183
675,0.1153
676,0.1154
677,0.1107
678,0.1099
679,0.1083
680,0.1075
681,0.1080
682,0.1066
683,0.1031
684,0.1051
685,0.1050
686,0.1055
687,0.1047
688,0.1059
689,0.1060
690,0.1074
691,0.1095
692,0.1106
693,0.1120
694,0.1128
695,0.1141
696,0.1152
697,0.1168
698,0.1188
699,0.1208
700,0.1223
701,0.1242
702,0.1313
703,0.1310
704,0.1294
705,0.1349
706,0.1352
707,0.1392
708,0.1410
709,0.1449
710,0.1475
711,0.1499
712,0.1514
713,0.1531
714,0.1566
715,0.1594
716,0.1614
717,0.1628
718,0.1638
719,0.1616
720,0.1632
721,0.1646
722,0.1626
723,0.1641
724,0.1648
725,0.1691
726,0.1693
727,0.1725
728,0.1735
729,0.1744
730,0.1750
731,0.1763
732,0.1771
733,0.1786
734,0.1774
735,0.1787
736,0.1767
737,0.1760
738,0.1776
739,0.1760
740,0.1727
741,0.1706
742,0.1705
743,0.1689
744,0.1649
745,0.1633
746,0.1609
747,0.1589
748,0.1582
749,0.1549
750,0.1490
751,0.1476
752,0.1440
753,0.1418
754,0.1390
755,0.1357
756,0.1340
757,0.1293
758,0.1268
759,0.1242
760,0.1208
761,0.1183
762,0.1151
763,0.1123
764,0.1103
765,0.1096
766,0.1042
767,0.1048
768,0.1014
769,0.0994
770,0.0976
771,0.0936
772,0.0926
773,0.0893
774,0.0872
775,0.0862
776,0.0858
777,0.0827
778,0.0813
779,0.0797
780,0.0797
781,0.0756
782,0.0766
783,0.0743
784,0.0754
785,0.0735
786,0.0745
787,0.0701
788,0.0704
789,0.0711
790,0.0720
791,0.0704
792,0.0713
793,0.0713
794,0.0743
795,0.0734
796,0.0749
797,0.0734
798,0.0762
799,0.0749
800,0.0778
801,0.0785
802,0.0785
803,0.0801
804,0.0802
805,0.0811
806,0.0818
807,0.0824
808,0.0830
809,0.0840
810,0.0832
811,0.0846
812,0.0861
813,0.0846
814,0.0854
815,0.0875
816,0.0881
817,0.0886
818,0.0893
819,0.0889
820,0.0885
821,0.0906
822,0.0913
823,0.0916
824,0.0934
825,0.0917
826,0.0938
827,0.0940
828,0.0931
829,0.0949
830,0.0947
831,0.0947
832,0.0955
833,0.0933
834,0.0925
835,0.0938
836,0.0955
837,0.0961
838,0.0943
839,0.0941
840,0.0914
841,0.0933
842,0.0934
843,0.0923
844,0.0932
845,0.0915
846,0.0909
847,0.0908
848,0.0886
849,0.0889
850,0.0892
851,0.0893
852,0.0879
853,0.0872
854,0.0857
855,0.0850
856,0.0861
857,0.0833
858,0.0825
859,0.0821
860,0.0820
861,0.0788
862,0.0788
863,0.0771
864,0.0758
865,0.0749
866,0.0729
867,0.0716
868,0.0712
869,0.0695
870,0.0682
871,0.0667
872,0.0656
873,0.0642
874,0.0617
875,0.0596
876,0.0598
877,0.0596
878,0.0575
879,0.0590
880,0.0585
881,0.0571
882,0.0573
883,0.0584
884,0.0571
885,0.0571
886,0.0587
887,0.0577
888,0.0583
889,0.0580
890,0.0592
891,0.0576
892,0.0580
893,0.0574
894,0.0570
895,0.0549
896,0.0543
897,0.0526
898,0.0525
899,0.0519
900,0.0515
901,0.0512
902,0.0509
903,0.0502
904,0.0473
905,0.0465
906,0.0460
907,0.0440
908,0.0447
909,0.0433
910,0.0425
911,0.0424
912,0.0396
913,0.0388
914,0.0380
915,0.0370
916,0.0374
917,0.0354
918,0.0354
919,0.0326
920,0.0319
921,0.0325
922,0.0315
923,0.0316
924,0.0308
925,0.0302
926,0.0287
927,0.0295
928,0.0278
929,0.0250
930,0.0246
931,0.0240
932,0.0220
933,0.0212
934,0.0199
935,0.0177
936,0.0152
937,0.0133
938,0.0103
939,0.0090
940,0.0087
941,0.0079
942,0.0068

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.2249
402,1.0000
403,1.0000
404,0.0000
405,0.7250
406,0.0000
407,0.0000
408,0.0000
409,1.0000
410,0.3066
411,0.2873
412,0.3251
413,0.4190
414,0.4621
415,0.4743
416,0.5276
417,0.4551
418,0.6237
419,0.6457
420,0.7289
421,0.6870
422,0.7350
423,0.6678
424,0.7488
425,0.7471
426,0.7387
427,0.7112
428,0.6762
429,0.6283
430,0.5979
431,0.6278
432,0.5525
433,0.5237
434,0.4724
435,0.5099
436,0.4432
437,0.4273
438,0.3980
439,0.3653
440,0.3553
441,0.2938
442,0.2750
443,0.2943
444,0.2516
445,0.2577
446,0.2127
447,0.1805
448,0.1742
449,0.1734
450,0.1577
451,0.1640
452,0.1451
453,0.1421
454,0.1365
455,0.1566
456,0.1571
457,0.1578
458,0.1680
459,0.1672
460,0.1819
461,0.1898
462,0.1980
463,0.2053
464,0.2196
465,0.2245
466,0.2461
467,0.2390
468,0.2391
469,0.2308
470,0.2302
471,0.2344
472,0.2112
473,0.2045
474,0.2012
475,0.1895
476,0.1782
477,0.1664
478,0.1587
479,0.1498
480,0.1480
481,0.1360
482,0.1302
483,0.1202
484,0.1192
485,0.1135
486,0.1078
487,0.1006
488,0.0971
489,0.0911
490,0.0841
491,0.0779
492,0.0727
493,0.0730
494,0.0660
495,0.0658
496,0.0566
497,0.0580
498,0.0552
499,0.0541
500,0.0531
501,0.0519
502,0.0503
503,0.0509
504,0.0516
505,0.0534
506,0.0567
507,0.0569
508,0.0605
509,0.0631
510,0.0641
511,0.0674
512,0.0699
513,0.0720
514,0.0738
515,0.0748
516,0.0763
517,0.0756
518,0.0784
519,0.0820
520,0.0813
521,0.0845
522,0.0869
523,0.0899
524,0.0895
525,0.0914
526,0.0904
527,0.0901
528,0.0918
529,0.0945
530,0.0975
531,0.0971
532,0.0987
533,0.0982
534,0.1005
535,0.0981
536,0.1006
537,0.1007
538,0.1024
539,0.1031
540,0.1014
541,0.1012
542,0.0996
543,0.0998
544,0.0990
545,0.0978
546,0.0983
547,0.0948
548,0.0936
549,0.0923
550,0.0897
551,0.0881
552,0.0873
553,0.0844
554,0.0835
555,0.0816
556,0.0800
557,0.0787
558,0.0755
559,0.0755
560,0.0728
561,0.0718
562,0.0717
563,0.0712
564,0.0706
565,0.0703
566,0.0709
567,0.0697
568,0.0693
569,0.0715
570,0.0713
571,0.0721
572,0.0741
573,0.0749
574,0.0773
575,0.0792
576,0.0827
577,0.0839
578,0.0879
579,0.0886
580,0.0920
581,0.0970
582,0.0988
583,0.1019
584,0.1069
585,0.1075
586,0.1114
587,0.1144
588,0.1206
589,0.1276
590,0.1285
591,0.1336
592,0.1373
593,0.1423
594,0.1475
595,0.1531
596,0.1563
597,0.1607
598,0.1659
599,0.1694
600,0.1735
601,0.1755
602,0.1772
603,0.1799
604,0.1835
605,0.1852
606,0.1837
607,0.1884
608,0.1892
609,0.1864
610,0.1879
611,0.1851
612,0.1852
613,0.1826
614,0.1804
615,0.1777
616,0.1749
617,0.1728
618,0.1708
619,0.1664
620,0.1640
621,0.1593
622,0.1591
623,0.1537
624,0.1493
625,0.1496
626,0.1469
627,0.1440
628,0.1395
629,0.1368
630,0.1321
631,0.1294
632,0.1257
633,0.1264
634,0.1238
635,0.1208
636,0.1203
637,0.1153
638,0.1166
639,0.1148
640,0.1141
641,0.1129
642,0.1101
643,0.1122
644,0.1087
645,0.1075
646,0.1081
647,0.1074
648,0.1068
649,0.1094
650,0.1101
651,0.1096
652,0.1089
653,0.1088
654,0.1145
655,0.1137
656,0.1160
657,0.1180
658,0.1170
659,0.1218
660,0.1252
661,0.1244
662,0.1290
663,0.1312
664,0.1316
665,0.1361
666,0.1399
667,0.1404
668,0.1445
669,0.1472
670,0.1485
671,0.1511
672,0.1511
673,0.1567
674,0.1592
675,0.1625
676,0.1620
677,0.1645
678,0.1679
679,0.1669
680,0.1663
681,0.1685
682,0.1707
683,0.1739
684,0.1731
685,0.1758
686,0.1752
687,0.1757
688,0.1776
689,0.1765
690,0.1789
691,0.1804
692,0.1809
693,0.1782
694,0.1799
695,0.1775
696,0.1807
697,0.1756
698,0.1793
699,0.1788
700,0.1801
701,0.1783
702,0.1800
703,0.1798
704,0.1743
705,0.1762
706,0.1772
707,0.1755
708,0.1744
709,0.1724
710,0.1723
711,0.1719
712,0.1692
713,0.1671
714,0.1645
715,0.1610
716,0.1627
717,0.1604
718,0.1584
719,0.1508
720,0.1464
721,0.1438
722,0.1402
723,0.1388
724,0.1376
725,0.1342
726,0.1335
727,0.1319
728,0.1300
729,0.1278
730,0.1248
731,0.1235
732,0.1226
733,0.1202
734,0.1163
735,0.1150
736,0.1145
737,0.1117
738,0.1105
739,0.1092
740,0.1043
741,0.1035
742,0.1012
743,0.0997
744,0.0966
745,0.0957
746,0.0945
747,0.0934
748,0.0926
749,0.0900
750,0.0898
751,0.0875
752,0.0867
753,0.0866
754,0.0860
755,0.0842
756,0.0860
757,0.0852
758,0.0858
759,0.0829
760,0.0835
761,0.0831
762,0.0849
763,0.0865
764,0.0840
765,0.0864
766,0.0851
767,0.0867
768,0.0883
769,0.0869
770,0.0874
771,0.0871
772,0.0883
773,0.0883
774,0.0903
775,0.0914
776,0.0918
777,0.0911
778,0.0931
779,0.0939
780,0.0948
781,0.0945
782,0.0957
783,0.0961
784,0.0966
785,0.0975
786,0.0987
787,0.0982
788,0.0992
789,0.1027
790,0.1031
791,0.1019
792,0.1037
793,0.1062
794,0.1060
795,0.1075
796,0.1088
797,0.1090
798,0.1112
799,0.1126
800,0.1118
801,0.1156
802,0.1166
803,0.1187
804,0.1178
805,0.1195
806,0.1221
807,0.1206
808,0.1208
809,0.1211
810,0.1180
811,0.1196
812,0.1183
813,0.1177
814,0.1174
815,0.1170
816,0.1180
817,0.1157
818,0.1156
819,0.1152
820,0.1128
821,0.1130
822,0.1107
823,0.1104
824,0.1081
825,0.1066
826,0.1068
827,0.1051
828,0.1052
829,0.1042
830,0.1019
831,0.1016
832,0.1018
833,0.0963
834,0.0950
835,0.0951
836,0.0929
837,0.0929
838,0.0906
839,0.0912
840,0.0854
841,0.0845
842,0.0835
843,0.0816
844,0.0801
845,0.0794
846,0.0776
847,0.0766
848,0.0722
849,0.0723
850,0.0723
851,0.0703
852,0.0680
853,0.0670
854,0.0651
855,0.0626
856,0.0636
857,0.0597
858,0.0594
859,0.0570
860,0.0553
861,0.0554
862,0.0541
863,0.0523
864,0.0508
865,0.0498
866,0.0481
867,0.0470
868,0.0454
869,0.0448
870,0.0429
871,0.0420
872,0.0405
873,0.0387
874,0.0379
875,0.0379
876,0.0361
877,0.0364
878,0.0346
879,0.0349
880,0.0351
881,0.0350
882,0.0355
883,0.0351
884,0.0358
885,0.0354
886,0.0358
887,0.0361
888,0.0353
889,0.0362
890,0.0367
891,0.0370
892,0.0367
893,0.0369
894,0.0366
895,0.0368
896,0.0371
897,0.0359
898,0.0368
899,0.0359
900,0.0363
901,0.0369
902,0.0377
903,0.0371
904,0.0368
905,0.0369
906,0.0376
907,0.0357
908,0.0361
909,0.0362
910,0.0361
911,0.0362
912,0.0362
913,0.0373
914,0.0349
915,0.0352
916,0.0358
917,0.0359
918,0.0348
919,0.0341
920,0.0338
921,0.0352
922,0.0366
923,0.0356
924,0.0352
925,0.0345
926,0.0353
927,0.0339
928,0.0338
929,0.0323
930,0.0326
931,0.0308
932,0.0288
933,0.0280
934,0.0275
935,0.0241
936,0.0213
937,0.0185
938,0.0156
939,0.0135
940,0.0129
941,0.0111
942,0.0105

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.9201
407,0.0000
408,0.0000
409,1.0000
410,0.7574
411,0.7077
412,0.7658
413,0.5975
414,0.6811
415,0.6339
416,0.6756
417,0.5472
418,0.4566
419,0.4572
420,0.3848
421,0.3248
422,0.3159
423,0.3155
424,0.2184
425,0.2938
426,0.2686
427,0.2634
428,0.3021
429,0.2235
430,0.2784
431,0.2822
432,0.2884
433,0.2968
434,0.3067
435,0.3712
436,0.3648
437,0.4170
438,0.4248
439,0.4380
440,0.5047
441,0.4829
442,0.4860
443,0.5156
444,0.5071
445,0.5117
446,0.4858
447,0.4649
448,0.4360
449,0.4323
450,0.3925
451,0.3779
452,0.3533
453,0.3189
454,0.2881
455,0.2735
456,0.2566
457,0.2339
458,0.2187
459,0.2032
460,0.1909
461,0.1828
462,0.1781
463,0.1669
464,0.1575
465,0.1444
466,0.1422
467,0.1264
468,0.1265
469,0.1164
470,0.1060
471,0.1061
472,0.0880
473,0.0903
474,0.0872
475,0.0814
476,0.0741
477,0.0770
478,0.0712
479,0.0807
480,0.0808
481,0.0749
482,0.0827
483,0.0859
484,0.0882
485,0.0976
486,0.0955
487,0.1026
488,0.1047
489,0.1065
490,0.1095
491,0.1115
492,0.1139
493,0.1185
494,0.1190
495,0.1192
496,0.1163
497,0.1183
498,0.1142
499,0.1179
500,0.1134
501,0.1104
502,0.1101
503,0.1079
504,0.1079
505,0.1072
506,0.1077
507,0.1060
508,0.1032
509,0.1009
510,0.1003
511,0.0983
512,0.0950
513,0.0931
514,0.0891
515,0.0838
516,0.0804
517,0.0753
518,0.0735
519,0.0690
520,0.0666
521,0.0662
522,0.0631
523,0.0605
524,0.0579
525,0.0566
526,0.0544
527,0.0523
528,0.0509
529,0.0506
530,0.0507
531,0.0480
532,0.0480
533,0.0472
534,0.0476
535,0.0475
536,0.0473
537,0.0483
538,0.0497
539,0.0510
540,0.0517
541,0.0529
542,0.0545
543,0.0557
544,0.0622
545,0.0634
546,0.0670
547,0.0697
548,0.0724
549,0.0761
550,0.0774
551,0.0819
552,0.0873
553,0.0912
554,0.0945
555,0.0956
556,0.0983
557,0.1045
558,0.1068
559,0.1123
560,0.1139
561,0.1154
562,0.1188
563,0.1217
564,0.1255
565,0.1272
566,0.1291
567,0.1283
568,0.1299
569,0.1327
570,0.1348
571,0.1316
572,0.1356
573,0.1376
574,0.1363
575,0.1392
576,0.1404
577,0.1386
578,0.1425
579,0.1406
580,0.1414
581,0.1426
582,0.1413
583,0.1411
584,0.1429
585,0.1413
586,0.1394
587,0.1397
588,0.1412
589,0.1382
590,0.1387
591,0.1374
592,0.1378
593,0.1365
594,0.1329
595,0.1358
596,0.1305
597,0.1307
598,0.1296
599,0.1281
600,0.1253
601,0.1243
602,0.1212
603,0.1195
604,0.1176
605,0.1166
606,0.1110
607,0.1104
608,0.1073
609,0.1052
610,0.1016
611,0.1004
612,0.0987
613,0.0991
614,0.0956
615,0.0943
616,0.0917
617,0.0923
618,0.0906
619,0.0908
620,0.0886
621,0.0907
622,0.0911
623,0.0901
624,0.0917
625,0.0953
626,0.0950
627,0.0966
628,0.0951
629,0.0980
630,0.0983
631,0.1012
632,0.1057
633,0.1061
634,0.1072
635,0.1088
636,0.1120
637,0.1151
638,0.1202
639,0.1232
640,0.1256
641,0.1306
642,0.1334
643,0.1373
644,0.1403
645,0.1460
646,0.1477
647,0.1513
648,0.1548
649,0.1607
650,0.1646
651,0.1681
652,0.1702
653,0.1739
654,0.1770
655,0.1811
656,0.1847
657,0.1891
658,0.1891
659,0.1938
660,0.1961
661,0.2003
662,0.2022
663,0.2056
664,0.2021
665,0.2056
666,0.2080
667,0.2068
668,0.2099
669,0.2067
670,0.2071
671,0.2043
672,0.2018
673,0.2041
674,0.2003
675,0.1988
676,0.1975
677,0.1931
678,0.1927
679,0.1881
680,0.1844
681,0.1848
682,0.1822
683,0.1763
684,0.1732
685,0.1713
686,0.1694
687,0.1651
688,0.1623
689,0.1594
690,0.1575
691,0.1536
692,0.1518
693,0.1498
694,0.1443
695,0.1416
696,0.1384
697,0.1374
698,0.1324
699,0.1325
700,0.1311
701,0.1263
702,0.1257
703,0.1230
704,0.1187
705,0.1178
706,0.1154
707,0.1136
708,0.1147
709,0.1096
710,0.1107
711,0.1064
712,0.1068
713,0.1030
714,0.1020
715,0.1001
716,0.0988
717,0.0992
718,0.0957
719,0.0951
720,0.0948
721,0.0932
722,0.0922
723,0.0917
724,0.0914
725,0.0923
726,0.0907
727,0.0912
728,0.0929
729,0.0945
730,0.0931
731,0.0951
732,0.0969
733,0.0972
734,0.0974
735,0.0983
736,0.1018
737,0.1027
738,0.1042
739,0.1030
740,0.1030
741,0.1063
742,0.1067
743,0.1073
744,0.1081
745,0.1085
746,0.1102
747,0.1093
748,0.1122
749,0.1117
750,0.1116
751,0.1141
752,0.1155
753,0.1149
754,0.1157
755,0.1173
756,0.1184
757,0.1173
758,0.1162
759,0.1182
760,0.1198
761,0.1203
762,0.1216
763,0.1204
764,0.1204
765,0.1223
766,0.1224
767,0.1211
768,0.1224
769,0.1225
770,0.1218
771,0.1225
772,0.1224
773,0.1211
774,0.1196
775,0.1228
776,0.1241
777,0.1228
778,0.1209
779,0.1216
780,0.1196
781,0.1181
782,0.1204
783,0.1169
784,0.1182
785,0.1189
786,0.1166
787,0.1144
788,0.1152
789,0.1147
790,0.1166
791,0.1147
792,0.1164
793,0.1153
794,0.1135
795,0.1156
796,0.1159
797,0.1149
798,0.1154
799,0.1150
800,0.1142
801,0.1158
802,0.1174
803,0.1137
804,0.1131
805,0.1141
806,0.1121
807,0.1093
808,0.1072
809,0.1081
810,0.1072
811,0.1055
812,0.1025
813,0.1019
814,0.1002
815,0.0989
816,0.0957
817,0.0951
818,0.0932
819,0.0904
820,0.0905
821,0.0888
822,0.0857
823,0.0845
824,0.0829
825,0.0799
826,0.0797
827,0.0781
828,0.0756
829,0.0754
830,0.0726
831,0.0721
832,0.0706
833,0.0667
834,0.0666
835,0.0646
836,0.0637
837,0.0631
838,0.0621
839,0.0616
840,0.0584
841,0.0577
842,0.0559
843,0.0557
844,0.0544
845,0.0521
846,0.0507
847,0.0501
848,0.0494
849,0.0483
850,0.0468
851,0.0477
852,0.0478
853,0.0459
854,0.0455
855,0.0454
856,0.0451
857,0.0433
858,0.0427
859,0.0433
860,0.0415
861,0.0412
862,0.0409
863,0.0410
864,0.0402
865,0.0408
866,0.0405
867,0.0398
868,0.0391
869,0.0382
870,0.0369
871,0.0368
872,0.0372
873,0.0361
874,0.0358
875,0.0359
876,0.0356
877,0.0361
878,0.0363
879,0.0373
880,0.0377
881,0.0387
882,0.0380
883,0.0403
884,0.0402
885,0.0403
886,0.0422
887,0.0435
888,0.0442
889,0.0458
890,0.0453
891,0.0475
892,0.0483
893,0.0472
894,0.0490
895,0.0500
896,0.0494
897,0.0503
898,0.0495
899,0.0509
900,0.0503
901,0.0525
902,0.0515
903,0.0515
904,0.0521
905,0.0527
906,0.0532
907,0.0520
908,0.0520
909,0.0508
910,0.0529
911,0.0513
912,0.0492
913,0.0503
914,0.0499
915,0.0483
916,0.0504
917,0.0486
918,0.0485
919,0.0465
920,0.0459
921,0.0476
922,0.0483
923,0.0476
924,0.0477
925,0.0463
926,0.0463
927,0.0444
928,0.0434
929,0.0414
930,0.0416
931,0.0397
932,0.0370
933,0.0359
934,0.0327
935,0.0303
936,0.0255
937,0.0224
938,0.0184
939,0.0165
940,0.0146
941,0.0130
942,0.0119

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.7499
402,1.0000
403,1.0000
404,0.4499
405,0.7750
406,0.7400
407,0.0000
408,0.0000
409,1.0000
410,0.3461
411,0.3452
412,0.4822
413,0.4953
414,0.5527
415,0.4741
416,0.6756
417,0.5710
418,0.6294
419,0.6495
420,0.7935
421,0.6966
422,0.7247
423,0.7463
424,0.6775
425,0.6695
426,0.7365
427,0.7249
428,0.7168
429,0.6101
430,0.6503
431,0.5762
432,0.5716
433,0.5193
434,0.5295
435,0.5239
436,0.4701
437,0.4524
438,0.3981
439,0.3853
440,0.3885
441,0.3396
442,0.3130
443,0.2972
444,0.2714
445,0.2508
446,0.2349
447,0.2099
448,0.1846
449,0.1735
450,0.1540
451,0.1617
452,0.1353
453,0.1329
454,0.1158
455,0.1374
456,0.1310
457,0.1279
458,0.1406
459,0.1472
460,0.1422
461,0.1537
462,0.1641
463,0.1757
464,0.1753
465,0.1805
466,0.1992
467,0.2048
468,0.2232
469,0.2107
470,0.2116
471,0.2126
472,0.2076
473,0.2052
474,0.1954
475,0.1929
476,0.1809
477,0.1768
478,0.1744
479,0.1653
480,0.1704
481,0.1579
482,0.1552
483,0.1452
484,0.1431
485,0.1418
486,0.1392
487,0.1316
488,0.1278
489,0.1222
490,0.1177
491,0.1092
492,0.1006
493,0.0994
494,0.0906
495,0.0850
496,0.0767
497,0.0751
498,0.0705
499,0.0639
500,0.0604
501,0.0552
502,0.0542
503,0.0530
504,0.0506
505,0.0501
506,0.0471
507,0.0466
508,0.0471
509,0.0461
510,0.0463
511,0.0473
512,0.0475
513,0.0480
514,0.0486
515,0.0498
516,0.0507
517,0.0491
518,0.0520
519,0.0546
520,0.0551
521,0.0571
522,0.0595
523,0.0607
524,0.0642
525,0.0661
526,0.0684
527,0.0685
528,0.0712
529,0.0772
530,0.0778
531,0.0791
532,0.0831
533,0.0852
534,0.0887
535,0.0886
536,0.0928
537,0.0980
538,0.1008
539,0.1034
540,0.1062
541,0.1084
542,0.1112
543,0.1141
544,0.1164
545,0.1185
546,0.1203
547,0.1247
548,0.1232
549,0.1248
550,0.1257
551,0.1248
552,0.1260
553,0.1271
554,0.1227
555,0.1226
556,0.1220
557,0.1212
558,0.1189
559,0.1156
560,0.1140
561,0.1113
562,0.1093
563,0.1066
564,0.1037
565,0.1023
566,0.0990
567,0.0969
568,0.0942
569,0.0916
570,0.0890
571,0.0879
572,0.0882
573,0.0831
574,0.0809
575,0.0811
576,0.0816
577,0.0776
578,0.0775
579,0.0753
580,0.0755
581,0.0749
582,0.0742
583,0.0736
584,0.0743
585,0.0752
586,0.0740
587,0.0742
588,0.0749
589,0.0741
590,0.0770
591,0.0787
592,0.0798
593,0.0820
594,0.0822
595,0.0867
596,0.0895
597,0.0912
598,0.0916
599,0.0943
600,0.0996
601,0.1052
602,0.1056
603,0.1092
604,0.1112
605,0.1147
606,0.1179
607,0.1227
608,0.1261
609,0.1278
610,0.1325
611,0.1335
612,0.1375
613,0.1407
614,0.1422
615,0.1462
616,0.1498
617,0.1516
618,0.1502
619,0.1528
620,0.1546
621,0.1578
622,0.1613
623,0.1612
624,0.1614
625,0.1673
626,0.1685
627,0.1669
628,0.1677
629,0.1707
630,0.1708
631,0.1696
632,0.1752
633,0.1763
634,0.1737
635,0.1763
636,0.1757
637,0.1739
638,0.1797
639,0.1801
640,0.1799
641,0.1830
642,0.1792
643,0.1812
644,0.1800
645,0.1806
646,0.1795
647,0.1800
648,0.1789
649,0.1794
650,0.1775
651,0.1776
652,0.1729
653,0.1703
654,0.1716
655,0.1705
656,0.1689
657,0.1656
658,0.1651
659,0.1639
660,0.1598
661,0.1573
662,0.1547
663,0.1531
664,0.1474
665,0.1495
666,0.1447
667,0.1405
668,0.1396
669,0.1354
670,0.1326
671,0.1288
672,0.1253
673,0.1233
674,0.1207
675,0.1194
676,0.1158
677,0.1139
678,0.1109
679,0.1088
680,0.1079
681,0.1054
682,0.1062
683,0.1012
684,0.1014
685,0.0999
686,0.1007
687,0.0980
688,0.0975
689,0.0962
690,0.0963
691,0.0966
692,0.0970
693,0.0951
694,0.0974
695,0.0959
696,0.0992
697,0.0978
698,0.0993
699,0.0992
700,0.1002
701,0.1020
702,0.1044
703,0.1047
704,0.1032
705,0.1075
706,0.1073
707,0.1079
708,0.1093
709,0.1117
710,0.1138
711,0.1141
712,0.1177
713,0.1199
714,0.1186
715,0.1221
716,0.1237
717,0.1246
718,0.1254
719,0.1257
720,0.1243
721,0.1268
722,0.1255
723,0.1291
724,0.1288
725,0.1317
726,0.1334
727,0.1344
728,0.1388
729,0.1409
730,0.1406
731,0.1420
732,0.1457
733,0.1475
734,0.1465
735,0.1474
736,0.1505
737,0.1500
738,0.1514
739,0.1521
740,0.1525
741,0.1527
742,0.1529
743,0.1512
744,0.1509
745,0.1499
746,0.1505
747,0.1480
748,0.1490
749,0.1455
750,0.1452
751,0.1452
752,0.1441
753,0.1412
754,0.1412
755,0.1403
756,0.1373
757,0.1365
758,0.1340
759,0.1349
760,0.1296
761,0.1322
762,0.1299
763,0.1264
764,0.1263
765,0.1239
766,0.1215
767,0.1226
768,0.1200
769,0.1180
770,0.1154
771,0.1141
772,0.1116
773,0.1110
774,0.1080
775,0.1067
776,0.1058
777,0.1065
778,0.1012
779,0.1007
780,0.0989
781,0.0973
782,0.0958
783,0.0942
784,0.0944
785,0.0925
786,0.0901
787,0.0858
788,0.0843
789,0.0843
790,0.0861
791,0.0848
792,0.0824
793,0.0823
794,0.0818
795,0.0797
796,0.0821
797,0.0819
798,0.0807
799,0.0799
800,0.0792
801,0.0782
802,0.0770
803,0.0776
804,0.0771
805,0.0761
806,0.0755
807,0.0745
808,0.0731
809,0.0720
810,0.0714
811,0.0705
812,0.0701
813,0.0683
814,0.0669
815,0.0691
816,0.0663
817,0.0656
818,0.0674
819,0.0634
820,0.0633
821,0.0652
822,0.0635
823,0.0627
824,0.0626
825,0.0615
826,0.0621
827,0.0623
828,0.0604
829,0.0616
830,0.0597
831,0.0619
832,0.0611
833,0.0601
834,0.0604
835,0.0606
836,0.0591
837,0.0605
838,0.0594
839,0.0617
840,0.0580
841,0.0595
842,0.0603
843,0.0591
844,0.0593
845,0.0593
846,0.0591
847,0.0595
848,0.0580
849,0.0580
850,0.0597
851,0.0604
852,0.0602
853,0.0590
854,0.0577
855,0.0594
856,0.0601
857,0.0591
858,0.0595
859,0.0598
860,0.0595
861,0.0585
862,0.0586
863,0.0573
864,0.0580
865,0.0588
866,0.0580
867,0.0582
868,0.0560
869,0.0566
870,0.0558
871,0.0543
872,0.0546
873,0.0525
874,0.0532
875,0.0523
876,0.0527
877,0.0535
878,0.0527
879,0.0540
880,0.0534
881,0.0554
882,0.0538
883,0.0567
884,0.0572
885,0.0568
886,0.0579
887,0.0601
888,0.0584
889,0.0603
890,0.0617
891,0.0612
892,0.0613
893,0.0621
894,0.0616
895,0.0619
896,0.0619
897,0.0620
898,0.0605
899,0.0613
900,0.0608
901,0.0613
902,0.0614
903,0.0582
904,0.0580
905,0.0587
906,0.0574
907,0.0564
908,0.0568
909,0.0554
910,0.0568
911,0.0561
912,0.0534
913,0.0533
914,0.0528
915,0.0523
916,0.0517
917,0.0489
918,0.0491
919,0.0469
920,0.0469
921,0.0457
922,0.0457
923,0.0464
924,0.0437
925,0.0427
926,0.0436
927,0.0414
928,0.0401
929,0.0383
930,0.0375
931,0.0350
932,0.0328
933,0.0313
934,0.0294
935,0.0262
936,0.0226
937,0.0195
938,0.0151
939,0.0133
940,0.0117
941,0.0098
942,0.0091

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.1499
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.4401
407,0.0000
408,0.0000
409,1.0000
410,0.7360
411,0.6350
412,0.6945
413,0.5288
414,0.6140
415,0.5345
416,0.5140
417,0.4745
418,0.3823
419,0.4225
420,0.3914
421,0.3136
422,0.3156
423,0.3228
424,0.2610
425,0.2601
426,0.2703
427,0.2842
428,0.2729
429,0.2022
430,0.3004
431,0.2449
432,0.2718
433,0.2801
434,0.3219
435,0.3783
436,0.4041
437,0.3940
438,0.4019
439,0.4135
440,0.4750
441,0.4606
442,0.4761
443,0.5051
444,0.4875
445,0.5134
446,0.4795
447,0.4490
448,0.4499
449,0.4244
450,0.3962
451,0.3766
452,0.3412
453,0.3061
454,0.2825
455,0.2720
456,0.2557
457,0.2419
458,0.2387
459,0.2317
460,0.2149
461,0.2039
462,0.2046
463,0.2003
464,0.1880
465,0.1763
466,0.1801
467,0.1648
468,0.1542
469,0.1426
470,0.1368
471,0.1292
472,0.1107
473,0.1055
474,0.1018
475,0.0882
476,0.0818
477,0.0781
478,0.0726
479,0.0742
480,0.0759
481,0.0673
482,0.0696
483,0.0684
484,0.0691
485,0.0701
486,0.0747
487,0.0763
488,0.0767
489,0.0795
490,0.0825
491,0.0846
492,0.0834
493,0.0876
494,0.0861
495,0.0889
496,0.0864
497,0.0893
498,0.0896
499,0.0940
500,0.0945
501,0.0911
502,0.0937
503,0.0922
504,0.0955
505,0.0976
506,0.0979
507,0.0983
508,0.1030
509,0.0995
510,0.0996
511,0.1019
512,0.1005
513,0.1021
514,0.0985
515,0.0946
516,0.0945
517,0.0896
518,0.0889
519,0.0867
520,0.0865
521,0.0862
522,0.0850
523,0.0825
524,0.0818
525,0.0787
526,0.0790
527,0.0768
528,0.0744
529,0.0760
530,0.0755
531,0.0731
532,0.0719
533,0.0703
534,0.0694
535,0.0689
536,0.0682
537,0.0685
538,0.0670
539,0.0670
540,0.0665
541,0.0669
542,0.0647
543,0.0659
544,0.0667
545,0.0663
546,0.0647
547,0.0658
548,0.0643
549,0.0661
550,0.0650
551,0.0667
552,0.0671
553,0.0667
554,0.0685
555,0.0686
556,0.0696
557,0.0713
558,0.0718
559,0.0725
560,0.0742
561,0.0740
562,0.0737
563,0.0746
564,0.0774
565,0.0804
566,0.0815
567,0.0823
568,0.0813
569,0.0850
570,0.0866
571,0.0865
572,0.0891
573,0.0891
574,0.0931
575,0.0957
576,0.0984
577,0.0993
578,0.1042
579,0.1039
580,0.1083
581,0.1104
582,0.1126
583,0.1137
584,0.1188
585,0.1186
586,0.1199
587,0.1225
588,0.1294
589,0.1302
590,0.1334
591,0.1361
592,0.1381
593,0.1435
594,0.1464
595,0.1483
596,0.1497
597,0.1535
598,0.1565
599,0.1592
600,0.1615
601,0.1659
602,0.1649
603,0.1660
604,0.1662
605,0.1665
606,0.1684
607,0.1700
608,0.1679
609,0.1646
610,0.1654
611,0.1660
612,0.1628
613,0.1611
614,0.1596
615,0.1570
616,0.1522
617,0.1496
618,0.1514
619,0.1471
620,0.1464
621,0.1448
622,0.1414
623,0.1387
624,0.1357
625,0.1362
626,0.1328
627,0.1311
628,0.1285
629,0.1283
630,0.1236
631,0.1210
632,0.1229
633,0.1203
634,0.1197
635,0.1167
636,0.1165
637,0.1146
638,0.1132
639,0.1136
640,0.1141
641,0.1119
642,0.1092
643,0.1104
644,0.1076
645,0.1084
646,0.1078
647,0.1065
648,0.1056
649,0.1072
650,0.1077
651,0.1057
652,0.1050
653,0.1068
654,0.1071
655,0.1082
656,0.1086
657,0.1111
658,0.1100
659,0.1114
660,0.1139
661,0.1132
662,0.1159
663,0.1167
664,0.1164
665,0.1187
666,0.1205
667,0.1187
668,0.1223
669,0.1244
670,0.1241
671,0.1255
672,0.1252
673,0.1283
674,0.1285
675,0.1301
676,0.1314
677,0.1341
678,0.1333
679,0.1337
680,0.1336
681,0.1358
682,0.1397
683,0.1368
684,0.1392
685,0.1405
686,0.1412
687,0.1427
688,0.1453
689,0.1451
690,0.1457
691,0.1476
692,0.1475
693,0.1488
694,0.1483
695,0.1492
696,0.1480
697,0.1476
698,0.1509
699,0.1498
700,0.1524
701,0.1557
702,0.1564
703,0.1558
704,0.1536
705,0.1577
706,0.1557
707,0.1557
708,0.1563
709,0.1561
710,0.1584
711,0.1576
712,0.1567
713,0.1567
714,0.1569
715,0.1569
716,0.1564
717,0.1557
718,0.1554
719,0.1502
720,0.1494
721,0.1495
722,0.1477
723,0.1462
724,0.1442
725,0.1453
726,0.1448
727,0.1439
728,0.1424
729,0.1436
730,0.1420
731,0.1412
732,0.1408
733,0.1368
734,0.1350
735,0.1344
736,0.1362
737,0.1318
738,0.1310
739,0.1295
740,0.1249
741,0.1239
742,0.1224
743,0.1200
744,0.1172
745,0.1144
746,0.1135
747,0.1099
748,0.1109
749,0.1068
750,0.1059
751,0.1026
752,0.1006
753,0.0984
754,0.0976
755,0.0950
756,0.0931
757,0.0918
758,0.0908
759,0.0885
760,0.0864
761,0.0839
762,0.0850
763,0.0835
764,0.0818
765,0.0810
766,0.0820
767,0.0805
768,0.0784
769,0.0785
770,0.0783
771,0.0754
772,0.0755
773,0.0753
774,0.0728
775,0.0751
776,0.0728
777,0.0725
778,0.0729
779,0.0714
780,0.0723
781,0.0706
782,0.0708
783,0.0710
784,0.0704
785,0.0699
786,0.0718
787,0.0708
788,0.0696
789,0.0712
790,0.0718
791,0.0726
792,0.0724
793,0.0728
794,0.0756
795,0.0759
796,0.0781
797,0.0774
798,0.0775
799,0.0784
800,0.0812
801,0.0808
802,0.0846
803,0.0829
804,0.0837
805,0.0859
806,0.0871
807,0.0867
808,0.0867
809,0.0866
810,0.0867
811,0.0875
812,0.0866
813,0.0890
814,0.0878
815,0.0898
816,0.0890
817,0.0877
818,0.0869
819,0.0877
820,0.0884
821,0.0886
822,0.0885
823,0.0895
824,0.0899
825,0.0879
826,0.0874
827,0.0892
828,0.0870
829,0.0907
830,0.0883
831,0.0862
832,0.0876
833,0.0866
834,0.0853
835,0.0860
836,0.0857
837,0.0869
838,0.0836
839,0.0849
840,0.0833
841,0.0827
842,0.0831
843,0.0821
844,0.0810
845,0.0813
846,0.0798
847,0.0781
848,0.0763
849,0.0789
850,0.0768
851,0.0759
852,0.0738
853,0.0744
854,0.0739
855,0.0728
856,0.0733
857,0.0729
858,0.0708
859,0.0699
860,0.0689
861,0.0694
862,0.0680
863,0.0668
864,0.0644
865,0.0651
866,0.0636
867,0.0629
868,0.0618
869,0.0595
870,0.0583
871,0.0586
872,0.0549
873,0.0543
874,0.0534
875,0.0514
876,0.0520
877,0.0520
878,0.0506
879,0.0515
880,0.0505
881,0.0520
882,0.0502
883,0.0517
884,0.0507
885,0.0498
886,0.0509
887,0.0517
888,0.0524
889,0.0530
890,0.0531
891,0.0518
892,0.0515
893,0.0522
894,0.0515
895,0.0506
896,0.0499
897,0.0488
898,0.0486
899,0.0479
900,0.0477
901,0.0463
902,0.0464
903,0.0455
904,0.0464
905,0.0437
906,0.0442
907,0.0423
908,0.0419
909,0.0417
910,0.0406
911,0.0407
912,0.0386
913,0.0377
914,0.0366
915,0.0364
916,0.0357
917,0.0350
918,0.0348
919,0.0324
920,0.0325
921,0.0323
922,0.0325
923,0.0320
924,0.0302
925,0.0294
926,0.0300
927,0.0278
928,0.0277
929,0.0256
930,0.0254
931,0.0237
932,0.0216
933,0.0210
934,0.0195
935,0.0177
936,0.0149
937,0.0132
938,0.0108
939,0.0083
940,0.0080
941,0.0061
942,0.0077

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.5000
407,0.0000
408,0.0000
409,1.0000
410,0.4098
411,0.3500
412,0.5418
413,0.4075
414,0.5631
415,0.4868
416,0.6649
417,0.6311
418,0.6404
419,0.6741
420,0.7536
421,0.7126
422,0.7248
423,0.6966
424,0.6967
425,0.7323
426,0.7496
427,0.7039
428,0.7497
429,0.6054
430,0.6736
431,0.6339
432,0.5939
433,0.5546
434,0.5657
435,0.5503
436,0.4968
437,0.4967
438,0.4530
439,0.4358
440,0.3919
441,0.3573
442,0.3389
443,0.3462
444,0.3034
445,0.2868
446,0.2542
447,0.2235
448,0.2261
449,0.1800
450,0.1854
451,0.1728
452,0.1335
453,0.1402
454,0.1103
455,0.1223
456,0.1180
457,0.1095
458,0.1152
459,0.1173
460,0.1257
461,0.1246
462,0.1351
463,0.1391
464,0.1376
465,0.1469
466,0.1581
467,0.1594
468,0.1649
469,0.1693
470,0.1681
471,0.1757
472,0.1725
473,0.1705
474,0.1747
475,0.1692
476,0.1626
477,0.1610
478,0.1479
479,0.1521
480,0.1617
481,0.1523
482,0.1512
483,0.1468
484,0.1479
485,0.1484
486,0.1451
487,0.1452
488,0.1405
489,0.1418
490,0.1392
491,0.1374
492,0.1294
493,0.1281
494,0.1129
495,0.1143
496,0.1053
497,0.1061
498,0.0973
499,0.0939
500,0.0895
501,0.0836
502,0.0805
503,0.0746
504,0.0739
505,0.0713
506,0.0685
507,0.0650
508,0.0620
509,0.0622
510,0.0588
511,0.0582
512,0.0552
513,0.0540
514,0.0527
515,0.0514
516,0.0500
517,0.0477
518,0.0479
519,0.0471
520,0.0461
521,0.0467
522,0.0469
523,0.0474
524,0.0485
525,0.0482
526,0.0496
527,0.0487
528,0.0492
529,0.0527
530,0.0543
531,0.0543
532,0.0555
533,0.0574
534,0.0594
535,0.0608
536,0.0622
537,0.0659
538,0.0691
539,0.0710
540,0.0735
541,0.0754
542,0.0784
543,0.0800
544,0.0856
545,0.0923
546,0.0926
547,0.0961
548,0.0972
549,0.1006
550,0.1020
551,0.1065
552,0.1089
553,0.1118
554,0.1127
555,0.1130
556,0.1147
557,0.1159
558,0.1174
559,0.1200
560,0.1205
561,0.1189
562,0.1220
563,0.1210
564,0.1195
565,0.1214
566,0.1186
567,0.1190
568,0.1176
569,0.1193
570,0.1198
571,0.1171
572,0.1169
573,0.1157
574,0.1153
575,0.1157
576,0.1148
577,0.1151
578,0.1167
579,0.1126
580,0.1154
581,0.1131
582,0.1148
583,0.1133
584,0.1145
585,0.1144
586,0.1119
587,0.1130
588,0.1120
589,0.1130
590,0.1117
591,0.1127
592,0.1128
593,0.1139
594,0.1128
595,0.1138
596,0.1147
597,0.1119
598,0.1119
599,0.1127
600,0.1126
601,0.1122
602,0.1108
603,0.1130
604,0.1108
605,0.1097
606,0.1085
607,0.1111
608,0.1085
609,0.1072
610,0.1062
611,0.1060
612,0.1042
613,0.1067
614,0.1045
615,0.1045
616,0.1052
617,0.1057
618,0.1047
619,0.1029
620,0.1037
621,0.1033
622,0.1049
623,0.1054
624,0.1043
625,0.1054
626,0.1068
627,0.1079
628,0.1066
629,0.1078
630,0.1083
631,0.1086
632,0.1117
633,0.1118
634,0.1139
635,0.1131
636,0.1145
637,0.1155
638,0.1205
639,0.1209
640,0.1224
641,0.1270
642,0.1267
643,0.1279
644,0.1294
645,0.1327
646,0.1335
647,0.1358
648,0.1365
649,0.1410
650,0.1414
651,0.1434
652,0.1459
653,0.1478
654,0.1504
655,0.1514
656,0.1539
657,0.1572
658,0.1569
659,0.1592
660,0.1636
661,0.1621
662,0.1674
663,0.1645
664,0.1646
665,0.1699
666,0.1680
667,0.1681
668,0.1705
669,0.1662
670,0.1686
671,0.1706
672,0.1665
673,0.1675
674,0.1685
675,0.1678
676,0.1635
677,0.1626
678,0.1622
679,0.1607
680,0.1563
681,0.1592
682,0.1575
683,0.1537
684,0.1531
685,0.1533
686,0.1499
687,0.1485
688,0.1476
689,0.1470
690,0.1442
691,0.1400
692,0.1420
693,0.1410
694,0.1380
695,0.1374
696,0.1352
697,0.1360
698,0.1333
699,0.1344
700,0.1324
701,0.1290
702,0.1292
703,0.1275
704,0.1259
705,0.1253
706,0.1233
707,0.1231
708,0.1217
709,0.1195
710,0.1222
711,0.1187
712,0.1178
713,0.1160
714,0.1148
715,0.1133
716,0.1127
717,0.1129
718,0.1105
719,0.1087
720,0.1056
721,0.1051
722,0.1004
723,0.1022
724,0.1031
725,0.1007
726,0.1009
727,0.0990
728,0.0999
729,0.1010
730,0.0988
731,0.0995
732,0.0994
733,0.0995
734,0.0987
735,0.0993
736,0.1006
737,0.1002
738,0.0988
739,0.0996
740,0.0974
741,0.0977
742,0.0969
743,0.0956
744,0.0954
745,0.0961
746,0.0978
747,0.0943
748,0.0973
749,0.0963
750,0.0958
751,0.0962
752,0.0962
753,0.0963
754,0.0975
755,0.0959
756,0.0970
757,0.0945
758,0.0963
759,0.0960
760,0.0976
761,0.0959
762,0.0960
763,0.0980
764,0.0981
765,0.0954
766,0.0976
767,0.0985
768,0.0986
769,0.0986
770,0.0969
771,0.0986
772,0.0974
773,0.0982
774,0.0985
775,0.0998
776,0.1000
777,0.1012
778,0.0988
779,0.0984
780,0.0983
781,0.0977
782,0.0979
783,0.0980
784,0.0986
785,0.0973
786,0.0991
787,0.0969
788,0.0980
789,0.0990
790,0.0991
791,0.0982
792,0.1007
793,0.0991
794,0.0987
795,0.1006
796,0.1005
797,0.1010
798,0.1020
799,0.1025
800,0.1021
801,0.1053
802,0.1044
803,0.1050
804,0.1055
805,0.1039
806,0.1059
807,0.1037
808,0.1032
809,0.1022
810,0.1024
811,0.1039
812,0.1007
813,0.1012
814,0.1009
815,0.1001
816,0.0993
817,0.0984
818,0.0956
819,0.0935
820,0.0951
821,0.0941
822,0.0940
823,0.0898
824,0.0912
825,0.0887
826,0.0894
827,0.0875
828,0.0853
829,0.0856
830,0.0823
831,0.0837
832,0.0823
833,0.0786
834,0.0779
835,0.0785
836,0.0764
837,0.0757
838,0.0740
839,0.0748
840,0.0718
841,0.0711
842,0.0681
843,0.0680
844,0.0672
845,0.0645
846,0.0635
847,0.0632
848,0.0610
849,0.0597
850,0.0603
851,0.0599
852,0.0575
853,0.0560
854,0.0554
855,0.0535
856,0.0537
857,0.0516
858,0.0507
859,0.0496
860,0.0487
861,0.0473
862,0.0466
863,0.0454
864,0.0460
865,0.0432
866,0.0428
867,0.0413
868,0.0408
869,0.0404
870,0.0390
871,0.0381
872,0.0363
873,0.0361
874,0.0350
875,0.0331
876,0.0324
877,0.0337
878,0.0325
879,0.0327
880,0.0337
881,0.0332
882,0.0318
883,0.0340
884,0.0328
885,0.0321
886,0.0342
887,0.0339
888,0.0341
889,0.0341
890,0.0352
891,0.0337
892,0.0343
893,0.0336
894,0.0344
895,0.0343
896,0.0333
897,0.0335
898,0.0339
899,0.0324
900,0.0335
901,0.0342
902,0.0335
903,0.0337
904,0.0344
905,0.0317
906,0.0331
907,0.0336
908,0.0327
909,0.0320
910,0.0330
911,0.0318
912,0.0317
913,0.0313
914,0.0308
915,0.0303
916,0.0291
917,0.0302
918,0.0295
919,0.0281
920,0.0281
921,0.0298
922,0.0277
923,0.0277
924,0.0284
925,0.0281
926,0.0279
927,0.0279
928,0.0277
929,0.0254
930,0.0272
931,0.0256
932,0.0234
933,0.0230
934,0.0217
935,0.0208
936,0.0170
937,0.0148
938,0.0117
939,0.0111
940,0.0089
941,0.0089
942,0.0070

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.1801
407,0.0000
408,0.0000
409,1.0000
410,0.8134
411,0.6385
412,0.8298
413,0.6304
414,0.6927
415,0.6262
416,0.6220
417,0.6149
418,0.5483
419,0.5386
420,0.5887
421,0.4684
422,0.4034
423,0.3658
424,0.3223
425,0.3361
426,0.3259
427,0.3466
428,0.2575
429,0.2225
430,0.3089
431,0.2319
432,0.2436
433,0.2528
434,0.2647
435,0.2912
436,0.2761
437,0.2943
438,0.2675
439,0.2900
440,0.3354
441,0.3145
442,0.3408
443,0.3390
444,0.3374
445,0.3708
446,0.3789
447,0.3136
448,0.3415
449,0.3349
450,0.3133
451,0.3218
452,0.3010
453,0.2633
454,0.2728
455,0.2607
456,0.2459
457,0.2546
458,0.2484
459,0.2487
460,0.2368
461,0.2330
462,0.2470
463,0.2362
464,0.2351
465,0.2272
466,0.2421
467,0.2284
468,0.2209
469,0.2112
470,0.2040
471,0.1939
472,0.1767
473,0.1698
474,0.1584
475,0.1430
476,0.1373
477,0.1254
478,0.1208
479,0.1134
480,0.1158
481,0.0994
482,0.0978
483,0.0937
484,0.0914
485,0.0908
486,0.0843
487,0.0842
488,0.0821
489,0.0824
490,0.0768
491,0.0781
492,0.0716
493,0.0704
494,0.0678
495,0.0669
496,0.0616
497,0.0653
498,0.0613
499,0.0629
500,0.0612
501,0.0604
502,0.0606
503,0.0592
504,0.0598
505,0.0627
506,0.0649
507,0.0650
508,0.0656
509,0.0659
510,0.0682
511,0.0693
512,0.0680
513,0.0713
514,0.0706
515,0.0707
516,0.0718
517,0.0715
518,0.0709
519,0.0730
520,0.0720
521,0.0750
522,0.0765
523,0.0768
524,0.0751
525,0.0770
526,0.0759
527,0.0769
528,0.0787
529,0.0798
530,0.0805
531,0.0811
532,0.0830
533,0.0832
534,0.0850
535,0.0849
536,0.0874
537,0.0899
538,0.0893
539,0.0914
540,0.0916
541,0.0916
542,0.0926
543,0.0943
544,0.0981
545,0.0989
546,0.0989
547,0.1009
548,0.0984
549,0.0992
550,0.1003
551,0.1007
552,0.1007
553,0.1002
554,0.0989
555,0.0967
556,0.0985
557,0.0974
558,0.0972
559,0.0951
560,0.0947
561,0.0912
562,0.0937
563,0.0906
564,0.0905
565,0.0891
566,0.0891
567,0.0872
568,0.0864
569,0.0878
570,0.0858
571,0.0841
572,0.0860
573,0.0840
574,0.0848
575,0.0848
576,0.0873
577,0.0844
578,0.0866
579,0.0852
580,0.0864
581,0.0884
582,0.0889
583,0.0868
584,0.0905
585,0.0912
586,0.0904
587,0.0914
588,0.0927
589,0.0955
590,0.0954
591,0.0973
592,0.0985
593,0.0990
594,0.1017
595,0.1028
596,0.1047
597,0.1080
598,0.1089
599,0.1110
600,0.1129
601,0.1158
602,0.1208
603,0.1187
604,0.1200
605,0.1218
606,0.1235
607,0.1263
608,0.1272
609,0.1274
610,0.1274
611,0.1275
612,0.1302
613,0.1316
614,0.1316
615,0.1344
616,0.1353
617,0.1331
618,0.1329
619,0.1322
620,0.1330
621,0.1328
622,0.1345
623,0.1365
624,0.1330
625,0.1345
626,0.1337
627,0.1360
628,0.1342
629,0.1370
630,0.1349
631,0.1355
632,0.1356
633,0.1365
634,0.1364
635,0.1352
636,0.1365
637,0.1374
638,0.1408
639,0.1399
640,0.1405
641,0.1415
642,0.1411
643,0.1427
644,0.1431
645,0.1426
646,0.1424
647,0.1455
648,0.1445
649,0.1455
650,0.1443
651,0.1461
652,0.1472
653,0.1453
654,0.1475
655,0.1463
656,0.1466
657,0.1452
658,0.1460
659,0.1451
660,0.1452
661,0.1448
662,0.1450
663,0.1430
664,0.1398
665,0.1424
666,0.1409
667,0.1368
668,0.1388
669,0.1375
670,0.1329
671,0.1315
672,0.1317
673,0.1294
674,0.1291
675,0.1265
676,0.1254
677,0.1231
678,0.1223
679,0.1196
680,0.1185
681,0.1189
682,0.1198
683,0.1158
684,0.1152
685,0.1149
686,0.1132
687,0.1129
688,0.1126
689,0.1121
690,0.1119
691,0.1114
692,0.1111
693,0.1114
694,0.1115
695,0.1121
696,0.1100
697,0.1143
698,0.1120
699,0.1105
700,0.1105
701,0.1145
702,0.1145
703,0.1144
704,0.1127
705,0.1138
706,0.1144
707,0.1150
708,0.1149
709,0.1157
710,0.1180
711,0.1160
712,0.1178
713,0.1184
714,0.1178
715,0.1180
716,0.1195
717,0.1227
718,0.1193
719,0.1200
720,0.1189
721,0.1203
722,0.1198
723,0.1192
724,0.1212
725,0.1220
726,0.1218
727,0.1203
728,0.1239
729,0.1255
730,0.1249
731,0.1256
732,0.1256
733,0.1288
734,0.1277
735,0.1297
736,0.1322
737,0.1292
738,0.1312
739,0.1307
740,0.1304
741,0.1295
742,0.1315
743,0.1284
744,0.1289
745,0.1283
746,0.1300
747,0.1254
748,0.1267
749,0.1277
750,0.1242
751,0.1247
752,0.1220
753,0.1226
754,0.1215
755,0.1225
756,0.1207
757,0.1199
758,0.1189
759,0.1165
760,0.1160
761,0.1158
762,0.1149
763,0.1125
764,0.1134
765,0.1124
766,0.1106
767,0.1110
768,0.1093
769,0.1079
770,0.1075
771,0.1064
772,0.1042
773,0.1033
774,0.1036
775,0.1019
776,0.1029
777,0.1005
778,0.0979
779,0.0999
780,0.0955
781,0.0938
782,0.0955
783,0.0929
784,0.0925
785,0.0904
786,0.0895
787,0.0867
788,0.0860
789,0.0880
790,0.0869
791,0.0854
792,0.0845
793,0.0848
794,0.0835
795,0.0822
796,0.0833
797,0.0837
798,0.0834
799,0.0823
800,0.0832
801,0.0827
802,0.0840
803,0.0816
804,0.0789
805,0.0805
806,0.0798
807,0.0781
808,0.0771
809,0.0766
810,0.0758
811,0.0763
812,0.0745
813,0.0730
814,0.0716
815,0.0712
816,0.0703
817,0.0695
818,0.0684
819,0.0665
820,0.0650
821,0.0649
822,0.0644
823,0.0617
824,0.0615
825,0.0610
826,0.0596
827,0.0586
828,0.0579
829,0.0579
830,0.0554
831,0.0548
832,0.0553
833,0.0532
834,0.0526
835,0.0507
836,0.0507
837,0.0501
838,0.0500
839,0.0496
840,0.0475
841,0.0474
842,0.0467
843,0.0464
844,0.0454
845,0.0436
846,0.0433
847,0.0430
848,0.0424
849,0.0427
850,0.0408
851,0.0417
852,0.0428
853,0.0413
854,0.0396
855,0.0402
856,0.0404
857,0.0402
858,0.0390
859,0.0388
860,0.0385
861,0.0383
862,0.0375
863,0.0378
864,0.0380
865,0.0371
866,0.0377
867,0.0370
868,0.0361
869,0.0357
870,0.0346
871,0.0353
872,0.0343
873,0.0340
874,0.0333
875,0.0338
876,0.0334
877,0.0341
878,0.0333
879,0.0346
880,0.0350
881,0.0359
882,0.0361
883,0.0385
884,0.0361
885,0.0377
886,0.0394
887,0.0401
888,0.0407
889,0.0421
890,0.0421
891,0.0428
892,0.0435
893,0.0434
894,0.0436
895,0.0442
896,0.0444
897,0.0448
898,0.0459
899,0.0463
900,0.0459
901,0.0462
902,0.0473
903,0.0463
904,0.0471
905,0.0467
906,0.0470
907,0.0474
908,0.0457
909,0.0461
910,0.0478
911,0.0472
912,0.0452
913,0.0455
914,0.0456
915,0.0447
916,0.0444
917,0.0451
918,0.0444
919,0.0435
920,0.0419
921,0.0448
922,0.0439
923,0.0451
924,0.0434
925,0.0425
926,0.0425
927,0.0418
928,0.0415
929,0.0394
930,0.0389
931,0.0375
932,0.0341
933,0.0339
934,0.0311
935,0.0284
936,0.0250
937,0.0219
938,0.0178
939,0.0147
940,0.0143
941,0.0119
942,0.0119

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,0.7750
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.3232
411,0.2602
412,0.3985
413,0.3256
414,0.3414
415,0.3344
416,0.3811
417,0.4070
418,0.3888
419,0.4974
420,0.5324
421,0.4858
422,0.4913
423,0.5121
424,0.4877
425,0.5331
426,0.6388
427,0.6028
428,0.5535
429,0.4889
430,0.6207
431,0.5575
432,0.5015
433,0.5280
434,0.5810
435,0.5820
436,0.5475
437,0.5775
438,0.5479
439,0.5236
440,0.5446
441,0.5240
442,0.5040
443,0.5187
444,0.4787
445,0.4688
446,0.4397
447,0.3927
448,0.3756
449,0.3351
450,0.2888
451,0.2667
452,0.2561
453,0.2199
454,0.2067
455,0.2078
456,0.1955
457,0.1647
458,0.1606
459,0.1581
460,0.1559
461,0.1467
462,0.1452
463,0.1424
464,0.1454
465,0.1280
466,0.1422
467,0.1374
468,0.1294
469,0.1335
470,0.1263
471,0.1242
472,0.1148
473,0.1164
474,0.1123
475,0.1079
476,0.1045
477,0.1033
478,0.0945
479,0.1007
480,0.0979
481,0.0985
482,0.0959
483,0.0993
484,0.1014
485,0.1027
486,0.1016
487,0.1011
488,0.1002
489,0.1037
490,0.1059
491,0.1032
492,0.1008
493,0.1028
494,0.1010
495,0.0988
496,0.0920
497,0.0980
498,0.0939
499,0.0981
500,0.0935
501,0.0897
502,0.0901
503,0.0860
504,0.0878
505,0.0863
506,0.0864
507,0.0862
508,0.0851
509,0.0844
510,0.0834
511,0.0832
512,0.0833
513,0.0824
514,0.0803
515,0.0787
516,0.0740
517,0.0718
518,0.0706
519,0.0696
520,0.0691
521,0.0688
522,0.0696
523,0.0667
524,0.0673
525,0.0663
526,0.0678
527,0.0649
528,0.0655
529,0.0661
530,0.0651
531,0.0659
532,0.0655
533,0.0676
534,0.0678
535,0.0681
536,0.0708
537,0.0699
538,0.0715
539,0.0741
540,0.0736
541,0.0747
542,0.0750
543,0.0758
544,0.0799
545,0.0802
546,0.0817
547,0.0845
548,0.0837
549,0.0859
550,0.0853
551,0.0863
552,0.0888
553,0.0896
554,0.0900
555,0.0894
556,0.0904
557,0.0910
558,0.0933
559,0.0944
560,0.0941
561,0.0946
562,0.0927
563,0.0937
564,0.0939
565,0.0939
566,0.0948
567,0.0956
568,0.0941
569,0.0951
570,0.0942
571,0.0942
572,0.0953
573,0.0946
574,0.0954
575,0.0964
576,0.0970
577,0.0965
578,0.0986
579,0.0961
580,0.0980
581,0.0998
582,0.0995
583,0.1008
584,0.1034
585,0.1024
586,0.0996
587,0.1004
588,0.1048
589,0.1075
590,0.1065
591,0.1082
592,0.1082
593,0.1085
594,0.1117
595,0.1134
596,0.1154
597,0.1181
598,0.1177
599,0.1200
600,0.1213
601,0.1236
602,0.1239
603,0.1248
604,0.1238
605,0.1240
606,0.1263
607,0.1285
608,0.1285
609,0.1257
610,0.1281
611,0.1263
612,0.1279
613,0.1253
614,0.1260
615,0.1262
616,0.1250
617,0.1233
618,0.1223
619,0.1205
620,0.1186
621,0.1211
622,0.1191
623,0.1184
624,0.1178
625,0.1198
626,0.1177
627,0.1176
628,0.1163
629,0.1183
630,0.1140
631,0.1154
632,0.1163
633,0.1160
634,0.1173
635,0.1178
636,0.1177
637,0.1165
638,0.1174
639,0.1182
640,0.1188
641,0.1194
642,0.1195
643,0.1206
644,0.1210
645,0.1221
646,0.1228
647,0.1240
648,0.1225
649,0.1245
650,0.1284
651,0.1281
652,0.1256
653,0.1291
654,0.1284
655,0.1300
656,0.1279
657,0.1319
658,0.1317
659,0.1327
660,0.1330
661,0.1348
662,0.1343
663,0.1350
664,0.1326
665,0.1366
666,0.1366
667,0.1364
668,0.1375
669,0.1393
670,0.1370
671,0.1372
672,0.1360
673,0.1374
674,0.1388
675,0.1385
676,0.1384
677,0.1376
678,0.1366
679,0.1390
680,0.1375
681,0.1396
682,0.1376
683,0.1384
684,0.1389
685,0.1386
686,0.1396
687,0.1405
688,0.1385
689,0.1395
690,0.1396
691,0.1413
692,0.1417
693,0.1386
694,0.1413
695,0.1395
696,0.1381
697,0.1390
698,0.1413
699,0.1404
700,0.1395
701,0.1416
702,0.1424
703,0.1427
704,0.1386
705,0.1402
706,0.1413
707,0.1408
708,0.1421
709,0.1385
710,0.1417
711,0.1398
712,0.1397
713,0.1393
714,0.1393
715,0.1378
716,0.1401
717,0.1391
718,0.1370
719,0.1344
720,0.1317
721,0.1321
722,0.1301
723,0.1307
724,0.1296
725,0.1285
726,0.1281
727,0.1265
728,0.1307
729,0.1285
730,0.1266
731,0.1274
732,0.1243
733,0.1258
734,0.1267
735,0.1242
736,0.1242
737,0.1210
738,0.1225
739,0.1204
740,0.1180
741,0.1170
742,0.1176
743,0.1156
744,0.1118
745,0.1122
746,0.1105
747,0.1082
748,0.1072
749,0.1040
750,0.1035
751,0.1013
752,0.0997
753,0.0971
754,0.0967
755,0.0948
756,0.0945
757,0.0910
758,0.0894
759,0.0873
760,0.0867
761,0.0852
762,0.0839
763,0.0816
764,0.0817
765,0.0793
766,0.0770
767,0.0782
768,0.0768
769,0.0741
770,0.0736
771,0.0721
772,0.0708
773,0.0699
774,0.0686
775,0.0683
776,0.0682
777,0.0673
778,0.0672
779,0.0651
780,0.0642
781,0.0626
782,0.0633
783,0.0615
784,0.0610
785,0.0601
786,0.0601
787,0.0576
788,0.0574
789,0.0581
790,0.0576
791,0.0566
792,0.0569
793,0.0557
794,0.0594
795,0.0574
796,0.0597
797,0.0587
798,0.0599
799,0.0588
800,0.0593
801,0.0607
802,0.0593
803,0.0600
804,0.0600
805,0.0600
806,0.0617
807,0.0614
808,0.0596
809,0.0599
810,0.0581
811,0.0605
812,0.0607
813,0.0590
814,0.0594
815,0.0607
816,0.0587
817,0.0593
818,0.0604
819,0.0588
820,0.0577
821,0.0595
822,0.0588
823,0.0600
824,0.0605
825,0.0587
826,0.0592
827,0.0579
828,0.0595
829,0.0591
830,0.0582
831,0.0589
832,0.0608
833,0.0594
834,0.0594
835,0.0598
836,0.0595
837,0.0605
838,0.0604
839,0.0604
840,0.0594
841,0.0618
842,0.0599
843,0.0601
844,0.0598
845,0.0594
846,0.0595
847,0.0598
848,0.0583
849,0.0585
850,0.0594
851,0.0598
852,0.0610
853,0.0608
854,0.0603
855,0.0596
856,0.0621
857,0.0603
858,0.0603
859,0.0605
860,0.0595
861,0.0607
862,0.0598
863,0.0578
864,0.0589
865,0.0586
866,0.0579
867,0.0575
868,0.0584
869,0.0575
870,0.0559
871,0.0559
872,0.0550
873,0.0542
874,0.0549
875,0.0530
876,0.0532
877,0.0545
878,0.0525
879,0.0544
880,0.0541
881,0.0554
882,0.0541
883,0.0582
884,0.0574
885,0.0567
886,0.0584
887,0.0598
888,0.0603
889,0.0604
890,0.0626
891,0.0649
892,0.0640
893,0.0644
894,0.0622
895,0.0641
896,0.0616
897,0.0638
898,0.0624
899,0.0638
900,0.0631
901,0.0634
902,0.0634
903,0.0621
904,0.0612
905,0.0607
906,0.0615
907,0.0600
908,0.0589
909,0.0575
910,0.0572
911,0.0577
912,0.0560
913,0.0564
914,0.0540
915,0.0539
916,0.0529
917,0.0519
918,0.0519
919,0.0499
920,0.0485
921,0.0484
922,0.0495
923,0.0492
924,0.0471
925,0.0468
926,0.0445
927,0.0451
928,0.0421
929,0.0401
930,0.0409
931,0.0380
932,0.0337
933,0.0331
934,0.0315
935,0.0276
936,0.0243
937,0.0207
938,0.0168
939,0.0144
940,0.0133
941,0.0123
942,0.0100

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.9400
407,0.0000
408,0.0000
409,1.0000
410,0.7224
411,0.6962
412,0.6682
413,0.6326
414,0.7321
415,0.7086
416,0.7685
417,0.7253
418,0.7163
419,0.7244
420,0.7202
421,0.6192
422,0.5882
423,0.6047
424,0.5688
425,0.5375
426,0.6172
427,0.5398
428,0.5135
429,0.4275
430,0.4390
431,0.4471
432,0.4002
433,0.3994
434,0.4180
435,0.3972
436,0.3884
437,0.3986
438,0.4021
439,0.3306
440,0.3754
441,0.3533
442,0.3586
443,0.3301
444,0.3069
445,0.3226
446,0.3134
447,0.3046
448,0.2758
449,0.2641
450,0.2279
451,0.2379
452,0.2117
453,0.1924
454,0.1847
455,0.1859
456,0.1783
457,0.1648
458,0.1621
459,0.1636
460,0.1696
461,0.1638
462,0.1768
463,0.1649
464,0.1700
465,0.1590
466,0.1828
467,0.1711
468,0.1704
469,0.1712
470,0.1689
471,0.1712
472,0.1630
473,0.1606
474,0.1541
475,0.1472
476,0.1369
477,0.1339
478,0.1280
479,0.1230
480,0.1339
481,0.1201
482,0.1176
483,0.1144
484,0.1124
485,0.1156
486,0.1141
487,0.1139
488,0.1099
489,0.1117
490,0.1060
491,0.1037
492,0.1007
493,0.1018
494,0.0983
495,0.0945
496,0.0896
497,0.0887
498,0.0861
499,0.0869
500,0.0806
501,0.0770
502,0.0784
503,0.0723
504,0.0733
505,0.0735
506,0.0721
507,0.0720
508,0.0718
509,0.0694
510,0.0708
511,0.0718
512,0.0683
513,0.0690
514,0.0682
515,0.0681
516,0.0681
517,0.0653
518,0.0655
519,0.0660
520,0.0653
521,0.0680
522,0.0678
523,0.0682
524,0.0688
525,0.0685
526,0.0706
527,0.0703
528,0.0696
529,0.0717
530,0.0720
531,0.0719
532,0.0732
533,0.0744
534,0.0749
535,0.0744
536,0.0785
537,0.0785
538,0.0798
539,0.0821
540,0.0817
541,0.0837
542,0.0834
543,0.0851
544,0.0886
545,0.0888
546,0.0895
547,0.0920
548,0.0933
549,0.0920
550,0.0913
551,0.0935
552,0.0951
553,0.0963
554,0.0957
555,0.0928
556,0.0943
557,0.0948
558,0.0948
559,0.0949
560,0.0922
561,0.0915
562,0.0910
563,0.0904
564,0.0908
565,0.0892
566,0.0875
567,0.0893
568,0.0861
569,0.0878
570,0.0866
571,0.0823
572,0.0844
573,0.0820
574,0.0817
575,0.0834
576,0.0837
577,0.0830
578,0.0844
579,0.0831
580,0.0846
581,0.0838
582,0.0838
583,0.0836
584,0.0863
585,0.0856
586,0.0862
587,0.0867
588,0.0875
589,0.0877
590,0.0886
591,0.0893
592,0.0931
593,0.0931
594,0.0945
595,0.0981
596,0.0993
597,0.1015
598,0.1011
599,0.1047
600,0.1047
601,0.1064
602,0.1052
603,0.1072
604,0.1082
605,0.1089
606,0.1108
607,0.1116
608,0.1145
609,0.1144
610,0.1139
611,0.1131
612,0.1160
613,0.1152
614,0.1175
615,0.1170
616,0.1170
617,0.1182
618,0.1168
619,0.1187
620,0.1216
621,0.1212
622,0.1215
623,0.1234
624,0.1234
625,0.1283
626,0.1258
627,0.1287
628,0.1268
629,0.1319
630,0.1316
631,0.1319
632,0.1352
633,0.1346
634,0.1355
635,0.1381
636,0.1386
637,0.1386
638,0.1405
639,0.1446
640,0.1450
641,0.1472
642,0.1486
643,0.1493
644,0.1487
645,0.1514
646,0.1518
647,0.1545
648,0.1549
649,0.1563
650,0.1581
651,0.1590
652,0.1571
653,0.1622
654,0.1593
655,0.1607
656,0.1619
657,0.1666
658,0.1648
659,0.1662
660,0.1672
661,0.1665
662,0.1680
663,0.1667
664,0.1648
665,0.1682
666,0.1683
667,0.1666
668,0.1674
669,0.1662
670,0.1633
671,0.1620
672,0.1602
673,0.1606
674,0.1587
675,0.1606
676,0.1563
677,0.1551
678,0.1526
679,0.1503
680,0.1475
681,0.1473
682,0.1475
683,0.1440
684,0.1429
685,0.1410
686,0.1390
687,0.1364
688,0.1363
689,0.1333
690,0.1311
691,0.1307
692,0.1286
693,0.1262
694,0.1278
695,0.1227
696,0.1212
697,0.1178
698,0.1195
699,0.1184
700,0.1169
701,0.1164
702,0.1149
703,0.1135
704,0.1139
705,0.1123
706,0.1089
707,0.1065
708,0.1065
709,0.1038
710,0.1040
711,0.1038
712,0.1016
713,0.1004
714,0.0996
715,0.0983
716,0.0970
717,0.0953
718,0.0934
719,0.0931
720,0.0903
721,0.0908
722,0.0882
723,0.0857
724,0.0829
725,0.0856
726,0.0840
727,0.0845
728,0.0836
729,0.0829
730,0.0830
731,0.0807
732,0.0801
733,0.0810
734,0.0785
735,0.0778
736,0.0780
737,0.0759
738,0.0765
739,0.0757
740,0.0733
741,0.0743
742,0.0727
743,0.0728
744,0.0714
745,0.0717
746,0.0713
747,0.0687
748,0.0697
749,0.0665
750,0.0680
751,0.0668
752,0.0653
753,0.0643
754,0.0652
755,0.0648
756,0.0647
757,0.0630
758,0.0633
759,0.0630
760,0.0641
761,0.0633
762,0.0622
763,0.0630
764,0.0619
765,0.0627
766,0.0624
767,0.0629
768,0.0632
769,0.0634
770,0.0642
771,0.0622
772,0.0631
773,0.0633
774,0.0636
775,0.0643
776,0.0645
777,0.0644
778,0.0663
779,0.0650
780,0.0664
781,0.0654
782,0.0681
783,0.0674
784,0.0661
785,0.0678
786,0.0701
787,0.0695
788,0.0687
789,0.0703
790,0.0728
791,0.0726
792,0.0722
793,0.0753
794,0.0773
795,0.0759
796,0.0785
797,0.0830
798,0.0831
799,0.0818
800,0.0850
801,0.0865
802,0.0865
803,0.0882
804,0.0878
805,0.0906
806,0.0914
807,0.0908
808,0.0916
809,0.0922
810,0.0923
811,0.0921
812,0.0941
813,0.0938
814,0.0961
815,0.0953
816,0.0936
817,0.0935
818,0.0945
819,0.0936
820,0.0953
821,0.0969
822,0.0954
823,0.0961
824,0.0956
825,0.0945
826,0.0957
827,0.0966
828,0.0956
829,0.0954
830,0.0947
831,0.0947
832,0.0940
833,0.0927
834,0.0920
835,0.0924
836,0.0942
837,0.0935
838,0.0923
839,0.0928
840,0.0917
841,0.0917
842,0.0884
843,0.0871
844,0.0875
845,0.0867
846,0.0866
847,0.0865
848,0.0845
849,0.0841
850,0.0834
851,0.0835
852,0.0826
853,0.0831
854,0.0811
855,0.0806
856,0.0807
857,0.0776
858,0.0774
859,0.0783
860,0.0749
861,0.0767
862,0.0748
863,0.0725
864,0.0720
865,0.0713
866,0.0707
867,0.0694
868,0.0672
869,0.0669
870,0.0649
871,0.0633
872,0.0618
873,0.0598
874,0.0588
875,0.0588
876,0.0574
877,0.0584
878,0.0562
879,0.0564
880,0.0572
881,0.0563
882,0.0570
883,0.0567
884,0.0563
885,0.0566
886,0.0564
887,0.0572
888,0.0576
889,0.0585
890,0.0588
891,0.0578
892,0.0582
893,0.0580
894,0.0573
895,0.0553
896,0.0557
897,0.0557
898,0.0535
899,0.0539
900,0.0531
901,0.0524
902,0.0521
903,0.0506
904,0.0504
905,0.0487
906,0.0481
907,0.0474
908,0.0453
909,0.0450
910,0.0449
911,0.0442
912,0.0418
913,0.0401
914,0.0405
915,0.0388
916,0.0395
917,0.0378
918,0.0357
919,0.0347
920,0.0344
921,0.0340
922,0.0346
923,0.0329
924,0.0311
925,0.0311
926,0.0301
927,0.0292
928,0.0277
929,0.0253
930,0.0259
931,0.0227
932,0.0216
933,0.0211
934,0.0197
935,0.0168
936,0.0137
937,0.0115
938,0.0098
939,0.0084
940,0.0080
941,0.0061
942,0.0058

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.1499
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.1601
407,0.0000
408,0.0000
409,1.0000
410,0.5934
411,0.4913
412,0.5907
413,0.4064
414,0.6012
415,0.4669
416,0.5262
417,0.4918
418,0.5296
419,0.5048
420,0.5310
421,0.5239
422,0.4765
423,0.5121
424,0.4498
425,0.4567
426,0.5020
427,0.4685
428,0.4682
429,0.3760
430,0.4901
431,0.4671
432,0.4114
433,0.4082
434,0.4243
435,0.4434
436,0.4038
437,0.4403
438,0.4203
439,0.4118
440,0.4184
441,0.4067
442,0.4047
443,0.4080
444,0.4106
445,0.4003
446,0.3564
447,0.3385
448,0.3303
449,0.3010
450,0.2992
451,0.2669
452,0.2454
453,0.2200
454,0.1929
455,0.1930
456,0.1913
457,0.1671
458,0.1793
459,0.1716
460,0.1716
461,0.1677
462,0.1663
463,0.1707
464,0.1599
465,0.1598
466,0.1693
467,0.1580
468,0.1506
469,0.1560
470,0.1481
471,0.1502
472,0.1356
473,0.1404
474,0.1303
475,0.1220
476,0.1155
477,0.1146
478,0.1121
479,0.1081
480,0.1108
481,0.1027
482,0.1040
483,0.1042
484,0.1017
485,0.1097
486,0.1065
487,0.1066
488,0.1096
489,0.1082
490,0.1080
491,0.1084
492,0.1020
493,0.1055
494,0.1047
495,0.1042
496,0.0976
497,0.1005
498,0.0972
499,0.0970
500,0.0930
501,0.0910
502,0.0912
503,0.0889
504,0.0897
505,0.0899
506,0.0905
507,0.0873
508,0.0893
509,0.0892
510,0.0885
511,0.0893
512,0.0877
513,0.0857
514,0.0840
515,0.0830
516,0.0804
517,0.0777
518,0.0769
519,0.0766
520,0.0756
521,0.0771
522,0.0752
523,0.0739
524,0.0724
525,0.0738
526,0.0728
527,0.0691
528,0.0690
529,0.0691
530,0.0701
531,0.0670
532,0.0675
533,0.0649
534,0.0660
535,0.0638
536,0.0659
537,0.0671
538,0.0640
539,0.0656
540,0.0646
541,0.0649
542,0.0640
543,0.0641
544,0.0661
545,0.0671
546,0.0660
547,0.0673
548,0.0665
549,0.0671
550,0.0664
551,0.0671
552,0.0674
553,0.0670
554,0.0688
555,0.0678
556,0.0659
557,0.0673
558,0.0671
559,0.0684
560,0.0655
561,0.0655
562,0.0659
563,0.0663
564,0.0662
565,0.0663
566,0.0640
567,0.0667
568,0.0673
569,0.0690
570,0.0692
571,0.0678
572,0.0712
573,0.0712
574,0.0731
575,0.0741
576,0.0761
577,0.0777
578,0.0801
579,0.0809
580,0.0816
581,0.0842
582,0.0886
583,0.0884
584,0.0914
585,0.0927
586,0.0960
587,0.0996
588,0.1029
589,0.1028
590,0.1069
591,0.1102
592,0.1138
593,0.1147
594,0.1189
595,0.1244
596,0.1260
597,0.1288
598,0.1301
599,0.1349
600,0.1379
601,0.1410
602,0.1436
603,0.1468
604,0.1476
605,0.1515
606,0.1522
607,0.1559
608,0.1558
609,0.1571
610,0.1585
611,0.1608
612,0.1602
613,0.1624
614,0.1619
615,0.1612
616,0.1634
617,0.1631
618,0.1617
619,0.1630
620,0.1632
621,0.1648
622,0.1635
623,0.1616
624,0.1640
625,0.1644
626,0.1626
627,0.1626
628,0.1625
629,0.1633
630,0.1597
631,0.1603
632,0.1618
633,0.1601
634,0.1588
635,0.1597
636,0.1577
637,0.1543
638,0.1551
639,0.1541
640,0.1568
641,0.1558
642,0.1538
643,0.1540
644,0.1525
645,0.1512
646,0.1510
647,0.1504
648,0.1501
649,0.1498
650,0.1485
651,0.1453
652,0.1438
653,0.1442
654,0.1427
655,0.1412
656,0.1438
657,0.1412
658,0.1376
659,0.1372
660,0.1356
661,0.1373
662,0.1327
663,0.1306
664,0.1269
665,0.1287
666,0.1272
667,0.1236
668,0.1241
669,0.1202
670,0.1181
671,0.1160
672,0.1134
673,0.1108
674,0.1095
675,0.1074
676,0.1025
677,0.0995
678,0.0981
679,0.0979
680,0.0925
681,0.0919
682,0.0916
683,0.0890
684,0.0870
685,0.0862
686,0.0833
687,0.0820
688,0.0816
689,0.0783
690,0.0760
691,0.0738
692,0.0745
693,0.0721
694,0.0707
695,0.0707
696,0.0685
697,0.0691
698,0.0680
699,0.0693
700,0.0675
701,0.0669
702,0.0674
703,0.0659
704,0.0641
705,0.0655
706,0.0654
707,0.0635
708,0.0649
709,0.0647
710,0.0655
711,0.0639
712,0.0638
713,0.0642
714,0.0651
715,0.0663
716,0.0650
717,0.0664
718,0.0653
719,0.0659
720,0.0640
721,0.0649
722,0.0637
723,0.0662
724,0.0665
725,0.0677
726,0.0677
727,0.0700
728,0.0703
729,0.0698
730,0.0708
731,0.0717
732,0.0740
733,0.0749
734,0.0750
735,0.0768
736,0.0771
737,0.0802
738,0.0798
739,0.0813
740,0.0788
741,0.0817
742,0.0837
743,0.0841
744,0.0824
745,0.0836
746,0.0861
747,0.0844
748,0.0892
749,0.0870
750,0.0891
751,0.0898
752,0.0902
753,0.0917
754,0.0918
755,0.0932
756,0.0940
757,0.0933
758,0.0961
759,0.0939
760,0.0970
761,0.0967
762,0.0975
763,0.1002
764,0.1006
765,0.1008
766,0.1003
767,0.1010
768,0.1025
769,0.1035
770,0.1031
771,0.1033
772,0.1038
773,0.1042
774,0.1055
775,0.1055
776,0.1084
777,0.1085
778,0.1066
779,0.1103
780,0.1098
781,0.1075
782,0.1078
783,0.1079
784,0.1097
785,0.1093
786,0.1112
787,0.1072
788,0.1092
789,0.1113
790,0.1134
791,0.1133
792,0.1132
793,0.1152
794,0.1164
795,0.1166
796,0.1195
797,0.1191
798,0.1183
799,0.1195
800,0.1218
801,0.1221
802,0.1248
803,0.1255
804,0.1243
805,0.1261
806,0.1258
807,0.1264
808,0.1263
809,0.1246
810,0.1237
811,0.1241
812,0.1216
813,0.1217
814,0.1205
815,0.1210
816,0.1198
817,0.1162
818,0.1150
819,0.1144
820,0.1142
821,0.1144
822,0.1134
823,0.1108
824,0.1097
825,0.1086
826,0.1096
827,0.1085
828,0.1065
829,0.1060
830,0.1038
831,0.1017
832,0.1022
833,0.0969
834,0.0973
835,0.0967
836,0.0963
837,0.0952
838,0.0923
839,0.0928
840,0.0882
841,0.0881
842,0.0867
843,0.0860
844,0.0837
845,0.0825
846,0.0793
847,0.0784
848,0.0763
849,0.0748
850,0.0751
851,0.0730
852,0.0725
853,0.0707
854,0.0695
855,0.0682
856,0.0679
857,0.0637
858,0.0633
859,0.0611
860,0.0613
861,0.0599
862,0.0574
863,0.0571
864,0.0547
865,0.0537
866,0.0522
867,0.0510
868,0.0492
869,0.0472
870,0.0468
871,0.0441
872,0.0433
873,0.0415
874,0.0411
875,0.0401
876,0.0382
877,0.0385
878,0.0370
879,0.0364
880,0.0382
881,0.0367
882,0.0349
883,0.0362
884,0.0345
885,0.0342
886,0.0350
887,0.0347
888,0.0343
889,0.0347
890,0.0346
891,0.0346
892,0.0332
893,0.0324
894,0.0321
895,0.0322
896,0.0307
897,0.0302
898,0.0287
899,0.0296
900,0.0286
901,0.0271
902,0.0278
903,0.0263
904,0.0254
905,0.0245
906,0.0253
907,0.0231
908,0.0217
909,0.0204
910,0.0217
911,0.0216
912,0.0196
913,0.0200
914,0.0186
915,0.0183
916,0.0189
917,0.0182
918,0.0167
919,0.0151
920,0.0154
921,0.0149
922,0.0147
923,0.0148
924,0.0142
925,0.0135
926,0.0126
927,0.0126
928,0.0121
929,0.0110
930,0.0120
931,0.0099
932,0.0097
933,0.0089
934,0.0082
935,0.0071
936,0.0061
937,0.0051
938,0.0040
939,0.0029
940,0.0031
941,0.0023
942,0.0014

View file

@ -1,543 +0,0 @@
400,1.0000
401,1.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.5646
411,0.5454
412,0.7139
413,0.6304
414,0.6864
415,0.6728
416,0.6585
417,0.6517
418,0.7270
419,0.6810
420,0.6869
421,0.6694
422,0.6566
423,0.5960
424,0.5775
425,0.5756
426,0.5866
427,0.5865
428,0.5824
429,0.3981
430,0.4834
431,0.4657
432,0.4276
433,0.3819
434,0.4061
435,0.4296
436,0.4264
437,0.3954
438,0.3794
439,0.3435
440,0.3752
441,0.3270
442,0.3367
443,0.3413
444,0.3267
445,0.3298
446,0.2735
447,0.2595
448,0.2585
449,0.2313
450,0.2165
451,0.2099
452,0.1852
453,0.1685
454,0.1502
455,0.1589
456,0.1556
457,0.1510
458,0.1547
459,0.1573
460,0.1531
461,0.1587
462,0.1604
463,0.1517
464,0.1622
465,0.1573
466,0.1750
467,0.1689
468,0.1710
469,0.1703
470,0.1698
471,0.1707
472,0.1588
473,0.1599
474,0.1561
475,0.1515
476,0.1396
477,0.1441
478,0.1404
479,0.1394
480,0.1465
481,0.1365
482,0.1368
483,0.1381
484,0.1353
485,0.1373
486,0.1380
487,0.1379
488,0.1362
489,0.1368
490,0.1352
491,0.1314
492,0.1261
493,0.1268
494,0.1231
495,0.1179
496,0.1113
497,0.1122
498,0.1054
499,0.1072
500,0.0983
501,0.0945
502,0.0946
503,0.0887
504,0.0888
505,0.0864
506,0.0858
507,0.0839
508,0.0823
509,0.0768
510,0.0779
511,0.0776
512,0.0740
513,0.0714
514,0.0692
515,0.0671
516,0.0637
517,0.0594
518,0.0589
519,0.0576
520,0.0540
521,0.0537
522,0.0531
523,0.0529
524,0.0494
525,0.0480
526,0.0485
527,0.0457
528,0.0446
529,0.0457
530,0.0438
531,0.0436
532,0.0432
533,0.0424
534,0.0438
535,0.0433
536,0.0425
537,0.0437
538,0.0441
539,0.0448
540,0.0471
541,0.0468
542,0.0468
543,0.0484
544,0.0523
545,0.0519
546,0.0536
547,0.0557
548,0.0567
549,0.0578
550,0.0591
551,0.0612
552,0.0651
553,0.0658
554,0.0667
555,0.0683
556,0.0695
557,0.0728
558,0.0731
559,0.0761
560,0.0781
561,0.0777
562,0.0807
563,0.0833
564,0.0852
565,0.0881
566,0.0885
567,0.0908
568,0.0917
569,0.0948
570,0.0959
571,0.0965
572,0.1021
573,0.1049
574,0.1061
575,0.1095
576,0.1123
577,0.1127
578,0.1172
579,0.1201
580,0.1223
581,0.1250
582,0.1280
583,0.1291
584,0.1342
585,0.1362
586,0.1362
587,0.1378
588,0.1424
589,0.1450
590,0.1483
591,0.1517
592,0.1520
593,0.1556
594,0.1581
595,0.1618
596,0.1644
597,0.1660
598,0.1664
599,0.1715
600,0.1734
601,0.1773
602,0.1742
603,0.1762
604,0.1773
605,0.1765
606,0.1768
607,0.1771
608,0.1779
609,0.1768
610,0.1750
611,0.1720
612,0.1719
613,0.1725
614,0.1703
615,0.1667
616,0.1664
617,0.1624
618,0.1604
619,0.1578
620,0.1552
621,0.1520
622,0.1520
623,0.1474
624,0.1437
625,0.1430
626,0.1397
627,0.1380
628,0.1330
629,0.1337
630,0.1283
631,0.1242
632,0.1250
633,0.1217
634,0.1189
635,0.1173
636,0.1142
637,0.1114
638,0.1103
639,0.1091
640,0.1055
641,0.1053
642,0.1036
643,0.0999
644,0.0994
645,0.0976
646,0.0934
647,0.0924
648,0.0915
649,0.0910
650,0.0875
651,0.0865
652,0.0836
653,0.0823
654,0.0819
655,0.0802
656,0.0804
657,0.0776
658,0.0758
659,0.0758
660,0.0734
661,0.0723
662,0.0724
663,0.0689
664,0.0665
665,0.0683
666,0.0667
667,0.0645
668,0.0654
669,0.0626
670,0.0594
671,0.0604
672,0.0599
673,0.0587
674,0.0578
675,0.0577
676,0.0563
677,0.0542
678,0.0554
679,0.0544
680,0.0545
681,0.0535
682,0.0547
683,0.0527
684,0.0536
685,0.0533
686,0.0551
687,0.0546
688,0.0559
689,0.0565
690,0.0562
691,0.0568
692,0.0577
693,0.0591
694,0.0595
695,0.0602
696,0.0615
697,0.0644
698,0.0645
699,0.0669
700,0.0666
701,0.0688
702,0.0701
703,0.0710
704,0.0726
705,0.0753
706,0.0757
707,0.0780
708,0.0792
709,0.0816
710,0.0858
711,0.0839
712,0.0874
713,0.0893
714,0.0906
715,0.0904
716,0.0937
717,0.0971
718,0.0966
719,0.0993
720,0.1003
721,0.1016
722,0.1022
723,0.1039
724,0.1061
725,0.1074
726,0.1108
727,0.1109
728,0.1138
729,0.1171
730,0.1162
731,0.1204
732,0.1198
733,0.1257
734,0.1260
735,0.1268
736,0.1296
737,0.1314
738,0.1310
739,0.1348
740,0.1329
741,0.1334
742,0.1369
743,0.1359
744,0.1372
745,0.1386
746,0.1399
747,0.1396
748,0.1402
749,0.1404
750,0.1413
751,0.1411
752,0.1410
753,0.1415
754,0.1414
755,0.1419
756,0.1417
757,0.1429
758,0.1414
759,0.1412
760,0.1415
761,0.1420
762,0.1397
763,0.1409
764,0.1414
765,0.1385
766,0.1413
767,0.1397
768,0.1402
769,0.1391
770,0.1381
771,0.1367
772,0.1369
773,0.1371
774,0.1358
775,0.1344
776,0.1353
777,0.1348
778,0.1334
779,0.1332
780,0.1316
781,0.1286
782,0.1307
783,0.1286
784,0.1278
785,0.1265
786,0.1263
787,0.1231
788,0.1224
789,0.1232
790,0.1253
791,0.1237
792,0.1219
793,0.1221
794,0.1246
795,0.1218
796,0.1226
797,0.1210
798,0.1219
799,0.1200
800,0.1212
801,0.1224
802,0.1215
803,0.1210
804,0.1178
805,0.1203
806,0.1180
807,0.1162
808,0.1125
809,0.1133
810,0.1117
811,0.1108
812,0.1075
813,0.1064
814,0.1051
815,0.1052
816,0.1019
817,0.1002
818,0.0982
819,0.0957
820,0.0942
821,0.0930
822,0.0899
823,0.0903
824,0.0876
825,0.0848
826,0.0840
827,0.0824
828,0.0804
829,0.0800
830,0.0777
831,0.0753
832,0.0742
833,0.0694
834,0.0683
835,0.0679
836,0.0659
837,0.0659
838,0.0628
839,0.0622
840,0.0582
841,0.0589
842,0.0566
843,0.0538
844,0.0540
845,0.0519
846,0.0503
847,0.0489
848,0.0460
849,0.0453
850,0.0447
851,0.0435
852,0.0413
853,0.0395
854,0.0394
855,0.0380
856,0.0382
857,0.0351
858,0.0352
859,0.0337
860,0.0324
861,0.0322
862,0.0314
863,0.0295
864,0.0279
865,0.0281
866,0.0263
867,0.0242
868,0.0252
869,0.0234
870,0.0224
871,0.0209
872,0.0201
873,0.0191
874,0.0186
875,0.0183
876,0.0170
877,0.0178
878,0.0158
879,0.0166
880,0.0159
881,0.0157
882,0.0144
883,0.0152
884,0.0139
885,0.0143
886,0.0140
887,0.0136
888,0.0142
889,0.0143
890,0.0145
891,0.0138
892,0.0129
893,0.0128
894,0.0139
895,0.0128
896,0.0124
897,0.0111
898,0.0108
899,0.0117
900,0.0110
901,0.0114
902,0.0112
903,0.0107
904,0.0116
905,0.0107
906,0.0106
907,0.0104
908,0.0104
909,0.0095
910,0.0100
911,0.0094
912,0.0086
913,0.0097
914,0.0087
915,0.0091
916,0.0088
917,0.0083
918,0.0091
919,0.0078
920,0.0084
921,0.0088
922,0.0084
923,0.0094
924,0.0091
925,0.0086
926,0.0080
927,0.0082
928,0.0093
929,0.0080
930,0.0085
931,0.0085
932,0.0073
933,0.0073
934,0.0079
935,0.0065
936,0.0051
937,0.0056
938,0.0042
939,0.0028
940,0.0034
941,0.0026
942,0.0021

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.5601
407,0.0000
408,0.0000
409,1.0000
410,0.8849
411,0.8369
412,0.8362
413,0.7776
414,0.8243
415,0.7260
416,0.9043
417,0.6981
418,0.7046
419,0.6644
420,0.6795
421,0.6947
422,0.5247
423,0.5120
424,0.5051
425,0.4132
426,0.4378
427,0.4357
428,0.4126
429,0.3216
430,0.3194
431,0.2601
432,0.2704
433,0.2224
434,0.2315
435,0.2557
436,0.2213
437,0.2118
438,0.2060
439,0.1915
440,0.2125
441,0.1930
442,0.2054
443,0.1974
444,0.1839
445,0.2078
446,0.1998
447,0.1806
448,0.1914
449,0.1984
450,0.1832
451,0.1750
452,0.1745
453,0.1692
454,0.1667
455,0.1844
456,0.1791
457,0.1786
458,0.1874
459,0.1917
460,0.1984
461,0.2059
462,0.2146
463,0.2267
464,0.2251
465,0.2262
466,0.2445
467,0.2411
468,0.2426
469,0.2432
470,0.2338
471,0.2488
472,0.2184
473,0.2314
474,0.2185
475,0.2066
476,0.2049
477,0.1922
478,0.1881
479,0.1837
480,0.1863
481,0.1769
482,0.1757
483,0.1683
484,0.1725
485,0.1656
486,0.1600
487,0.1583
488,0.1505
489,0.1493
490,0.1427
491,0.1363
492,0.1298
493,0.1296
494,0.1204
495,0.1106
496,0.0995
497,0.1015
498,0.0916
499,0.0887
500,0.0847
501,0.0793
502,0.0729
503,0.0683
504,0.0656
505,0.0631
506,0.0603
507,0.0550
508,0.0540
509,0.0508
510,0.0493
511,0.0460
512,0.0446
513,0.0421
514,0.0389
515,0.0357
516,0.0340
517,0.0316
518,0.0293
519,0.0274
520,0.0265
521,0.0266
522,0.0263
523,0.0244
524,0.0242
525,0.0228
526,0.0254
527,0.0243
528,0.0236
529,0.0255
530,0.0250
531,0.0263
532,0.0261
533,0.0284
534,0.0302
535,0.0315
536,0.0336
537,0.0359
538,0.0375
539,0.0419
540,0.0441
541,0.0461
542,0.0486
543,0.0516
544,0.0578
545,0.0617
546,0.0634
547,0.0692
548,0.0720
549,0.0743
550,0.0771
551,0.0819
552,0.0857
553,0.0900
554,0.0939
555,0.0978
556,0.1008
557,0.1062
558,0.1074
559,0.1121
560,0.1161
561,0.1164
562,0.1197
563,0.1226
564,0.1250
565,0.1275
566,0.1284
567,0.1326
568,0.1348
569,0.1370
570,0.1416
571,0.1396
572,0.1447
573,0.1453
574,0.1470
575,0.1508
576,0.1503
577,0.1516
578,0.1566
579,0.1554
580,0.1611
581,0.1618
582,0.1608
583,0.1606
584,0.1661
585,0.1645
586,0.1655
587,0.1650
588,0.1700
589,0.1707
590,0.1689
591,0.1715
592,0.1720
593,0.1731
594,0.1724
595,0.1742
596,0.1741
597,0.1754
598,0.1747
599,0.1759
600,0.1748
601,0.1795
602,0.1735
603,0.1747
604,0.1712
605,0.1674
606,0.1659
607,0.1657
608,0.1593
609,0.1552
610,0.1543
611,0.1492
612,0.1471
613,0.1440
614,0.1386
615,0.1340
616,0.1316
617,0.1262
618,0.1215
619,0.1190
620,0.1132
621,0.1103
622,0.1080
623,0.1017
624,0.0974
625,0.0958
626,0.0909
627,0.0894
628,0.0843
629,0.0801
630,0.0772
631,0.0726
632,0.0703
633,0.0680
634,0.0654
635,0.0608
636,0.0605
637,0.0561
638,0.0529
639,0.0520
640,0.0501
641,0.0486
642,0.0452
643,0.0450
644,0.0422
645,0.0396
646,0.0388
647,0.0375
648,0.0372
649,0.0358
650,0.0333
651,0.0331
652,0.0322
653,0.0298
654,0.0316
655,0.0302
656,0.0310
657,0.0297
658,0.0291
659,0.0298
660,0.0313
661,0.0297
662,0.0293
663,0.0298
664,0.0311
665,0.0327
666,0.0331
667,0.0334
668,0.0352
669,0.0349
670,0.0351
671,0.0381
672,0.0376
673,0.0412
674,0.0418
675,0.0442
676,0.0456
677,0.0464
678,0.0484
679,0.0501
680,0.0507
681,0.0544
682,0.0559
683,0.0575
684,0.0599
685,0.0632
686,0.0664
687,0.0683
688,0.0709
689,0.0724
690,0.0750
691,0.0784
692,0.0821
693,0.0837
694,0.0878
695,0.0888
696,0.0906
697,0.0958
698,0.0976
699,0.0989
700,0.1017
701,0.1064
702,0.1117
703,0.1130
704,0.1146
705,0.1187
706,0.1198
707,0.1228
708,0.1249
709,0.1297
710,0.1345
711,0.1340
712,0.1389
713,0.1412
714,0.1428
715,0.1448
716,0.1468
717,0.1505
718,0.1488
719,0.1515
720,0.1539
721,0.1549
722,0.1533
723,0.1564
724,0.1569
725,0.1616
726,0.1637
727,0.1656
728,0.1681
729,0.1713
730,0.1689
731,0.1729
732,0.1758
733,0.1773
734,0.1780
735,0.1782
736,0.1823
737,0.1799
738,0.1820
739,0.1814
740,0.1781
741,0.1808
742,0.1829
743,0.1815
744,0.1803
745,0.1803
746,0.1786
747,0.1797
748,0.1796
749,0.1752
750,0.1760
751,0.1751
752,0.1758
753,0.1721
754,0.1730
755,0.1702
756,0.1702
757,0.1680
758,0.1663
759,0.1635
760,0.1607
761,0.1605
762,0.1582
763,0.1593
764,0.1556
765,0.1551
766,0.1538
767,0.1510
768,0.1525
769,0.1487
770,0.1483
771,0.1456
772,0.1411
773,0.1407
774,0.1387
775,0.1380
776,0.1381
777,0.1348
778,0.1301
779,0.1298
780,0.1283
781,0.1243
782,0.1237
783,0.1208
784,0.1202
785,0.1192
786,0.1184
787,0.1134
788,0.1116
789,0.1103
790,0.1103
791,0.1093
792,0.1075
793,0.1044
794,0.1037
795,0.1019
796,0.1017
797,0.1005
798,0.1011
799,0.0975
800,0.0979
801,0.0973
802,0.0948
803,0.0934
804,0.0922
805,0.0900
806,0.0900
807,0.0872
808,0.0851
809,0.0831
810,0.0811
811,0.0788
812,0.0755
813,0.0735
814,0.0719
815,0.0693
816,0.0684
817,0.0677
818,0.0635
819,0.0613
820,0.0596
821,0.0591
822,0.0567
823,0.0557
824,0.0537
825,0.0516
826,0.0494
827,0.0488
828,0.0464
829,0.0445
830,0.0430
831,0.0408
832,0.0406
833,0.0368
834,0.0359
835,0.0349
836,0.0332
837,0.0330
838,0.0318
839,0.0307
840,0.0273
841,0.0275
842,0.0254
843,0.0248
844,0.0237
845,0.0224
846,0.0206
847,0.0199
848,0.0194
849,0.0176
850,0.0168
851,0.0155
852,0.0161
853,0.0149
854,0.0143
855,0.0134
856,0.0141
857,0.0118
858,0.0112
859,0.0106
860,0.0092
861,0.0098
862,0.0090
863,0.0083
864,0.0082
865,0.0078
866,0.0067
867,0.0066
868,0.0059
869,0.0053
870,0.0047
871,0.0042
872,0.0037
873,0.0047
874,0.0053
875,0.0040
876,0.0034
877,0.0040
878,0.0032
879,0.0032
880,0.0039
881,0.0042
882,0.0037
883,0.0047
884,0.0039
885,0.0038
886,0.0045
887,0.0046
888,0.0053
889,0.0047
890,0.0054
891,0.0050
892,0.0053
893,0.0055
894,0.0059
895,0.0066
896,0.0055
897,0.0061
898,0.0062
899,0.0078
900,0.0065
901,0.0074
902,0.0081
903,0.0078
904,0.0088
905,0.0073
906,0.0100
907,0.0095
908,0.0094
909,0.0092
910,0.0106
911,0.0107
912,0.0092
913,0.0116
914,0.0102
915,0.0111
916,0.0110
917,0.0120
918,0.0121
919,0.0117
920,0.0114
921,0.0129
922,0.0123
923,0.0127
924,0.0119
925,0.0138
926,0.0136
927,0.0133
928,0.0144
929,0.0131
930,0.0139
931,0.0134
932,0.0121
933,0.0118
934,0.0120
935,0.0120
936,0.0090
937,0.0092
938,0.0064
939,0.0059
940,0.0059
941,0.0047
942,0.0044

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.7983
411,0.7962
412,0.9739
413,0.7919
414,0.7442
415,0.7151
416,0.8207
417,0.6518
418,0.6902
419,0.6623
420,0.6217
421,0.5258
422,0.4771
423,0.5336
424,0.3501
425,0.3573
426,0.3526
427,0.3519
428,0.3048
429,0.1881
430,0.2299
431,0.2019
432,0.1849
433,0.1644
434,0.1564
435,0.1913
436,0.1363
437,0.1478
438,0.1597
439,0.1521
440,0.1727
441,0.1687
442,0.1492
443,0.1701
444,0.1874
445,0.1889
446,0.1902
447,0.1850
448,0.1900
449,0.1865
450,0.1813
451,0.1964
452,0.1864
453,0.1852
454,0.1805
455,0.1991
456,0.2043
457,0.1890
458,0.2037
459,0.2146
460,0.2225
461,0.2310
462,0.2441
463,0.2494
464,0.2532
465,0.2617
466,0.2761
467,0.2627
468,0.2717
469,0.2703
470,0.2641
471,0.2679
472,0.2475
473,0.2435
474,0.2385
475,0.2236
476,0.2159
477,0.2068
478,0.2027
479,0.1946
480,0.1954
481,0.1824
482,0.1827
483,0.1706
484,0.1683
485,0.1652
486,0.1614
487,0.1536
488,0.1502
489,0.1433
490,0.1391
491,0.1301
492,0.1231
493,0.1187
494,0.1108
495,0.1025
496,0.0922
497,0.0917
498,0.0832
499,0.0790
500,0.0712
501,0.0666
502,0.0636
503,0.0571
504,0.0551
505,0.0516
506,0.0495
507,0.0443
508,0.0439
509,0.0402
510,0.0366
511,0.0351
512,0.0336
513,0.0303
514,0.0286
515,0.0254
516,0.0239
517,0.0216
518,0.0208
519,0.0191
520,0.0188
521,0.0191
522,0.0187
523,0.0173
524,0.0185
525,0.0169
526,0.0189
527,0.0199
528,0.0197
529,0.0220
530,0.0226
531,0.0239
532,0.0250
533,0.0279
534,0.0303
535,0.0316
536,0.0352
537,0.0376
538,0.0414
539,0.0450
540,0.0470
541,0.0515
542,0.0545
543,0.0574
544,0.0647
545,0.0686
546,0.0719
547,0.0779
548,0.0822
549,0.0855
550,0.0909
551,0.0934
552,0.0988
553,0.1048
554,0.1076
555,0.1087
556,0.1139
557,0.1181
558,0.1227
559,0.1271
560,0.1263
561,0.1305
562,0.1342
563,0.1384
564,0.1403
565,0.1428
566,0.1451
567,0.1471
568,0.1476
569,0.1510
570,0.1525
571,0.1531
572,0.1555
573,0.1582
574,0.1556
575,0.1598
576,0.1630
577,0.1599
578,0.1653
579,0.1637
580,0.1666
581,0.1659
582,0.1690
583,0.1660
584,0.1703
585,0.1710
586,0.1702
587,0.1658
588,0.1723
589,0.1717
590,0.1710
591,0.1698
592,0.1723
593,0.1708
594,0.1706
595,0.1714
596,0.1713
597,0.1698
598,0.1697
599,0.1717
600,0.1690
601,0.1687
602,0.1667
603,0.1612
604,0.1602
605,0.1569
606,0.1535
607,0.1516
608,0.1458
609,0.1436
610,0.1403
611,0.1345
612,0.1309
613,0.1274
614,0.1209
615,0.1166
616,0.1136
617,0.1081
618,0.1042
619,0.0983
620,0.0949
621,0.0900
622,0.0862
623,0.0814
624,0.0770
625,0.0740
626,0.0703
627,0.0690
628,0.0623
629,0.0598
630,0.0557
631,0.0518
632,0.0508
633,0.0469
634,0.0453
635,0.0412
636,0.0393
637,0.0363
638,0.0346
639,0.0334
640,0.0317
641,0.0303
642,0.0272
643,0.0261
644,0.0255
645,0.0231
646,0.0231
647,0.0219
648,0.0210
649,0.0216
650,0.0198
651,0.0192
652,0.0178
653,0.0184
654,0.0195
655,0.0197
656,0.0197
657,0.0208
658,0.0197
659,0.0211
660,0.0228
661,0.0249
662,0.0240
663,0.0246
664,0.0262
665,0.0294
666,0.0304
667,0.0322
668,0.0344
669,0.0362
670,0.0370
671,0.0409
672,0.0417
673,0.0448
674,0.0462
675,0.0499
676,0.0511
677,0.0536
678,0.0578
679,0.0576
680,0.0604
681,0.0648
682,0.0676
683,0.0683
684,0.0709
685,0.0761
686,0.0784
687,0.0815
688,0.0852
689,0.0869
690,0.0904
691,0.0929
692,0.0971
693,0.0996
694,0.1037
695,0.1046
696,0.1086
697,0.1120
698,0.1154
699,0.1187
700,0.1196
701,0.1243
702,0.1294
703,0.1315
704,0.1325
705,0.1367
706,0.1405
707,0.1419
708,0.1467
709,0.1475
710,0.1526
711,0.1539
712,0.1569
713,0.1603
714,0.1613
715,0.1638
716,0.1656
717,0.1686
718,0.1690
719,0.1701
720,0.1699
721,0.1715
722,0.1730
723,0.1740
724,0.1758
725,0.1766
726,0.1799
727,0.1798
728,0.1828
729,0.1857
730,0.1841
731,0.1880
732,0.1893
733,0.1913
734,0.1882
735,0.1919
736,0.1912
737,0.1930
738,0.1922
739,0.1920
740,0.1905
741,0.1905
742,0.1934
743,0.1881
744,0.1888
745,0.1878
746,0.1873
747,0.1848
748,0.1851
749,0.1844
750,0.1784
751,0.1776
752,0.1765
753,0.1746
754,0.1722
755,0.1717
756,0.1705
757,0.1677
758,0.1648
759,0.1632
760,0.1606
761,0.1596
762,0.1573
763,0.1552
764,0.1553
765,0.1509
766,0.1485
767,0.1472
768,0.1456
769,0.1426
770,0.1409
771,0.1395
772,0.1353
773,0.1323
774,0.1312
775,0.1302
776,0.1295
777,0.1277
778,0.1224
779,0.1226
780,0.1182
781,0.1174
782,0.1152
783,0.1118
784,0.1079
785,0.1093
786,0.1071
787,0.1029
788,0.1018
789,0.0998
790,0.0996
791,0.0963
792,0.0959
793,0.0934
794,0.0931
795,0.0911
796,0.0896
797,0.0874
798,0.0868
799,0.0850
800,0.0839
801,0.0829
802,0.0819
803,0.0806
804,0.0767
805,0.0763
806,0.0747
807,0.0735
808,0.0695
809,0.0674
810,0.0669
811,0.0647
812,0.0621
813,0.0599
814,0.0581
815,0.0560
816,0.0541
817,0.0515
818,0.0490
819,0.0475
820,0.0459
821,0.0444
822,0.0433
823,0.0409
824,0.0400
825,0.0370
826,0.0369
827,0.0352
828,0.0330
829,0.0317
830,0.0291
831,0.0287
832,0.0288
833,0.0251
834,0.0250
835,0.0240
836,0.0213
837,0.0207
838,0.0195
839,0.0202
840,0.0176
841,0.0159
842,0.0147
843,0.0152
844,0.0138
845,0.0125
846,0.0125
847,0.0110
848,0.0100
849,0.0089
850,0.0086
851,0.0083
852,0.0076
853,0.0075
854,0.0065
855,0.0060
856,0.0061
857,0.0047
858,0.0050
859,0.0042
860,0.0030
861,0.0035
862,0.0042
863,0.0043
864,0.0033
865,0.0029
866,0.0023
867,0.0028
868,0.0017
869,0.0019
870,0.0018
871,0.0016
872,0.0018
873,0.0012
874,0.0020
875,0.0014
876,0.0009
877,0.0022
878,0.0009
879,0.0019
880,0.0024
881,0.0024
882,0.0022
883,0.0031
884,0.0029
885,0.0029
886,0.0036
887,0.0030
888,0.0041
889,0.0047
890,0.0045
891,0.0056
892,0.0062
893,0.0054
894,0.0067
895,0.0066
896,0.0065
897,0.0074
898,0.0077
899,0.0075
900,0.0084
901,0.0095
902,0.0095
903,0.0095
904,0.0101
905,0.0101
906,0.0120
907,0.0116
908,0.0123
909,0.0119
910,0.0132
911,0.0137
912,0.0122
913,0.0140
914,0.0134
915,0.0139
916,0.0147
917,0.0146
918,0.0152
919,0.0146
920,0.0156
921,0.0167
922,0.0161
923,0.0164
924,0.0171
925,0.0169
926,0.0173
927,0.0168
928,0.0183
929,0.0167
930,0.0184
931,0.0169
932,0.0161
933,0.0154
934,0.0158
935,0.0141
936,0.0120
937,0.0113
938,0.0087
939,0.0076
940,0.0071
941,0.0068
942,0.0058

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.9601
407,0.0000
408,0.0000
409,1.0000
410,0.6966
411,0.6456
412,0.7222
413,0.6391
414,0.6601
415,0.6585
416,0.6327
417,0.5182
418,0.5347
419,0.5327
420,0.4905
421,0.4777
422,0.4530
423,0.3940
424,0.3451
425,0.3193
426,0.3191
427,0.3132
428,0.3154
429,0.1785
430,0.1999
431,0.1774
432,0.1948
433,0.1467
434,0.1831
435,0.2385
436,0.1867
437,0.2225
438,0.2170
439,0.1889
440,0.2027
441,0.2217
442,0.2269
443,0.2237
444,0.2356
445,0.2645
446,0.2461
447,0.2346
448,0.2658
449,0.2548
450,0.2259
451,0.2233
452,0.2371
453,0.2109
454,0.2219
455,0.2305
456,0.2237
457,0.2213
458,0.2440
459,0.2402
460,0.2485
461,0.2561
462,0.2539
463,0.2575
464,0.2520
465,0.2610
466,0.2693
467,0.2585
468,0.2663
469,0.2633
470,0.2533
471,0.2537
472,0.2463
473,0.2288
474,0.2243
475,0.2148
476,0.1999
477,0.1954
478,0.1861
479,0.1757
480,0.1829
481,0.1655
482,0.1639
483,0.1542
484,0.1534
485,0.1456
486,0.1410
487,0.1349
488,0.1246
489,0.1212
490,0.1192
491,0.1115
492,0.1063
493,0.1012
494,0.0927
495,0.0867
496,0.0769
497,0.0777
498,0.0685
499,0.0669
500,0.0600
501,0.0562
502,0.0538
503,0.0491
504,0.0480
505,0.0445
506,0.0417
507,0.0399
508,0.0392
509,0.0365
510,0.0349
511,0.0332
512,0.0305
513,0.0279
514,0.0271
515,0.0266
516,0.0253
517,0.0234
518,0.0241
519,0.0233
520,0.0230
521,0.0248
522,0.0247
523,0.0239
524,0.0247
525,0.0261
526,0.0270
527,0.0268
528,0.0287
529,0.0314
530,0.0324
531,0.0350
532,0.0365
533,0.0391
534,0.0418
535,0.0441
536,0.0468
537,0.0500
538,0.0548
539,0.0586
540,0.0615
541,0.0655
542,0.0679
543,0.0743
544,0.0799
545,0.0839
546,0.0879
547,0.0923
548,0.0939
549,0.0998
550,0.1031
551,0.1073
552,0.1113
553,0.1171
554,0.1198
555,0.1237
556,0.1234
557,0.1307
558,0.1321
559,0.1355
560,0.1369
561,0.1393
562,0.1426
563,0.1416
564,0.1461
565,0.1471
566,0.1466
567,0.1493
568,0.1485
569,0.1510
570,0.1529
571,0.1505
572,0.1543
573,0.1542
574,0.1554
575,0.1528
576,0.1564
577,0.1558
578,0.1573
579,0.1576
580,0.1582
581,0.1567
582,0.1566
583,0.1552
584,0.1571
585,0.1557
586,0.1556
587,0.1537
588,0.1566
589,0.1540
590,0.1535
591,0.1537
592,0.1538
593,0.1521
594,0.1517
595,0.1495
596,0.1497
597,0.1514
598,0.1473
599,0.1456
600,0.1461
601,0.1419
602,0.1399
603,0.1380
604,0.1363
605,0.1317
606,0.1296
607,0.1276
608,0.1244
609,0.1167
610,0.1172
611,0.1124
612,0.1079
613,0.1027
614,0.0987
615,0.0962
616,0.0913
617,0.0888
618,0.0843
619,0.0818
620,0.0760
621,0.0731
622,0.0689
623,0.0653
624,0.0614
625,0.0601
626,0.0575
627,0.0552
628,0.0512
629,0.0490
630,0.0455
631,0.0430
632,0.0421
633,0.0395
634,0.0376
635,0.0356
636,0.0346
637,0.0326
638,0.0310
639,0.0301
640,0.0292
641,0.0280
642,0.0271
643,0.0280
644,0.0270
645,0.0251
646,0.0267
647,0.0251
648,0.0249
649,0.0267
650,0.0260
651,0.0270
652,0.0268
653,0.0273
654,0.0278
655,0.0288
656,0.0294
657,0.0316
658,0.0309
659,0.0341
660,0.0360
661,0.0370
662,0.0394
663,0.0396
664,0.0421
665,0.0450
666,0.0459
667,0.0479
668,0.0503
669,0.0535
670,0.0555
671,0.0576
672,0.0582
673,0.0625
674,0.0647
675,0.0672
676,0.0694
677,0.0717
678,0.0769
679,0.0763
680,0.0789
681,0.0833
682,0.0861
683,0.0874
684,0.0889
685,0.0936
686,0.0973
687,0.0993
688,0.1032
689,0.1036
690,0.1088
691,0.1125
692,0.1138
693,0.1169
694,0.1207
695,0.1229
696,0.1236
697,0.1277
698,0.1314
699,0.1325
700,0.1356
701,0.1412
702,0.1426
703,0.1440
704,0.1445
705,0.1498
706,0.1503
707,0.1529
708,0.1585
709,0.1594
710,0.1613
711,0.1607
712,0.1655
713,0.1700
714,0.1695
715,0.1715
716,0.1733
717,0.1759
718,0.1743
719,0.1743
720,0.1736
721,0.1745
722,0.1751
723,0.1774
724,0.1784
725,0.1785
726,0.1825
727,0.1831
728,0.1827
729,0.1857
730,0.1844
731,0.1865
732,0.1863
733,0.1893
734,0.1860
735,0.1864
736,0.1875
737,0.1877
738,0.1895
739,0.1880
740,0.1838
741,0.1854
742,0.1852
743,0.1833
744,0.1822
745,0.1821
746,0.1786
747,0.1774
748,0.1763
749,0.1722
750,0.1737
751,0.1690
752,0.1684
753,0.1651
754,0.1652
755,0.1599
756,0.1599
757,0.1580
758,0.1543
759,0.1530
760,0.1496
761,0.1477
762,0.1451
763,0.1431
764,0.1420
765,0.1383
766,0.1378
767,0.1346
768,0.1328
769,0.1317
770,0.1291
771,0.1283
772,0.1227
773,0.1217
774,0.1195
775,0.1182
776,0.1149
777,0.1135
778,0.1094
779,0.1095
780,0.1055
781,0.1027
782,0.1006
783,0.0983
784,0.0985
785,0.0959
786,0.0939
787,0.0914
788,0.0884
789,0.0881
790,0.0866
791,0.0835
792,0.0831
793,0.0809
794,0.0777
795,0.0774
796,0.0776
797,0.0759
798,0.0746
799,0.0716
800,0.0721
801,0.0710
802,0.0694
803,0.0679
804,0.0661
805,0.0627
806,0.0628
807,0.0607
808,0.0600
809,0.0562
810,0.0559
811,0.0536
812,0.0512
813,0.0480
814,0.0469
815,0.0464
816,0.0441
817,0.0423
818,0.0404
819,0.0387
820,0.0384
821,0.0366
822,0.0350
823,0.0336
824,0.0322
825,0.0304
826,0.0299
827,0.0286
828,0.0262
829,0.0254
830,0.0246
831,0.0233
832,0.0225
833,0.0198
834,0.0197
835,0.0184
836,0.0171
837,0.0174
838,0.0152
839,0.0161
840,0.0139
841,0.0140
842,0.0118
843,0.0114
844,0.0108
845,0.0101
846,0.0091
847,0.0092
848,0.0073
849,0.0081
850,0.0070
851,0.0069
852,0.0068
853,0.0069
854,0.0053
855,0.0065
856,0.0056
857,0.0047
858,0.0045
859,0.0054
860,0.0040
861,0.0043
862,0.0045
863,0.0045
864,0.0039
865,0.0035
866,0.0029
867,0.0039
868,0.0035
869,0.0029
870,0.0029
871,0.0035
872,0.0032
873,0.0028
874,0.0038
875,0.0033
876,0.0032
877,0.0044
878,0.0031
879,0.0039
880,0.0047
881,0.0046
882,0.0050
883,0.0059
884,0.0057
885,0.0056
886,0.0056
887,0.0068
888,0.0070
889,0.0074
890,0.0089
891,0.0085
892,0.0093
893,0.0084
894,0.0106
895,0.0108
896,0.0102
897,0.0116
898,0.0121
899,0.0124
900,0.0127
901,0.0136
902,0.0143
903,0.0143
904,0.0144
905,0.0145
906,0.0149
907,0.0156
908,0.0162
909,0.0153
910,0.0169
911,0.0168
912,0.0173
913,0.0178
914,0.0178
915,0.0179
916,0.0192
917,0.0182
918,0.0192
919,0.0191
920,0.0182
921,0.0207
922,0.0194
923,0.0207
924,0.0201
925,0.0207
926,0.0205
927,0.0208
928,0.0216
929,0.0207
930,0.0209
931,0.0195
932,0.0177
933,0.0184
934,0.0184
935,0.0168
936,0.0143
937,0.0133
938,0.0103
939,0.0086
940,0.0084
941,0.0074
942,0.0077

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.5401
407,0.0000
408,0.0000
409,1.0000
410,0.6557
411,0.5750
412,0.6483
413,0.5184
414,0.5337
415,0.4316
416,0.5626
417,0.4574
418,0.4825
419,0.4032
420,0.3929
421,0.3882
422,0.3456
423,0.2886
424,0.2509
425,0.2855
426,0.2760
427,0.2972
428,0.3167
429,0.1859
430,0.2354
431,0.2435
432,0.2429
433,0.2531
434,0.2707
435,0.3030
436,0.2560
437,0.3057
438,0.2991
439,0.3195
440,0.3321
441,0.3431
442,0.3580
443,0.3639
444,0.3447
445,0.3674
446,0.3564
447,0.3341
448,0.3227
449,0.3204
450,0.3073
451,0.3025
452,0.2868
453,0.2755
454,0.2797
455,0.2655
456,0.2744
457,0.2512
458,0.2595
459,0.2659
460,0.2602
461,0.2601
462,0.2585
463,0.2564
464,0.2550
465,0.2454
466,0.2642
467,0.2533
468,0.2513
469,0.2427
470,0.2360
471,0.2295
472,0.2154
473,0.2098
474,0.1964
475,0.1866
476,0.1659
477,0.1672
478,0.1539
479,0.1460
480,0.1450
481,0.1344
482,0.1299
483,0.1224
484,0.1199
485,0.1169
486,0.1102
487,0.1050
488,0.0988
489,0.0960
490,0.0922
491,0.0867
492,0.0800
493,0.0760
494,0.0721
495,0.0662
496,0.0598
497,0.0570
498,0.0542
499,0.0528
500,0.0482
501,0.0462
502,0.0443
503,0.0406
504,0.0391
505,0.0385
506,0.0380
507,0.0351
508,0.0358
509,0.0338
510,0.0342
511,0.0345
512,0.0331
513,0.0330
514,0.0319
515,0.0325
516,0.0320
517,0.0322
518,0.0316
519,0.0325
520,0.0338
521,0.0373
522,0.0362
523,0.0366
524,0.0402
525,0.0416
526,0.0443
527,0.0445
528,0.0462
529,0.0501
530,0.0521
531,0.0538
532,0.0553
533,0.0607
534,0.0622
535,0.0645
536,0.0695
537,0.0734
538,0.0772
539,0.0809
540,0.0838
541,0.0863
542,0.0914
543,0.0961
544,0.1015
545,0.1058
546,0.1082
547,0.1141
548,0.1175
549,0.1194
550,0.1249
551,0.1247
552,0.1288
553,0.1334
554,0.1357
555,0.1361
556,0.1392
557,0.1437
558,0.1429
559,0.1448
560,0.1438
561,0.1438
562,0.1467
563,0.1470
564,0.1466
565,0.1433
566,0.1476
567,0.1461
568,0.1449
569,0.1462
570,0.1445
571,0.1425
572,0.1415
573,0.1420
574,0.1395
575,0.1392
576,0.1402
577,0.1404
578,0.1406
579,0.1369
580,0.1373
581,0.1357
582,0.1336
583,0.1310
584,0.1321
585,0.1304
586,0.1272
587,0.1242
588,0.1253
589,0.1255
590,0.1243
591,0.1220
592,0.1209
593,0.1179
594,0.1154
595,0.1163
596,0.1135
597,0.1135
598,0.1105
599,0.1091
600,0.1090
601,0.1051
602,0.1024
603,0.0998
604,0.0977
605,0.0954
606,0.0931
607,0.0906
608,0.0874
609,0.0852
610,0.0837
611,0.0789
612,0.0765
613,0.0727
614,0.0702
615,0.0657
616,0.0636
617,0.0613
618,0.0570
619,0.0550
620,0.0524
621,0.0513
622,0.0489
623,0.0483
624,0.0439
625,0.0446
626,0.0418
627,0.0409
628,0.0377
629,0.0384
630,0.0352
631,0.0347
632,0.0353
633,0.0346
634,0.0334
635,0.0322
636,0.0331
637,0.0322
638,0.0338
639,0.0329
640,0.0342
641,0.0336
642,0.0349
643,0.0355
644,0.0370
645,0.0363
646,0.0397
647,0.0390
648,0.0414
649,0.0433
650,0.0439
651,0.0457
652,0.0471
653,0.0494
654,0.0497
655,0.0536
656,0.0545
657,0.0578
658,0.0584
659,0.0617
660,0.0647
661,0.0678
662,0.0690
663,0.0715
664,0.0731
665,0.0778
666,0.0783
667,0.0800
668,0.0836
669,0.0871
670,0.0881
671,0.0915
672,0.0939
673,0.0982
674,0.0990
675,0.1027
676,0.1050
677,0.1063
678,0.1088
679,0.1104
680,0.1124
681,0.1160
682,0.1208
683,0.1205
684,0.1218
685,0.1267
686,0.1296
687,0.1306
688,0.1340
689,0.1339
690,0.1366
691,0.1400
692,0.1415
693,0.1455
694,0.1465
695,0.1473
696,0.1499
697,0.1499
698,0.1545
699,0.1548
700,0.1565
701,0.1610
702,0.1624
703,0.1654
704,0.1632
705,0.1707
706,0.1696
707,0.1707
708,0.1728
709,0.1745
710,0.1747
711,0.1764
712,0.1782
713,0.1822
714,0.1799
715,0.1797
716,0.1836
717,0.1837
718,0.1821
719,0.1807
720,0.1791
721,0.1788
722,0.1802
723,0.1782
724,0.1778
725,0.1791
726,0.1795
727,0.1791
728,0.1812
729,0.1814
730,0.1802
731,0.1808
732,0.1803
733,0.1821
734,0.1809
735,0.1797
736,0.1808
737,0.1790
738,0.1745
739,0.1760
740,0.1731
741,0.1730
742,0.1734
743,0.1698
744,0.1666
745,0.1643
746,0.1618
747,0.1605
748,0.1606
749,0.1546
750,0.1537
751,0.1506
752,0.1512
753,0.1456
754,0.1444
755,0.1418
756,0.1402
757,0.1359
758,0.1356
759,0.1323
760,0.1288
761,0.1278
762,0.1213
763,0.1226
764,0.1197
765,0.1165
766,0.1154
767,0.1143
768,0.1111
769,0.1090
770,0.1062
771,0.1037
772,0.1014
773,0.1000
774,0.0967
775,0.0952
776,0.0940
777,0.0900
778,0.0867
779,0.0848
780,0.0839
781,0.0827
782,0.0807
783,0.0765
784,0.0738
785,0.0732
786,0.0733
787,0.0685
788,0.0666
789,0.0684
790,0.0652
791,0.0640
792,0.0612
793,0.0601
794,0.0586
795,0.0588
796,0.0573
797,0.0552
798,0.0548
799,0.0535
800,0.0521
801,0.0506
802,0.0487
803,0.0478
804,0.0456
805,0.0454
806,0.0449
807,0.0413
808,0.0402
809,0.0391
810,0.0375
811,0.0371
812,0.0349
813,0.0332
814,0.0319
815,0.0324
816,0.0307
817,0.0291
818,0.0289
819,0.0260
820,0.0255
821,0.0244
822,0.0236
823,0.0218
824,0.0218
825,0.0185
826,0.0199
827,0.0193
828,0.0177
829,0.0167
830,0.0166
831,0.0151
832,0.0157
833,0.0140
834,0.0133
835,0.0133
836,0.0119
837,0.0112
838,0.0113
839,0.0109
840,0.0095
841,0.0091
842,0.0092
843,0.0085
844,0.0083
845,0.0087
846,0.0080
847,0.0068
848,0.0068
849,0.0074
850,0.0068
851,0.0065
852,0.0066
853,0.0069
854,0.0064
855,0.0068
856,0.0072
857,0.0061
858,0.0062
859,0.0062
860,0.0053
861,0.0068
862,0.0065
863,0.0067
864,0.0070
865,0.0077
866,0.0064
867,0.0080
868,0.0068
869,0.0075
870,0.0069
871,0.0078
872,0.0072
873,0.0074
874,0.0082
875,0.0085
876,0.0087
877,0.0094
878,0.0074
879,0.0090
880,0.0102
881,0.0101
882,0.0108
883,0.0115
884,0.0122
885,0.0124
886,0.0129
887,0.0138
888,0.0151
889,0.0147
890,0.0152
891,0.0161
892,0.0162
893,0.0173
894,0.0181
895,0.0193
896,0.0189
897,0.0185
898,0.0196
899,0.0189
900,0.0193
901,0.0216
902,0.0221
903,0.0223
904,0.0230
905,0.0234
906,0.0229
907,0.0230
908,0.0231
909,0.0232
910,0.0245
911,0.0247
912,0.0245
913,0.0259
914,0.0251
915,0.0261
916,0.0262
917,0.0261
918,0.0263
919,0.0246
920,0.0254
921,0.0263
922,0.0267
923,0.0284
924,0.0272
925,0.0271
926,0.0276
927,0.0287
928,0.0272
929,0.0264
930,0.0274
931,0.0261
932,0.0238
933,0.0235
934,0.0218
935,0.0217
936,0.0162
937,0.0167
938,0.0134
939,0.0114
940,0.0111
941,0.0092
942,0.0084

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.3200
407,0.0000
408,0.0000
409,1.0000
410,0.4157
411,0.5017
412,0.4892
413,0.4613
414,0.4515
415,0.3235
416,0.4653
417,0.4518
418,0.3647
419,0.3426
420,0.4652
421,0.3285
422,0.3646
423,0.3966
424,0.2793
425,0.3280
426,0.3958
427,0.3382
428,0.3672
429,0.3078
430,0.3706
431,0.3928
432,0.3672
433,0.3771
434,0.4243
435,0.4240
436,0.4076
437,0.4421
438,0.4228
439,0.4222
440,0.4980
441,0.4377
442,0.4483
443,0.4862
444,0.4572
445,0.4519
446,0.4556
447,0.4446
448,0.4086
449,0.3875
450,0.3507
451,0.3449
452,0.3200
453,0.3096
454,0.2729
455,0.2748
456,0.2688
457,0.2455
458,0.2320
459,0.2439
460,0.2307
461,0.2280
462,0.2312
463,0.2181
464,0.2215
465,0.2108
466,0.2213
467,0.2084
468,0.1997
469,0.1951
470,0.1809
471,0.1813
472,0.1672
473,0.1617
474,0.1513
475,0.1365
476,0.1286
477,0.1250
478,0.1111
479,0.1083
480,0.1047
481,0.0975
482,0.0934
483,0.0931
484,0.0872
485,0.0852
486,0.0810
487,0.0795
488,0.0772
489,0.0738
490,0.0712
491,0.0654
492,0.0641
493,0.0624
494,0.0618
495,0.0593
496,0.0530
497,0.0543
498,0.0507
499,0.0516
500,0.0498
501,0.0485
502,0.0461
503,0.0467
504,0.0472
505,0.0464
506,0.0467
507,0.0451
508,0.0484
509,0.0471
510,0.0469
511,0.0493
512,0.0489
513,0.0504
514,0.0519
515,0.0513
516,0.0535
517,0.0530
518,0.0533
519,0.0536
520,0.0565
521,0.0607
522,0.0606
523,0.0618
524,0.0647
525,0.0654
526,0.0693
527,0.0696
528,0.0715
529,0.0747
530,0.0781
531,0.0787
532,0.0811
533,0.0833
534,0.0889
535,0.0907
536,0.0927
537,0.0978
538,0.0988
539,0.1024
540,0.1061
541,0.1053
542,0.1088
543,0.1140
544,0.1163
545,0.1210
546,0.1226
547,0.1265
548,0.1257
549,0.1301
550,0.1302
551,0.1308
552,0.1339
553,0.1345
554,0.1360
555,0.1358
556,0.1359
557,0.1374
558,0.1377
559,0.1357
560,0.1368
561,0.1327
562,0.1314
563,0.1287
564,0.1304
565,0.1269
566,0.1263
567,0.1233
568,0.1193
569,0.1197
570,0.1181
571,0.1128
572,0.1137
573,0.1101
574,0.1088
575,0.1079
576,0.1062
577,0.1053
578,0.1041
579,0.1002
580,0.0987
581,0.0961
582,0.0949
583,0.0930
584,0.0937
585,0.0892
586,0.0861
587,0.0830
588,0.0833
589,0.0828
590,0.0818
591,0.0817
592,0.0779
593,0.0742
594,0.0750
595,0.0736
596,0.0733
597,0.0731
598,0.0704
599,0.0704
600,0.0677
601,0.0675
602,0.0646
603,0.0658
604,0.0614
605,0.0614
606,0.0594
607,0.0593
608,0.0570
609,0.0532
610,0.0547
611,0.0523
612,0.0515
613,0.0518
614,0.0490
615,0.0489
616,0.0485
617,0.0467
618,0.0459
619,0.0450
620,0.0444
621,0.0444
622,0.0436
623,0.0438
624,0.0437
625,0.0444
626,0.0448
627,0.0452
628,0.0453
629,0.0452
630,0.0472
631,0.0476
632,0.0492
633,0.0507
634,0.0516
635,0.0523
636,0.0559
637,0.0540
638,0.0564
639,0.0596
640,0.0618
641,0.0647
642,0.0662
643,0.0672
644,0.0693
645,0.0731
646,0.0757
647,0.0775
648,0.0796
649,0.0821
650,0.0851
651,0.0873
652,0.0911
653,0.0918
654,0.0951
655,0.0993
656,0.1012
657,0.1049
658,0.1075
659,0.1144
660,0.1137
661,0.1175
662,0.1193
663,0.1236
664,0.1228
665,0.1282
666,0.1287
667,0.1305
668,0.1352
669,0.1372
670,0.1380
671,0.1416
672,0.1409
673,0.1440
674,0.1461
675,0.1490
676,0.1496
677,0.1514
678,0.1521
679,0.1529
680,0.1555
681,0.1576
682,0.1590
683,0.1594
684,0.1605
685,0.1642
686,0.1629
687,0.1641
688,0.1657
689,0.1656
690,0.1681
691,0.1699
692,0.1703
693,0.1689
694,0.1713
695,0.1700
696,0.1724
697,0.1740
698,0.1739
699,0.1744
700,0.1758
701,0.1774
702,0.1761
703,0.1763
704,0.1751
705,0.1789
706,0.1766
707,0.1785
708,0.1813
709,0.1781
710,0.1791
711,0.1768
712,0.1802
713,0.1811
714,0.1778
715,0.1780
716,0.1793
717,0.1756
718,0.1713
719,0.1731
720,0.1712
721,0.1667
722,0.1670
723,0.1656
724,0.1637
725,0.1646
726,0.1624
727,0.1610
728,0.1641
729,0.1627
730,0.1606
731,0.1599
732,0.1581
733,0.1593
734,0.1537
735,0.1559
736,0.1556
737,0.1516
738,0.1500
739,0.1460
740,0.1455
741,0.1442
742,0.1420
743,0.1393
744,0.1353
745,0.1351
746,0.1324
747,0.1283
748,0.1277
749,0.1244
750,0.1201
751,0.1168
752,0.1160
753,0.1127
754,0.1111
755,0.1064
756,0.1072
757,0.1025
758,0.0994
759,0.0962
760,0.0948
761,0.0920
762,0.0897
763,0.0880
764,0.0862
765,0.0837
766,0.0801
767,0.0799
768,0.0803
769,0.0761
770,0.0739
771,0.0718
772,0.0701
773,0.0673
774,0.0650
775,0.0647
776,0.0621
777,0.0608
778,0.0585
779,0.0567
780,0.0547
781,0.0529
782,0.0515
783,0.0495
784,0.0486
785,0.0472
786,0.0459
787,0.0431
788,0.0411
789,0.0417
790,0.0396
791,0.0394
792,0.0386
793,0.0359
794,0.0356
795,0.0348
796,0.0333
797,0.0327
798,0.0323
799,0.0314
800,0.0317
801,0.0303
802,0.0281
803,0.0280
804,0.0268
805,0.0266
806,0.0260
807,0.0245
808,0.0244
809,0.0228
810,0.0230
811,0.0214
812,0.0215
813,0.0200
814,0.0195
815,0.0195
816,0.0182
817,0.0174
818,0.0179
819,0.0169
820,0.0163
821,0.0158
822,0.0158
823,0.0152
824,0.0157
825,0.0128
826,0.0137
827,0.0142
828,0.0127
829,0.0135
830,0.0130
831,0.0130
832,0.0131
833,0.0119
834,0.0123
835,0.0121
836,0.0116
837,0.0123
838,0.0122
839,0.0135
840,0.0116
841,0.0128
842,0.0121
843,0.0123
844,0.0126
845,0.0127
846,0.0117
847,0.0123
848,0.0114
849,0.0122
850,0.0118
851,0.0131
852,0.0142
853,0.0137
854,0.0139
855,0.0145
856,0.0147
857,0.0145
858,0.0143
859,0.0149
860,0.0144
861,0.0151
862,0.0155
863,0.0161
864,0.0160
865,0.0158
866,0.0167
867,0.0171
868,0.0169
869,0.0166
870,0.0170
871,0.0170
872,0.0171
873,0.0170
874,0.0181
875,0.0170
876,0.0170
877,0.0188
878,0.0176
879,0.0196
880,0.0206
881,0.0215
882,0.0212
883,0.0227
884,0.0223
885,0.0229
886,0.0247
887,0.0257
888,0.0262
889,0.0272
890,0.0281
891,0.0284
892,0.0289
893,0.0301
894,0.0309
895,0.0321
896,0.0308
897,0.0330
898,0.0325
899,0.0332
900,0.0330
901,0.0340
902,0.0350
903,0.0350
904,0.0359
905,0.0353
906,0.0366
907,0.0361
908,0.0362
909,0.0366
910,0.0373
911,0.0365
912,0.0360
913,0.0366
914,0.0367
915,0.0370
916,0.0364
917,0.0365
918,0.0365
919,0.0365
920,0.0359
921,0.0380
922,0.0367
923,0.0372
924,0.0368
925,0.0370
926,0.0359
927,0.0375
928,0.0362
929,0.0342
930,0.0346
931,0.0330
932,0.0307
933,0.0303
934,0.0283
935,0.0254
936,0.0224
937,0.0198
938,0.0166
939,0.0140
940,0.0131
941,0.0119
942,0.0117

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.8625
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.3232
411,0.4233
412,0.4991
413,0.4278
414,0.4350
415,0.4043
416,0.5519
417,0.5057
418,0.4435
419,0.5134
420,0.5479
421,0.4745
422,0.5247
423,0.4590
424,0.4631
425,0.5074
426,0.5678
427,0.5442
428,0.5539
429,0.4780
430,0.5472
431,0.5155
432,0.4890
433,0.5058
434,0.5083
435,0.5210
436,0.5314
437,0.5458
438,0.5209
439,0.4998
440,0.5114
441,0.4868
442,0.4919
443,0.5167
444,0.4873
445,0.4774
446,0.4364
447,0.3837
448,0.3947
449,0.3653
450,0.3355
451,0.3184
452,0.2897
453,0.2589
454,0.2302
455,0.2349
456,0.2117
457,0.2074
458,0.1860
459,0.1917
460,0.1772
461,0.1858
462,0.1728
463,0.1681
464,0.1610
465,0.1547
466,0.1626
467,0.1510
468,0.1506
469,0.1417
470,0.1327
471,0.1381
472,0.1208
473,0.1137
474,0.1120
475,0.0997
476,0.0954
477,0.0924
478,0.0853
479,0.0853
480,0.0873
481,0.0773
482,0.0797
483,0.0764
484,0.0730
485,0.0776
486,0.0739
487,0.0745
488,0.0732
489,0.0756
490,0.0746
491,0.0745
492,0.0745
493,0.0752
494,0.0730
495,0.0748
496,0.0694
497,0.0718
498,0.0711
499,0.0722
500,0.0703
501,0.0686
502,0.0690
503,0.0704
504,0.0722
505,0.0712
506,0.0736
507,0.0725
508,0.0754
509,0.0751
510,0.0754
511,0.0786
512,0.0777
513,0.0804
514,0.0803
515,0.0806
516,0.0791
517,0.0819
518,0.0805
519,0.0815
520,0.0815
521,0.0850
522,0.0851
523,0.0869
524,0.0871
525,0.0873
526,0.0874
527,0.0891
528,0.0901
529,0.0934
530,0.0935
531,0.0937
532,0.0941
533,0.0967
534,0.0967
535,0.0952
536,0.0992
537,0.1006
538,0.1023
539,0.1035
540,0.1022
541,0.1053
542,0.1064
543,0.1063
544,0.1089
545,0.1118
546,0.1096
547,0.1124
548,0.1098
549,0.1110
550,0.1098
551,0.1087
552,0.1104
553,0.1103
554,0.1064
555,0.1060
556,0.1037
557,0.1055
558,0.1017
559,0.1020
560,0.0973
561,0.0969
562,0.0954
563,0.0908
564,0.0904
565,0.0856
566,0.0846
567,0.0845
568,0.0797
569,0.0789
570,0.0767
571,0.0731
572,0.0718
573,0.0703
574,0.0677
575,0.0656
576,0.0638
577,0.0624
578,0.0631
579,0.0601
580,0.0582
581,0.0559
582,0.0559
583,0.0571
584,0.0570
585,0.0535
586,0.0530
587,0.0521
588,0.0501
589,0.0503
590,0.0496
591,0.0519
592,0.0516
593,0.0507
594,0.0505
595,0.0496
596,0.0510
597,0.0511
598,0.0511
599,0.0516
600,0.0527
601,0.0522
602,0.0531
603,0.0538
604,0.0531
605,0.0552
606,0.0543
607,0.0560
608,0.0564
609,0.0561
610,0.0571
611,0.0578
612,0.0585
613,0.0600
614,0.0590
615,0.0626
616,0.0623
617,0.0647
618,0.0652
619,0.0670
620,0.0680
621,0.0693
622,0.0726
623,0.0731
624,0.0756
625,0.0790
626,0.0785
627,0.0811
628,0.0824
629,0.0868
630,0.0870
631,0.0903
632,0.0940
633,0.0942
634,0.0982
635,0.0996
636,0.1036
637,0.1062
638,0.1073
639,0.1127
640,0.1137
641,0.1181
642,0.1186
643,0.1245
644,0.1278
645,0.1262
646,0.1299
647,0.1352
648,0.1336
649,0.1410
650,0.1419
651,0.1464
652,0.1483
653,0.1481
654,0.1529
655,0.1564
656,0.1586
657,0.1634
658,0.1648
659,0.1652
660,0.1693
661,0.1704
662,0.1723
663,0.1721
664,0.1759
665,0.1800
666,0.1810
667,0.1776
668,0.1834
669,0.1824
670,0.1836
671,0.1841
672,0.1834
673,0.1828
674,0.1859
675,0.1871
676,0.1829
677,0.1823
678,0.1833
679,0.1825
680,0.1820
681,0.1804
682,0.1843
683,0.1811
684,0.1791
685,0.1804
686,0.1793
687,0.1788
688,0.1773
689,0.1754
690,0.1750
691,0.1748
692,0.1752
693,0.1720
694,0.1730
695,0.1700
696,0.1680
697,0.1674
698,0.1644
699,0.1668
700,0.1677
701,0.1693
702,0.1664
703,0.1664
704,0.1599
705,0.1624
706,0.1590
707,0.1574
708,0.1577
709,0.1560
710,0.1573
711,0.1536
712,0.1518
713,0.1517
714,0.1472
715,0.1461
716,0.1448
717,0.1432
718,0.1406
719,0.1393
720,0.1348
721,0.1332
722,0.1294
723,0.1260
724,0.1266
725,0.1234
726,0.1235
727,0.1190
728,0.1222
729,0.1207
730,0.1170
731,0.1151
732,0.1120
733,0.1125
734,0.1101
735,0.1070
736,0.1071
737,0.1041
738,0.1030
739,0.1014
740,0.0971
741,0.0962
742,0.0930
743,0.0910
744,0.0900
745,0.0872
746,0.0833
747,0.0842
748,0.0782
749,0.0775
750,0.0745
751,0.0726
752,0.0698
753,0.0681
754,0.0660
755,0.0647
756,0.0622
757,0.0599
758,0.0570
759,0.0570
760,0.0552
761,0.0530
762,0.0506
763,0.0479
764,0.0462
765,0.0459
766,0.0452
767,0.0432
768,0.0429
769,0.0415
770,0.0403
771,0.0390
772,0.0363
773,0.0354
774,0.0342
775,0.0333
776,0.0324
777,0.0311
778,0.0308
779,0.0294
780,0.0285
781,0.0265
782,0.0268
783,0.0256
784,0.0240
785,0.0248
786,0.0240
787,0.0229
788,0.0210
789,0.0213
790,0.0214
791,0.0198
792,0.0207
793,0.0199
794,0.0203
795,0.0203
796,0.0196
797,0.0197
798,0.0188
799,0.0192
800,0.0188
801,0.0195
802,0.0196
803,0.0186
804,0.0186
805,0.0202
806,0.0194
807,0.0197
808,0.0179
809,0.0188
810,0.0189
811,0.0200
812,0.0187
813,0.0191
814,0.0182
815,0.0191
816,0.0189
817,0.0191
818,0.0199
819,0.0198
820,0.0191
821,0.0201
822,0.0211
823,0.0200
824,0.0210
825,0.0197
826,0.0215
827,0.0208
828,0.0211
829,0.0225
830,0.0227
831,0.0222
832,0.0239
833,0.0233
834,0.0234
835,0.0245
836,0.0244
837,0.0237
838,0.0243
839,0.0271
840,0.0262
841,0.0266
842,0.0263
843,0.0276
844,0.0269
845,0.0274
846,0.0271
847,0.0268
848,0.0276
849,0.0289
850,0.0302
851,0.0280
852,0.0286
853,0.0300
854,0.0302
855,0.0314
856,0.0313
857,0.0311
858,0.0320
859,0.0317
860,0.0312
861,0.0323
862,0.0320
863,0.0324
864,0.0326
865,0.0327
866,0.0330
867,0.0334
868,0.0344
869,0.0337
870,0.0338
871,0.0324
872,0.0332
873,0.0318
874,0.0335
875,0.0334
876,0.0342
877,0.0348
878,0.0340
879,0.0351
880,0.0362
881,0.0374
882,0.0371
883,0.0402
884,0.0397
885,0.0402
886,0.0416
887,0.0424
888,0.0445
889,0.0445
890,0.0459
891,0.0463
892,0.0464
893,0.0478
894,0.0470
895,0.0480
896,0.0490
897,0.0479
898,0.0488
899,0.0488
900,0.0496
901,0.0511
902,0.0515
903,0.0508
904,0.0511
905,0.0514
906,0.0511
907,0.0500
908,0.0498
909,0.0487
910,0.0499
911,0.0506
912,0.0503
913,0.0497
914,0.0490
915,0.0483
916,0.0491
917,0.0486
918,0.0476
919,0.0473
920,0.0471
921,0.0489
922,0.0479
923,0.0487
924,0.0468
925,0.0467
926,0.0451
927,0.0444
928,0.0436
929,0.0411
930,0.0436
931,0.0397
932,0.0374
933,0.0360
934,0.0337
935,0.0296
936,0.0259
937,0.0227
938,0.0190
939,0.0160
940,0.0154
941,0.0132
942,0.0114

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.4736
411,0.5479
412,0.7006
413,0.5294
414,0.6499
415,0.6467
416,0.6663
417,0.6572
418,0.6543
419,0.6258
420,0.7524
421,0.7237
422,0.6812
423,0.6657
424,0.6255
425,0.6098
426,0.6661
427,0.6246
428,0.5980
429,0.5222
430,0.6115
431,0.5230
432,0.5246
433,0.4489
434,0.5263
435,0.4799
436,0.4586
437,0.4633
438,0.4682
439,0.4270
440,0.4317
441,0.4067
442,0.3944
443,0.4281
444,0.3787
445,0.3918
446,0.3486
447,0.3046
448,0.2961
449,0.2746
450,0.2353
451,0.2322
452,0.1962
453,0.1804
454,0.1640
455,0.1628
456,0.1473
457,0.1406
458,0.1331
459,0.1336
460,0.1257
461,0.1235
462,0.1352
463,0.1284
464,0.1293
465,0.1193
466,0.1332
467,0.1279
468,0.1279
469,0.1222
470,0.1182
471,0.1196
472,0.1136
473,0.1092
474,0.1123
475,0.1023
476,0.0963
477,0.0964
478,0.0986
479,0.0982
480,0.1028
481,0.0975
482,0.1004
483,0.0988
484,0.1004
485,0.1074
486,0.1057
487,0.1065
488,0.1065
489,0.1094
490,0.1117
491,0.1115
492,0.1060
493,0.1124
494,0.1093
495,0.1083
496,0.1051
497,0.1066
498,0.1040
499,0.1047
500,0.1039
501,0.0994
502,0.1007
503,0.0986
504,0.1026
505,0.0995
506,0.1002
507,0.0996
508,0.1008
509,0.0998
510,0.0987
511,0.1022
512,0.0998
513,0.1004
514,0.0974
515,0.0948
516,0.0938
517,0.0922
518,0.0894
519,0.0884
520,0.0877
521,0.0899
522,0.0886
523,0.0883
524,0.0860
525,0.0847
526,0.0853
527,0.0839
528,0.0815
529,0.0827
530,0.0822
531,0.0810
532,0.0792
533,0.0799
534,0.0796
535,0.0784
536,0.0777
537,0.0778
538,0.0772
539,0.0763
540,0.0758
541,0.0750
542,0.0732
543,0.0748
544,0.0749
545,0.0740
546,0.0742
547,0.0736
548,0.0727
549,0.0715
550,0.0702
551,0.0698
552,0.0679
553,0.0678
554,0.0649
555,0.0663
556,0.0626
557,0.0621
558,0.0601
559,0.0601
560,0.0575
561,0.0559
562,0.0535
563,0.0535
564,0.0511
565,0.0497
566,0.0491
567,0.0469
568,0.0459
569,0.0470
570,0.0469
571,0.0434
572,0.0442
573,0.0434
574,0.0436
575,0.0443
576,0.0451
577,0.0439
578,0.0447
579,0.0435
580,0.0451
581,0.0457
582,0.0474
583,0.0469
584,0.0506
585,0.0498
586,0.0496
587,0.0514
588,0.0533
589,0.0550
590,0.0565
591,0.0583
592,0.0613
593,0.0614
594,0.0643
595,0.0681
596,0.0699
597,0.0719
598,0.0726
599,0.0763
600,0.0800
601,0.0832
602,0.0839
603,0.0864
604,0.0899
605,0.0913
606,0.0939
607,0.0968
608,0.0982
609,0.1004
610,0.1024
611,0.1053
612,0.1065
613,0.1104
614,0.1095
615,0.1116
616,0.1143
617,0.1187
618,0.1194
619,0.1199
620,0.1232
621,0.1243
622,0.1284
623,0.1290
624,0.1304
625,0.1365
626,0.1348
627,0.1379
628,0.1396
629,0.1440
630,0.1440
631,0.1458
632,0.1498
633,0.1512
634,0.1516
635,0.1536
636,0.1547
637,0.1578
638,0.1601
639,0.1630
640,0.1658
641,0.1689
642,0.1681
643,0.1718
644,0.1715
645,0.1751
646,0.1774
647,0.1775
648,0.1802
649,0.1821
650,0.1840
651,0.1862
652,0.1863
653,0.1886
654,0.1886
655,0.1912
656,0.1910
657,0.1932
658,0.1907
659,0.1937
660,0.1949
661,0.1943
662,0.1932
663,0.1964
664,0.1913
665,0.1962
666,0.1918
667,0.1912
668,0.1916
669,0.1918
670,0.1897
671,0.1868
672,0.1844
673,0.1830
674,0.1837
675,0.1835
676,0.1786
677,0.1752
678,0.1731
679,0.1698
680,0.1660
681,0.1672
682,0.1679
683,0.1630
684,0.1590
685,0.1578
686,0.1541
687,0.1505
688,0.1507
689,0.1473
690,0.1448
691,0.1433
692,0.1428
693,0.1392
694,0.1369
695,0.1347
696,0.1311
697,0.1294
698,0.1274
699,0.1260
700,0.1242
701,0.1239
702,0.1197
703,0.1193
704,0.1142
705,0.1135
706,0.1122
707,0.1104
708,0.1073
709,0.1038
710,0.1048
711,0.1014
712,0.1006
713,0.0991
714,0.0957
715,0.0933
716,0.0920
717,0.0886
718,0.0869
719,0.0842
720,0.0815
721,0.0798
722,0.0780
723,0.0751
724,0.0729
725,0.0729
726,0.0710
727,0.0693
728,0.0696
729,0.0670
730,0.0652
731,0.0645
732,0.0620
733,0.0610
734,0.0585
735,0.0572
736,0.0561
737,0.0548
738,0.0541
739,0.0513
740,0.0510
741,0.0488
742,0.0468
743,0.0454
744,0.0432
745,0.0420
746,0.0414
747,0.0400
748,0.0390
749,0.0366
750,0.0361
751,0.0360
752,0.0339
753,0.0325
754,0.0317
755,0.0305
756,0.0302
757,0.0285
758,0.0283
759,0.0268
760,0.0260
761,0.0260
762,0.0245
763,0.0243
764,0.0240
765,0.0237
766,0.0218
767,0.0233
768,0.0220
769,0.0231
770,0.0221
771,0.0209
772,0.0212
773,0.0215
774,0.0203
775,0.0203
776,0.0197
777,0.0210
778,0.0213
779,0.0211
780,0.0212
781,0.0206
782,0.0218
783,0.0210
784,0.0213
785,0.0216
786,0.0219
787,0.0206
788,0.0206
789,0.0215
790,0.0234
791,0.0231
792,0.0241
793,0.0249
794,0.0258
795,0.0262
796,0.0268
797,0.0271
798,0.0285
799,0.0280
800,0.0301
801,0.0297
802,0.0312
803,0.0321
804,0.0326
805,0.0333
806,0.0347
807,0.0348
808,0.0344
809,0.0350
810,0.0348
811,0.0373
812,0.0369
813,0.0372
814,0.0388
815,0.0396
816,0.0387
817,0.0399
818,0.0418
819,0.0411
820,0.0410
821,0.0425
822,0.0421
823,0.0425
824,0.0446
825,0.0443
826,0.0445
827,0.0455
828,0.0461
829,0.0467
830,0.0467
831,0.0475
832,0.0484
833,0.0479
834,0.0486
835,0.0496
836,0.0489
837,0.0499
838,0.0507
839,0.0514
840,0.0505
841,0.0518
842,0.0523
843,0.0522
844,0.0531
845,0.0519
846,0.0520
847,0.0537
848,0.0533
849,0.0537
850,0.0524
851,0.0538
852,0.0546
853,0.0549
854,0.0540
855,0.0542
856,0.0559
857,0.0538
858,0.0547
859,0.0538
860,0.0551
861,0.0549
862,0.0543
863,0.0551
864,0.0553
865,0.0540
866,0.0538
867,0.0551
868,0.0536
869,0.0535
870,0.0527
871,0.0521
872,0.0509
873,0.0508
874,0.0506
875,0.0522
876,0.0488
877,0.0518
878,0.0510
879,0.0502
880,0.0524
881,0.0534
882,0.0522
883,0.0558
884,0.0547
885,0.0553
886,0.0566
887,0.0577
888,0.0591
889,0.0601
890,0.0596
891,0.0614
892,0.0624
893,0.0622
894,0.0621
895,0.0635
896,0.0624
897,0.0630
898,0.0625
899,0.0624
900,0.0627
901,0.0641
902,0.0637
903,0.0627
904,0.0621
905,0.0631
906,0.0610
907,0.0625
908,0.0611
909,0.0599
910,0.0603
911,0.0600
912,0.0582
913,0.0587
914,0.0568
915,0.0555
916,0.0571
917,0.0560
918,0.0539
919,0.0515
920,0.0523
921,0.0532
922,0.0527
923,0.0528
924,0.0503
925,0.0509
926,0.0492
927,0.0485
928,0.0470
929,0.0449
930,0.0453
931,0.0418
932,0.0391
933,0.0374
934,0.0351
935,0.0322
936,0.0276
937,0.0241
938,0.0199
939,0.0178
940,0.0157
941,0.0135
942,0.0129

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.9201
407,0.0000
408,0.0000
409,1.0000
410,0.7360
411,0.6858
412,0.7851
413,0.6991
414,0.7045
415,0.6592
416,0.8800
417,0.6866
418,0.6290
419,0.6660
420,0.7125
421,0.6451
422,0.5991
423,0.6040
424,0.5174
425,0.5328
426,0.5951
427,0.5320
428,0.5411
429,0.3828
430,0.4500
431,0.4053
432,0.3894
433,0.3549
434,0.3396
435,0.3435
436,0.3337
437,0.3204
438,0.3107
439,0.2953
440,0.3321
441,0.2855
442,0.2832
443,0.2812
444,0.2695
445,0.2868
446,0.2525
447,0.2211
448,0.2345
449,0.1905
450,0.1885
451,0.1730
452,0.1619
453,0.1490
454,0.1433
455,0.1523
456,0.1466
457,0.1394
458,0.1480
459,0.1508
460,0.1503
461,0.1476
462,0.1565
463,0.1605
464,0.1670
465,0.1581
466,0.1749
467,0.1763
468,0.1703
469,0.1731
470,0.1685
471,0.1740
472,0.1719
473,0.1697
474,0.1578
475,0.1541
476,0.1513
477,0.1507
478,0.1432
479,0.1420
480,0.1495
481,0.1408
482,0.1419
483,0.1431
484,0.1447
485,0.1463
486,0.1451
487,0.1418
488,0.1422
489,0.1443
490,0.1425
491,0.1410
492,0.1351
493,0.1366
494,0.1317
495,0.1287
496,0.1210
497,0.1221
498,0.1160
499,0.1170
500,0.1087
501,0.1074
502,0.1045
503,0.1004
504,0.0988
505,0.1005
506,0.0988
507,0.0978
508,0.0951
509,0.0918
510,0.0921
511,0.0927
512,0.0875
513,0.0861
514,0.0843
515,0.0810
516,0.0756
517,0.0728
518,0.0730
519,0.0713
520,0.0675
521,0.0681
522,0.0654
523,0.0638
524,0.0622
525,0.0579
526,0.0587
527,0.0574
528,0.0547
529,0.0541
530,0.0538
531,0.0515
532,0.0498
533,0.0488
534,0.0490
535,0.0482
536,0.0483
537,0.0468
538,0.0458
539,0.0452
540,0.0451
541,0.0451
542,0.0444
543,0.0444
544,0.0444
545,0.0443
546,0.0438
547,0.0444
548,0.0442
549,0.0426
550,0.0432
551,0.0443
552,0.0440
553,0.0422
554,0.0437
555,0.0418
556,0.0431
557,0.0443
558,0.0438
559,0.0453
560,0.0436
561,0.0451
562,0.0460
563,0.0455
564,0.0448
565,0.0464
566,0.0479
567,0.0487
568,0.0493
569,0.0508
570,0.0523
571,0.0518
572,0.0554
573,0.0553
574,0.0578
575,0.0578
576,0.0615
577,0.0636
578,0.0660
579,0.0671
580,0.0694
581,0.0716
582,0.0748
583,0.0754
584,0.0794
585,0.0814
586,0.0857
587,0.0892
588,0.0930
589,0.0940
590,0.0958
591,0.1003
592,0.1050
593,0.1084
594,0.1114
595,0.1148
596,0.1195
597,0.1244
598,0.1250
599,0.1296
600,0.1333
601,0.1379
602,0.1403
603,0.1411
604,0.1440
605,0.1476
606,0.1496
607,0.1532
608,0.1552
609,0.1595
610,0.1596
611,0.1598
612,0.1629
613,0.1624
614,0.1641
615,0.1662
616,0.1658
617,0.1685
618,0.1684
619,0.1695
620,0.1700
621,0.1708
622,0.1689
623,0.1690
624,0.1723
625,0.1756
626,0.1725
627,0.1745
628,0.1741
629,0.1760
630,0.1740
631,0.1738
632,0.1754
633,0.1780
634,0.1752
635,0.1751
636,0.1770
637,0.1748
638,0.1775
639,0.1760
640,0.1763
641,0.1779
642,0.1769
643,0.1796
644,0.1763
645,0.1778
646,0.1783
647,0.1767
648,0.1774
649,0.1780
650,0.1778
651,0.1764
652,0.1742
653,0.1735
654,0.1743
655,0.1716
656,0.1720
657,0.1696
658,0.1700
659,0.1681
660,0.1705
661,0.1676
662,0.1652
663,0.1625
664,0.1599
665,0.1626
666,0.1576
667,0.1545
668,0.1535
669,0.1512
670,0.1459
671,0.1439
672,0.1422
673,0.1401
674,0.1382
675,0.1345
676,0.1311
677,0.1253
678,0.1247
679,0.1203
680,0.1185
681,0.1178
682,0.1136
683,0.1105
684,0.1057
685,0.1050
686,0.1006
687,0.0995
688,0.0977
689,0.0923
690,0.0902
691,0.0885
692,0.0859
693,0.0863
694,0.0826
695,0.0780
696,0.0764
697,0.0749
698,0.0728
699,0.0719
700,0.0692
701,0.0691
702,0.0677
703,0.0655
704,0.0614
705,0.0620
706,0.0585
707,0.0573
708,0.0568
709,0.0542
710,0.0527
711,0.0506
712,0.0497
713,0.0478
714,0.0474
715,0.0447
716,0.0457
717,0.0440
718,0.0403
719,0.0403
720,0.0387
721,0.0379
722,0.0358
723,0.0349
724,0.0347
725,0.0348
726,0.0335
727,0.0323
728,0.0324
729,0.0321
730,0.0294
731,0.0301
732,0.0299
733,0.0300
734,0.0286
735,0.0273
736,0.0285
737,0.0283
738,0.0282
739,0.0276
740,0.0259
741,0.0270
742,0.0269
743,0.0261
744,0.0248
745,0.0249
746,0.0243
747,0.0242
748,0.0253
749,0.0245
750,0.0252
751,0.0250
752,0.0236
753,0.0251
754,0.0251
755,0.0248
756,0.0261
757,0.0254
758,0.0255
759,0.0257
760,0.0258
761,0.0258
762,0.0260
763,0.0270
764,0.0279
765,0.0291
766,0.0271
767,0.0290
768,0.0300
769,0.0300
770,0.0321
771,0.0318
772,0.0328
773,0.0324
774,0.0326
775,0.0348
776,0.0350
777,0.0350
778,0.0362
779,0.0365
780,0.0365
781,0.0379
782,0.0405
783,0.0399
784,0.0403
785,0.0410
786,0.0419
787,0.0408
788,0.0423
789,0.0435
790,0.0465
791,0.0468
792,0.0471
793,0.0484
794,0.0510
795,0.0520
796,0.0536
797,0.0547
798,0.0546
799,0.0552
800,0.0595
801,0.0599
802,0.0602
803,0.0625
804,0.0620
805,0.0642
806,0.0656
807,0.0658
808,0.0653
809,0.0667
810,0.0677
811,0.0699
812,0.0694
813,0.0705
814,0.0707
815,0.0726
816,0.0716
817,0.0732
818,0.0736
819,0.0712
820,0.0734
821,0.0765
822,0.0741
823,0.0748
824,0.0769
825,0.0746
826,0.0766
827,0.0778
828,0.0764
829,0.0786
830,0.0786
831,0.0771
832,0.0785
833,0.0780
834,0.0764
835,0.0777
836,0.0782
837,0.0778
838,0.0782
839,0.0782
840,0.0767
841,0.0764
842,0.0768
843,0.0783
844,0.0768
845,0.0787
846,0.0752
847,0.0758
848,0.0745
849,0.0748
850,0.0753
851,0.0754
852,0.0755
853,0.0750
854,0.0747
855,0.0750
856,0.0757
857,0.0730
858,0.0737
859,0.0723
860,0.0730
861,0.0717
862,0.0710
863,0.0701
864,0.0690
865,0.0693
866,0.0702
867,0.0684
868,0.0679
869,0.0674
870,0.0660
871,0.0651
872,0.0634
873,0.0619
874,0.0611
875,0.0605
876,0.0595
877,0.0620
878,0.0594
879,0.0611
880,0.0621
881,0.0621
882,0.0613
883,0.0636
884,0.0620
885,0.0647
886,0.0670
887,0.0661
888,0.0656
889,0.0660
890,0.0676
891,0.0676
892,0.0666
893,0.0667
894,0.0669
895,0.0686
896,0.0679
897,0.0665
898,0.0661
899,0.0656
900,0.0652
901,0.0660
902,0.0653
903,0.0641
904,0.0643
905,0.0639
906,0.0641
907,0.0609
908,0.0610
909,0.0596
910,0.0618
911,0.0587
912,0.0561
913,0.0558
914,0.0560
915,0.0571
916,0.0544
917,0.0540
918,0.0524
919,0.0507
920,0.0503
921,0.0509
922,0.0510
923,0.0492
924,0.0490
925,0.0474
926,0.0472
927,0.0460
928,0.0426
929,0.0413
930,0.0401
931,0.0375
932,0.0358
933,0.0335
934,0.0318
935,0.0271
936,0.0236
937,0.0210
938,0.0172
939,0.0144
940,0.0133
941,0.0110
942,0.0119

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0374
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.8601
407,0.0000
408,0.0000
409,1.0000
410,0.5735
411,0.5267
412,0.6052
413,0.5398
414,0.5689
415,0.4519
416,0.4604
417,0.4383
418,0.4553
419,0.4685
420,0.4571
421,0.4576
422,0.3742
423,0.3530
424,0.2935
425,0.3241
426,0.2970
427,0.3183
428,0.2880
429,0.2350
430,0.2519
431,0.2733
432,0.2813
433,0.2579
434,0.2526
435,0.2854
436,0.2681
437,0.2740
438,0.2931
439,0.2681
440,0.3221
441,0.2960
442,0.2811
443,0.3116
444,0.3034
445,0.3178
446,0.3053
447,0.2775
448,0.2714
449,0.2759
450,0.2594
451,0.2516
452,0.2471
453,0.2247
454,0.2122
455,0.2052
456,0.2173
457,0.2085
458,0.2201
459,0.2154
460,0.2191
461,0.2210
462,0.2345
463,0.2412
464,0.2339
465,0.2255
466,0.2490
467,0.2442
468,0.2383
469,0.2326
470,0.2288
471,0.2261
472,0.2201
473,0.2128
474,0.2018
475,0.1965
476,0.1840
477,0.1804
478,0.1683
479,0.1691
480,0.1719
481,0.1615
482,0.1593
483,0.1533
484,0.1528
485,0.1505
486,0.1461
487,0.1460
488,0.1366
489,0.1395
490,0.1332
491,0.1280
492,0.1200
493,0.1203
494,0.1118
495,0.1080
496,0.1003
497,0.1016
498,0.0953
499,0.0914
500,0.0854
501,0.0825
502,0.0793
503,0.0742
504,0.0717
505,0.0708
506,0.0696
507,0.0671
508,0.0657
509,0.0625
510,0.0614
511,0.0592
512,0.0561
513,0.0550
514,0.0518
515,0.0494
516,0.0472
517,0.0444
518,0.0440
519,0.0409
520,0.0383
521,0.0390
522,0.0386
523,0.0365
524,0.0351
525,0.0339
526,0.0345
527,0.0328
528,0.0323
529,0.0329
530,0.0326
531,0.0316
532,0.0308
533,0.0318
534,0.0312
535,0.0316
536,0.0323
537,0.0341
538,0.0335
539,0.0354
540,0.0362
541,0.0368
542,0.0370
543,0.0385
544,0.0421
545,0.0437
546,0.0442
547,0.0458
548,0.0477
549,0.0483
550,0.0498
551,0.0514
552,0.0545
553,0.0562
554,0.0583
555,0.0600
556,0.0604
557,0.0625
558,0.0655
559,0.0686
560,0.0683
561,0.0692
562,0.0719
563,0.0747
564,0.0752
565,0.0786
566,0.0814
567,0.0821
568,0.0847
569,0.0873
570,0.0884
571,0.0901
572,0.0939
573,0.0937
574,0.0959
575,0.1015
576,0.1039
577,0.1064
578,0.1075
579,0.1105
580,0.1117
581,0.1166
582,0.1193
583,0.1213
584,0.1247
585,0.1265
586,0.1313
587,0.1308
588,0.1364
589,0.1394
590,0.1415
591,0.1438
592,0.1487
593,0.1523
594,0.1561
595,0.1593
596,0.1602
597,0.1636
598,0.1651
599,0.1723
600,0.1736
601,0.1768
602,0.1754
603,0.1800
604,0.1805
605,0.1835
606,0.1842
607,0.1873
608,0.1867
609,0.1842
610,0.1847
611,0.1859
612,0.1842
613,0.1847
614,0.1808
615,0.1817
616,0.1801
617,0.1812
618,0.1806
619,0.1780
620,0.1749
621,0.1769
622,0.1762
623,0.1730
624,0.1711
625,0.1697
626,0.1687
627,0.1684
628,0.1655
629,0.1629
630,0.1612
631,0.1581
632,0.1578
633,0.1569
634,0.1561
635,0.1542
636,0.1510
637,0.1499
638,0.1507
639,0.1470
640,0.1469
641,0.1453
642,0.1419
643,0.1434
644,0.1407
645,0.1398
646,0.1379
647,0.1368
648,0.1352
649,0.1341
650,0.1310
651,0.1307
652,0.1286
653,0.1234
654,0.1261
655,0.1221
656,0.1209
657,0.1177
658,0.1146
659,0.1130
660,0.1125
661,0.1105
662,0.1085
663,0.1036
664,0.1017
665,0.1013
666,0.0992
667,0.0968
668,0.0943
669,0.0910
670,0.0885
671,0.0855
672,0.0836
673,0.0807
674,0.0793
675,0.0768
676,0.0734
677,0.0720
678,0.0687
679,0.0644
680,0.0625
681,0.0620
682,0.0600
683,0.0565
684,0.0543
685,0.0518
686,0.0513
687,0.0492
688,0.0483
689,0.0457
690,0.0442
691,0.0425
692,0.0418
693,0.0392
694,0.0386
695,0.0387
696,0.0363
697,0.0349
698,0.0334
699,0.0342
700,0.0331
701,0.0325
702,0.0316
703,0.0306
704,0.0283
705,0.0306
706,0.0274
707,0.0274
708,0.0280
709,0.0276
710,0.0271
711,0.0272
712,0.0270
713,0.0243
714,0.0268
715,0.0254
716,0.0264
717,0.0265
718,0.0243
719,0.0253
720,0.0253
721,0.0256
722,0.0249
723,0.0253
724,0.0262
725,0.0269
726,0.0281
727,0.0271
728,0.0291
729,0.0285
730,0.0292
731,0.0295
732,0.0303
733,0.0310
734,0.0312
735,0.0323
736,0.0334
737,0.0340
738,0.0359
739,0.0351
740,0.0343
741,0.0357
742,0.0373
743,0.0364
744,0.0370
745,0.0395
746,0.0405
747,0.0397
748,0.0428
749,0.0419
750,0.0433
751,0.0441
752,0.0439
753,0.0455
754,0.0470
755,0.0466
756,0.0479
757,0.0489
758,0.0494
759,0.0488
760,0.0514
761,0.0515
762,0.0510
763,0.0534
764,0.0544
765,0.0559
766,0.0567
767,0.0570
768,0.0601
769,0.0601
770,0.0607
771,0.0609
772,0.0614
773,0.0640
774,0.0627
775,0.0648
776,0.0647
777,0.0667
778,0.0673
779,0.0677
780,0.0681
781,0.0682
782,0.0709
783,0.0710
784,0.0704
785,0.0723
786,0.0754
787,0.0724
788,0.0743
789,0.0756
790,0.0769
791,0.0789
792,0.0795
793,0.0808
794,0.0827
795,0.0850
796,0.0874
797,0.0874
798,0.0886
799,0.0900
800,0.0915
801,0.0934
802,0.0931
803,0.0953
804,0.0962
805,0.0984
806,0.0991
807,0.0991
808,0.0992
809,0.0989
810,0.0996
811,0.1004
812,0.1008
813,0.1002
814,0.1012
815,0.1018
816,0.1002
817,0.0993
818,0.0998
819,0.0990
820,0.0998
821,0.1022
822,0.1007
823,0.1011
824,0.1014
825,0.0988
826,0.1021
827,0.0996
828,0.0992
829,0.0998
830,0.0985
831,0.0986
832,0.0993
833,0.0960
834,0.0958
835,0.0977
836,0.0951
837,0.0969
838,0.0961
839,0.0948
840,0.0946
841,0.0939
842,0.0925
843,0.0916
844,0.0923
845,0.0897
846,0.0896
847,0.0879
848,0.0878
849,0.0856
850,0.0865
851,0.0857
852,0.0867
853,0.0851
854,0.0828
855,0.0826
856,0.0846
857,0.0832
858,0.0798
859,0.0793
860,0.0781
861,0.0778
862,0.0779
863,0.0769
864,0.0744
865,0.0728
866,0.0734
867,0.0733
868,0.0720
869,0.0707
870,0.0673
871,0.0669
872,0.0673
873,0.0624
874,0.0627
875,0.0617
876,0.0603
877,0.0620
878,0.0603
879,0.0597
880,0.0614
881,0.0615
882,0.0584
883,0.0616
884,0.0615
885,0.0624
886,0.0620
887,0.0625
888,0.0626
889,0.0622
890,0.0642
891,0.0626
892,0.0640
893,0.0631
894,0.0624
895,0.0618
896,0.0616
897,0.0593
898,0.0607
899,0.0602
900,0.0588
901,0.0587
902,0.0581
903,0.0578
904,0.0568
905,0.0557
906,0.0549
907,0.0536
908,0.0536
909,0.0518
910,0.0526
911,0.0510
912,0.0479
913,0.0485
914,0.0474
915,0.0458
916,0.0461
917,0.0447
918,0.0443
919,0.0427
920,0.0399
921,0.0418
922,0.0408
923,0.0408
924,0.0386
925,0.0378
926,0.0366
927,0.0366
928,0.0340
929,0.0334
930,0.0321
931,0.0298
932,0.0263
933,0.0258
934,0.0239
935,0.0215
936,0.0187
937,0.0155
938,0.0128
939,0.0114
940,0.0094
941,0.0080
942,0.0070

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0374
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.8401
407,0.0000
408,0.0000
409,1.0000
410,0.3125
411,0.2494
412,0.3715
413,0.3822
414,0.3486
415,0.3436
416,0.3539
417,0.2912
418,0.3328
419,0.3368
420,0.3679
421,0.2997
422,0.3310
423,0.3712
424,0.2466
425,0.2892
426,0.3066
427,0.3557
428,0.3334
429,0.2624
430,0.3883
431,0.3329
432,0.3731
433,0.3725
434,0.3977
435,0.4043
436,0.3724
437,0.4424
438,0.4070
439,0.3869
440,0.4650
441,0.4274
442,0.4146
443,0.4592
444,0.4533
445,0.4535
446,0.4364
447,0.4220
448,0.4001
449,0.3733
450,0.3613
451,0.3395
452,0.3297
453,0.3056
454,0.2812
455,0.2967
456,0.2588
457,0.2627
458,0.2618
459,0.2724
460,0.2554
461,0.2662
462,0.2527
463,0.2475
464,0.2483
465,0.2368
466,0.2512
467,0.2448
468,0.2390
469,0.2336
470,0.2255
471,0.2253
472,0.2088
473,0.1980
474,0.1859
475,0.1748
476,0.1640
477,0.1572
478,0.1493
479,0.1405
480,0.1446
481,0.1313
482,0.1272
483,0.1222
484,0.1243
485,0.1163
486,0.1104
487,0.1076
488,0.1039
489,0.1037
490,0.0960
491,0.0887
492,0.0870
493,0.0852
494,0.0787
495,0.0752
496,0.0666
497,0.0663
498,0.0614
499,0.0615
500,0.0561
501,0.0519
502,0.0502
503,0.0458
504,0.0477
505,0.0451
506,0.0454
507,0.0440
508,0.0418
509,0.0394
510,0.0396
511,0.0385
512,0.0363
513,0.0357
514,0.0359
515,0.0346
516,0.0338
517,0.0314
518,0.0304
519,0.0302
520,0.0308
521,0.0313
522,0.0316
523,0.0312
524,0.0325
525,0.0321
526,0.0339
527,0.0343
528,0.0339
529,0.0353
530,0.0368
531,0.0383
532,0.0393
533,0.0414
534,0.0426
535,0.0438
536,0.0455
537,0.0485
538,0.0504
539,0.0528
540,0.0555
541,0.0573
542,0.0605
543,0.0643
544,0.0684
545,0.0690
546,0.0736
547,0.0761
548,0.0779
549,0.0816
550,0.0838
551,0.0854
552,0.0889
553,0.0923
554,0.0941
555,0.0964
556,0.0970
557,0.1014
558,0.1024
559,0.1060
560,0.1064
561,0.1102
562,0.1108
563,0.1135
564,0.1156
565,0.1159
566,0.1203
567,0.1189
568,0.1190
569,0.1215
570,0.1237
571,0.1237
572,0.1261
573,0.1288
574,0.1285
575,0.1338
576,0.1320
577,0.1343
578,0.1365
579,0.1373
580,0.1411
581,0.1403
582,0.1427
583,0.1437
584,0.1465
585,0.1493
586,0.1490
587,0.1513
588,0.1537
589,0.1531
590,0.1558
591,0.1572
592,0.1584
593,0.1596
594,0.1642
595,0.1649
596,0.1657
597,0.1676
598,0.1685
599,0.1685
600,0.1721
601,0.1738
602,0.1715
603,0.1742
604,0.1741
605,0.1727
606,0.1728
607,0.1724
608,0.1711
609,0.1685
610,0.1671
611,0.1679
612,0.1627
613,0.1621
614,0.1585
615,0.1561
616,0.1549
617,0.1540
618,0.1511
619,0.1477
620,0.1451
621,0.1433
622,0.1410
623,0.1351
624,0.1326
625,0.1320
626,0.1313
627,0.1278
628,0.1241
629,0.1230
630,0.1199
631,0.1156
632,0.1157
633,0.1136
634,0.1097
635,0.1089
636,0.1059
637,0.1029
638,0.1010
639,0.0994
640,0.0991
641,0.0969
642,0.0947
643,0.0912
644,0.0895
645,0.0900
646,0.0869
647,0.0848
648,0.0835
649,0.0827
650,0.0789
651,0.0792
652,0.0750
653,0.0735
654,0.0714
655,0.0710
656,0.0708
657,0.0688
658,0.0662
659,0.0643
660,0.0632
661,0.0631
662,0.0596
663,0.0578
664,0.0558
665,0.0580
666,0.0537
667,0.0512
668,0.0515
669,0.0503
670,0.0479
671,0.0461
672,0.0428
673,0.0426
674,0.0426
675,0.0413
676,0.0383
677,0.0373
678,0.0363
679,0.0361
680,0.0338
681,0.0342
682,0.0336
683,0.0321
684,0.0309
685,0.0306
686,0.0314
687,0.0297
688,0.0305
689,0.0289
690,0.0282
691,0.0295
692,0.0280
693,0.0285
694,0.0273
695,0.0284
696,0.0275
697,0.0279
698,0.0285
699,0.0291
700,0.0289
701,0.0296
702,0.0313
703,0.0310
704,0.0300
705,0.0312
706,0.0330
707,0.0329
708,0.0335
709,0.0354
710,0.0359
711,0.0359
712,0.0358
713,0.0367
714,0.0403
715,0.0384
716,0.0402
717,0.0420
718,0.0409
719,0.0428
720,0.0431
721,0.0443
722,0.0447
723,0.0455
724,0.0464
725,0.0483
726,0.0498
727,0.0502
728,0.0528
729,0.0551
730,0.0543
731,0.0554
732,0.0567
733,0.0591
734,0.0605
735,0.0620
736,0.0632
737,0.0636
738,0.0663
739,0.0669
740,0.0655
741,0.0659
742,0.0688
743,0.0689
744,0.0703
745,0.0726
746,0.0743
747,0.0726
748,0.0767
749,0.0748
750,0.0770
751,0.0769
752,0.0775
753,0.0791
754,0.0807
755,0.0805
756,0.0820
757,0.0833
758,0.0838
759,0.0834
760,0.0838
761,0.0853
762,0.0859
763,0.0873
764,0.0894
765,0.0888
766,0.0884
767,0.0914
768,0.0922
769,0.0905
770,0.0925
771,0.0914
772,0.0939
773,0.0931
774,0.0940
775,0.0942
776,0.0951
777,0.0964
778,0.0959
779,0.0987
780,0.0967
781,0.0970
782,0.0991
783,0.0982
784,0.0980
785,0.0984
786,0.0993
787,0.0961
788,0.0974
789,0.0997
790,0.1016
791,0.1026
792,0.1022
793,0.1058
794,0.1064
795,0.1066
796,0.1093
797,0.1107
798,0.1107
799,0.1109
800,0.1130
801,0.1132
802,0.1133
803,0.1142
804,0.1180
805,0.1168
806,0.1178
807,0.1178
808,0.1144
809,0.1157
810,0.1181
811,0.1185
812,0.1171
813,0.1151
814,0.1145
815,0.1154
816,0.1159
817,0.1143
818,0.1118
819,0.1124
820,0.1113
821,0.1123
822,0.1110
823,0.1117
824,0.1116
825,0.1097
826,0.1086
827,0.1082
828,0.1059
829,0.1066
830,0.1059
831,0.1055
832,0.1048
833,0.1022
834,0.1023
835,0.1005
836,0.1011
837,0.1004
838,0.0965
839,0.0983
840,0.0954
841,0.0942
842,0.0934
843,0.0927
844,0.0928
845,0.0912
846,0.0884
847,0.0886
848,0.0851
849,0.0843
850,0.0847
851,0.0844
852,0.0825
853,0.0836
854,0.0793
855,0.0802
856,0.0801
857,0.0769
858,0.0760
859,0.0738
860,0.0724
861,0.0737
862,0.0721
863,0.0711
864,0.0676
865,0.0681
866,0.0659
867,0.0648
868,0.0637
869,0.0629
870,0.0615
871,0.0597
872,0.0584
873,0.0569
874,0.0546
875,0.0531
876,0.0539
877,0.0538
878,0.0528
879,0.0521
880,0.0524
881,0.0518
882,0.0515
883,0.0526
884,0.0513
885,0.0529
886,0.0530
887,0.0527
888,0.0518
889,0.0521
890,0.0542
891,0.0506
892,0.0527
893,0.0516
894,0.0511
895,0.0520
896,0.0501
897,0.0506
898,0.0494
899,0.0489
900,0.0468
901,0.0461
902,0.0464
903,0.0450
904,0.0436
905,0.0441
906,0.0436
907,0.0430
908,0.0404
909,0.0404
910,0.0393
911,0.0388
912,0.0371
913,0.0375
914,0.0356
915,0.0352
916,0.0349
917,0.0330
918,0.0327
919,0.0296
920,0.0299
921,0.0305
922,0.0298
923,0.0287
924,0.0277
925,0.0268
926,0.0255
927,0.0252
928,0.0238
929,0.0221
930,0.0226
931,0.0206
932,0.0179
933,0.0170
934,0.0169
935,0.0144
936,0.0118
937,0.0098
938,0.0079
939,0.0057
940,0.0061
941,0.0057
942,0.0035

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0374
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,1.0000
407,0.0000
408,0.0000
409,1.0000
410,0.4249
411,0.4060
412,0.4825
413,0.4826
414,0.4449
415,0.4484
416,0.4483
417,0.4626
418,0.4501
419,0.4567
420,0.5071
421,0.4795
422,0.5055
423,0.4852
424,0.4789
425,0.5157
426,0.5741
427,0.5660
428,0.5510
429,0.4939
430,0.4897
431,0.5034
432,0.5009
433,0.4874
434,0.5143
435,0.5581
436,0.5162
437,0.5467
438,0.5284
439,0.5169
440,0.5678
441,0.5047
442,0.5261
443,0.5269
444,0.4911
445,0.5137
446,0.4716
447,0.4379
448,0.4261
449,0.4059
450,0.3708
451,0.3353
452,0.3298
453,0.2937
454,0.2647
455,0.2601
456,0.2547
457,0.2327
458,0.2246
459,0.2167
460,0.2198
461,0.2170
462,0.2086
463,0.2035
464,0.1940
465,0.1850
466,0.1992
467,0.1849
468,0.1779
469,0.1693
470,0.1667
471,0.1665
472,0.1422
473,0.1429
474,0.1334
475,0.1299
476,0.1159
477,0.1106
478,0.1042
479,0.0977
480,0.0998
481,0.0930
482,0.0858
483,0.0844
484,0.0833
485,0.0831
486,0.0786
487,0.0773
488,0.0721
489,0.0692
490,0.0675
491,0.0688
492,0.0629
493,0.0650
494,0.0603
495,0.0587
496,0.0509
497,0.0549
498,0.0512
499,0.0517
500,0.0491
501,0.0478
502,0.0481
503,0.0443
504,0.0462
505,0.0447
506,0.0447
507,0.0446
508,0.0459
509,0.0449
510,0.0438
511,0.0463
512,0.0458
513,0.0468
514,0.0452
515,0.0460
516,0.0475
517,0.0459
518,0.0458
519,0.0462
520,0.0475
521,0.0514
522,0.0502
523,0.0507
524,0.0529
525,0.0546
526,0.0574
527,0.0566
528,0.0586
529,0.0608
530,0.0633
531,0.0661
532,0.0668
533,0.0689
534,0.0727
535,0.0735
536,0.0786
537,0.0795
538,0.0826
539,0.0864
540,0.0885
541,0.0915
542,0.0932
543,0.0953
544,0.1038
545,0.1039
546,0.1075
547,0.1118
548,0.1143
549,0.1148
550,0.1176
551,0.1181
552,0.1228
553,0.1266
554,0.1253
555,0.1287
556,0.1292
557,0.1326
558,0.1315
559,0.1331
560,0.1323
561,0.1344
562,0.1325
563,0.1321
564,0.1362
565,0.1337
566,0.1324
567,0.1359
568,0.1325
569,0.1346
570,0.1351
571,0.1322
572,0.1331
573,0.1339
574,0.1304
575,0.1342
576,0.1322
577,0.1320
578,0.1339
579,0.1315
580,0.1312
581,0.1313
582,0.1319
583,0.1328
584,0.1319
585,0.1319
586,0.1283
587,0.1281
588,0.1321
589,0.1312
590,0.1322
591,0.1306
592,0.1295
593,0.1291
594,0.1307
595,0.1312
596,0.1319
597,0.1324
598,0.1309
599,0.1307
600,0.1296
601,0.1292
602,0.1299
603,0.1272
604,0.1270
605,0.1275
606,0.1249
607,0.1238
608,0.1213
609,0.1186
610,0.1166
611,0.1160
612,0.1125
613,0.1102
614,0.1066
615,0.1051
616,0.1014
617,0.1019
618,0.0981
619,0.0948
620,0.0930
621,0.0901
622,0.0880
623,0.0849
624,0.0828
625,0.0815
626,0.0806
627,0.0781
628,0.0749
629,0.0728
630,0.0712
631,0.0700
632,0.0677
633,0.0658
634,0.0633
635,0.0621
636,0.0610
637,0.0595
638,0.0589
639,0.0575
640,0.0583
641,0.0561
642,0.0551
643,0.0548
644,0.0528
645,0.0516
646,0.0507
647,0.0496
648,0.0482
649,0.0478
650,0.0480
651,0.0469
652,0.0456
653,0.0448
654,0.0457
655,0.0460
656,0.0464
657,0.0453
658,0.0430
659,0.0433
660,0.0448
661,0.0430
662,0.0419
663,0.0416
664,0.0408
665,0.0438
666,0.0417
667,0.0403
668,0.0423
669,0.0412
670,0.0414
671,0.0406
672,0.0403
673,0.0409
674,0.0400
675,0.0421
676,0.0408
677,0.0402
678,0.0429
679,0.0416
680,0.0416
681,0.0426
682,0.0434
683,0.0426
684,0.0436
685,0.0452
686,0.0455
687,0.0447
688,0.0468
689,0.0464
690,0.0474
691,0.0498
692,0.0507
693,0.0518
694,0.0520
695,0.0524
696,0.0542
697,0.0537
698,0.0547
699,0.0568
700,0.0575
701,0.0602
702,0.0621
703,0.0629
704,0.0620
705,0.0641
706,0.0659
707,0.0659
708,0.0695
709,0.0709
710,0.0728
711,0.0726
712,0.0756
713,0.0756
714,0.0785
715,0.0773
716,0.0801
717,0.0811
718,0.0820
719,0.0822
720,0.0828
721,0.0826
722,0.0838
723,0.0869
724,0.0876
725,0.0890
726,0.0901
727,0.0906
728,0.0932
729,0.0929
730,0.0952
731,0.0978
732,0.0995
733,0.1014
734,0.1023
735,0.1030
736,0.1044
737,0.1052
738,0.1055
739,0.1071
740,0.1050
741,0.1064
742,0.1082
743,0.1106
744,0.1091
745,0.1111
746,0.1105
747,0.1106
748,0.1121
749,0.1121
750,0.1109
751,0.1134
752,0.1125
753,0.1122
754,0.1131
755,0.1134
756,0.1150
757,0.1127
758,0.1138
759,0.1161
760,0.1149
761,0.1140
762,0.1141
763,0.1158
764,0.1152
765,0.1135
766,0.1154
767,0.1155
768,0.1149
769,0.1146
770,0.1154
771,0.1149
772,0.1140
773,0.1142
774,0.1149
775,0.1151
776,0.1166
777,0.1145
778,0.1136
779,0.1152
780,0.1142
781,0.1123
782,0.1136
783,0.1124
784,0.1125
785,0.1119
786,0.1120
787,0.1090
788,0.1097
789,0.1111
790,0.1125
791,0.1129
792,0.1116
793,0.1152
794,0.1157
795,0.1138
796,0.1151
797,0.1159
798,0.1172
799,0.1138
800,0.1178
801,0.1178
802,0.1181
803,0.1187
804,0.1176
805,0.1183
806,0.1204
807,0.1188
808,0.1174
809,0.1175
810,0.1176
811,0.1166
812,0.1149
813,0.1123
814,0.1130
815,0.1127
816,0.1112
817,0.1093
818,0.1076
819,0.1079
820,0.1078
821,0.1077
822,0.1051
823,0.1033
824,0.1032
825,0.1008
826,0.0998
827,0.1008
828,0.0978
829,0.0981
830,0.0974
831,0.0943
832,0.0958
833,0.0911
834,0.0911
835,0.0906
836,0.0885
837,0.0901
838,0.0851
839,0.0858
840,0.0828
841,0.0834
842,0.0813
843,0.0797
844,0.0792
845,0.0786
846,0.0775
847,0.0751
848,0.0729
849,0.0722
850,0.0701
851,0.0715
852,0.0683
853,0.0672
854,0.0660
855,0.0661
856,0.0664
857,0.0630
858,0.0607
859,0.0610
860,0.0595
861,0.0597
862,0.0579
863,0.0557
864,0.0547
865,0.0540
866,0.0528
867,0.0518
868,0.0499
869,0.0483
870,0.0475
871,0.0465
872,0.0453
873,0.0436
874,0.0421
875,0.0416
876,0.0403
877,0.0410
878,0.0394
879,0.0391
880,0.0395
881,0.0395
882,0.0375
883,0.0388
884,0.0386
885,0.0387
886,0.0380
887,0.0385
888,0.0377
889,0.0384
890,0.0385
891,0.0371
892,0.0370
893,0.0366
894,0.0369
895,0.0361
896,0.0348
897,0.0350
898,0.0330
899,0.0336
900,0.0331
901,0.0326
902,0.0319
903,0.0308
904,0.0305
905,0.0290
906,0.0294
907,0.0282
908,0.0269
909,0.0257
910,0.0257
911,0.0247
912,0.0239
913,0.0241
914,0.0228
915,0.0223
916,0.0221
917,0.0214
918,0.0201
919,0.0191
920,0.0180
921,0.0188
922,0.0187
923,0.0189
924,0.0161
925,0.0163
926,0.0161
927,0.0158
928,0.0144
929,0.0133
930,0.0131
931,0.0122
932,0.0117
933,0.0100
934,0.0102
935,0.0099
936,0.0062
937,0.0060
938,0.0044
939,0.0028
940,0.0032
941,0.0023
942,0.0023

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.1499
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.7200
407,0.0000
408,0.0000
409,1.0000
410,0.5889
411,0.5548
412,0.6974
413,0.5282
414,0.7461
415,0.6254
416,0.7106
417,0.7313
418,0.6849
419,0.7238
420,0.6872
421,0.7050
422,0.6712
423,0.7060
424,0.6596
425,0.6694
426,0.7359
427,0.7248
428,0.6806
429,0.5824
430,0.6795
431,0.6505
432,0.5943
433,0.5680
434,0.5745
435,0.5693
436,0.5552
437,0.5669
438,0.5301
439,0.4997
440,0.5446
441,0.5118
442,0.5220
443,0.4995
444,0.4789
445,0.4999
446,0.4238
447,0.4107
448,0.3705
449,0.3207
450,0.3173
451,0.2878
452,0.2519
453,0.2362
454,0.2041
455,0.1983
456,0.1751
457,0.1728
458,0.1577
459,0.1610
460,0.1504
461,0.1406
462,0.1429
463,0.1430
464,0.1353
465,0.1306
466,0.1355
467,0.1252
468,0.1225
469,0.1168
470,0.1129
471,0.1087
472,0.0958
473,0.0902
474,0.0913
475,0.0797
476,0.0809
477,0.0753
478,0.0670
479,0.0698
480,0.0728
481,0.0642
482,0.0673
483,0.0635
484,0.0637
485,0.0655
486,0.0632
487,0.0626
488,0.0659
489,0.0630
490,0.0637
491,0.0634
492,0.0625
493,0.0638
494,0.0623
495,0.0652
496,0.0590
497,0.0626
498,0.0620
499,0.0622
500,0.0595
501,0.0611
502,0.0601
503,0.0592
504,0.0604
505,0.0634
506,0.0639
507,0.0639
508,0.0664
509,0.0659
510,0.0668
511,0.0693
512,0.0721
513,0.0700
514,0.0721
515,0.0722
516,0.0721
517,0.0731
518,0.0727
519,0.0729
520,0.0753
521,0.0786
522,0.0777
523,0.0801
524,0.0818
525,0.0827
526,0.0853
527,0.0861
528,0.0860
529,0.0903
530,0.0940
531,0.0941
532,0.0935
533,0.0972
534,0.0982
535,0.0988
536,0.1036
537,0.1061
538,0.1080
539,0.1101
540,0.1119
541,0.1162
542,0.1173
543,0.1172
544,0.1233
545,0.1246
546,0.1283
547,0.1287
548,0.1294
549,0.1310
550,0.1312
551,0.1325
552,0.1351
553,0.1374
554,0.1372
555,0.1368
556,0.1370
557,0.1350
558,0.1357
559,0.1340
560,0.1335
561,0.1319
562,0.1307
563,0.1306
564,0.1301
565,0.1279
566,0.1275
567,0.1237
568,0.1208
569,0.1198
570,0.1177
571,0.1155
572,0.1148
573,0.1124
574,0.1103
575,0.1111
576,0.1099
577,0.1083
578,0.1078
579,0.1046
580,0.1047
581,0.1032
582,0.1022
583,0.0992
584,0.1013
585,0.0966
586,0.0933
587,0.0932
588,0.0930
589,0.0911
590,0.0918
591,0.0911
592,0.0886
593,0.0878
594,0.0874
595,0.0876
596,0.0851
597,0.0840
598,0.0833
599,0.0829
600,0.0808
601,0.0801
602,0.0780
603,0.0768
604,0.0769
605,0.0750
606,0.0724
607,0.0729
608,0.0692
609,0.0676
610,0.0680
611,0.0653
612,0.0613
613,0.0611
614,0.0582
615,0.0563
616,0.0561
617,0.0550
618,0.0518
619,0.0506
620,0.0489
621,0.0468
622,0.0457
623,0.0446
624,0.0449
625,0.0440
626,0.0417
627,0.0415
628,0.0392
629,0.0399
630,0.0373
631,0.0372
632,0.0363
633,0.0366
634,0.0358
635,0.0350
636,0.0370
637,0.0359
638,0.0349
639,0.0360
640,0.0368
641,0.0363
642,0.0353
643,0.0357
644,0.0368
645,0.0364
646,0.0373
647,0.0397
648,0.0381
649,0.0389
650,0.0395
651,0.0421
652,0.0404
653,0.0413
654,0.0437
655,0.0432
656,0.0449
657,0.0462
658,0.0453
659,0.0484
660,0.0492
661,0.0500
662,0.0502
663,0.0505
664,0.0519
665,0.0538
666,0.0566
667,0.0568
668,0.0567
669,0.0583
670,0.0583
671,0.0603
672,0.0619
673,0.0629
674,0.0639
675,0.0665
676,0.0667
677,0.0680
678,0.0689
679,0.0699
680,0.0705
681,0.0739
682,0.0747
683,0.0726
684,0.0752
685,0.0781
686,0.0811
687,0.0820
688,0.0831
689,0.0833
690,0.0854
691,0.0866
692,0.0879
693,0.0902
694,0.0915
695,0.0928
696,0.0936
697,0.0942
698,0.0979
699,0.0995
700,0.1008
701,0.1033
702,0.1050
703,0.1056
704,0.1065
705,0.1094
706,0.1105
707,0.1098
708,0.1146
709,0.1161
710,0.1175
711,0.1170
712,0.1213
713,0.1203
714,0.1241
715,0.1231
716,0.1248
717,0.1277
718,0.1255
719,0.1283
720,0.1294
721,0.1271
722,0.1254
723,0.1303
724,0.1310
725,0.1326
726,0.1325
727,0.1352
728,0.1362
729,0.1382
730,0.1376
731,0.1384
732,0.1384
733,0.1428
734,0.1422
735,0.1426
736,0.1446
737,0.1442
738,0.1451
739,0.1470
740,0.1439
741,0.1435
742,0.1456
743,0.1441
744,0.1437
745,0.1438
746,0.1445
747,0.1431
748,0.1441
749,0.1416
750,0.1418
751,0.1415
752,0.1416
753,0.1392
754,0.1394
755,0.1385
756,0.1392
757,0.1379
758,0.1373
759,0.1348
760,0.1356
761,0.1324
762,0.1355
763,0.1335
764,0.1330
765,0.1337
766,0.1308
767,0.1303
768,0.1326
769,0.1295
770,0.1287
771,0.1271
772,0.1268
773,0.1257
774,0.1246
775,0.1261
776,0.1246
777,0.1210
778,0.1186
779,0.1217
780,0.1203
781,0.1186
782,0.1193
783,0.1159
784,0.1160
785,0.1152
786,0.1157
787,0.1120
788,0.1121
789,0.1125
790,0.1124
791,0.1122
792,0.1120
793,0.1110
794,0.1114
795,0.1099
796,0.1115
797,0.1120
798,0.1127
799,0.1121
800,0.1109
801,0.1110
802,0.1106
803,0.1108
804,0.1097
805,0.1093
806,0.1097
807,0.1083
808,0.1066
809,0.1039
810,0.1051
811,0.1036
812,0.1029
813,0.1018
814,0.1012
815,0.0992
816,0.0975
817,0.0957
818,0.0940
819,0.0931
820,0.0923
821,0.0908
822,0.0886
823,0.0884
824,0.0872
825,0.0845
826,0.0837
827,0.0846
828,0.0807
829,0.0796
830,0.0787
831,0.0775
832,0.0763
833,0.0724
834,0.0730
835,0.0706
836,0.0701
837,0.0688
838,0.0679
839,0.0664
840,0.0639
841,0.0642
842,0.0622
843,0.0599
844,0.0598
845,0.0592
846,0.0557
847,0.0559
848,0.0534
849,0.0523
850,0.0530
851,0.0508
852,0.0506
853,0.0495
854,0.0478
855,0.0467
856,0.0456
857,0.0433
858,0.0437
859,0.0423
860,0.0405
861,0.0398
862,0.0397
863,0.0383
864,0.0366
865,0.0365
866,0.0337
867,0.0338
868,0.0340
869,0.0324
870,0.0312
871,0.0296
872,0.0281
873,0.0275
874,0.0264
875,0.0264
876,0.0252
877,0.0251
878,0.0231
879,0.0230
880,0.0231
881,0.0236
882,0.0224
883,0.0236
884,0.0224
885,0.0228
886,0.0224
887,0.0222
888,0.0218
889,0.0217
890,0.0226
891,0.0204
892,0.0204
893,0.0205
894,0.0195
895,0.0203
896,0.0193
897,0.0190
898,0.0168
899,0.0176
900,0.0173
901,0.0167
902,0.0166
903,0.0152
904,0.0161
905,0.0146
906,0.0143
907,0.0140
908,0.0136
909,0.0129
910,0.0130
911,0.0123
912,0.0107
913,0.0120
914,0.0109
915,0.0105
916,0.0107
917,0.0090
918,0.0091
919,0.0076
920,0.0070
921,0.0089
922,0.0083
923,0.0078
924,0.0068
925,0.0066
926,0.0065
927,0.0076
928,0.0059
929,0.0043
930,0.0047
931,0.0047
932,0.0035
933,0.0043
934,0.0038
935,0.0035
936,0.0028
937,0.0018
938,0.0017
939,0.0008
940,0.0008
941,0.0005
942,0.0005

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.3374
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.8201
407,0.0000
408,0.0000
409,1.0000
410,0.8134
411,0.7088
412,0.9371
413,0.7435
414,0.8606
415,0.7362
416,0.9379
417,0.7431
418,0.9061
419,0.8513
420,0.8423
421,0.8021
422,0.7740
423,0.7281
424,0.7060
425,0.7242
426,0.7649
427,0.6869
428,0.6725
429,0.5599
430,0.6312
431,0.5375
432,0.5227
433,0.4839
434,0.5206
435,0.5059
436,0.4738
437,0.4608
438,0.4389
439,0.4241
440,0.4582
441,0.3845
442,0.3864
443,0.3700
444,0.3468
445,0.3847
446,0.3117
447,0.2753
448,0.2760
449,0.2418
450,0.2133
451,0.2055
452,0.1877
453,0.1564
454,0.1419
455,0.1428
456,0.1245
457,0.1256
458,0.1204
459,0.1166
460,0.1126
461,0.1045
462,0.1041
463,0.0970
464,0.1072
465,0.0959
466,0.1039
467,0.0995
468,0.0968
469,0.0931
470,0.0897
471,0.0894
472,0.0833
473,0.0827
474,0.0791
475,0.0800
476,0.0754
477,0.0708
478,0.0700
479,0.0739
480,0.0778
481,0.0713
482,0.0747
483,0.0742
484,0.0791
485,0.0784
486,0.0788
487,0.0830
488,0.0843
489,0.0833
490,0.0872
491,0.0859
492,0.0866
493,0.0895
494,0.0864
495,0.0913
496,0.0827
497,0.0881
498,0.0879
499,0.0895
500,0.0854
501,0.0851
502,0.0874
503,0.0860
504,0.0875
505,0.0891
506,0.0922
507,0.0903
508,0.0925
509,0.0909
510,0.0935
511,0.0956
512,0.0970
513,0.0967
514,0.0958
515,0.0959
516,0.0967
517,0.0908
518,0.0918
519,0.0952
520,0.0948
521,0.0984
522,0.0975
523,0.0982
524,0.0997
525,0.0992
526,0.1001
527,0.0979
528,0.0994
529,0.1028
530,0.1031
531,0.1025
532,0.1045
533,0.1059
534,0.1067
535,0.1089
536,0.1099
537,0.1117
538,0.1114
539,0.1148
540,0.1139
541,0.1165
542,0.1144
543,0.1158
544,0.1209
545,0.1199
546,0.1205
547,0.1211
548,0.1232
549,0.1215
550,0.1208
551,0.1221
552,0.1217
553,0.1220
554,0.1203
555,0.1197
556,0.1182
557,0.1184
558,0.1165
559,0.1134
560,0.1141
561,0.1090
562,0.1095
563,0.1062
564,0.1033
565,0.1017
566,0.0968
567,0.0974
568,0.0932
569,0.0931
570,0.0907
571,0.0859
572,0.0849
573,0.0828
574,0.0791
575,0.0792
576,0.0774
577,0.0759
578,0.0753
579,0.0725
580,0.0698
581,0.0674
582,0.0685
583,0.0667
584,0.0660
585,0.0624
586,0.0629
587,0.0583
588,0.0588
589,0.0580
590,0.0563
591,0.0567
592,0.0539
593,0.0532
594,0.0526
595,0.0526
596,0.0500
597,0.0504
598,0.0503
599,0.0492
600,0.0484
601,0.0463
602,0.0463
603,0.0461
604,0.0454
605,0.0440
606,0.0427
607,0.0418
608,0.0407
609,0.0396
610,0.0397
611,0.0384
612,0.0376
613,0.0371
614,0.0361
615,0.0362
616,0.0342
617,0.0353
618,0.0349
619,0.0334
620,0.0331
621,0.0343
622,0.0334
623,0.0333
624,0.0329
625,0.0336
626,0.0339
627,0.0342
628,0.0341
629,0.0352
630,0.0352
631,0.0369
632,0.0375
633,0.0379
634,0.0391
635,0.0384
636,0.0412
637,0.0416
638,0.0421
639,0.0439
640,0.0449
641,0.0466
642,0.0473
643,0.0486
644,0.0512
645,0.0513
646,0.0528
647,0.0558
648,0.0557
649,0.0583
650,0.0598
651,0.0627
652,0.0645
653,0.0641
654,0.0677
655,0.0695
656,0.0690
657,0.0743
658,0.0749
659,0.0789
660,0.0800
661,0.0807
662,0.0822
663,0.0834
664,0.0855
665,0.0878
666,0.0894
667,0.0923
668,0.0926
669,0.0949
670,0.0966
671,0.0973
672,0.0991
673,0.1015
674,0.1038
675,0.1063
676,0.1056
677,0.1079
678,0.1098
679,0.1112
680,0.1111
681,0.1133
682,0.1144
683,0.1147
684,0.1159
685,0.1188
686,0.1194
687,0.1205
688,0.1243
689,0.1232
690,0.1225
691,0.1264
692,0.1282
693,0.1288
694,0.1307
695,0.1317
696,0.1330
697,0.1335
698,0.1371
699,0.1345
700,0.1398
701,0.1409
702,0.1412
703,0.1425
704,0.1435
705,0.1459
706,0.1449
707,0.1470
708,0.1486
709,0.1502
710,0.1518
711,0.1512
712,0.1535
713,0.1562
714,0.1545
715,0.1547
716,0.1568
717,0.1561
718,0.1568
719,0.1552
720,0.1567
721,0.1556
722,0.1539
723,0.1560
724,0.1563
725,0.1559
726,0.1566
727,0.1568
728,0.1572
729,0.1601
730,0.1597
731,0.1609
732,0.1590
733,0.1605
734,0.1623
735,0.1596
736,0.1640
737,0.1616
738,0.1604
739,0.1630
740,0.1596
741,0.1576
742,0.1598
743,0.1588
744,0.1548
745,0.1546
746,0.1551
747,0.1523
748,0.1528
749,0.1519
750,0.1496
751,0.1491
752,0.1467
753,0.1444
754,0.1462
755,0.1454
756,0.1418
757,0.1399
758,0.1389
759,0.1363
760,0.1363
761,0.1342
762,0.1336
763,0.1334
764,0.1316
765,0.1304
766,0.1287
767,0.1277
768,0.1279
769,0.1257
770,0.1236
771,0.1235
772,0.1215
773,0.1201
774,0.1185
775,0.1164
776,0.1178
777,0.1146
778,0.1124
779,0.1119
780,0.1099
781,0.1067
782,0.1074
783,0.1057
784,0.1052
785,0.1049
786,0.1022
787,0.1005
788,0.0997
789,0.1000
790,0.1003
791,0.0974
792,0.0987
793,0.0959
794,0.0968
795,0.0969
796,0.0970
797,0.0954
798,0.0975
799,0.0932
800,0.0953
801,0.0934
802,0.0934
803,0.0931
804,0.0913
805,0.0902
806,0.0907
807,0.0883
808,0.0881
809,0.0867
810,0.0865
811,0.0833
812,0.0807
813,0.0813
814,0.0792
815,0.0797
816,0.0772
817,0.0744
818,0.0731
819,0.0701
820,0.0728
821,0.0710
822,0.0670
823,0.0663
824,0.0655
825,0.0622
826,0.0622
827,0.0605
828,0.0590
829,0.0607
830,0.0587
831,0.0562
832,0.0566
833,0.0529
834,0.0516
835,0.0512
836,0.0496
837,0.0487
838,0.0468
839,0.0472
840,0.0451
841,0.0431
842,0.0434
843,0.0421
844,0.0416
845,0.0408
846,0.0386
847,0.0376
848,0.0349
849,0.0338
850,0.0342
851,0.0336
852,0.0326
853,0.0323
854,0.0317
855,0.0290
856,0.0300
857,0.0277
858,0.0268
859,0.0258
860,0.0254
861,0.0251
862,0.0252
863,0.0233
864,0.0220
865,0.0219
866,0.0205
867,0.0207
868,0.0194
869,0.0179
870,0.0180
871,0.0165
872,0.0161
873,0.0161
874,0.0149
875,0.0154
876,0.0136
877,0.0139
878,0.0121
879,0.0122
880,0.0131
881,0.0132
882,0.0125
883,0.0129
884,0.0116
885,0.0110
886,0.0119
887,0.0113
888,0.0107
889,0.0111
890,0.0107
891,0.0107
892,0.0108
893,0.0094
894,0.0103
895,0.0092
896,0.0088
897,0.0089
898,0.0080
899,0.0078
900,0.0077
901,0.0073
902,0.0075
903,0.0070
904,0.0070
905,0.0066
906,0.0073
907,0.0065
908,0.0066
909,0.0059
910,0.0054
911,0.0056
912,0.0044
913,0.0041
914,0.0042
915,0.0043
916,0.0043
917,0.0041
918,0.0037
919,0.0031
920,0.0032
921,0.0030
922,0.0026
923,0.0024
924,0.0029
925,0.0024
926,0.0019
927,0.0028
928,0.0024
929,0.0011
930,0.0024
931,0.0019
932,0.0010
933,0.0017
934,0.0017
935,0.0017
936,0.0003
937,0.0007
938,0.0006
939,0.0000
940,0.0005
941,0.0001
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.9401
407,0.0000
408,0.0000
409,1.0000
410,0.7710
411,0.7560
412,0.9470
413,0.8462
414,0.7955
415,0.7637
416,0.8644
417,0.7181
418,0.7584
419,0.6483
420,0.6458
421,0.6369
422,0.5741
423,0.5637
424,0.5298
425,0.5027
426,0.5184
427,0.4893
428,0.4435
429,0.3445
430,0.3304
431,0.3198
432,0.2868
433,0.2665
434,0.2376
435,0.2730
436,0.2443
437,0.2195
438,0.2144
439,0.1872
440,0.1958
441,0.1891
442,0.1936
443,0.1790
444,0.1536
445,0.1615
446,0.1549
447,0.1287
448,0.1217
449,0.1117
450,0.1095
451,0.1056
452,0.0964
453,0.0878
454,0.0717
455,0.0884
456,0.0806
457,0.0841
458,0.0936
459,0.0901
460,0.0906
461,0.0934
462,0.1028
463,0.1045
464,0.1101
465,0.1096
466,0.1242
467,0.1247
468,0.1227
469,0.1250
470,0.1250
471,0.1296
472,0.1285
473,0.1274
474,0.1285
475,0.1214
476,0.1209
477,0.1196
478,0.1240
479,0.1189
480,0.1286
481,0.1234
482,0.1246
483,0.1319
484,0.1343
485,0.1343
486,0.1389
487,0.1391
488,0.1380
489,0.1419
490,0.1433
491,0.1428
492,0.1399
493,0.1431
494,0.1406
495,0.1385
496,0.1327
497,0.1336
498,0.1306
499,0.1333
500,0.1232
501,0.1237
502,0.1249
503,0.1210
504,0.1221
505,0.1223
506,0.1248
507,0.1220
508,0.1226
509,0.1192
510,0.1192
511,0.1222
512,0.1202
513,0.1187
514,0.1169
515,0.1133
516,0.1120
517,0.1069
518,0.1075
519,0.1080
520,0.1029
521,0.1053
522,0.1039
523,0.1044
524,0.1022
525,0.1013
526,0.1006
527,0.0987
528,0.0968
529,0.0988
530,0.0979
531,0.0974
532,0.0938
533,0.0945
534,0.0948
535,0.0925
536,0.0931
537,0.0940
538,0.0934
539,0.0925
540,0.0915
541,0.0924
542,0.0884
543,0.0908
544,0.0901
545,0.0914
546,0.0886
547,0.0892
548,0.0861
549,0.0857
550,0.0827
551,0.0848
552,0.0816
553,0.0799
554,0.0774
555,0.0761
556,0.0744
557,0.0719
558,0.0698
559,0.0692
560,0.0671
561,0.0642
562,0.0623
563,0.0591
564,0.0561
565,0.0544
566,0.0539
567,0.0507
568,0.0471
569,0.0461
570,0.0444
571,0.0412
572,0.0413
573,0.0392
574,0.0378
575,0.0361
576,0.0347
577,0.0333
578,0.0342
579,0.0304
580,0.0302
581,0.0286
582,0.0292
583,0.0273
584,0.0283
585,0.0265
586,0.0253
587,0.0242
588,0.0244
589,0.0239
590,0.0240
591,0.0241
592,0.0247
593,0.0238
594,0.0238
595,0.0248
596,0.0266
597,0.0246
598,0.0243
599,0.0255
600,0.0263
601,0.0259
602,0.0259
603,0.0287
604,0.0277
605,0.0285
606,0.0288
607,0.0306
608,0.0314
609,0.0309
610,0.0338
611,0.0334
612,0.0345
613,0.0360
614,0.0367
615,0.0389
616,0.0400
617,0.0415
618,0.0407
619,0.0424
620,0.0430
621,0.0460
622,0.0488
623,0.0484
624,0.0499
625,0.0533
626,0.0543
627,0.0557
628,0.0573
629,0.0605
630,0.0624
631,0.0639
632,0.0662
633,0.0686
634,0.0697
635,0.0711
636,0.0756
637,0.0766
638,0.0800
639,0.0828
640,0.0839
641,0.0889
642,0.0880
643,0.0918
644,0.0947
645,0.0966
646,0.0997
647,0.1036
648,0.1062
649,0.1093
650,0.1111
651,0.1159
652,0.1178
653,0.1192
654,0.1218
655,0.1257
656,0.1274
657,0.1324
658,0.1324
659,0.1360
660,0.1377
661,0.1410
662,0.1430
663,0.1434
664,0.1431
665,0.1492
666,0.1501
667,0.1515
668,0.1532
669,0.1540
670,0.1564
671,0.1581
672,0.1580
673,0.1597
674,0.1593
675,0.1628
676,0.1627
677,0.1648
678,0.1634
679,0.1646
680,0.1647
681,0.1666
682,0.1674
683,0.1651
684,0.1650
685,0.1663
686,0.1684
687,0.1680
688,0.1711
689,0.1692
690,0.1698
691,0.1709
692,0.1704
693,0.1709
694,0.1709
695,0.1712
696,0.1709
697,0.1716
698,0.1752
699,0.1723
700,0.1745
701,0.1752
702,0.1754
703,0.1775
704,0.1745
705,0.1776
706,0.1783
707,0.1782
708,0.1792
709,0.1782
710,0.1784
711,0.1773
712,0.1809
713,0.1782
714,0.1763
715,0.1785
716,0.1756
717,0.1796
718,0.1744
719,0.1746
720,0.1714
721,0.1712
722,0.1691
723,0.1692
724,0.1681
725,0.1664
726,0.1671
727,0.1682
728,0.1675
729,0.1676
730,0.1675
731,0.1641
732,0.1649
733,0.1654
734,0.1639
735,0.1650
736,0.1651
737,0.1616
738,0.1604
739,0.1587
740,0.1561
741,0.1579
742,0.1558
743,0.1529
744,0.1506
745,0.1500
746,0.1462
747,0.1442
748,0.1440
749,0.1414
750,0.1392
751,0.1381
752,0.1329
753,0.1336
754,0.1299
755,0.1311
756,0.1278
757,0.1245
758,0.1235
759,0.1208
760,0.1195
761,0.1194
762,0.1153
763,0.1127
764,0.1115
765,0.1105
766,0.1097
767,0.1075
768,0.1039
769,0.1036
770,0.1036
771,0.1012
772,0.0989
773,0.0983
774,0.0944
775,0.0932
776,0.0926
777,0.0898
778,0.0883
779,0.0896
780,0.0871
781,0.0834
782,0.0823
783,0.0810
784,0.0796
785,0.0781
786,0.0782
787,0.0752
788,0.0738
789,0.0733
790,0.0722
791,0.0714
792,0.0711
793,0.0695
794,0.0689
795,0.0674
796,0.0673
797,0.0661
798,0.0644
799,0.0640
800,0.0643
801,0.0632
802,0.0617
803,0.0617
804,0.0597
805,0.0603
806,0.0599
807,0.0578
808,0.0559
809,0.0556
810,0.0544
811,0.0520
812,0.0522
813,0.0481
814,0.0493
815,0.0471
816,0.0465
817,0.0456
818,0.0436
819,0.0421
820,0.0418
821,0.0397
822,0.0391
823,0.0380
824,0.0372
825,0.0361
826,0.0356
827,0.0344
828,0.0322
829,0.0325
830,0.0311
831,0.0306
832,0.0304
833,0.0279
834,0.0267
835,0.0262
836,0.0252
837,0.0238
838,0.0234
839,0.0243
840,0.0216
841,0.0212
842,0.0198
843,0.0197
844,0.0191
845,0.0186
846,0.0164
847,0.0164
848,0.0153
849,0.0148
850,0.0151
851,0.0130
852,0.0149
853,0.0129
854,0.0128
855,0.0120
856,0.0126
857,0.0111
858,0.0104
859,0.0098
860,0.0094
861,0.0088
862,0.0096
863,0.0083
864,0.0070
865,0.0071
866,0.0067
867,0.0068
868,0.0060
869,0.0051
870,0.0053
871,0.0047
872,0.0044
873,0.0044
874,0.0046
875,0.0036
876,0.0032
877,0.0040
878,0.0024
879,0.0033
880,0.0034
881,0.0038
882,0.0030
883,0.0030
884,0.0029
885,0.0021
886,0.0026
887,0.0021
888,0.0038
889,0.0032
890,0.0031
891,0.0038
892,0.0027
893,0.0015
894,0.0030
895,0.0025
896,0.0023
897,0.0029
898,0.0021
899,0.0023
900,0.0016
901,0.0019
902,0.0026
903,0.0026
904,0.0033
905,0.0023
906,0.0022
907,0.0024
908,0.0026
909,0.0025
910,0.0026
911,0.0031
912,0.0017
913,0.0019
914,0.0024
915,0.0031
916,0.0022
917,0.0014
918,0.0025
919,0.0019
920,0.0023
921,0.0031
922,0.0025
923,0.0028
924,0.0027
925,0.0031
926,0.0016
927,0.0040
928,0.0035
929,0.0019
930,0.0031
931,0.0032
932,0.0023
933,0.0029
934,0.0031
935,0.0029
936,0.0009
937,0.0020
938,0.0006
939,0.0005
940,0.0016
941,0.0009
942,0.0000

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.8001
407,0.0000
408,0.0000
409,1.0000
410,0.4493
411,0.3108
412,0.4327
413,0.2806
414,0.3400
415,0.2951
416,0.2852
417,0.2477
418,0.3026
419,0.2324
420,0.2202
421,0.1921
422,0.1366
423,0.1147
424,0.0849
425,0.1061
426,0.0914
427,0.1005
428,0.1141
429,0.0429
430,0.0739
431,0.0364
432,0.0862
433,0.0713
434,0.0751
435,0.1044
436,0.0895
437,0.0897
438,0.1096
439,0.1382
440,0.1395
441,0.1294
442,0.1415
443,0.1576
444,0.1643
445,0.1872
446,0.1886
447,0.1670
448,0.1942
449,0.1813
450,0.1722
451,0.1827
452,0.1756
453,0.1804
454,0.1515
455,0.1791
456,0.1767
457,0.1751
458,0.1807
459,0.1974
460,0.1985
461,0.2109
462,0.2137
463,0.2185
464,0.2256
465,0.2229
466,0.2433
467,0.2347
468,0.2475
469,0.2432
470,0.2364
471,0.2487
472,0.2356
473,0.2260
474,0.2289
475,0.2148
476,0.2141
477,0.2084
478,0.1958
479,0.1939
480,0.2041
481,0.1977
482,0.1928
483,0.1868
484,0.1919
485,0.1939
486,0.1934
487,0.1904
488,0.1828
489,0.1864
490,0.1838
491,0.1829
492,0.1748
493,0.1781
494,0.1667
495,0.1615
496,0.1560
497,0.1556
498,0.1457
499,0.1468
500,0.1347
501,0.1335
502,0.1326
503,0.1270
504,0.1237
505,0.1232
506,0.1223
507,0.1182
508,0.1177
509,0.1139
510,0.1113
511,0.1124
512,0.1083
513,0.1049
514,0.0999
515,0.0983
516,0.0923
517,0.0897
518,0.0871
519,0.0839
520,0.0805
521,0.0813
522,0.0789
523,0.0751
524,0.0733
525,0.0698
526,0.0692
527,0.0663
528,0.0640
529,0.0640
530,0.0612
531,0.0601
532,0.0577
533,0.0565
534,0.0550
535,0.0519
536,0.0513
537,0.0504
538,0.0494
539,0.0488
540,0.0463
541,0.0453
542,0.0439
543,0.0412
544,0.0421
545,0.0415
546,0.0395
547,0.0383
548,0.0365
549,0.0334
550,0.0319
551,0.0315
552,0.0319
553,0.0296
554,0.0270
555,0.0269
556,0.0242
557,0.0233
558,0.0218
559,0.0215
560,0.0198
561,0.0198
562,0.0186
563,0.0180
564,0.0164
565,0.0143
566,0.0150
567,0.0146
568,0.0137
569,0.0140
570,0.0130
571,0.0129
572,0.0134
573,0.0128
574,0.0132
575,0.0131
576,0.0140
577,0.0148
578,0.0154
579,0.0143
580,0.0158
581,0.0172
582,0.0170
583,0.0191
584,0.0201
585,0.0204
586,0.0219
587,0.0236
588,0.0243
589,0.0256
590,0.0274
591,0.0298
592,0.0317
593,0.0318
594,0.0350
595,0.0385
596,0.0398
597,0.0419
598,0.0427
599,0.0478
600,0.0494
601,0.0509
602,0.0546
603,0.0561
604,0.0585
605,0.0618
606,0.0624
607,0.0660
608,0.0696
609,0.0708
610,0.0725
611,0.0763
612,0.0771
613,0.0807
614,0.0813
615,0.0847
616,0.0866
617,0.0897
618,0.0926
619,0.0936
620,0.0946
621,0.0979
622,0.1022
623,0.1037
624,0.1063
625,0.1078
626,0.1093
627,0.1131
628,0.1142
629,0.1190
630,0.1188
631,0.1233
632,0.1274
633,0.1284
634,0.1295
635,0.1338
636,0.1364
637,0.1383
638,0.1422
639,0.1435
640,0.1489
641,0.1538
642,0.1509
643,0.1542
644,0.1591
645,0.1587
646,0.1635
647,0.1679
648,0.1696
649,0.1718
650,0.1763
651,0.1752
652,0.1797
653,0.1805
654,0.1820
655,0.1871
656,0.1886
657,0.1902
658,0.1926
659,0.1969
660,0.1975
661,0.1980
662,0.2010
663,0.1997
664,0.2002
665,0.2050
666,0.2025
667,0.2035
668,0.2059
669,0.2045
670,0.2048
671,0.2054
672,0.2046
673,0.2035
674,0.2022
675,0.2049
676,0.2028
677,0.2018
678,0.2018
679,0.2001
680,0.1979
681,0.2015
682,0.2003
683,0.1970
684,0.1961
685,0.1973
686,0.1973
687,0.1929
688,0.1957
689,0.1891
690,0.1922
691,0.1929
692,0.1897
693,0.1880
694,0.1896
695,0.1872
696,0.1825
697,0.1845
698,0.1824
699,0.1814
700,0.1832
701,0.1842
702,0.1846
703,0.1812
704,0.1792
705,0.1804
706,0.1793
707,0.1786
708,0.1768
709,0.1745
710,0.1774
711,0.1739
712,0.1731
713,0.1722
714,0.1705
715,0.1678
716,0.1664
717,0.1653
718,0.1636
719,0.1588
720,0.1557
721,0.1554
722,0.1535
723,0.1507
724,0.1495
725,0.1490
726,0.1491
727,0.1473
728,0.1463
729,0.1449
730,0.1433
731,0.1412
732,0.1389
733,0.1413
734,0.1387
735,0.1367
736,0.1346
737,0.1331
738,0.1326
739,0.1296
740,0.1272
741,0.1242
742,0.1233
743,0.1206
744,0.1189
745,0.1178
746,0.1138
747,0.1119
748,0.1110
749,0.1059
750,0.1057
751,0.1036
752,0.1012
753,0.0968
754,0.0957
755,0.0933
756,0.0919
757,0.0895
758,0.0872
759,0.0864
760,0.0831
761,0.0809
762,0.0795
763,0.0784
764,0.0755
765,0.0743
766,0.0720
767,0.0711
768,0.0706
769,0.0675
770,0.0664
771,0.0636
772,0.0620
773,0.0609
774,0.0586
775,0.0567
776,0.0565
777,0.0545
778,0.0540
779,0.0523
780,0.0506
781,0.0493
782,0.0479
783,0.0444
784,0.0448
785,0.0421
786,0.0426
787,0.0411
788,0.0395
789,0.0388
790,0.0392
791,0.0375
792,0.0369
793,0.0353
794,0.0347
795,0.0338
796,0.0330
797,0.0325
798,0.0320
799,0.0310
800,0.0304
801,0.0287
802,0.0288
803,0.0283
804,0.0255
805,0.0263
806,0.0261
807,0.0244
808,0.0227
809,0.0213
810,0.0213
811,0.0199
812,0.0195
813,0.0176
814,0.0181
815,0.0164
816,0.0169
817,0.0164
818,0.0156
819,0.0161
820,0.0140
821,0.0133
822,0.0119
823,0.0122
824,0.0119
825,0.0093
826,0.0109
827,0.0105
828,0.0087
829,0.0092
830,0.0079
831,0.0078
832,0.0085
833,0.0072
834,0.0068
835,0.0059
836,0.0064
837,0.0056
838,0.0052
839,0.0058
840,0.0037
841,0.0043
842,0.0043
843,0.0046
844,0.0038
845,0.0030
846,0.0025
847,0.0024
848,0.0021
849,0.0018
850,0.0016
851,0.0014
852,0.0012
853,0.0017
854,0.0019
855,0.0013
856,0.0022
857,0.0017
858,0.0020
859,0.0014
860,0.0000
861,0.0008
862,0.0017
863,0.0010
864,0.0010
865,0.0011
866,0.0004
867,0.0005
868,0.0007
869,0.0003
870,0.0006
871,0.0010
872,0.0005
873,0.0000
874,0.0018
875,0.0008
876,0.0004
877,0.0021
878,0.0002
879,0.0009
880,0.0019
881,0.0018
882,0.0015
883,0.0021
884,0.0022
885,0.0031
886,0.0029
887,0.0015
888,0.0030
889,0.0032
890,0.0042
891,0.0038
892,0.0041
893,0.0033
894,0.0049
895,0.0046
896,0.0042
897,0.0042
898,0.0049
899,0.0052
900,0.0055
901,0.0056
902,0.0059
903,0.0060
904,0.0069
905,0.0069
906,0.0067
907,0.0069
908,0.0071
909,0.0062
910,0.0082
911,0.0085
912,0.0074
913,0.0084
914,0.0081
915,0.0084
916,0.0082
917,0.0082
918,0.0088
919,0.0077
920,0.0080
921,0.0087
922,0.0083
923,0.0089
924,0.0091
925,0.0088
926,0.0093
927,0.0096
928,0.0090
929,0.0089
930,0.0100
931,0.0088
932,0.0073
933,0.0080
934,0.0089
935,0.0077
936,0.0057
937,0.0054
938,0.0050
939,0.0033
940,0.0032
941,0.0026
942,0.0023

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.0000
402,1.0000
403,1.0000
404,0.0000
405,0.5750
406,0.0000
407,0.3000
408,0.0000
409,1.0000
410,0.0092
411,0.0842
412,0.1587
413,0.1362
414,0.0370
415,0.0605
416,0.0779
417,0.0974
418,0.0427
419,0.0932
420,0.1390
421,0.1008
422,0.1071
423,0.2040
424,0.0994
425,0.1534
426,0.2408
427,0.2180
428,0.2322
429,0.1705
430,0.2620
431,0.2260
432,0.2467
433,0.2936
434,0.2979
435,0.3501
436,0.3461
437,0.3876
438,0.3582
439,0.3519
440,0.4417
441,0.4111
442,0.4308
443,0.4503
444,0.4426
445,0.4551
446,0.4284
447,0.4242
448,0.3869
449,0.3850
450,0.3706
451,0.3663
452,0.3448
453,0.3354
454,0.3225
455,0.3124
456,0.2949
457,0.3042
458,0.2900
459,0.2982
460,0.2959
461,0.3033
462,0.2995
463,0.3080
464,0.3071
465,0.2929
466,0.3038
467,0.3021
468,0.3048
469,0.3004
470,0.3013
471,0.2935
472,0.2820
473,0.2620
474,0.2548
475,0.2384
476,0.2245
477,0.2238
478,0.2062
479,0.2025
480,0.2053
481,0.1917
482,0.1887
483,0.1839
484,0.1789
485,0.1802
486,0.1716
487,0.1692
488,0.1686
489,0.1616
490,0.1608
491,0.1490
492,0.1445
493,0.1403
494,0.1350
495,0.1312
496,0.1172
497,0.1186
498,0.1109
499,0.1078
500,0.0988
501,0.0933
502,0.0931
503,0.0856
504,0.0837
505,0.0831
506,0.0791
507,0.0756
508,0.0753
509,0.0708
510,0.0676
511,0.0650
512,0.0630
513,0.0599
514,0.0573
515,0.0535
516,0.0505
517,0.0461
518,0.0464
519,0.0429
520,0.0410
521,0.0392
522,0.0386
523,0.0356
524,0.0346
525,0.0317
526,0.0292
527,0.0286
528,0.0264
529,0.0269
530,0.0260
531,0.0236
532,0.0221
533,0.0209
534,0.0203
535,0.0203
536,0.0191
537,0.0186
538,0.0168
539,0.0173
540,0.0164
541,0.0161
542,0.0152
543,0.0148
544,0.0169
545,0.0177
546,0.0164
547,0.0162
548,0.0160
549,0.0146
550,0.0158
551,0.0152
552,0.0161
553,0.0165
554,0.0155
555,0.0170
556,0.0170
557,0.0182
558,0.0177
559,0.0206
560,0.0201
561,0.0194
562,0.0225
563,0.0225
564,0.0226
565,0.0234
566,0.0266
567,0.0270
568,0.0277
569,0.0300
570,0.0317
571,0.0318
572,0.0350
573,0.0361
574,0.0372
575,0.0385
576,0.0407
577,0.0429
578,0.0445
579,0.0462
580,0.0484
581,0.0529
582,0.0547
583,0.0559
584,0.0601
585,0.0619
586,0.0650
587,0.0675
588,0.0713
589,0.0702
590,0.0753
591,0.0778
592,0.0820
593,0.0850
594,0.0886
595,0.0931
596,0.0953
597,0.1006
598,0.1021
599,0.1067
600,0.1109
601,0.1137
602,0.1168
603,0.1212
604,0.1221
605,0.1287
606,0.1287
607,0.1322
608,0.1342
609,0.1366
610,0.1377
611,0.1416
612,0.1430
613,0.1461
614,0.1470
615,0.1476
616,0.1510
617,0.1504
618,0.1541
619,0.1528
620,0.1561
621,0.1593
622,0.1617
623,0.1611
624,0.1632
625,0.1652
626,0.1649
627,0.1675
628,0.1691
629,0.1726
630,0.1710
631,0.1733
632,0.1775
633,0.1791
634,0.1789
635,0.1798
636,0.1811
637,0.1828
638,0.1865
639,0.1867
640,0.1895
641,0.1934
642,0.1920
643,0.1932
644,0.1955
645,0.1972
646,0.1998
647,0.2002
648,0.2010
649,0.2062
650,0.2050
651,0.2093
652,0.2057
653,0.2072
654,0.2090
655,0.2091
656,0.2113
657,0.2136
658,0.2111
659,0.2157
660,0.2150
661,0.2146
662,0.2168
663,0.2148
664,0.2144
665,0.2138
666,0.2106
667,0.2080
668,0.2116
669,0.2120
670,0.2075
671,0.2078
672,0.2031
673,0.2033
674,0.2013
675,0.2012
676,0.1979
677,0.1929
678,0.1936
679,0.1892
680,0.1886
681,0.1886
682,0.1877
683,0.1837
684,0.1800
685,0.1793
686,0.1777
687,0.1734
688,0.1753
689,0.1708
690,0.1710
691,0.1664
692,0.1683
693,0.1650
694,0.1642
695,0.1592
696,0.1579
697,0.1564
698,0.1553
699,0.1536
700,0.1539
701,0.1533
702,0.1503
703,0.1468
704,0.1476
705,0.1455
706,0.1425
707,0.1404
708,0.1418
709,0.1377
710,0.1385
711,0.1353
712,0.1338
713,0.1312
714,0.1289
715,0.1291
716,0.1266
717,0.1257
718,0.1211
719,0.1193
720,0.1165
721,0.1118
722,0.1099
723,0.1098
724,0.1071
725,0.1062
726,0.1038
727,0.1027
728,0.1007
729,0.1009
730,0.0985
731,0.0959
732,0.0946
733,0.0954
734,0.0913
735,0.0906
736,0.0891
737,0.0869
738,0.0865
739,0.0831
740,0.0800
741,0.0782
742,0.0775
743,0.0755
744,0.0734
745,0.0711
746,0.0700
747,0.0672
748,0.0652
749,0.0629
750,0.0621
751,0.0601
752,0.0592
753,0.0550
754,0.0539
755,0.0523
756,0.0515
757,0.0488
758,0.0477
759,0.0455
760,0.0444
761,0.0436
762,0.0409
763,0.0393
764,0.0383
765,0.0379
766,0.0358
767,0.0360
768,0.0337
769,0.0319
770,0.0328
771,0.0315
772,0.0309
773,0.0284
774,0.0270
775,0.0259
776,0.0250
777,0.0237
778,0.0232
779,0.0233
780,0.0212
781,0.0196
782,0.0196
783,0.0179
784,0.0180
785,0.0168
786,0.0166
787,0.0152
788,0.0146
789,0.0151
790,0.0142
791,0.0132
792,0.0133
793,0.0124
794,0.0129
795,0.0113
796,0.0114
797,0.0106
798,0.0097
799,0.0096
800,0.0094
801,0.0094
802,0.0086
803,0.0085
804,0.0075
805,0.0084
806,0.0067
807,0.0075
808,0.0061
809,0.0062
810,0.0059
811,0.0059
812,0.0053
813,0.0043
814,0.0043
815,0.0047
816,0.0044
817,0.0045
818,0.0059
819,0.0038
820,0.0032
821,0.0043
822,0.0044
823,0.0036
824,0.0040
825,0.0027
826,0.0032
827,0.0041
828,0.0030
829,0.0032
830,0.0029
831,0.0030
832,0.0040
833,0.0021
834,0.0027
835,0.0035
836,0.0026
837,0.0036
838,0.0032
839,0.0043
840,0.0024
841,0.0035
842,0.0037
843,0.0047
844,0.0037
845,0.0040
846,0.0029
847,0.0037
848,0.0028
849,0.0039
850,0.0036
851,0.0041
852,0.0047
853,0.0044
854,0.0055
855,0.0050
856,0.0059
857,0.0052
858,0.0061
859,0.0056
860,0.0054
861,0.0062
862,0.0064
863,0.0071
864,0.0069
865,0.0062
866,0.0062
867,0.0061
868,0.0065
869,0.0069
870,0.0074
871,0.0075
872,0.0070
873,0.0070
874,0.0083
875,0.0080
876,0.0067
877,0.0086
878,0.0074
879,0.0087
880,0.0095
881,0.0107
882,0.0092
883,0.0112
884,0.0111
885,0.0110
886,0.0119
887,0.0123
888,0.0137
889,0.0138
890,0.0133
891,0.0138
892,0.0149
893,0.0143
894,0.0143
895,0.0162
896,0.0156
897,0.0158
898,0.0161
899,0.0175
900,0.0170
901,0.0180
902,0.0185
903,0.0175
904,0.0178
905,0.0185
906,0.0189
907,0.0179
908,0.0189
909,0.0182
910,0.0198
911,0.0199
912,0.0190
913,0.0185
914,0.0191
915,0.0185
916,0.0202
917,0.0192
918,0.0198
919,0.0181
920,0.0189
921,0.0194
922,0.0197
923,0.0195
924,0.0189
925,0.0195
926,0.0194
927,0.0200
928,0.0197
929,0.0194
930,0.0191
931,0.0177
932,0.0168
933,0.0171
934,0.0147
935,0.0142
936,0.0125
937,0.0114
938,0.0086
939,0.0071
940,0.0073
941,0.0059
942,0.0054

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.6750
402,1.0000
403,1.0000
404,1.0000
405,1.0000
406,0.1000
407,0.0000
408,0.2500
409,1.0000
410,0.2034
411,0.2652
412,0.3000
413,0.2367
414,0.3956
415,0.3428
416,0.4069
417,0.4256
418,0.3759
419,0.4197
420,0.5810
421,0.4926
422,0.4865
423,0.4792
424,0.5247
425,0.5337
426,0.5610
427,0.5521
428,0.6197
429,0.5381
430,0.6499
431,0.5906
432,0.6247
433,0.5856
434,0.6201
435,0.6617
436,0.6296
437,0.6625
438,0.6306
439,0.6470
440,0.7207
441,0.6417
442,0.6556
443,0.7035
444,0.6607
445,0.6336
446,0.6299
447,0.5865
448,0.5361
449,0.5178
450,0.4890
451,0.4474
452,0.4319
453,0.4046
454,0.3708
455,0.3535
456,0.3445
457,0.3273
458,0.3198
459,0.3132
460,0.3097
461,0.2983
462,0.3074
463,0.2904
464,0.2878
465,0.2824
466,0.2822
467,0.2769
468,0.2747
469,0.2603
470,0.2445
471,0.2425
472,0.2195
473,0.2214
474,0.2008
475,0.1869
476,0.1772
477,0.1653
478,0.1540
479,0.1511
480,0.1469
481,0.1332
482,0.1288
483,0.1226
484,0.1201
485,0.1173
486,0.1102
487,0.1044
488,0.0971
489,0.0954
490,0.0914
491,0.0887
492,0.0815
493,0.0815
494,0.0712
495,0.0671
496,0.0608
497,0.0600
498,0.0547
499,0.0528
500,0.0472
501,0.0443
502,0.0415
503,0.0393
504,0.0361
505,0.0342
506,0.0340
507,0.0302
508,0.0310
509,0.0292
510,0.0274
511,0.0282
512,0.0246
513,0.0239
514,0.0233
515,0.0210
516,0.0193
517,0.0181
518,0.0169
519,0.0159
520,0.0157
521,0.0156
522,0.0151
523,0.0143
524,0.0152
525,0.0144
526,0.0136
527,0.0140
528,0.0130
529,0.0143
530,0.0138
531,0.0137
532,0.0135
533,0.0154
534,0.0152
535,0.0162
536,0.0169
537,0.0188
538,0.0193
539,0.0214
540,0.0216
541,0.0233
542,0.0245
543,0.0255
544,0.0297
545,0.0304
546,0.0327
547,0.0344
548,0.0363
549,0.0363
550,0.0384
551,0.0399
552,0.0432
553,0.0457
554,0.0460
555,0.0475
556,0.0502
557,0.0525
558,0.0553
559,0.0575
560,0.0586
561,0.0603
562,0.0617
563,0.0627
564,0.0650
565,0.0678
566,0.0712
567,0.0733
568,0.0724
569,0.0763
570,0.0786
571,0.0792
572,0.0831
573,0.0861
574,0.0864
575,0.0892
576,0.0931
577,0.0956
578,0.0985
579,0.0973
580,0.1024
581,0.1069
582,0.1064
583,0.1113
584,0.1139
585,0.1174
586,0.1188
587,0.1212
588,0.1269
589,0.1292
590,0.1313
591,0.1356
592,0.1394
593,0.1428
594,0.1464
595,0.1522
596,0.1522
597,0.1579
598,0.1584
599,0.1636
600,0.1678
601,0.1707
602,0.1743
603,0.1777
604,0.1793
605,0.1826
606,0.1822
607,0.1838
608,0.1852
609,0.1879
610,0.1875
611,0.1896
612,0.1891
613,0.1903
614,0.1912
615,0.1915
616,0.1909
617,0.1939
618,0.1923
619,0.1917
620,0.1899
621,0.1913
622,0.1935
623,0.1918
624,0.1928
625,0.1928
626,0.1924
627,0.1922
628,0.1907
629,0.1918
630,0.1911
631,0.1915
632,0.1935
633,0.1922
634,0.1927
635,0.1911
636,0.1932
637,0.1915
638,0.1911
639,0.1939
640,0.1950
641,0.1966
642,0.1951
643,0.1961
644,0.1951
645,0.1960
646,0.1934
647,0.1953
648,0.1949
649,0.1978
650,0.1969
651,0.1970
652,0.1928
653,0.1931
654,0.1934
655,0.1919
656,0.1936
657,0.1931
658,0.1905
659,0.1905
660,0.1908
661,0.1895
662,0.1883
663,0.1854
664,0.1803
665,0.1859
666,0.1842
667,0.1778
668,0.1768
669,0.1768
670,0.1738
671,0.1708
672,0.1676
673,0.1641
674,0.1640
675,0.1598
676,0.1563
677,0.1546
678,0.1529
679,0.1487
680,0.1480
681,0.1460
682,0.1447
683,0.1397
684,0.1358
685,0.1360
686,0.1323
687,0.1289
688,0.1292
689,0.1251
690,0.1228
691,0.1190
692,0.1199
693,0.1154
694,0.1147
695,0.1101
696,0.1101
697,0.1069
698,0.1053
699,0.1023
700,0.1027
701,0.1040
702,0.1012
703,0.0978
704,0.0955
705,0.0942
706,0.0924
707,0.0897
708,0.0891
709,0.0868
710,0.0847
711,0.0830
712,0.0823
713,0.0806
714,0.0778
715,0.0746
716,0.0749
717,0.0727
718,0.0688
719,0.0686
720,0.0652
721,0.0653
722,0.0615
723,0.0601
724,0.0597
725,0.0574
726,0.0560
727,0.0546
728,0.0544
729,0.0538
730,0.0513
731,0.0509
732,0.0493
733,0.0485
734,0.0471
735,0.0460
736,0.0450
737,0.0431
738,0.0411
739,0.0403
740,0.0382
741,0.0377
742,0.0369
743,0.0361
744,0.0331
745,0.0323
746,0.0310
747,0.0303
748,0.0294
749,0.0282
750,0.0268
751,0.0264
752,0.0246
753,0.0240
754,0.0228
755,0.0216
756,0.0219
757,0.0191
758,0.0194
759,0.0177
760,0.0175
761,0.0164
762,0.0162
763,0.0143
764,0.0137
765,0.0142
766,0.0126
767,0.0129
768,0.0120
769,0.0112
770,0.0119
771,0.0110
772,0.0101
773,0.0094
774,0.0092
775,0.0103
776,0.0087
777,0.0086
778,0.0089
779,0.0076
780,0.0074
781,0.0074
782,0.0075
783,0.0060
784,0.0065
785,0.0064
786,0.0064
787,0.0059
788,0.0054
789,0.0059
790,0.0058
791,0.0053
792,0.0055
793,0.0058
794,0.0059
795,0.0054
796,0.0063
797,0.0060
798,0.0060
799,0.0061
800,0.0068
801,0.0064
802,0.0068
803,0.0069
804,0.0056
805,0.0075
806,0.0080
807,0.0071
808,0.0071
809,0.0070
810,0.0074
811,0.0069
812,0.0080
813,0.0069
814,0.0080
815,0.0084
816,0.0088
817,0.0080
818,0.0100
819,0.0090
820,0.0097
821,0.0095
822,0.0111
823,0.0099
824,0.0112
825,0.0098
826,0.0112
827,0.0115
828,0.0110
829,0.0112
830,0.0116
831,0.0122
832,0.0132
833,0.0125
834,0.0128
835,0.0133
836,0.0132
837,0.0134
838,0.0134
839,0.0145
840,0.0144
841,0.0157
842,0.0151
843,0.0148
844,0.0158
845,0.0167
846,0.0154
847,0.0155
848,0.0152
849,0.0161
850,0.0165
851,0.0161
852,0.0166
853,0.0182
854,0.0178
855,0.0176
856,0.0190
857,0.0188
858,0.0185
859,0.0191
860,0.0178
861,0.0186
862,0.0193
863,0.0194
864,0.0194
865,0.0190
866,0.0205
867,0.0201
868,0.0193
869,0.0199
870,0.0193
871,0.0200
872,0.0201
873,0.0203
874,0.0198
875,0.0209
876,0.0194
877,0.0210
878,0.0198
879,0.0212
880,0.0215
881,0.0220
882,0.0227
883,0.0237
884,0.0230
885,0.0248
886,0.0252
887,0.0261
888,0.0272
889,0.0273
890,0.0276
891,0.0279
892,0.0281
893,0.0288
894,0.0293
895,0.0300
896,0.0298
897,0.0308
898,0.0309
899,0.0310
900,0.0308
901,0.0317
902,0.0321
903,0.0320
904,0.0318
905,0.0326
906,0.0325
907,0.0323
908,0.0318
909,0.0328
910,0.0328
911,0.0331
912,0.0315
913,0.0329
914,0.0313
915,0.0319
916,0.0324
917,0.0323
918,0.0316
919,0.0305
920,0.0307
921,0.0314
922,0.0319
923,0.0331
924,0.0304
925,0.0307
926,0.0303
927,0.0310
928,0.0298
929,0.0277
930,0.0294
931,0.0272
932,0.0251
933,0.0244
934,0.0238
935,0.0207
936,0.0174
937,0.0158
938,0.0138
939,0.0114
940,0.0106
941,0.0092
942,0.0086

View file

@ -1,543 +0,0 @@
400,1.0000
401,0.3750
402,1.0000
403,1.0000
404,0.0000
405,1.0000
406,0.0000
407,0.0000
408,0.0000
409,1.0000
410,0.5539
411,0.6146
412,0.7675
413,0.7776
414,0.6995
415,0.8312
416,0.8708
417,0.7973
418,0.8567
419,0.8946
420,0.9241
421,0.8855
422,0.8757
423,0.9187
424,0.8618
425,0.8397
426,0.9347
427,0.8835
428,0.9087
429,0.7918
430,0.9022
431,0.8775
432,0.7862
433,0.7680
434,0.8277
435,0.7909
436,0.7954
437,0.8213
438,0.7902
439,0.7634
440,0.8003
441,0.7419
442,0.7344
443,0.7576
444,0.6889
445,0.7093
446,0.6475
447,0.5913
448,0.5546
449,0.5060
450,0.4651
451,0.4308
452,0.4026
453,0.3611
454,0.3211
455,0.3116
456,0.3068
457,0.2743
458,0.2558
459,0.2568
460,0.2404
461,0.2341
462,0.2418
463,0.2294
464,0.2137
465,0.1961
466,0.2077
467,0.1958
468,0.1952
469,0.1798
470,0.1621
471,0.1574
472,0.1452
473,0.1321
474,0.1225
475,0.1086
476,0.1014
477,0.0954
478,0.0874
479,0.0808
480,0.0736
481,0.0675
482,0.0669
483,0.0577
484,0.0555
485,0.0523
486,0.0502
487,0.0468
488,0.0415
489,0.0393
490,0.0350
491,0.0318
492,0.0292
493,0.0274
494,0.0247
495,0.0226
496,0.0179
497,0.0193
498,0.0175
499,0.0165
500,0.0160
501,0.0133
502,0.0116
503,0.0109
504,0.0103
505,0.0100
506,0.0107
507,0.0092
508,0.0102
509,0.0100
510,0.0092
511,0.0104
512,0.0109
513,0.0107
514,0.0105
515,0.0107
516,0.0115
517,0.0124
518,0.0125
519,0.0127
520,0.0126
521,0.0156
522,0.0142
523,0.0163
524,0.0178
525,0.0179
526,0.0192
527,0.0204
528,0.0212
529,0.0233
530,0.0247
531,0.0260
532,0.0268
533,0.0291
534,0.0335
535,0.0346
536,0.0353
537,0.0395
538,0.0398
539,0.0437
540,0.0462
541,0.0491
542,0.0513
543,0.0547
544,0.0589
545,0.0614
546,0.0648
547,0.0667
548,0.0704
549,0.0732
550,0.0746
551,0.0782
552,0.0837
553,0.0868
554,0.0877
555,0.0921
556,0.0913
557,0.0969
558,0.0978
559,0.1022
560,0.1008
561,0.1037
562,0.1066
563,0.1100
564,0.1090
565,0.1113
566,0.1141
567,0.1161
568,0.1168
569,0.1208
570,0.1226
571,0.1222
572,0.1250
573,0.1277
574,0.1284
575,0.1298
576,0.1332
577,0.1353
578,0.1412
579,0.1385
580,0.1427
581,0.1438
582,0.1470
583,0.1465
584,0.1517
585,0.1551
586,0.1569
587,0.1594
588,0.1631
589,0.1647
590,0.1697
591,0.1704
592,0.1735
593,0.1759
594,0.1798
595,0.1841
596,0.1858
597,0.1893
598,0.1923
599,0.1929
600,0.1972
601,0.1998
602,0.2013
603,0.2042
604,0.2030
605,0.2068
606,0.2083
607,0.2076
608,0.2074
609,0.2055
610,0.2085
611,0.2088
612,0.2084
613,0.2071
614,0.2073
615,0.2060
616,0.2036
617,0.2028
618,0.2016
619,0.2000
620,0.1979
621,0.1976
622,0.1976
623,0.1938
624,0.1935
625,0.1937
626,0.1949
627,0.1917
628,0.1881
629,0.1891
630,0.1853
631,0.1855
632,0.1848
633,0.1857
634,0.1803
635,0.1828
636,0.1801
637,0.1772
638,0.1811
639,0.1788
640,0.1781
641,0.1796
642,0.1752
643,0.1751
644,0.1751
645,0.1725
646,0.1727
647,0.1736
648,0.1697
649,0.1696
650,0.1707
651,0.1667
652,0.1659
653,0.1642
654,0.1625
655,0.1608
656,0.1614
657,0.1590
658,0.1586
659,0.1554
660,0.1555
661,0.1536
662,0.1521
663,0.1468
664,0.1440
665,0.1453
666,0.1436
667,0.1385
668,0.1379
669,0.1355
670,0.1319
671,0.1296
672,0.1246
673,0.1241
674,0.1223
675,0.1176
676,0.1139
677,0.1125
678,0.1094
679,0.1057
680,0.1032
681,0.1027
682,0.0996
683,0.0971
684,0.0924
685,0.0911
686,0.0887
687,0.0857
688,0.0843
689,0.0821
690,0.0800
691,0.0768
692,0.0752
693,0.0721
694,0.0709
695,0.0688
696,0.0673
697,0.0649
698,0.0630
699,0.0608
700,0.0611
701,0.0600
702,0.0600
703,0.0564
704,0.0525
705,0.0520
706,0.0508
707,0.0484
708,0.0472
709,0.0463
710,0.0453
711,0.0432
712,0.0410
713,0.0404
714,0.0386
715,0.0380
716,0.0359
717,0.0362
718,0.0333
719,0.0320
720,0.0289
721,0.0301
722,0.0277
723,0.0252
724,0.0255
725,0.0245
726,0.0238
727,0.0226
728,0.0219
729,0.0215
730,0.0201
731,0.0194
732,0.0189
733,0.0180
734,0.0169
735,0.0163
736,0.0151
737,0.0137
738,0.0146
739,0.0127
740,0.0121
741,0.0122
742,0.0113
743,0.0104
744,0.0088
745,0.0091
746,0.0093
747,0.0073
748,0.0080
749,0.0070
750,0.0066
751,0.0056
752,0.0053
753,0.0062
754,0.0053
755,0.0050
756,0.0050
757,0.0036
758,0.0039
759,0.0029
760,0.0034
761,0.0030
762,0.0031
763,0.0032
764,0.0027
765,0.0031
766,0.0023
767,0.0029
768,0.0031
769,0.0025
770,0.0028
771,0.0032
772,0.0036
773,0.0029
774,0.0028
775,0.0038
776,0.0035
777,0.0039
778,0.0043
779,0.0044
780,0.0049
781,0.0039
782,0.0053
783,0.0048
784,0.0047
785,0.0053
786,0.0070
787,0.0058
788,0.0048
789,0.0067
790,0.0068
791,0.0070
792,0.0078
793,0.0075
794,0.0087
795,0.0092
796,0.0101
797,0.0093
798,0.0103
799,0.0107
800,0.0117
801,0.0118
802,0.0119
803,0.0127
804,0.0123
805,0.0147
806,0.0145
807,0.0143
808,0.0149
809,0.0161
810,0.0152
811,0.0163
812,0.0162
813,0.0177
814,0.0176
815,0.0178
816,0.0194
817,0.0197
818,0.0206
819,0.0206
820,0.0201
821,0.0217
822,0.0213
823,0.0227
824,0.0226
825,0.0224
826,0.0230
827,0.0236
828,0.0238
829,0.0239
830,0.0246
831,0.0257
832,0.0258
833,0.0254
834,0.0262
835,0.0265
836,0.0271
837,0.0266
838,0.0275
839,0.0292
840,0.0278
841,0.0287
842,0.0285
843,0.0293
844,0.0302
845,0.0299
846,0.0297
847,0.0300
848,0.0301
849,0.0306
850,0.0300
851,0.0307
852,0.0314
853,0.0324
854,0.0317
855,0.0314
856,0.0325
857,0.0316
858,0.0322
859,0.0321
860,0.0324
861,0.0326
862,0.0328
863,0.0329
864,0.0330
865,0.0330
866,0.0333
867,0.0332
868,0.0336
869,0.0324
870,0.0329
871,0.0318
872,0.0326
873,0.0330
874,0.0311
875,0.0309
876,0.0318
877,0.0320
878,0.0310
879,0.0330
880,0.0328
881,0.0339
882,0.0333
883,0.0353
884,0.0344
885,0.0367
886,0.0370
887,0.0378
888,0.0389
889,0.0387
890,0.0404
891,0.0403
892,0.0421
893,0.0411
894,0.0420
895,0.0427
896,0.0431
897,0.0428
898,0.0420
899,0.0432
900,0.0430
901,0.0427
902,0.0447
903,0.0434
904,0.0445
905,0.0436
906,0.0452
907,0.0440
908,0.0439
909,0.0425
910,0.0436
911,0.0437
912,0.0431
913,0.0427
914,0.0419
915,0.0419
916,0.0417
917,0.0420
918,0.0416
919,0.0396
920,0.0391
921,0.0413
922,0.0409
923,0.0400
924,0.0397
925,0.0386
926,0.0399
927,0.0377
928,0.0376
929,0.0351
930,0.0357
931,0.0342
932,0.0320
933,0.0306
934,0.0296
935,0.0262
936,0.0221
937,0.0196
938,0.0172
939,0.0137
940,0.0125
941,0.0112
942,0.0093

Some files were not shown because too many files have changed in this diff Show more